OSDN Git Service

Merge pull request #114 from taotao54321/fix-music-after-home-and-museum
[hengbandforosx/hengbandosx.git] / src / main-win.c
1 /*!
2  * todo main関数を含むファイルの割に長過ぎる。main-win-utils.cなどといった形で分割したい
3  * @file main-win.c
4  * @brief Windows版固有実装(メインエントリポイント含む)
5  * @date 2018/03/16
6  * @author Hengband Team
7  * @details
8  *
9  * <h3>概要</h3>
10  * Windows98かその前後の頃を起点としたAPI実装。
11  * 各種のゲームエンジンは無論、
12  * DirectXといった昨今描画に標準的となったライブラリも用いていない。
13  * タイルの描画処理などについては、現在動作の詳細を検証中。
14  *
15  * <h3>フォーク元の概要</h3>
16  * <p>
17  * Copyright (c) 1997 Ben Harrison, Skirmantas Kligys, and others
18  *
19  * This software may be copied and distributed for educational, research,
20  * and not for profit purposes provided that this copyright and statement
21  * are included in all such copies.
22  * </p>
23  * <p>
24  * This file helps Angband work with Windows computers.
25  *
26  * To use this file, use an appropriate "Makefile" or "Project File",
27  * make sure that "WINDOWS" and/or "WIN32" are defined somewhere, and
28  * make sure to obtain various extra files as described below.
29  *
30  * The official compilation uses the CodeWarrior Pro compiler, which
31  * includes a special project file and precompilable header file.
32  * </p>
33  *
34  * <p>
35  * The "lib/user/pref-win.prf" file contains keymaps, macro definitions,
36  * and/or color redefinitions.
37  * </p>
38  *
39  * <p>
40  * The "lib/user/font-win.prf" contains attr/char mappings for use with the
41  * normal "lib/xtra/font/*.fon" font files.
42  * </p>
43  *
44  * <p>
45  * The "lib/user/graf-win.prf" contains attr/char mappings for use with the
46  * special "lib/xtra/graf/*.bmp" bitmap files, which are activated by a menu
47  * item.
48  * </p>
49  *
50  * <p>
51  * Compiling this file, and using the resulting executable, requires
52  * several extra files not distributed with the standard Angband code.
53  * In any case, some "*.fon" files (including "8X13.FON" if nothing else)
54  * must be placed into "lib/xtra/font/".  All of these extra files can be found
55  * in the "ext-win" archive.
56  * </p>
57  *
58  * <p>
59  * The "term_xtra_win_clear()" function should probably do a low-level
60  * clear of the current window, and redraw the borders and other things,
61  * if only for efficiency.
62  * </p>
63  *
64  * <p>
65  * A simpler method is needed for selecting the "tile size" for windows.
66  * </p>
67  *
68  * <p>
69  * The various "warning" messages assume the existance of the "screen.w"
70  * window, I think, and only a few calls actually check for its existance,
71  * this may be okay since "NULL" means "on top of all windows". (?)  The
72  * user must never be allowed to "hide" the main window, or the "menubar"
73  * will disappear.
74  * </p>
75  *
76  * <p>
77  * Special "Windows Help Files" can be placed into "lib/xtra/help/" for
78  * use with the "winhelp.exe" program.  These files *may* be available
79  * at the ftp site somewhere, but I have not seen them.
80  * </p>
81  *
82  * <p>
83  * Initial framework (and most code) by Ben Harrison (benh@phial.com).
84  *
85  * Original code by Skirmantas Kligys (kligys@scf.usc.edu).
86  *
87  * Additional code by Ross E Becker (beckerr@cis.ohio-state.edu),
88  * and Chris R. Martin (crm7479@tam2000.tamu.edu).
89  * </p>
90  */
91
92 #include "autopick/autopick-pref-processor.h"
93 #include "cmd-io/cmd-process-screen.h"
94 #include "cmd-io/cmd-save.h"
95 #include "core/game-play.h"
96 #include "core/player-processor.h"
97 #include "core/scores.h"
98 #include "core/special-internal-keys.h"
99 #include "core/stuff-handler.h"
100 #include "core/visuals-reseter.h"
101 #include "dungeon/quest.h"
102 #include "floor/floor-base-definitions.h"
103 #include "floor/floor-events.h"
104 #include "game-option/runtime-arguments.h"
105 #include "game-option/special-options.h"
106 #include "io/files-util.h"
107 #include "io/inet.h"
108 #include "io/input-key-acceptor.h"
109 #include "io/record-play-movie.h"
110 #include "io/signal-handlers.h"
111 #include "io/write-diary.h"
112 #include "main/angband-initializer.h"
113 #include "main/music-definitions-table.h"
114 #include "main/sound-definitions-table.h"
115 #include "main/sound-of-music.h"
116 #include "monster-floor/monster-lite.h"
117 #include "system/angband-version.h"
118 #include "system/angband.h"
119 #include "system/floor-type-definition.h"
120 #include "system/system-variables.h"
121 #include "term/gameterm.h"
122 #include "term/screen-processor.h"
123 #include "term/term-color-types.h"
124 #include "util/angband-files.h"
125 #include "util/int-char-converter.h"
126 #include "util/string-processor.h"
127 #include "view/display-map.h"
128 #include "view/display-messages.h"
129 #include "world/world.h"
130
131 #ifdef WINDOWS
132 #include "dungeon/dungeon.h"
133 #include "save/save.h"
134 #include <direct.h>
135 #include <locale.h>
136 #include <windows.h>
137
138 /*
139  * Available graphic modes
140  */
141 #define GRAPHICS_NONE 0
142 #define GRAPHICS_ORIGINAL 1
143 #define GRAPHICS_ADAM_BOLT 2
144 #define GRAPHICS_HENGBAND 3
145
146 /*
147  * Menu constants -- see "ANGBAND.RC"
148  */
149 #define IDM_FILE_NEW 100
150 #define IDM_FILE_OPEN 101
151 #define IDM_FILE_SAVE 110
152 #define IDM_FILE_SCORE 120
153 #define IDM_FILE_MOVIE 121
154 #define IDM_FILE_EXIT 130
155
156 #define IDM_WINDOW_VIS_0 200
157 #define IDM_WINDOW_VIS_1 201
158 #define IDM_WINDOW_VIS_2 202
159 #define IDM_WINDOW_VIS_3 203
160 #define IDM_WINDOW_VIS_4 204
161 #define IDM_WINDOW_VIS_5 205
162 #define IDM_WINDOW_VIS_6 206
163 #define IDM_WINDOW_VIS_7 207
164
165 #define IDM_WINDOW_FONT_0 210
166 #define IDM_WINDOW_FONT_1 211
167 #define IDM_WINDOW_FONT_2 212
168 #define IDM_WINDOW_FONT_3 213
169 #define IDM_WINDOW_FONT_4 214
170 #define IDM_WINDOW_FONT_5 215
171 #define IDM_WINDOW_FONT_6 216
172 #define IDM_WINDOW_FONT_7 217
173
174 #define IDM_WINDOW_POS_0 220
175 #define IDM_WINDOW_POS_1 221
176 #define IDM_WINDOW_POS_2 222
177 #define IDM_WINDOW_POS_3 223
178 #define IDM_WINDOW_POS_4 224
179 #define IDM_WINDOW_POS_5 225
180 #define IDM_WINDOW_POS_6 226
181 #define IDM_WINDOW_POS_7 227
182
183 #define IDM_WINDOW_BIZ_0 230
184 #define IDM_WINDOW_BIZ_1 231
185 #define IDM_WINDOW_BIZ_2 232
186 #define IDM_WINDOW_BIZ_3 233
187 #define IDM_WINDOW_BIZ_4 234
188 #define IDM_WINDOW_BIZ_5 235
189 #define IDM_WINDOW_BIZ_6 236
190 #define IDM_WINDOW_BIZ_7 237
191
192 #define IDM_WINDOW_I_WID_0 240
193 #define IDM_WINDOW_I_WID_1 241
194 #define IDM_WINDOW_I_WID_2 242
195 #define IDM_WINDOW_I_WID_3 243
196 #define IDM_WINDOW_I_WID_4 244
197 #define IDM_WINDOW_I_WID_5 245
198 #define IDM_WINDOW_I_WID_6 246
199 #define IDM_WINDOW_I_WID_7 247
200
201 #define IDM_WINDOW_D_WID_0 250
202 #define IDM_WINDOW_D_WID_1 251
203 #define IDM_WINDOW_D_WID_2 252
204 #define IDM_WINDOW_D_WID_3 253
205 #define IDM_WINDOW_D_WID_4 254
206 #define IDM_WINDOW_D_WID_5 255
207 #define IDM_WINDOW_D_WID_6 256
208 #define IDM_WINDOW_D_WID_7 257
209
210 #define IDM_WINDOW_I_HGT_0 260
211 #define IDM_WINDOW_I_HGT_1 261
212 #define IDM_WINDOW_I_HGT_2 262
213 #define IDM_WINDOW_I_HGT_3 263
214 #define IDM_WINDOW_I_HGT_4 264
215 #define IDM_WINDOW_I_HGT_5 265
216 #define IDM_WINDOW_I_HGT_6 266
217 #define IDM_WINDOW_I_HGT_7 267
218
219 #define IDM_WINDOW_D_HGT_0 270
220 #define IDM_WINDOW_D_HGT_1 271
221 #define IDM_WINDOW_D_HGT_2 272
222 #define IDM_WINDOW_D_HGT_3 273
223 #define IDM_WINDOW_D_HGT_4 274
224 #define IDM_WINDOW_D_HGT_5 275
225 #define IDM_WINDOW_D_HGT_6 276
226 #define IDM_WINDOW_D_HGT_7 277
227
228 #define IDM_OPTIONS_NO_GRAPHICS 400
229 #define IDM_OPTIONS_OLD_GRAPHICS 401
230 #define IDM_OPTIONS_NEW_GRAPHICS 402
231 #define IDM_OPTIONS_NEW2_GRAPHICS 403
232 #define IDM_OPTIONS_BIGTILE 409
233 #define IDM_OPTIONS_SOUND 410
234 #define IDM_OPTIONS_MUSIC 411
235 #define IDM_OPTIONS_SAVER 420
236 #define IDM_OPTIONS_MAP 430
237 #define IDM_OPTIONS_BG 440
238 #define IDM_OPTIONS_OPEN_BG 441
239
240 #define IDM_DUMP_SCREEN_HTML 450
241
242 #define IDM_HELP_CONTENTS 901
243
244 /*
245  * Exclude parts of WINDOWS.H that are not needed (Win32)
246  */
247 #define WIN32_LEAN_AND_MEAN
248 #define NONLS /* All NLS defines and routines */
249 #define NOSERVICE /* All Service Controller routines, SERVICE_ equates, etc. */
250 #define NOMCX /* Modem Configuration Extensions */
251
252 /*
253  * Include the "windows" support file
254  */
255 #include <windows.h>
256
257 /*
258  * Exclude parts of MMSYSTEM.H that are not needed
259  */
260 #define MMNODRV /* Installable driver support */
261 #define MMNOWAVE /* Waveform support */
262 #define MMNOMIDI /* MIDI support */
263 #define MMNOAUX /* Auxiliary audio support */
264 #define MMNOTIMER /* Timer support */
265 #define MMNOJOY /* Joystick support */
266 #define MMNOMCI /* MCI support */
267 #define MMNOMMIO /* Multimedia file I/O support */
268
269 #define INVALID_FILE_NAME (DWORD)0xFFFFFFFF
270 #define MOUSE_SENS 40
271
272 /*
273  * Include some more files. Note: the Cygnus Cygwin compiler
274  * doesn't use mmsystem.h instead it includes the winmm library
275  * which performs a similar function.
276  */
277 #include <commdlg.h>
278 #include <mmsystem.h>
279
280 /*
281  * Include the support for loading bitmaps
282  */
283 #include "term/readdib.h"
284
285 #define MoveTo(H, X, Y) MoveToEx(H, X, Y, NULL)
286
287 /*
288  * Foreground color bits
289  */
290 #define VID_BLACK 0x00
291 #define VID_BLUE 0x01
292 #define VID_GREEN 0x02
293 #define VID_CYAN 0x03
294 #define VID_RED 0x04
295 #define VID_MAGENTA 0x05
296 #define VID_YELLOW 0x06
297 #define VID_WHITE 0x07
298
299 /*
300  * Bright text
301  */
302 #define VID_BRIGHT 0x08
303
304 /*!
305  * @struct term_data
306  * @brief ターム情報構造体 / Extra "term" data
307  * @details
308  * <p>
309  * pos_x / pos_y は各タームの左上点座標を指す。
310  * </p>
311  * <p>
312  * tile_wid / tile_hgt は[ウィンドウ]メニューのタイルの幅/高さを~を
313  * 1ドットずつ調整するステータスを指す。
314  * また、フォントを変更すると都度自動調整される。
315  * </p>
316  * <p>
317  * Note the use of "font_want" for the names of the font file requested by
318  * the user, and the use of "font_file" for the currently active font file.
319  *
320  * The "font_file" is uppercased, and takes the form "8X13.FON", while
321  * "font_want" can be in almost any form as long as it could be construed
322  * as attempting to represent the name of a font.
323  * </p>
324  */
325 typedef struct {
326     term_type t;
327     concptr s;
328     HWND w;
329     DWORD dwStyle;
330     DWORD dwExStyle;
331
332     uint keys;
333     TERM_LEN rows; /* int -> uint */
334     TERM_LEN cols;
335
336     uint pos_x; //!< タームの左上X座標
337     uint pos_y; //!< タームの左上Y座標
338     uint size_wid;
339     uint size_hgt;
340     uint size_ow1;
341     uint size_oh1;
342     uint size_ow2;
343     uint size_oh2;
344
345     bool size_hack;
346     bool xtra_hack;
347     bool visible;
348     bool bizarre;
349     concptr font_want;
350     concptr font_file;
351     HFONT font_id;
352     int font_wid; //!< フォント横幅
353     int font_hgt; //!< フォント縦幅
354     int tile_wid; //!< タイル横幅
355     int tile_hgt; //!< タイル縦幅
356
357     uint map_tile_wid;
358     uint map_tile_hgt;
359
360     bool map_active;
361     LOGFONT lf;
362
363     bool posfix;
364 } term_data;
365
366 #define MAX_TERM_DATA 8 //!< Maximum number of windows
367
368 static term_data data[MAX_TERM_DATA]; //!< An array of term_data's
369 static term_data *my_td; //!< Hack -- global "window creation" pointer
370 POINT normsize; //!< Remember normal size of main window when maxmized
371
372 /*
373  * was main window maximized on previous playing
374  */
375 bool win_maximized = FALSE;
376
377 /*
378  * game in progress
379  */
380 bool game_in_progress = FALSE;
381
382 /*
383  * note when "open"/"new" become valid
384  */
385 bool initialized = FALSE;
386
387 /*
388  * screen paletted, i.e. 256 colors
389  */
390 bool paletted = FALSE;
391
392 /*
393  * 16 colors screen, don't use RGB()
394  */
395 bool colors16 = FALSE;
396
397 /*
398  * Saved instance handle
399  */
400 static HINSTANCE hInstance;
401
402 /*
403  * Yellow brush for the cursor
404  */
405 static HBRUSH hbrYellow;
406
407 /*
408  * An icon
409  */
410 static HICON hIcon;
411
412 /*
413  * A palette
414  */
415 static HPALETTE hPal;
416
417 /* bg */
418 static HBITMAP hBG = NULL;
419 static int use_bg = 0; //!< 背景使用フラグ、1なら私用。
420 static char bg_bitmap_file[1024] = "bg.bmp"; //!< 現在の背景ビットマップファイル名。
421
422 /*
423  * The screen saver window
424  */
425 static HWND hwndSaver;
426
427 /*!
428  * 現在使用中のタイルID(0ならば未使用)
429  * Flag set once "graphics" has been initialized
430  */
431 static byte current_graphics_mode = 0;
432
433 /*
434  * The global bitmap
435  */
436 static DIBINIT infGraph;
437
438 /*
439  * The global bitmap mask
440  */
441 static DIBINIT infMask;
442
443 /*
444  * Flag set once "sound" has been initialized
445  */
446 static bool can_use_sound = FALSE;
447
448 #define SAMPLE_SOUND_MAX 16
449 /*
450  * An array of sound file names
451  */
452 static concptr sound_file[SOUND_MAX][SAMPLE_SOUND_MAX];
453
454 #define SAMPLE_MUSIC_MAX 16
455 static concptr music_file[MUSIC_BASIC_MAX][SAMPLE_MUSIC_MAX];
456 static concptr dungeon_music_file[1000][SAMPLE_MUSIC_MAX];
457 static concptr town_music_file[1000][SAMPLE_MUSIC_MAX];
458 static concptr quest_music_file[1000][SAMPLE_MUSIC_MAX];
459 static bool can_use_music = FALSE;
460
461 static MCI_OPEN_PARMS mop;
462 static char mci_device_type[256];
463
464 int current_music_type = 0;
465 int current_music_id = 0;
466
467 /*
468  * Full path to ANGBAND.INI
469  */
470 static concptr ini_file = NULL;
471
472 /*
473  * Name of application
474  */
475 static concptr AppName = "ANGBAND";
476
477 /*
478  * Name of sub-window type
479  */
480 static concptr AngList = "AngList";
481
482 /*
483  * Directory names
484  */
485 static concptr ANGBAND_DIR_XTRA_GRAF;
486 static concptr ANGBAND_DIR_XTRA_SOUND;
487 static concptr ANGBAND_DIR_XTRA_MUSIC;
488 static concptr ANGBAND_DIR_XTRA_HELP;
489 static concptr ANGBAND_DIR_XTRA_MUSIC;
490
491 /*
492  * The "complex" color values
493  */
494 static COLORREF win_clr[256];
495
496 /*
497  * Flag for macro trigger with dump ASCII
498  */
499 static bool term_no_press = FALSE;
500
501 /*
502  * Copy and paste
503  */
504 static bool mouse_down = FALSE;
505 static bool paint_rect = FALSE;
506 static TERM_LEN mousex = 0, mousey = 0;
507 static TERM_LEN oldx, oldy;
508
509 /*!
510  * @brief The "simple" color values
511  * @details
512  * See "main-ibm.c" for original table information
513  * The entries below are taken from the "color bits" defined above.
514  * Note that many of the choices below suck, but so do crappy monitors.
515  */
516 static BYTE win_pal[256] = {
517     VID_BLACK, /* Dark */
518     VID_WHITE, /* White */
519     VID_CYAN, /* Slate XXX */
520     VID_RED | VID_BRIGHT, /* Orange XXX */
521     VID_RED, /* Red */
522     VID_GREEN, /* Green */
523     VID_BLUE, /* Blue */
524     VID_YELLOW, /* Umber XXX */
525     VID_BLACK | VID_BRIGHT, /* Light Dark */
526     VID_CYAN | VID_BRIGHT, /* Light Slate XXX */
527     VID_MAGENTA, /* Violet XXX */
528     VID_YELLOW | VID_BRIGHT, /* Yellow */
529     VID_MAGENTA | VID_BRIGHT, /* Light Red XXX */
530     VID_GREEN | VID_BRIGHT, /* Light Green */
531     VID_BLUE | VID_BRIGHT, /* Light Blue */
532     VID_YELLOW /* Light Umber XXX */
533 };
534
535 /*
536  * Hack -- define which keys are "special"
537  */
538 static bool special_key[256];
539 static bool ignore_key[256];
540
541 /*
542  * Hack -- initialization list for "special_key"
543  */
544 static byte special_key_list[] = {
545     VK_CLEAR, VK_PAUSE, VK_CAPITAL, VK_KANA, VK_JUNJA, VK_FINAL, VK_KANJI, VK_CONVERT, VK_NONCONVERT, VK_ACCEPT, VK_MODECHANGE, VK_PRIOR, VK_NEXT, VK_END,
546     VK_HOME, VK_LEFT, VK_UP, VK_RIGHT, VK_DOWN, VK_SELECT, VK_PRINT, VK_EXECUTE, VK_SNAPSHOT, VK_INSERT, VK_DELETE, VK_HELP, VK_APPS, VK_NUMPAD0, VK_NUMPAD1,
547     VK_NUMPAD2, VK_NUMPAD3, VK_NUMPAD4, VK_NUMPAD5, VK_NUMPAD6, VK_NUMPAD7, VK_NUMPAD8, VK_NUMPAD9, VK_MULTIPLY, VK_ADD, VK_SEPARATOR, VK_SUBTRACT, VK_DECIMAL,
548     VK_DIVIDE, VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6, VK_F7, VK_F8, VK_F9, VK_F10, VK_F11, VK_F12, VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19,
549     VK_F20, VK_F21, VK_F22, VK_F23, VK_F24, VK_NUMLOCK, VK_SCROLL, VK_ATTN, VK_CRSEL, VK_EXSEL, VK_EREOF, VK_PLAY, VK_ZOOM, VK_NONAME, VK_PA1,
550     0 /* End of List */
551 };
552
553 static byte ignore_key_list[] = {
554     VK_ESCAPE, VK_TAB, VK_SPACE, 'F', 'W', 'O', /*'H',*/ /* these are menu characters.*/
555     VK_SHIFT, VK_CONTROL, VK_MENU, VK_LWIN, VK_RWIN, VK_LSHIFT, VK_RSHIFT, VK_LCONTROL, VK_RCONTROL, VK_LMENU, VK_RMENU, 0 /* End of List */
556 };
557
558 /* Function prototype */
559
560 static bool is_already_running(void);
561
562 /* bg */
563 static void delete_bg(void)
564 {
565     if (hBG != NULL) {
566         DeleteObject(hBG);
567         hBG = NULL;
568     }
569 }
570
571 static int init_bg(void)
572 {
573     char *bmfile = bg_bitmap_file;
574     delete_bg();
575     if (use_bg == 0)
576         return 0;
577
578     hBG = LoadImage(NULL, bmfile, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
579     if (!hBG) {
580         plog_fmt(_("壁紙用ビットマップ '%s' を読み込めません。", "Can't load the bitmap file '%s'."), bmfile);
581         use_bg = 0;
582         return 0;
583     }
584
585     use_bg = 1;
586     return 1;
587 }
588
589 static void DrawBG(HDC hdc, RECT *r)
590 {
591     if (!use_bg || !hBG)
592         return;
593
594     int x = r->left, y = r->top;
595     int nx = x;
596     int ny = y;
597     BITMAP bm;
598     GetObject(hBG, sizeof(bm), &bm);
599     int swid = bm.bmWidth;
600     int shgt = bm.bmHeight;
601
602     HDC hdcSrc = CreateCompatibleDC(hdc);
603     HBITMAP hOld = SelectObject(hdcSrc, hBG);
604
605     do {
606         int sx = nx % swid;
607         int cwid = MIN(swid - sx, r->right - nx);
608         do {
609             int sy = ny % shgt;
610             int chgt = MIN(shgt - sy, r->bottom - ny);
611             BitBlt(hdc, nx, ny, cwid, chgt, hdcSrc, sx, sy, SRCCOPY);
612             ny += chgt;
613         } while (ny < r->bottom);
614
615         ny = y;
616         nx += cwid;
617     } while (nx < r->right);
618
619     SelectObject(hdcSrc, hOld);
620     DeleteDC(hdcSrc);
621 }
622
623 /*
624  * Check for existance of a file
625  */
626 static bool check_file(concptr s)
627 {
628     char path[1024];
629     strcpy(path, s);
630     DWORD attrib = GetFileAttributes(path);
631     if (attrib == INVALID_FILE_NAME)
632         return FALSE;
633     if (attrib & FILE_ATTRIBUTE_DIRECTORY)
634         return FALSE;
635
636     return TRUE;
637 }
638
639 /*
640  * Check for existance of a directory
641  */
642 static bool check_dir(concptr s)
643 {
644     char path[1024];
645     strcpy(path, s);
646     int i = strlen(path);
647     if (i && (path[i - 1] == '\\'))
648         path[--i] = '\0';
649
650     DWORD attrib = GetFileAttributes(path);
651     if (attrib == INVALID_FILE_NAME)
652         return FALSE;
653     if (!(attrib & FILE_ATTRIBUTE_DIRECTORY))
654         return FALSE;
655
656     return TRUE;
657 }
658
659 /*
660  * Validate a file
661  */
662 static void validate_file(concptr s)
663 {
664     if (check_file(s))
665         return;
666
667     quit_fmt(_("必要なファイル[%s]が見あたりません。", "Cannot find required file:\n%s"), s);
668 }
669
670 /*
671  * Validate a directory
672  */
673 static void validate_dir(concptr s, bool vital)
674 {
675     if (check_dir(s))
676         return;
677
678     if (vital) {
679         quit_fmt(_("必要なディレクトリ[%s]が見あたりません。", "Cannot find required directory:\n%s"), s);
680     } else if (mkdir(s)) {
681         quit_fmt("Unable to create directory:\n%s", s);
682     }
683 }
684
685 /*!
686  * @brief (Windows版固有実装)Get the "size" for a window
687  */
688 static void term_getsize(term_data *td)
689 {
690     if (td->cols < 1)
691         td->cols = 1;
692     if (td->rows < 1)
693         td->rows = 1;
694
695     TERM_LEN wid = td->cols * td->tile_wid + td->size_ow1 + td->size_ow2;
696     TERM_LEN hgt = td->rows * td->tile_hgt + td->size_oh1 + td->size_oh2;
697
698     RECT rw, rc;
699     if (td->w) {
700         GetWindowRect(td->w, &rw);
701         GetClientRect(td->w, &rc);
702
703         td->size_wid = (rw.right - rw.left) - (rc.right - rc.left) + wid;
704         td->size_hgt = (rw.bottom - rw.top) - (rc.bottom - rc.top) + hgt;
705
706         td->pos_x = rw.left;
707         td->pos_y = rw.top;
708     } else {
709         /* Tempolary calculation */
710         rc.left = 0;
711         rc.right = wid;
712         rc.top = 0;
713         rc.bottom = hgt;
714         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
715         td->size_wid = rc.right - rc.left;
716         td->size_hgt = rc.bottom - rc.top;
717     }
718 }
719
720 /*
721  * Write the "prefs" for a single term
722  */
723 static void save_prefs_aux(int i)
724 {
725     term_data *td = &data[i];
726     GAME_TEXT sec_name[128];
727     char buf[1024];
728
729     if (!td->w)
730         return;
731
732     sprintf(sec_name, "Term-%d", i);
733
734     if (i > 0) {
735         strcpy(buf, td->visible ? "1" : "0");
736         WritePrivateProfileString(sec_name, "Visible", buf, ini_file);
737     }
738
739 #ifdef JP
740     strcpy(buf, td->lf.lfFaceName[0] != '\0' ? td->lf.lfFaceName : "MS ゴシック");
741 #else
742     strcpy(buf, td->lf.lfFaceName[0] != '\0' ? td->lf.lfFaceName : "Courier");
743 #endif
744
745     WritePrivateProfileString(sec_name, "Font", buf, ini_file);
746
747     wsprintf(buf, "%d", td->lf.lfWidth);
748     WritePrivateProfileString(sec_name, "FontWid", buf, ini_file);
749     wsprintf(buf, "%d", td->lf.lfHeight);
750     WritePrivateProfileString(sec_name, "FontHgt", buf, ini_file);
751     wsprintf(buf, "%d", td->lf.lfWeight);
752     WritePrivateProfileString(sec_name, "FontWgt", buf, ini_file);
753
754     strcpy(buf, td->bizarre ? "1" : "0");
755     WritePrivateProfileString(sec_name, "Bizarre", buf, ini_file);
756
757     wsprintf(buf, "%d", td->tile_wid);
758     WritePrivateProfileString(sec_name, "TileWid", buf, ini_file);
759
760     wsprintf(buf, "%d", td->tile_hgt);
761     WritePrivateProfileString(sec_name, "TileHgt", buf, ini_file);
762
763     WINDOWPLACEMENT lpwndpl;
764     lpwndpl.length = sizeof(WINDOWPLACEMENT);
765     GetWindowPlacement(td->w, &lpwndpl);
766
767     RECT rc = lpwndpl.rcNormalPosition;
768     if (i == 0)
769         wsprintf(buf, "%d", normsize.x);
770     else
771         wsprintf(buf, "%d", td->cols);
772
773     WritePrivateProfileString(sec_name, "NumCols", buf, ini_file);
774
775     if (i == 0)
776         wsprintf(buf, "%d", normsize.y);
777     else
778         wsprintf(buf, "%d", td->rows);
779
780     WritePrivateProfileString(sec_name, "NumRows", buf, ini_file);
781     if (i == 0) {
782         strcpy(buf, IsZoomed(td->w) ? "1" : "0");
783         WritePrivateProfileString(sec_name, "Maximized", buf, ini_file);
784     }
785
786     GetWindowRect(td->w, &rc);
787     wsprintf(buf, "%d", rc.left);
788     WritePrivateProfileString(sec_name, "PositionX", buf, ini_file);
789
790     wsprintf(buf, "%d", rc.top);
791     WritePrivateProfileString(sec_name, "PositionY", buf, ini_file);
792     if (i > 0) {
793         strcpy(buf, td->posfix ? "1" : "0");
794         WritePrivateProfileString(sec_name, "PositionFix", buf, ini_file);
795     }
796 }
797
798 /*
799  * Write the "prefs"
800  * We assume that the windows have all been initialized
801  */
802 static void save_prefs(void)
803 {
804     char buf[128];
805     sprintf(buf, "%d", arg_graphics);
806     WritePrivateProfileString("Angband", "Graphics", buf, ini_file);
807
808     strcpy(buf, arg_bigtile ? "1" : "0");
809     WritePrivateProfileString("Angband", "Bigtile", buf, ini_file);
810
811     strcpy(buf, arg_sound ? "1" : "0");
812     WritePrivateProfileString("Angband", "Sound", buf, ini_file);
813
814     strcpy(buf, arg_music ? "1" : "0");
815     WritePrivateProfileString("Angband", "Music", buf, ini_file);
816
817     strcpy(buf, use_bg ? "1" : "0");
818     WritePrivateProfileString("Angband", "BackGround", buf, ini_file);
819     WritePrivateProfileString("Angband", "BackGroundBitmap", bg_bitmap_file[0] != '\0' ? bg_bitmap_file : "bg.bmp", ini_file);
820     WritePrivateProfileString("Angband", "SaveFile", savefile, ini_file);
821
822     for (int i = 0; i < MAX_TERM_DATA; ++i) {
823         save_prefs_aux(i);
824     }
825 }
826
827 /*
828  * Load the "prefs" for a single term
829  */
830 static void load_prefs_aux(int i)
831 {
832     term_data *td = &data[i];
833     GAME_TEXT sec_name[128];
834     char tmp[1024];
835
836     int dispx = GetSystemMetrics(SM_CXVIRTUALSCREEN);
837     int dispy = GetSystemMetrics(SM_CYVIRTUALSCREEN);
838     int posx = 0;
839     int posy = 0;
840
841     sprintf(sec_name, "Term-%d", i);
842     sprintf(sec_name, "Term-%d", i);
843     if (i > 0) {
844         td->visible = (GetPrivateProfileInt(sec_name, "Visible", td->visible, ini_file) != 0);
845     }
846
847 #ifdef JP
848     GetPrivateProfileString(sec_name, "Font", "MS ゴシック", tmp, 127, ini_file);
849 #else
850     GetPrivateProfileString(sec_name, "Font", "Courier", tmp, 127, ini_file);
851 #endif
852
853     td->bizarre = (GetPrivateProfileInt(sec_name, "Bizarre", td->bizarre, ini_file) != 0);
854
855     td->font_want = string_make(tmp);
856     int hgt = 15;
857     int wid = 0;
858     td->lf.lfWidth = GetPrivateProfileInt(sec_name, "FontWid", wid, ini_file);
859     td->lf.lfHeight = GetPrivateProfileInt(sec_name, "FontHgt", hgt, ini_file);
860     td->lf.lfWeight = GetPrivateProfileInt(sec_name, "FontWgt", 0, ini_file);
861
862     td->tile_wid = GetPrivateProfileInt(sec_name, "TileWid", td->lf.lfWidth, ini_file);
863     td->tile_hgt = GetPrivateProfileInt(sec_name, "TileHgt", td->lf.lfHeight, ini_file);
864
865     td->cols = GetPrivateProfileInt(sec_name, "NumCols", td->cols, ini_file);
866     td->rows = GetPrivateProfileInt(sec_name, "NumRows", td->rows, ini_file);
867     normsize.x = td->cols;
868     normsize.y = td->rows;
869
870     if (i == 0) {
871         win_maximized = (GetPrivateProfileInt(sec_name, "Maximized", win_maximized, ini_file) != 0);
872     }
873
874     posx = GetPrivateProfileInt(sec_name, "PositionX", posx, ini_file);
875     posy = GetPrivateProfileInt(sec_name, "PositionY", posy, ini_file);
876     td->pos_x = MIN(MAX(0, posx), dispx - 128);
877     td->pos_y = MIN(MAX(0, posy), dispy - 128);
878
879     if (i > 0) {
880         td->posfix = (GetPrivateProfileInt(sec_name, "PositionFix", td->posfix, ini_file) != 0);
881     }
882 }
883
884 /*
885  * Load the "prefs"
886  */
887 static void load_prefs(void)
888 {
889     arg_graphics = (byte)GetPrivateProfileInt("Angband", "Graphics", GRAPHICS_NONE, ini_file);
890     arg_bigtile = (GetPrivateProfileInt("Angband", "Bigtile", FALSE, ini_file) != 0);
891     use_bigtile = arg_bigtile;
892     arg_sound = (GetPrivateProfileInt("Angband", "Sound", 0, ini_file) != 0);
893     arg_music = (GetPrivateProfileInt("Angband", "Music", 0, ini_file) != 0);
894     use_bg = GetPrivateProfileInt("Angband", "BackGround", 0, ini_file);
895     GetPrivateProfileString("Angband", "BackGroundBitmap", "bg.bmp", bg_bitmap_file, 1023, ini_file);
896     GetPrivateProfileString("Angband", "SaveFile", "", savefile, 1023, ini_file);
897     for (int i = 0; i < MAX_TERM_DATA; ++i) {
898         load_prefs_aux(i);
899     }
900 }
901
902 /*
903  * - Taken from files.c.
904  *
905  * Extract "tokens" from a buffer
906  *
907  * This function uses "whitespace" as delimiters, and treats any amount of
908  * whitespace as a single delimiter.  We will never return any empty tokens.
909  * When given an empty buffer, or a buffer containing only "whitespace", we
910  * will return no tokens.  We will never extract more than "num" tokens.
911  *
912  * By running a token through the "text_to_ascii()" function, you can allow
913  * that token to include (encoded) whitespace, using "\s" to encode spaces.
914  *
915  * We save pointers to the tokens in "tokens", and return the number found.
916  */
917 static s16b tokenize_whitespace(char *buf, s16b num, char **tokens)
918 {
919     s16b k = 0;
920     char *s = buf;
921
922     while (k < num) {
923         char *t;
924         for (; *s && iswspace(*s); ++s) /* loop */
925             ;
926
927         if (!*s)
928             break;
929
930         for (t = s; *t && !iswspace(*t); ++t) /* loop */
931             ;
932
933         if (*t)
934             *t++ = '\0';
935
936         tokens[k++] = s;
937         s = t;
938     }
939
940     return k;
941 }
942
943 static void load_sound_prefs(void)
944 {
945     char tmp[1024];
946     char ini_path[1024];
947     char wav_path[1024];
948     char *zz[SAMPLE_SOUND_MAX];
949
950     path_build(ini_path, 1024, ANGBAND_DIR_XTRA_SOUND, "sound_debug.cfg");
951     if (GetPrivateProfileString("Device", "type", "", mci_device_type, 256, ini_path) == 0) {
952         path_build(ini_path, 1024, ANGBAND_DIR_XTRA_SOUND, "sound.cfg");
953         GetPrivateProfileString("Device", "type", "", mci_device_type, 256, ini_path);
954     }
955
956     for (int i = 0; i < SOUND_MAX; i++) {
957         GetPrivateProfileString("Sound", angband_sound_name[i], "", tmp, 1024, ini_path);
958         int num = tokenize_whitespace(tmp, SAMPLE_SOUND_MAX, zz);
959         for (int j = 0; j < num; j++) {
960             path_build(wav_path, 1024, ANGBAND_DIR_XTRA_SOUND, zz[j]);
961             if (check_file(wav_path))
962                 sound_file[i][j] = string_make(zz[j]);
963         }
964     }
965 }
966
967 static void load_music_prefs(void)
968 {
969     char tmp[1024];
970     char ini_path[1024];
971     char wav_path[1024];
972     char *zz[SAMPLE_MUSIC_MAX];
973     char key[80];
974
975     path_build(ini_path, 1024, ANGBAND_DIR_XTRA_MUSIC, "music_debug.cfg");
976     if (GetPrivateProfileString("Device", "type", "", mci_device_type, 256, ini_path) == 0) {
977         path_build(ini_path, 1024, ANGBAND_DIR_XTRA_MUSIC, "music.cfg");
978         GetPrivateProfileString("Device", "type", "", mci_device_type, 256, ini_path);
979     }
980
981     for (int i = 0; i < MUSIC_BASIC_MAX; i++) {
982         GetPrivateProfileString("Basic", angband_music_basic_name[i], "", tmp, 1024, ini_path);
983         int num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
984         for (int j = 0; j < num; j++) {
985             path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
986             if (check_file(wav_path))
987                 music_file[i][j] = string_make(zz[j]);
988         }
989     }
990
991     for (int i = 0; i < current_world_ptr->max_d_idx; i++) {
992         sprintf(key, "dungeon%03d", i);
993         GetPrivateProfileString("Dungeon", key, "", tmp, 1024, ini_path);
994         int num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
995         for (int j = 0; j < num; j++) {
996             path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
997             if (check_file(wav_path))
998                 dungeon_music_file[i][j] = string_make(zz[j]);
999         }
1000     }
1001
1002     for (int i = 0; i < max_q_idx; i++) {
1003         sprintf(key, "quest%03d", i);
1004         GetPrivateProfileString("Quest", key, "", tmp, 1024, ini_path);
1005         int num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1006         for (int j = 0; j < num; j++) {
1007             path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1008             if (check_file(wav_path))
1009                 quest_music_file[i][j] = string_make(zz[j]);
1010         }
1011     }
1012
1013     for (int i = 0; i < 1000; i++) /*!< @todo 町最大数指定 */
1014     {
1015         sprintf(key, "town%03d", i);
1016         GetPrivateProfileString("Town", key, "", tmp, 1024, ini_path);
1017         int num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1018         for (int j = 0; j < num; j++) {
1019             path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1020             if (check_file(wav_path))
1021                 town_music_file[i][j] = string_make(zz[j]);
1022         }
1023     }
1024 }
1025
1026 /*
1027  * Create the new global palette based on the bitmap palette
1028  * (if any), and the standard 16 entry palette derived from
1029  * "win_clr[]" which is used for the basic 16 Angband colors.
1030  *
1031  * This function is never called before all windows are ready.
1032  *
1033  * This function returns FALSE if the new palette could not be
1034  * prepared, which should normally be a fatal error.  XXX XXX
1035  *
1036  * Note that only some machines actually use a "palette".
1037  */
1038 static int new_palette(void)
1039 {
1040     int i, nEntries;
1041     int pLogPalSize;
1042     int lppeSize;
1043     LPLOGPALETTE pLogPal;
1044     LPPALETTEENTRY lppe;
1045     term_data *td;
1046     if (!paletted)
1047         return TRUE;
1048
1049     lppeSize = 0;
1050     lppe = NULL;
1051     nEntries = 0;
1052
1053     HPALETTE hBmPal = infGraph.hPalette;
1054     if (hBmPal) {
1055         lppeSize = 256 * sizeof(PALETTEENTRY);
1056         lppe = (LPPALETTEENTRY)ralloc(lppeSize);
1057         nEntries = GetPaletteEntries(hBmPal, 0, 255, lppe);
1058         if ((nEntries == 0) || (nEntries > 220)) {
1059             plog(_("画面を16ビットか24ビットカラーモードにして下さい。", "Please switch to high- or true-color mode."));
1060             rnfree(lppe, lppeSize);
1061             return FALSE;
1062         }
1063     }
1064
1065     pLogPalSize = sizeof(LOGPALETTE) + (nEntries + 16) * sizeof(PALETTEENTRY);
1066     pLogPal = (LPLOGPALETTE)ralloc(pLogPalSize);
1067     pLogPal->palVersion = 0x300;
1068     pLogPal->palNumEntries = nEntries + 16;
1069     for (i = 0; i < nEntries; i++) {
1070         pLogPal->palPalEntry[i] = lppe[i];
1071     }
1072
1073     for (i = 0; i < 16; i++) {
1074         LPPALETTEENTRY p;
1075         p = &(pLogPal->palPalEntry[i + nEntries]);
1076         p->peRed = GetRValue(win_clr[i]);
1077         p->peGreen = GetGValue(win_clr[i]);
1078         p->peBlue = GetBValue(win_clr[i]);
1079         p->peFlags = PC_NOCOLLAPSE;
1080     }
1081
1082     if (lppe)
1083         rnfree(lppe, lppeSize);
1084
1085     HPALETTE hNewPal = CreatePalette(pLogPal);
1086     if (!hNewPal)
1087         quit(_("パレットを作成できません!", "Cannot create palette!"));
1088
1089     rnfree(pLogPal, pLogPalSize);
1090     td = &data[0];
1091     HDC hdc = GetDC(td->w);
1092     SelectPalette(hdc, hNewPal, 0);
1093     i = RealizePalette(hdc);
1094     ReleaseDC(td->w, hdc);
1095     if (i == 0)
1096         quit(_("パレットをシステムエントリにマップできません!", "Cannot realize palette!"));
1097
1098     for (i = 1; i < MAX_TERM_DATA; i++) {
1099         td = &data[i];
1100         hdc = GetDC(td->w);
1101         SelectPalette(hdc, hNewPal, 0);
1102         ReleaseDC(td->w, hdc);
1103     }
1104
1105     if (hPal)
1106         DeleteObject(hPal);
1107
1108     hPal = hNewPal;
1109     return TRUE;
1110 }
1111
1112 /*!
1113  * @brief グラフィクスを初期化する / Initialize graphics
1114  * @details
1115  * <ul>
1116  * <li>メニュー[オプション]>[グラフィクス]が「なし」以外の時に描画処理を初期化する。</li>
1117  * <li>呼び出されるタイミングはロード時、及び同メニューで「なし」以外に変更される毎になる。</li>
1118  * </ul>
1119  */
1120 static bool init_graphics(void)
1121 {
1122     char buf[1024];
1123     BYTE wid, hgt, twid, thgt, ox, oy;
1124     concptr name;
1125
1126     if (arg_graphics == GRAPHICS_ADAM_BOLT) {
1127         wid = 16;
1128         hgt = 16;
1129         twid = 16;
1130         thgt = 16;
1131         ox = 0;
1132         oy = 0;
1133         name = "16X16.BMP";
1134
1135         ANGBAND_GRAF = "new";
1136     } else if (arg_graphics == GRAPHICS_HENGBAND) {
1137         wid = 32;
1138         hgt = 32;
1139         twid = 32;
1140         thgt = 32;
1141         ox = 0;
1142         oy = 0;
1143         name = "32X32.BMP";
1144
1145         ANGBAND_GRAF = "ne2";
1146     } else {
1147         wid = 8;
1148         hgt = 8;
1149         twid = 8;
1150         thgt = 8;
1151         ox = 0;
1152         oy = 0;
1153         name = "8X8.BMP";
1154         ANGBAND_GRAF = "old";
1155     }
1156
1157     path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, name);
1158     if (!ReadDIB(data[0].w, buf, &infGraph)) {
1159         plog_fmt(_("ビットマップ '%s' を読み込めません。", "Cannot read bitmap file '%s'"), name);
1160         return FALSE;
1161     }
1162
1163     infGraph.CellWidth = wid;
1164     infGraph.CellHeight = hgt;
1165     infGraph.TileWidth = twid;
1166     infGraph.TileHeight = thgt;
1167     infGraph.OffsetX = ox;
1168     infGraph.OffsetY = oy;
1169
1170     if (arg_graphics == GRAPHICS_ADAM_BOLT) {
1171         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, "mask.bmp");
1172         if (!ReadDIB(data[0].w, buf, &infMask)) {
1173             plog_fmt("Cannot read bitmap file '%s'", buf);
1174             return FALSE;
1175         }
1176     }
1177
1178     if (arg_graphics == GRAPHICS_HENGBAND) {
1179         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, "mask32.bmp");
1180         if (!ReadDIB(data[0].w, buf, &infMask)) {
1181             plog_fmt("Cannot read bitmap file '%s'", buf);
1182             return FALSE;
1183         }
1184     }
1185
1186     if (!new_palette()) {
1187         plog(_("パレットを実現できません!", "Cannot activate palette!"));
1188         return FALSE;
1189     }
1190
1191     current_graphics_mode = arg_graphics;
1192     return (current_graphics_mode);
1193 }
1194
1195 /*
1196  * Initialize music
1197  */
1198 static void init_music(void)
1199 {
1200     if (!can_use_music) {
1201         load_music_prefs();
1202         can_use_music = TRUE;
1203     }
1204 }
1205
1206 /*
1207  * Hack -- Stop a music
1208  */
1209 static void stop_music(void)
1210 {
1211     mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
1212     mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
1213 }
1214
1215 /*
1216  * Initialize sound
1217  */
1218 static void init_sound(void)
1219 {
1220     if (!can_use_sound) {
1221         load_sound_prefs();
1222         can_use_sound = TRUE;
1223     }
1224 }
1225
1226 /*
1227  * Resize a window
1228  */
1229 static void term_window_resize(term_data *td)
1230 {
1231     if (!td->w)
1232         return;
1233
1234     SetWindowPos(td->w, 0, 0, 0, td->size_wid, td->size_hgt, SWP_NOMOVE | SWP_NOZORDER);
1235     InvalidateRect(td->w, NULL, TRUE);
1236 }
1237
1238 /*
1239  * todo 引数のpathを消す
1240  * Force the use of a new "font file" for a term_data.
1241  * This function may be called before the "window" is ready.
1242  * This function returns zero only if everything succeeds.
1243  * Note that the "font name" must be capitalized!!!
1244  */
1245 static errr term_force_font(term_data *td, concptr path)
1246 {
1247     if (td->font_id)
1248         DeleteObject(td->font_id);
1249
1250     (void)path;
1251     td->font_id = CreateFontIndirect(&(td->lf));
1252     int wid = td->lf.lfWidth;
1253     int hgt = td->lf.lfHeight;
1254     if (!td->font_id)
1255         return 1;
1256
1257     if (!wid || !hgt) {
1258         HDC hdcDesktop;
1259         HFONT hfOld;
1260         TEXTMETRIC tm;
1261
1262         hdcDesktop = GetDC(HWND_DESKTOP);
1263         hfOld = SelectObject(hdcDesktop, td->font_id);
1264         GetTextMetrics(hdcDesktop, &tm);
1265         SelectObject(hdcDesktop, hfOld);
1266         ReleaseDC(HWND_DESKTOP, hdcDesktop);
1267
1268         wid = tm.tmAveCharWidth;
1269         hgt = tm.tmHeight;
1270     }
1271
1272     td->font_wid = wid;
1273     td->font_hgt = hgt;
1274
1275     return 0;
1276 }
1277
1278 /*
1279  * Allow the user to change the font for this window.
1280  */
1281 static void term_change_font(term_data *td)
1282 {
1283     CHOOSEFONT cf;
1284     memset(&cf, 0, sizeof(cf));
1285     cf.lStructSize = sizeof(cf);
1286     cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_NOVERTFONTS | CF_INITTOLOGFONTSTRUCT;
1287     cf.lpLogFont = &(td->lf);
1288
1289     if (!ChooseFont(&cf))
1290         return;
1291
1292     term_force_font(td, NULL);
1293     td->bizarre = TRUE;
1294     td->tile_wid = td->font_wid;
1295     td->tile_hgt = td->font_hgt;
1296     term_getsize(td);
1297     term_window_resize(td);
1298 }
1299
1300 /*
1301  * Allow the user to lock this window.
1302  */
1303 static void term_window_pos(term_data *td, HWND hWnd) { SetWindowPos(td->w, hWnd, 0, 0, 0, 0, SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE); }
1304
1305 static void windows_map(player_type *player_ptr);
1306
1307 /*
1308  * Hack -- redraw a term_data
1309  */
1310 static void term_data_redraw(player_type *player_ptr, term_data *td)
1311 {
1312     if (td->map_active) {
1313         windows_map(player_ptr);
1314         return;
1315     }
1316
1317     term_activate(&td->t);
1318     term_redraw();
1319     term_activate(term_screen);
1320 }
1321
1322 void term_inversed_area(HWND hWnd, int x, int y, int w, int h)
1323 {
1324     term_data *td = (term_data *)GetWindowLong(hWnd, 0);
1325     int tx = td->size_ow1 + x * td->tile_wid;
1326     int ty = td->size_oh1 + y * td->tile_hgt;
1327     int tw = w * td->tile_wid - 1;
1328     int th = h * td->tile_hgt - 1;
1329
1330     HDC hdc = GetDC(hWnd);
1331     HBRUSH myBrush = CreateSolidBrush(RGB(255, 255, 255));
1332     HBRUSH oldBrush = SelectObject(hdc, myBrush);
1333     HPEN oldPen = SelectObject(hdc, GetStockObject(NULL_PEN));
1334
1335     PatBlt(hdc, tx, ty, tw, th, PATINVERT);
1336
1337     SelectObject(hdc, oldBrush);
1338     SelectObject(hdc, oldPen);
1339 }
1340
1341 /*!
1342  * @brief //!< Windows版ユーザ設定項目実装部(実装必須) /Interact with the User
1343  */
1344 static errr term_user_win(int n)
1345 {
1346     (void)n;
1347     return 0;
1348 }
1349
1350 /*
1351  * React to global changes
1352  */
1353 static errr term_xtra_win_react(player_type *player_ptr)
1354 {
1355     if (colors16) {
1356         for (int i = 0; i < 256; i++) {
1357             win_pal[i] = angband_color_table[i][0];
1358         }
1359     } else {
1360         COLORREF code;
1361         byte rv, gv, bv;
1362         bool change = FALSE;
1363         for (int i = 0; i < 256; i++) {
1364             rv = angband_color_table[i][1];
1365             gv = angband_color_table[i][2];
1366             bv = angband_color_table[i][3];
1367             code = PALETTERGB(rv, gv, bv);
1368             if (win_clr[i] != code) {
1369                 change = TRUE;
1370                 win_clr[i] = code;
1371             }
1372         }
1373
1374         if (change)
1375             (void)new_palette();
1376     }
1377
1378     if (use_sound != arg_sound) {
1379         init_sound();
1380         use_sound = arg_sound;
1381     }
1382
1383     if (use_music != arg_music) {
1384         init_music();
1385         use_music = arg_music;
1386         if (!arg_music)
1387             stop_music();
1388         else
1389             select_floor_music(player_ptr);
1390     }
1391
1392     if (use_graphics != arg_graphics) {
1393         if (arg_graphics && !init_graphics()) {
1394             plog(_("グラフィックスを初期化できません!", "Cannot initialize graphics!"));
1395             arg_graphics = GRAPHICS_NONE;
1396         }
1397
1398         use_graphics = arg_graphics;
1399         reset_visuals(player_ptr, process_autopick_file_command);
1400     }
1401
1402     for (int i = 0; i < MAX_TERM_DATA; i++) {
1403         term_type *old = Term;
1404         term_data *td = &data[i];
1405         if ((td->cols != td->t.wid) || (td->rows != td->t.hgt)) {
1406             term_activate(&td->t);
1407             term_resize(td->cols, td->rows);
1408             term_redraw();
1409             term_activate(old);
1410         }
1411     }
1412
1413     return 0;
1414 }
1415
1416 /*
1417  * Process at least one event
1418  */
1419 static errr term_xtra_win_event(int v)
1420 {
1421     MSG msg;
1422     if (v) {
1423         if (GetMessage(&msg, NULL, 0, 0)) {
1424             TranslateMessage(&msg);
1425             DispatchMessage(&msg);
1426         }
1427     } else {
1428         if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
1429             TranslateMessage(&msg);
1430             DispatchMessage(&msg);
1431         }
1432     }
1433
1434     return 0;
1435 }
1436
1437 /*
1438  * Process all pending events
1439  */
1440 static errr term_xtra_win_flush(void)
1441 {
1442     MSG msg;
1443     while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
1444         TranslateMessage(&msg);
1445         DispatchMessage(&msg);
1446     }
1447
1448     return 0;
1449 }
1450
1451 /*
1452  * Hack -- clear the screen
1453  *
1454  * Make this more efficient
1455  */
1456 static errr term_xtra_win_clear(void)
1457 {
1458     term_data *td = (term_data *)(Term->data);
1459
1460     RECT rc;
1461     rc.left = td->size_ow1;
1462     rc.right = rc.left + td->cols * td->tile_wid;
1463     rc.top = td->size_oh1;
1464     rc.bottom = rc.top + td->rows * td->tile_hgt;
1465
1466     HDC hdc = GetDC(td->w);
1467     SetBkColor(hdc, RGB(0, 0, 0));
1468     SelectObject(hdc, td->font_id);
1469     ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
1470
1471     if (use_bg) {
1472         rc.left = 0;
1473         rc.top = 0;
1474         DrawBG(hdc, &rc);
1475     }
1476
1477     ReleaseDC(td->w, hdc);
1478     return 0;
1479 }
1480
1481 /*
1482  * Hack -- make a noise
1483  */
1484 static errr term_xtra_win_noise(void)
1485 {
1486     MessageBeep(MB_ICONASTERISK);
1487     return 0;
1488 }
1489
1490 /*
1491  * Hack -- make a sound
1492  */
1493 static errr term_xtra_win_sound(int v)
1494 {
1495     char buf[1024];
1496     if (!use_sound)
1497         return 1;
1498     if ((v < 0) || (v >= SOUND_MAX))
1499         return 1;
1500
1501     int i;
1502     for (i = 0; i < SAMPLE_SOUND_MAX; i++) {
1503         if (!sound_file[v][i])
1504             break;
1505     }
1506
1507     if (i == 0)
1508         return 1;
1509
1510     path_build(buf, 1024, ANGBAND_DIR_XTRA_SOUND, sound_file[v][Rand_external(i)]);
1511     return (PlaySound(buf, 0, SND_FILENAME | SND_ASYNC));
1512 }
1513
1514 /*
1515  * Hack -- play a music
1516  */
1517 static errr term_xtra_win_music(int n, int v)
1518 {
1519     int i = 0;
1520     char buf[1024];
1521     if (n == TERM_XTRA_MUSIC_MUTE) {
1522         mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
1523         mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
1524     }
1525
1526     if (!use_music)
1527         return 1;
1528
1529     if (n == TERM_XTRA_MUSIC_BASIC && ((v < 0) || (v >= MUSIC_BASIC_MAX)))
1530         return 1;
1531     else if (v < 0 || v >= 1000)
1532         return (1); /*!< TODO */
1533
1534     switch (n) {
1535     case TERM_XTRA_MUSIC_BASIC:
1536         for (i = 0; i < SAMPLE_MUSIC_MAX; i++)
1537             if (!music_file[v][i])
1538                 break;
1539         break;
1540     case TERM_XTRA_MUSIC_DUNGEON:
1541         for (i = 0; i < SAMPLE_MUSIC_MAX; i++)
1542             if (!dungeon_music_file[v][i])
1543                 break;
1544         break;
1545     case TERM_XTRA_MUSIC_QUEST:
1546         for (i = 0; i < SAMPLE_MUSIC_MAX; i++)
1547             if (!quest_music_file[v][i])
1548                 break;
1549         break;
1550     case TERM_XTRA_MUSIC_TOWN:
1551         for (i = 0; i < SAMPLE_MUSIC_MAX; i++)
1552             if (!town_music_file[v][i])
1553                 break;
1554         break;
1555     }
1556
1557     if (i == 0) {
1558         return 1;
1559     }
1560
1561     switch (n) {
1562     case TERM_XTRA_MUSIC_BASIC:
1563         path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, music_file[v][Rand_external(i)]);
1564         break;
1565     case TERM_XTRA_MUSIC_DUNGEON:
1566         path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, dungeon_music_file[v][Rand_external(i)]);
1567         break;
1568     case TERM_XTRA_MUSIC_QUEST:
1569         path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, quest_music_file[v][Rand_external(i)]);
1570         break;
1571     case TERM_XTRA_MUSIC_TOWN:
1572         path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, town_music_file[v][Rand_external(i)]);
1573         break;
1574     }
1575
1576     if (current_music_type == n && current_music_id == v) {
1577         return 0;
1578     }
1579     current_music_type = n;
1580     current_music_id = v;
1581
1582     mop.lpstrDeviceType = mci_device_type;
1583     mop.lpstrElementName = buf;
1584     mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
1585     mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
1586     mciSendCommand(mop.wDeviceID, MCI_OPEN, MCI_OPEN_TYPE | MCI_OPEN_ELEMENT, (DWORD)&mop);
1587     mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
1588     mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
1589     return 0;
1590 }
1591
1592 /*
1593  * Delay for "x" milliseconds
1594  */
1595 static int term_xtra_win_delay(int v)
1596 {
1597     Sleep(v);
1598     return 0;
1599 }
1600
1601 /*
1602  * todo z-termに影響があるのでplayer_typeの追加は保留
1603  * Do a "special thing"
1604  */
1605 static errr term_xtra_win(int n, int v)
1606 {
1607     switch (n) {
1608     case TERM_XTRA_NOISE: {
1609         return (term_xtra_win_noise());
1610     }
1611     case TERM_XTRA_MUSIC_BASIC:
1612     case TERM_XTRA_MUSIC_DUNGEON:
1613     case TERM_XTRA_MUSIC_QUEST:
1614     case TERM_XTRA_MUSIC_TOWN: {
1615         return (term_xtra_win_music(n, v));
1616     }
1617     case TERM_XTRA_SOUND: {
1618         return (term_xtra_win_sound(v));
1619     }
1620     case TERM_XTRA_BORED: {
1621         return (term_xtra_win_event(0));
1622     }
1623     case TERM_XTRA_EVENT: {
1624         return (term_xtra_win_event(v));
1625     }
1626     case TERM_XTRA_FLUSH: {
1627         return (term_xtra_win_flush());
1628     }
1629     case TERM_XTRA_CLEAR: {
1630         return (term_xtra_win_clear());
1631     }
1632     case TERM_XTRA_REACT: {
1633         return (term_xtra_win_react(p_ptr));
1634     }
1635     case TERM_XTRA_DELAY: {
1636         return (term_xtra_win_delay(v));
1637     }
1638     }
1639
1640     return 1;
1641 }
1642
1643 /*
1644  * Low level graphics (Assumes valid input).
1645  *
1646  * Draw a "cursor" at (x,y), using a "yellow box".
1647  */
1648 static errr term_curs_win(int x, int y)
1649 {
1650     term_data *td = (term_data *)(Term->data);
1651     int tile_wid, tile_hgt;
1652     if (td->map_active) {
1653         tile_wid = td->map_tile_wid;
1654         tile_hgt = td->map_tile_hgt;
1655     } else {
1656         tile_wid = td->tile_wid;
1657         tile_hgt = td->tile_hgt;
1658     }
1659
1660     RECT rc;
1661     rc.left = x * tile_wid + td->size_ow1;
1662     rc.right = rc.left + tile_wid;
1663     rc.top = y * tile_hgt + td->size_oh1;
1664     rc.bottom = rc.top + tile_hgt;
1665
1666     HDC hdc = GetDC(td->w);
1667     FrameRect(hdc, &rc, hbrYellow);
1668     ReleaseDC(td->w, hdc);
1669     return 0;
1670 }
1671
1672 /*
1673  * Low level graphics (Assumes valid input).
1674  *
1675  * Draw a "big cursor" at (x,y), using a "yellow box".
1676  */
1677 static errr term_bigcurs_win(int x, int y)
1678 {
1679     term_data *td = (term_data *)(Term->data);
1680     int tile_wid, tile_hgt;
1681     if (td->map_active) {
1682         term_curs_win(x, y);
1683         return 0;
1684     } else {
1685         tile_wid = td->tile_wid;
1686         tile_hgt = td->tile_hgt;
1687     }
1688
1689     RECT rc;
1690     rc.left = x * tile_wid + td->size_ow1;
1691     rc.right = rc.left + 2 * tile_wid;
1692     rc.top = y * tile_hgt + td->size_oh1;
1693     rc.bottom = rc.top + tile_hgt;
1694
1695     HDC hdc = GetDC(td->w);
1696     FrameRect(hdc, &rc, hbrYellow);
1697     ReleaseDC(td->w, hdc);
1698     return 0;
1699 }
1700
1701 /*
1702  * Low level graphics (Assumes valid input).
1703  *
1704  * Erase a "block" of "n" characters starting at (x,y).
1705  */
1706 static errr term_wipe_win(int x, int y, int n)
1707 {
1708     term_data *td = (term_data *)(Term->data);
1709     RECT rc;
1710     rc.left = x * td->tile_wid + td->size_ow1;
1711     rc.right = rc.left + n * td->tile_wid;
1712     rc.top = y * td->tile_hgt + td->size_oh1;
1713     rc.bottom = rc.top + td->tile_hgt;
1714
1715     HDC hdc = GetDC(td->w);
1716     SetBkColor(hdc, RGB(0, 0, 0));
1717     SelectObject(hdc, td->font_id);
1718     if (use_bg)
1719         DrawBG(hdc, &rc);
1720     else
1721         ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
1722
1723     ReleaseDC(td->w, hdc);
1724     return 0;
1725 }
1726
1727 /*
1728  * Low level graphics.  Assumes valid input.
1729  *
1730  * Draw several ("n") chars, with an attr, at a given location.
1731  *
1732  * All "graphic" data is handled by "term_pict_win()", below.
1733  *
1734  * One would think there is a more efficient method for telling a window
1735  * what color it should be using to draw with, but perhaps simply changing
1736  * it every time is not too inefficient.
1737  */
1738 static errr term_text_win(int x, int y, int n, TERM_COLOR a, concptr s)
1739 {
1740     term_data *td = (term_data *)(Term->data);
1741     static HBITMAP WALL;
1742     static HBRUSH myBrush, oldBrush;
1743     static HPEN oldPen;
1744     static bool init_done = FALSE;
1745
1746     if (!init_done) {
1747         WALL = LoadBitmap(hInstance, AppName);
1748         myBrush = CreatePatternBrush(WALL);
1749         init_done = TRUE;
1750     }
1751
1752     RECT rc;
1753     rc.left = x * td->tile_wid + td->size_ow1;
1754     rc.right = rc.left + n * td->tile_wid;
1755     rc.top = y * td->tile_hgt + td->size_oh1;
1756     rc.bottom = rc.top + td->tile_hgt;
1757
1758     HDC hdc = GetDC(td->w);
1759     SetBkColor(hdc, RGB(0, 0, 0));
1760     if (colors16) {
1761         SetTextColor(hdc, PALETTEINDEX(win_pal[a]));
1762     } else if (paletted) {
1763         SetTextColor(hdc, win_clr[a & 0x0F]);
1764     } else {
1765         SetTextColor(hdc, win_clr[a]);
1766     }
1767
1768     SelectObject(hdc, td->font_id);
1769     if (use_bg)
1770         SetBkMode(hdc, TRANSPARENT);
1771
1772     if (td->bizarre || (td->tile_hgt != td->font_hgt) || (td->tile_wid != td->font_wid)) {
1773         ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
1774         if (use_bg)
1775             DrawBG(hdc, &rc);
1776
1777         rc.left += ((td->tile_wid - td->font_wid) / 2);
1778         rc.right = rc.left + td->font_wid;
1779         rc.top += ((td->tile_hgt - td->font_hgt) / 2);
1780         rc.bottom = rc.top + td->font_hgt;
1781
1782         for (int i = 0; i < n; i++) {
1783 #ifdef JP
1784             if (use_bigtile && *(s + i) == "■"[0] && *(s + i + 1) == "■"[1]) {
1785                 rc.right += td->font_wid;
1786                 oldBrush = SelectObject(hdc, myBrush);
1787                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN));
1788                 Rectangle(hdc, rc.left, rc.top, rc.right + 1, rc.bottom + 1);
1789                 SelectObject(hdc, oldBrush);
1790                 SelectObject(hdc, oldPen);
1791                 rc.right -= td->font_wid;
1792                 i++;
1793                 rc.left += 2 * td->tile_wid;
1794                 rc.right += 2 * td->tile_wid;
1795             } else if (iskanji(*(s + i))) /* 2バイト文字 */
1796             {
1797                 rc.right += td->font_wid;
1798                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc, s + i, 2, NULL);
1799                 rc.right -= td->font_wid;
1800                 i++;
1801                 rc.left += 2 * td->tile_wid;
1802                 rc.right += 2 * td->tile_wid;
1803             } else if (*(s + i) == 127) {
1804                 oldBrush = SelectObject(hdc, myBrush);
1805                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN));
1806                 Rectangle(hdc, rc.left, rc.top, rc.right + 1, rc.bottom + 1);
1807                 SelectObject(hdc, oldBrush);
1808                 SelectObject(hdc, oldPen);
1809                 rc.left += td->tile_wid;
1810                 rc.right += td->tile_wid;
1811             } else {
1812                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc, s + i, 1, NULL);
1813                 rc.left += td->tile_wid;
1814                 rc.right += td->tile_wid;
1815             }
1816 #else
1817             if (*(s + i) == 127) {
1818                 oldBrush = SelectObject(hdc, myBrush);
1819                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN));
1820                 Rectangle(hdc, rc.left, rc.top, rc.right + 1, rc.bottom + 1);
1821                 SelectObject(hdc, oldBrush);
1822                 SelectObject(hdc, oldPen);
1823                 rc.left += td->tile_wid;
1824                 rc.right += td->tile_wid;
1825             } else {
1826                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc, s + i, 1, NULL);
1827                 rc.left += td->tile_wid;
1828                 rc.right += td->tile_wid;
1829             }
1830 #endif
1831         }
1832     } else {
1833         ExtTextOut(hdc, rc.left, rc.top, ETO_OPAQUE | ETO_CLIPPED, &rc, s, n, NULL);
1834     }
1835
1836     ReleaseDC(td->w, hdc);
1837     return 0;
1838 }
1839
1840 /*
1841  * Low level graphics.  Assumes valid input.
1842  *
1843  * Draw an array of "special" attr/char pairs at the given location.
1844  *
1845  * We use the "term_pict_win()" function for "graphic" data, which are
1846  * encoded by setting the "high-bits" of both the "attr" and the "char"
1847  * data.  We use the "attr" to represent the "row" of the main bitmap,
1848  * and the "char" to represent the "col" of the main bitmap.  The use
1849  * of this function is induced by the "higher_pict" flag.
1850  *
1851  * If "graphics" is not available, we simply "wipe" the given grids.
1852  */
1853 static errr term_pict_win(TERM_LEN x, TERM_LEN y, int n, const TERM_COLOR *ap, concptr cp, const TERM_COLOR *tap, concptr tcp)
1854 {
1855     term_data *td = (term_data *)(Term->data);
1856     int i;
1857     HDC hdcMask = NULL;
1858     if (!use_graphics) {
1859         return (term_wipe_win(x, y, n));
1860     }
1861
1862     TERM_LEN w1 = infGraph.CellWidth;
1863     TERM_LEN h1 = infGraph.CellHeight;
1864     TERM_LEN tw1 = infGraph.TileWidth;
1865     TERM_LEN th1 = infGraph.TileHeight;
1866     TERM_LEN w2, h2, tw2 = 0;
1867     if (td->map_active) {
1868         w2 = td->map_tile_wid;
1869         h2 = td->map_tile_hgt;
1870     } else {
1871         w2 = td->tile_wid;
1872         h2 = td->tile_hgt;
1873         tw2 = w2;
1874         if (use_bigtile)
1875             tw2 *= 2;
1876     }
1877
1878     TERM_LEN x2 = x * w2 + td->size_ow1 + infGraph.OffsetX;
1879     TERM_LEN y2 = y * h2 + td->size_oh1 + infGraph.OffsetY;
1880     HDC hdc = GetDC(td->w);
1881     HDC hdcSrc = CreateCompatibleDC(hdc);
1882     HBITMAP hbmSrcOld = SelectObject(hdcSrc, infGraph.hBitmap);
1883
1884     if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND) {
1885         hdcMask = CreateCompatibleDC(hdc);
1886         SelectObject(hdcMask, infMask.hBitmap);
1887     }
1888
1889     for (i = 0; i < n; i++, x2 += w2) {
1890         TERM_COLOR a = ap[i];
1891         char c = cp[i];
1892         int row = (a & 0x7F);
1893         int col = (c & 0x7F);
1894         TERM_LEN x1 = col * w1;
1895         TERM_LEN y1 = row * h1;
1896
1897         if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND) {
1898             TERM_LEN x3 = (tcp[i] & 0x7F) * w1;
1899             TERM_LEN y3 = (tap[i] & 0x7F) * h1;
1900             tw2 = tw2 * w1 / tw1;
1901             h2 = h2 * h1 / th1;
1902             if ((tw1 == tw2) && (th1 == h2)) {
1903                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, SRCCOPY);
1904                 BitBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, SRCAND);
1905                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCPAINT);
1906                 continue;
1907             }
1908
1909             SetStretchBltMode(hdc, COLORONCOLOR);
1910             StretchBlt(hdc, x2, y2, tw2, h2, hdcMask, x3, y3, w1, h1, SRCAND);
1911             StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, w1, h1, SRCPAINT);
1912             if ((x1 != x3) || (y1 != y3)) {
1913                 StretchBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, w1, h1, SRCAND);
1914                 StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCPAINT);
1915             }
1916
1917             continue;
1918         }
1919
1920         if ((w1 == tw2) && (h1 == h2)) {
1921             BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCCOPY);
1922             continue;
1923         }
1924
1925         SetStretchBltMode(hdc, COLORONCOLOR);
1926         StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCCOPY);
1927     }
1928
1929     SelectObject(hdcSrc, hbmSrcOld);
1930     DeleteDC(hdcSrc);
1931     if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND) {
1932         SelectObject(hdcMask, hbmSrcOld);
1933         DeleteDC(hdcMask);
1934     }
1935
1936     ReleaseDC(td->w, hdc);
1937     return 0;
1938 }
1939
1940 static void windows_map(player_type *player_ptr)
1941 {
1942     term_data *td = &data[0];
1943     TERM_COLOR ta;
1944     if (!use_graphics)
1945         return;
1946
1947     term_xtra_win_clear();
1948     td->map_tile_wid = (td->tile_wid * td->cols) / MAX_WID;
1949     td->map_tile_hgt = (td->tile_hgt * td->rows) / MAX_HGT;
1950     td->map_active = TRUE;
1951
1952     TERM_LEN min_x = 0;
1953     TERM_LEN min_y = 0;
1954     TERM_LEN max_x = player_ptr->current_floor_ptr->width;
1955     TERM_LEN max_y = player_ptr->current_floor_ptr->height;
1956
1957     char c;
1958     for (TERM_LEN x = min_x; x < max_x; x++) {
1959         for (TERM_LEN y = min_y; y < max_y; y++) {
1960             TERM_COLOR a;
1961             char tc;
1962             map_info(player_ptr, y, x, &a, (char *)&c, &ta, (char *)&tc);
1963             if ((a & 0x80) && (c & 0x80)) {
1964                 term_pict_win(x - min_x, y - min_y, 1, &a, &c, &ta, &tc);
1965             }
1966         }
1967     }
1968
1969     term_curs_win(player_ptr->x - min_x, player_ptr->y - min_y);
1970     term_inkey(&c, TRUE, TRUE);
1971     term_flush();
1972     td->map_active = FALSE;
1973     term_xtra_win_clear();
1974     term_redraw();
1975 }
1976
1977 /*
1978  * Create and initialize a "term_data" given a title
1979  */
1980 static void term_data_link(term_data *td)
1981 {
1982     term_type *t = &td->t;
1983     term_init(t, td->cols, td->rows, FILE_READ_BUFF_SIZE);
1984     t->soft_cursor = TRUE;
1985     t->higher_pict = TRUE;
1986     t->attr_blank = TERM_WHITE;
1987     t->char_blank = ' ';
1988     t->user_hook = term_user_win;
1989     t->xtra_hook = term_xtra_win;
1990     t->curs_hook = term_curs_win;
1991     t->bigcurs_hook = term_bigcurs_win;
1992     t->wipe_hook = term_wipe_win;
1993     t->text_hook = term_text_win;
1994     t->pict_hook = term_pict_win;
1995     t->data = (vptr)(td);
1996 }
1997
1998 /*
1999  * Create the windows
2000  *
2001  * First, instantiate the "default" values, then read the "ini_file"
2002  * to over-ride selected values, then create the windows, and fonts.
2003  *
2004  * Must use SW_SHOW not SW_SHOWNA, since on 256 color display
2005  * must make active to realize the palette.
2006  */
2007 static void init_windows(void)
2008 {
2009     term_data *td;
2010     td = &data[0];
2011     WIPE(td, term_data);
2012 #ifdef JP
2013     td->s = "変愚蛮怒";
2014 #else
2015     td->s = angband_term_name[0];
2016 #endif
2017
2018     td->keys = 1024;
2019     td->rows = 24;
2020     td->cols = 80;
2021     td->visible = TRUE;
2022     td->size_ow1 = 2;
2023     td->size_ow2 = 2;
2024     td->size_oh1 = 2;
2025     td->size_oh2 = 2;
2026     td->pos_x = 7 * 30;
2027     td->pos_y = 7 * 20;
2028     td->posfix = FALSE;
2029     td->bizarre = TRUE;
2030
2031     for (int i = 1; i < MAX_TERM_DATA; i++) {
2032         td = &data[i];
2033         WIPE(td, term_data);
2034         td->s = angband_term_name[i];
2035         td->keys = 16;
2036         td->rows = 24;
2037         td->cols = 80;
2038         td->visible = FALSE;
2039         td->size_ow1 = 1;
2040         td->size_ow2 = 1;
2041         td->size_oh1 = 1;
2042         td->size_oh2 = 1;
2043         td->pos_x = (7 - i) * 30;
2044         td->pos_y = (7 - i) * 20;
2045         td->posfix = FALSE;
2046         td->bizarre = TRUE;
2047     }
2048
2049     load_prefs();
2050
2051     /* Atrributes of main window */
2052     td = &data[0];
2053     td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION | WS_VISIBLE);
2054     td->dwExStyle = 0;
2055     td->visible = TRUE;
2056
2057     /* Attributes of sub windows */
2058     for (int i = 1; i < MAX_TERM_DATA; i++) {
2059         td = &data[i];
2060         td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU);
2061         td->dwExStyle = (WS_EX_TOOLWINDOW);
2062     }
2063
2064     /* Font of each window */
2065     for (int i = 0; i < MAX_TERM_DATA; i++) {
2066         td = &data[i];
2067         strncpy(td->lf.lfFaceName, td->font_want, LF_FACESIZE);
2068         td->lf.lfCharSet = DEFAULT_CHARSET;
2069         td->lf.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
2070         term_force_font(td, NULL);
2071         if (!td->tile_wid)
2072             td->tile_wid = td->font_wid;
2073         if (!td->tile_hgt)
2074             td->tile_hgt = td->font_hgt;
2075         term_getsize(td);
2076         term_window_resize(td);
2077     }
2078
2079     /* Create sub windows */
2080     for (int i = MAX_TERM_DATA - 1; i >= 1; --i) {
2081         td = &data[i];
2082
2083         my_td = td;
2084         td->w
2085             = CreateWindowEx(td->dwExStyle, AngList, td->s, td->dwStyle, td->pos_x, td->pos_y, td->size_wid, td->size_hgt, HWND_DESKTOP, NULL, hInstance, NULL);
2086         my_td = NULL;
2087
2088         if (!td->w)
2089             quit(_("サブウィンドウに作成に失敗しました", "Failed to create sub-window"));
2090
2091         td->size_hack = TRUE;
2092         term_getsize(td);
2093         term_window_resize(td);
2094
2095         if (td->visible) {
2096             ShowWindow(td->w, SW_SHOW);
2097         }
2098         td->size_hack = FALSE;
2099
2100         term_data_link(td);
2101         angband_term[i] = &td->t;
2102
2103         if (td->visible) {
2104             /* Activate the window */
2105             SetActiveWindow(td->w);
2106         }
2107
2108         if (td->posfix) {
2109             term_window_pos(td, HWND_TOPMOST);
2110         } else {
2111             term_window_pos(td, td->w);
2112         }
2113     }
2114
2115     /* Create main window */
2116     td = &data[0];
2117     my_td = td;
2118     td->w = CreateWindowEx(td->dwExStyle, AppName, td->s, td->dwStyle, td->pos_x, td->pos_y, td->size_wid, td->size_hgt, HWND_DESKTOP, NULL, hInstance, NULL);
2119     my_td = NULL;
2120
2121     if (!td->w)
2122         quit(_("メインウィンドウの作成に失敗しました", "Failed to create Angband window"));
2123
2124     /* Resize */
2125     td->size_hack = TRUE;
2126     term_getsize(td);
2127     term_window_resize(td);
2128     td->size_hack = FALSE;
2129
2130     term_data_link(td);
2131     angband_term[0] = &td->t;
2132     normsize.x = td->cols;
2133     normsize.y = td->rows;
2134
2135     if (win_maximized)
2136         ShowWindow(td->w, SW_SHOWMAXIMIZED);
2137     else
2138         ShowWindow(td->w, SW_SHOW);
2139
2140     SetWindowPos(td->w, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
2141     (void)new_palette();
2142     hbrYellow = CreateSolidBrush(win_clr[TERM_YELLOW]);
2143     (void)term_xtra_win_flush();
2144 }
2145
2146 /*
2147  * Prepare the menus
2148  */
2149 static void setup_menus(void)
2150 {
2151     HMENU hm = GetMenu(data[0].w);
2152     EnableMenuItem(hm, IDM_FILE_NEW, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2153     EnableMenuItem(hm, IDM_FILE_OPEN, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2154     EnableMenuItem(hm, IDM_FILE_SAVE, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2155     EnableMenuItem(hm, IDM_FILE_EXIT, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2156     EnableMenuItem(hm, IDM_FILE_SCORE, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2157
2158     if (!current_world_ptr->character_generated) {
2159         EnableMenuItem(hm, IDM_FILE_NEW, MF_BYCOMMAND | MF_ENABLED);
2160         EnableMenuItem(hm, IDM_FILE_OPEN, MF_BYCOMMAND | MF_ENABLED);
2161     }
2162
2163     if (current_world_ptr->character_generated) {
2164         EnableMenuItem(hm, IDM_FILE_SAVE, MF_BYCOMMAND | MF_ENABLED);
2165     }
2166
2167     EnableMenuItem(hm, IDM_FILE_EXIT, MF_BYCOMMAND | MF_ENABLED);
2168     EnableMenuItem(hm, IDM_FILE_SCORE, MF_BYCOMMAND | MF_ENABLED);
2169
2170     for (int i = 0; i < MAX_TERM_DATA; i++) {
2171         EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2172         CheckMenuItem(hm, IDM_WINDOW_VIS_0 + i, (data[i].visible ? MF_CHECKED : MF_UNCHECKED));
2173         EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i, MF_BYCOMMAND | MF_ENABLED);
2174     }
2175
2176     for (int i = 0; i < MAX_TERM_DATA; i++) {
2177         EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2178
2179         if (data[i].visible) {
2180             EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i, MF_BYCOMMAND | MF_ENABLED);
2181         }
2182     }
2183
2184     for (int i = 0; i < MAX_TERM_DATA; i++) {
2185         EnableMenuItem(hm, IDM_WINDOW_POS_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2186         CheckMenuItem(hm, IDM_WINDOW_POS_0 + i, (data[i].posfix ? MF_CHECKED : MF_UNCHECKED));
2187         if (data[i].visible) {
2188             EnableMenuItem(hm, IDM_WINDOW_POS_0 + i, MF_BYCOMMAND | MF_ENABLED);
2189         }
2190     }
2191
2192     for (int i = 0; i < MAX_TERM_DATA; i++) {
2193         EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2194         CheckMenuItem(hm, IDM_WINDOW_BIZ_0 + i, (data[i].bizarre ? MF_CHECKED : MF_UNCHECKED));
2195         if (data[i].visible) {
2196             EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i, MF_BYCOMMAND | MF_ENABLED);
2197         }
2198     }
2199
2200     for (int i = 0; i < MAX_TERM_DATA; i++) {
2201         EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2202         if (data[i].visible) {
2203             EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i, MF_BYCOMMAND | MF_ENABLED);
2204         }
2205     }
2206
2207     for (int i = 0; i < MAX_TERM_DATA; i++) {
2208         EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2209         if (data[i].visible) {
2210             EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i, MF_BYCOMMAND | MF_ENABLED);
2211         }
2212     }
2213
2214     for (int i = 0; i < MAX_TERM_DATA; i++) {
2215         EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2216         if (data[i].visible) {
2217             EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i, MF_BYCOMMAND | MF_ENABLED);
2218         }
2219     }
2220
2221     for (int i = 0; i < MAX_TERM_DATA; i++) {
2222         EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2223
2224         if (data[i].visible) {
2225             EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i, MF_BYCOMMAND | MF_ENABLED);
2226         }
2227     }
2228
2229     EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2230     EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2231     EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2232     EnableMenuItem(hm, IDM_OPTIONS_BIGTILE, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2233     EnableMenuItem(hm, IDM_OPTIONS_SOUND, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2234 #ifdef JP
2235 #else
2236     EnableMenuItem(hm, IDM_OPTIONS_SAVER, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2237 #endif
2238
2239     if (use_graphics != GRAPHICS_NONE)
2240         EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP, MF_BYCOMMAND | MF_ENABLED);
2241     else
2242         EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP, MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
2243
2244     CheckMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS, (arg_graphics == GRAPHICS_NONE ? MF_CHECKED : MF_UNCHECKED));
2245     CheckMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS, (arg_graphics == GRAPHICS_ORIGINAL ? MF_CHECKED : MF_UNCHECKED));
2246     CheckMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS, (arg_graphics == GRAPHICS_ADAM_BOLT ? MF_CHECKED : MF_UNCHECKED));
2247     CheckMenuItem(hm, IDM_OPTIONS_NEW2_GRAPHICS, (arg_graphics == GRAPHICS_HENGBAND ? MF_CHECKED : MF_UNCHECKED));
2248     CheckMenuItem(hm, IDM_OPTIONS_BIGTILE, (arg_bigtile ? MF_CHECKED : MF_UNCHECKED));
2249     CheckMenuItem(hm, IDM_OPTIONS_MUSIC, (arg_music ? MF_CHECKED : MF_UNCHECKED));
2250     CheckMenuItem(hm, IDM_OPTIONS_SOUND, (arg_sound ? MF_CHECKED : MF_UNCHECKED));
2251     CheckMenuItem(hm, IDM_OPTIONS_BG, (use_bg ? MF_CHECKED : MF_UNCHECKED));
2252 #ifdef JP
2253 #else
2254     CheckMenuItem(hm, IDM_OPTIONS_SAVER, (hwndSaver ? MF_CHECKED : MF_UNCHECKED));
2255 #endif
2256     EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS, MF_ENABLED);
2257     EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS, MF_ENABLED);
2258     EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS, MF_ENABLED);
2259     EnableMenuItem(hm, IDM_OPTIONS_BIGTILE, MF_ENABLED);
2260     EnableMenuItem(hm, IDM_OPTIONS_SOUND, MF_ENABLED);
2261     EnableMenuItem(hm, IDM_OPTIONS_SAVER, MF_BYCOMMAND | MF_ENABLED);
2262 }
2263
2264 /*
2265  * Check for double clicked (or dragged) savefile
2266  *
2267  * Apparently, Windows copies the entire filename into the first
2268  * piece of the "command line string".  Perhaps we should extract
2269  * the "basename" of that filename and append it to the "save" dir.
2270  */
2271 static void check_for_save_file(player_type *player_ptr, LPSTR cmd_line)
2272 {
2273     char *s;
2274     s = cmd_line;
2275     if (!*s)
2276         return;
2277
2278     strcpy(savefile, s);
2279     validate_file(savefile);
2280     game_in_progress = TRUE;
2281     play_game(player_ptr, FALSE, FALSE);
2282 }
2283
2284 /*
2285  * Process a menu command
2286  */
2287 static void process_menus(player_type *player_ptr, WORD wCmd)
2288 {
2289     term_data *td;
2290     OPENFILENAME ofn;
2291     switch (wCmd) {
2292     case IDM_FILE_NEW: {
2293         if (!initialized) {
2294             plog(_("まだ初期化中です...", "You cannot do that yet..."));
2295         } else if (game_in_progress) {
2296             plog(_("プレイ中は新しいゲームを始めることができません!", "You can't start a new game while you're still playing!"));
2297         } else {
2298             game_in_progress = TRUE;
2299             term_flush();
2300             strcpy(savefile, "");
2301             play_game(player_ptr, TRUE, FALSE);
2302             quit(NULL);
2303         }
2304
2305         break;
2306     }
2307     case IDM_FILE_OPEN: {
2308         if (!initialized) {
2309             plog(_("まだ初期化中です...", "You cannot do that yet..."));
2310         } else if (game_in_progress) {
2311             plog(_("プレイ中はゲームをロードすることができません!", "You can't open a new game while you're still playing!"));
2312         } else {
2313             memset(&ofn, 0, sizeof(ofn));
2314             ofn.lStructSize = sizeof(ofn);
2315             ofn.hwndOwner = data[0].w;
2316             ofn.lpstrFilter = "Save Files (*.)\0*\0";
2317             ofn.nFilterIndex = 1;
2318             ofn.lpstrFile = savefile;
2319             ofn.nMaxFile = 1024;
2320             ofn.lpstrInitialDir = ANGBAND_DIR_SAVE;
2321             ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR | OFN_HIDEREADONLY;
2322
2323             if (GetOpenFileName(&ofn)) {
2324                 validate_file(savefile);
2325                 game_in_progress = TRUE;
2326                 term_flush();
2327                 play_game(player_ptr, FALSE, FALSE);
2328                 quit(NULL);
2329             }
2330         }
2331
2332         break;
2333     }
2334     case IDM_FILE_SAVE: {
2335         if (game_in_progress && current_world_ptr->character_generated) {
2336             if (!can_save) {
2337                 plog(_("今はセーブすることは出来ません。", "You may not do that right now."));
2338                 break;
2339             }
2340
2341             msg_flag = FALSE;
2342             do_cmd_save_game(player_ptr, FALSE);
2343         } else {
2344             plog(_("今、セーブすることは出来ません。", "You may not do that right now."));
2345         }
2346
2347         break;
2348     }
2349     case IDM_FILE_EXIT: {
2350         if (game_in_progress && current_world_ptr->character_generated) {
2351             if (!can_save) {
2352                 plog(_("今は終了できません。", "You may not do that right now."));
2353                 break;
2354             }
2355
2356             msg_flag = FALSE;
2357             forget_lite(player_ptr->current_floor_ptr);
2358             forget_view(player_ptr->current_floor_ptr);
2359             clear_mon_lite(player_ptr->current_floor_ptr);
2360
2361             term_key_push(SPECIAL_KEY_QUIT);
2362             break;
2363         }
2364
2365         quit(NULL);
2366         break;
2367     }
2368     case IDM_FILE_SCORE: {
2369         char buf[1024];
2370         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
2371         highscore_fd = fd_open(buf, O_RDONLY);
2372         if (highscore_fd < 0) {
2373             msg_print("Score file unavailable.");
2374         } else {
2375             screen_save();
2376             term_clear();
2377             display_scores_aux(0, MAX_HISCORES, -1, NULL);
2378             (void)fd_close(highscore_fd);
2379             highscore_fd = -1;
2380             screen_load();
2381             term_fresh();
2382         }
2383
2384         break;
2385     }
2386     case IDM_FILE_MOVIE: {
2387         if (!initialized) {
2388             plog(_("まだ初期化中です...", "You cannot do that yet..."));
2389         } else if (game_in_progress) {
2390             plog(_("プレイ中はムービーをロードすることができません!", "You can't open a movie while you're playing!"));
2391         } else {
2392             memset(&ofn, 0, sizeof(ofn));
2393             ofn.lStructSize = sizeof(ofn);
2394             ofn.hwndOwner = data[0].w;
2395             ofn.lpstrFilter = "Angband Movie Files (*.amv)\0*.amv\0";
2396             ofn.nFilterIndex = 1;
2397             ofn.lpstrFile = savefile;
2398             ofn.nMaxFile = 1024;
2399             ofn.lpstrInitialDir = ANGBAND_DIR_USER;
2400             ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR;
2401
2402             if (GetOpenFileName(&ofn)) {
2403                 prepare_browse_movie_without_path_build(savefile);
2404                 play_game(player_ptr, FALSE, TRUE);
2405                 quit(NULL);
2406                 return;
2407             }
2408         }
2409
2410         break;
2411     }
2412     case IDM_WINDOW_VIS_0: {
2413         plog(_("メインウィンドウは非表示にできません!", "You are not allowed to do that!"));
2414         break;
2415     }
2416     case IDM_WINDOW_VIS_1:
2417     case IDM_WINDOW_VIS_2:
2418     case IDM_WINDOW_VIS_3:
2419     case IDM_WINDOW_VIS_4:
2420     case IDM_WINDOW_VIS_5:
2421     case IDM_WINDOW_VIS_6:
2422     case IDM_WINDOW_VIS_7: {
2423         int i = wCmd - IDM_WINDOW_VIS_0;
2424         if ((i < 0) || (i >= MAX_TERM_DATA))
2425             break;
2426
2427         td = &data[i];
2428         if (!td->visible) {
2429             td->visible = TRUE;
2430             ShowWindow(td->w, SW_SHOW);
2431             term_data_redraw(player_ptr, td);
2432         } else {
2433             td->visible = FALSE;
2434             td->posfix = FALSE;
2435             ShowWindow(td->w, SW_HIDE);
2436         }
2437
2438         break;
2439     }
2440     case IDM_WINDOW_FONT_0:
2441     case IDM_WINDOW_FONT_1:
2442     case IDM_WINDOW_FONT_2:
2443     case IDM_WINDOW_FONT_3:
2444     case IDM_WINDOW_FONT_4:
2445     case IDM_WINDOW_FONT_5:
2446     case IDM_WINDOW_FONT_6:
2447     case IDM_WINDOW_FONT_7: {
2448         int i = wCmd - IDM_WINDOW_FONT_0;
2449         if ((i < 0) || (i >= MAX_TERM_DATA))
2450             break;
2451
2452         td = &data[i];
2453         term_change_font(td);
2454         break;
2455     }
2456     case IDM_WINDOW_POS_1:
2457     case IDM_WINDOW_POS_2:
2458     case IDM_WINDOW_POS_3:
2459     case IDM_WINDOW_POS_4:
2460     case IDM_WINDOW_POS_5:
2461     case IDM_WINDOW_POS_6:
2462     case IDM_WINDOW_POS_7: {
2463         int i = wCmd - IDM_WINDOW_POS_0;
2464         if ((i < 0) || (i >= MAX_TERM_DATA))
2465             break;
2466
2467         td = &data[i];
2468         if (!td->posfix && td->visible) {
2469             td->posfix = TRUE;
2470             term_window_pos(td, HWND_TOPMOST);
2471         } else {
2472             td->posfix = FALSE;
2473             term_window_pos(td, data[0].w);
2474         }
2475
2476         break;
2477     }
2478     case IDM_WINDOW_BIZ_0:
2479     case IDM_WINDOW_BIZ_1:
2480     case IDM_WINDOW_BIZ_2:
2481     case IDM_WINDOW_BIZ_3:
2482     case IDM_WINDOW_BIZ_4:
2483     case IDM_WINDOW_BIZ_5:
2484     case IDM_WINDOW_BIZ_6:
2485     case IDM_WINDOW_BIZ_7: {
2486         int i = wCmd - IDM_WINDOW_BIZ_0;
2487         if ((i < 0) || (i >= MAX_TERM_DATA))
2488             break;
2489
2490         td = &data[i];
2491         td->bizarre = !td->bizarre;
2492         term_getsize(td);
2493         term_window_resize(td);
2494         break;
2495     }
2496     case IDM_WINDOW_I_WID_0:
2497     case IDM_WINDOW_I_WID_1:
2498     case IDM_WINDOW_I_WID_2:
2499     case IDM_WINDOW_I_WID_3:
2500     case IDM_WINDOW_I_WID_4:
2501     case IDM_WINDOW_I_WID_5:
2502     case IDM_WINDOW_I_WID_6:
2503     case IDM_WINDOW_I_WID_7: {
2504         int i = wCmd - IDM_WINDOW_I_WID_0;
2505         if ((i < 0) || (i >= MAX_TERM_DATA))
2506             break;
2507
2508         td = &data[i];
2509         td->tile_wid += 1;
2510         term_getsize(td);
2511         term_window_resize(td);
2512         break;
2513     }
2514     case IDM_WINDOW_D_WID_0:
2515     case IDM_WINDOW_D_WID_1:
2516     case IDM_WINDOW_D_WID_2:
2517     case IDM_WINDOW_D_WID_3:
2518     case IDM_WINDOW_D_WID_4:
2519     case IDM_WINDOW_D_WID_5:
2520     case IDM_WINDOW_D_WID_6:
2521     case IDM_WINDOW_D_WID_7: {
2522         int i = wCmd - IDM_WINDOW_D_WID_0;
2523         if ((i < 0) || (i >= MAX_TERM_DATA))
2524             break;
2525
2526         td = &data[i];
2527         td->tile_wid -= 1;
2528         term_getsize(td);
2529         term_window_resize(td);
2530         break;
2531     }
2532     case IDM_WINDOW_I_HGT_0:
2533     case IDM_WINDOW_I_HGT_1:
2534     case IDM_WINDOW_I_HGT_2:
2535     case IDM_WINDOW_I_HGT_3:
2536     case IDM_WINDOW_I_HGT_4:
2537     case IDM_WINDOW_I_HGT_5:
2538     case IDM_WINDOW_I_HGT_6:
2539     case IDM_WINDOW_I_HGT_7: {
2540         int i = wCmd - IDM_WINDOW_I_HGT_0;
2541         if ((i < 0) || (i >= MAX_TERM_DATA))
2542             break;
2543
2544         td = &data[i];
2545         td->tile_hgt += 1;
2546         term_getsize(td);
2547         term_window_resize(td);
2548         break;
2549     }
2550     case IDM_WINDOW_D_HGT_0:
2551     case IDM_WINDOW_D_HGT_1:
2552     case IDM_WINDOW_D_HGT_2:
2553     case IDM_WINDOW_D_HGT_3:
2554     case IDM_WINDOW_D_HGT_4:
2555     case IDM_WINDOW_D_HGT_5:
2556     case IDM_WINDOW_D_HGT_6:
2557     case IDM_WINDOW_D_HGT_7: {
2558         int i = wCmd - IDM_WINDOW_D_HGT_0;
2559         if ((i < 0) || (i >= MAX_TERM_DATA))
2560             break;
2561
2562         td = &data[i];
2563         td->tile_hgt -= 1;
2564         term_getsize(td);
2565         term_window_resize(td);
2566         break;
2567     }
2568     case IDM_OPTIONS_NO_GRAPHICS: {
2569         if (!inkey_flag) {
2570             plog("You may not do that right now.");
2571             break;
2572         }
2573
2574         if (arg_graphics != GRAPHICS_NONE) {
2575             arg_graphics = GRAPHICS_NONE;
2576             term_xtra_win_react(player_ptr);
2577             term_key_push(KTRL('R'));
2578         }
2579
2580         break;
2581     }
2582     case IDM_OPTIONS_OLD_GRAPHICS: {
2583         if (!inkey_flag) {
2584             plog("You may not do that right now.");
2585             break;
2586         }
2587
2588         if (arg_graphics != GRAPHICS_ORIGINAL) {
2589             arg_graphics = GRAPHICS_ORIGINAL;
2590             term_xtra_win_react(player_ptr);
2591             term_key_push(KTRL('R'));
2592         }
2593
2594         break;
2595     }
2596     case IDM_OPTIONS_NEW_GRAPHICS: {
2597         if (!inkey_flag) {
2598             plog("You may not do that right now.");
2599             break;
2600         }
2601
2602         if (arg_graphics != GRAPHICS_ADAM_BOLT) {
2603             arg_graphics = GRAPHICS_ADAM_BOLT;
2604             term_xtra_win_react(player_ptr);
2605             term_key_push(KTRL('R'));
2606         }
2607
2608         break;
2609     }
2610     case IDM_OPTIONS_NEW2_GRAPHICS: {
2611         if (!inkey_flag) {
2612             plog("You may not do that right now.");
2613             break;
2614         }
2615
2616         if (arg_graphics != GRAPHICS_HENGBAND) {
2617             arg_graphics = GRAPHICS_HENGBAND;
2618             term_xtra_win_react(player_ptr);
2619             term_key_push(KTRL('R'));
2620         }
2621
2622         break;
2623     }
2624     case IDM_OPTIONS_BIGTILE: {
2625         td = &data[0];
2626         if (!inkey_flag) {
2627             plog("You may not do that right now.");
2628             break;
2629         }
2630
2631         arg_bigtile = !arg_bigtile;
2632         term_activate(&td->t);
2633         term_resize(td->cols, td->rows);
2634         InvalidateRect(td->w, NULL, TRUE);
2635         break;
2636     }
2637     case IDM_OPTIONS_MUSIC: {
2638         if (!inkey_flag) {
2639             plog("You may not do that right now.");
2640             break;
2641         }
2642
2643         arg_music = !arg_music;
2644         term_xtra_win_react(player_ptr);
2645         term_key_push(KTRL('R'));
2646         break;
2647     }
2648     case IDM_OPTIONS_SOUND: {
2649         if (!inkey_flag) {
2650             plog("You may not do that right now.");
2651             break;
2652         }
2653
2654         arg_sound = !arg_sound;
2655         term_xtra_win_react(player_ptr);
2656         term_key_push(KTRL('R'));
2657         break;
2658     }
2659     case IDM_OPTIONS_BG: {
2660         if (!inkey_flag) {
2661             plog("You may not do that right now.");
2662             break;
2663         }
2664
2665         use_bg = !use_bg;
2666         init_bg();
2667         term_xtra_win_react(player_ptr);
2668         term_key_push(KTRL('R'));
2669         break;
2670     }
2671     case IDM_OPTIONS_OPEN_BG: {
2672         if (!inkey_flag) {
2673             plog("You may not do that right now.");
2674             break;
2675         }
2676
2677         memset(&ofn, 0, sizeof(ofn));
2678         ofn.lStructSize = sizeof(ofn);
2679         ofn.hwndOwner = data[0].w;
2680         ofn.lpstrFilter = "Bitmap Files (*.bmp)\0*.bmp\0";
2681         ofn.nFilterIndex = 1;
2682         ofn.lpstrFile = bg_bitmap_file;
2683         ofn.nMaxFile = 1023;
2684         ofn.lpstrInitialDir = NULL;
2685         ofn.lpstrTitle = _("壁紙を選んでね。", "Choose wall paper.");
2686         ofn.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
2687
2688         if (GetOpenFileName(&ofn)) {
2689             use_bg = 1;
2690             init_bg();
2691         }
2692
2693         term_xtra_win_react(player_ptr);
2694         term_key_push(KTRL('R'));
2695         break;
2696     }
2697     case IDM_DUMP_SCREEN_HTML: {
2698         static char buf[1024] = "";
2699         memset(&ofn, 0, sizeof(ofn));
2700         ofn.lStructSize = sizeof(ofn);
2701         ofn.hwndOwner = data[0].w;
2702         ofn.lpstrFilter = "HTML Files (*.html)\0*.html\0";
2703         ofn.nFilterIndex = 1;
2704         ofn.lpstrFile = buf;
2705         ofn.nMaxFile = 1023;
2706         ofn.lpstrDefExt = "html";
2707         ofn.lpstrInitialDir = NULL;
2708         ofn.lpstrTitle = _("HTMLでスクリーンダンプを保存", "Save screen dump as HTML.");
2709         ofn.Flags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT;
2710
2711         if (GetSaveFileName(&ofn)) {
2712             do_cmd_save_screen_html_aux(buf, 0);
2713         }
2714
2715         break;
2716     }
2717     case IDM_OPTIONS_SAVER: {
2718         if (hwndSaver) {
2719             DestroyWindow(hwndSaver);
2720             hwndSaver = NULL;
2721             break;
2722         }
2723
2724         hwndSaver = CreateWindowEx(WS_EX_TOPMOST, "WindowsScreenSaverClass", "Angband Screensaver", WS_POPUP | WS_MAXIMIZE | WS_VISIBLE, 0, 0,
2725             GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN), NULL, NULL, hInstance, NULL);
2726
2727         if (hwndSaver) {
2728             SetWindowPos(hwndSaver, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
2729         } else {
2730             plog(_("ウィンドウを作成出来ません", "Failed to create saver window"));
2731         }
2732
2733         break;
2734     }
2735     case IDM_OPTIONS_MAP: {
2736         windows_map(player_ptr);
2737         break;
2738     }
2739
2740     case IDM_HELP_CONTENTS: {
2741         char buf[1024];
2742         char tmp[1024];
2743         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_HELP, "zangband.hlp");
2744         if (check_file(tmp)) {
2745             sprintf(buf, "winhelp.exe %s", tmp);
2746             WinExec(buf, SW_NORMAL);
2747             break;
2748         }
2749
2750         plog_fmt(_("ヘルプファイル[%s]が見付かりません。", "Cannot find help file: %s"), tmp);
2751         plog(_("代わりにオンラインヘルプを使用してください。", "Use the online help files instead."));
2752         break;
2753     }
2754     }
2755 }
2756
2757 /*
2758  * Add a keypress to the "queue"
2759  */
2760 static errr term_keypress(int k)
2761 {
2762     /* Refuse to enqueue non-keys */
2763     if (!k)
2764         return -1;
2765
2766     /* Store the char, advance the queue */
2767     Term->key_queue[Term->key_head++] = (char)k;
2768
2769     /* Circular queue, handle wrap */
2770     if (Term->key_head == Term->key_size)
2771         Term->key_head = 0;
2772
2773     if (Term->key_head != Term->key_tail)
2774         return 0;
2775
2776     return 1;
2777 }
2778
2779 static bool process_keydown(WPARAM wParam, LPARAM lParam)
2780 {
2781     bool mc = FALSE;
2782     bool ms = FALSE;
2783     bool ma = FALSE;
2784
2785     if (GetKeyState(VK_CONTROL) & 0x8000)
2786         mc = TRUE;
2787     if (GetKeyState(VK_SHIFT) & 0x8000)
2788         ms = TRUE;
2789     if (GetKeyState(VK_MENU) & 0x8000)
2790         ma = TRUE;
2791
2792     term_no_press = (ma) ? TRUE : FALSE;
2793     if (special_key[(byte)(wParam)] || (ma && !ignore_key[(byte)(wParam)])) {
2794         bool ext_key = (lParam & 0x1000000L) ? TRUE : FALSE;
2795         bool numpad = FALSE;
2796
2797         term_keypress(31);
2798         if (mc)
2799             term_keypress('C');
2800         if (ms)
2801             term_keypress('S');
2802         if (ma)
2803             term_keypress('A');
2804
2805         int i = LOBYTE(HIWORD(lParam));
2806         term_keypress('x');
2807         switch (wParam) {
2808         case VK_DIVIDE:
2809             term_no_press = TRUE;
2810         case VK_RETURN:
2811             numpad = ext_key;
2812             break;
2813         case VK_NUMPAD0:
2814         case VK_NUMPAD1:
2815         case VK_NUMPAD2:
2816         case VK_NUMPAD3:
2817         case VK_NUMPAD4:
2818         case VK_NUMPAD5:
2819         case VK_NUMPAD6:
2820         case VK_NUMPAD7:
2821         case VK_NUMPAD8:
2822         case VK_NUMPAD9:
2823         case VK_ADD:
2824         case VK_MULTIPLY:
2825         case VK_SUBTRACT:
2826         case VK_SEPARATOR:
2827         case VK_DECIMAL:
2828             term_no_press = TRUE;
2829         case VK_CLEAR:
2830         case VK_HOME:
2831         case VK_END:
2832         case VK_PRIOR:
2833         case VK_NEXT:
2834         case VK_INSERT:
2835         case VK_DELETE:
2836         case VK_UP:
2837         case VK_DOWN:
2838         case VK_LEFT:
2839         case VK_RIGHT:
2840             numpad = !ext_key;
2841         }
2842
2843         if (numpad)
2844             term_keypress('K');
2845
2846         term_keypress(hexsym[i / 16]);
2847         term_keypress(hexsym[i % 16]);
2848         term_keypress(13);
2849
2850         return 1;
2851     }
2852
2853     return 0;
2854 }
2855
2856 /*!
2857  * todo WNDCLASSに影響があるのでplayer_type*の追加は保留
2858  */
2859 LRESULT PASCAL AngbandWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
2860 {
2861     PAINTSTRUCT ps;
2862     term_data *td;
2863     td = (term_data *)GetWindowLong(hWnd, 0);
2864
2865     switch (uMsg) {
2866     case WM_NCCREATE: {
2867         SetWindowLong(hWnd, 0, (LONG)(my_td));
2868         break;
2869     }
2870     case WM_CREATE: {
2871         mop.dwCallback = (DWORD)hWnd;
2872         return 0;
2873     }
2874     case WM_GETMINMAXINFO: {
2875         MINMAXINFO *lpmmi;
2876         RECT rc;
2877
2878         lpmmi = (MINMAXINFO *)lParam;
2879         if (!td)
2880             return 1;
2881
2882         rc.left = rc.top = 0;
2883         rc.right = rc.left + 80 * td->tile_wid + td->size_ow1 + td->size_ow2;
2884         rc.bottom = rc.top + 24 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
2885
2886         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
2887
2888         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
2889         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
2890
2891         return 0;
2892     }
2893     case WM_PAINT: {
2894         BeginPaint(hWnd, &ps);
2895         if (td)
2896             term_data_redraw(p_ptr, td);
2897         EndPaint(hWnd, &ps);
2898         ValidateRect(hWnd, NULL);
2899         return 0;
2900     }
2901     case MM_MCINOTIFY: {
2902         if (wParam == MCI_NOTIFY_SUCCESSFUL) {
2903             mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
2904             mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
2905         }
2906
2907         return 0;
2908     }
2909     case WM_SYSKEYDOWN:
2910     case WM_KEYDOWN: {
2911         if (process_keydown(wParam, lParam))
2912             return 0;
2913         break;
2914     }
2915     case WM_CHAR: {
2916         if (term_no_press)
2917             term_no_press = FALSE;
2918         else
2919             term_keypress(wParam);
2920         return 0;
2921     }
2922     case WM_LBUTTONDOWN: {
2923         mousex = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
2924         mousey = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
2925         mouse_down = TRUE;
2926         oldx = mousex;
2927         oldy = mousey;
2928         return 0;
2929     }
2930     case WM_LBUTTONUP: {
2931         HGLOBAL hGlobal;
2932         LPSTR lpStr;
2933         TERM_LEN dx = abs(oldx - mousex) + 1;
2934         TERM_LEN dy = abs(oldy - mousey) + 1;
2935         TERM_LEN ox = (oldx > mousex) ? mousex : oldx;
2936         TERM_LEN oy = (oldy > mousey) ? mousey : oldy;
2937
2938         mouse_down = FALSE;
2939         paint_rect = FALSE;
2940
2941 #ifdef JP
2942         int sz = (dx + 3) * dy;
2943 #else
2944         int sz = (dx + 2) * dy;
2945 #endif
2946         hGlobal = GlobalAlloc(GHND, sz + 1);
2947         if (hGlobal == NULL)
2948             return 0;
2949         lpStr = (LPSTR)GlobalLock(hGlobal);
2950
2951         for (int i = 0; i < dy; i++) {
2952 #ifdef JP
2953             char *s;
2954             char **scr = data[0].t.scr->c;
2955
2956             C_MAKE(s, (dx + 1), char);
2957             strncpy(s, &scr[oy + i][ox], dx);
2958
2959             if (ox > 0) {
2960                 if (iskanji(scr[oy + i][ox - 1]))
2961                     s[0] = ' ';
2962             }
2963
2964             if (ox + dx < data[0].cols) {
2965                 if (iskanji(scr[oy + i][ox + dx - 1]))
2966                     s[dx - 1] = ' ';
2967             }
2968
2969             for (int j = 0; j < dx; j++) {
2970                 if (s[j] == 127)
2971                     s[j] = '#';
2972                 *lpStr++ = s[j];
2973             }
2974 #else
2975             for (int j = 0; j < dx; j++) {
2976                 *lpStr++ = data[0].t.scr->c[oy + i][ox + j];
2977             }
2978 #endif
2979             if (dy > 1) {
2980                 *lpStr++ = '\r';
2981                 *lpStr++ = '\n';
2982             }
2983         }
2984
2985         GlobalUnlock(hGlobal);
2986         if (OpenClipboard(hWnd) == 0) {
2987             GlobalFree(hGlobal);
2988             return 0;
2989         }
2990
2991         EmptyClipboard();
2992         SetClipboardData(CF_TEXT, hGlobal);
2993         CloseClipboard();
2994         term_redraw();
2995         return 0;
2996     }
2997     case WM_MOUSEMOVE: {
2998         if (!mouse_down)
2999             return 0;
3000
3001         int dx, dy;
3002         int cx = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
3003         int cy = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
3004         int ox, oy;
3005
3006         if (paint_rect) {
3007             dx = abs(oldx - mousex) + 1;
3008             dy = abs(oldy - mousey) + 1;
3009             ox = (oldx > mousex) ? mousex : oldx;
3010             oy = (oldy > mousey) ? mousey : oldy;
3011             term_inversed_area(hWnd, ox, oy, dx, dy);
3012         } else {
3013             paint_rect = TRUE;
3014         }
3015
3016         dx = abs(cx - mousex) + 1;
3017         dy = abs(cy - mousey) + 1;
3018         ox = (cx > mousex) ? mousex : cx;
3019         oy = (cy > mousey) ? mousey : cy;
3020         term_inversed_area(hWnd, ox, oy, dx, dy);
3021
3022         oldx = cx;
3023         oldy = cy;
3024         return 0;
3025     }
3026     case WM_INITMENU: {
3027         setup_menus();
3028         return 0;
3029     }
3030     case WM_CLOSE: {
3031         if (!game_in_progress || !current_world_ptr->character_generated) {
3032             quit(NULL);
3033             return 0;
3034         }
3035
3036         if (!can_save) {
3037             plog(_("今は終了できません。", "You may not do that right now."));
3038             return 0;
3039         }
3040
3041         msg_flag = FALSE;
3042         forget_lite(p_ptr->current_floor_ptr);
3043         forget_view(p_ptr->current_floor_ptr);
3044         clear_mon_lite(p_ptr->current_floor_ptr);
3045         term_key_push(SPECIAL_KEY_QUIT);
3046         return 0;
3047     }
3048     case WM_QUERYENDSESSION: {
3049         if (!game_in_progress || !current_world_ptr->character_generated) {
3050             quit(NULL);
3051             return 0;
3052         }
3053
3054         msg_flag = FALSE;
3055         if (p_ptr->chp < 0)
3056             p_ptr->is_dead = FALSE;
3057         exe_write_diary(p_ptr, DIARY_GAMESTART, 0, _("----ゲーム中断----", "---- Save and Exit Game ----"));
3058
3059         p_ptr->panic_save = 1;
3060         signals_ignore_tstp();
3061         (void)strcpy(p_ptr->died_from, _("(緊急セーブ)", "(panic save)"));
3062         (void)save_player(p_ptr, SAVE_TYPE_CLOSE_GAME);
3063         quit(NULL);
3064         return 0;
3065     }
3066     case WM_QUIT: {
3067         quit(NULL);
3068         return 0;
3069     }
3070     case WM_COMMAND: {
3071         process_menus(p_ptr, LOWORD(wParam));
3072         return 0;
3073     }
3074     case WM_SIZE: {
3075         if (!td)
3076             return 1;
3077         if (!td->w)
3078             return 1;
3079         if (td->size_hack)
3080             return 1;
3081
3082         // todo 二重のswitch文。後で分割する.
3083         switch (wParam) {
3084         case SIZE_MINIMIZED: {
3085             for (int i = 1; i < MAX_TERM_DATA; i++) {
3086                 if (data[i].visible)
3087                     ShowWindow(data[i].w, SW_HIDE);
3088             }
3089
3090             return 0;
3091         }
3092         case SIZE_MAXIMIZED:
3093         case SIZE_RESTORED: {
3094             TERM_LEN cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
3095             TERM_LEN rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
3096             if ((td->cols != cols) || (td->rows != rows)) {
3097                 td->cols = cols;
3098                 td->rows = rows;
3099                 if (!IsZoomed(td->w) && !IsIconic(td->w)) {
3100                     normsize.x = td->cols;
3101                     normsize.y = td->rows;
3102                 }
3103
3104                 term_activate(&td->t);
3105                 term_resize(td->cols, td->rows);
3106                 InvalidateRect(td->w, NULL, TRUE);
3107             }
3108
3109             td->size_hack = TRUE;
3110             for (int i = 1; i < MAX_TERM_DATA; i++) {
3111                 if (data[i].visible)
3112                     ShowWindow(data[i].w, SW_SHOW);
3113             }
3114
3115             td->size_hack = FALSE;
3116
3117             return 0;
3118         }
3119         }
3120
3121         break;
3122     }
3123     case WM_PALETTECHANGED: {
3124         if ((HWND)wParam == hWnd)
3125             return 0;
3126     }
3127     case WM_QUERYNEWPALETTE: {
3128         if (!paletted)
3129             return 0;
3130
3131         HDC hdc = GetDC(hWnd);
3132         SelectPalette(hdc, hPal, FALSE);
3133         int i = RealizePalette(hdc);
3134         if (i)
3135             InvalidateRect(hWnd, NULL, TRUE);
3136
3137         ReleaseDC(hWnd, hdc);
3138         return 0;
3139     }
3140     case WM_ACTIVATE: {
3141         if (!wParam || HIWORD(lParam))
3142             break;
3143
3144         for (int i = 1; i < MAX_TERM_DATA; i++) {
3145             if (!data[i].posfix)
3146                 term_window_pos(&data[i], hWnd);
3147         }
3148
3149         SetFocus(hWnd);
3150         return 0;
3151     }
3152     case WM_ACTIVATEAPP: {
3153         if (IsIconic(td->w))
3154             break;
3155
3156         for (int i = 1; i < MAX_TERM_DATA; i++) {
3157             if (data[i].visible) {
3158                 if (wParam == TRUE) {
3159                     ShowWindow(data[i].w, SW_SHOW);
3160                 } else {
3161                     ShowWindow(data[i].w, SW_HIDE);
3162                 }
3163             }
3164         }
3165     }
3166     }
3167
3168     return DefWindowProc(hWnd, uMsg, wParam, lParam);
3169 }
3170
3171 /*!
3172  * todo WNDCLASSに影響があるのでplayer_type*の追加は保留
3173  */
3174 LRESULT PASCAL AngbandListProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3175 {
3176     term_data *td;
3177     PAINTSTRUCT ps;
3178     td = (term_data *)GetWindowLong(hWnd, 0);
3179
3180     switch (uMsg) {
3181     case WM_NCCREATE: {
3182         SetWindowLong(hWnd, 0, (LONG)(my_td));
3183         break;
3184     }
3185     case WM_CREATE: {
3186         return 0;
3187     }
3188     case WM_GETMINMAXINFO: {
3189         MINMAXINFO *lpmmi;
3190         RECT rc;
3191
3192         lpmmi = (MINMAXINFO *)lParam;
3193         if (!td)
3194             return 1;
3195
3196         rc.left = rc.top = 0;
3197         rc.right = rc.left + 20 * td->tile_wid + td->size_ow1 + td->size_ow2;
3198         rc.bottom = rc.top + 3 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
3199
3200         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
3201         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
3202         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
3203         return 0;
3204     }
3205     case WM_SIZE: {
3206         if (!td)
3207             return 1;
3208         if (!td->w)
3209             return 1;
3210         if (td->size_hack)
3211             return 1;
3212
3213         td->size_hack = TRUE;
3214
3215         TERM_LEN cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
3216         TERM_LEN rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
3217         if ((td->cols != cols) || (td->rows != rows)) {
3218             term_type *old_term = Term;
3219             td->cols = cols;
3220             td->rows = rows;
3221             term_activate(&td->t);
3222             term_resize(td->cols, td->rows);
3223             term_activate(old_term);
3224             InvalidateRect(td->w, NULL, TRUE);
3225             p_ptr->window_flags = 0xFFFFFFFF;
3226             handle_stuff(p_ptr);
3227         }
3228
3229         td->size_hack = FALSE;
3230         return 0;
3231     }
3232     case WM_PAINT: {
3233         BeginPaint(hWnd, &ps);
3234         if (td)
3235             term_data_redraw(p_ptr, td);
3236         EndPaint(hWnd, &ps);
3237         return 0;
3238     }
3239     case WM_SYSKEYDOWN:
3240     case WM_KEYDOWN: {
3241         if (process_keydown(wParam, lParam))
3242             return 0;
3243
3244         break;
3245     }
3246     case WM_CHAR: {
3247         if (term_no_press)
3248             term_no_press = FALSE;
3249         else
3250             term_keypress(wParam);
3251         return 0;
3252     }
3253     case WM_PALETTECHANGED: {
3254         if ((HWND)wParam == hWnd)
3255             return FALSE;
3256     }
3257     case WM_QUERYNEWPALETTE: {
3258         if (!paletted)
3259             return 0;
3260
3261         HDC hdc = GetDC(hWnd);
3262         SelectPalette(hdc, hPal, FALSE);
3263         int i = RealizePalette(hdc);
3264         if (i)
3265             InvalidateRect(hWnd, NULL, TRUE);
3266
3267         ReleaseDC(hWnd, hdc);
3268         return 0;
3269     }
3270     case WM_NCLBUTTONDOWN: {
3271         if (wParam == HTCLOSE)
3272             wParam = HTSYSMENU;
3273
3274         if (wParam == HTSYSMENU) {
3275             if (td->visible) {
3276                 td->visible = FALSE;
3277                 ShowWindow(td->w, SW_HIDE);
3278             }
3279
3280             return 0;
3281         }
3282
3283         break;
3284     }
3285     }
3286
3287     return DefWindowProc(hWnd, uMsg, wParam, lParam);
3288 }
3289
3290 LRESULT PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3291 {
3292     static int iMouse = 0;
3293     static WORD xMouse = 0;
3294     static WORD yMouse = 0;
3295
3296     switch (uMsg) {
3297     case WM_NCCREATE: {
3298         break;
3299     }
3300
3301     case WM_SETCURSOR: {
3302         SetCursor(NULL);
3303         return 0;
3304     }
3305
3306     case WM_LBUTTONDOWN:
3307     case WM_MBUTTONDOWN:
3308     case WM_RBUTTONDOWN:
3309     case WM_KEYDOWN: {
3310         SendMessage(hWnd, WM_CLOSE, 0, 0);
3311         return 0;
3312     }
3313     case WM_MOUSEMOVE: {
3314         if (iMouse) {
3315             int dx = LOWORD(lParam) - xMouse;
3316             int dy = HIWORD(lParam) - yMouse;
3317
3318             if (dx < 0)
3319                 dx = -dx;
3320             if (dy < 0)
3321                 dy = -dy;
3322
3323             if ((dx > MOUSE_SENS) || (dy > MOUSE_SENS)) {
3324                 SendMessage(hWnd, WM_CLOSE, 0, 0);
3325             }
3326         }
3327
3328         iMouse = 1;
3329         xMouse = LOWORD(lParam);
3330         yMouse = HIWORD(lParam);
3331
3332         return 0;
3333     }
3334     case WM_CLOSE: {
3335         DestroyWindow(hwndSaver);
3336         hwndSaver = NULL;
3337         return 0;
3338     }
3339     }
3340
3341     return DefWindowProc(hWnd, uMsg, wParam, lParam);
3342 }
3343
3344 /*
3345  * Display warning message (see "z-util.c")
3346  */
3347 static void hack_plog(concptr str)
3348 {
3349     if (str) {
3350 #ifdef JP
3351         MessageBox(NULL, str, "警告!", MB_ICONEXCLAMATION | MB_OK);
3352 #else
3353         MessageBox(NULL, str, "Warning", MB_ICONEXCLAMATION | MB_OK);
3354 #endif
3355     }
3356 }
3357
3358 /*
3359  * Display error message and quit (see "z-util.c")
3360  */
3361 static void hack_quit(concptr str)
3362 {
3363     if (str) {
3364 #ifdef JP
3365         MessageBox(NULL, str, "エラー!", MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
3366 #else
3367         MessageBox(NULL, str, "Error", MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
3368 #endif
3369     }
3370
3371     UnregisterClass(AppName, hInstance);
3372     if (hIcon)
3373         DestroyIcon(hIcon);
3374
3375     exit(0);
3376 }
3377
3378 /*
3379  * Display warning message (see "z-util.c")
3380  */
3381 static void hook_plog(concptr str)
3382 {
3383     if (str) {
3384 #ifdef JP
3385         MessageBox(data[0].w, str, "警告!", MB_ICONEXCLAMATION | MB_OK);
3386 #else
3387         MessageBox(data[0].w, str, "Warning", MB_ICONEXCLAMATION | MB_OK);
3388 #endif
3389     }
3390 }
3391
3392 /*
3393  * Display error message and quit (see "z-util.c")
3394  */
3395 static void hook_quit(concptr str)
3396 {
3397     if (str) {
3398 #ifdef JP
3399         MessageBox(data[0].w, str, "エラー!", MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
3400 #else
3401         MessageBox(data[0].w, str, "Error", MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
3402 #endif
3403     }
3404
3405     save_prefs();
3406     for (int i = MAX_TERM_DATA - 1; i >= 0; --i) {
3407         term_force_font(&data[i], NULL);
3408         if (data[i].font_want)
3409             string_free(data[i].font_want);
3410         if (data[i].w)
3411             DestroyWindow(data[i].w);
3412         data[i].w = 0;
3413     }
3414
3415     if (infGraph.hPalette)
3416         DeleteObject(infGraph.hPalette);
3417     if (infGraph.hBitmap)
3418         DeleteObject(infGraph.hBitmap);
3419     if (infMask.hPalette)
3420         DeleteObject(infMask.hPalette);
3421     if (infMask.hBitmap)
3422         DeleteObject(infMask.hBitmap);
3423
3424     DeleteObject(hbrYellow);
3425     delete_bg();
3426
3427     if (hPal)
3428         DeleteObject(hPal);
3429
3430     UnregisterClass(AppName, hInstance);
3431     if (hIcon)
3432         DestroyIcon(hIcon);
3433
3434     exit(0);
3435 }
3436
3437 /*
3438  * Init some stuff
3439  */
3440 static void init_stuff(void)
3441 {
3442     char path[1024];
3443     GetModuleFileName(hInstance, path, 512);
3444     argv0 = path;
3445     strcpy(path + strlen(path) - 4, ".INI");
3446     ini_file = string_make(path);
3447     int i = strlen(path);
3448
3449     for (; i > 0; i--) {
3450         if (path[i] == '\\') {
3451             break;
3452         }
3453     }
3454
3455     strcpy(path + i + 1, "lib\\");
3456     validate_dir(path, TRUE);
3457     init_file_paths(path, path);
3458     validate_dir(ANGBAND_DIR_APEX, FALSE);
3459     validate_dir(ANGBAND_DIR_BONE, FALSE);
3460     if (!check_dir(ANGBAND_DIR_EDIT)) {
3461         validate_dir(ANGBAND_DIR_DATA, TRUE);
3462     } else {
3463         validate_dir(ANGBAND_DIR_DATA, FALSE);
3464     }
3465
3466     validate_dir(ANGBAND_DIR_FILE, TRUE);
3467     validate_dir(ANGBAND_DIR_HELP, FALSE);
3468     validate_dir(ANGBAND_DIR_INFO, FALSE);
3469     validate_dir(ANGBAND_DIR_PREF, TRUE);
3470     validate_dir(ANGBAND_DIR_SAVE, FALSE);
3471     validate_dir(ANGBAND_DIR_DEBUG_SAVE, FALSE);
3472     validate_dir(ANGBAND_DIR_USER, TRUE);
3473     validate_dir(ANGBAND_DIR_XTRA, TRUE);
3474     path_build(path, sizeof(path), ANGBAND_DIR_FILE, _("news_j.txt", "news.txt"));
3475
3476     validate_file(path);
3477     path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "graf");
3478     ANGBAND_DIR_XTRA_GRAF = string_make(path);
3479     validate_dir(ANGBAND_DIR_XTRA_GRAF, TRUE);
3480
3481     path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "sound");
3482     ANGBAND_DIR_XTRA_SOUND = string_make(path);
3483     validate_dir(ANGBAND_DIR_XTRA_SOUND, FALSE);
3484
3485     path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "music");
3486     ANGBAND_DIR_XTRA_MUSIC = string_make(path);
3487     validate_dir(ANGBAND_DIR_XTRA_MUSIC, FALSE);
3488
3489     path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "help");
3490     ANGBAND_DIR_XTRA_HELP = string_make(path);
3491 }
3492
3493 /*!
3494  * todo よく見るとhMutexはちゃんと使われていない……?
3495  * @brief (Windows固有)変愚蛮怒が起動済かどうかのチェック
3496  */
3497 static bool is_already_running(void)
3498 {
3499     HANDLE hMutex;
3500     hMutex = CreateMutex(NULL, TRUE, VERSION_NAME);
3501     if (GetLastError() == ERROR_ALREADY_EXISTS) {
3502         return TRUE;
3503     }
3504
3505     return FALSE;
3506 }
3507
3508 /*!
3509  * @brief (Windows固有)Windowsアプリケーションとしてのエントリポイント
3510  */
3511 int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow)
3512 {
3513     WNDCLASS wc;
3514     HDC hdc;
3515     MSG msg;
3516
3517     setlocale(LC_ALL, "ja_JP");
3518     (void)nCmdShow;
3519     hInstance = hInst;
3520     if (is_already_running()) {
3521         MessageBox(
3522             NULL, _("変愚蛮怒はすでに起動しています。", "Hengband is already running."), _("エラー!", "Error"), MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
3523         return FALSE;
3524     }
3525
3526     if (hPrevInst == NULL) {
3527         wc.style = CS_CLASSDC;
3528         wc.lpfnWndProc = AngbandWndProc;
3529         wc.cbClsExtra = 0;
3530         wc.cbWndExtra = 4;
3531         wc.hInstance = hInst;
3532         wc.hIcon = hIcon = LoadIcon(hInst, AppName);
3533         wc.hCursor = LoadCursor(NULL, IDC_ARROW);
3534         wc.hbrBackground = GetStockObject(BLACK_BRUSH);
3535         wc.lpszMenuName = AppName;
3536         wc.lpszClassName = AppName;
3537
3538         if (!RegisterClass(&wc))
3539             exit(1);
3540
3541         wc.lpfnWndProc = AngbandListProc;
3542         wc.lpszMenuName = NULL;
3543         wc.lpszClassName = AngList;
3544
3545         if (!RegisterClass(&wc))
3546             exit(2);
3547
3548         wc.style = CS_VREDRAW | CS_HREDRAW | CS_SAVEBITS | CS_DBLCLKS;
3549         wc.lpfnWndProc = AngbandSaverProc;
3550         wc.hCursor = NULL;
3551         wc.lpszMenuName = NULL;
3552         wc.lpszClassName = "WindowsScreenSaverClass";
3553
3554         if (!RegisterClass(&wc))
3555             exit(3);
3556     }
3557
3558     plog_aux = hack_plog;
3559     quit_aux = hack_quit;
3560     core_aux = hack_quit;
3561
3562     init_stuff();
3563     for (int i = 0; special_key_list[i]; ++i) {
3564         special_key[special_key_list[i]] = TRUE;
3565     }
3566
3567     for (int i = 0; ignore_key_list[i]; ++i) {
3568         ignore_key[ignore_key_list[i]] = TRUE;
3569     }
3570
3571     hdc = GetDC(NULL);
3572     colors16 = (GetDeviceCaps(hdc, BITSPIXEL) == 4);
3573     paletted = ((GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) ? TRUE : FALSE);
3574     ReleaseDC(NULL, hdc);
3575
3576     for (int i = 0; i < 256; i++) {
3577         byte rv = angband_color_table[i][1];
3578         byte gv = angband_color_table[i][2];
3579         byte bv = angband_color_table[i][3];
3580         win_clr[i] = PALETTERGB(rv, gv, bv);
3581         angband_color_table[i][0] = win_pal[i];
3582     }
3583
3584     init_windows();
3585     init_bg();
3586
3587     plog_aux = hook_plog;
3588     quit_aux = hook_quit;
3589     core_aux = hook_quit;
3590
3591     ANGBAND_SYS = "win";
3592     if (7 != GetKeyboardType(0))
3593         ANGBAND_KEYBOARD = "0";
3594     else {
3595         switch (GetKeyboardType(1)) {
3596         case 0x0D01:
3597         case 0x0D02:
3598         case 0x0D03:
3599         case 0x0D04:
3600         case 0x0D05:
3601         case 0x0D06:
3602             /* NEC PC-98x1 */
3603             ANGBAND_KEYBOARD = "NEC98";
3604             break;
3605         default:
3606             /* PC/AT */
3607             ANGBAND_KEYBOARD = "JAPAN";
3608         }
3609     }
3610
3611     signals_init();
3612     term_activate(term_screen);
3613     init_angband(p_ptr, process_autopick_file_command);
3614     initialized = TRUE;
3615     check_for_save_file(p_ptr, lpCmdLine);
3616     prt(_("[ファイル] メニューの [新規] または [開く] を選択してください。", "[Choose 'New' or 'Open' from the 'File' menu]"), 23, _(8, 17));
3617     term_fresh();
3618     while (GetMessage(&msg, NULL, 0, 0)) {
3619         TranslateMessage(&msg);
3620         DispatchMessage(&msg);
3621     }
3622
3623     quit(NULL);
3624     return 0;
3625 }
3626 #endif /* WINDOWS */