OSDN Git Service

Merge branch 'master' of git.sourceforge.jp:/gitroot/hengband/hengband
[hengband/hengband.git] / src / main-win.c
1 /* File: main-win.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, Skirmantas Kligys, and others
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.
9  */
10
11
12 /*
13  * This file helps Angband work with Windows computers.
14  *
15  * To use this file, use an appropriate "Makefile" or "Project File",
16  * make sure that "WINDOWS" and/or "WIN32" are defined somewhere, and
17  * make sure to obtain various extra files as described below.
18  *
19  * The official compilation uses the CodeWarrior Pro compiler, which
20  * includes a special project file and precompilable header file.
21  *
22  *
23  * See also "main-dos.c" and "main-ibm.c".
24  *
25  *
26  * The "lib/user/pref-win.prf" file contains keymaps, macro definitions,
27  * and/or color redefinitions.
28  *
29  * The "lib/user/font-win.prf" contains attr/char mappings for use with the
30  * normal "lib/xtra/font/*.fon" font files.
31  *
32  * The "lib/user/graf-win.prf" contains attr/char mappings for use with the
33  * special "lib/xtra/graf/*.bmp" bitmap files, which are activated by a menu
34  * item.
35  *
36  *
37  * Compiling this file, and using the resulting executable, requires
38  * several extra files not distributed with the standard Angband code.
39  * If "USE_GRAPHICS" is defined, then "readdib.h" and "readdib.c" must
40  * be placed into "src/", and the "8X8.BMP" bitmap file must be placed
41  * into "lib/xtra/graf".  In any case, some "*.fon" files (including
42  * "8X13.FON" if nothing else) must be placed into "lib/xtra/font/".
43  * If "USE_SOUND" is defined, then some special library (for example,
44  * "winmm.lib") may need to be linked in, and desired "*.WAV" sound
45  * files must be placed into "lib/xtra/sound/".  All of these extra
46  * files can be found in the "ext-win" archive.
47  *
48  *
49  * The "Term_xtra_win_clear()" function should probably do a low-level
50  * clear of the current window, and redraw the borders and other things,
51  * if only for efficiency.  XXX XXX XXX
52  *
53  * A simpler method is needed for selecting the "tile size" for windows.
54  * XXX XXX XXX
55  *
56  * The various "warning" messages assume the existance of the "screen.w"
57  * window, I think, and only a few calls actually check for its existance,
58  * this may be okay since "NULL" means "on top of all windows". (?)  The
59  * user must never be allowed to "hide" the main window, or the "menubar"
60  * will disappear.  XXX XXX XXX
61  *
62  * Special "Windows Help Files" can be placed into "lib/xtra/help/" for
63  * use with the "winhelp.exe" program.  These files *may* be available
64  * at the ftp site somewhere, but I have not seen them.  XXX XXX XXX
65  *
66  *
67  * Initial framework (and most code) by Ben Harrison (benh@phial.com).
68  *
69  * Original code by Skirmantas Kligys (kligys@scf.usc.edu).
70  *
71  * Additional code by Ross E Becker (beckerr@cis.ohio-state.edu),
72  * and Chris R. Martin (crm7479@tam2000.tamu.edu).
73  */
74
75 #include "angband.h"
76
77 #ifdef WINDOWS
78 #include <windows.h>
79 #include <direct.h>
80 #include <locale.h>
81 #include "z-term.h"
82
83 /*
84  * Extract the "WIN32" flag from the compiler
85  */
86 #if defined(__WIN32__) || defined(__WINNT__) || defined(__NT__)
87 # ifndef WIN32
88 #  define WIN32
89 # endif
90 #endif
91
92
93 /*
94  * Hack -- allow use of "screen saver" mode
95  */
96 #define USE_SAVER
97
98
99 /*
100  * Menu constants -- see "ANGBAND.RC"
101  */
102
103 #define IDM_FILE_NEW                    100
104 #define IDM_FILE_OPEN                   101
105 #define IDM_FILE_SAVE                   110
106 #define IDM_FILE_SCORE                  120
107 #define IDM_FILE_MOVIE                  121
108 #define IDM_FILE_EXIT                   130
109
110 #define IDM_WINDOW_VIS_0                200
111 #define IDM_WINDOW_VIS_1                201
112 #define IDM_WINDOW_VIS_2                202
113 #define IDM_WINDOW_VIS_3                203
114 #define IDM_WINDOW_VIS_4                204
115 #define IDM_WINDOW_VIS_5                205
116 #define IDM_WINDOW_VIS_6                206
117 #define IDM_WINDOW_VIS_7                207
118
119 #define IDM_WINDOW_FONT_0               210
120 #define IDM_WINDOW_FONT_1               211
121 #define IDM_WINDOW_FONT_2               212
122 #define IDM_WINDOW_FONT_3               213
123 #define IDM_WINDOW_FONT_4               214
124 #define IDM_WINDOW_FONT_5               215
125 #define IDM_WINDOW_FONT_6               216
126 #define IDM_WINDOW_FONT_7               217
127
128 #define IDM_WINDOW_POS_0                220
129 #define IDM_WINDOW_POS_1                221
130 #define IDM_WINDOW_POS_2                222
131 #define IDM_WINDOW_POS_3                223
132 #define IDM_WINDOW_POS_4                224
133 #define IDM_WINDOW_POS_5                225
134 #define IDM_WINDOW_POS_6                226
135 #define IDM_WINDOW_POS_7                227
136
137 #define IDM_WINDOW_BIZ_0                230
138 #define IDM_WINDOW_BIZ_1                231
139 #define IDM_WINDOW_BIZ_2                232
140 #define IDM_WINDOW_BIZ_3                233
141 #define IDM_WINDOW_BIZ_4                234
142 #define IDM_WINDOW_BIZ_5                235
143 #define IDM_WINDOW_BIZ_6                236
144 #define IDM_WINDOW_BIZ_7                237
145
146 #define IDM_WINDOW_I_WID_0              240
147 #define IDM_WINDOW_I_WID_1              241
148 #define IDM_WINDOW_I_WID_2              242
149 #define IDM_WINDOW_I_WID_3              243
150 #define IDM_WINDOW_I_WID_4              244
151 #define IDM_WINDOW_I_WID_5              245
152 #define IDM_WINDOW_I_WID_6              246
153 #define IDM_WINDOW_I_WID_7              247
154
155 #define IDM_WINDOW_D_WID_0              250
156 #define IDM_WINDOW_D_WID_1              251
157 #define IDM_WINDOW_D_WID_2              252
158 #define IDM_WINDOW_D_WID_3              253
159 #define IDM_WINDOW_D_WID_4              254
160 #define IDM_WINDOW_D_WID_5              255
161 #define IDM_WINDOW_D_WID_6              256
162 #define IDM_WINDOW_D_WID_7              257
163
164 #define IDM_WINDOW_I_HGT_0              260
165 #define IDM_WINDOW_I_HGT_1              261
166 #define IDM_WINDOW_I_HGT_2              262
167 #define IDM_WINDOW_I_HGT_3              263
168 #define IDM_WINDOW_I_HGT_4              264
169 #define IDM_WINDOW_I_HGT_5              265
170 #define IDM_WINDOW_I_HGT_6              266
171 #define IDM_WINDOW_I_HGT_7              267
172
173 #define IDM_WINDOW_D_HGT_0              270
174 #define IDM_WINDOW_D_HGT_1              271
175 #define IDM_WINDOW_D_HGT_2              272
176 #define IDM_WINDOW_D_HGT_3              273
177 #define IDM_WINDOW_D_HGT_4              274
178 #define IDM_WINDOW_D_HGT_5              275
179 #define IDM_WINDOW_D_HGT_6              276
180 #define IDM_WINDOW_D_HGT_7              277
181
182 #define IDM_OPTIONS_NO_GRAPHICS   400
183 #define IDM_OPTIONS_OLD_GRAPHICS  401
184 #define IDM_OPTIONS_NEW_GRAPHICS  402
185 #define IDM_OPTIONS_NEW2_GRAPHICS 403
186 #define IDM_OPTIONS_BIGTILE               409
187 #define IDM_OPTIONS_SOUND                 410
188 #define IDM_OPTIONS_MUSIC                 411
189 #define IDM_OPTIONS_SAVER                 420
190 #define IDM_OPTIONS_MAP                   430
191 #define IDM_OPTIONS_BG                    440
192 #define IDM_OPTIONS_OPEN_BG               441
193
194 #define IDM_DUMP_SCREEN_HTML    450
195
196 #define IDM_HELP_CONTENTS       901
197
198
199
200 /*
201  * This may need to be removed for some compilers XXX XXX XXX
202  */
203 #if 0
204 #define STRICT
205 #endif
206
207 /*
208  * Exclude parts of WINDOWS.H that are not needed
209  */
210 #define NOCOMM            /* Comm driver APIs and definitions */
211 #define NOLOGERROR        /* LogError() and related definitions */
212 #define NOPROFILER        /* Profiler APIs */
213 #define NOLFILEIO         /* _l* file I/O routines */
214 #define NOOPENFILE        /* OpenFile and related definitions */
215 #define NORESOURCE        /* Resource management */
216 #define NOATOM            /* Atom management */
217 #define NOLANGUAGE        /* Character test routines */
218 #define NOLSTRING         /* lstr* string management routines */
219 #define NODBCS            /* Double-byte character set routines */
220 #define NOKEYBOARDINFO    /* Keyboard driver routines */
221 #define NOCOLOR           /* COLOR_* color values */
222 #define NODRAWTEXT        /* DrawText() and related definitions */
223 #define NOSCALABLEFONT    /* Truetype scalable font support */
224 #define NOMETAFILE        /* Metafile support */
225 #define NOSYSTEMPARAMSINFO /* SystemParametersInfo() and SPI_* definitions */
226 #define NODEFERWINDOWPOS  /* DeferWindowPos and related definitions */
227 #define NOKEYSTATES       /* MK_* message key state flags */
228 #define NOWH              /* SetWindowsHook and related WH_* definitions */
229 #define NOCLIPBOARD       /* Clipboard APIs and definitions */
230 #define NOICONS           /* IDI_* icon IDs */
231 #define NOMDI             /* MDI support */
232 #define NOHELP            /* Help support */
233
234 /* Not defined since it breaks Borland C++ 5.5 */
235 /* #define NOCTLMGR */    /* Control management and controls */
236
237 /*
238  * Exclude parts of WINDOWS.H that are not needed (Win32)
239  */
240 #define WIN32_LEAN_AND_MEAN
241 #define NONLS             /* All NLS defines and routines */
242 #define NOSERVICE         /* All Service Controller routines, SERVICE_ equates, etc. */
243 #define NOKANJI           /* Kanji support stuff. */
244 #define NOMCX             /* Modem Configuration Extensions */
245
246 /*
247  * Include the "windows" support file
248  */
249 #include <windows.h>
250
251 /*
252  * Exclude parts of MMSYSTEM.H that are not needed
253  */
254 #define MMNODRV          /* Installable driver support */
255 #define MMNOWAVE         /* Waveform support */
256 #define MMNOMIDI         /* MIDI support */
257 #define MMNOAUX          /* Auxiliary audio support */
258 #define MMNOTIMER        /* Timer support */
259 #define MMNOJOY          /* Joystick support */
260 #define MMNOMCI          /* MCI support */
261 #define MMNOMMIO         /* Multimedia file I/O support */
262 #define MMNOMMSYSTEM     /* General MMSYSTEM functions */
263
264 /*
265  * Include some more files. Note: the Cygnus Cygwin compiler
266  * doesn't use mmsystem.h instead it includes the winmm library
267  * which performs a similar function.
268  */
269 #include <mmsystem.h>
270 #include <commdlg.h>
271
272 /*
273  * HTML-Help requires htmlhelp.h and htmlhelp.lib from Microsoft's
274  * HTML Workshop < http://msdn.microsoft.com/workshop/author/htmlhelp/ >.
275  */
276 /* #define HTML_HELP */
277
278 #ifdef HTML_HELP
279 #include <htmlhelp.h>
280 #endif /* HTML_HELP */
281
282 /*
283  * Include the support for loading bitmaps
284  */
285 #ifdef USE_GRAPHICS
286 # include "readdib.h"
287 #endif
288
289 /*
290  * Hack -- Fake declarations from "dos.h" XXX XXX XXX
291  */
292 #ifdef WIN32
293 #define INVALID_FILE_NAME (DWORD)0xFFFFFFFF
294 #else /* WIN32 */
295 #define FA_LABEL    0x08        /* Volume label */
296 #define FA_DIREC    0x10        /* Directory */
297 unsigned _cdecl _dos_getfileattr(const char *, unsigned *);
298 #endif /* WIN32 */
299
300 /*
301  * Silliness in WIN32 drawing routine
302  */
303 #ifdef WIN32
304 # define MoveTo(H,X,Y) MoveToEx(H, X, Y, NULL)
305 #endif /* WIN32 */
306
307 /*
308  * Silliness for Windows 95
309  */
310 #ifndef WS_EX_TOOLWINDOW
311 # define WS_EX_TOOLWINDOW 0
312 #endif
313
314 /*
315  * Foreground color bits (hard-coded by DOS)
316  */
317 #define VID_BLACK       0x00
318 #define VID_BLUE        0x01
319 #define VID_GREEN       0x02
320 #define VID_CYAN        0x03
321 #define VID_RED         0x04
322 #define VID_MAGENTA     0x05
323 #define VID_YELLOW      0x06
324 #define VID_WHITE       0x07
325
326 /*
327  * Bright text (hard-coded by DOS)
328  */
329 #define VID_BRIGHT      0x08
330
331 /*
332  * Background color bits (hard-coded by DOS)
333  */
334 #define VUD_BLACK       0x00
335 #define VUD_BLUE        0x10
336 #define VUD_GREEN       0x20
337 #define VUD_CYAN        0x30
338 #define VUD_RED         0x40
339 #define VUD_MAGENTA     0x50
340 #define VUD_YELLOW      0x60
341 #define VUD_WHITE       0x70
342
343 /*
344  * Blinking text (hard-coded by DOS)
345  */
346 #define VUD_BRIGHT      0x80
347
348
349 /*
350  * Forward declare
351  */
352 typedef struct _term_data term_data;
353
354 /*
355  * Extra "term" data
356  *
357  * Note the use of "font_want" for the names of the font file requested by
358  * the user, and the use of "font_file" for the currently active font file.
359  *
360  * The "font_file" is uppercased, and takes the form "8X13.FON", while
361  * "font_want" can be in almost any form as long as it could be construed
362  * as attempting to represent the name of a font.
363  */
364 struct _term_data
365 {
366         term t;
367
368         cptr s;
369
370         HWND w;
371
372         DWORD dwStyle;
373         DWORD dwExStyle;
374
375         uint keys;
376
377         uint rows;      /* int -> uint */
378         uint cols;
379
380         uint pos_x;
381         uint pos_y;
382         uint size_wid;
383         uint size_hgt;
384         uint size_ow1;
385         uint size_oh1;
386         uint size_ow2;
387         uint size_oh2;
388
389         bool size_hack;
390
391         bool xtra_hack;
392
393         bool visible;
394
395         bool bizarre;
396
397         cptr font_want;
398
399         cptr font_file;
400
401         HFONT font_id;
402
403         uint font_wid;
404         uint font_hgt;
405
406         uint tile_wid;
407         uint tile_hgt;
408
409         uint map_tile_wid;
410         uint map_tile_hgt;
411
412         bool map_active;
413 #if 1 /* #ifdef JP */
414         LOGFONT lf;
415 #endif
416
417         bool posfix;
418
419 /* bg */
420 #if 0
421         char *bgfile;
422         int use_bg;
423 #endif
424 };
425
426
427 /*
428  * Maximum number of windows XXX XXX XXX
429  */
430 #define MAX_TERM_DATA 8
431
432 /*
433  * An array of term_data's
434  */
435 static term_data data[MAX_TERM_DATA];
436
437 /*
438  * Hack -- global "window creation" pointer
439  */
440 static term_data *my_td;
441
442 /*
443  * Remember normal size of main window when maxmized
444  */
445 POINT normsize;
446
447 /*
448  * was main window maximized on previous playing
449  */
450 bool win_maximized = FALSE;
451
452 /*
453  * game in progress
454  */
455 bool game_in_progress = FALSE;
456
457 /*
458  * note when "open"/"new" become valid
459  */
460 bool initialized = FALSE;
461
462 /*
463  * screen paletted, i.e. 256 colors
464  */
465 bool paletted = FALSE;
466
467 /*
468  * 16 colors screen, don't use RGB()
469  */
470 bool colors16 = FALSE;
471
472 /*
473  * Saved instance handle
474  */
475 static HINSTANCE hInstance;
476
477 /*
478  * Yellow brush for the cursor
479  */
480 static HBRUSH hbrYellow;
481
482 /*
483  * An icon
484  */
485 static HICON hIcon;
486
487 /*
488  * A palette
489  */
490 static HPALETTE hPal;
491
492 /* bg */
493 static HBITMAP hBG = NULL;
494 static int use_bg = 0;
495 static char bg_bitmap_file[1024] = "bg.bmp";
496
497 #ifdef USE_SAVER
498
499 /*
500  * The screen saver window
501  */
502 static HWND hwndSaver;
503
504 #endif /* USE_SAVER */
505
506
507 #ifdef USE_GRAPHICS
508
509 /*
510  * Flag set once "graphics" has been initialized
511  */
512 static bool can_use_graphics = FALSE;
513
514 /*
515  * The global bitmap
516  */
517 static DIBINIT infGraph;
518
519 /*
520  * The global bitmap mask
521  */
522 static DIBINIT infMask;
523
524 #endif /* USE_GRAPHICS */
525
526
527 #ifdef USE_SOUND
528
529 /*
530  * Flag set once "sound" has been initialized
531  */
532 static bool can_use_sound = FALSE;
533
534 #define SAMPLE_MAX 8
535 /*
536  * An array of sound file names
537  */
538 static cptr sound_file[SOUND_MAX][SAMPLE_MAX];
539
540 #endif /* USE_SOUND */
541
542
543
544 #ifdef USE_MUSIC
545
546 #define SAMPLE_MUSIC_MAX 16
547 static cptr music_file[MUSIC_BASIC_MAX][SAMPLE_MUSIC_MAX];
548 static cptr dungeon_music_file[1000][SAMPLE_MUSIC_MAX];
549 static cptr town_music_file[1000][SAMPLE_MUSIC_MAX];
550 static cptr quest_music_file[1000][SAMPLE_MUSIC_MAX];
551 static bool can_use_music = FALSE;
552
553 static MCI_OPEN_PARMS mop;
554 static char mci_device_type[256];
555
556 #endif /* USE_MUSIC */
557
558
559 /*
560  * Full path to ANGBAND.INI
561  */
562 static cptr ini_file = NULL;
563
564 /*
565  * Name of application
566  */
567 static cptr AppName = "ANGBAND";
568
569 /*
570  * Name of sub-window type
571  */
572 static cptr AngList = "AngList";
573
574 /*
575  * Directory names
576  */
577 static cptr ANGBAND_DIR_XTRA_GRAF;
578 static cptr ANGBAND_DIR_XTRA_SOUND;
579 static cptr ANGBAND_DIR_XTRA_MUSIC;
580 static cptr ANGBAND_DIR_XTRA_HELP;
581 #if 0 /* #ifndef JP */
582 static cptr ANGBAND_DIR_XTRA_FONT;
583 #endif
584 #ifdef USE_MUSIC
585 static cptr ANGBAND_DIR_XTRA_MUSIC;
586 #endif
587
588
589 /*
590  * The "complex" color values
591  */
592 static COLORREF win_clr[256];
593
594
595 /*
596  * Flag for macro trigger with dump ASCII
597  */
598 static bool Term_no_press = FALSE;
599
600 /*
601  * Copy and paste
602  */
603 static bool mouse_down = FALSE;
604 static bool paint_rect = FALSE;
605 static int mousex = 0, mousey = 0;
606 static int oldx, oldy;
607
608
609 /*
610  * The "simple" color values
611  *
612  * See "main-ibm.c" for original table information
613  *
614  * The entries below are taken from the "color bits" defined above.
615  *
616  * Note that many of the choices below suck, but so do crappy monitors.
617  */
618 static BYTE win_pal[256] =
619 {
620         VID_BLACK,                                      /* Dark */
621         VID_WHITE,                                      /* White */
622         VID_CYAN,                                       /* Slate XXX */
623         VID_RED | VID_BRIGHT,           /* Orange XXX */
624         VID_RED,                                        /* Red */
625         VID_GREEN,                                      /* Green */
626         VID_BLUE,                                       /* Blue */
627         VID_YELLOW,                                     /* Umber XXX */
628         VID_BLACK | VID_BRIGHT,         /* Light Dark */
629         VID_CYAN | VID_BRIGHT,          /* Light Slate XXX */
630         VID_MAGENTA,                            /* Violet XXX */
631         VID_YELLOW | VID_BRIGHT,        /* Yellow */
632         VID_MAGENTA | VID_BRIGHT,       /* Light Red XXX */
633         VID_GREEN | VID_BRIGHT,         /* Light Green */
634         VID_BLUE | VID_BRIGHT,          /* Light Blue */
635         VID_YELLOW                                      /* Light Umber XXX */
636 };
637
638
639 /*
640  * Hack -- define which keys are "special"
641  */
642 static bool special_key[256];
643 static bool ignore_key[256];
644
645 #if 1
646 /*
647  * Hack -- initialization list for "special_key"
648  */
649 static byte special_key_list[] = {
650         VK_CLEAR, VK_PAUSE, VK_CAPITAL,
651         VK_KANA, VK_JUNJA, VK_FINAL, VK_KANJI,
652         VK_CONVERT, VK_NONCONVERT, VK_ACCEPT, VK_MODECHANGE,
653         VK_PRIOR, VK_NEXT, VK_END, VK_HOME,
654         VK_LEFT, VK_UP, VK_RIGHT, VK_DOWN,
655         VK_SELECT, VK_PRINT, VK_EXECUTE, VK_SNAPSHOT,
656         VK_INSERT, VK_DELETE, VK_HELP, VK_APPS,
657         VK_NUMPAD0, VK_NUMPAD1, VK_NUMPAD2, VK_NUMPAD3,
658         VK_NUMPAD4, VK_NUMPAD5, VK_NUMPAD6, VK_NUMPAD7,
659         VK_NUMPAD8, VK_NUMPAD9, VK_MULTIPLY, VK_ADD,
660         VK_SEPARATOR, VK_SUBTRACT, VK_DECIMAL, VK_DIVIDE,
661         VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
662         VK_F7, VK_F8, VK_F9, VK_F10, VK_F11, VK_F12,
663         VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18,
664         VK_F19,VK_F20, VK_F21, VK_F22, VK_F23, VK_F24,
665         VK_NUMLOCK, VK_SCROLL, VK_ATTN, VK_CRSEL,
666         VK_EXSEL, VK_EREOF, VK_PLAY, VK_ZOOM,
667         VK_NONAME, VK_PA1,
668         0       /* End of List */
669 };
670
671 static byte ignore_key_list[] = {
672         VK_ESCAPE, VK_TAB, VK_SPACE,
673         'F', 'W', 'O', /*'H',*/ /* these are menu characters.*/
674         VK_SHIFT, VK_CONTROL, VK_MENU, VK_LWIN, VK_RWIN,
675         VK_LSHIFT, VK_RSHIFT, VK_LCONTROL, VK_RCONTROL,
676         VK_LMENU, VK_RMENU,
677         0       /* End of List */
678 };
679 #else
680 /*
681  * Hack -- initialization list for "special_key"
682  *
683  * We ignore the modifier keys (shift, control, alt, num lock, scroll lock),
684  * and the normal keys (escape, tab, return, letters, numbers, etc), but we
685  * catch the keypad keys (with and without numlock set, including keypad 5),
686  * the function keys (including the "menu" key which maps to F10), and the
687  * "pause" key (between scroll lock and numlock).  We also catch a few odd
688  * keys which I do not recognize, but which are listed among keys which we
689  * do catch, so they should be harmless to catch.
690  */
691 static byte special_key_list[] =
692 {
693         VK_CLEAR,               /* 0x0C (KP<5>) */
694
695         VK_PAUSE,               /* 0x13 (pause) */
696
697         VK_PRIOR,               /* 0x21 (KP<9>) */
698         VK_NEXT,                /* 0x22 (KP<3>) */
699         VK_END,                 /* 0x23 (KP<1>) */
700         VK_HOME,                /* 0x24 (KP<7>) */
701         VK_LEFT,                /* 0x25 (KP<4>) */
702         VK_UP,                  /* 0x26 (KP<8>) */
703         VK_RIGHT,               /* 0x27 (KP<6>) */
704         VK_DOWN,                /* 0x28 (KP<2>) */
705         VK_SELECT,              /* 0x29 (?????) */
706         VK_PRINT,               /* 0x2A (?????) */
707         VK_EXECUTE,             /* 0x2B (?????) */
708         VK_SNAPSHOT,    /* 0x2C (?????) */
709         VK_INSERT,              /* 0x2D (KP<0>) */
710         VK_DELETE,              /* 0x2E (KP<.>) */
711         VK_HELP,                /* 0x2F (?????) */
712 #if 0
713         VK_NUMPAD0,             /* 0x60 (KP<0>) */
714         VK_NUMPAD1,             /* 0x61 (KP<1>) */
715         VK_NUMPAD2,             /* 0x62 (KP<2>) */
716         VK_NUMPAD3,             /* 0x63 (KP<3>) */
717         VK_NUMPAD4,             /* 0x64 (KP<4>) */
718         VK_NUMPAD5,             /* 0x65 (KP<5>) */
719         VK_NUMPAD6,             /* 0x66 (KP<6>) */
720         VK_NUMPAD7,             /* 0x67 (KP<7>) */
721         VK_NUMPAD8,             /* 0x68 (KP<8>) */
722         VK_NUMPAD9,             /* 0x69 (KP<9>) */
723         VK_MULTIPLY,    /* 0x6A (KP<*>) */
724         VK_ADD,                 /* 0x6B (KP<+>) */
725         VK_SEPARATOR,   /* 0x6C (?????) */
726         VK_SUBTRACT,    /* 0x6D (KP<->) */
727         VK_DECIMAL,             /* 0x6E (KP<.>) */
728         VK_DIVIDE,              /* 0x6F (KP</>) */
729 #endif
730         VK_F1,                  /* 0x70 */
731         VK_F2,                  /* 0x71 */
732         VK_F3,                  /* 0x72 */
733         VK_F4,                  /* 0x73 */
734         VK_F5,                  /* 0x74 */
735         VK_F6,                  /* 0x75 */
736         VK_F7,                  /* 0x76 */
737         VK_F8,                  /* 0x77 */
738         VK_F9,                  /* 0x78 */
739         VK_F10,                 /* 0x79 */
740         VK_F11,                 /* 0x7A */
741         VK_F12,                 /* 0x7B */
742         VK_F13,                 /* 0x7C */
743         VK_F14,                 /* 0x7D */
744         VK_F15,                 /* 0x7E */
745         VK_F16,                 /* 0x7F */
746         VK_F17,                 /* 0x80 */
747         VK_F18,                 /* 0x81 */
748         VK_F19,                 /* 0x82 */
749         VK_F20,                 /* 0x83 */
750         VK_F21,                 /* 0x84 */
751         VK_F22,                 /* 0x85 */
752         VK_F23,                 /* 0x86 */
753         VK_F24,                 /* 0x87 */
754         0
755 };
756 #endif
757
758 /* bg */
759 static void delete_bg(void)
760 {
761         if (hBG != NULL)
762         {
763                 DeleteObject(hBG);
764                 hBG = NULL;
765         }
766 }
767
768 static int init_bg(void)
769 {
770         char * bmfile = bg_bitmap_file;
771
772         delete_bg();
773         if (use_bg == 0) return 0;
774
775         hBG = LoadImage(NULL, bmfile,  IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
776         if (!hBG) {
777 #ifdef JP
778                 plog_fmt("ÊÉ»æÍѥӥåȥޥåנ'%s' ¤òÆɤ߹þ¤á¤Þ¤»¤ó¡£", bmfile);
779 #else
780                 plog_fmt("Can't load the bitmap file '%s'.", bmfile);
781 #endif
782                 use_bg = 0;
783                 return 0;
784         }
785 #if 0 /* gomi */
786         HDC wnddc, dcimage, dcbg;
787         HBITMAP bmimage, bmimage_old, bmbg_old;
788         int i, j;
789
790         delete_bg();
791
792         wnddc = GetDC(hwnd);
793         dcimage = CreateCompatibleDC(wnddc);
794         dcbg = CreateCompatibleDC(wnddc);
795
796         bmimage = LoadImage(NULL, "bg.bmp", LR_LOADFROMFILE, 0, 0, 0);
797         if (!bmimage) quit("bg.bmp¤¬Æɤߤ³¤á¤Ê¤¤¡ª");
798         bmimage_old = SelectObject(dcimage, bmimage);
799
800         CreateCompatibleBitmap();
801
802         ReleaseDC(hwnd, wnddc);
803 #endif
804         use_bg = 1;
805         return 1;
806 }
807
808 static void DrawBG(HDC hdc, RECT *r)
809 {
810         HDC hdcSrc;
811         HBITMAP hOld;
812         BITMAP bm;
813         int x = r->left, y = r->top;
814         int nx, ny, sx, sy, swid, shgt, cwid, chgt;
815         
816         if (!use_bg || !hBG)
817                 return;
818
819         nx = x; ny = y;
820         GetObject(hBG, sizeof(bm), &bm);
821         swid = bm.bmWidth; shgt = bm.bmHeight;
822
823         hdcSrc = CreateCompatibleDC(hdc);
824         hOld = SelectObject(hdcSrc, hBG);
825
826         do {
827                 sx = nx % swid;
828                 cwid = MIN(swid - sx, r->right - nx);
829                 do {
830                         sy = ny % shgt;
831                         chgt = MIN(shgt - sy, r->bottom - ny);
832                                 BitBlt(hdc, nx, ny, cwid, chgt, hdcSrc, sx, sy, SRCCOPY);
833                         ny += chgt;
834                 } while (ny < r->bottom);
835                 ny = y;
836                 nx += cwid;
837         } while (nx < r->right);
838         
839         SelectObject(hdcSrc, hOld);
840         DeleteDC(hdcSrc);
841 }
842
843 #if 0
844 /*
845  * Hack -- given a pathname, point at the filename
846  */
847 static cptr extract_file_name(cptr s)
848 {
849         cptr p;
850
851         /* Start at the end */
852         p = s + strlen(s) - 1;
853
854         /* Back up to divider */
855         while ((p >= s) && (*p != ':') && (*p != '\\')) p--;
856
857         /* Return file name */
858         return (p+1);
859 }
860 #endif
861
862
863 /*
864  * Hack -- given a simple filename, extract the "font size" info
865  *
866  * Return a pointer to a static buffer holding the capitalized base name.
867  */
868 #if 0 /* #ifndef JP */
869 static char *analyze_font(char *path, int *wp, int *hp)
870 {
871         int wid, hgt;
872
873         char *s, *p;
874
875         /* Start at the end */
876         p = path + strlen(path) - 1;
877
878         /* Back up to divider */
879         while ((p >= path) && (*p != ':') && (*p != '\\')) --p;
880
881         /* Advance to file name */
882         ++p;
883
884         /* Capitalize */
885         for (s = p; *s; ++s)
886         {
887                 /* Capitalize (be paranoid) */
888                 if (islower(*s)) *s = toupper(*s);
889         }
890
891         /* Find first 'X' */
892         s = my_strchr(p, 'X');
893
894         /* Extract font width */
895         wid = atoi(p);
896
897         /* Extract height */
898         hgt = s ? atoi(s+1) : 0;
899
900         /* Save results */
901         (*wp) = wid;
902         (*hp) = hgt;
903
904         /* Result */
905         return (p);
906 }
907 #endif
908
909
910 /*
911  * Check for existance of a file
912  */
913 static bool check_file(cptr s)
914 {
915         char path[1024];
916
917 #ifdef WIN32
918
919         DWORD attrib;
920
921 #else /* WIN32 */
922
923         unsigned int attrib;
924
925 #endif /* WIN32 */
926
927         /* Copy it */
928         strcpy(path, s);
929
930 #ifdef WIN32
931
932         /* Examine */
933         attrib = GetFileAttributes(path);
934
935         /* Require valid filename */
936         if (attrib == INVALID_FILE_NAME) return (FALSE);
937
938         /* Prohibit directory */
939         if (attrib & FILE_ATTRIBUTE_DIRECTORY) return (FALSE);
940
941 #else /* WIN32 */
942
943         /* Examine and verify */
944         if (_dos_getfileattr(path, &attrib)) return (FALSE);
945
946         /* Prohibit something */
947         if (attrib & FA_LABEL) return (FALSE);
948
949         /* Prohibit directory */
950         if (attrib & FA_DIREC) return (FALSE);
951
952 #endif /* WIN32 */
953
954         /* Success */
955         return (TRUE);
956 }
957
958
959 /*
960  * Check for existance of a directory
961  */
962 static bool check_dir(cptr s)
963 {
964         int i;
965
966         char path[1024];
967
968 #ifdef WIN32
969
970         DWORD attrib;
971
972 #else /* WIN32 */
973
974         unsigned int attrib;
975
976 #endif /* WIN32 */
977
978         /* Copy it */
979         strcpy(path, s);
980
981         /* Check length */
982         i = strlen(path);
983
984         /* Remove trailing backslash */
985         if (i && (path[i-1] == '\\')) path[--i] = '\0';
986
987 #ifdef WIN32
988
989         /* Examine */
990         attrib = GetFileAttributes(path);
991
992         /* Require valid filename */
993         if (attrib == INVALID_FILE_NAME) return (FALSE);
994
995         /* Require directory */
996         if (!(attrib & FILE_ATTRIBUTE_DIRECTORY)) return (FALSE);
997
998 #else /* WIN32 */
999
1000         /* Examine and verify */
1001         if (_dos_getfileattr(path, &attrib)) return (FALSE);
1002
1003         /* Prohibit something */
1004         if (attrib & FA_LABEL) return (FALSE);
1005
1006         /* Require directory */
1007         if (!(attrib & FA_DIREC)) return (FALSE);
1008
1009 #endif /* WIN32 */
1010
1011         /* Success */
1012         return (TRUE);
1013 }
1014
1015
1016 /*
1017  * Validate a file
1018  */
1019 static void validate_file(cptr s)
1020 {
1021         /* Verify or fail */
1022         if (!check_file(s))
1023         {
1024 #ifdef JP
1025                 quit_fmt("ɬÍפʥե¡¥¤¥ë[%s]¤¬¸«¤¢¤¿¤ê¤Þ¤»¤ó¡£", s);
1026 #else
1027                 quit_fmt("Cannot find required file:\n%s", s);
1028 #endif
1029
1030         }
1031 }
1032
1033
1034 /*
1035  * Validate a directory
1036  */
1037 static void validate_dir(cptr s, bool vital)
1038 {
1039         /* Verify or fail */
1040         if (!check_dir(s))
1041         {
1042                 /* This directory contains needed data */
1043                 if (vital)
1044                 {
1045 #ifdef JP
1046                 quit_fmt("ɬÍפʥǥ£¥ì¥¯¥È¥ê[%s]¤¬¸«¤¢¤¿¤ê¤Þ¤»¤ó¡£", s);
1047 #else
1048                         quit_fmt("Cannot find required directory:\n%s", s);
1049 #endif
1050
1051                 }
1052                 /* Attempt to create this directory */
1053                 else if (mkdir(s))
1054                 {
1055                         quit_fmt("Unable to create directory:\n%s", s);
1056                 }
1057         }
1058 }
1059
1060
1061 /*
1062  * Get the "size" for a window
1063  */
1064 static void term_getsize(term_data *td)
1065 {
1066         RECT rc;
1067
1068         int wid, hgt;
1069
1070         /* Paranoia */
1071         if (td->cols < 1) td->cols = 1;
1072         if (td->rows < 1) td->rows = 1;
1073
1074         /* Window sizes */
1075         wid = td->cols * td->tile_wid + td->size_ow1 + td->size_ow2;
1076         hgt = td->rows * td->tile_hgt + td->size_oh1 + td->size_oh2;
1077
1078         /* Fake window size */
1079         rc.left = 0;
1080         rc.right = rc.left + wid;
1081         rc.top = 0;
1082         rc.bottom = rc.top + hgt;
1083
1084         /* XXX XXX XXX */
1085         /* rc.right += 1; */
1086         /* rc.bottom += 1; */
1087
1088         /* Adjust */
1089         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
1090
1091         /* Total size */
1092         td->size_wid = rc.right - rc.left;
1093         td->size_hgt = rc.bottom - rc.top;
1094
1095         /* See CreateWindowEx */
1096         if (!td->w) return;
1097
1098         /* Extract actual location */
1099         GetWindowRect(td->w, &rc);
1100
1101         /* Save the location */
1102         td->pos_x = rc.left;
1103         td->pos_y = rc.top;
1104 }
1105
1106
1107 /*
1108  * Write the "prefs" for a single term
1109  */
1110 static void save_prefs_aux(int i)
1111 {
1112         term_data *td = &data[i];
1113         char sec_name[128];
1114         char buf[1024];
1115
1116         RECT rc;
1117         WINDOWPLACEMENT lpwndpl;
1118
1119         /* Paranoia */
1120         if (!td->w) return;
1121
1122         /* Make section name */
1123         sprintf(sec_name, "Term-%d", i);
1124
1125         /* Visible */
1126         if (i > 0)
1127         {
1128                 strcpy(buf, td->visible ? "1" : "0");
1129                 WritePrivateProfileString(sec_name, "Visible", buf, ini_file);
1130         }
1131
1132         /* Font */
1133 #ifdef JP
1134         strcpy(buf, td->lf.lfFaceName[0]!='\0' ? td->lf.lfFaceName : "£Í£Ó ¥´¥·¥Ã¥¯");
1135 #else
1136 #if 0
1137         strcpy(buf, td->font_file ? td->font_file : "8X13.FON");
1138 #else
1139         strcpy(buf, td->lf.lfFaceName[0]!='\0' ? td->lf.lfFaceName : "Courier");
1140 #endif
1141 #endif
1142
1143         WritePrivateProfileString(sec_name, "Font", buf, ini_file);
1144
1145 #if 1 /* #ifdef JP */
1146         wsprintf(buf, "%d", td->lf.lfWidth);
1147         WritePrivateProfileString(sec_name, "FontWid", buf, ini_file);
1148         wsprintf(buf, "%d", td->lf.lfHeight);
1149         WritePrivateProfileString(sec_name, "FontHgt", buf, ini_file);
1150         wsprintf(buf, "%d", td->lf.lfWeight);
1151         WritePrivateProfileString(sec_name, "FontWgt", buf, ini_file);
1152 #endif
1153         /* Bizarre */
1154         strcpy(buf, td->bizarre ? "1" : "0");
1155         WritePrivateProfileString(sec_name, "Bizarre", buf, ini_file);
1156
1157         /* Tile size (x) */
1158         wsprintf(buf, "%d", td->tile_wid);
1159         WritePrivateProfileString(sec_name, "TileWid", buf, ini_file);
1160
1161         /* Tile size (y) */
1162         wsprintf(buf, "%d", td->tile_hgt);
1163         WritePrivateProfileString(sec_name, "TileHgt", buf, ini_file);
1164
1165         /* Get window placement and dimensions */
1166         lpwndpl.length = sizeof(WINDOWPLACEMENT);
1167         GetWindowPlacement(td->w, &lpwndpl);
1168
1169         /* Acquire position in *normal* mode (not minimized) */
1170         rc = lpwndpl.rcNormalPosition;
1171
1172         /* Window size (x) */
1173         if (i == 0) wsprintf(buf, "%d", normsize.x);
1174         else wsprintf(buf, "%d", td->cols);
1175         WritePrivateProfileString(sec_name, "NumCols", buf, ini_file);
1176
1177         /* Window size (y) */
1178         if (i == 0) wsprintf(buf, "%d", normsize.y);
1179         else wsprintf(buf, "%d", td->rows);
1180         WritePrivateProfileString(sec_name, "NumRows", buf, ini_file);
1181
1182         /* Maxmized (only main window) */
1183         if (i == 0)
1184         {
1185                 strcpy(buf, IsZoomed(td->w) ? "1" : "0");
1186                 WritePrivateProfileString(sec_name, "Maximized", buf, ini_file);
1187         }
1188
1189         /* Acquire position */
1190         GetWindowRect(td->w, &rc);
1191
1192         /* Window position (x) */
1193         wsprintf(buf, "%d", rc.left);
1194         WritePrivateProfileString(sec_name, "PositionX", buf, ini_file);
1195
1196         /* Window position (y) */
1197         wsprintf(buf, "%d", rc.top);
1198         WritePrivateProfileString(sec_name, "PositionY", buf, ini_file);
1199
1200         /* Window Z position */
1201         if (i > 0)
1202         {
1203                 strcpy(buf, td->posfix ? "1" : "0");
1204                 WritePrivateProfileString(sec_name, "PositionFix", buf, ini_file);
1205         }
1206 }
1207
1208
1209 /*
1210  * Write the "prefs"
1211  *
1212  * We assume that the windows have all been initialized
1213  */
1214 static void save_prefs(void)
1215 {
1216         int i;
1217
1218         char buf[128];
1219
1220         /* Save the "arg_graphics" flag */
1221         sprintf(buf, "%d", arg_graphics);
1222         WritePrivateProfileString("Angband", "Graphics", buf, ini_file);
1223
1224         /* Save the "arg_bigtile" flag */
1225         strcpy(buf, arg_bigtile ? "1" : "0");
1226         WritePrivateProfileString("Angband", "Bigtile", buf, ini_file);
1227
1228         /* Save the "arg_sound" flag */
1229         strcpy(buf, arg_sound ? "1" : "0");
1230         WritePrivateProfileString("Angband", "Sound", buf, ini_file);
1231
1232         /* Save the "arg_sound" flag */
1233         strcpy(buf, arg_music ? "1" : "0");
1234         WritePrivateProfileString("Angband", "Music", buf, ini_file);
1235
1236         /* bg */
1237         strcpy(buf, use_bg ? "1" : "0");
1238         WritePrivateProfileString("Angband", "BackGround", buf, ini_file);
1239         WritePrivateProfileString("Angband", "BackGroundBitmap", 
1240                 bg_bitmap_file[0] != '\0' ? bg_bitmap_file : "bg.bmp", ini_file);
1241
1242         /* Save window prefs */
1243         for (i = 0; i < MAX_TERM_DATA; ++i)
1244         {
1245                 save_prefs_aux(i);
1246         }
1247 }
1248
1249
1250 /*
1251  * Load the "prefs" for a single term
1252  */
1253 static void load_prefs_aux(int i)
1254 {
1255         term_data *td = &data[i];
1256         char sec_name[128];
1257         char tmp[1024];
1258
1259         int wid, hgt, posx, posy;
1260         int dispx = GetSystemMetrics( SM_CXVIRTUALSCREEN);
1261         int dispy = GetSystemMetrics( SM_CYVIRTUALSCREEN);
1262         posx=0;
1263         posy=0;
1264         
1265         /* Make section name */
1266         sprintf(sec_name, "Term-%d", i);
1267
1268         /* Make section name */
1269         sprintf(sec_name, "Term-%d", i);
1270
1271         /* Visible */
1272         if (i > 0)
1273         {
1274                 td->visible = (GetPrivateProfileInt(sec_name, "Visible", td->visible, ini_file) != 0);
1275         }
1276
1277         /* Desired font, with default */
1278 #ifdef JP
1279         GetPrivateProfileString(sec_name, "Font", "£Í£Ó ¥´¥·¥Ã¥¯", tmp, 127, ini_file);
1280 #else
1281 #if 0
1282         GetPrivateProfileString(sec_name, "Font", "8X13.FON", tmp, 127, ini_file);
1283 #else
1284         GetPrivateProfileString(sec_name, "Font", "Courier", tmp, 127, ini_file);
1285 #endif
1286 #endif
1287
1288
1289         /* Bizarre */
1290         td->bizarre = (GetPrivateProfileInt(sec_name, "Bizarre", td->bizarre, ini_file) != 0);
1291
1292         /* Analyze font, save desired font name */
1293 #if 1 /* #ifdef JP */
1294         td->font_want = string_make(tmp);
1295         hgt = 15; wid = 0;
1296         td->lf.lfWidth  = GetPrivateProfileInt(sec_name, "FontWid", wid, ini_file);
1297         td->lf.lfHeight = GetPrivateProfileInt(sec_name, "FontHgt", hgt, ini_file);
1298         td->lf.lfWeight = GetPrivateProfileInt(sec_name, "FontWgt", 0, ini_file);
1299 #else
1300         td->font_want = string_make(analyze_font(tmp, &wid, &hgt));
1301 #endif
1302
1303
1304         /* Tile size */
1305 #if 1 /* #ifdef JP */
1306         td->tile_wid = GetPrivateProfileInt(sec_name, "TileWid", td->lf.lfWidth, ini_file);
1307         td->tile_hgt = GetPrivateProfileInt(sec_name, "TileHgt", td->lf.lfHeight, ini_file);
1308 #else
1309         td->tile_wid = GetPrivateProfileInt(sec_name, "TileWid", wid, ini_file);
1310         td->tile_hgt = GetPrivateProfileInt(sec_name, "TileHgt", hgt, ini_file);
1311 #endif
1312
1313
1314         /* Window size */
1315         td->cols = GetPrivateProfileInt(sec_name, "NumCols", td->cols, ini_file);
1316         td->rows = GetPrivateProfileInt(sec_name, "NumRows", td->rows, ini_file);
1317         normsize.x = td->cols; normsize.y = td->rows;
1318
1319         /* Window size */
1320         if (i == 0)
1321         {
1322                 win_maximized = GetPrivateProfileInt(sec_name, "Maximized", win_maximized, ini_file);
1323         }
1324
1325         /* Window position */
1326         posx = GetPrivateProfileInt(sec_name, "PositionX", posx, ini_file);
1327         posy = GetPrivateProfileInt(sec_name, "PositionY", posy, ini_file);
1328         td->pos_x = MIN(MAX(0, posx), dispx-128);
1329         td->pos_y = MIN(MAX(0, posy), dispy-128);
1330
1331         /* Window Z position */
1332         if (i > 0)
1333         {
1334                 td->posfix = GetPrivateProfileInt(sec_name, "PositionFix", td->posfix, ini_file);
1335         }
1336 }
1337
1338
1339 /*
1340  * Load the "prefs"
1341  */
1342 static void load_prefs(void)
1343 {
1344         int i;
1345
1346         /* Extract the "arg_graphics" flag */
1347         arg_graphics = GetPrivateProfileInt("Angband", "Graphics", GRAPHICS_NONE, ini_file);
1348
1349         /* Extract the "arg_bigtile" flag */
1350         arg_bigtile = GetPrivateProfileInt("Angband", "Bigtile", FALSE, ini_file);
1351         use_bigtile = arg_bigtile;
1352
1353         /* Extract the "arg_sound" flag */
1354         arg_sound = (GetPrivateProfileInt("Angband", "Sound", 0, ini_file) != 0);
1355
1356         /* Extract the "arg_sound" flag */
1357         arg_music = (GetPrivateProfileInt("Angband", "Music", 0, ini_file) != 0);
1358
1359         /* bg */
1360         use_bg = GetPrivateProfileInt("Angband", "BackGround", 0, ini_file);
1361         GetPrivateProfileString("Angband", "BackGroundBitmap", "bg.bmp", bg_bitmap_file, 1023, ini_file);
1362
1363         /* Load window prefs */
1364         for (i = 0; i < MAX_TERM_DATA; ++i)
1365         {
1366                 load_prefs_aux(i);
1367         }
1368 }
1369
1370 #if defined(USE_SOUND) || defined(USE_MUSIC)
1371
1372 /*
1373  * XXX XXX XXX - Taken from files.c.
1374  *
1375  * Extract "tokens" from a buffer
1376  *
1377  * This function uses "whitespace" as delimiters, and treats any amount of
1378  * whitespace as a single delimiter.  We will never return any empty tokens.
1379  * When given an empty buffer, or a buffer containing only "whitespace", we
1380  * will return no tokens.  We will never extract more than "num" tokens.
1381  *
1382  * By running a token through the "text_to_ascii()" function, you can allow
1383  * that token to include (encoded) whitespace, using "\s" to encode spaces.
1384  *
1385  * We save pointers to the tokens in "tokens", and return the number found.
1386  */
1387 static s16b tokenize_whitespace(char *buf, s16b num, char **tokens)
1388 {
1389         int k = 0;
1390
1391         char *s = buf;
1392
1393
1394         /* Process */
1395         while (k < num)
1396         {
1397                 char *t;
1398
1399                 /* Skip leading whitespace */
1400                 for ( ; *s && iswspace(*s); ++s) /* loop */;
1401
1402                 /* All done */
1403                 if (!*s) break;
1404
1405                 /* Find next whitespace, if any */
1406                 for (t = s; *t && !iswspace(*t); ++t) /* loop */;
1407
1408                 /* Nuke and advance (if necessary) */
1409                 if (*t) *t++ = '\0';
1410
1411                 /* Save the token */
1412                 tokens[k++] = s;
1413
1414                 /* Advance */
1415                 s = t;
1416         }
1417
1418         /* Count */
1419         return (k);
1420 }
1421
1422 #endif /* USE_SOUND || USE_MUSIC */
1423
1424 #ifdef USE_SOUND
1425
1426 static void load_sound_prefs(void)
1427 {
1428         int i, j, num;
1429         char tmp[1024];
1430         char ini_path[1024];
1431         char wav_path[1024];
1432         char *zz[SAMPLE_MAX];
1433
1434         /* Access the sound.cfg */
1435
1436         path_build(ini_path, 1024, ANGBAND_DIR_XTRA_SOUND, "sound.cfg");
1437
1438         for (i = 0; i < SOUND_MAX; i++)
1439         {
1440                 GetPrivateProfileString("Sound", angband_sound_name[i], "", tmp, 1024, ini_path);
1441
1442                 num = tokenize_whitespace(tmp, SAMPLE_MAX, zz);
1443
1444                 for (j = 0; j < num; j++)
1445                 {
1446                         /* Access the sound */
1447                         path_build(wav_path, 1024, ANGBAND_DIR_XTRA_SOUND, zz[j]);
1448
1449                         /* Save the sound filename, if it exists */
1450                         if (check_file(wav_path))
1451                                 sound_file[i][j] = string_make(zz[j]);
1452                 }
1453         }
1454 }
1455
1456 #endif /* USE_SOUND */
1457
1458 #ifdef USE_MUSIC
1459
1460 static void load_music_prefs(void)
1461 {
1462         int i, j, num;
1463         char tmp[1024];
1464         char ini_path[1024];
1465         char wav_path[1024];
1466         char *zz[SAMPLE_MAX];
1467         char key[80];
1468
1469         /* Access the music.cfg */
1470
1471         path_build(ini_path, 1024, ANGBAND_DIR_XTRA_MUSIC, "music.cfg");
1472
1473         GetPrivateProfileString("Device", "type", "", mci_device_type, 256, ini_path);
1474
1475         for (i = 0; i < MUSIC_BASIC_MAX; i++)
1476         {
1477                 GetPrivateProfileString("Basic", angband_music_basic_name[i], "", tmp, 1024, ini_path);
1478
1479                 num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1480
1481                 for (j = 0; j < num; j++)
1482                 {
1483                         /* Access the sound */
1484                         path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1485
1486                         /* Save the sound filename, if it exists */
1487                         if (check_file(wav_path))
1488                                 music_file[i][j] = string_make(zz[j]);
1489                 }
1490         }
1491
1492         for (i = 0; i < max_d_idx; i++)
1493         {
1494                 sprintf(key, "dungeon%03d", i);
1495                 GetPrivateProfileString("Dungeon", key, "", tmp, 1024, ini_path);
1496
1497                 num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1498
1499                 for (j = 0; j < num; j++)
1500                 {
1501                         /* Access the sound */
1502                         path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1503
1504                         /* Save the sound filename, if it exists */
1505                         if (check_file(wav_path))
1506                                 dungeon_music_file[i][j] = string_make(zz[j]);
1507                 }
1508         }
1509
1510         for (i = 0; i < 1000; i++) /*!< @todo ¥¯¥¨¥¹¥ÈºÇÂç¿ô»ØÄê */
1511         {
1512                 sprintf(key, "quest%03d", i);
1513                 GetPrivateProfileString("Quest", key, "", tmp, 1024, ini_path);
1514
1515                 num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1516
1517                 for (j = 0; j < num; j++)
1518                 {
1519                         /* Access the sound */
1520                         path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1521
1522                         /* Save the sound filename, if it exists */
1523                         if (check_file(wav_path))
1524                                 quest_music_file[i][j] = string_make(zz[j]);
1525                 }
1526         }
1527
1528         for (i = 0; i < 1000; i++) /*!< @todo Ä®ºÇÂç¿ô»ØÄê */
1529         {
1530                 sprintf(key, "town%03d", i);
1531                 GetPrivateProfileString("Town", key, "", tmp, 1024, ini_path);
1532
1533                 num = tokenize_whitespace(tmp, SAMPLE_MUSIC_MAX, zz);
1534
1535                 for (j = 0; j < num; j++)
1536                 {
1537                         /* Access the sound */
1538                         path_build(wav_path, 1024, ANGBAND_DIR_XTRA_MUSIC, zz[j]);
1539
1540                         /* Save the sound filename, if it exists */
1541                         if (check_file(wav_path))
1542                                 town_music_file[i][j] = string_make(zz[j]);
1543                 }
1544         }
1545
1546
1547 }
1548
1549 #endif /* USE_MUSIC */
1550
1551 /*
1552  * Create the new global palette based on the bitmap palette
1553  * (if any), and the standard 16 entry palette derived from
1554  * "win_clr[]" which is used for the basic 16 Angband colors.
1555  *
1556  * This function is never called before all windows are ready.
1557  *
1558  * This function returns FALSE if the new palette could not be
1559  * prepared, which should normally be a fatal error.  XXX XXX
1560  *
1561  * Note that only some machines actually use a "palette".
1562  */
1563 static int new_palette(void)
1564 {
1565         HPALETTE hBmPal;
1566         HPALETTE hNewPal;
1567         HDC hdc;
1568         int i, nEntries;
1569         int pLogPalSize;
1570         int lppeSize;
1571         LPLOGPALETTE pLogPal;
1572         LPPALETTEENTRY lppe;
1573
1574         term_data *td;
1575
1576
1577         /* This makes no sense */
1578         if (!paletted) return (TRUE);
1579
1580
1581         /* No bitmap */
1582         lppeSize = 0;
1583         lppe = NULL;
1584         nEntries = 0;
1585
1586 #ifdef USE_GRAPHICS
1587
1588         /* Check the bitmap palette */
1589         hBmPal = infGraph.hPalette;
1590
1591         /* Use the bitmap */
1592         if (hBmPal)
1593         {
1594                 lppeSize = 256 * sizeof(PALETTEENTRY);
1595                 lppe = (LPPALETTEENTRY)ralloc(lppeSize);
1596                 nEntries = GetPaletteEntries(hBmPal, 0, 255, lppe);
1597                 if ((nEntries == 0) || (nEntries > 220))
1598                 {
1599                         /* Warn the user */
1600 #ifdef JP
1601                         plog("²èÌ̤ò16¥Ó¥Ã¥È¤«24¥Ó¥Ã¥È¥«¥é¡¼¥â¡¼¥É¤Ë¤·¤Æ²¼¤µ¤¤¡£");
1602 #else
1603                         plog("Please switch to high- or true-color mode.");
1604 #endif
1605
1606
1607                         /* Cleanup */
1608                         rnfree(lppe, lppeSize);
1609
1610                         /* Fail */
1611                         return (FALSE);
1612                 }
1613         }
1614
1615 #endif /* USE_GRAPHICS */
1616
1617         /* Size of palette */
1618         pLogPalSize = sizeof(LOGPALETTE) + (nEntries + 16) * sizeof(PALETTEENTRY);
1619
1620         /* Allocate palette */
1621         pLogPal = (LPLOGPALETTE)ralloc(pLogPalSize);
1622
1623         /* Version */
1624         pLogPal->palVersion = 0x300;
1625
1626         /* Make room for bitmap and normal data */
1627         pLogPal->palNumEntries = nEntries + 16;
1628
1629         /* Save the bitmap data */
1630         for (i = 0; i < nEntries; i++)
1631         {
1632                 pLogPal->palPalEntry[i] = lppe[i];
1633         }
1634
1635         /* Save the normal data */
1636         for (i = 0; i < 16; i++)
1637         {
1638                 LPPALETTEENTRY p;
1639
1640                 /* Access the entry */
1641                 p = &(pLogPal->palPalEntry[i+nEntries]);
1642
1643                 /* Save the colors */
1644                 p->peRed = GetRValue(win_clr[i]);
1645                 p->peGreen = GetGValue(win_clr[i]);
1646                 p->peBlue = GetBValue(win_clr[i]);
1647
1648                 /* Save the flags */
1649                 p->peFlags = PC_NOCOLLAPSE;
1650         }
1651
1652         /* Free something */
1653         if (lppe) rnfree(lppe, lppeSize);
1654
1655         /* Create a new palette, or fail */
1656         hNewPal = CreatePalette(pLogPal);
1657 #ifdef JP
1658         if (!hNewPal) quit("¥Ñ¥ì¥Ã¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¡ª");
1659 #else
1660         if (!hNewPal) quit("Cannot create palette!");
1661 #endif
1662
1663
1664         /* Free the palette */
1665         rnfree(pLogPal, pLogPalSize);
1666
1667         /* Main window */
1668         td = &data[0];
1669
1670         /* Realize the palette */
1671         hdc = GetDC(td->w);
1672         SelectPalette(hdc, hNewPal, 0);
1673         i = RealizePalette(hdc);
1674         ReleaseDC(td->w, hdc);
1675 #ifdef JP
1676         if (i == 0) quit("¥Ñ¥ì¥Ã¥È¤ò¥·¥¹¥Æ¥à¥¨¥ó¥È¥ê¤Ë¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó¡ª");
1677 #else
1678         if (i == 0) quit("Cannot realize palette!");
1679 #endif
1680
1681
1682         /* Sub-windows */
1683         for (i = 1; i < MAX_TERM_DATA; i++)
1684         {
1685                 td = &data[i];
1686
1687                 hdc = GetDC(td->w);
1688                 SelectPalette(hdc, hNewPal, 0);
1689                 ReleaseDC(td->w, hdc);
1690         }
1691
1692         /* Delete old palette */
1693         if (hPal) DeleteObject(hPal);
1694
1695         /* Save new palette */
1696         hPal = hNewPal;
1697
1698         /* Success */
1699         return (TRUE);
1700 }
1701
1702
1703 #ifdef USE_GRAPHICS
1704 /*
1705  * Initialize graphics
1706  */
1707 static bool init_graphics(void)
1708 {
1709         /* Initialize once */
1710         /* if (can_use_graphics != arg_graphics) */
1711         {
1712                 char buf[1024];
1713                 int wid, hgt, twid, thgt, ox, oy;
1714                 cptr name;
1715
1716                 if (arg_graphics == GRAPHICS_ADAM_BOLT)
1717                 {
1718                         wid = 16;
1719                         hgt = 16;
1720                         twid = 16;
1721                         thgt = 16;
1722                         ox = 0;
1723                         oy = 0;
1724                         name = "16X16.BMP";
1725
1726                         ANGBAND_GRAF = "new";
1727                 }
1728                 else if (arg_graphics == GRAPHICS_HENGBAND)
1729                 {
1730                         /*! @todo redraw 
1731                         wid = 64;
1732                         hgt = 64;
1733                         twid = 32;
1734                         thgt = 32;
1735                         ox = -16;
1736                         oy = -24;
1737                         name = "64X64.BMP";
1738                         */
1739
1740                         wid = 32;
1741                         hgt = 32;
1742                         twid = 32;
1743                         thgt = 32;
1744                         ox = 0;
1745                         oy = 0;
1746                         name = "32X32.BMP";
1747
1748                         ANGBAND_GRAF = "ne2";
1749                 }
1750                 else
1751                 {
1752                         wid = 8;
1753                         hgt = 8;
1754                         twid = 8;
1755                         thgt = 8;
1756                         ox = 0;
1757                         oy = 0;
1758                         name = "8X8.BMP";
1759                         ANGBAND_GRAF = "old";
1760                 }
1761
1762                 /* Access the bitmap file */
1763                 path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, name);
1764
1765                 /* Load the bitmap or quit */
1766                 if (!ReadDIB(data[0].w, buf, &infGraph))
1767                 {
1768 #ifdef JP
1769                         plog_fmt("¥Ó¥Ã¥È¥Þ¥Ã¥× '%s' ¤òÆɤ߹þ¤á¤Þ¤»¤ó¡£", name);
1770 #else
1771                         plog_fmt("Cannot read bitmap file '%s'", name);
1772 #endif
1773
1774                         return (FALSE);
1775                 }
1776
1777                 /* Save the new sizes */
1778                 infGraph.CellWidth = wid;
1779                 infGraph.CellHeight = hgt;
1780                 infGraph.TileWidth = twid;
1781                 infGraph.TileHeight = thgt;
1782                 infGraph.OffsetX = ox;
1783                 infGraph.OffsetY = oy;
1784
1785                 if (arg_graphics == GRAPHICS_ADAM_BOLT)
1786                 {
1787                         /* Access the mask file */
1788                         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, "mask.bmp");
1789
1790                         /* Load the bitmap or quit */
1791                         if (!ReadDIB(data[0].w, buf, &infMask))
1792                         {
1793                                 plog_fmt("Cannot read bitmap file '%s'", buf);
1794                                 return (FALSE);
1795                         }
1796                 }
1797                 if (arg_graphics == GRAPHICS_HENGBAND)
1798                 {
1799                         /* Access the mask file */
1800                         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_GRAF, "mask32.bmp");
1801
1802                         /* Load the bitmap or quit */
1803                         if (!ReadDIB(data[0].w, buf, &infMask))
1804                         {
1805                                 plog_fmt("Cannot read bitmap file '%s'", buf);
1806                                 return (FALSE);
1807                         }
1808                 }
1809
1810                 /* Activate a palette */
1811                 if (!new_palette())
1812                 {
1813                         /* Free bitmap XXX XXX XXX */
1814
1815                         /* Oops */
1816 #ifdef JP
1817                         plog("¥Ñ¥ì¥Ã¥È¤ò¼Â¸½¤Ç¤­¤Þ¤»¤ó¡ª");
1818 #else
1819                         plog("Cannot activate palette!");
1820 #endif
1821
1822                         return (FALSE);
1823                 }
1824
1825                 /* Graphics available */
1826                 can_use_graphics = arg_graphics;
1827         }
1828
1829         /* Result */
1830         return (can_use_graphics);
1831 }
1832 #endif /* USE_GRAPHICS */
1833
1834
1835 #ifdef USE_MUSIC
1836 /*
1837  * Initialize music
1838  */
1839 static bool init_music(void)
1840 {
1841         /* Initialize once */
1842         if (!can_use_music)
1843         {
1844                 /* Load the prefs */
1845                 load_music_prefs();
1846
1847                 /* Sound available */
1848                 can_use_music = TRUE;
1849         }
1850
1851         /* Result */
1852         return (can_use_music);
1853 }
1854
1855 /*
1856  * Hack -- Stop a music
1857  */
1858 static void stop_music(void)
1859 {
1860         mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
1861         mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
1862 }
1863
1864 #endif /* USE_MUSIC */
1865
1866 #ifdef USE_SOUND
1867 /*
1868  * Initialize sound
1869  */
1870 static bool init_sound(void)
1871 {
1872         /* Initialize once */
1873         if (!can_use_sound)
1874         {
1875                 /* Load the prefs */
1876                 load_sound_prefs();
1877
1878                 /* Sound available */
1879                 can_use_sound = TRUE;
1880         }
1881
1882         /* Result */
1883         return (can_use_sound);
1884 }
1885 #endif /* USE_SOUND */
1886
1887
1888 /*
1889  * Resize a window
1890  */
1891 static void term_window_resize(term_data *td)
1892 {
1893         /* Require window */
1894         if (!td->w) return;
1895
1896         /* Resize the window */
1897         SetWindowPos(td->w, 0, 0, 0,
1898                      td->size_wid, td->size_hgt,
1899                      SWP_NOMOVE | SWP_NOZORDER);
1900
1901         /* Redraw later */
1902         InvalidateRect(td->w, NULL, TRUE);
1903 }
1904
1905
1906 /*
1907  * Force the use of a new "font file" for a term_data
1908  *
1909  * This function may be called before the "window" is ready
1910  *
1911  * This function returns zero only if everything succeeds.
1912  *
1913  * Note that the "font name" must be capitalized!!!
1914  */
1915 static errr term_force_font(term_data *td, cptr path)
1916 {
1917         int wid, hgt;
1918
1919 #if 0 /* #ifndef JP */
1920         int i;
1921         char *base;
1922         char buf[1024];
1923 #endif
1924
1925         /* Forget the old font (if needed) */
1926         if (td->font_id) DeleteObject(td->font_id);
1927
1928 #if 1 /* #ifdef JP */
1929         /* Unused */
1930         (void)path;
1931
1932         /* Create the font (using the 'base' of the font file name!) */
1933         td->font_id = CreateFontIndirect(&(td->lf));
1934         wid = td->lf.lfWidth;
1935         hgt = td->lf.lfHeight;
1936         if (!td->font_id) return (1);
1937 #else
1938         /* Forget old font */
1939         if (td->font_file)
1940         {
1941                 bool used = FALSE;
1942
1943                 /* Scan windows */
1944                 for (i = 0; i < MAX_TERM_DATA; i++)
1945                 {
1946                         /* Don't check when closing the application */
1947                         if (!path) break;
1948
1949                         /* Check "screen" */
1950                         if ((td != &data[i]) &&
1951                             (data[i].font_file) &&
1952                             (streq(data[i].font_file, td->font_file)))
1953                         {
1954                                 used = TRUE;
1955                         }
1956                 }
1957
1958                 /* Remove unused font resources */
1959                 if (!used) RemoveFontResource(td->font_file);
1960
1961                 /* Free the old name */
1962                 string_free(td->font_file);
1963
1964                 /* Forget it */
1965                 td->font_file = NULL;
1966         }
1967
1968         /* No path given */
1969         if (!path) return (1);
1970
1971         /* Local copy */
1972         strcpy(buf, path);
1973
1974         /* Analyze font path */
1975         base = analyze_font(buf, &wid, &hgt);
1976
1977         /* Verify suffix */
1978         if (!suffix(base, ".FON")) return (1);
1979
1980         /* Verify file */
1981         if (!check_file(buf)) return (1);
1982
1983         /* Load the new font */
1984         if (!AddFontResource(buf)) return (1);
1985
1986         /* Save new font name */
1987         td->font_file = string_make(base);
1988
1989         /* Remove the "suffix" */
1990         base[strlen(base)-4] = '\0';
1991
1992         /* Create the font (using the 'base' of the font file name!) */
1993         td->font_id = CreateFont(hgt, wid, 0, 0, FW_DONTCARE, 0, 0, 0,
1994                                  ANSI_CHARSET, OUT_DEFAULT_PRECIS,
1995                                  CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
1996                                  FIXED_PITCH | FF_DONTCARE, base);
1997 #endif
1998
1999         /* Hack -- Unknown size */
2000         if (!wid || !hgt)
2001         {
2002                 HDC hdcDesktop;
2003                 HFONT hfOld;
2004                 TEXTMETRIC tm;
2005
2006                 /* all this trouble to get the cell size */
2007                 hdcDesktop = GetDC(HWND_DESKTOP);
2008                 hfOld = SelectObject(hdcDesktop, td->font_id);
2009                 GetTextMetrics(hdcDesktop, &tm);
2010                 SelectObject(hdcDesktop, hfOld);
2011                 ReleaseDC(HWND_DESKTOP, hdcDesktop);
2012
2013                 /* Font size info */
2014                 wid = tm.tmAveCharWidth;
2015                 hgt = tm.tmHeight;
2016         }
2017
2018         /* Save the size info */
2019         td->font_wid = wid;
2020         td->font_hgt = hgt;
2021
2022         /* Success */
2023         return (0);
2024 }
2025
2026
2027
2028 /*
2029  * Allow the user to change the font for this window.
2030  */
2031 static void term_change_font(term_data *td)
2032 {
2033 #if 1 /* #ifdef JP */
2034         CHOOSEFONT cf;
2035
2036         memset(&cf, 0, sizeof(cf));
2037         cf.lStructSize = sizeof(cf);
2038     cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_NOVERTFONTS | CF_INITTOLOGFONTSTRUCT;
2039     cf.lpLogFont = &(td->lf);
2040
2041         if (ChooseFont(&cf))
2042         {
2043                 /* Force the font */
2044                 term_force_font(td, NULL);
2045
2046                 /* Assume not bizarre */
2047                 td->bizarre = TRUE;
2048
2049                 /* Reset the tile info */
2050                 td->tile_wid = td->font_wid;
2051                 td->tile_hgt = td->font_hgt;
2052
2053                 /* Analyze the font */
2054                 term_getsize(td);
2055
2056                 /* Resize the window */
2057                 term_window_resize(td);
2058         }
2059
2060 #else
2061         OPENFILENAME ofn;
2062
2063         char tmp[1024] = "";
2064
2065         /* Extract a default if possible */
2066         if (td->font_file) strcpy(tmp, td->font_file);
2067
2068         /* Ask for a choice */
2069         memset(&ofn, 0, sizeof(ofn));
2070         ofn.lStructSize = sizeof(ofn);
2071         ofn.hwndOwner = data[0].w;
2072         ofn.lpstrFilter = "Angband Font Files (*.fon)\0*.fon\0";
2073         ofn.nFilterIndex = 1;
2074         ofn.lpstrFile = tmp;
2075         ofn.nMaxFile = 128;
2076         ofn.lpstrInitialDir = ANGBAND_DIR_XTRA_FONT;
2077         ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR;
2078         ofn.lpstrDefExt = "fon";
2079
2080         /* Force choice if legal */
2081         if (GetOpenFileName(&ofn))
2082         {
2083                 /* Force the font */
2084                 if (term_force_font(td, tmp))
2085                 {
2086                         /* Access the standard font file */
2087                         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_FONT, "8X13.FON");
2088
2089                         /* Force the use of that font */
2090                         (void)term_force_font(td, tmp);
2091                 }
2092
2093                 /* Assume not bizarre */
2094                 td->bizarre = FALSE;
2095
2096                 /* Reset the tile info */
2097                 td->tile_wid = td->font_wid;
2098                 td->tile_hgt = td->font_hgt;
2099
2100                 /* Analyze the font */
2101                 term_getsize(td);
2102
2103                 /* Resize the window */
2104                 term_window_resize(td);
2105         }
2106 #endif
2107
2108 }
2109
2110 /*
2111  * Allow the user to lock this window.
2112  */
2113 static void term_window_pos(term_data *td, HWND hWnd)
2114 {
2115         SetWindowPos(td->w, hWnd, 0, 0, 0, 0,
2116                         SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
2117 }
2118
2119 static void windows_map(void);
2120
2121 /*
2122  * Hack -- redraw a term_data
2123  */
2124 static void term_data_redraw(term_data *td)
2125 {
2126         if (td->map_active)
2127         {
2128                 /* Redraw the map */
2129                 windows_map();
2130         }
2131         else
2132         {
2133                 /* Activate the term */
2134                 Term_activate(&td->t);
2135
2136                 /* Redraw the contents */
2137                 Term_redraw();
2138
2139                 /* Restore the term */
2140                 Term_activate(term_screen);
2141         }
2142 }
2143
2144
2145 void Term_inversed_area(HWND hWnd, int x, int y, int w, int h)
2146 {
2147         HDC hdc;
2148         HPEN oldPen;
2149         HBRUSH myBrush, oldBrush;
2150
2151         term_data *td = (term_data *)GetWindowLong(hWnd, 0);
2152         int tx = td->size_ow1 + x * td->tile_wid;
2153         int ty = td->size_oh1 + y * td->tile_hgt;
2154         int tw = w * td->tile_wid - 1;
2155         int th = h * td->tile_hgt - 1;
2156
2157         hdc = GetDC(hWnd);
2158         myBrush = CreateSolidBrush(RGB(255, 255, 255));
2159         oldBrush = SelectObject(hdc, myBrush);
2160         oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2161
2162         PatBlt(hdc, tx, ty, tw, th, PATINVERT);
2163
2164         SelectObject(hdc, oldBrush);
2165         SelectObject(hdc, oldPen);
2166 }
2167
2168
2169
2170 /*** Function hooks needed by "Term" ***/
2171
2172
2173 #if 0
2174
2175 /*
2176  * Initialize a new Term
2177  */
2178 static void Term_init_win(term *t)
2179 {
2180         /* XXX Unused */
2181 }
2182
2183
2184 /*
2185  * Nuke an old Term
2186  */
2187 static void Term_nuke_win(term *t)
2188 {
2189         /* XXX Unused */
2190 }
2191
2192 #endif
2193
2194
2195 /*
2196  * Interact with the User
2197  */
2198 static errr Term_user_win(int n)
2199 {
2200         /* Unused */
2201         (void)n;
2202
2203         /* Success */
2204         return (0);
2205 }
2206
2207
2208 /*
2209  * React to global changes
2210  */
2211 static errr Term_xtra_win_react(void)
2212 {
2213         int i;
2214
2215
2216         /* Simple color */
2217         if (colors16)
2218         {
2219                 /* Save the default colors */
2220                 for (i = 0; i < 256; i++)
2221                 {
2222                         /* Simply accept the desired colors */
2223                         win_pal[i] = angband_color_table[i][0];
2224                 }
2225         }
2226
2227         /* Complex color */
2228         else
2229         {
2230                 COLORREF code;
2231
2232                 byte rv, gv, bv;
2233
2234                 bool change = FALSE;
2235
2236                 /* Save the default colors */
2237                 for (i = 0; i < 256; i++)
2238                 {
2239                         /* Extract desired values */
2240                         rv = angband_color_table[i][1];
2241                         gv = angband_color_table[i][2];
2242                         bv = angband_color_table[i][3];
2243
2244                         /* Extract a full color code */
2245                         code = PALETTERGB(rv, gv, bv);
2246
2247                         /* Activate changes */
2248                         if (win_clr[i] != code)
2249                         {
2250                                 /* Note the change */
2251                                 change = TRUE;
2252
2253                                 /* Apply the desired color */
2254                                 win_clr[i] = code;
2255                         }
2256                 }
2257
2258                 /* Activate the palette if needed */
2259                 if (change) (void)new_palette();
2260         }
2261
2262
2263 #ifdef USE_SOUND
2264
2265         /* Handle "arg_sound" */
2266         if (use_sound != arg_sound)
2267         {
2268                 /* Initialize (if needed) */
2269                 if (arg_sound && !init_sound())
2270                 {
2271                         /* Warning */
2272 #ifdef JP
2273                         plog("¥µ¥¦¥ó¥É¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó¡ª");
2274 #else
2275                         plog("Cannot initialize sound!");
2276 #endif
2277
2278
2279                         /* Cannot enable */
2280                         arg_sound = FALSE;
2281                 }
2282
2283                 /* Change setting */
2284                 use_sound = arg_sound;
2285         }
2286
2287 #endif
2288
2289 #ifdef USE_MUSIC
2290
2291         /* Handle "arg_sound" */
2292         if (use_music != arg_music)
2293         {
2294                 /* Initialize (if needed) */
2295                 if (arg_music && !init_music())
2296                 {
2297                         /* Warning */
2298 #ifdef JP
2299                         plog("BGM¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó¡ª");
2300 #else
2301                         plog("Cannot initialize BGM!");
2302 #endif
2303                         /* Cannot enable */
2304                         arg_music = FALSE;
2305                 }
2306
2307                 /* Change setting */
2308                 use_music = arg_music;
2309
2310                 if(!arg_music) stop_music();
2311                 else select_floor_music();
2312
2313         }
2314
2315 #endif
2316
2317
2318 #ifdef USE_GRAPHICS
2319
2320         /* Handle "arg_graphics" */
2321         if (use_graphics != arg_graphics)
2322         {
2323                 /* Initialize (if needed) */
2324                 if (arg_graphics && !init_graphics())
2325                 {
2326                         /* Warning */
2327 #ifdef JP
2328                         plog("¥°¥é¥Õ¥£¥Ã¥¯¥¹¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó!");
2329 #else
2330                         plog("Cannot initialize graphics!");
2331 #endif
2332
2333
2334                         /* Cannot enable */
2335                         arg_graphics = GRAPHICS_NONE;
2336                 }
2337
2338                 /* Change setting */
2339                 use_graphics = arg_graphics;
2340
2341                 /* Reset visuals */
2342 #ifdef ANGBAND_2_8_1
2343                 reset_visuals();
2344 #else /* ANGBAND_2_8_1 */
2345                 reset_visuals(TRUE);
2346 #endif /* ANGBAND_2_8_1 */
2347         }
2348
2349 #endif /* USE_GRAPHICS */
2350
2351
2352         /* Clean up windows */
2353         for (i = 0; i < MAX_TERM_DATA; i++)
2354         {
2355                 term *old = Term;
2356
2357                 term_data *td = &data[i];
2358
2359                 /* Update resized windows */
2360                 if ((td->cols != (uint)td->t.wid) || (td->rows != (uint)td->t.hgt))
2361                 {
2362                         /* Activate */
2363                         Term_activate(&td->t);
2364
2365                         /* Hack -- Resize the term */
2366                         Term_resize(td->cols, td->rows);
2367
2368                         /* Redraw the contents */
2369                         Term_redraw();
2370
2371                         /* Restore */
2372                         Term_activate(old);
2373                 }
2374         }
2375
2376
2377         /* Success */
2378         return (0);
2379 }
2380
2381
2382 /*
2383  * Process at least one event
2384  */
2385 static errr Term_xtra_win_event(int v)
2386 {
2387         MSG msg;
2388
2389         /* Wait for an event */
2390         if (v)
2391         {
2392                 /* Block */
2393                 if (GetMessage(&msg, NULL, 0, 0))
2394                 {
2395                         TranslateMessage(&msg);
2396                         DispatchMessage(&msg);
2397                 }
2398         }
2399
2400         /* Check for an event */
2401         else
2402         {
2403                 /* Check */
2404                 if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2405                 {
2406                         TranslateMessage(&msg);
2407                         DispatchMessage(&msg);
2408                 }
2409         }
2410
2411         /* Success */
2412         return 0;
2413 }
2414
2415
2416 /*
2417  * Process all pending events
2418  */
2419 static errr Term_xtra_win_flush(void)
2420 {
2421         MSG msg;
2422
2423         /* Process all pending events */
2424         while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2425         {
2426                 TranslateMessage(&msg);
2427                 DispatchMessage(&msg);
2428         }
2429
2430         /* Success */
2431         return (0);
2432 }
2433
2434
2435 /*
2436  * Hack -- clear the screen
2437  *
2438  * Make this more efficient XXX XXX XXX
2439  */
2440 static errr Term_xtra_win_clear(void)
2441 {
2442         term_data *td = (term_data*)(Term->data);
2443
2444         HDC hdc;
2445         RECT rc;
2446
2447         /* Rectangle to erase */
2448         rc.left = td->size_ow1;
2449         rc.right = rc.left + td->cols * td->tile_wid;
2450         rc.top = td->size_oh1;
2451         rc.bottom = rc.top + td->rows * td->tile_hgt;
2452
2453         /* Erase it */
2454         hdc = GetDC(td->w);
2455         SetBkColor(hdc, RGB(0, 0, 0));
2456         SelectObject(hdc, td->font_id);
2457         ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
2458
2459         /* bg */
2460         if (use_bg)
2461         {
2462                 rc.left = 0; rc.top = 0;
2463                 DrawBG(hdc, &rc);
2464         }
2465         ReleaseDC(td->w, hdc);
2466
2467         /* Success */
2468         return 0;
2469 }
2470
2471
2472 /*
2473  * Hack -- make a noise
2474  */
2475 static errr Term_xtra_win_noise(void)
2476 {
2477         MessageBeep(MB_ICONASTERISK);
2478         return (0);
2479 }
2480
2481
2482 /*
2483  * Hack -- make a sound
2484  */
2485 static errr Term_xtra_win_sound(int v)
2486 {
2487 #ifdef USE_SOUND
2488         int i;
2489         char buf[1024];
2490 #endif /* USE_SOUND */
2491
2492         /* Sound disabled */
2493         if (!use_sound) return (1);
2494
2495         /* Illegal sound */
2496         if ((v < 0) || (v >= SOUND_MAX)) return (1);
2497
2498 #ifdef USE_SOUND
2499
2500         /* Count the samples */
2501         for (i = 0; i < SAMPLE_MAX; i++)
2502         {
2503                 if (!sound_file[v][i])
2504                         break;
2505         }
2506
2507         /* No sample */
2508         if (i == 0) return (1);
2509
2510         /* Build the path */
2511         path_build(buf, 1024, ANGBAND_DIR_XTRA_SOUND, sound_file[v][Rand_external(i)]);
2512
2513 #ifdef WIN32
2514
2515         /* Play the sound, catch errors */
2516         return (PlaySound(buf, 0, SND_FILENAME | SND_ASYNC));
2517
2518 #else /* WIN32 */
2519
2520         /* Play the sound, catch errors */
2521         return (sndPlaySound(buf, SND_ASYNC));
2522
2523 #endif /* WIN32 */
2524
2525 #else /* USE_SOUND */
2526
2527         /* Oops */
2528         return (1);
2529
2530 #endif /* USE_SOUND */
2531 }
2532
2533 /*
2534  * Hack -- play a music
2535  */
2536 static errr Term_xtra_win_music(int n, int v)
2537 {
2538 #ifdef USE_MUSIC
2539         int i;
2540         char buf[1024];
2541 #endif /* USE_MUSIC */
2542
2543         /* Sound disabled */
2544         if(!use_music) return (1);
2545
2546         /* Illegal sound */
2547         if(n == TERM_XTRA_MUSIC_BASIC && ((v < 0) || (v >= MUSIC_BASIC_MAX))) return (1);
2548         else if(v < 0 || v >= 1000) return(1); /*!< TODO */
2549
2550 #ifdef USE_MUSIC
2551
2552         switch(n)
2553         {
2554         case TERM_XTRA_MUSIC_BASIC:
2555                 for (i = 0; i < SAMPLE_MAX; i++) if(!music_file[v][i]) break;
2556                 break;
2557         case TERM_XTRA_MUSIC_DUNGEON:
2558                 for (i = 0; i < SAMPLE_MAX; i++) if(!dungeon_music_file[v][i]) break;
2559                 break;
2560         case TERM_XTRA_MUSIC_QUEST:
2561                 for (i = 0; i < SAMPLE_MAX; i++) if(!quest_music_file[v][i]) break;
2562                 break;
2563         case TERM_XTRA_MUSIC_TOWN:
2564                 for (i = 0; i < SAMPLE_MAX; i++) if(!town_music_file[v][i]) break;
2565                 break;
2566         }
2567
2568         /* No sample */
2569         if (i == 0)
2570         {
2571                 mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
2572                 mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
2573                 return (1);
2574         }
2575
2576         switch(n)
2577         {
2578         case TERM_XTRA_MUSIC_BASIC:
2579                 for (i = 0; i < SAMPLE_MAX; i++) if(!music_file[v][i]) break;
2580                 break;
2581         case TERM_XTRA_MUSIC_DUNGEON:
2582                 for (i = 0; i < SAMPLE_MAX; i++) if(!dungeon_music_file[v][i]) break;
2583                 break;
2584         case TERM_XTRA_MUSIC_QUEST:
2585                 for (i = 0; i < SAMPLE_MAX; i++) if(!quest_music_file[v][i]) break;
2586                 break;
2587         case TERM_XTRA_MUSIC_TOWN:
2588                 for (i = 0; i < SAMPLE_MAX; i++) if(!town_music_file[v][i]) break;
2589                 break;
2590         }
2591
2592         /* No sample */
2593         if (i == 0)
2594         {
2595                 mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
2596                 mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
2597                 return (1);
2598         }
2599
2600         switch(n)
2601         {
2602         case TERM_XTRA_MUSIC_BASIC:
2603                 path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, music_file[v][Rand_external(i)]);
2604                 break;
2605         case TERM_XTRA_MUSIC_DUNGEON:
2606                 path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, dungeon_music_file[v][Rand_external(i)]);
2607                 break;
2608         case TERM_XTRA_MUSIC_QUEST:
2609                 path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, quest_music_file[v][Rand_external(i)]);
2610                 break;
2611         case TERM_XTRA_MUSIC_TOWN:
2612                 path_build(buf, 1024, ANGBAND_DIR_XTRA_MUSIC, town_music_file[v][Rand_external(i)]);
2613                 break;
2614         }
2615
2616
2617 #endif /* USE_MUSIC */
2618
2619 #ifdef WIN32
2620
2621         mop.lpstrDeviceType = mci_device_type;  
2622         mop.lpstrElementName = buf;
2623         mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
2624         mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
2625         mciSendCommand(mop.wDeviceID, MCI_OPEN, MCI_OPEN_TYPE | MCI_OPEN_ELEMENT, (DWORD)&mop);
2626         mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
2627         mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
2628         return (0);
2629
2630 #else /* USE_MUSIC */
2631
2632         /* Oops */
2633         return (1);
2634
2635 #endif /* USE_MUSIC */
2636 }
2637
2638
2639 /*
2640  * Delay for "x" milliseconds
2641  */
2642 static int Term_xtra_win_delay(int v)
2643 {
2644
2645 #ifdef WIN32
2646
2647         /* Sleep */
2648         Sleep(v);
2649
2650 #else /* WIN32 */
2651
2652         DWORD t;
2653         MSG msg;
2654
2655         /* Final count */
2656         t = GetTickCount() + v;
2657
2658         /* Wait for it */
2659         while (GetTickCount() < t)
2660         {
2661                 /* Handle messages */
2662                 if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2663                 {
2664                         TranslateMessage(&msg);
2665                         DispatchMessage(&msg);
2666                 }
2667         }
2668
2669 #endif /* WIN32 */
2670
2671         /* Success */
2672         return (0);
2673 }
2674
2675
2676 /*
2677  * Do a "special thing"
2678  */
2679 static errr Term_xtra_win(int n, int v)
2680 {
2681         /* Handle a subset of the legal requests */
2682         switch (n)
2683         {
2684                 /* Make a bell sound */
2685                 case TERM_XTRA_NOISE:
2686                 {
2687                         return (Term_xtra_win_noise());
2688                 }
2689
2690                 /* Play a music */
2691                 case TERM_XTRA_MUSIC_BASIC:
2692                 case TERM_XTRA_MUSIC_DUNGEON:
2693                 case TERM_XTRA_MUSIC_QUEST:
2694                 case TERM_XTRA_MUSIC_TOWN:
2695                 {
2696                         return (Term_xtra_win_music(n, v));
2697                 }
2698
2699                 /* Make a special sound */
2700                 case TERM_XTRA_SOUND:
2701                 {
2702                         return (Term_xtra_win_sound(v));
2703                 }
2704
2705                 /* Process random events */
2706                 case TERM_XTRA_BORED:
2707                 {
2708                         return (Term_xtra_win_event(0));
2709                 }
2710
2711                 /* Process an event */
2712                 case TERM_XTRA_EVENT:
2713                 {
2714                         return (Term_xtra_win_event(v));
2715                 }
2716
2717                 /* Flush all events */
2718                 case TERM_XTRA_FLUSH:
2719                 {
2720                         return (Term_xtra_win_flush());
2721                 }
2722
2723                 /* Clear the screen */
2724                 case TERM_XTRA_CLEAR:
2725                 {
2726                         return (Term_xtra_win_clear());
2727                 }
2728
2729                 /* React to global changes */
2730                 case TERM_XTRA_REACT:
2731                 {
2732                         return (Term_xtra_win_react());
2733                 }
2734
2735                 /* Delay for some milliseconds */
2736                 case TERM_XTRA_DELAY:
2737                 {
2738                         return (Term_xtra_win_delay(v));
2739                 }
2740         }
2741
2742         /* Oops */
2743         return 1;
2744 }
2745
2746
2747
2748 /*
2749  * Low level graphics (Assumes valid input).
2750  *
2751  * Draw a "cursor" at (x,y), using a "yellow box".
2752  */
2753 static errr Term_curs_win(int x, int y)
2754 {
2755         term_data *td = (term_data*)(Term->data);
2756
2757         RECT rc;
2758         HDC hdc;
2759
2760         int tile_wid, tile_hgt;
2761
2762         if (td->map_active)
2763         {
2764                 tile_wid = td->map_tile_wid;
2765                 tile_hgt = td->map_tile_hgt;
2766         }
2767         else
2768         {
2769                 tile_wid = td->tile_wid;
2770                 tile_hgt = td->tile_hgt;
2771         }
2772
2773         /* Frame the grid */
2774         rc.left = x * tile_wid + td->size_ow1;
2775         rc.right = rc.left + tile_wid;
2776         rc.top = y * tile_hgt + td->size_oh1;
2777         rc.bottom = rc.top + tile_hgt;
2778
2779         /* Cursor is done as a yellow "box" */
2780         hdc = GetDC(td->w);
2781         FrameRect(hdc, &rc, hbrYellow);
2782         ReleaseDC(td->w, hdc);
2783
2784         /* Success */
2785         return 0;
2786 }
2787
2788
2789 /*
2790  * Low level graphics (Assumes valid input).
2791  *
2792  * Draw a "big cursor" at (x,y), using a "yellow box".
2793  */
2794 static errr Term_bigcurs_win(int x, int y)
2795 {
2796         term_data *td = (term_data*)(Term->data);
2797
2798         RECT rc;
2799         HDC hdc;
2800
2801         int tile_wid, tile_hgt;
2802
2803         if (td->map_active)
2804         {
2805                 /* Normal cursor in map window */
2806                 Term_curs_win(x, y);
2807                 return 0;
2808         }
2809         else
2810         {
2811                 tile_wid = td->tile_wid;
2812                 tile_hgt = td->tile_hgt;
2813         }
2814
2815         /* Frame the grid */
2816         rc.left = x * tile_wid + td->size_ow1;
2817         rc.right = rc.left + 2 * tile_wid;
2818         rc.top = y * tile_hgt + td->size_oh1;
2819         rc.bottom = rc.top + tile_hgt;
2820
2821         /* Cursor is done as a yellow "box" */
2822         hdc = GetDC(td->w);
2823         FrameRect(hdc, &rc, hbrYellow);
2824         ReleaseDC(td->w, hdc);
2825
2826         /* Success */
2827         return 0;
2828 }
2829
2830
2831 /*
2832  * Low level graphics (Assumes valid input).
2833  *
2834  * Erase a "block" of "n" characters starting at (x,y).
2835  */
2836 static errr Term_wipe_win(int x, int y, int n)
2837 {
2838         term_data *td = (term_data*)(Term->data);
2839
2840         HDC hdc;
2841         RECT rc;
2842
2843         /* Rectangle to erase in client coords */
2844         rc.left = x * td->tile_wid + td->size_ow1;
2845         rc.right = rc.left + n * td->tile_wid;
2846         rc.top = y * td->tile_hgt + td->size_oh1;
2847         rc.bottom = rc.top + td->tile_hgt;
2848
2849         hdc = GetDC(td->w);
2850         SetBkColor(hdc, RGB(0, 0, 0));
2851         SelectObject(hdc, td->font_id);
2852         /* bg */
2853         if (use_bg)
2854                 DrawBG(hdc, &rc);
2855         else
2856                 ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
2857         ReleaseDC(td->w, hdc);
2858
2859         /* Success */
2860         return 0;
2861 }
2862
2863
2864 /*
2865  * Low level graphics.  Assumes valid input.
2866  *
2867  * Draw several ("n") chars, with an attr, at a given location.
2868  *
2869  * All "graphic" data is handled by "Term_pict_win()", below.
2870  *
2871  * One would think there is a more efficient method for telling a window
2872  * what color it should be using to draw with, but perhaps simply changing
2873  * it every time is not too inefficient.  XXX XXX XXX
2874  */
2875 static errr Term_text_win(int x, int y, int n, byte a, const char *s)
2876 {
2877         term_data *td = (term_data*)(Term->data);
2878         RECT rc;
2879         HDC hdc;
2880
2881 #if 1 /* #ifdef JP */
2882         static HBITMAP  WALL;
2883         static HBRUSH   myBrush, oldBrush;
2884         static HPEN     oldPen;
2885         static bool init_done = FALSE;
2886
2887         if (!init_done){
2888                 WALL = LoadBitmap(hInstance, AppName);
2889                 myBrush = CreatePatternBrush(WALL);
2890                 init_done = TRUE;
2891         }
2892 #endif
2893
2894         /* Total rectangle */
2895         rc.left = x * td->tile_wid + td->size_ow1;
2896         rc.right = rc.left + n * td->tile_wid;
2897         rc.top = y * td->tile_hgt + td->size_oh1;
2898         rc.bottom = rc.top + td->tile_hgt;
2899
2900         /* Acquire DC */
2901         hdc = GetDC(td->w);
2902
2903         /* Background color */
2904         SetBkColor(hdc, RGB(0, 0, 0));
2905
2906         /* Foreground color */
2907         if (colors16)
2908         {
2909                 SetTextColor(hdc, PALETTEINDEX(win_pal[a]));
2910         }
2911         else if (paletted)
2912         {
2913                 SetTextColor(hdc, win_clr[a&0x0F]);
2914         }
2915         else
2916         {
2917                 SetTextColor(hdc, win_clr[a]);
2918         }
2919
2920         /* Use the font */
2921         SelectObject(hdc, td->font_id);
2922         
2923         /* bg */
2924         if (use_bg) SetBkMode(hdc, TRANSPARENT);
2925
2926         /* Bizarre size */
2927         if (td->bizarre ||
2928             (td->tile_hgt != td->font_hgt) ||
2929             (td->tile_wid != td->font_wid))
2930         {
2931                 int i;
2932
2933                 /* Erase complete rectangle */
2934                 ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
2935                 
2936                 /* bg */
2937                 if (use_bg) DrawBG(hdc, &rc);
2938
2939                 /* New rectangle */
2940                 rc.left += ((td->tile_wid - td->font_wid) / 2);
2941                 rc.right = rc.left + td->font_wid;
2942                 rc.top += ((td->tile_hgt - td->font_hgt) / 2);
2943                 rc.bottom = rc.top + td->font_hgt;
2944
2945                 /* Dump each character */
2946                 for (i = 0; i < n; i++)
2947                 {
2948 #ifdef JP
2949                         if (use_bigtile && *(s+i)=="¢£"[0] && *(s+i+1)=="¢£"[1])
2950                         {
2951                                 rc.right += td->font_wid;
2952
2953                                 oldBrush = SelectObject(hdc, myBrush);
2954                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2955
2956                                 /* Dump the wall */
2957                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
2958
2959                                 SelectObject(hdc, oldBrush);
2960                                 SelectObject(hdc, oldPen);
2961                                 rc.right -= td->font_wid;
2962
2963                                 /* Advance */
2964                                 i++;
2965                                 rc.left += 2 * td->tile_wid;
2966                                 rc.right += 2 * td->tile_wid;
2967                         }
2968                         else if ( iskanji(*(s+i)) )  /*  £²¥Ð¥¤¥Èʸ»ú  */
2969                         {
2970                                 rc.right += td->font_wid;
2971                                 /* Dump the text */
2972                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc,
2973                                        s+i, 2, NULL);
2974                                 rc.right -= td->font_wid;
2975
2976                                 /* Advance */
2977                                 i++;
2978                                 rc.left += 2 * td->tile_wid;
2979                                 rc.right += 2 * td->tile_wid;
2980                         } else if (*(s+i)==127){
2981                                 oldBrush = SelectObject(hdc, myBrush);
2982                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2983
2984                                 /* Dump the wall */
2985                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
2986
2987                                 SelectObject(hdc, oldBrush);
2988                                 SelectObject(hdc, oldPen);
2989
2990                                 /* Advance */
2991                                 rc.left += td->tile_wid;
2992                                 rc.right += td->tile_wid;
2993                         } else {
2994                                 /* Dump the text */
2995                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc, s+i, 1, NULL);
2996
2997                                 /* Advance */
2998                                 rc.left += td->tile_wid;
2999                                 rc.right += td->tile_wid;
3000                         }
3001 #else
3002 #if 1
3003                         if (*(s+i)==127){
3004                                 oldBrush = SelectObject(hdc, myBrush);
3005                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
3006
3007                                 /* Dump the wall */
3008                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
3009
3010                                 SelectObject(hdc, oldBrush);
3011                                 SelectObject(hdc, oldPen);
3012
3013                                 /* Advance */
3014                                 rc.left += td->tile_wid;
3015                                 rc.right += td->tile_wid;
3016                         } else {
3017                                 /* Dump the text */
3018                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc,
3019                                        s+i, 1, NULL);
3020
3021                                 /* Advance */
3022                                 rc.left += td->tile_wid;
3023                                 rc.right += td->tile_wid;
3024                         }
3025 #else
3026                         /* Dump the text */
3027                         ExtTextOut(hdc, rc.left, rc.top, 0, &rc,
3028                                    s+i, 1, NULL);
3029
3030                         /* Advance */
3031                         rc.left += td->tile_wid;
3032                         rc.right += td->tile_wid;
3033 #endif
3034 #endif
3035
3036                 }
3037         }
3038
3039         /* Normal size */
3040         else
3041         {
3042                 /* Dump the text */
3043                 ExtTextOut(hdc, rc.left, rc.top, ETO_OPAQUE | ETO_CLIPPED, &rc,
3044                            s, n, NULL);
3045         }
3046
3047         /* Release DC */
3048         ReleaseDC(td->w, hdc);
3049
3050         /* Success */
3051         return 0;
3052 }
3053
3054
3055 /*
3056  * Low level graphics.  Assumes valid input.
3057  *
3058  * Draw an array of "special" attr/char pairs at the given location.
3059  *
3060  * We use the "Term_pict_win()" function for "graphic" data, which are
3061  * encoded by setting the "high-bits" of both the "attr" and the "char"
3062  * data.  We use the "attr" to represent the "row" of the main bitmap,
3063  * and the "char" to represent the "col" of the main bitmap.  The use
3064  * of this function is induced by the "higher_pict" flag.
3065  *
3066  * If "graphics" is not available, we simply "wipe" the given grids.
3067  */
3068 static errr Term_pict_win(int x, int y, int n, const byte *ap, const char *cp, const byte *tap, const char *tcp)
3069 {
3070         term_data *td = (term_data*)(Term->data);
3071
3072 #ifdef USE_GRAPHICS
3073
3074         int i;
3075         int x1, y1, w1, h1, tw1, th1;
3076         int x2, y2, w2, h2, tw2;
3077         int x3, y3;
3078
3079         HDC hdcMask;
3080
3081         HDC hdc;
3082         HDC hdcSrc;
3083         HBITMAP hbmSrcOld;
3084
3085         /* Paranoia */
3086         if (!use_graphics)
3087         {
3088                 /* Erase the grids */
3089                 return (Term_wipe_win(x, y, n));
3090         }
3091
3092         /* Size of bitmap cell */
3093         w1 = infGraph.CellWidth;
3094         h1 = infGraph.CellHeight;
3095         tw1 = infGraph.TileWidth;
3096         th1 = infGraph.TileHeight;
3097
3098         /* Size of window cell */
3099         if (td->map_active)
3100         {
3101                 w2 = td->map_tile_wid;
3102                 h2 = td->map_tile_hgt;
3103         }
3104         else
3105         {
3106                 w2 = td->tile_wid;
3107                 h2 = td->tile_hgt;
3108                 tw2 = w2;
3109
3110                 /* big tile mode */
3111                 if (use_bigtile) tw2 *= 2;
3112         }
3113
3114         /* Location of window cell */
3115         x2 = x * w2 + td->size_ow1 + infGraph.OffsetX;
3116         y2 = y * h2 + td->size_oh1 + infGraph.OffsetY;
3117
3118         /* Info */
3119         hdc = GetDC(td->w);
3120
3121         /* More info */
3122         hdcSrc = CreateCompatibleDC(hdc);
3123         hbmSrcOld = SelectObject(hdcSrc, infGraph.hBitmap);
3124
3125         if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
3126         {
3127                 hdcMask = CreateCompatibleDC(hdc);
3128                 SelectObject(hdcMask, infMask.hBitmap);
3129         }
3130
3131         /* Draw attr/char pairs */
3132         for (i = 0; i < n; i++, x2 += w2)
3133         {
3134                 byte a = ap[i];
3135                 char c = cp[i];
3136
3137
3138                 /* Extract picture */
3139                 int row = (a & 0x7F);
3140                 int col = (c & 0x7F);
3141
3142                 /* Location of bitmap cell */
3143                 x1 = col * w1;
3144                 y1 = row * h1;
3145
3146                 if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
3147                 {
3148                         x3 = (tcp[i] & 0x7F) * w1;
3149                         y3 = (tap[i] & 0x7F) * h1;
3150                         tw2 = tw2 * w1 / tw1;
3151                         h2 = h2 * h1 / th1;
3152
3153                         /* Perfect size */
3154                         if ((tw1 == tw2) && (th1 == h2))
3155                         {
3156                                 /* Copy the terrain picture from the bitmap to the window */
3157                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, SRCCOPY);
3158
3159                                 /* Mask out the tile */
3160                                 BitBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, SRCAND);
3161
3162                                 /* Draw the tile */
3163                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCPAINT);
3164                         }
3165
3166                         /* Need to stretch */
3167                         else
3168                         {
3169                                 /* Set the correct mode for stretching the tiles */
3170                                 SetStretchBltMode(hdc, COLORONCOLOR);
3171
3172                                 /* Copy the terrain picture from the bitmap to the window */
3173                                 StretchBlt(hdc, x2, y2, tw2, h2, hdcMask, x3, y3, w1, h1, SRCAND);
3174
3175                                 StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, w1, h1, SRCPAINT);
3176
3177                                 /* Only draw if terrain and overlay are different */
3178                                 if ((x1 != x3) || (y1 != y3))
3179                                 {
3180                                         /* Mask out the tile */
3181                                         StretchBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, w1, h1, SRCAND);
3182
3183                                         /* Draw the tile */
3184                                         StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCPAINT);
3185                                 }
3186                         }
3187                 }
3188                 else
3189                 {
3190                         /* Perfect size */
3191                         if ((w1 == tw2) && (h1 == h2))
3192                         {
3193                                 /* Copy the picture from the bitmap to the window */
3194                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCCOPY);
3195                         }
3196
3197                         /* Need to stretch */
3198                         else
3199                         {
3200                                 /* Set the correct mode for stretching the tiles */
3201                                 SetStretchBltMode(hdc, COLORONCOLOR);
3202
3203                                 /* Copy the picture from the bitmap to the window */
3204                                 StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCCOPY);
3205                         }
3206                 }
3207         }
3208
3209         /* Release */
3210         SelectObject(hdcSrc, hbmSrcOld);
3211         DeleteDC(hdcSrc);
3212
3213         if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
3214         {
3215                 /* Release */
3216                 SelectObject(hdcMask, hbmSrcOld);
3217                 DeleteDC(hdcMask);
3218         }
3219
3220         /* Release */
3221         ReleaseDC(td->w, hdc);
3222
3223 #else /* USE_GRAPHICS */
3224
3225         /* Just erase this grid */
3226         return (Term_wipe_win(x, y, n));
3227
3228 #endif /* USE_GRAPHICS */
3229
3230         /* Success */
3231         return 0;
3232 }
3233
3234
3235 static void windows_map(void)
3236 {
3237         term_data *td = &data[0];
3238         byte a, c;
3239         int x, min_x, max_x;
3240         int y, min_y, max_y;
3241
3242         byte ta, tc;
3243
3244         /* Only in graphics mode */
3245         if (!use_graphics) return;
3246
3247         /* Clear screen */
3248         Term_xtra_win_clear();
3249
3250         td->map_tile_wid = (td->tile_wid * td->cols) / MAX_WID;
3251         td->map_tile_hgt = (td->tile_hgt * td->rows) / MAX_HGT;
3252         td->map_active = TRUE;
3253
3254         {
3255                 min_x = 0;
3256                 min_y = 0;
3257                 max_x = cur_wid;
3258                 max_y = cur_hgt;
3259         }
3260
3261         /* Draw the map */
3262         for (x = min_x; x < max_x; x++)
3263         {
3264                 for (y = min_y; y < max_y; y++)
3265                 {
3266                         map_info(y, x, &a, (char*)&c, &ta, (char*)&tc);
3267
3268                         /* Ignore non-graphics */
3269                         if ((a & 0x80) && (c & 0x80))
3270                         {
3271                                 Term_pict_win(x - min_x, y - min_y, 1, &a, &c, &ta, &tc);
3272                         }
3273                 }
3274         }
3275
3276         /* Hilite the player */
3277         Term_curs_win(px - min_x, py - min_y);
3278
3279         /* Wait for a keypress, flush key buffer */
3280         Term_inkey(&c, TRUE, TRUE);
3281         Term_flush();
3282
3283         /* Switch off the map display */
3284         td->map_active = FALSE;
3285
3286         /* Restore screen */
3287         Term_xtra_win_clear();
3288         Term_redraw();
3289 }
3290
3291
3292 /*** Other routines ***/
3293
3294
3295 /*
3296  * Create and initialize a "term_data" given a title
3297  */
3298 static void term_data_link(term_data *td)
3299 {
3300         term *t = &td->t;
3301
3302         /* Initialize the term */
3303         term_init(t, td->cols, td->rows, td->keys);
3304
3305         /* Use a "software" cursor */
3306         t->soft_cursor = TRUE;
3307
3308         /* Use "Term_pict" for "graphic" data */
3309         t->higher_pict = TRUE;
3310
3311         /* Erase with "white space" */
3312         t->attr_blank = TERM_WHITE;
3313         t->char_blank = ' ';
3314
3315 #if 0
3316         /* Prepare the init/nuke hooks */
3317         t->init_hook = Term_init_win;
3318         t->nuke_hook = Term_nuke_win;
3319 #endif
3320
3321         /* Prepare the template hooks */
3322         t->user_hook = Term_user_win;
3323         t->xtra_hook = Term_xtra_win;
3324         t->curs_hook = Term_curs_win;
3325         t->bigcurs_hook = Term_bigcurs_win;
3326         t->wipe_hook = Term_wipe_win;
3327         t->text_hook = Term_text_win;
3328         t->pict_hook = Term_pict_win;
3329
3330         /* Remember where we came from */
3331         t->data = (vptr)(td);
3332 }
3333
3334
3335 /*
3336  * Create the windows
3337  *
3338  * First, instantiate the "default" values, then read the "ini_file"
3339  * to over-ride selected values, then create the windows, and fonts.
3340  *
3341  * Must use SW_SHOW not SW_SHOWNA, since on 256 color display
3342  * must make active to realize the palette.  XXX XXX XXX
3343  */
3344 static void init_windows(void)
3345 {
3346         int i;
3347
3348         term_data *td;
3349
3350 #if 0 /* #ifndef JP */
3351         char buf[1024];
3352 #endif
3353
3354         /* Main window */
3355         td = &data[0];
3356         WIPE(td, term_data);
3357 #ifdef JP
3358         td->s = "ÊѶòÈÚÅÜ";
3359 #else
3360         td->s = angband_term_name[0];
3361 #endif
3362
3363         td->keys = 1024;
3364         td->rows = 24;
3365         td->cols = 80;
3366         td->visible = TRUE;
3367         td->size_ow1 = 2;
3368         td->size_ow2 = 2;
3369         td->size_oh1 = 2;
3370         td->size_oh2 = 2;
3371         td->pos_x = 7 * 30;
3372         td->pos_y = 7 * 20;
3373         td->posfix = FALSE;
3374 #if 1 /* #ifdef JP */
3375         td->bizarre = TRUE;
3376 #endif
3377         /* Sub windows */
3378         for (i = 1; i < MAX_TERM_DATA; i++)
3379         {
3380                 td = &data[i];
3381                 WIPE(td, term_data);
3382                 td->s = angband_term_name[i];
3383                 td->keys = 16;
3384                 td->rows = 24;
3385                 td->cols = 80;
3386                 td->visible = FALSE;
3387                 td->size_ow1 = 1;
3388                 td->size_ow2 = 1;
3389                 td->size_oh1 = 1;
3390                 td->size_oh2 = 1;
3391                 td->pos_x = (7 - i) * 30;
3392                 td->pos_y = (7 - i) * 20;
3393                 td->posfix = FALSE;
3394 #if 1 /* #ifdef JP */
3395                         td->bizarre = TRUE;
3396 #endif
3397         }
3398
3399
3400         /* Load prefs */
3401         load_prefs();
3402
3403
3404         /* Main window (need these before term_getsize gets called) */
3405         td = &data[0];
3406         td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU |
3407                        WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION |
3408                        WS_VISIBLE);
3409         td->dwExStyle = 0;
3410         td->visible = TRUE;
3411
3412         /* Sub windows (need these before term_getsize gets called) */
3413         for (i = 1; i < MAX_TERM_DATA; i++)
3414         {
3415                 td = &data[i];
3416                 td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU);
3417                 td->dwExStyle = (WS_EX_TOOLWINDOW);
3418         }
3419
3420
3421         /* All windows */
3422         for (i = 0; i < MAX_TERM_DATA; i++)
3423         {
3424                 td = &data[i];
3425
3426 #if 1 /* #ifdef JP */
3427                 strncpy(td->lf.lfFaceName, td->font_want, LF_FACESIZE);
3428                 td->lf.lfCharSet = DEFAULT_CHARSET;
3429                 td->lf.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
3430                 /* Activate the chosen font */
3431                 term_force_font(td, NULL);
3432                 td->tile_wid = td->font_wid;
3433                 td->tile_hgt = td->font_hgt;
3434 #else
3435                 /* Access the standard font file */
3436                 path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_FONT, td->font_want);
3437
3438                 /* Activate the chosen font */
3439                 if (term_force_font(td, buf))
3440                 {
3441                         /* Access the standard font file */
3442                         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_FONT, "8X13.FON");
3443
3444                         /* Force the use of that font */
3445                         (void)term_force_font(td, buf);
3446
3447                         /* Oops */
3448                         td->tile_wid = 8;
3449                         td->tile_hgt = 13;
3450
3451                         /* Assume not bizarre */
3452                         td->bizarre = FALSE;
3453                 }
3454 #endif
3455
3456
3457                 /* Analyze the font */
3458                 term_getsize(td);
3459
3460                 /* Resize the window */
3461                 term_window_resize(td);
3462         }
3463
3464
3465         /* Sub windows (reverse order) */
3466         for (i = MAX_TERM_DATA - 1; i >= 1; --i)
3467         {
3468                 td = &data[i];
3469
3470                 my_td = td;
3471                 td->w = CreateWindowEx(td->dwExStyle, AngList,
3472                                        td->s, td->dwStyle,
3473                                        td->pos_x, td->pos_y,
3474                                        td->size_wid, td->size_hgt,
3475                                        HWND_DESKTOP, NULL, hInstance, NULL);
3476                 my_td = NULL;
3477 #ifdef JP
3478                 if (!td->w) quit("¥µ¥Ö¥¦¥£¥ó¥É¥¦¤ËºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿");
3479 #else
3480                 if (!td->w) quit("Failed to create sub-window");
3481 #endif
3482
3483
3484                 if (td->visible)
3485                 {
3486                         td->size_hack = TRUE;
3487                         ShowWindow(td->w, SW_SHOW);
3488                         td->size_hack = FALSE;
3489                 }
3490
3491                 term_data_link(td);
3492                 angband_term[i] = &td->t;
3493
3494                 if (td->visible)
3495                 {
3496                         /* Activate the window */
3497                         SetActiveWindow(td->w);
3498                 }
3499
3500                 if (data[i].posfix)
3501                 {
3502                         term_window_pos(&data[i], HWND_TOPMOST);
3503                 }
3504                 else
3505                 {
3506                         term_window_pos(&data[i], td->w);
3507                 }
3508         }
3509
3510
3511         /* Main window */
3512         td = &data[0];
3513
3514         /* Main window */
3515         my_td = td;
3516         td->w = CreateWindowEx(td->dwExStyle, AppName,
3517                                td->s, td->dwStyle,
3518                                td->pos_x, td->pos_y,
3519                                td->size_wid, td->size_hgt,
3520                                HWND_DESKTOP, NULL, hInstance, NULL);
3521         my_td = NULL;
3522 #ifdef JP
3523         if (!td->w) quit("¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿");
3524 #else
3525         if (!td->w) quit("Failed to create Angband window");
3526 #endif
3527
3528
3529         term_data_link(td);
3530         angband_term[0] = &td->t;
3531         normsize.x = td->cols;
3532         normsize.y = td->rows;
3533
3534         /* Activate the main window */
3535         if (win_maximized) ShowWindow(td->w, SW_SHOWMAXIMIZED);
3536         else ShowWindow(td->w, SW_SHOW);
3537
3538         /* Bring main window back to top */
3539         SetWindowPos(td->w, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
3540
3541
3542         /* New palette XXX XXX XXX */
3543         (void)new_palette();
3544
3545
3546         /* Create a "brush" for drawing the "cursor" */
3547         hbrYellow = CreateSolidBrush(win_clr[TERM_YELLOW]);
3548
3549
3550         /* Process pending messages */
3551         (void)Term_xtra_win_flush();
3552 }
3553
3554
3555
3556 /*
3557  * Prepare the menus
3558  */
3559 static void setup_menus(void)
3560 {
3561         int i;
3562
3563         HMENU hm = GetMenu(data[0].w);
3564
3565
3566         /* Menu "File", Disable all */
3567         EnableMenuItem(hm, IDM_FILE_NEW,
3568                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3569         EnableMenuItem(hm, IDM_FILE_OPEN,
3570                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3571         EnableMenuItem(hm, IDM_FILE_SAVE,
3572                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3573         EnableMenuItem(hm, IDM_FILE_EXIT,
3574                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3575         EnableMenuItem(hm, IDM_FILE_SCORE,
3576                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3577
3578
3579         /* No character available */
3580         if (!character_generated)
3581         {
3582                 /* Menu "File", Item "New" */
3583                 EnableMenuItem(hm, IDM_FILE_NEW, MF_BYCOMMAND | MF_ENABLED);
3584
3585                 /* Menu "File", Item "Open" */
3586                 EnableMenuItem(hm, IDM_FILE_OPEN, MF_BYCOMMAND | MF_ENABLED);
3587         }
3588
3589         /* A character available */
3590         if (character_generated)
3591         {
3592                 /* Menu "File", Item "Save" */
3593                 EnableMenuItem(hm, IDM_FILE_SAVE,
3594                            MF_BYCOMMAND | MF_ENABLED);
3595         }
3596
3597         /* Menu "File", Item "Exit" */
3598         EnableMenuItem(hm, IDM_FILE_EXIT,
3599                        MF_BYCOMMAND | MF_ENABLED);
3600
3601         EnableMenuItem(hm, IDM_FILE_SCORE,
3602                        MF_BYCOMMAND | MF_ENABLED);
3603
3604
3605         /* Menu "Window::Visibility" */
3606         for (i = 0; i < MAX_TERM_DATA; i++)
3607         {
3608                 EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3609                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3610
3611                 CheckMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3612                               (data[i].visible ? MF_CHECKED : MF_UNCHECKED));
3613
3614                 EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3615                                MF_BYCOMMAND | MF_ENABLED);
3616         }
3617
3618         /* Menu "Window::Font" */
3619         for (i = 0; i < MAX_TERM_DATA; i++)
3620         {
3621                 EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i,
3622                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3623
3624                 if (data[i].visible)
3625                 {
3626                         EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i,
3627                                        MF_BYCOMMAND | MF_ENABLED);
3628                 }
3629         }
3630
3631         /* Menu "Window::Window Position Fix" */
3632         for (i = 0; i < MAX_TERM_DATA; i++)
3633         {
3634                 EnableMenuItem(hm, IDM_WINDOW_POS_0 + i,
3635                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3636
3637                 CheckMenuItem(hm, IDM_WINDOW_POS_0 + i,
3638                               (data[i].posfix ? MF_CHECKED : MF_UNCHECKED));
3639
3640                 if (data[i].visible)
3641                 {
3642                         EnableMenuItem(hm, IDM_WINDOW_POS_0 + i,
3643                                        MF_BYCOMMAND | MF_ENABLED);
3644                 }
3645         }
3646
3647         /* Menu "Window::Bizarre Display" */
3648         for (i = 0; i < MAX_TERM_DATA; i++)
3649         {
3650                 EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3651                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3652
3653                 CheckMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3654                               (data[i].bizarre ? MF_CHECKED : MF_UNCHECKED));
3655
3656                 if (data[i].visible)
3657                 {
3658                         EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3659                                    MF_BYCOMMAND | MF_ENABLED);
3660
3661                 }
3662         }
3663
3664         /* Menu "Window::Increase Tile Width" */
3665         for (i = 0; i < MAX_TERM_DATA; i++)
3666         {
3667                 EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i,
3668                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3669
3670                 if (data[i].visible)
3671                 {
3672                         EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i,
3673                                    MF_BYCOMMAND | MF_ENABLED);
3674
3675                 }
3676         }
3677
3678         /* Menu "Window::Decrease Tile Width" */
3679         for (i = 0; i < MAX_TERM_DATA; i++)
3680         {
3681                 EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i,
3682                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3683
3684                 if (data[i].visible)
3685                 {
3686                         EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i,
3687                                    MF_BYCOMMAND | MF_ENABLED);
3688
3689                 }
3690         }
3691
3692         /* Menu "Window::Increase Tile Height" */
3693         for (i = 0; i < MAX_TERM_DATA; i++)
3694         {
3695                 EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i,
3696                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3697
3698                 if (data[i].visible)
3699                 {
3700                         EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i,
3701                                    MF_BYCOMMAND | MF_ENABLED);
3702
3703                 }
3704         }
3705
3706         /* Menu "Window::Decrease Tile Height" */
3707         for (i = 0; i < MAX_TERM_DATA; i++)
3708         {
3709                 EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i,
3710                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3711
3712                 if (data[i].visible)
3713                 {
3714                         EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i,
3715                                    MF_BYCOMMAND | MF_ENABLED);
3716
3717                 }
3718         }
3719
3720         /* Menu "Options", disable all */
3721         EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS,
3722                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3723         EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS,
3724                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3725         EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS,
3726                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3727         EnableMenuItem(hm, IDM_OPTIONS_BIGTILE,
3728                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3729         EnableMenuItem(hm, IDM_OPTIONS_SOUND,
3730                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3731 #ifndef JP
3732         EnableMenuItem(hm, IDM_OPTIONS_SAVER,
3733                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3734 #endif
3735
3736         /* Menu "Options", Item "Map" */
3737         if (use_graphics != GRAPHICS_NONE)
3738                 EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP, MF_BYCOMMAND | MF_ENABLED);
3739         else
3740                 EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP,
3741                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3742
3743         /* Menu "Options", update all */
3744         CheckMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS,
3745                       (arg_graphics == GRAPHICS_NONE ? MF_CHECKED : MF_UNCHECKED));
3746         CheckMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS,
3747                       (arg_graphics == GRAPHICS_ORIGINAL ? MF_CHECKED : MF_UNCHECKED));
3748         CheckMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS,
3749                       (arg_graphics == GRAPHICS_ADAM_BOLT ? MF_CHECKED : MF_UNCHECKED));
3750         CheckMenuItem(hm, IDM_OPTIONS_NEW2_GRAPHICS,
3751                       (arg_graphics == GRAPHICS_HENGBAND ? MF_CHECKED : MF_UNCHECKED));
3752         CheckMenuItem(hm, IDM_OPTIONS_BIGTILE,
3753                       (arg_bigtile ? MF_CHECKED : MF_UNCHECKED));
3754         CheckMenuItem(hm, IDM_OPTIONS_MUSIC,
3755                       (arg_music ? MF_CHECKED : MF_UNCHECKED));
3756         CheckMenuItem(hm, IDM_OPTIONS_SOUND,
3757                       (arg_sound ? MF_CHECKED : MF_UNCHECKED));
3758         CheckMenuItem(hm, IDM_OPTIONS_BG,
3759                       (use_bg ? MF_CHECKED : MF_UNCHECKED));
3760 #ifndef JP
3761         CheckMenuItem(hm, IDM_OPTIONS_SAVER,
3762                       (hwndSaver ? MF_CHECKED : MF_UNCHECKED));
3763 #endif
3764
3765 #ifdef USE_GRAPHICS
3766         /* Menu "Options", Item "Graphics" */
3767         EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS, MF_ENABLED);
3768         /* Menu "Options", Item "Graphics" */
3769         EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS, MF_ENABLED);
3770         /* Menu "Options", Item "Graphics" */
3771         EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS, MF_ENABLED);
3772         /* Menu "Options", Item "Graphics" */
3773         EnableMenuItem(hm, IDM_OPTIONS_BIGTILE, MF_ENABLED);
3774 #endif /* USE_GRAPHICS */
3775
3776 #ifdef USE_SOUND
3777         /* Menu "Options", Item "Sound" */
3778         EnableMenuItem(hm, IDM_OPTIONS_SOUND, MF_ENABLED);
3779 #endif /* USE_SOUND */
3780
3781 #ifdef USE_SAVER
3782         /* Menu "Options", Item "ScreenSaver" */
3783         EnableMenuItem(hm, IDM_OPTIONS_SAVER,
3784                        MF_BYCOMMAND | MF_ENABLED);
3785 #endif /* USE_SAVER */
3786 }
3787
3788
3789 /*
3790  * Check for double clicked (or dragged) savefile
3791  *
3792  * Apparently, Windows copies the entire filename into the first
3793  * piece of the "command line string".  Perhaps we should extract
3794  * the "basename" of that filename and append it to the "save" dir.
3795  */
3796 static void check_for_save_file(LPSTR cmd_line)
3797 {
3798         char *s;
3799
3800         /* First arg */
3801         s = cmd_line;
3802
3803         /* No args */
3804         if (!*s) return;
3805
3806         /* Extract filename */
3807         strcat(savefile, s);
3808
3809         /* Validate the file */
3810         validate_file(savefile);
3811
3812         /* Game in progress */
3813         game_in_progress = TRUE;
3814
3815         /* Play game */
3816         play_game(FALSE);
3817 }
3818
3819
3820 /*
3821  * Process a menu command
3822  */
3823 static void process_menus(WORD wCmd)
3824 {
3825         int i;
3826
3827         term_data *td;
3828
3829         OPENFILENAME ofn;
3830
3831         /* Analyze */
3832         switch (wCmd)
3833         {
3834                 /* New game */
3835                 case IDM_FILE_NEW:
3836                 {
3837                         if (!initialized)
3838                         {
3839 #ifdef JP
3840                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
3841 #else
3842                                 plog("You cannot do that yet...");
3843 #endif
3844
3845                         }
3846                         else if (game_in_progress)
3847                         {
3848 #ifdef JP
3849                                 plog("¥×¥ì¥¤Ãæ¤Ï¿·¤·¤¤¥²¡¼¥à¤ò»Ï¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
3850 #else
3851                                 plog("You can't start a new game while you're still playing!");
3852 #endif
3853
3854                         }
3855                         else
3856                         {
3857                                 game_in_progress = TRUE;
3858                                 Term_flush();
3859                                 play_game(TRUE);
3860                                 quit(NULL);
3861                         }
3862                         break;
3863                 }
3864
3865                 /* Open game */
3866                 case IDM_FILE_OPEN:
3867                 {
3868                         if (!initialized)
3869                         {
3870 #ifdef JP
3871                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
3872 #else
3873                                 plog("You cannot do that yet...");
3874 #endif
3875
3876                         }
3877                         else if (game_in_progress)
3878                         {
3879 #ifdef JP
3880                                 plog("¥×¥ì¥¤Ãæ¤Ï¥²¡¼¥à¤ò¥í¡¼¥É¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
3881 #else
3882                                 plog("You can't open a new game while you're still playing!");
3883 #endif
3884
3885                         }
3886                         else
3887                         {
3888                                 memset(&ofn, 0, sizeof(ofn));
3889                                 ofn.lStructSize = sizeof(ofn);
3890                                 ofn.hwndOwner = data[0].w;
3891                                 ofn.lpstrFilter = "Save Files (*.)\0*\0";
3892                                 ofn.nFilterIndex = 1;
3893                                 ofn.lpstrFile = savefile;
3894                                 ofn.nMaxFile = 1024;
3895                                 ofn.lpstrInitialDir = ANGBAND_DIR_SAVE;
3896                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR | OFN_HIDEREADONLY;
3897
3898                                 if (GetOpenFileName(&ofn))
3899                                 {
3900                                         /* Load 'savefile' */
3901                                         validate_file(savefile);
3902                                         game_in_progress = TRUE;
3903                                         Term_flush();
3904                                         play_game(FALSE);
3905                                         quit(NULL);
3906                                 }
3907                         }
3908                         break;
3909                 }
3910
3911                 /* Save game */
3912                 case IDM_FILE_SAVE:
3913                 {
3914                         if (game_in_progress && character_generated)
3915                         {
3916                                 /* Paranoia */
3917                                 if (!can_save)
3918                                 {
3919 #ifdef JP
3920                                         plog("º£¤Ï¥»¡¼¥Ö¤¹¤ë¤³¤È¤Ï½ÐÍè¤Þ¤»¤ó¡£");
3921 #else
3922                                         plog("You may not do that right now.");
3923 #endif
3924
3925                                         break;
3926                                 }
3927
3928                                 /* Hack -- Forget messages */
3929                                 msg_flag = FALSE;
3930
3931                                 /* Save the game */
3932 #ifdef ZANGBAND
3933                                 do_cmd_save_game(FALSE);
3934 #else /* ZANGBAND */
3935                                 do_cmd_save_game();
3936 #endif /* ZANGBAND */
3937                         }
3938                         else
3939                         {
3940 #ifdef JP
3941                                 plog("º£¡¢¥»¡¼¥Ö¤¹¤ë¤³¤È¤Ï½ÐÍè¤Þ¤»¤ó¡£");
3942 #else
3943                                 plog("You may not do that right now.");
3944 #endif
3945
3946                         }
3947                         break;
3948                 }
3949
3950                 /* Exit */
3951                 case IDM_FILE_EXIT:
3952                 {
3953                         if (game_in_progress && character_generated)
3954                         {
3955                                 /* Paranoia */
3956                                 if (!can_save)
3957                                 {
3958 #ifdef JP
3959                                         plog("º£¤Ï½ªÎ»¤Ç¤­¤Þ¤»¤ó¡£");
3960 #else
3961                                         plog("You may not do that right now.");
3962 #endif
3963
3964                                         break;
3965                                 }
3966
3967                                 /* Hack -- Forget messages */
3968                                 msg_flag = FALSE;
3969
3970                                 forget_lite();
3971                                 forget_view();
3972                                 clear_mon_lite();
3973
3974                                 /* Save the game */
3975 #ifdef ZANGBAND
3976                                 /* do_cmd_save_game(FALSE); */
3977 #else /* ZANGBAND */
3978                                 /* do_cmd_save_game(); */
3979 #endif /* ZANGBAND */
3980                                 Term_key_push(SPECIAL_KEY_QUIT);
3981                                 break;
3982                         }
3983                         quit(NULL);
3984                         break;
3985                 }
3986
3987                 /* Show scores */
3988                 case IDM_FILE_SCORE:
3989                 {
3990                         char buf[1024];
3991
3992                         /* Build the filename */
3993                         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
3994
3995                         /* Open the binary high score file, for reading */
3996                         highscore_fd = fd_open(buf, O_RDONLY);
3997
3998                         /* Paranoia -- No score file */
3999                         if (highscore_fd < 0)
4000                         {
4001                                 msg_print("Score file unavailable.");
4002                         }
4003                         else
4004                         {
4005                                 /* Save Screen */
4006                                 screen_save();
4007
4008                                 /* Clear screen */
4009                                 Term_clear();
4010
4011                                 /* Display the scores */
4012                                 display_scores_aux(0, MAX_HISCORES, -1, NULL);
4013
4014                                 /* Shut the high score file */
4015                                 (void)fd_close(highscore_fd);
4016
4017                                 /* Forget the high score fd */
4018                                 highscore_fd = -1;
4019
4020                                 /* Load screen */
4021                                 screen_load();
4022
4023                                 /* Hack - Flush it */
4024                                 Term_fresh();
4025                         }
4026
4027                         break;
4028                 }
4029
4030                 /* Open game */
4031                 case IDM_FILE_MOVIE:
4032                 {
4033                         if (!initialized)
4034                         {
4035 #ifdef JP
4036                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
4037 #else
4038                                 plog("You cannot do that yet...");
4039 #endif
4040                         }
4041                         else if (game_in_progress)
4042                         {
4043 #ifdef JP
4044                                 plog("¥×¥ì¥¤Ãæ¤Ï¥à¡¼¥Ó¡¼¤ò¥í¡¼¥É¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
4045 #else
4046                                 plog("You can't open a movie while you're playing!");
4047 #endif
4048                         }
4049                         else
4050                         {
4051                                 memset(&ofn, 0, sizeof(ofn));
4052                                 ofn.lStructSize = sizeof(ofn);
4053                                 ofn.hwndOwner = data[0].w;
4054                                 ofn.lpstrFilter = "Angband Movie Files (*.amv)\0*.amv\0";
4055                                 ofn.nFilterIndex = 1;
4056                                 ofn.lpstrFile = savefile;
4057                                 ofn.nMaxFile = 1024;
4058                                 ofn.lpstrInitialDir = ANGBAND_DIR_USER;
4059                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR;
4060
4061                                 if (GetOpenFileName(&ofn))
4062                                 {
4063                                         /* Load 'savefile' */
4064                                         prepare_browse_movie_aux(savefile);
4065                                         play_game(FALSE);
4066                                         quit(NULL);
4067                                         return;
4068                                 }
4069                         }
4070                         break;
4071                 }
4072
4073
4074                 case IDM_WINDOW_VIS_0:
4075                 {
4076 #ifdef JP
4077                         plog("¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ÏÈóɽ¼¨¤Ë¤Ç¤­¤Þ¤»¤ó¡ª");
4078 #else
4079                         plog("You are not allowed to do that!");
4080 #endif
4081
4082
4083                         break;
4084                 }
4085
4086                 /* Window visibility */
4087                 case IDM_WINDOW_VIS_1:
4088                 case IDM_WINDOW_VIS_2:
4089                 case IDM_WINDOW_VIS_3:
4090                 case IDM_WINDOW_VIS_4:
4091                 case IDM_WINDOW_VIS_5:
4092                 case IDM_WINDOW_VIS_6:
4093                 case IDM_WINDOW_VIS_7:
4094                 {
4095                         i = wCmd - IDM_WINDOW_VIS_0;
4096
4097                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4098
4099                         td = &data[i];
4100
4101                         if (!td->visible)
4102                         {
4103                                 td->visible = TRUE;
4104                                 ShowWindow(td->w, SW_SHOW);
4105                                 term_data_redraw(td);
4106                         }
4107                         else
4108                         {
4109                                 td->visible = FALSE;
4110                                 td->posfix = FALSE;
4111                                 ShowWindow(td->w, SW_HIDE);
4112                         }
4113
4114                         break;
4115                 }
4116
4117                 /* Window fonts */
4118                 case IDM_WINDOW_FONT_0:
4119                 case IDM_WINDOW_FONT_1:
4120                 case IDM_WINDOW_FONT_2:
4121                 case IDM_WINDOW_FONT_3:
4122                 case IDM_WINDOW_FONT_4:
4123                 case IDM_WINDOW_FONT_5:
4124                 case IDM_WINDOW_FONT_6:
4125                 case IDM_WINDOW_FONT_7:
4126                 {
4127                         i = wCmd - IDM_WINDOW_FONT_0;
4128
4129                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4130
4131                         td = &data[i];
4132
4133                         term_change_font(td);
4134
4135                         break;
4136                 }
4137
4138                 /* Window Z Position */
4139                 case IDM_WINDOW_POS_1:
4140                 case IDM_WINDOW_POS_2:
4141                 case IDM_WINDOW_POS_3:
4142                 case IDM_WINDOW_POS_4:
4143                 case IDM_WINDOW_POS_5:
4144                 case IDM_WINDOW_POS_6:
4145                 case IDM_WINDOW_POS_7:
4146                 {
4147                         i = wCmd - IDM_WINDOW_POS_0;
4148
4149                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4150
4151                         td = &data[i];
4152
4153                         if (!td->posfix && td->visible)
4154                         {
4155                                 td->posfix = TRUE;
4156                                 term_window_pos(td, HWND_TOPMOST);
4157                         }
4158                         else
4159                         {
4160                                 td->posfix = FALSE;
4161                                 term_window_pos(td, data[0].w);
4162                         }
4163
4164                         break;
4165                 }
4166
4167                 /* Bizarre Display */
4168                 case IDM_WINDOW_BIZ_0:
4169                 case IDM_WINDOW_BIZ_1:
4170                 case IDM_WINDOW_BIZ_2:
4171                 case IDM_WINDOW_BIZ_3:
4172                 case IDM_WINDOW_BIZ_4:
4173                 case IDM_WINDOW_BIZ_5:
4174                 case IDM_WINDOW_BIZ_6:
4175                 case IDM_WINDOW_BIZ_7:
4176                 {
4177                         i = wCmd - IDM_WINDOW_BIZ_0;
4178
4179                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4180
4181                         td = &data[i];
4182
4183                         td->bizarre = !td->bizarre;
4184
4185                         term_getsize(td);
4186
4187                         term_window_resize(td);
4188
4189                         break;
4190                 }
4191
4192                 /* Increase Tile Width */
4193                 case IDM_WINDOW_I_WID_0:
4194                 case IDM_WINDOW_I_WID_1:
4195                 case IDM_WINDOW_I_WID_2:
4196                 case IDM_WINDOW_I_WID_3:
4197                 case IDM_WINDOW_I_WID_4:
4198                 case IDM_WINDOW_I_WID_5:
4199                 case IDM_WINDOW_I_WID_6:
4200                 case IDM_WINDOW_I_WID_7:
4201                 {
4202                         i = wCmd - IDM_WINDOW_I_WID_0;
4203
4204                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4205
4206                         td = &data[i];
4207
4208                         td->tile_wid += 1;
4209
4210                         term_getsize(td);
4211
4212                         term_window_resize(td);
4213
4214                         break;
4215                 }
4216
4217                 /* Decrease Tile Height */
4218                 case IDM_WINDOW_D_WID_0:
4219                 case IDM_WINDOW_D_WID_1:
4220                 case IDM_WINDOW_D_WID_2:
4221                 case IDM_WINDOW_D_WID_3:
4222                 case IDM_WINDOW_D_WID_4:
4223                 case IDM_WINDOW_D_WID_5:
4224                 case IDM_WINDOW_D_WID_6:
4225                 case IDM_WINDOW_D_WID_7:
4226                 {
4227                         i = wCmd - IDM_WINDOW_D_WID_0;
4228
4229                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4230
4231                         td = &data[i];
4232
4233                         td->tile_wid -= 1;
4234
4235                         term_getsize(td);
4236
4237                         term_window_resize(td);
4238
4239                         break;
4240                 }
4241
4242                 /* Increase Tile Height */
4243                 case IDM_WINDOW_I_HGT_0:
4244                 case IDM_WINDOW_I_HGT_1:
4245                 case IDM_WINDOW_I_HGT_2:
4246                 case IDM_WINDOW_I_HGT_3:
4247                 case IDM_WINDOW_I_HGT_4:
4248                 case IDM_WINDOW_I_HGT_5:
4249                 case IDM_WINDOW_I_HGT_6:
4250                 case IDM_WINDOW_I_HGT_7:
4251                 {
4252                         i = wCmd - IDM_WINDOW_I_HGT_0;
4253
4254                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4255
4256                         td = &data[i];
4257
4258                         td->tile_hgt += 1;
4259
4260                         term_getsize(td);
4261
4262                         term_window_resize(td);
4263
4264                         break;
4265                 }
4266
4267                 /* Decrease Tile Height */
4268                 case IDM_WINDOW_D_HGT_0:
4269                 case IDM_WINDOW_D_HGT_1:
4270                 case IDM_WINDOW_D_HGT_2:
4271                 case IDM_WINDOW_D_HGT_3:
4272                 case IDM_WINDOW_D_HGT_4:
4273                 case IDM_WINDOW_D_HGT_5:
4274                 case IDM_WINDOW_D_HGT_6:
4275                 case IDM_WINDOW_D_HGT_7:
4276                 {
4277                         i = wCmd - IDM_WINDOW_D_HGT_0;
4278
4279                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4280
4281                         td = &data[i];
4282
4283                         td->tile_hgt -= 1;
4284
4285                         term_getsize(td);
4286
4287                         term_window_resize(td);
4288
4289                         break;
4290                 }
4291
4292                 case IDM_OPTIONS_NO_GRAPHICS:
4293                 {
4294                         /* Paranoia */
4295                         if (!inkey_flag)
4296                         {
4297                                 plog("You may not do that right now.");
4298                                 break;
4299                         }
4300
4301                         /* Toggle "arg_graphics" */
4302                         if (arg_graphics != GRAPHICS_NONE)
4303                         {
4304                                 arg_graphics = GRAPHICS_NONE;
4305
4306                                 /* React to changes */
4307                                 Term_xtra_win_react();
4308
4309                                 /* Hack -- Force redraw */
4310                                 Term_key_push(KTRL('R'));
4311                         }
4312
4313                         break;
4314                 }
4315
4316                 case IDM_OPTIONS_OLD_GRAPHICS:
4317                 {
4318                         /* Paranoia */
4319                         if (!inkey_flag)
4320                         {
4321                                 plog("You may not do that right now.");
4322                                 break;
4323                         }
4324
4325                         /* Toggle "arg_graphics" */
4326                         if (arg_graphics != GRAPHICS_ORIGINAL)
4327                         {
4328                                 arg_graphics = GRAPHICS_ORIGINAL;
4329
4330                                 /* React to changes */
4331                                 Term_xtra_win_react();
4332
4333                                 /* Hack -- Force redraw */
4334                                 Term_key_push(KTRL('R'));
4335                         }
4336
4337                         break;
4338                 }
4339
4340                 case IDM_OPTIONS_NEW_GRAPHICS:
4341                 {
4342                         /* Paranoia */
4343                         if (!inkey_flag)
4344                         {
4345                                 plog("You may not do that right now.");
4346                                 break;
4347                         }
4348
4349                         /* Toggle "arg_graphics" */
4350                         if (arg_graphics != GRAPHICS_ADAM_BOLT)
4351                         {
4352                                 arg_graphics = GRAPHICS_ADAM_BOLT;
4353
4354                                 /* React to changes */
4355                                 Term_xtra_win_react();
4356
4357                                 /* Hack -- Force redraw */
4358                                 Term_key_push(KTRL('R'));
4359                         }
4360
4361                         break;
4362                 }
4363
4364                 case IDM_OPTIONS_NEW2_GRAPHICS:
4365                 {
4366                         /* Paranoia */
4367                         if (!inkey_flag)
4368                         {
4369                                 plog("You may not do that right now.");
4370                                 break;
4371                         }
4372
4373                         /* Toggle "arg_graphics" */
4374                         if (arg_graphics != GRAPHICS_HENGBAND)
4375                         {
4376                                 arg_graphics = GRAPHICS_HENGBAND;
4377
4378                                 /* React to changes */
4379                                 Term_xtra_win_react();
4380
4381                                 /* Hack -- Force redraw */
4382                                 Term_key_push(KTRL('R'));
4383                         }
4384
4385                         break;
4386                 }
4387
4388                 case IDM_OPTIONS_BIGTILE:
4389                 {
4390                         term_data *td = &data[0];
4391
4392                         /* Paranoia */
4393                         if (!inkey_flag)
4394                         {
4395                                 plog("You may not do that right now.");
4396                                 break;
4397                         }
4398
4399                         /* Toggle "arg_sound" */
4400                         arg_bigtile = !arg_bigtile;
4401
4402                         /* Activate */
4403                         Term_activate(&td->t);
4404
4405                         /* Resize the term */
4406                         Term_resize(td->cols, td->rows);
4407
4408                         /* Redraw later */
4409                         InvalidateRect(td->w, NULL, TRUE);
4410
4411                         break;
4412                 }
4413
4414                 case IDM_OPTIONS_MUSIC:
4415                 {
4416                         /* Paranoia */
4417                         if (!inkey_flag)
4418                         {
4419                                 plog("You may not do that right now.");
4420                                 break;
4421                         }
4422
4423                         /* Toggle "arg_sound" */
4424                         arg_music = !arg_music;
4425
4426                         /* React to changes */
4427                         Term_xtra_win_react();
4428
4429                         /* Hack -- Force redraw */
4430                         Term_key_push(KTRL('R'));
4431
4432                         break;
4433                 }
4434
4435                 case IDM_OPTIONS_SOUND:
4436                 {
4437                         /* Paranoia */
4438                         if (!inkey_flag)
4439                         {
4440                                 plog("You may not do that right now.");
4441                                 break;
4442                         }
4443
4444                         /* Toggle "arg_sound" */
4445                         arg_sound = !arg_sound;
4446
4447                         /* React to changes */
4448                         Term_xtra_win_react();
4449
4450                         /* Hack -- Force redraw */
4451                         Term_key_push(KTRL('R'));
4452
4453                         break;
4454                 }
4455
4456                 /* bg */
4457                 case IDM_OPTIONS_BG:
4458                 {
4459                         /* Paranoia */
4460                         if (!inkey_flag)
4461                         {
4462                                 plog("You may not do that right now.");
4463                                 break;
4464                         }
4465
4466                         /* Toggle "use_bg" */
4467                         use_bg = !use_bg;
4468
4469                         init_bg();
4470
4471                         /* React to changes */
4472                         Term_xtra_win_react();
4473
4474                         /* Hack -- Force redraw */
4475                         Term_key_push(KTRL('R'));
4476
4477                         break;
4478                 }
4479
4480                 /* bg */
4481                 case IDM_OPTIONS_OPEN_BG:
4482                 {
4483                         /* Paranoia */
4484                         if (!inkey_flag)
4485                         {
4486                                 plog("You may not do that right now.");
4487                                 break;
4488                         }
4489                         else
4490                         {
4491                                 memset(&ofn, 0, sizeof(ofn));
4492                                 ofn.lStructSize = sizeof(ofn);
4493                                 ofn.hwndOwner = data[0].w;
4494                                 ofn.lpstrFilter = "Bitmap Files (*.bmp)\0*.bmp\0";
4495                                 ofn.nFilterIndex = 1;
4496                                 ofn.lpstrFile = bg_bitmap_file;
4497                                 ofn.nMaxFile = 1023;
4498                                 ofn.lpstrInitialDir = NULL;
4499 #ifdef JP
4500                                 ofn.lpstrTitle = "ÊÉ»æ¤òÁª¤ó¤Ç¤Í¡£";
4501 #else
4502                                 ofn.lpstrTitle = "Choose wall paper.";
4503 #endif
4504                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
4505
4506                                 if (GetOpenFileName(&ofn))
4507                                 {
4508                                         /* Load 'savefile' */
4509                                         use_bg = 1;
4510                                         init_bg();
4511                                 }
4512
4513                                 /* React to changes */
4514                                 Term_xtra_win_react();
4515
4516                                 /* Hack -- Force redraw */
4517                                 Term_key_push(KTRL('R'));
4518                         }
4519                         break;
4520                 }
4521
4522                 case IDM_DUMP_SCREEN_HTML:
4523                 {
4524                         static char buf[1024] = "";
4525                         memset(&ofn, 0, sizeof(ofn));
4526                         ofn.lStructSize = sizeof(ofn);
4527                         ofn.hwndOwner = data[0].w;
4528                         ofn.lpstrFilter = "HTML Files (*.html)\0*.html\0";
4529                         ofn.nFilterIndex = 1;
4530                         ofn.lpstrFile = buf;
4531                         ofn.nMaxFile = 1023;
4532                         ofn.lpstrDefExt = "html";
4533                         ofn.lpstrInitialDir = NULL;
4534 #ifdef JP
4535                         ofn.lpstrTitle = "HTML¤Ç¥¹¥¯¥ê¡¼¥ó¥À¥ó¥×¤òÊݸ";
4536 #else
4537                         ofn.lpstrTitle = "Save screen dump as HTML.";
4538 #endif
4539                         ofn.Flags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT;
4540
4541                         if (GetSaveFileName(&ofn))
4542                         {
4543                                 do_cmd_save_screen_html_aux(buf, 0);
4544                         }
4545                         break;
4546                 }
4547
4548 #ifdef USE_SAVER
4549
4550                 case IDM_OPTIONS_SAVER:
4551                 {
4552                         if (hwndSaver)
4553                         {
4554                                 DestroyWindow(hwndSaver);
4555                                 hwndSaver = NULL;
4556                         }
4557                         else
4558                         {
4559                                 /* Create a screen scaver window */
4560                                 hwndSaver = CreateWindowEx(WS_EX_TOPMOST, "WindowsScreenSaverClass",
4561                                                            "Angband Screensaver",
4562                                                            WS_POPUP | WS_MAXIMIZE | WS_VISIBLE,
4563                                                            0, 0, GetSystemMetrics(SM_CXSCREEN),
4564                                                            GetSystemMetrics(SM_CYSCREEN),
4565                                                            NULL, NULL, hInstance, NULL);
4566
4567                                 if (hwndSaver)
4568                                 {
4569                                         /* Push the window to the bottom XXX XXX XXX */
4570                                         SetWindowPos(hwndSaver, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
4571                                 }
4572                                 else
4573                                 {
4574 #ifdef JP
4575                                         plog("¥¦¥£¥ó¥É¥¦¤òºîÀ®½ÐÍè¤Þ¤»¤ó");
4576 #else
4577                                         plog("Failed to create saver window");
4578 #endif
4579
4580                                 }
4581                         }
4582                         break;
4583                 }
4584
4585 #endif
4586
4587                 case IDM_OPTIONS_MAP:
4588                 {
4589                         windows_map();
4590                         break;
4591                 }
4592
4593                 case IDM_HELP_CONTENTS:
4594                 {
4595 #ifdef HTML_HELP
4596                         char tmp[1024];
4597                         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_HELP, "zangband.chm");
4598                         if (check_file(tmp))
4599                         {
4600                                 HtmlHelp(data[0].w, tmp, HH_DISPLAY_TOPIC, 0);
4601                         }
4602                         else
4603                         {
4604 #ifdef JP
4605                                 plog_fmt("¥Ø¥ë¥×¥Õ¥¡¥¤¥ë[%s]¤¬¸«ÉÕ¤«¤ê¤Þ¤»¤ó¡£", tmp);
4606                                 plog("Âå¤ï¤ê¤Ë¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£");
4607 #else
4608                                 plog_fmt("Cannot find help file: %s", tmp);
4609                                 plog("Use the online help files instead.");
4610 #endif
4611
4612                         }
4613                         break;
4614 #else /* HTML_HELP */
4615                         char buf[1024];
4616                         char tmp[1024];
4617                         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_HELP, "zangband.hlp");
4618                         if (check_file(tmp))
4619                         {
4620                                 sprintf(buf, "winhelp.exe %s", tmp);
4621                                 WinExec(buf, SW_NORMAL);
4622                         }
4623                         else
4624                         {
4625 #ifdef JP
4626                                 plog_fmt("¥Ø¥ë¥×¥Õ¥¡¥¤¥ë[%s]¤¬¸«ÉÕ¤«¤ê¤Þ¤»¤ó¡£", tmp);
4627                                 plog("Âå¤ï¤ê¤Ë¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£");
4628 #else
4629                                 plog_fmt("Cannot find help file: %s", tmp);
4630                                 plog("Use the online help files instead.");
4631 #endif
4632
4633                         }
4634                         break;
4635 #endif /* HTML_HELP */
4636                 }
4637         }
4638 }
4639
4640
4641 static bool process_keydown(WPARAM wParam, LPARAM lParam)
4642 {
4643         int i;
4644         bool mc = FALSE;
4645         bool ms = FALSE;
4646         bool ma = FALSE;
4647
4648         /* Extract the modifiers */
4649         if (GetKeyState(VK_CONTROL) & 0x8000) mc = TRUE;
4650         if (GetKeyState(VK_SHIFT)   & 0x8000) ms = TRUE;
4651         if (GetKeyState(VK_MENU)    & 0x8000) ma = TRUE;
4652
4653         Term_no_press = (ma) ? TRUE : FALSE;
4654
4655         /* Handle "special" keys */
4656         if (special_key[(byte)(wParam)] || (ma && !ignore_key[(byte)(wParam)]) )
4657         {
4658                 bool ext_key = (lParam & 0x1000000L) ? TRUE : FALSE;
4659                 bool numpad = FALSE;
4660
4661                 /* Begin the macro trigger */
4662                 Term_keypress(31);
4663
4664                 /* Send the modifiers */
4665                 if (mc) Term_keypress('C');
4666                 if (ms) Term_keypress('S');
4667                 if (ma) Term_keypress('A');
4668
4669                 /* Extract "scan code" */
4670                 i = LOBYTE(HIWORD(lParam));
4671
4672                 /* Introduce the scan code */
4673                 Term_keypress('x');
4674
4675                 /* Extended key bit */
4676                 switch (wParam)
4677                 {
4678                         /* Numpad Enter and '/' are extended key */
4679                 case VK_DIVIDE:
4680                         Term_no_press = TRUE;
4681                 case VK_RETURN: /* Enter */
4682                         numpad = ext_key;
4683                         break;
4684                         /* Other extended keys are on full keyboard */
4685                 case VK_NUMPAD0:
4686                 case VK_NUMPAD1:
4687                 case VK_NUMPAD2:
4688                 case VK_NUMPAD3:
4689                 case VK_NUMPAD4:
4690                 case VK_NUMPAD5:
4691                 case VK_NUMPAD6:
4692                 case VK_NUMPAD7:
4693                 case VK_NUMPAD8:
4694                 case VK_NUMPAD9:
4695                 case VK_ADD:
4696                 case VK_MULTIPLY:
4697                 case VK_SUBTRACT:
4698                 case VK_SEPARATOR:
4699                 case VK_DECIMAL:
4700                         Term_no_press = TRUE;
4701                 case VK_CLEAR:
4702                 case VK_HOME:
4703                 case VK_END:
4704                 case VK_PRIOR:  /* Page Up */
4705                 case VK_NEXT:   /* Page Down */
4706                 case VK_INSERT:
4707                 case VK_DELETE:
4708                 case VK_UP:
4709                 case VK_DOWN:
4710                 case VK_LEFT:
4711                 case VK_RIGHT:
4712                         numpad = !ext_key;
4713                 }
4714
4715                 /* Special modifiers for keypad keys */
4716                 if (numpad) Term_keypress('K');
4717
4718                 /* Encode the hexidecimal scan code */
4719                 Term_keypress(hexsym[i/16]);
4720                 Term_keypress(hexsym[i%16]);
4721
4722                 /* End the macro trigger */
4723                 Term_keypress(13);
4724
4725                 return 1;
4726         }
4727
4728         return 0;
4729 }
4730
4731
4732 #ifdef __MWERKS__
4733 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4734                                   WPARAM wParam, LPARAM lParam);
4735 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4736                                   WPARAM wParam, LPARAM lParam)
4737 #else /* __MWERKS__ */
4738 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4739                                           WPARAM wParam, LPARAM lParam)
4740 #endif /* __MWERKS__ */
4741 {
4742         PAINTSTRUCT ps;
4743         HDC hdc;
4744         term_data *td;
4745 #if 0
4746         MINMAXINFO FAR *lpmmi;
4747         RECT rc;
4748 #endif
4749         int i;
4750
4751
4752         /* Acquire proper "term_data" info */
4753         td = (term_data *)GetWindowLong(hWnd, 0);
4754
4755         /* Handle message */
4756         switch (uMsg)
4757         {
4758                 /* XXX XXX XXX */
4759                 case WM_NCCREATE:
4760                 {
4761                         SetWindowLong(hWnd, 0, (LONG)(my_td));
4762                         break;
4763                 }
4764
4765                 /* XXX XXX XXX */
4766                 case WM_CREATE:
4767                 {
4768                         mop.dwCallback=(DWORD)hWnd;
4769                         return 0;
4770                 }
4771
4772                 case WM_GETMINMAXINFO:
4773                 {
4774                         MINMAXINFO FAR *lpmmi;
4775                         RECT rc;
4776
4777                         lpmmi = (MINMAXINFO FAR *)lParam;
4778
4779                         /* this message was sent before WM_NCCREATE */
4780                         if (!td) return 1;
4781
4782                         /* Minimum window size is 80x24 */
4783                         rc.left = rc.top = 0;
4784                         rc.right = rc.left + 80 * td->tile_wid + td->size_ow1 + td->size_ow2;
4785                         rc.bottom = rc.top + 24 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
4786
4787                         /* Adjust */
4788                         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
4789
4790                         /* Save minimum size */
4791                         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
4792                         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
4793
4794                         return 0;
4795                 }
4796
4797                 case WM_PAINT:
4798                 {
4799                         BeginPaint(hWnd, &ps);
4800                         if (td) term_data_redraw(td);
4801                         EndPaint(hWnd, &ps);
4802                         ValidateRect(hWnd, NULL);
4803                         return 0;
4804                 }
4805
4806 #ifdef USE_MUSIC
4807                 case MM_MCINOTIFY:
4808                 {
4809                         if(wParam == MCI_NOTIFY_SUCCESSFUL)
4810                         {
4811                                 mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
4812                                 mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
4813                         }
4814                         return 0;
4815                 }
4816 #endif
4817
4818                 case WM_SYSKEYDOWN:
4819                 case WM_KEYDOWN:
4820                 {
4821                         if (process_keydown(wParam, lParam))
4822                                 return 0;
4823                         break;
4824                 }
4825
4826                 case WM_CHAR:
4827                 {
4828                         if (Term_no_press) Term_no_press = FALSE;
4829                         else Term_keypress(wParam);
4830                         return 0;
4831                 }
4832
4833                 case WM_LBUTTONDOWN:
4834                 {
4835                         mousex = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
4836                         mousey = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
4837                         mouse_down = TRUE;
4838                         oldx = mousex;
4839                         oldy = mousey;
4840                         return 0;
4841                 }
4842
4843                 case WM_LBUTTONUP:
4844                 {
4845                         HGLOBAL hGlobal;
4846                         LPSTR lpStr;
4847                         int i, j, sz;
4848                         int dx = abs(oldx - mousex) + 1;
4849                         int dy = abs(oldy - mousey) + 1;
4850                         int ox = (oldx > mousex) ? mousex : oldx;
4851                         int oy = (oldy > mousey) ? mousey : oldy;
4852
4853                         mouse_down = FALSE;
4854                         paint_rect = FALSE;
4855
4856 #ifdef JP
4857                         sz = (dx + 3) * dy;
4858 #else
4859                         sz = (dx + 2) * dy;
4860 #endif
4861                         hGlobal = GlobalAlloc(GHND, sz + 1);
4862                         if (hGlobal == NULL) return 0;
4863                         lpStr = (LPSTR)GlobalLock(hGlobal);
4864
4865                         for (i = 0; i < dy; i++)
4866                         {
4867 #ifdef JP
4868                                 char *s;
4869                                 char **scr = data[0].t.scr->c;
4870
4871                                 C_MAKE(s, (dx + 1), char);
4872                                 strncpy(s, &scr[oy + i][ox], dx);
4873
4874                                 if (ox > 0)
4875                                 {
4876                                         if (iskanji(scr[oy + i][ox - 1])) s[0] = ' ';
4877                                 }
4878
4879                                 if (ox + dx < data[0].cols)
4880                                 {
4881                                         if (iskanji(scr[oy + i][ox + dx - 1])) s[dx - 1] = ' ';
4882                                 }
4883
4884                                 for (j = 0; j < dx; j++)
4885                                 {
4886                                         if (s[j] == 127) s[j] = '#';
4887                                         *lpStr++ = s[j];
4888                                 }
4889 #else
4890                                 for (j = 0; j < dx; j++)
4891                                 {
4892                                         *lpStr++ = data[0].t.scr->c[oy + i][ox + j];
4893                                 }
4894 #endif
4895                                 if (dy > 1)
4896                                 {
4897                                         *lpStr++ = '\r';
4898                                         *lpStr++ = '\n';
4899                                 }
4900                         }
4901
4902                         GlobalUnlock(hGlobal);
4903                         if (OpenClipboard(hWnd) == 0)
4904                         {
4905                                 GlobalFree(hGlobal);
4906                                 return 0;
4907                         }
4908                         EmptyClipboard();
4909                         SetClipboardData(CF_TEXT, hGlobal);
4910                         CloseClipboard();
4911
4912                         Term_redraw();
4913
4914                         return 0;
4915                 }
4916
4917                 case WM_MOUSEMOVE:
4918                 {
4919                         if (mouse_down)
4920                         {
4921                                 int dx, dy;
4922                                 int cx = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
4923                                 int cy = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
4924                                 int ox, oy;
4925
4926                                 if (paint_rect)
4927                                 {
4928                                         dx = abs(oldx - mousex) + 1;
4929                                         dy = abs(oldy - mousey) + 1;
4930                                         ox = (oldx > mousex) ? mousex : oldx;
4931                                         oy = (oldy > mousey) ? mousey : oldy;
4932                                         Term_inversed_area(hWnd, ox, oy, dx, dy);
4933                                 }
4934                                 else
4935                                 {
4936                                         paint_rect = TRUE;
4937                                 }
4938
4939                                 dx = abs(cx - mousex) + 1;
4940                                 dy = abs(cy - mousey) + 1;
4941                                 ox = (cx > mousex) ? mousex : cx;
4942                                 oy = (cy > mousey) ? mousey : cy;
4943                                 Term_inversed_area(hWnd, ox, oy, dx, dy);
4944
4945                                 oldx = cx;
4946                                 oldy = cy;
4947                         }
4948                         return 0;
4949                 }
4950
4951                 case WM_INITMENU:
4952                 {
4953                         setup_menus();
4954                         return 0;
4955                 }
4956
4957                 case WM_CLOSE:
4958                 {
4959                         if (game_in_progress && character_generated)
4960                         {
4961                                 if (!can_save)
4962                                 {
4963 #ifdef JP
4964                                         plog("º£¤Ï½ªÎ»¤Ç¤­¤Þ¤»¤ó¡£");
4965 #else
4966                                         plog("You may not do that right now.");
4967 #endif
4968                                         return 0;
4969                                 }
4970
4971                                 /* Hack -- Forget messages */
4972                                 msg_flag = FALSE;
4973
4974                                 forget_lite();
4975                                 forget_view();
4976                                 clear_mon_lite();
4977
4978                                 /* Save the game */
4979 #ifdef ZANGBAND
4980                                 /* do_cmd_save_game(FALSE); */
4981 #else /* ZANGBAND */
4982                                 /* do_cmd_save_game(); */
4983 #endif /* ZANGBAND */
4984                                 Term_key_push(SPECIAL_KEY_QUIT);
4985                                 return 0;
4986                         }
4987                         quit(NULL);
4988                         return 0;
4989                 }
4990
4991                 case WM_QUERYENDSESSION:
4992                 {
4993                         if (game_in_progress && character_generated)
4994                         {
4995                                 /* Hack -- Forget messages */
4996                                 msg_flag = FALSE;
4997
4998                                 /* Mega-Hack -- Delay death */
4999                                 if (p_ptr->chp < 0) p_ptr->is_dead = FALSE;
5000
5001 #ifdef JP
5002                                 do_cmd_write_nikki(NIKKI_GAMESTART, 0, "----¥²¡¼¥àÃæÃÇ----");
5003 #else
5004                                 do_cmd_write_nikki(NIKKI_GAMESTART, 0, "---- Save and Exit Game ----");
5005 #endif
5006
5007                                 /* Hardcode panic save */
5008                                 p_ptr->panic_save = 1;
5009
5010                                 /* Forbid suspend */
5011                                 signals_ignore_tstp();
5012
5013                                 /* Indicate panic save */
5014 #ifdef JP
5015                                 (void)strcpy(p_ptr->died_from, "(¶ÛµÞ¥»¡¼¥Ö)");
5016 #else
5017                                 (void)strcpy(p_ptr->died_from, "(panic save)");
5018 #endif
5019
5020                                 /* Panic save */
5021                                 (void)save_player();
5022                         }
5023                         quit(NULL);
5024                         return 0;
5025                 }
5026
5027                 case WM_QUIT:
5028                 {
5029                         quit(NULL);
5030                         return 0;
5031                 }
5032
5033                 case WM_COMMAND:
5034                 {
5035                         process_menus(LOWORD(wParam));
5036                         return 0;
5037                 }
5038
5039                 case WM_SIZE:
5040                 {
5041                         /* this message was sent before WM_NCCREATE */
5042                         if (!td) return 1;
5043
5044                         /* it was sent from inside CreateWindowEx */
5045                         if (!td->w) return 1;
5046
5047                         /* was sent from WM_SIZE */
5048                         if (td->size_hack) return 1;
5049
5050                         switch (wParam)
5051                         {
5052                                 case SIZE_MINIMIZED:
5053                                 {
5054                                         /* Hide sub-windows */
5055                                         for (i = 1; i < MAX_TERM_DATA; i++)
5056                                         {
5057                                                 if (data[i].visible) ShowWindow(data[i].w, SW_HIDE);
5058                                         }
5059                                         return 0;
5060                                 }
5061
5062                                 case SIZE_MAXIMIZED:
5063                                 {
5064                                         /* fall through XXX XXX XXX */
5065                                 }
5066
5067                                 case SIZE_RESTORED:
5068                                 {
5069                                         uint cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
5070                                         uint rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
5071
5072                                         /* New size */
5073                                         if ((td->cols != cols) || (td->rows != rows))
5074                                         {
5075                                                 /* Save the new size */
5076                                                 td->cols = cols;
5077                                                 td->rows = rows;
5078
5079                                                 if (!IsZoomed(td->w) && !IsIconic(td->w))
5080                                                 {
5081                                                         normsize.x = td->cols;
5082                                                         normsize.y = td->rows;
5083                                                 }
5084
5085                                                 /* Activate */
5086                                                 Term_activate(&td->t);
5087
5088                                                 /* Resize the term */
5089                                                 Term_resize(td->cols, td->rows);
5090
5091                                                 /* Redraw later */
5092                                                 InvalidateRect(td->w, NULL, TRUE);
5093                                         }
5094
5095                                         td->size_hack = TRUE;
5096
5097                                         /* Show sub-windows */
5098                                         for (i = 1; i < MAX_TERM_DATA; i++)
5099                                         {
5100                                                 if (data[i].visible) ShowWindow(data[i].w, SW_SHOW);
5101                                         }
5102
5103                                         td->size_hack = FALSE;
5104
5105                                         return 0;
5106                                 }
5107                         }
5108                         break;
5109                 }
5110
5111                 case WM_PALETTECHANGED:
5112                 {
5113                         /* Ignore if palette change caused by itself */
5114                         if ((HWND)wParam == hWnd) return 0;
5115
5116                         /* Fall through... */
5117                 }
5118
5119                 case WM_QUERYNEWPALETTE:
5120                 {
5121                         if (!paletted) return 0;
5122
5123                         hdc = GetDC(hWnd);
5124
5125                         SelectPalette(hdc, hPal, FALSE);
5126
5127                         i = RealizePalette(hdc);
5128
5129                         /* if any palette entries changed, repaint the window. */
5130                         if (i) InvalidateRect(hWnd, NULL, TRUE);
5131
5132                         ReleaseDC(hWnd, hdc);
5133
5134                         return 0;
5135                 }
5136
5137                 case WM_ACTIVATE:
5138                 {
5139                         if (wParam && !HIWORD(lParam))
5140                         {
5141                                 /* Do something to sub-windows */
5142                                 for (i = 1; i < MAX_TERM_DATA; i++)
5143                                 {
5144                                         if (!data[i].posfix) term_window_pos(&data[i], hWnd);
5145                                 }
5146
5147                                 /* Focus on main window */
5148                                 SetFocus(hWnd);
5149
5150                                 return 0;
5151                         }
5152
5153                         break;
5154                 }
5155
5156                 case WM_ACTIVATEAPP:
5157                 {
5158                         if (IsIconic(td->w)) break;
5159
5160                         for (i = 1; i < MAX_TERM_DATA; i++)
5161                         {
5162                                 if(data[i].visible)
5163                                 {
5164                                         if (wParam == TRUE)
5165                                         {
5166                                                 ShowWindow(data[i].w, SW_SHOW);
5167                                         }
5168                                         else
5169                                         {
5170                                                 ShowWindow(data[i].w, SW_HIDE);
5171                                         }
5172                                 }
5173                         }
5174                 }
5175         }
5176
5177         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5178 }
5179
5180
5181 #ifdef __MWERKS__
5182 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5183                                            WPARAM wParam, LPARAM lParam);
5184 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5185                                            WPARAM wParam, LPARAM lParam)
5186 #else /* __MWERKS__ */
5187 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5188                                            WPARAM wParam, LPARAM lParam)
5189 #endif /* __MWERKS__ */
5190 {
5191         term_data *td;
5192 #if 0
5193         MINMAXINFO FAR *lpmmi;
5194         RECT rc;
5195 #endif
5196         PAINTSTRUCT ps;
5197         HDC hdc;
5198         int i;
5199
5200
5201         /* Acquire proper "term_data" info */
5202         td = (term_data *)GetWindowLong(hWnd, 0);
5203
5204         /* Process message */
5205         switch (uMsg)
5206         {
5207                 /* XXX XXX XXX */
5208                 case WM_NCCREATE:
5209                 {
5210                         SetWindowLong(hWnd, 0, (LONG)(my_td));
5211                         break;
5212                 }
5213
5214                 /* XXX XXX XXX */
5215                 case WM_CREATE:
5216                 {
5217                         return 0;
5218                 }
5219
5220                 case WM_GETMINMAXINFO:
5221                 {
5222                         MINMAXINFO FAR *lpmmi;
5223                         RECT rc;
5224
5225                         lpmmi = (MINMAXINFO FAR *)lParam;
5226
5227                         /* this message was sent before WM_NCCREATE */
5228                         if (!td) return 1;
5229
5230                         /* Minimum window size is 80x24 */
5231                         rc.left = rc.top = 0;
5232                         rc.right = rc.left + 20 * td->tile_wid + td->size_ow1 + td->size_ow2;
5233                         rc.bottom = rc.top + 3 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
5234
5235                         /* Adjust */
5236                         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
5237
5238                         /* Save minimum size */
5239                         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
5240                         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
5241
5242                         return 0;
5243                 }
5244
5245                 case WM_SIZE:
5246                 {
5247                         uint cols;
5248                         uint rows;
5249                         
5250                         /* this message was sent before WM_NCCREATE */
5251                         if (!td) return 1;
5252
5253                         /* it was sent from inside CreateWindowEx */
5254                         if (!td->w) return 1;
5255
5256                         /* was sent from inside WM_SIZE */
5257                         if (td->size_hack) return 1;
5258
5259                         td->size_hack = TRUE;
5260
5261                         cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
5262                         rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
5263
5264                         /* New size */
5265                         if ((td->cols != cols) || (td->rows != rows))
5266                         {
5267                                 /* Save old term */
5268                                 term *old_term = Term;
5269
5270                                 /* Save the new size */
5271                                 td->cols = cols;
5272                                 td->rows = rows;
5273
5274                                 /* Activate */
5275                                 Term_activate(&td->t);
5276
5277                                 /* Resize the term */
5278                                 Term_resize(td->cols, td->rows);
5279
5280                                 /* Activate */
5281                                 Term_activate(old_term);
5282
5283                                 /* Redraw later */
5284                                 InvalidateRect(td->w, NULL, TRUE);
5285
5286                                 /* HACK - Redraw all windows */
5287                                 p_ptr->window = 0xFFFFFFFF;
5288                                 window_stuff();
5289                         }
5290
5291                         td->size_hack = FALSE;
5292
5293                         return 0;
5294                 }
5295
5296                 case WM_PAINT:
5297                 {
5298                         BeginPaint(hWnd, &ps);
5299                         if (td) term_data_redraw(td);
5300                         EndPaint(hWnd, &ps);
5301                         return 0;
5302                 }
5303
5304                 case WM_SYSKEYDOWN:
5305                 case WM_KEYDOWN:
5306                 {
5307                         if (process_keydown(wParam, lParam))
5308                                 return 0;
5309                         break;
5310                 }
5311
5312                 case WM_CHAR:
5313                 {
5314                         if (Term_no_press) Term_no_press = FALSE;
5315                         else Term_keypress(wParam);
5316                         return 0;
5317                 }
5318
5319                 case WM_PALETTECHANGED:
5320                 {
5321                         /* ignore if palette change caused by itself */
5322                         if ((HWND)wParam == hWnd) return FALSE;
5323                         /* otherwise, fall through!!! */
5324                 }
5325
5326                 case WM_QUERYNEWPALETTE:
5327                 {
5328                         if (!paletted) return 0;
5329                         hdc = GetDC(hWnd);
5330                         SelectPalette(hdc, hPal, FALSE);
5331                         i = RealizePalette(hdc);
5332                         /* if any palette entries changed, repaint the window. */
5333                         if (i) InvalidateRect(hWnd, NULL, TRUE);
5334                         ReleaseDC(hWnd, hdc);
5335                         return 0;
5336                 }
5337
5338                 case WM_NCLBUTTONDOWN:
5339                 {
5340
5341 #ifdef HTCLOSE
5342                         if (wParam == HTCLOSE) wParam = HTSYSMENU;
5343 #endif /* HTCLOSE */
5344
5345                         if (wParam == HTSYSMENU)
5346                         {
5347                                 if (td->visible)
5348                                 {
5349                                         td->visible = FALSE;
5350                                         ShowWindow(td->w, SW_HIDE);
5351                                 }
5352
5353                                 return 0;
5354                         }
5355
5356                         break;
5357                 }
5358         }
5359
5360         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5361 }
5362
5363
5364 #ifdef USE_SAVER
5365
5366 #define MOUSE_SENS 40
5367
5368 #ifdef __MWERKS__
5369 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5370                                     WPARAM wParam, LPARAM lParam);
5371 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5372                                     WPARAM wParam, LPARAM lParam)
5373 #else /* __MWERKS__ */
5374 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5375                                             WPARAM wParam, LPARAM lParam)
5376 #endif /* __MWERKS__ */
5377 {
5378         static int iMouse = 0;
5379         static WORD xMouse = 0;
5380         static WORD yMouse = 0;
5381
5382         int dx, dy;
5383
5384
5385         /* Process */
5386         switch (uMsg)
5387         {
5388                 /* XXX XXX XXX */
5389                 case WM_NCCREATE:
5390                 {
5391                         break;
5392                 }
5393
5394                 case WM_SETCURSOR:
5395                 {
5396                         SetCursor(NULL);
5397                         return 0;
5398                 }
5399
5400 #if 0
5401                 case WM_ACTIVATE:
5402                 {
5403                         if (LOWORD(wParam) == WA_INACTIVE) break;
5404
5405                         /* else fall through */
5406                 }
5407 #endif
5408
5409                 case WM_LBUTTONDOWN:
5410                 case WM_MBUTTONDOWN:
5411                 case WM_RBUTTONDOWN:
5412                 case WM_KEYDOWN:
5413                 {
5414                         SendMessage(hWnd, WM_CLOSE, 0, 0);
5415                         return 0;
5416                 }
5417
5418                 case WM_MOUSEMOVE:
5419                 {
5420                         if (iMouse)
5421                         {
5422                                 dx = LOWORD(lParam) - xMouse;
5423                                 dy = HIWORD(lParam) - yMouse;
5424
5425                                 if (dx < 0) dx = -dx;
5426                                 if (dy < 0) dy = -dy;
5427
5428                                 if ((dx > MOUSE_SENS) || (dy > MOUSE_SENS))
5429                                 {
5430                                         SendMessage(hWnd, WM_CLOSE, 0, 0);
5431                                 }
5432                         }
5433
5434                         /* Save last location */
5435                         iMouse = 1;
5436                         xMouse = LOWORD(lParam);
5437                         yMouse = HIWORD(lParam);
5438
5439                         return 0;
5440                 }
5441
5442                 case WM_CLOSE:
5443                 {
5444                         DestroyWindow(hwndSaver);
5445                         hwndSaver = NULL;
5446                         return 0;
5447                 }
5448         }
5449
5450         /* Oops */
5451         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5452 }
5453
5454 #endif /* USE_SAVER */
5455
5456
5457
5458
5459
5460 /*** Temporary Hooks ***/
5461
5462
5463 /*
5464  * Display warning message (see "z-util.c")
5465  */
5466 static void hack_plog(cptr str)
5467 {
5468         /* Give a warning */
5469         if (str)
5470         {
5471 #ifdef JP
5472                 MessageBox(NULL, str, "·Ù¹ð¡ª",
5473                            MB_ICONEXCLAMATION | MB_OK);
5474 #else
5475                 MessageBox(NULL, str, "Warning",
5476                            MB_ICONEXCLAMATION | MB_OK);
5477 #endif
5478
5479         }
5480 }
5481
5482
5483 /*
5484  * Display error message and quit (see "z-util.c")
5485  */
5486 static void hack_quit(cptr str)
5487 {
5488         /* Give a warning */
5489         if (str)
5490         {
5491 #ifdef JP
5492                 MessageBox(NULL, str, "¥¨¥é¡¼¡ª",
5493                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5494 #else
5495                 MessageBox(NULL, str, "Error",
5496                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5497 #endif
5498
5499         }
5500
5501         /* Unregister the classes */
5502         UnregisterClass(AppName, hInstance);
5503
5504         /* Destroy the icon */
5505         if (hIcon) DestroyIcon(hIcon);
5506
5507         /* Exit */
5508         exit(0);
5509 }
5510
5511
5512
5513 /*** Various hooks ***/
5514
5515
5516 /*
5517  * Display warning message (see "z-util.c")
5518  */
5519 static void hook_plog(cptr str)
5520 {
5521         /* Warning */
5522         if (str)
5523         {
5524 #ifdef JP
5525                 MessageBox(data[0].w, str, "·Ù¹ð¡ª",
5526                            MB_ICONEXCLAMATION | MB_OK);
5527 #else
5528                 MessageBox(data[0].w, str, "Warning",
5529                            MB_ICONEXCLAMATION | MB_OK);
5530 #endif
5531
5532         }
5533 }
5534
5535
5536 /*
5537  * Display error message and quit (see "z-util.c")
5538  */
5539 static void hook_quit(cptr str)
5540 {
5541         int i;
5542
5543
5544         /* Give a warning */
5545         if (str)
5546         {
5547 #ifdef JP
5548                 MessageBox(data[0].w, str, "¥¨¥é¡¼¡ª",
5549                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5550 #else
5551                 MessageBox(data[0].w, str, "Error",
5552                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5553 #endif
5554
5555         }
5556
5557
5558         /* Save the preferences */
5559         save_prefs();
5560
5561
5562         /*** Could use 'Term_nuke_win()' XXX XXX XXX */
5563
5564         /* Destroy all windows */
5565         for (i = MAX_TERM_DATA - 1; i >= 0; --i)
5566         {
5567                 term_force_font(&data[i], NULL);
5568                 if (data[i].font_want) string_free(data[i].font_want);
5569                 if (data[i].w) DestroyWindow(data[i].w);
5570                 data[i].w = 0;
5571         }
5572
5573         /* Free the bitmap stuff */
5574 #ifdef USE_GRAPHICS
5575         if (infGraph.hPalette) DeleteObject(infGraph.hPalette);
5576         if (infGraph.hBitmap) DeleteObject(infGraph.hBitmap);
5577
5578         if (infMask.hPalette) DeleteObject(infMask.hPalette);
5579         if (infMask.hBitmap) DeleteObject(infMask.hBitmap);
5580
5581 #endif /* USE_GRAPHICS */
5582
5583         /*** Free some other stuff ***/
5584
5585         DeleteObject(hbrYellow);
5586
5587         /* bg */
5588         delete_bg();
5589
5590         if (hPal) DeleteObject(hPal);
5591
5592         UnregisterClass(AppName, hInstance);
5593
5594         if (hIcon) DestroyIcon(hIcon);
5595
5596         exit(0);
5597 }
5598
5599
5600
5601 /*** Initialize ***/
5602
5603
5604 /*
5605  * Init some stuff
5606  */
5607 static void init_stuff(void)
5608 {
5609         int i;
5610
5611         char path[1024];
5612
5613
5614         /* Get program name with full path */
5615         GetModuleFileName(hInstance, path, 512);
5616
5617         /* Save the "program name" XXX XXX XXX */
5618         argv0 = path;
5619
5620         /* Get the name of the "*.ini" file */
5621         strcpy(path + strlen(path) - 4, ".INI");
5622
5623         /* Save the the name of the ini-file */
5624         ini_file = string_make(path);
5625
5626         /* Analyze the path */
5627         i = strlen(path);
5628
5629         /* Get the path */
5630         for (; i > 0; i--)
5631         {
5632                 if (path[i] == '\\')
5633                 {
5634                         /* End of path */
5635                         break;
5636                 }
5637         }
5638
5639         /* Add "lib" to the path */
5640         strcpy(path + i + 1, "lib\\");
5641
5642         /* Validate the path */
5643         validate_dir(path, TRUE);
5644
5645         /* Init the file paths */
5646         init_file_paths(path);
5647
5648         /* Hack -- Validate the paths */
5649         validate_dir(ANGBAND_DIR_APEX, FALSE);
5650         validate_dir(ANGBAND_DIR_BONE, FALSE);
5651
5652         /* Allow missing 'edit' directory */
5653         if (!check_dir(ANGBAND_DIR_EDIT))
5654         {
5655                 /* Must have 'data'! */
5656                 validate_dir(ANGBAND_DIR_DATA, TRUE);
5657         }
5658         else
5659         {
5660                 /* Don't need 'data' */
5661                 validate_dir(ANGBAND_DIR_DATA, FALSE);
5662         }
5663
5664         validate_dir(ANGBAND_DIR_FILE, TRUE);
5665         validate_dir(ANGBAND_DIR_HELP, FALSE);
5666         validate_dir(ANGBAND_DIR_INFO, FALSE);
5667         validate_dir(ANGBAND_DIR_PREF, TRUE);
5668         validate_dir(ANGBAND_DIR_SAVE, FALSE);
5669         validate_dir(ANGBAND_DIR_USER, TRUE);
5670         validate_dir(ANGBAND_DIR_XTRA, TRUE);
5671
5672         /* Build the filename */
5673 #ifdef JP
5674         path_build(path, sizeof(path), ANGBAND_DIR_FILE, "news_j.txt");
5675 #else
5676         path_build(path, sizeof(path), ANGBAND_DIR_FILE, "news.txt");
5677 #endif
5678
5679
5680         /* Hack -- Validate the "news.txt" file */
5681         validate_file(path);
5682
5683
5684 #if 0 /* #ifndef JP */
5685         /* Build the "font" path */
5686         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "font");
5687
5688         /* Allocate the path */
5689         ANGBAND_DIR_XTRA_FONT = string_make(path);
5690
5691         /* Validate the "font" directory */
5692         validate_dir(ANGBAND_DIR_XTRA_FONT, TRUE);
5693
5694         /* Build the filename */
5695         path_build(path, sizeof(path), ANGBAND_DIR_XTRA_FONT, "8X13.FON");
5696
5697         /* Hack -- Validate the basic font */
5698         validate_file(path);
5699 #endif
5700
5701
5702 #ifdef USE_GRAPHICS
5703
5704         /* Build the "graf" path */
5705         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "graf");
5706
5707         /* Allocate the path */
5708         ANGBAND_DIR_XTRA_GRAF = string_make(path);
5709
5710         /* Validate the "graf" directory */
5711         validate_dir(ANGBAND_DIR_XTRA_GRAF, TRUE);
5712
5713 #endif /* USE_GRAPHICS */
5714
5715
5716 #ifdef USE_SOUND
5717
5718         /* Build the "sound" path */
5719         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "sound");
5720
5721         /* Allocate the path */
5722         ANGBAND_DIR_XTRA_SOUND = string_make(path);
5723
5724         /* Validate the "sound" directory */
5725         validate_dir(ANGBAND_DIR_XTRA_SOUND, FALSE);
5726
5727 #endif /* USE_SOUND */
5728
5729 #ifdef USE_MUSIC
5730
5731         /* Build the "music" path */
5732         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "music");
5733
5734         /* Allocate the path */
5735         ANGBAND_DIR_XTRA_MUSIC = string_make(path);
5736
5737         /* Validate the "music" directory */
5738         validate_dir(ANGBAND_DIR_XTRA_MUSIC, FALSE);
5739
5740 #endif /* USE_MUSIC */
5741
5742         /* Build the "help" path */
5743         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "help");
5744
5745         /* Allocate the path */
5746         ANGBAND_DIR_XTRA_HELP = string_make(path);
5747
5748         /* Validate the "help" directory */
5749         /* validate_dir(ANGBAND_DIR_XTRA_HELP); */
5750 }
5751
5752 bool is_already_running()
5753 {
5754         bool result = FALSE;
5755         HANDLE hMutex;
5756
5757         hMutex = CreateMutex(NULL, TRUE, VERSION_NAME);
5758         if (GetLastError() == ERROR_ALREADY_EXISTS)
5759         {
5760                 result = TRUE;
5761         }
5762         return result;
5763 }
5764
5765
5766 int FAR PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
5767                        LPSTR lpCmdLine, int nCmdShow)
5768 {
5769         int i;
5770
5771         WNDCLASS wc;
5772         HDC hdc;
5773         MSG msg;
5774
5775         setlocale( LC_ALL, "ja_JP" );
5776
5777         /* Unused */
5778         (void)nCmdShow;
5779
5780         /* Save globally */
5781         hInstance = hInst;
5782         
5783         
5784         /* Prevent multiple run */
5785         if (is_already_running())
5786         {
5787                 MessageBox(NULL,
5788                                 _("ÊѶòÈÚÅܤϤ¹¤Ç¤Ëµ¯Æ°¤·¤Æ¤¤¤Þ¤¹¡£", "Hengband is already running."), 
5789                                 _("¥¨¥é¡¼¡ª", "Error") ,
5790                                 MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5791                 return FALSE;
5792         }
5793
5794         /* Initialize */
5795         if (hPrevInst == NULL)
5796         {
5797                 wc.style         = CS_CLASSDC;
5798                 wc.lpfnWndProc   = AngbandWndProc;
5799                 wc.cbClsExtra    = 0;
5800                 wc.cbWndExtra    = 4; /* one long pointer to term_data */
5801                 wc.hInstance     = hInst;
5802                 wc.hIcon         = hIcon = LoadIcon(hInst, AppName);
5803                 wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
5804                 wc.hbrBackground = GetStockObject(BLACK_BRUSH);
5805                 wc.lpszMenuName  = AppName;
5806                 wc.lpszClassName = AppName;
5807
5808                 if (!RegisterClass(&wc)) exit(1);
5809
5810                 wc.lpfnWndProc   = AngbandListProc;
5811                 wc.lpszMenuName  = NULL;
5812                 wc.lpszClassName = AngList;
5813
5814                 if (!RegisterClass(&wc)) exit(2);
5815
5816 #ifdef USE_SAVER
5817
5818                 wc.style          = CS_VREDRAW | CS_HREDRAW | CS_SAVEBITS | CS_DBLCLKS;
5819                 wc.lpfnWndProc    = AngbandSaverProc;
5820                 wc.hCursor        = NULL;
5821                 wc.lpszMenuName   = NULL;
5822                 wc.lpszClassName  = "WindowsScreenSaverClass";
5823
5824                 if (!RegisterClass(&wc)) exit(3);
5825
5826 #endif
5827
5828         }
5829
5830         /* Temporary hooks */
5831         plog_aux = hack_plog;
5832         quit_aux = hack_quit;
5833         core_aux = hack_quit;
5834
5835         /* Prepare the filepaths */
5836         init_stuff();
5837
5838         /* Initialize the keypress analyzer */
5839         for (i = 0; special_key_list[i]; ++i)
5840         {
5841                 special_key[special_key_list[i]] = TRUE;
5842         }
5843         /* Initialize the keypress analyzer */
5844         for (i = 0; ignore_key_list[i]; ++i)
5845         {
5846                 ignore_key[ignore_key_list[i]] = TRUE;
5847         }
5848
5849         /* Determine if display is 16/256/true color */
5850         hdc = GetDC(NULL);
5851         colors16 = (GetDeviceCaps(hdc, BITSPIXEL) == 4);
5852         paletted = ((GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) ? TRUE : FALSE);
5853         ReleaseDC(NULL, hdc);
5854
5855         /* Initialize the colors */
5856         for (i = 0; i < 256; i++)
5857         {
5858                 byte rv, gv, bv;
5859
5860                 /* Extract desired values */
5861                 rv = angband_color_table[i][1];
5862                 gv = angband_color_table[i][2];
5863                 bv = angband_color_table[i][3];
5864
5865                 /* Extract the "complex" code */
5866                 win_clr[i] = PALETTERGB(rv, gv, bv);
5867
5868                 /* Save the "simple" code */
5869                 angband_color_table[i][0] = win_pal[i];
5870         }
5871
5872         /* Prepare the windows */
5873         init_windows();
5874
5875         /* bg */
5876         init_bg();
5877
5878         /* Activate hooks */
5879         plog_aux = hook_plog;
5880         quit_aux = hook_quit;
5881         core_aux = hook_quit;
5882
5883         /* Set the system suffix */
5884         ANGBAND_SYS = "win";
5885
5886         /* Set the keyboard suffix */
5887         if (7 != GetKeyboardType(0))
5888                 ANGBAND_KEYBOARD = "0";
5889         else
5890         {
5891                 /* Japanese keyboard */
5892                 switch (GetKeyboardType(1))
5893                 {
5894                 case 0x0D01: case 0x0D02:
5895                 case 0x0D03: case 0x0D04:
5896                 case 0x0D05: case 0x0D06:
5897                         /* NEC PC-98x1 */
5898                         ANGBAND_KEYBOARD = "NEC98";
5899                         break;
5900                 default:
5901                         /* PC/AT */
5902                         ANGBAND_KEYBOARD = "JAPAN";
5903                 }
5904         }
5905
5906         /* Catch nasty signals */
5907         signals_init();
5908
5909         /* Initialize */
5910         init_angband();
5911
5912         /* We are now initialized */
5913         initialized = TRUE;
5914 #ifdef CHUUKEI
5915         if(lpCmdLine[0] == '-'){
5916           switch(lpCmdLine[1])
5917           {
5918           case 'p':
5919           case 'P':
5920             {
5921               if (!lpCmdLine[2]) break;
5922               chuukei_server = TRUE;
5923               if(connect_chuukei_server(&lpCmdLine[2])<0){
5924                 msg_print("connect fail");
5925                 return 0;
5926               }
5927               msg_print("connect");
5928               msg_print(NULL);
5929               break;
5930             }
5931
5932           case 'c':
5933           case 'C':
5934             {
5935               if (!lpCmdLine[2]) break;
5936               chuukei_client = TRUE;
5937               connect_chuukei_server(&lpCmdLine[2]);
5938               play_game(FALSE);
5939               quit(NULL);
5940               return 0;
5941             }
5942           case 'X':
5943           case 'x':
5944             {
5945               if (!lpCmdLine[2]) break;
5946               prepare_browse_movie(&lpCmdLine[2]);
5947               play_game(FALSE);
5948               quit(NULL);
5949               return 0;
5950             }
5951           }
5952         }
5953 #endif
5954
5955 #ifdef CHUUKEI
5956         /* Did the user double click on a save file? */
5957         if(!chuukei_server) check_for_save_file(lpCmdLine);
5958 #else
5959         /* Did the user double click on a save file? */
5960         check_for_save_file(lpCmdLine);
5961 #endif
5962
5963         /* Prompt the user */
5964 #ifdef JP
5965         prt("[¥Õ¥¡¥¤¥ë] ¥á¥Ë¥å¡¼¤Î [¿·µ¬] ¤Þ¤¿¤Ï [³«¤¯] ¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£", 23, 8);
5966 #else
5967         prt("[Choose 'New' or 'Open' from the 'File' menu]", 23, 17);
5968 #endif
5969
5970         Term_fresh();
5971
5972         /* Process messages forever */
5973         while (GetMessage(&msg, NULL, 0, 0))
5974         {
5975                 TranslateMessage(&msg);
5976                 DispatchMessage(&msg);
5977         }
5978
5979         /* Paranoia */
5980         quit(NULL);
5981
5982         /* Paranoia */
5983         return (0);
5984 }
5985
5986
5987 #endif /* WINDOWS */
5988