OSDN Git Service

Changed Japanese translation for "New" to match what was suggested in hengbandforosx...
[hengbandforosx/hengbandosx.git] / src / gameoption.c
1 #include "angband.h"
2 #include "gameoption.h"
3
4
5 /*
6 * Software options (set via the '=' command).  See "tables.c"
7 */
8
9 /*** Input Options ***/
10
11 bool rogue_like_commands;       /* Rogue-like commands */
12 bool always_pickup;     /* Pick things up by default */
13 bool carry_query_flag;  /* Prompt before picking things up */
14 bool quick_messages;    /* Activate quick messages */
15 bool auto_more; /* Automatically clear '-more-' prompts */
16 bool command_menu;      /* Enable command selection menu */
17 bool other_query_flag;  /* Prompt for floor item selection */
18 bool use_old_target;    /* Use old target by default */
19 bool always_repeat;     /* Repeat obvious commands */
20 bool confirm_destroy;   /* Prompt for destruction of known worthless items */
21 bool confirm_wear;      /* Confirm to wear/wield known cursed items */
22 bool confirm_quest;     /* Prompt before exiting a quest level */
23 bool target_pet;        /* Allow targeting pets */
24 bool easy_open; /* Automatically open doors */
25 bool easy_disarm;       /* Automatically disarm traps */
26 bool easy_floor;        /* Display floor stacks in a list */
27 bool use_command;       /* Allow unified use command */
28 bool over_exert;        /* Allow casting spells when short of mana */
29 bool numpad_as_cursorkey;       /* Use numpad keys as cursor key in editor mode */
30
31                                                         /*** Map Screen Options ***/
32
33 bool center_player;     /* Center map while walking (*slow*) */
34 bool center_running;    /* Centering even while running */
35 bool view_yellow_lite;  /* Use special colors for torch-lit grids */
36 bool view_bright_lite;  /* Use special colors for 'viewable' grids */
37 bool view_granite_lite; /* Use special colors for wall grids (slow) */
38 bool view_special_lite; /* Use special colors for floor grids (slow) */
39 bool view_perma_grids;  /* Map remembers all perma-lit grids */
40 bool view_torch_grids;  /* Map remembers all torch-lit grids */
41 bool view_unsafe_grids; /* Map marked by detect traps */
42 bool view_reduce_view;  /* Reduce view-radius in town */
43 bool fresh_before;      /* Flush output while in repeated command */
44 bool fresh_after;       /* Flush output after monster's move */
45 bool fresh_message;     /* Flush output after every message */
46 bool hilite_player;     /* Hilite the player with the cursor */
47 bool display_path;      /* Display actual path before shooting */
48
49
50                                         /*** Text Display Options ***/
51
52 bool plain_descriptions;        /* Plain object descriptions */
53 bool plain_pickup;      /* Plain pickup messages(japanese only) */
54 bool always_show_list;  /* Always show list when choosing items */
55 bool depth_in_feet;     /* Show dungeon level in feet */
56 bool show_labels;       /* Show labels in object listings */
57 bool show_weights;      /* Show weights in object listings */
58 bool show_item_graph;   /* Show items graphics */
59 bool equippy_chars;     /* Display 'equippy' chars */
60 bool display_mutations; /* Display mutations in 'C'haracter Display */
61 bool compress_savefile; /* Compress messages in savefiles */
62 bool abbrev_extra;      /* Describe obj's extra resistances by abbreviation */
63 bool abbrev_all;        /* Describe obj's all resistances by abbreviation */
64 bool exp_need;  /* Show the experience needed for next level */
65 bool ignore_unview;     /* Ignore whenever any monster does */
66 bool refresh_mon_list;  /* Refresh monster list before action */
67
68
69                                         /*** Game-Play Options ***/
70
71 bool stack_force_notes; /* Merge inscriptions when stacking */
72 bool stack_force_costs; /* Merge discounts when stacking */
73 bool expand_list;       /* Expand the power of the list commands */
74 bool small_levels;      /* Allow unusually small dungeon levels */
75 bool always_small_levels;       /* Always create unusually small dungeon levels */
76 bool empty_levels;      /* Allow empty 'arena' levels */
77 bool bound_walls_perm;  /* Boundary walls become 'permanent wall' */
78 bool last_words;        /* Leave last words when your character dies */
79
80 #ifdef WORLD_SCORE
81 bool send_score;        /* Send score dump to the world score server */
82 #endif
83
84 bool allow_debug_opts;  /* Allow use of debug/cheat options */
85
86
87                                                 /*** Disturbance Options ***/
88
89 bool find_ignore_stairs;        /* Run past stairs */
90 bool find_ignore_doors; /* Run through open doors */
91 bool find_cut;  /* Run past known corners */
92 bool check_abort;       /* Check for user abort while in repeated command */
93 bool flush_failure;     /* Flush input on various failures */
94 bool flush_disturb;     /* Flush input whenever disturbed */
95 bool disturb_move;      /* Disturb whenever any monster moves */
96 bool disturb_high;      /* Disturb whenever high-level monster moves */
97 bool disturb_near;      /* Disturb whenever viewable monster moves */
98 bool disturb_pets;      /* Disturb when visible pets move */
99 bool disturb_panel;     /* Disturb whenever map panel changes */
100 bool disturb_state;     /* Disturb whenever player state changes */
101 bool disturb_minor;     /* Disturb whenever boring things happen */
102 bool ring_bell; /* Audible bell (on errors, etc) */
103 bool disturb_trap_detect;       /* Disturb when leaving trap detected area */
104 bool alert_trap_detect; /* Alert when leaving trap detected area */
105
106
107                                                 /*** Birth Options ***/
108
109 bool manual_haggle;     /* Manually haggle in stores */
110 bool easy_band; /* Easy Mode (*) */
111 bool smart_learn;       /* Monsters learn from their mistakes (*) */
112 bool smart_cheat;       /* Monsters exploit players weaknesses (*) */
113 bool vanilla_town;      /* Use 'vanilla' town without quests and wilderness */
114 bool lite_town; /* Use 'lite' town without a wilderness */
115 bool ironman_shops;     /* Stores are permanently closed (*) */
116 bool ironman_small_levels;      /* Always create unusually small dungeon levels (*) */
117 bool ironman_downward;  /* Disable recall and use of up stairs (*) */
118 bool ironman_empty_levels;      /* Always create empty 'arena' levels (*) */
119 bool ironman_rooms;     /* Always generate very unusual rooms (*) */
120 bool ironman_nightmare; /* Nightmare mode(it isn't even remotely fair!)(*) */
121 bool left_hander;       /* Left-Hander */
122 bool preserve_mode;     /* Preserve artifacts (*) */
123 bool autoroller;        /* Allow use of autoroller for stats (*) */
124 bool autochara; /* Autoroll for weight, height and social status */
125 bool powerup_home;      /* Increase capacity of your home (*) */
126 bool show_ammo_detail;  /* Show Description of ammo damage */
127 bool show_ammo_no_crit; /* Show No-crit damage of ammo */
128 bool show_ammo_crit_ratio;      /* Show critical ratio of ammo */
129 bool show_actual_value; /* Show actual value of skill */
130
131
132
133
134                                                 /*** Easy Object Auto-Destroyer ***/
135
136 bool destroy_items;     /* Use easy auto-destroyer */
137 bool destroy_feeling;   /* Apply auto-destroy as sense feeling */
138 bool destroy_identify;  /* Apply auto-destroy as identify an item */
139 bool leave_worth;       /* Auto-destroyer leaves known worthy items */
140 bool leave_equip;       /* Auto-destroyer leaves weapons and armour */
141 bool leave_chest;       /* Auto-destroyer leaves closed chests */
142 bool leave_wanted;      /* Auto-destroyer leaves wanted corpses */
143 bool leave_corpse;      /* Auto-destroyer leaves corpses and skeletons */
144 bool leave_junk;        /* Auto-destroyer leaves junk */
145 bool leave_special;     /* Auto-destroyer leaves items your race/class needs */
146
147
148                                         /*** Play-record Options ***/
149
150 bool record_fix_art;    /* Record fixed artifacts */
151 bool record_rand_art;   /* Record random artifacts */
152 bool record_destroy_uniq;       /* Record when destroy unique monster */
153 bool record_fix_quest;  /* Record fixed quests */
154 bool record_rand_quest; /* Record random quests */
155 bool record_maxdepth;   /* Record movements to deepest level */
156 bool record_stair;      /* Record recall and stair movements */
157 bool record_buy;        /* Record purchased items */
158 bool record_sell;       /* Record sold items */
159 bool record_danger;     /* Record hitpoint warning */
160 bool record_arena;      /* Record arena victories */
161 bool record_ident;      /* Record first identified items */
162 bool record_named_pet;  /* Record information about named pets */
163 char record_o_name[MAX_NLEN];
164 GAME_TURN record_turn;
165
166
167 /* Cheating options */
168
169 bool cheat_peek;        /* Peek into object creation */
170 bool cheat_hear;        /* Peek into monster creation */
171 bool cheat_room;        /* Peek into dungeon creation */
172 bool cheat_xtra;        /* Peek into something else */
173 bool cheat_know;        /* Know complete monster info */
174 bool cheat_live;        /* Allow player to avoid death */
175 bool cheat_save;        /* Ask for saving death */
176 bool cheat_diary_output; /* Detailed info to diary */
177 bool cheat_turn;        /* Peek current_world_ptr->game_turn */
178 bool cheat_sight;
179
180
181 /* Special options */
182
183 byte hitpoint_warn;     /* Hitpoint warning (0 to 9) */
184 byte mana_warn; /* Mana color (0 to 9) */
185
186 byte delay_factor;      /* Delay factor (0 to 9) */
187
188 bool autosave_l;        /* Autosave before entering new levels */
189 bool autosave_t;        /* Timed autosave */
190 s16b autosave_freq;     /* Autosave frequency */
191
192
193 /*!
194  * @brief オプションテーブル /
195  * Available Options
196  */
197 const option_type option_info[] =
198 {
199         /*** Input Options ***/
200
201         { &rogue_like_commands,         FALSE, OPT_PAGE_INPUT, 0, 0,
202         "rogue_like_commands",          _("ローグ風キー配置を使用する", "Rogue-like commands") },
203
204         { &always_pickup,               FALSE, OPT_PAGE_INPUT, 0, 5,
205         "always_pickup",                _("常にアイテムを拾う" , "Pick things up by default") },
206
207         { &carry_query_flag,            FALSE, OPT_PAGE_INPUT, 0, 3,
208         "carry_query_flag",             _("アイテムを拾う前に確認する", "Prompt before picking things up") },
209
210         { &quick_messages,              TRUE,  OPT_PAGE_INPUT, 0, 1,
211         "quick_messages",               _("クイック・メッセージを使用する", "Activate quick messages") },
212
213         { &auto_more,                   FALSE, OPT_PAGE_INPUT, 2, 6,
214         "auto_more",                    _("キー待ちしないで連続でメッセージを表示する", "Automatically clear '-more-' prompts") },
215
216         { &command_menu,                TRUE,  OPT_PAGE_INPUT, 2, 7,
217         "command_menu",                 _("メニューによりコマンド選択を有効にする", "Enable command selection menu") },
218
219         { &other_query_flag,            FALSE, OPT_PAGE_INPUT, 0, 2,
220         "other_query_flag",             _("床上のアイテムを使用するときに確認する", "Prompt for floor item selection") },
221
222         { &use_old_target,              FALSE, OPT_PAGE_INPUT, 0, 4,
223         "use_old_target",               _("常に以前のターゲットを指定する", "Use old target by default") },
224
225         { &always_repeat,               TRUE,  OPT_PAGE_INPUT, 0, 6,
226         "always_repeat",                _("コマンド自動繰り返し", "Repeat obvious commands") },
227
228         { &confirm_destroy,             FALSE, OPT_PAGE_INPUT, 5, 3,
229         "confirm_destroy",              _("「無価値」なアイテムを破壊する時確認する", "Prompt for destruction of known worthless items") },
230
231         { &confirm_wear,                TRUE,  OPT_PAGE_INPUT, 5, 4,
232         "confirm_wear",                 _("呪われた物を装備する時確認する", "Confirm to wear/wield known cursed items") },
233
234         { &confirm_quest,               TRUE,  OPT_PAGE_INPUT, 1, 9,
235         "confirm_quest",                _("クエストを諦めて階段で逃げる前に確認する", "Prompt before exiting a quest level") },
236
237         { &target_pet,                  FALSE, OPT_PAGE_INPUT, 2, 5,
238         "target_pet",                   _("ペットをターゲットにする", "Allow targeting pets") },
239
240         { &easy_open,                   TRUE,  OPT_PAGE_INPUT, 5, 7,
241         "easy_open",                    _("自動的にドアを開ける", "Automatically open doors") },
242
243         { &easy_disarm,                 TRUE,  OPT_PAGE_INPUT, 5, 8,
244         "easy_disarm",                  _("自動的に罠を解除する", "Automatically disarm traps") },
245
246         { &easy_floor,                  FALSE, OPT_PAGE_INPUT, 5, 9,
247         "easy_floor",                   _("床上で重なったアイテムをリストする", "Display floor stacks in a list") },
248
249         { &use_command,                 FALSE, OPT_PAGE_INPUT, 5, 10,
250         "use_command",                  _("「使う(a)」コマンドでアイテムを何でも使える", "Allow unified use command") },
251
252         { &over_exert,                  FALSE, OPT_PAGE_INPUT, 0, 29,
253         "over_exert",                   _("MPが足りなくても魔法に挑戦する", "Allow casting spells when short of mana") },
254
255         { &numpad_as_cursorkey,         TRUE, OPT_PAGE_INPUT, 2, 31,
256         "numpad_as_cursorkey",          _("エディタ内でテンキーをカーソルキーとして使う", "Use numpad keys as cursor keys in editor mode") },
257
258 /*** Map Screen Options ***/
259
260         { &center_player,               FALSE, OPT_PAGE_MAPSCREEN, 5, 11,
261         "center_player",                _("常にプレイヤーを中心に置く(*遅い*)", "Center map while walking (*slow*)") },
262
263         { &center_running,              TRUE,  OPT_PAGE_MAPSCREEN, 5, 12,
264         "center_running",               _("走っている時でも中心に置く", "Centering even while running") },
265
266         { &view_yellow_lite,            TRUE,  OPT_PAGE_MAPSCREEN, 1, 28,
267         "view_yellow_lite",             _("明かりの範囲を特別な色で表示する", "Use special colors for torch-lit grids") },
268
269         { &view_bright_lite,            TRUE,  OPT_PAGE_MAPSCREEN, 1, 29,
270         "view_bright_lite",             _("視界の範囲を特別な色で表示する", "Use special colors for 'viewable' grids") },
271
272         { &view_granite_lite,           TRUE,  OPT_PAGE_MAPSCREEN, 1, 30,
273         "view_granite_lite",            _("壁を特別な色で表示する(重い)", "Use special colors for wall grids (slow)") },
274
275         { &view_special_lite,           TRUE,  OPT_PAGE_MAPSCREEN, 1, 31,
276         "view_special_lite",            _("床を特別な色で表示する(重い)", "Use special colors for floor grids (slow)") },
277
278         { &view_perma_grids,            TRUE,  OPT_PAGE_MAPSCREEN, 1, 6,
279         "view_perma_grids",             _("明るい場所はそのままにする", "Map remembers all perma-lit grids") },
280
281         { &view_torch_grids,            FALSE, OPT_PAGE_MAPSCREEN, 1, 7,
282         "view_torch_grids",             _("明かりで照らした場所はそのままにする", "Map remembers all torch-lit grids") },
283
284         { &view_unsafe_grids,           FALSE, OPT_PAGE_MAPSCREEN, 1, 8,
285         "view_unsafe_grids",            _("トラップ感知済みでない場所を表示する", "Map marked by detect traps") },
286
287         { &view_reduce_view,            FALSE, OPT_PAGE_MAPSCREEN, 1, 17,
288         "view_reduce_view",             _("街では視野を狭くする", "Reduce view-radius in town") },
289
290         { &fresh_before,                TRUE,  OPT_PAGE_MAPSCREEN, 1, 23,
291         "fresh_before",                 _("連続コマンド中に画面を再描画し続ける", "Flush output while in repeated command") },
292
293         { &fresh_after,                 FALSE, OPT_PAGE_MAPSCREEN, 1, 24,
294         "fresh_after",                  _("コマンド後に画面を常に再描画し続ける", "Flush output after monster's move") },
295
296         { &fresh_message,               FALSE, OPT_PAGE_MAPSCREEN, 1, 25,
297         "fresh_message",                _("メッセージの後に画面を再描画する", "Flush output after every message") },
298
299         { &hilite_player,               FALSE, OPT_PAGE_MAPSCREEN, 1, 27,
300         "hilite_player",                _("プレイヤーにカーソルを合わせる", "Hilite the player with the cursor") },
301
302         { &display_path,                FALSE, OPT_PAGE_MAPSCREEN, 2, 8,
303         "display_path",                 _("魔法や矢の軌跡を表示する", "Display actual path before shooting") },
304
305 /*** Text Display Options ***/
306
307         { &plain_descriptions,          TRUE,  OPT_PAGE_TEXT, 5, 1,
308         "plain_descriptions",           _("アイテムの記述を簡略にする", "Plain object descriptions") },
309
310         { &plain_pickup,                FALSE, OPT_PAGE_TEXT, 6, 6,
311         "plain_pickup",                 _("「拾った」メッセージを簡略化する", "Plain pickup messages(japanese only)") },
312
313         { &always_show_list,            TRUE,  OPT_PAGE_TEXT, 4, 0,
314         "always_show_list",             _("選択時には常に一覧を表示する", "Always show list when choosing items") },
315
316         { &depth_in_feet,               FALSE, OPT_PAGE_TEXT, 0, 7,
317         "depth_in_feet",                _("ダンジョンの深さをフィートで表示する", "Show dungeon level in feet") },
318
319         { &show_labels,                 TRUE,  OPT_PAGE_TEXT, 0, 10,
320         "show_labels",                  _("装備一覧で装備場所を表示する", "Show labels in object listings") },
321
322         { &show_weights,                TRUE,  OPT_PAGE_TEXT, 0, 11,
323         "show_weights",                 _("アイテム一覧で重量を表示する", "Show weights in object listings") },
324
325         { &show_item_graph,             TRUE,  OPT_PAGE_TEXT, 2, 0,
326         "show_item_graph",              _("アイテムのシンボルを表示する", "Show items graphics") },
327
328         { &equippy_chars,               TRUE,  OPT_PAGE_TEXT, 1, 12,
329         "equippy_chars",                _("ステータスに文字で装備を表示する", "Display 'equippy' chars") },
330
331         { &display_mutations,           FALSE, OPT_PAGE_TEXT, 5, 0,
332         "display_mutations",            _("'C'コマンドで突然変異を表示する", "Display mutations in 'C'haracter Display") },
333
334         { &compress_savefile,           FALSE, OPT_PAGE_TEXT, 1, 26,
335         "compress_savefile",            _("セーブ・ファイル中のメッセージを圧縮する", "Compress messages in savefiles") },
336
337         { &abbrev_extra,                FALSE, OPT_PAGE_TEXT, 2, 10,
338         "abbrev_extra",                 _("アイテムに追加耐性/能力の略称を刻む", "Describe obj's extra resistances by abbreviation") },
339
340         { &abbrev_all,                  FALSE, OPT_PAGE_TEXT, 2, 11,
341         "abbrev_all",                   _("アイテムに全ての耐性/能力の略称を刻む", "Describe obj's all resistances by abbreviation") },
342
343         { &exp_need,                    FALSE, OPT_PAGE_TEXT, 2, 12,
344         "exp_need",                     _("次のレベルに必要な経験値を表示する", "Show the experience needed for next level") },
345
346         { &ignore_unview,               FALSE, OPT_PAGE_TEXT, 2, 13,
347         "ignore_unview",                _("視界外のモンスターの行動を表示しない", "Ignore out-of-sight monster behavior") },
348
349         { &refresh_mon_list,            FALSE, OPT_PAGE_TEXT, 2, 18,
350         "refresh_mon_list",             _("行動前に視界内モンスターリストを更新(重い)", "Refresh monster list before action") },
351
352         { &show_ammo_detail,            TRUE, OPT_PAGE_TEXT, 2, 14,
353         "show_ammo_detail",             _("矢弾のダメージの説明を表示する", "Show description of ammo damage") },
354
355         { &show_ammo_no_crit,           FALSE, OPT_PAGE_TEXT, 2, 15,
356         "show_ammo_no_crit",            _("会心を考慮しない場合の矢弾のダメージを表示する", "Show ammo damage with no critical") },
357
358         { &show_ammo_crit_ratio,        FALSE, OPT_PAGE_TEXT, 2, 16,
359         "show_ammo_crit_ratio",         _("矢弾の会心発生率を表示する", "Show critical ratio of ammo") },
360
361         { &show_actual_value,           FALSE, OPT_PAGE_TEXT, 2, 17,
362         "show_actual_vaule",            _("各技能値に実値を表示する", "Show actual value of skill") },
363
364
365 /*** Game-Play ***/
366
367         { &stack_force_notes,           TRUE,  OPT_PAGE_GAMEPLAY, 0, 8,
368         "stack_force_notes",            _("異なる銘のアイテムをまとめる", "Merge inscriptions when stacking") },
369
370         { &stack_force_costs,           FALSE, OPT_PAGE_GAMEPLAY, 0, 9,
371         "stack_force_costs",            _("異なる割引表示のアイテムをまとめる", "Merge discounts when stacking") },
372
373         { &expand_list,                 TRUE,  OPT_PAGE_GAMEPLAY, 1, 5,
374         "expand_list",                  _("「一覧」コマンドを拡張する", "Expand the power of the list commands") },
375
376         { &small_levels,                TRUE,  OPT_PAGE_GAMEPLAY, 0, 30,
377         "small_levels",                 _("非常に小さいフロアの生成を可能にする", "Allow unusually small dungeon levels") },
378
379         { &always_small_levels,         FALSE, OPT_PAGE_GAMEPLAY, 2, 3,
380         "always_small_levels",          _("常に非常に小さいフロアを生成する", "Always create unusually small dungeon levels") },
381
382         { &empty_levels,                TRUE,  OPT_PAGE_GAMEPLAY, 0, 31,
383         "empty_levels",                 _("空っぽの「アリーナ」レベルの生成を可能にする", "Allow empty 'arena' levels") },
384
385         { &bound_walls_perm,            FALSE, OPT_PAGE_GAMEPLAY, 2, 1,
386         "bound_walls_perm",             _("ダンジョンの外壁を永久岩にする", "Boundary walls become 'permanent wall'") },
387
388         { &last_words,                  TRUE,  OPT_PAGE_GAMEPLAY, 0, 28,
389         "last_words",                   _("キャラクターが死んだ時遺言をのこす", "Leave last words when your character dies") },
390
391 #ifdef WORLD_SCORE
392         { &send_score,                  TRUE,  OPT_PAGE_GAMEPLAY, 4, 6,
393         "send_score",                   _("スコアサーバにスコアを送る", "Send score dump to the world score server") },
394 #endif
395
396         { &allow_debug_opts,            FALSE, OPT_PAGE_GAMEPLAY, 6, 11,
397         "allow_debug_opts",             _("デバッグ/詐欺オプションを許可する", "Allow use of debug/cheat options") },
398
399 /*** Disturbance ***/
400
401         { &find_ignore_stairs,          FALSE, OPT_PAGE_DISTURBANCE, 0, 16,
402         "find_ignore_stairs",           _("階段は通過する", "Run past stairs") },
403
404         { &find_ignore_doors,           TRUE,  OPT_PAGE_DISTURBANCE, 0, 17,
405         "find_ignore_doors",            _("ドアは通過する", "Run through open doors") },
406
407         { &find_cut,                    FALSE, OPT_PAGE_DISTURBANCE, 0, 18,
408         "find_cut",                     _("曲り角を斜めに最短距離で通過する", "Run past known corners") },
409
410         { &check_abort,                 TRUE,  OPT_PAGE_DISTURBANCE, 1, 18,
411         "check_abort",                  _("連続コマンドはキー入力で中断する", "Check for user abort while in repeated command") },
412
413         { &flush_failure,               TRUE,  OPT_PAGE_DISTURBANCE, 1, 20,
414         "flush_failure",                _("様々なミス発生時に入力をクリアする", "Flush input on various failures") },
415
416         { &flush_disturb,               FALSE, OPT_PAGE_DISTURBANCE, 1, 21,
417         "flush_disturb",                _("障害発生時に入力をクリアする", "Flush input whenever disturbed") },
418
419         { &disturb_move,                FALSE, OPT_PAGE_DISTURBANCE, 0, 20,
420         "disturb_move",                 _("どこのモンスターが動いても行動を中止する", "Disturb whenever any monster moves") },
421
422         { &disturb_high,                FALSE, OPT_PAGE_DISTURBANCE, 1, 3,
423         "disturb_high",                 _("レベルの高いモンスターが動いたら行動を中止する", "Disturb whenever high-level monster moves") },
424
425         { &disturb_near,                TRUE,  OPT_PAGE_DISTURBANCE, 0, 21,
426         "disturb_near",                 _("視界内のモンスターが動いたら行動を中止する", "Disturb whenever viewable monster moves") },
427
428         { &disturb_pets,                FALSE, OPT_PAGE_DISTURBANCE, 5, 6,
429         "disturb_pets",                 _("視界内のペットが動いたら行動を中止する", "Disturb when visible pets move") },
430
431         { &disturb_panel,               TRUE,  OPT_PAGE_DISTURBANCE, 0, 22,
432         "disturb_panel",                _("画面スクロール時に行動を中止する", "Disturb whenever map panel changes") },
433
434         { &disturb_state,               TRUE,  OPT_PAGE_DISTURBANCE, 0, 23,
435         "disturb_state",                _("自分のステータス変化時に行動を中止する", "Disturb whenever player state changes") },
436
437         { &disturb_minor,               TRUE,  OPT_PAGE_DISTURBANCE, 0, 24,
438         "disturb_minor",                _("些細なことが起きても行動を中止する", "Disturb whenever boring things happen") },
439
440         { &ring_bell,                   FALSE, OPT_PAGE_DISTURBANCE, 0, 14,
441         "ring_bell",                    _("エラー時にビープ音を鳴らす", "Audible bell (on errors, etc)") },
442
443         { &disturb_trap_detect,         TRUE,  OPT_PAGE_DISTURBANCE, 0, 27,
444         "disturb_trap_detect",          _("トラップ感知範囲外に出る直前に行動を中止する", "Disturb when leaving trap detected area") },
445
446         { &alert_trap_detect,           FALSE, OPT_PAGE_DISTURBANCE, 0, 25,
447         "alert_trap_detect",            _("トラップ感知範囲外に出る直前に警告する", "Alert when leaving trap detected area") },
448
449 /*** Birth Options ***/
450         { &manual_haggle,               FALSE, OPT_PAGE_BIRTH, 1, 0,
451         "manual_haggle",                _("店で値切り交渉をする", "Manually haggle in stores") },
452
453         { &easy_band,                   FALSE, OPT_PAGE_BIRTH, 6, 31,
454         "easy_band",                    _("初心者用簡単モード(*)", "Easy Mode (*)") },
455
456         { &smart_learn,                 TRUE,  OPT_PAGE_BIRTH, 1, 14,
457         "smart_learn",                  _("モンスターは失敗を学習する(*)", "Monsters learn from their mistakes (*)") },
458
459         { &smart_cheat,                 FALSE, OPT_PAGE_BIRTH, 1, 15,
460         "smart_cheat",                  _("モンスターはプレイヤーの弱みを突く(*)", "Monsters exploit players weaknesses (*)") },
461
462         { &vanilla_town,                FALSE, OPT_PAGE_BIRTH, 6, 0,
463         "vanilla_town",                 _("元祖の街/クエストと荒野なし", "Use 'vanilla' town without quests and wilderness") },
464
465         { &lite_town,                   FALSE, OPT_PAGE_BIRTH, 6, 1,
466         "lite_town",                    _("小規模な街/荒野なし", "Use 'lite' town without a wilderness") },
467
468         { &ironman_shops,               FALSE, OPT_PAGE_BIRTH, 6, 2,
469         "ironman_shops",                _("(鉄人用)店を使用しない(*)", "Stores are permanently closed (*)") },
470
471         { &ironman_small_levels,        FALSE, OPT_PAGE_BIRTH, 6, 3,
472         "ironman_small_levels",         _("(鉄人用)常に非常に小さいフロアを生成(*)", "Always create unusually small dungeon levels (*)") },
473
474         { &ironman_downward,            FALSE, OPT_PAGE_BIRTH, 6, 4,
475         "ironman_downward",             _("(鉄人用)帰還と上り階段なし(*)", "Disable recall and use of up stairs (*)") },
476
477         { &ironman_empty_levels,        FALSE, OPT_PAGE_BIRTH, 6, 8,
478         "ironman_empty_levels",         _("(鉄人用)常に空っぽのアリーナレベルを生成(*)", "Always create empty 'arena' levels (*)") },
479
480         { &ironman_rooms,               FALSE, OPT_PAGE_BIRTH, 6, 12,
481         "ironman_rooms",                _("(鉄人用)常に普通でない部屋を生成する(*)", "Always generate very unusual rooms (*)") },
482
483         { &ironman_nightmare,           FALSE, OPT_PAGE_BIRTH, 6, 18,
484         "ironman_nightmare",            _("(鉄人用)悪夢モード(これは全く不条理です!)(*)", "Nightmare mode(it isn't even remotely fair!)(*)") },
485
486         { &left_hander,                 FALSE, OPT_PAGE_BIRTH, 6, 13,
487         "left_hander",                  _("左利きである", "Left-Hander") },
488
489         { &preserve_mode,               TRUE,  OPT_PAGE_BIRTH, 6, 14,
490         "preserve_mode",                _("伝説のアイテムを取り逃しても再生成される(*)", "Preserve artifacts (*)") },
491
492         { &autoroller,                  TRUE,  OPT_PAGE_BIRTH, 6, 15,
493         "autoroller",                   _("能力値にオートローラー使用(*)", "Allow use of autoroller for stats (*)") },
494
495         { &autochara,                   FALSE, OPT_PAGE_BIRTH, 6, 16,
496         "autochara",                   _("体格/地位にオートローラー使用", "Autoroll for weight, height and social status") },
497
498         { &powerup_home,                TRUE,  OPT_PAGE_BIRTH, 4, 3,
499         "powerup_home",                 _("我が家を拡張する(*)", "Increase capacity of your home (*)") },
500
501 /*** Easy Object Auto-Destroyer ***/
502
503         { &destroy_items,               FALSE, OPT_PAGE_AUTODESTROY, 7, 0,
504         "destroy_items",                _("アイテムの簡易自動破壊を使用する", "Use easy auto-destroyer") },
505
506         { &destroy_feeling,             FALSE, OPT_PAGE_AUTODESTROY, 7, 8,
507         "destroy_feeling",              _("簡易鑑定したとき自動破壊を適用する", "Apply auto-destroy as sense feeling") },
508
509         { &destroy_identify,            FALSE, OPT_PAGE_AUTODESTROY, 7, 9,
510         "destroy_identify",             _("鑑定したとき自動破壊を適用する", "Apply auto-destroy as identify an item") },
511
512         { &leave_worth,                 TRUE,  OPT_PAGE_AUTODESTROY, 7, 2,
513         "leave_worth",                  _("価値があるアイテムは壊さない", "Auto-destroyer leaves known worthy items") },
514
515         { &leave_equip,                 FALSE, OPT_PAGE_AUTODESTROY, 7, 3,
516         "leave_equip",                  _("武器/防具は壊さない", "Auto-destroyer leaves weapons and armour") },
517
518         { &leave_chest,                 TRUE,  OPT_PAGE_AUTODESTROY, 7, 7,
519         "leave_chest",                  _("開封されていない箱は壊さない", "Auto-destroyer leaves closed chests") },
520
521         { &leave_wanted,                TRUE,  OPT_PAGE_AUTODESTROY, 7, 4,
522         "leave_wanted",                 _("賞金首の死体/骨は壊さない", "Auto-destroyer leaves wanted corpses") },
523
524         { &leave_corpse,                FALSE, OPT_PAGE_AUTODESTROY, 7, 5,
525         "leave_corpse",                 _("死体/骨は壊さない", "Auto-destroyer leaves corpses and skeletons") },
526
527         { &leave_junk,                  FALSE, OPT_PAGE_AUTODESTROY, 7, 6,
528         "leave_junk",                   _("がらくたは壊さない", "Auto-destroyer leaves junk") },
529
530         { &leave_special,               TRUE,  OPT_PAGE_AUTODESTROY, 7, 1,
531         "leave_special",                _("種族/職業で特別に必要なアイテムは壊さない", "Auto-destroyer leaves items your race/class needs") },
532
533 /*** Play-record Options ***/
534
535         { &record_fix_art,              TRUE,  OPT_PAGE_PLAYRECORD, 4, 11,
536         "record_fix_art",               _("固定アーティファクトの入手を記録する", "Record fixed artifacts") },
537
538         { &record_rand_art,             TRUE,  OPT_PAGE_PLAYRECORD, 4, 12,
539         "record_rand_art",              _("ランダムアーティファクトの入手を記録する", "Record random artifacts") },
540
541         { &record_destroy_uniq,         TRUE,  OPT_PAGE_PLAYRECORD, 4, 13,
542         "record_destroy_uniq",          _("ユニークモンスターを倒したときを記録する", "Record when destroy unique monster") },
543
544         { &record_fix_quest,            TRUE,  OPT_PAGE_PLAYRECORD, 4, 14,
545         "record_fix_quest",             _("固定クエストの達成を記録する", "Record fixed quests") },
546
547         { &record_rand_quest,           TRUE,  OPT_PAGE_PLAYRECORD, 4, 15,
548         "record_rand_quest",            _("ランダムクエストの達成を記録する", "Record random quests") },
549
550         { &record_maxdepth,             TRUE,  OPT_PAGE_PLAYRECORD, 4, 16,
551         "record_maxdepth",              _("最深階を更新したときに記録する", "Record movements to deepest level") },
552
553         { &record_stair,                TRUE,  OPT_PAGE_PLAYRECORD, 4, 17,
554         "record_stair",                 _("階の移動を記録する", "Record recall and stair movements") },
555
556         { &record_buy,                  TRUE,  OPT_PAGE_PLAYRECORD, 4, 18,
557         "record_buy",                   _("アイテムの購入を記録する", "Record purchased items") },
558
559         { &record_sell,                 FALSE, OPT_PAGE_PLAYRECORD, 4, 19,
560         "record_sell",                  _("アイテムの売却を記録する", "Record sold items") },
561
562         { &record_danger,               TRUE,  OPT_PAGE_PLAYRECORD, 4, 20,
563         "record_danger",                _("ピンチになったときを記録する", "Record hitpoint warning") },
564
565         { &record_arena,                TRUE,  OPT_PAGE_PLAYRECORD, 4, 21,
566         "record_arena",                 _("アリーナでの勝利を記録する", "Record arena victories") },
567
568         { &record_ident,                TRUE,  OPT_PAGE_PLAYRECORD, 4, 22,
569         "record_ident",                 _("未判明のアイテムの識別を記録する", "Record first identified items") },
570
571         { &record_named_pet,            FALSE, OPT_PAGE_PLAYRECORD, 4, 23,
572         "record_named_pet",             _("名前つきペットの情報を記録する", "Record information about named pets") },
573
574 /*** End of Table ***/
575
576         { NULL,                         0, 0, 0, 0,
577         NULL,                           NULL }
578 };
579
580 /*!
581  * チートオプションの定義テーブル / Cheating options
582  */
583 const option_type cheat_info[CHEAT_MAX] =
584 {
585         { &cheat_peek,          FALSE,  255,    0x01, 0x00,
586         "cheat_peek",           _("アイテムの生成をのぞき見る", "Peek into object creation")
587         },
588
589         { &cheat_hear,          FALSE,  255,    0x02, 0x00,
590         "cheat_hear",           _("モンスターの生成をのぞき見る", "Peek into monster creation")
591         },
592
593         { &cheat_room,          FALSE,  255,    0x04, 0x00,
594         "cheat_room",           _("ダンジョンの生成をのぞき見る", "Peek into dungeon creation")
595         },
596
597         { &cheat_xtra,          FALSE,  255,    0x08, 0x00,
598         "cheat_xtra",           _("その他の事をのぞき見る", "Peek into something else")
599         },
600
601         { &cheat_know,          FALSE,  255,    0x10, 0x00,
602         "cheat_know",           _("完全なモンスターの思い出を知る", "Know complete monster info")
603         },
604
605         { &cheat_live,          FALSE,  255,    0x20, 0x00,
606         "cheat_live",           _("死を回避することを可能にする", "Allow player to avoid death")
607         },
608
609         { &cheat_save,          FALSE,  255,    0x40, 0x00,
610         "cheat_save",           _("死んだ時セーブするか確認する", "Ask for saving death")
611         },
612
613         { &cheat_diary_output,  FALSE,  255,    0x80, 0x00,
614         "cheat_diary_output",   _("ウィザードログを日記に出力する", "Output wizard log to diary.")
615         },
616
617         { &cheat_turn,  FALSE,  255,    0x81, 0x00,
618         "cheat_turn",   _("ゲームメッセージにターン表示を行う", "Put turn in game messages.")
619         },
620
621         { &cheat_sight, FALSE,  255,    0x82, 0x00,
622         "cheat_sight",  _("「見る」コマンドを拡張する。", "Expand \"L\"ook command.")
623         }
624 };
625
626
627 /*!
628 * 自動セーブオプションテーブル
629 */
630 const option_type autosave_info[2] =
631 {
632         { &autosave_l,      FALSE, 255, 0x01, 0x00,
633         "autosave_l",    _("新しい階に入る度に自動セーブする", "Autosave when entering new levels") },
634
635         { &autosave_t,      FALSE, 255, 0x02, 0x00,
636         "autosave_t",   _("一定ターン毎に自動セーブする", "Timed autosave") },
637 };