summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cmd-keys.h
diff options
context:
space:
mode:
authorEino Keskitalo <eino.keskitalo@gmail.com>2012-07-02 18:32:42 +0300
committerEino Keskitalo <eino.keskitalo@gmail.com>2012-07-03 17:07:49 +0300
commitc509054ef507cdb7fa44db34f5a8ed9e1284b6a4 (patch)
tree5453278e5d167fd298fa70e30e649ee1a41bfb7b /crawl-ref/source/cmd-keys.h
parent2c626ade9d3f6f34c41be8e0295593bdc423a280 (diff)
downloadcrawl-ref-c509054ef507cdb7fa44db34f5a8ed9e1284b6a4.tar.gz
crawl-ref-c509054ef507cdb7fa44db34f5a8ed9e1284b6a4.zip
Tutorial lesson 2: incorporate changes from KiSS team, edit further, put messages into database.
I've changed the key assignment around in cmd-keys.h to make sure the "primary" key comes up for CMD_TARGET_SELECT and CMD_TARGET_CYCLE_FORWARD. Changes include: * Added [] brackets around control texts * Intro shortened a little * Monster examination cut, only one training dummy. Was extremely verbose. It's still a useful thing to learn, so should be put into an advanced lesson later. * Monster comparison cage only has two monsters: an ooze and a wyvern. * Level 1 layout changed * Removed ammo cycling: seemed hard to pick up in testing, should be covered in an advanced lesson or in the CeHu hint mode scenario. * Level 2 shortened a bit accordingly * Removed a casual pack of rats from level 2 * An awkward reminder about chopping and resting before the second rat room Changes from KiSS not included: * Removal of the hint about waiting for monsters to close in * Revamp of level 2 layout (was too compact - things came in view too early) Comments/TODO: * The hint about chopping rat corpses could come from stepping on one * There could be a hint about eating when you get hungry * Did not include autofight * Content is repeated in <console> and <webtiles> * Final screen whitespace - there should be line breaks before and after each yellow heading, but I'm still clueless how to add them
Diffstat (limited to 'crawl-ref/source/cmd-keys.h')
-rw-r--r--crawl-ref/source/cmd-keys.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/cmd-keys.h b/crawl-ref/source/cmd-keys.h
index b199bd0888..99344723b5 100644
--- a/crawl-ref/source/cmd-keys.h
+++ b/crawl-ref/source/cmd-keys.h
@@ -198,11 +198,12 @@
{CONTROL('F'), CMD_TARGET_CYCLE_TARGET_MODE},
{CONTROL('L'), CMD_TARGET_TOGGLE_MLIST},
{'p', CMD_TARGET_PREV_TARGET},
-{'f', CMD_TARGET_SELECT},
+//{'f', CMD_TARGET_SELECT}, // HACK: Moved to be the downmost for tutorial key
+ // look-up.
{'g', CMD_TARGET_GET},
{'-', CMD_TARGET_CYCLE_BACK},
-{'+', CMD_TARGET_CYCLE_FORWARD},
{'=', CMD_TARGET_CYCLE_FORWARD},
+{'+', CMD_TARGET_CYCLE_FORWARD},
{'/', CMD_TARGET_OBJ_CYCLE_BACK},
{';', CMD_TARGET_OBJ_CYCLE_BACK},
{'*', CMD_TARGET_OBJ_CYCLE_FORWARD},
@@ -232,6 +233,7 @@
{-1009, CMD_TARGET_UP_RIGHT},
{-1007, CMD_TARGET_UP_LEFT},
{-1005, CMD_TARGET_SELECT},
+{'f', CMD_TARGET_SELECT}, // HACK: Down here for tutorial key look-up, see above
{'B', CMD_TARGET_DIR_DOWN_LEFT},
{'H', CMD_TARGET_DIR_LEFT},
{'J', CMD_TARGET_DIR_DOWN},