diff options
author | Iru Cai <mytbk920423@gmail.com> | 2018-08-10 11:36:02 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2018-08-10 11:36:02 +0800 |
commit | 14b892e86709a9a0f397595083a67b74cf796267 (patch) | |
tree | a8b00936b344ab107165c8c3f50b3c7b9b624919 | |
parent | 3dc28eb215c49cf17bcd6584885d5354da5ad040 (diff) | |
download | rich4-14b892e86709a9a0f397595083a67b74cf796267.tar.xz |
doc for configuration file
-rw-r--r-- | docs/rich4_cfg.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/rich4_cfg.txt b/docs/rich4_cfg.txt new file mode 100644 index 0000000..2fc9eec --- /dev/null +++ b/docs/rich4_cfg.txt @@ -0,0 +1,28 @@ +file: RICH4.CFG + +auto save: offset 5, 01 enabled +game speed: offset 1, 00,01,02 +animation: offset 0, 01 enabled +music: offset 3, 00~04 +sound effect: offset 2, 00-04 +view: offset 4, 00 calendar, 01 small map, 02 combined view +year: offset 10-11, big endian, e.g. year=[10]*256+[11] +month: offset 8 +day: offset 9 + +hot keys: +RICH4.CFG uses two bytes to represent one key. +The first byte is the mod key: 0x11 Ctrl +The second byte is the key: use virtual key code +A-Z: same as ascii (0x41-0x5a) +<: 0xbc (VK_OEM_COMMA, '<' + 0x80) +>: 0xbe (VK_OEM_PERIOD, '>' + 0x80) +PGUP: 0x21 (VK_PRIOR) +PGDN: 0x22 (VK_NEXT) +ENTER, ESC, TAB: 0x0d, 0x1b, 0x09 (same as ASCII) +ARROW LEFT, UP, RIGHT, DOWN: 0x25-0x28 (VK_{LEFT,UP,RIGHT,DOWN}) + +offset 0x10: 游标{上移,右移,下移,左移} 确定 取消 切换选项 切换视窗组 +offset 0x20: YES NO 前进 选择骰子数 股市 交易 卡片 道具 +offset 0x30: 查询 地图 地图向左旋转 地图向右旋转 托管 系统 SAVE LOAD +offset 0x40: 辅助说明 向上换页 向下换页 结束 |