OSDN Git Service

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