OSDN Git Service

Implementing choice music.
[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 = "MPEGVideo";      
2469         //mop.lpstrDeviceType = "WaveAudio";
2470         mop.lpstrElementName = buf;
2471         mciSendCommand(mop.wDeviceID, MCI_STOP, 0, 0);
2472         mciSendCommand(mop.wDeviceID, MCI_CLOSE, 0, 0);
2473         mciSendCommand(mop.wDeviceID, MCI_OPEN, MCI_OPEN_TYPE | MCI_OPEN_ELEMENT, (DWORD)&mop);
2474         mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
2475         mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
2476         return (0);
2477
2478 #else /* USE_MUSIC */
2479
2480         /* Oops */
2481         return (1);
2482
2483 #endif /* USE_MUSIC */
2484 }
2485
2486
2487 /*
2488  * Delay for "x" milliseconds
2489  */
2490 static int Term_xtra_win_delay(int v)
2491 {
2492
2493 #ifdef WIN32
2494
2495         /* Sleep */
2496         Sleep(v);
2497
2498 #else /* WIN32 */
2499
2500         DWORD t;
2501         MSG msg;
2502
2503         /* Final count */
2504         t = GetTickCount() + v;
2505
2506         /* Wait for it */
2507         while (GetTickCount() < t)
2508         {
2509                 /* Handle messages */
2510                 if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2511                 {
2512                         TranslateMessage(&msg);
2513                         DispatchMessage(&msg);
2514                 }
2515         }
2516
2517 #endif /* WIN32 */
2518
2519         /* Success */
2520         return (0);
2521 }
2522
2523
2524 /*
2525  * Do a "special thing"
2526  */
2527 static errr Term_xtra_win(int n, int v)
2528 {
2529         /* Handle a subset of the legal requests */
2530         switch (n)
2531         {
2532                 /* Make a bell sound */
2533                 case TERM_XTRA_NOISE:
2534                 {
2535                         return (Term_xtra_win_noise());
2536                 }
2537
2538                 /* Play a music */
2539                 case TERM_XTRA_MUSIC_BASIC:
2540                 {
2541                         return (Term_xtra_win_music(v));
2542                 }
2543
2544                 /* Make a special sound */
2545                 case TERM_XTRA_SOUND:
2546                 {
2547                         return (Term_xtra_win_sound(v));
2548                 }
2549
2550                 /* Process random events */
2551                 case TERM_XTRA_BORED:
2552                 {
2553                         return (Term_xtra_win_event(0));
2554                 }
2555
2556                 /* Process an event */
2557                 case TERM_XTRA_EVENT:
2558                 {
2559                         return (Term_xtra_win_event(v));
2560                 }
2561
2562                 /* Flush all events */
2563                 case TERM_XTRA_FLUSH:
2564                 {
2565                         return (Term_xtra_win_flush());
2566                 }
2567
2568                 /* Clear the screen */
2569                 case TERM_XTRA_CLEAR:
2570                 {
2571                         return (Term_xtra_win_clear());
2572                 }
2573
2574                 /* React to global changes */
2575                 case TERM_XTRA_REACT:
2576                 {
2577                         return (Term_xtra_win_react());
2578                 }
2579
2580                 /* Delay for some milliseconds */
2581                 case TERM_XTRA_DELAY:
2582                 {
2583                         return (Term_xtra_win_delay(v));
2584                 }
2585         }
2586
2587         /* Oops */
2588         return 1;
2589 }
2590
2591
2592
2593 /*
2594  * Low level graphics (Assumes valid input).
2595  *
2596  * Draw a "cursor" at (x,y), using a "yellow box".
2597  */
2598 static errr Term_curs_win(int x, int y)
2599 {
2600         term_data *td = (term_data*)(Term->data);
2601
2602         RECT rc;
2603         HDC hdc;
2604
2605         int tile_wid, tile_hgt;
2606
2607         if (td->map_active)
2608         {
2609                 tile_wid = td->map_tile_wid;
2610                 tile_hgt = td->map_tile_hgt;
2611         }
2612         else
2613         {
2614                 tile_wid = td->tile_wid;
2615                 tile_hgt = td->tile_hgt;
2616         }
2617
2618         /* Frame the grid */
2619         rc.left = x * tile_wid + td->size_ow1;
2620         rc.right = rc.left + tile_wid;
2621         rc.top = y * tile_hgt + td->size_oh1;
2622         rc.bottom = rc.top + tile_hgt;
2623
2624         /* Cursor is done as a yellow "box" */
2625         hdc = GetDC(td->w);
2626         FrameRect(hdc, &rc, hbrYellow);
2627         ReleaseDC(td->w, hdc);
2628
2629         /* Success */
2630         return 0;
2631 }
2632
2633
2634 /*
2635  * Low level graphics (Assumes valid input).
2636  *
2637  * Draw a "big cursor" at (x,y), using a "yellow box".
2638  */
2639 static errr Term_bigcurs_win(int x, int y)
2640 {
2641         term_data *td = (term_data*)(Term->data);
2642
2643         RECT rc;
2644         HDC hdc;
2645
2646         int tile_wid, tile_hgt;
2647
2648         if (td->map_active)
2649         {
2650                 /* Normal cursor in map window */
2651                 Term_curs_win(x, y);
2652                 return 0;
2653         }
2654         else
2655         {
2656                 tile_wid = td->tile_wid;
2657                 tile_hgt = td->tile_hgt;
2658         }
2659
2660         /* Frame the grid */
2661         rc.left = x * tile_wid + td->size_ow1;
2662         rc.right = rc.left + 2 * tile_wid;
2663         rc.top = y * tile_hgt + td->size_oh1;
2664         rc.bottom = rc.top + tile_hgt;
2665
2666         /* Cursor is done as a yellow "box" */
2667         hdc = GetDC(td->w);
2668         FrameRect(hdc, &rc, hbrYellow);
2669         ReleaseDC(td->w, hdc);
2670
2671         /* Success */
2672         return 0;
2673 }
2674
2675
2676 /*
2677  * Low level graphics (Assumes valid input).
2678  *
2679  * Erase a "block" of "n" characters starting at (x,y).
2680  */
2681 static errr Term_wipe_win(int x, int y, int n)
2682 {
2683         term_data *td = (term_data*)(Term->data);
2684
2685         HDC hdc;
2686         RECT rc;
2687
2688         /* Rectangle to erase in client coords */
2689         rc.left = x * td->tile_wid + td->size_ow1;
2690         rc.right = rc.left + n * td->tile_wid;
2691         rc.top = y * td->tile_hgt + td->size_oh1;
2692         rc.bottom = rc.top + td->tile_hgt;
2693
2694         hdc = GetDC(td->w);
2695         SetBkColor(hdc, RGB(0, 0, 0));
2696         SelectObject(hdc, td->font_id);
2697         /* bg */
2698         if (use_bg)
2699                 DrawBG(hdc, &rc);
2700         else
2701                 ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
2702         ReleaseDC(td->w, hdc);
2703
2704         /* Success */
2705         return 0;
2706 }
2707
2708
2709 /*
2710  * Low level graphics.  Assumes valid input.
2711  *
2712  * Draw several ("n") chars, with an attr, at a given location.
2713  *
2714  * All "graphic" data is handled by "Term_pict_win()", below.
2715  *
2716  * One would think there is a more efficient method for telling a window
2717  * what color it should be using to draw with, but perhaps simply changing
2718  * it every time is not too inefficient.  XXX XXX XXX
2719  */
2720 static errr Term_text_win(int x, int y, int n, byte a, const char *s)
2721 {
2722         term_data *td = (term_data*)(Term->data);
2723         RECT rc;
2724         HDC hdc;
2725
2726 #if 1 /* #ifdef JP */
2727         static HBITMAP  WALL;
2728         static HBRUSH   myBrush, oldBrush;
2729         static HPEN     oldPen;
2730         static bool init_done = FALSE;
2731
2732         if (!init_done){
2733                 WALL = LoadBitmap(hInstance, AppName);
2734                 myBrush = CreatePatternBrush(WALL);
2735                 init_done = TRUE;
2736         }
2737 #endif
2738
2739         /* Total rectangle */
2740         rc.left = x * td->tile_wid + td->size_ow1;
2741         rc.right = rc.left + n * td->tile_wid;
2742         rc.top = y * td->tile_hgt + td->size_oh1;
2743         rc.bottom = rc.top + td->tile_hgt;
2744
2745         /* Acquire DC */
2746         hdc = GetDC(td->w);
2747
2748         /* Background color */
2749         SetBkColor(hdc, RGB(0, 0, 0));
2750
2751         /* Foreground color */
2752         if (colors16)
2753         {
2754                 SetTextColor(hdc, PALETTEINDEX(win_pal[a]));
2755         }
2756         else if (paletted)
2757         {
2758                 SetTextColor(hdc, win_clr[a&0x0F]);
2759         }
2760         else
2761         {
2762                 SetTextColor(hdc, win_clr[a]);
2763         }
2764
2765         /* Use the font */
2766         SelectObject(hdc, td->font_id);
2767         
2768         /* bg */
2769         if (use_bg) SetBkMode(hdc, TRANSPARENT);
2770
2771         /* Bizarre size */
2772         if (td->bizarre ||
2773             (td->tile_hgt != td->font_hgt) ||
2774             (td->tile_wid != td->font_wid))
2775         {
2776                 int i;
2777
2778                 /* Erase complete rectangle */
2779                 ExtTextOut(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
2780                 
2781                 /* bg */
2782                 if (use_bg) DrawBG(hdc, &rc);
2783
2784                 /* New rectangle */
2785                 rc.left += ((td->tile_wid - td->font_wid) / 2);
2786                 rc.right = rc.left + td->font_wid;
2787                 rc.top += ((td->tile_hgt - td->font_hgt) / 2);
2788                 rc.bottom = rc.top + td->font_hgt;
2789
2790                 /* Dump each character */
2791                 for (i = 0; i < n; i++)
2792                 {
2793 #ifdef JP
2794                         if (use_bigtile && *(s+i)=="¢£"[0] && *(s+i+1)=="¢£"[1])
2795                         {
2796                                 rc.right += td->font_wid;
2797
2798                                 oldBrush = SelectObject(hdc, myBrush);
2799                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2800
2801                                 /* Dump the wall */
2802                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
2803
2804                                 SelectObject(hdc, oldBrush);
2805                                 SelectObject(hdc, oldPen);
2806                                 rc.right -= td->font_wid;
2807
2808                                 /* Advance */
2809                                 i++;
2810                                 rc.left += 2 * td->tile_wid;
2811                                 rc.right += 2 * td->tile_wid;
2812                         }
2813                         else if ( iskanji(*(s+i)) )  /*  £²¥Ð¥¤¥Èʸ»ú  */
2814                         {
2815                                 rc.right += td->font_wid;
2816                                 /* Dump the text */
2817                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc,
2818                                        s+i, 2, NULL);
2819                                 rc.right -= td->font_wid;
2820
2821                                 /* Advance */
2822                                 i++;
2823                                 rc.left += 2 * td->tile_wid;
2824                                 rc.right += 2 * td->tile_wid;
2825                         } else if (*(s+i)==127){
2826                                 oldBrush = SelectObject(hdc, myBrush);
2827                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2828
2829                                 /* Dump the wall */
2830                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
2831
2832                                 SelectObject(hdc, oldBrush);
2833                                 SelectObject(hdc, oldPen);
2834
2835                                 /* Advance */
2836                                 rc.left += td->tile_wid;
2837                                 rc.right += td->tile_wid;
2838                         } else {
2839                                 /* Dump the text */
2840                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc, s+i, 1, NULL);
2841
2842                                 /* Advance */
2843                                 rc.left += td->tile_wid;
2844                                 rc.right += td->tile_wid;
2845                         }
2846 #else
2847 #if 1
2848                         if (*(s+i)==127){
2849                                 oldBrush = SelectObject(hdc, myBrush);
2850                                 oldPen = SelectObject(hdc, GetStockObject(NULL_PEN) );
2851
2852                                 /* Dump the wall */
2853                                 Rectangle(hdc, rc.left, rc.top, rc.right+1, rc.bottom+1);
2854
2855                                 SelectObject(hdc, oldBrush);
2856                                 SelectObject(hdc, oldPen);
2857
2858                                 /* Advance */
2859                                 rc.left += td->tile_wid;
2860                                 rc.right += td->tile_wid;
2861                         } else {
2862                                 /* Dump the text */
2863                                 ExtTextOut(hdc, rc.left, rc.top, ETO_CLIPPED, &rc,
2864                                        s+i, 1, NULL);
2865
2866                                 /* Advance */
2867                                 rc.left += td->tile_wid;
2868                                 rc.right += td->tile_wid;
2869                         }
2870 #else
2871                         /* Dump the text */
2872                         ExtTextOut(hdc, rc.left, rc.top, 0, &rc,
2873                                    s+i, 1, NULL);
2874
2875                         /* Advance */
2876                         rc.left += td->tile_wid;
2877                         rc.right += td->tile_wid;
2878 #endif
2879 #endif
2880
2881                 }
2882         }
2883
2884         /* Normal size */
2885         else
2886         {
2887                 /* Dump the text */
2888                 ExtTextOut(hdc, rc.left, rc.top, ETO_OPAQUE | ETO_CLIPPED, &rc,
2889                            s, n, NULL);
2890         }
2891
2892         /* Release DC */
2893         ReleaseDC(td->w, hdc);
2894
2895         /* Success */
2896         return 0;
2897 }
2898
2899
2900 /*
2901  * Low level graphics.  Assumes valid input.
2902  *
2903  * Draw an array of "special" attr/char pairs at the given location.
2904  *
2905  * We use the "Term_pict_win()" function for "graphic" data, which are
2906  * encoded by setting the "high-bits" of both the "attr" and the "char"
2907  * data.  We use the "attr" to represent the "row" of the main bitmap,
2908  * and the "char" to represent the "col" of the main bitmap.  The use
2909  * of this function is induced by the "higher_pict" flag.
2910  *
2911  * If "graphics" is not available, we simply "wipe" the given grids.
2912  */
2913 static errr Term_pict_win(int x, int y, int n, const byte *ap, const char *cp, const byte *tap, const char *tcp)
2914 {
2915         term_data *td = (term_data*)(Term->data);
2916
2917 #ifdef USE_GRAPHICS
2918
2919         int i;
2920         int x1, y1, w1, h1;
2921         int x2, y2, w2, h2, tw2;
2922         int x3, y3;
2923
2924         HDC hdcMask;
2925
2926         HDC hdc;
2927         HDC hdcSrc;
2928         HBITMAP hbmSrcOld;
2929
2930         /* Paranoia */
2931         if (!use_graphics)
2932         {
2933                 /* Erase the grids */
2934                 return (Term_wipe_win(x, y, n));
2935         }
2936
2937         /* Size of bitmap cell */
2938         w1 = infGraph.CellWidth;
2939         h1 = infGraph.CellHeight;
2940
2941         /* Size of window cell */
2942         if (td->map_active)
2943         {
2944                 w2 = td->map_tile_wid;
2945                 h2 = td->map_tile_hgt;
2946         }
2947         else
2948         {
2949                 w2 = td->tile_wid;
2950                 h2 = td->tile_hgt;
2951                 tw2 = w2;
2952
2953                 /* big tile mode */
2954                 if (use_bigtile) tw2 *= 2;
2955         }
2956
2957         /* Location of window cell */
2958         x2 = x * w2 + td->size_ow1;
2959         y2 = y * h2 + td->size_oh1;
2960
2961         /* Info */
2962         hdc = GetDC(td->w);
2963
2964         /* More info */
2965         hdcSrc = CreateCompatibleDC(hdc);
2966         hbmSrcOld = SelectObject(hdcSrc, infGraph.hBitmap);
2967
2968         if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
2969         {
2970                 hdcMask = CreateCompatibleDC(hdc);
2971                 SelectObject(hdcMask, infMask.hBitmap);
2972         }
2973
2974         /* Draw attr/char pairs */
2975         for (i = 0; i < n; i++, x2 += w2)
2976         {
2977                 byte a = ap[i];
2978                 char c = cp[i];
2979
2980                 /* Extract picture */
2981                 int row = (a & 0x7F);
2982                 int col = (c & 0x7F);
2983
2984                 /* Location of bitmap cell */
2985                 x1 = col * w1;
2986                 y1 = row * h1;
2987
2988                 if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
2989                 {
2990                         x3 = (tcp[i] & 0x7F) * w1;
2991                         y3 = (tap[i] & 0x7F) * h1;
2992
2993                         /* Perfect size */
2994                         if ((w1 == tw2) && (h1 == h2))
2995                         {
2996                                 /* Copy the terrain picture from the bitmap to the window */
2997                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, SRCCOPY);
2998
2999                                 /* Mask out the tile */
3000                                 BitBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, SRCAND);
3001
3002                                 /* Draw the tile */
3003                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCPAINT);
3004                         }
3005
3006                         /* Need to stretch */
3007                         else
3008                         {
3009                                 /* Set the correct mode for stretching the tiles */
3010                                 SetStretchBltMode(hdc, COLORONCOLOR);
3011
3012                                 /* Copy the terrain picture from the bitmap to the window */
3013                                 StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x3, y3, w1, h1, SRCCOPY);
3014
3015                                 /* Only draw if terrain and overlay are different */
3016                                 if ((x1 != x3) || (y1 != y3))
3017                                 {
3018                                         /* Mask out the tile */
3019                                         StretchBlt(hdc, x2, y2, tw2, h2, hdcMask, x1, y1, w1, h1, SRCAND);
3020
3021                                         /* Draw the tile */
3022                                         StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCPAINT);
3023                                 }
3024                         }
3025                 }
3026                 else
3027                 {
3028                         /* Perfect size */
3029                         if ((w1 == tw2) && (h1 == h2))
3030                         {
3031                                 /* Copy the picture from the bitmap to the window */
3032                                 BitBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, SRCCOPY);
3033                         }
3034
3035                         /* Need to stretch */
3036                         else
3037                         {
3038                                 /* Set the correct mode for stretching the tiles */
3039                                 SetStretchBltMode(hdc, COLORONCOLOR);
3040
3041                                 /* Copy the picture from the bitmap to the window */
3042                                 StretchBlt(hdc, x2, y2, tw2, h2, hdcSrc, x1, y1, w1, h1, SRCCOPY);
3043                         }
3044                 }
3045         }
3046
3047         /* Release */
3048         SelectObject(hdcSrc, hbmSrcOld);
3049         DeleteDC(hdcSrc);
3050
3051         if (arg_graphics == GRAPHICS_ADAM_BOLT || arg_graphics == GRAPHICS_HENGBAND)
3052         {
3053                 /* Release */
3054                 SelectObject(hdcMask, hbmSrcOld);
3055                 DeleteDC(hdcMask);
3056         }
3057
3058         /* Release */
3059         ReleaseDC(td->w, hdc);
3060
3061 #else /* USE_GRAPHICS */
3062
3063         /* Just erase this grid */
3064         return (Term_wipe_win(x, y, n));
3065
3066 #endif /* USE_GRAPHICS */
3067
3068         /* Success */
3069         return 0;
3070 }
3071
3072
3073 static void windows_map(void)
3074 {
3075         term_data *td = &data[0];
3076         byte a, c;
3077         int x, min_x, max_x;
3078         int y, min_y, max_y;
3079
3080         byte ta, tc;
3081
3082         /* Only in graphics mode */
3083         if (!use_graphics) return;
3084
3085         /* Clear screen */
3086         Term_xtra_win_clear();
3087
3088         td->map_tile_wid = (td->tile_wid * td->cols) / MAX_WID;
3089         td->map_tile_hgt = (td->tile_hgt * td->rows) / MAX_HGT;
3090         td->map_active = TRUE;
3091
3092         {
3093                 min_x = 0;
3094                 min_y = 0;
3095                 max_x = cur_wid;
3096                 max_y = cur_hgt;
3097         }
3098
3099         /* Draw the map */
3100         for (x = min_x; x < max_x; x++)
3101         {
3102                 for (y = min_y; y < max_y; y++)
3103                 {
3104                         map_info(y, x, &a, (char*)&c, &ta, (char*)&tc);
3105
3106                         /* Ignore non-graphics */
3107                         if ((a & 0x80) && (c & 0x80))
3108                         {
3109                                 Term_pict_win(x - min_x, y - min_y, 1, &a, &c, &ta, &tc);
3110                         }
3111                 }
3112         }
3113
3114         /* Hilite the player */
3115         Term_curs_win(px - min_x, py - min_y);
3116
3117         /* Wait for a keypress, flush key buffer */
3118         Term_inkey(&c, TRUE, TRUE);
3119         Term_flush();
3120
3121         /* Switch off the map display */
3122         td->map_active = FALSE;
3123
3124         /* Restore screen */
3125         Term_xtra_win_clear();
3126         Term_redraw();
3127 }
3128
3129
3130 /*** Other routines ***/
3131
3132
3133 /*
3134  * Create and initialize a "term_data" given a title
3135  */
3136 static void term_data_link(term_data *td)
3137 {
3138         term *t = &td->t;
3139
3140         /* Initialize the term */
3141         term_init(t, td->cols, td->rows, td->keys);
3142
3143         /* Use a "software" cursor */
3144         t->soft_cursor = TRUE;
3145
3146         /* Use "Term_pict" for "graphic" data */
3147         t->higher_pict = TRUE;
3148
3149         /* Erase with "white space" */
3150         t->attr_blank = TERM_WHITE;
3151         t->char_blank = ' ';
3152
3153 #if 0
3154         /* Prepare the init/nuke hooks */
3155         t->init_hook = Term_init_win;
3156         t->nuke_hook = Term_nuke_win;
3157 #endif
3158
3159         /* Prepare the template hooks */
3160         t->user_hook = Term_user_win;
3161         t->xtra_hook = Term_xtra_win;
3162         t->curs_hook = Term_curs_win;
3163         t->bigcurs_hook = Term_bigcurs_win;
3164         t->wipe_hook = Term_wipe_win;
3165         t->text_hook = Term_text_win;
3166         t->pict_hook = Term_pict_win;
3167
3168         /* Remember where we came from */
3169         t->data = (vptr)(td);
3170 }
3171
3172
3173 /*
3174  * Create the windows
3175  *
3176  * First, instantiate the "default" values, then read the "ini_file"
3177  * to over-ride selected values, then create the windows, and fonts.
3178  *
3179  * Must use SW_SHOW not SW_SHOWNA, since on 256 color display
3180  * must make active to realize the palette.  XXX XXX XXX
3181  */
3182 static void init_windows(void)
3183 {
3184         int i;
3185
3186         term_data *td;
3187
3188 #if 0 /* #ifndef JP */
3189         char buf[1024];
3190 #endif
3191
3192         /* Main window */
3193         td = &data[0];
3194         WIPE(td, term_data);
3195 #ifdef JP
3196         td->s = "ÊѶòÈÚÅÜ";
3197 #else
3198         td->s = angband_term_name[0];
3199 #endif
3200
3201         td->keys = 1024;
3202         td->rows = 24;
3203         td->cols = 80;
3204         td->visible = TRUE;
3205         td->size_ow1 = 2;
3206         td->size_ow2 = 2;
3207         td->size_oh1 = 2;
3208         td->size_oh2 = 2;
3209         td->pos_x = 7 * 30;
3210         td->pos_y = 7 * 20;
3211         td->posfix = FALSE;
3212 #if 1 /* #ifdef JP */
3213         td->bizarre = TRUE;
3214 #endif
3215         /* Sub windows */
3216         for (i = 1; i < MAX_TERM_DATA; i++)
3217         {
3218                 td = &data[i];
3219                 WIPE(td, term_data);
3220                 td->s = angband_term_name[i];
3221                 td->keys = 16;
3222                 td->rows = 24;
3223                 td->cols = 80;
3224                 td->visible = FALSE;
3225                 td->size_ow1 = 1;
3226                 td->size_ow2 = 1;
3227                 td->size_oh1 = 1;
3228                 td->size_oh2 = 1;
3229                 td->pos_x = (7 - i) * 30;
3230                 td->pos_y = (7 - i) * 20;
3231                 td->posfix = FALSE;
3232 #if 1 /* #ifdef JP */
3233                         td->bizarre = TRUE;
3234 #endif
3235         }
3236
3237
3238         /* Load prefs */
3239         load_prefs();
3240
3241
3242         /* Main window (need these before term_getsize gets called) */
3243         td = &data[0];
3244         td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU |
3245                        WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION |
3246                        WS_VISIBLE);
3247         td->dwExStyle = 0;
3248         td->visible = TRUE;
3249
3250         /* Sub windows (need these before term_getsize gets called) */
3251         for (i = 1; i < MAX_TERM_DATA; i++)
3252         {
3253                 td = &data[i];
3254                 td->dwStyle = (WS_OVERLAPPED | WS_THICKFRAME | WS_SYSMENU);
3255                 td->dwExStyle = (WS_EX_TOOLWINDOW);
3256         }
3257
3258
3259         /* All windows */
3260         for (i = 0; i < MAX_TERM_DATA; i++)
3261         {
3262                 td = &data[i];
3263
3264 #if 1 /* #ifdef JP */
3265                 strncpy(td->lf.lfFaceName, td->font_want, LF_FACESIZE);
3266                 td->lf.lfCharSet = DEFAULT_CHARSET;
3267                 td->lf.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
3268                 /* Activate the chosen font */
3269                 term_force_font(td, NULL);
3270                 td->tile_wid = td->font_wid;
3271                 td->tile_hgt = td->font_hgt;
3272 #else
3273                 /* Access the standard font file */
3274                 path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_FONT, td->font_want);
3275
3276                 /* Activate the chosen font */
3277                 if (term_force_font(td, buf))
3278                 {
3279                         /* Access the standard font file */
3280                         path_build(buf, sizeof(buf), ANGBAND_DIR_XTRA_FONT, "8X13.FON");
3281
3282                         /* Force the use of that font */
3283                         (void)term_force_font(td, buf);
3284
3285                         /* Oops */
3286                         td->tile_wid = 8;
3287                         td->tile_hgt = 13;
3288
3289                         /* Assume not bizarre */
3290                         td->bizarre = FALSE;
3291                 }
3292 #endif
3293
3294
3295                 /* Analyze the font */
3296                 term_getsize(td);
3297
3298                 /* Resize the window */
3299                 term_window_resize(td);
3300         }
3301
3302
3303         /* Sub windows (reverse order) */
3304         for (i = MAX_TERM_DATA - 1; i >= 1; --i)
3305         {
3306                 td = &data[i];
3307
3308                 my_td = td;
3309                 td->w = CreateWindowEx(td->dwExStyle, AngList,
3310                                        td->s, td->dwStyle,
3311                                        td->pos_x, td->pos_y,
3312                                        td->size_wid, td->size_hgt,
3313                                        HWND_DESKTOP, NULL, hInstance, NULL);
3314                 my_td = NULL;
3315 #ifdef JP
3316                 if (!td->w) quit("¥µ¥Ö¥¦¥£¥ó¥É¥¦¤ËºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿");
3317 #else
3318                 if (!td->w) quit("Failed to create sub-window");
3319 #endif
3320
3321
3322                 if (td->visible)
3323                 {
3324                         td->size_hack = TRUE;
3325                         ShowWindow(td->w, SW_SHOW);
3326                         td->size_hack = FALSE;
3327                 }
3328
3329                 term_data_link(td);
3330                 angband_term[i] = &td->t;
3331
3332                 if (td->visible)
3333                 {
3334                         /* Activate the window */
3335                         SetActiveWindow(td->w);
3336                 }
3337
3338                 if (data[i].posfix)
3339                 {
3340                         term_window_pos(&data[i], HWND_TOPMOST);
3341                 }
3342                 else
3343                 {
3344                         term_window_pos(&data[i], td->w);
3345                 }
3346         }
3347
3348
3349         /* Main window */
3350         td = &data[0];
3351
3352         /* Main window */
3353         my_td = td;
3354         td->w = CreateWindowEx(td->dwExStyle, AppName,
3355                                td->s, td->dwStyle,
3356                                td->pos_x, td->pos_y,
3357                                td->size_wid, td->size_hgt,
3358                                HWND_DESKTOP, NULL, hInstance, NULL);
3359         my_td = NULL;
3360 #ifdef JP
3361         if (!td->w) quit("¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿");
3362 #else
3363         if (!td->w) quit("Failed to create Angband window");
3364 #endif
3365
3366
3367         term_data_link(td);
3368         angband_term[0] = &td->t;
3369         normsize.x = td->cols;
3370         normsize.y = td->rows;
3371
3372         /* Activate the main window */
3373         if (win_maximized) ShowWindow(td->w, SW_SHOWMAXIMIZED);
3374         else ShowWindow(td->w, SW_SHOW);
3375
3376         /* Bring main window back to top */
3377         SetWindowPos(td->w, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
3378
3379
3380         /* New palette XXX XXX XXX */
3381         (void)new_palette();
3382
3383
3384         /* Create a "brush" for drawing the "cursor" */
3385         hbrYellow = CreateSolidBrush(win_clr[TERM_YELLOW]);
3386
3387
3388         /* Process pending messages */
3389         (void)Term_xtra_win_flush();
3390 }
3391
3392
3393
3394 /*
3395  * Prepare the menus
3396  */
3397 static void setup_menus(void)
3398 {
3399         int i;
3400
3401         HMENU hm = GetMenu(data[0].w);
3402
3403
3404         /* Menu "File", Disable all */
3405         EnableMenuItem(hm, IDM_FILE_NEW,
3406                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3407         EnableMenuItem(hm, IDM_FILE_OPEN,
3408                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3409         EnableMenuItem(hm, IDM_FILE_SAVE,
3410                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3411         EnableMenuItem(hm, IDM_FILE_EXIT,
3412                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3413         EnableMenuItem(hm, IDM_FILE_SCORE,
3414                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3415
3416
3417         /* No character available */
3418         if (!character_generated)
3419         {
3420                 /* Menu "File", Item "New" */
3421                 EnableMenuItem(hm, IDM_FILE_NEW, MF_BYCOMMAND | MF_ENABLED);
3422
3423                 /* Menu "File", Item "Open" */
3424                 EnableMenuItem(hm, IDM_FILE_OPEN, MF_BYCOMMAND | MF_ENABLED);
3425         }
3426
3427         /* A character available */
3428         if (character_generated)
3429         {
3430                 /* Menu "File", Item "Save" */
3431                 EnableMenuItem(hm, IDM_FILE_SAVE,
3432                            MF_BYCOMMAND | MF_ENABLED);
3433         }
3434
3435         /* Menu "File", Item "Exit" */
3436         EnableMenuItem(hm, IDM_FILE_EXIT,
3437                        MF_BYCOMMAND | MF_ENABLED);
3438
3439         EnableMenuItem(hm, IDM_FILE_SCORE,
3440                        MF_BYCOMMAND | MF_ENABLED);
3441
3442
3443         /* Menu "Window::Visibility" */
3444         for (i = 0; i < MAX_TERM_DATA; i++)
3445         {
3446                 EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3447                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3448
3449                 CheckMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3450                               (data[i].visible ? MF_CHECKED : MF_UNCHECKED));
3451
3452                 EnableMenuItem(hm, IDM_WINDOW_VIS_0 + i,
3453                                MF_BYCOMMAND | MF_ENABLED);
3454         }
3455
3456         /* Menu "Window::Font" */
3457         for (i = 0; i < MAX_TERM_DATA; i++)
3458         {
3459                 EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i,
3460                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3461
3462                 if (data[i].visible)
3463                 {
3464                         EnableMenuItem(hm, IDM_WINDOW_FONT_0 + i,
3465                                        MF_BYCOMMAND | MF_ENABLED);
3466                 }
3467         }
3468
3469         /* Menu "Window::Window Position Fix" */
3470         for (i = 0; i < MAX_TERM_DATA; i++)
3471         {
3472                 EnableMenuItem(hm, IDM_WINDOW_POS_0 + i,
3473                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3474
3475                 CheckMenuItem(hm, IDM_WINDOW_POS_0 + i,
3476                               (data[i].posfix ? MF_CHECKED : MF_UNCHECKED));
3477
3478                 if (data[i].visible)
3479                 {
3480                         EnableMenuItem(hm, IDM_WINDOW_POS_0 + i,
3481                                        MF_BYCOMMAND | MF_ENABLED);
3482                 }
3483         }
3484
3485         /* Menu "Window::Bizarre Display" */
3486         for (i = 0; i < MAX_TERM_DATA; i++)
3487         {
3488                 EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3489                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3490
3491                 CheckMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3492                               (data[i].bizarre ? MF_CHECKED : MF_UNCHECKED));
3493
3494                 if (data[i].visible)
3495                 {
3496                         EnableMenuItem(hm, IDM_WINDOW_BIZ_0 + i,
3497                                    MF_BYCOMMAND | MF_ENABLED);
3498
3499                 }
3500         }
3501
3502         /* Menu "Window::Increase Tile Width" */
3503         for (i = 0; i < MAX_TERM_DATA; i++)
3504         {
3505                 EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i,
3506                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3507
3508                 if (data[i].visible)
3509                 {
3510                         EnableMenuItem(hm, IDM_WINDOW_I_WID_0 + i,
3511                                    MF_BYCOMMAND | MF_ENABLED);
3512
3513                 }
3514         }
3515
3516         /* Menu "Window::Decrease Tile Width" */
3517         for (i = 0; i < MAX_TERM_DATA; i++)
3518         {
3519                 EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i,
3520                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3521
3522                 if (data[i].visible)
3523                 {
3524                         EnableMenuItem(hm, IDM_WINDOW_D_WID_0 + i,
3525                                    MF_BYCOMMAND | MF_ENABLED);
3526
3527                 }
3528         }
3529
3530         /* Menu "Window::Increase Tile Height" */
3531         for (i = 0; i < MAX_TERM_DATA; i++)
3532         {
3533                 EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i,
3534                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3535
3536                 if (data[i].visible)
3537                 {
3538                         EnableMenuItem(hm, IDM_WINDOW_I_HGT_0 + i,
3539                                    MF_BYCOMMAND | MF_ENABLED);
3540
3541                 }
3542         }
3543
3544         /* Menu "Window::Decrease Tile Height" */
3545         for (i = 0; i < MAX_TERM_DATA; i++)
3546         {
3547                 EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i,
3548                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3549
3550                 if (data[i].visible)
3551                 {
3552                         EnableMenuItem(hm, IDM_WINDOW_D_HGT_0 + i,
3553                                    MF_BYCOMMAND | MF_ENABLED);
3554
3555                 }
3556         }
3557
3558         /* Menu "Options", disable all */
3559         EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS,
3560                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3561         EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS,
3562                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3563         EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS,
3564                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3565         EnableMenuItem(hm, IDM_OPTIONS_BIGTILE,
3566                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3567         EnableMenuItem(hm, IDM_OPTIONS_SOUND,
3568                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3569 #ifndef JP
3570         EnableMenuItem(hm, IDM_OPTIONS_SAVER,
3571                        MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3572 #endif
3573
3574         /* Menu "Options", Item "Map" */
3575         if (use_graphics != GRAPHICS_NONE)
3576                 EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP, MF_BYCOMMAND | MF_ENABLED);
3577         else
3578                 EnableMenuItem(GetMenu(data[0].w), IDM_OPTIONS_MAP,
3579                                MF_BYCOMMAND | MF_DISABLED | MF_GRAYED);
3580
3581         /* Menu "Options", update all */
3582         CheckMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS,
3583                       (arg_graphics == GRAPHICS_NONE ? MF_CHECKED : MF_UNCHECKED));
3584         CheckMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS,
3585                       (arg_graphics == GRAPHICS_ORIGINAL ? MF_CHECKED : MF_UNCHECKED));
3586         CheckMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS,
3587                       (arg_graphics == GRAPHICS_ADAM_BOLT ? MF_CHECKED : MF_UNCHECKED));
3588         CheckMenuItem(hm, IDM_OPTIONS_NEW2_GRAPHICS,
3589                       (arg_graphics == GRAPHICS_HENGBAND ? MF_CHECKED : MF_UNCHECKED));
3590         CheckMenuItem(hm, IDM_OPTIONS_BIGTILE,
3591                       (arg_bigtile ? MF_CHECKED : MF_UNCHECKED));
3592         CheckMenuItem(hm, IDM_OPTIONS_MUSIC,
3593                       (arg_music ? MF_CHECKED : MF_UNCHECKED));
3594         CheckMenuItem(hm, IDM_OPTIONS_SOUND,
3595                       (arg_sound ? MF_CHECKED : MF_UNCHECKED));
3596         CheckMenuItem(hm, IDM_OPTIONS_BG,
3597                       (use_bg ? MF_CHECKED : MF_UNCHECKED));
3598 #ifndef JP
3599         CheckMenuItem(hm, IDM_OPTIONS_SAVER,
3600                       (hwndSaver ? MF_CHECKED : MF_UNCHECKED));
3601 #endif
3602
3603 #ifdef USE_GRAPHICS
3604         /* Menu "Options", Item "Graphics" */
3605         EnableMenuItem(hm, IDM_OPTIONS_NO_GRAPHICS, MF_ENABLED);
3606         /* Menu "Options", Item "Graphics" */
3607         EnableMenuItem(hm, IDM_OPTIONS_OLD_GRAPHICS, MF_ENABLED);
3608         /* Menu "Options", Item "Graphics" */
3609         EnableMenuItem(hm, IDM_OPTIONS_NEW_GRAPHICS, MF_ENABLED);
3610         /* Menu "Options", Item "Graphics" */
3611         EnableMenuItem(hm, IDM_OPTIONS_BIGTILE, MF_ENABLED);
3612 #endif /* USE_GRAPHICS */
3613
3614 #ifdef USE_SOUND
3615         /* Menu "Options", Item "Sound" */
3616         EnableMenuItem(hm, IDM_OPTIONS_SOUND, MF_ENABLED);
3617 #endif /* USE_SOUND */
3618
3619 #ifdef USE_SAVER
3620         /* Menu "Options", Item "ScreenSaver" */
3621         EnableMenuItem(hm, IDM_OPTIONS_SAVER,
3622                        MF_BYCOMMAND | MF_ENABLED);
3623 #endif /* USE_SAVER */
3624 }
3625
3626
3627 /*
3628  * Check for double clicked (or dragged) savefile
3629  *
3630  * Apparently, Windows copies the entire filename into the first
3631  * piece of the "command line string".  Perhaps we should extract
3632  * the "basename" of that filename and append it to the "save" dir.
3633  */
3634 static void check_for_save_file(LPSTR cmd_line)
3635 {
3636         char *s;
3637
3638         /* First arg */
3639         s = cmd_line;
3640
3641         /* No args */
3642         if (!*s) return;
3643
3644         /* Extract filename */
3645         strcat(savefile, s);
3646
3647         /* Validate the file */
3648         validate_file(savefile);
3649
3650         /* Game in progress */
3651         game_in_progress = TRUE;
3652
3653         /* Play game */
3654         play_game(FALSE);
3655 }
3656
3657
3658 /*
3659  * Process a menu command
3660  */
3661 static void process_menus(WORD wCmd)
3662 {
3663         int i;
3664
3665         term_data *td;
3666
3667         OPENFILENAME ofn;
3668
3669         /* Analyze */
3670         switch (wCmd)
3671         {
3672                 /* New game */
3673                 case IDM_FILE_NEW:
3674                 {
3675                         if (!initialized)
3676                         {
3677 #ifdef JP
3678                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
3679 #else
3680                                 plog("You cannot do that yet...");
3681 #endif
3682
3683                         }
3684                         else if (game_in_progress)
3685                         {
3686 #ifdef JP
3687                                 plog("¥×¥ì¥¤Ãæ¤Ï¿·¤·¤¤¥²¡¼¥à¤ò»Ï¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
3688 #else
3689                                 plog("You can't start a new game while you're still playing!");
3690 #endif
3691
3692                         }
3693                         else
3694                         {
3695                                 game_in_progress = TRUE;
3696                                 Term_flush();
3697                                 play_game(TRUE);
3698                                 quit(NULL);
3699                         }
3700                         break;
3701                 }
3702
3703                 /* Open game */
3704                 case IDM_FILE_OPEN:
3705                 {
3706                         if (!initialized)
3707                         {
3708 #ifdef JP
3709                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
3710 #else
3711                                 plog("You cannot do that yet...");
3712 #endif
3713
3714                         }
3715                         else if (game_in_progress)
3716                         {
3717 #ifdef JP
3718                                 plog("¥×¥ì¥¤Ãæ¤Ï¥²¡¼¥à¤ò¥í¡¼¥É¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
3719 #else
3720                                 plog("You can't open a new game while you're still playing!");
3721 #endif
3722
3723                         }
3724                         else
3725                         {
3726                                 memset(&ofn, 0, sizeof(ofn));
3727                                 ofn.lStructSize = sizeof(ofn);
3728                                 ofn.hwndOwner = data[0].w;
3729                                 ofn.lpstrFilter = "Save Files (*.)\0*\0";
3730                                 ofn.nFilterIndex = 1;
3731                                 ofn.lpstrFile = savefile;
3732                                 ofn.nMaxFile = 1024;
3733                                 ofn.lpstrInitialDir = ANGBAND_DIR_SAVE;
3734                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR | OFN_HIDEREADONLY;
3735
3736                                 if (GetOpenFileName(&ofn))
3737                                 {
3738                                         /* Load 'savefile' */
3739                                         validate_file(savefile);
3740                                         game_in_progress = TRUE;
3741                                         Term_flush();
3742                                         play_game(FALSE);
3743                                         quit(NULL);
3744                                 }
3745                         }
3746                         break;
3747                 }
3748
3749                 /* Save game */
3750                 case IDM_FILE_SAVE:
3751                 {
3752                         if (game_in_progress && character_generated)
3753                         {
3754                                 /* Paranoia */
3755                                 if (!can_save)
3756                                 {
3757 #ifdef JP
3758                                         plog("º£¤Ï¥»¡¼¥Ö¤¹¤ë¤³¤È¤Ï½ÐÍè¤Þ¤»¤ó¡£");
3759 #else
3760                                         plog("You may not do that right now.");
3761 #endif
3762
3763                                         break;
3764                                 }
3765
3766                                 /* Hack -- Forget messages */
3767                                 msg_flag = FALSE;
3768
3769                                 /* Save the game */
3770 #ifdef ZANGBAND
3771                                 do_cmd_save_game(FALSE);
3772 #else /* ZANGBAND */
3773                                 do_cmd_save_game();
3774 #endif /* ZANGBAND */
3775                         }
3776                         else
3777                         {
3778 #ifdef JP
3779                                 plog("º£¡¢¥»¡¼¥Ö¤¹¤ë¤³¤È¤Ï½ÐÍè¤Þ¤»¤ó¡£");
3780 #else
3781                                 plog("You may not do that right now.");
3782 #endif
3783
3784                         }
3785                         break;
3786                 }
3787
3788                 /* Exit */
3789                 case IDM_FILE_EXIT:
3790                 {
3791                         if (game_in_progress && character_generated)
3792                         {
3793                                 /* Paranoia */
3794                                 if (!can_save)
3795                                 {
3796 #ifdef JP
3797                                         plog("º£¤Ï½ªÎ»¤Ç¤­¤Þ¤»¤ó¡£");
3798 #else
3799                                         plog("You may not do that right now.");
3800 #endif
3801
3802                                         break;
3803                                 }
3804
3805                                 /* Hack -- Forget messages */
3806                                 msg_flag = FALSE;
3807
3808                                 forget_lite();
3809                                 forget_view();
3810                                 clear_mon_lite();
3811
3812                                 /* Save the game */
3813 #ifdef ZANGBAND
3814                                 /* do_cmd_save_game(FALSE); */
3815 #else /* ZANGBAND */
3816                                 /* do_cmd_save_game(); */
3817 #endif /* ZANGBAND */
3818                                 Term_key_push(SPECIAL_KEY_QUIT);
3819                                 break;
3820                         }
3821                         quit(NULL);
3822                         break;
3823                 }
3824
3825                 /* Show scores */
3826                 case IDM_FILE_SCORE:
3827                 {
3828                         char buf[1024];
3829
3830                         /* Build the filename */
3831                         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
3832
3833                         /* Open the binary high score file, for reading */
3834                         highscore_fd = fd_open(buf, O_RDONLY);
3835
3836                         /* Paranoia -- No score file */
3837                         if (highscore_fd < 0)
3838                         {
3839                                 msg_print("Score file unavailable.");
3840                         }
3841                         else
3842                         {
3843                                 /* Save Screen */
3844                                 screen_save();
3845
3846                                 /* Clear screen */
3847                                 Term_clear();
3848
3849                                 /* Display the scores */
3850                                 display_scores_aux(0, MAX_HISCORES, -1, NULL);
3851
3852                                 /* Shut the high score file */
3853                                 (void)fd_close(highscore_fd);
3854
3855                                 /* Forget the high score fd */
3856                                 highscore_fd = -1;
3857
3858                                 /* Load screen */
3859                                 screen_load();
3860
3861                                 /* Hack - Flush it */
3862                                 Term_fresh();
3863                         }
3864
3865                         break;
3866                 }
3867
3868                 /* Open game */
3869                 case IDM_FILE_MOVIE:
3870                 {
3871                         if (!initialized)
3872                         {
3873 #ifdef JP
3874                                 plog("¤Þ¤À½é´ü²½Ãæ¤Ç¤¹...");
3875 #else
3876                                 plog("You cannot do that yet...");
3877 #endif
3878                         }
3879                         else if (game_in_progress)
3880                         {
3881 #ifdef JP
3882                                 plog("¥×¥ì¥¤Ãæ¤Ï¥à¡¼¥Ó¡¼¤ò¥í¡¼¥É¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡ª");
3883 #else
3884                                 plog("You can't open a movie while you're playing!");
3885 #endif
3886                         }
3887                         else
3888                         {
3889                                 memset(&ofn, 0, sizeof(ofn));
3890                                 ofn.lStructSize = sizeof(ofn);
3891                                 ofn.hwndOwner = data[0].w;
3892                                 ofn.lpstrFilter = "Angband Movie Files (*.amv)\0*.amv\0";
3893                                 ofn.nFilterIndex = 1;
3894                                 ofn.lpstrFile = savefile;
3895                                 ofn.nMaxFile = 1024;
3896                                 ofn.lpstrInitialDir = ANGBAND_DIR_USER;
3897                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_NOCHANGEDIR;
3898
3899                                 if (GetOpenFileName(&ofn))
3900                                 {
3901                                         /* Load 'savefile' */
3902                                         prepare_browse_movie_aux(savefile);
3903                                         play_game(FALSE);
3904                                         quit(NULL);
3905                                         return;
3906                                 }
3907                         }
3908                         break;
3909                 }
3910
3911
3912                 case IDM_WINDOW_VIS_0:
3913                 {
3914 #ifdef JP
3915                         plog("¥á¥¤¥ó¥¦¥£¥ó¥É¥¦¤ÏÈóɽ¼¨¤Ë¤Ç¤­¤Þ¤»¤ó¡ª");
3916 #else
3917                         plog("You are not allowed to do that!");
3918 #endif
3919
3920
3921                         break;
3922                 }
3923
3924                 /* Window visibility */
3925                 case IDM_WINDOW_VIS_1:
3926                 case IDM_WINDOW_VIS_2:
3927                 case IDM_WINDOW_VIS_3:
3928                 case IDM_WINDOW_VIS_4:
3929                 case IDM_WINDOW_VIS_5:
3930                 case IDM_WINDOW_VIS_6:
3931                 case IDM_WINDOW_VIS_7:
3932                 {
3933                         i = wCmd - IDM_WINDOW_VIS_0;
3934
3935                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
3936
3937                         td = &data[i];
3938
3939                         if (!td->visible)
3940                         {
3941                                 td->visible = TRUE;
3942                                 ShowWindow(td->w, SW_SHOW);
3943                                 term_data_redraw(td);
3944                         }
3945                         else
3946                         {
3947                                 td->visible = FALSE;
3948                                 td->posfix = FALSE;
3949                                 ShowWindow(td->w, SW_HIDE);
3950                         }
3951
3952                         break;
3953                 }
3954
3955                 /* Window fonts */
3956                 case IDM_WINDOW_FONT_0:
3957                 case IDM_WINDOW_FONT_1:
3958                 case IDM_WINDOW_FONT_2:
3959                 case IDM_WINDOW_FONT_3:
3960                 case IDM_WINDOW_FONT_4:
3961                 case IDM_WINDOW_FONT_5:
3962                 case IDM_WINDOW_FONT_6:
3963                 case IDM_WINDOW_FONT_7:
3964                 {
3965                         i = wCmd - IDM_WINDOW_FONT_0;
3966
3967                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
3968
3969                         td = &data[i];
3970
3971                         term_change_font(td);
3972
3973                         break;
3974                 }
3975
3976                 /* Window Z Position */
3977                 case IDM_WINDOW_POS_1:
3978                 case IDM_WINDOW_POS_2:
3979                 case IDM_WINDOW_POS_3:
3980                 case IDM_WINDOW_POS_4:
3981                 case IDM_WINDOW_POS_5:
3982                 case IDM_WINDOW_POS_6:
3983                 case IDM_WINDOW_POS_7:
3984                 {
3985                         i = wCmd - IDM_WINDOW_POS_0;
3986
3987                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
3988
3989                         td = &data[i];
3990
3991                         if (!td->posfix && td->visible)
3992                         {
3993                                 td->posfix = TRUE;
3994                                 term_window_pos(td, HWND_TOPMOST);
3995                         }
3996                         else
3997                         {
3998                                 td->posfix = FALSE;
3999                                 term_window_pos(td, data[0].w);
4000                         }
4001
4002                         break;
4003                 }
4004
4005                 /* Bizarre Display */
4006                 case IDM_WINDOW_BIZ_0:
4007                 case IDM_WINDOW_BIZ_1:
4008                 case IDM_WINDOW_BIZ_2:
4009                 case IDM_WINDOW_BIZ_3:
4010                 case IDM_WINDOW_BIZ_4:
4011                 case IDM_WINDOW_BIZ_5:
4012                 case IDM_WINDOW_BIZ_6:
4013                 case IDM_WINDOW_BIZ_7:
4014                 {
4015                         i = wCmd - IDM_WINDOW_BIZ_0;
4016
4017                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4018
4019                         td = &data[i];
4020
4021                         td->bizarre = !td->bizarre;
4022
4023                         term_getsize(td);
4024
4025                         term_window_resize(td);
4026
4027                         break;
4028                 }
4029
4030                 /* Increase Tile Width */
4031                 case IDM_WINDOW_I_WID_0:
4032                 case IDM_WINDOW_I_WID_1:
4033                 case IDM_WINDOW_I_WID_2:
4034                 case IDM_WINDOW_I_WID_3:
4035                 case IDM_WINDOW_I_WID_4:
4036                 case IDM_WINDOW_I_WID_5:
4037                 case IDM_WINDOW_I_WID_6:
4038                 case IDM_WINDOW_I_WID_7:
4039                 {
4040                         i = wCmd - IDM_WINDOW_I_WID_0;
4041
4042                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4043
4044                         td = &data[i];
4045
4046                         td->tile_wid += 1;
4047
4048                         term_getsize(td);
4049
4050                         term_window_resize(td);
4051
4052                         break;
4053                 }
4054
4055                 /* Decrease Tile Height */
4056                 case IDM_WINDOW_D_WID_0:
4057                 case IDM_WINDOW_D_WID_1:
4058                 case IDM_WINDOW_D_WID_2:
4059                 case IDM_WINDOW_D_WID_3:
4060                 case IDM_WINDOW_D_WID_4:
4061                 case IDM_WINDOW_D_WID_5:
4062                 case IDM_WINDOW_D_WID_6:
4063                 case IDM_WINDOW_D_WID_7:
4064                 {
4065                         i = wCmd - IDM_WINDOW_D_WID_0;
4066
4067                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4068
4069                         td = &data[i];
4070
4071                         td->tile_wid -= 1;
4072
4073                         term_getsize(td);
4074
4075                         term_window_resize(td);
4076
4077                         break;
4078                 }
4079
4080                 /* Increase Tile Height */
4081                 case IDM_WINDOW_I_HGT_0:
4082                 case IDM_WINDOW_I_HGT_1:
4083                 case IDM_WINDOW_I_HGT_2:
4084                 case IDM_WINDOW_I_HGT_3:
4085                 case IDM_WINDOW_I_HGT_4:
4086                 case IDM_WINDOW_I_HGT_5:
4087                 case IDM_WINDOW_I_HGT_6:
4088                 case IDM_WINDOW_I_HGT_7:
4089                 {
4090                         i = wCmd - IDM_WINDOW_I_HGT_0;
4091
4092                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4093
4094                         td = &data[i];
4095
4096                         td->tile_hgt += 1;
4097
4098                         term_getsize(td);
4099
4100                         term_window_resize(td);
4101
4102                         break;
4103                 }
4104
4105                 /* Decrease Tile Height */
4106                 case IDM_WINDOW_D_HGT_0:
4107                 case IDM_WINDOW_D_HGT_1:
4108                 case IDM_WINDOW_D_HGT_2:
4109                 case IDM_WINDOW_D_HGT_3:
4110                 case IDM_WINDOW_D_HGT_4:
4111                 case IDM_WINDOW_D_HGT_5:
4112                 case IDM_WINDOW_D_HGT_6:
4113                 case IDM_WINDOW_D_HGT_7:
4114                 {
4115                         i = wCmd - IDM_WINDOW_D_HGT_0;
4116
4117                         if ((i < 0) || (i >= MAX_TERM_DATA)) break;
4118
4119                         td = &data[i];
4120
4121                         td->tile_hgt -= 1;
4122
4123                         term_getsize(td);
4124
4125                         term_window_resize(td);
4126
4127                         break;
4128                 }
4129
4130                 case IDM_OPTIONS_NO_GRAPHICS:
4131                 {
4132                         /* Paranoia */
4133                         if (!inkey_flag)
4134                         {
4135                                 plog("You may not do that right now.");
4136                                 break;
4137                         }
4138
4139                         /* Toggle "arg_graphics" */
4140                         if (arg_graphics != GRAPHICS_NONE)
4141                         {
4142                                 arg_graphics = GRAPHICS_NONE;
4143
4144                                 /* React to changes */
4145                                 Term_xtra_win_react();
4146
4147                                 /* Hack -- Force redraw */
4148                                 Term_key_push(KTRL('R'));
4149                         }
4150
4151                         break;
4152                 }
4153
4154                 case IDM_OPTIONS_OLD_GRAPHICS:
4155                 {
4156                         /* Paranoia */
4157                         if (!inkey_flag)
4158                         {
4159                                 plog("You may not do that right now.");
4160                                 break;
4161                         }
4162
4163                         /* Toggle "arg_graphics" */
4164                         if (arg_graphics != GRAPHICS_ORIGINAL)
4165                         {
4166                                 arg_graphics = GRAPHICS_ORIGINAL;
4167
4168                                 /* React to changes */
4169                                 Term_xtra_win_react();
4170
4171                                 /* Hack -- Force redraw */
4172                                 Term_key_push(KTRL('R'));
4173                         }
4174
4175                         break;
4176                 }
4177
4178                 case IDM_OPTIONS_NEW_GRAPHICS:
4179                 {
4180                         /* Paranoia */
4181                         if (!inkey_flag)
4182                         {
4183                                 plog("You may not do that right now.");
4184                                 break;
4185                         }
4186
4187                         /* Toggle "arg_graphics" */
4188                         if (arg_graphics != GRAPHICS_ADAM_BOLT)
4189                         {
4190                                 arg_graphics = GRAPHICS_ADAM_BOLT;
4191
4192                                 /* React to changes */
4193                                 Term_xtra_win_react();
4194
4195                                 /* Hack -- Force redraw */
4196                                 Term_key_push(KTRL('R'));
4197                         }
4198
4199                         break;
4200                 }
4201
4202                 case IDM_OPTIONS_NEW2_GRAPHICS:
4203                 {
4204                         /* Paranoia */
4205                         if (!inkey_flag)
4206                         {
4207                                 plog("You may not do that right now.");
4208                                 break;
4209                         }
4210
4211                         /* Toggle "arg_graphics" */
4212                         if (arg_graphics != GRAPHICS_HENGBAND)
4213                         {
4214                                 arg_graphics = GRAPHICS_HENGBAND;
4215
4216                                 /* React to changes */
4217                                 Term_xtra_win_react();
4218
4219                                 /* Hack -- Force redraw */
4220                                 Term_key_push(KTRL('R'));
4221                         }
4222
4223                         break;
4224                 }
4225
4226                 case IDM_OPTIONS_BIGTILE:
4227                 {
4228                         term_data *td = &data[0];
4229
4230                         /* Paranoia */
4231                         if (!inkey_flag)
4232                         {
4233                                 plog("You may not do that right now.");
4234                                 break;
4235                         }
4236
4237                         /* Toggle "arg_sound" */
4238                         arg_bigtile = !arg_bigtile;
4239
4240                         /* Activate */
4241                         Term_activate(&td->t);
4242
4243                         /* Resize the term */
4244                         Term_resize(td->cols, td->rows);
4245
4246                         /* Redraw later */
4247                         InvalidateRect(td->w, NULL, TRUE);
4248
4249                         break;
4250                 }
4251
4252                 case IDM_OPTIONS_MUSIC:
4253                 {
4254                         /* Paranoia */
4255                         if (!inkey_flag)
4256                         {
4257                                 plog("You may not do that right now.");
4258                                 break;
4259                         }
4260
4261                         /* Toggle "arg_sound" */
4262                         arg_music = !arg_music;
4263
4264                         /* React to changes */
4265                         Term_xtra_win_react();
4266
4267                         /* Hack -- Force redraw */
4268                         Term_key_push(KTRL('R'));
4269
4270                         break;
4271                 }
4272
4273                 case IDM_OPTIONS_SOUND:
4274                 {
4275                         /* Paranoia */
4276                         if (!inkey_flag)
4277                         {
4278                                 plog("You may not do that right now.");
4279                                 break;
4280                         }
4281
4282                         /* Toggle "arg_sound" */
4283                         arg_sound = !arg_sound;
4284
4285                         /* React to changes */
4286                         Term_xtra_win_react();
4287
4288                         /* Hack -- Force redraw */
4289                         Term_key_push(KTRL('R'));
4290
4291                         break;
4292                 }
4293
4294                 /* bg */
4295                 case IDM_OPTIONS_BG:
4296                 {
4297                         /* Paranoia */
4298                         if (!inkey_flag)
4299                         {
4300                                 plog("You may not do that right now.");
4301                                 break;
4302                         }
4303
4304                         /* Toggle "use_bg" */
4305                         use_bg = !use_bg;
4306
4307                         init_bg();
4308
4309                         /* React to changes */
4310                         Term_xtra_win_react();
4311
4312                         /* Hack -- Force redraw */
4313                         Term_key_push(KTRL('R'));
4314
4315                         break;
4316                 }
4317
4318                 /* bg */
4319                 case IDM_OPTIONS_OPEN_BG:
4320                 {
4321                         /* Paranoia */
4322                         if (!inkey_flag)
4323                         {
4324                                 plog("You may not do that right now.");
4325                                 break;
4326                         }
4327                         else
4328                         {
4329                                 memset(&ofn, 0, sizeof(ofn));
4330                                 ofn.lStructSize = sizeof(ofn);
4331                                 ofn.hwndOwner = data[0].w;
4332                                 ofn.lpstrFilter = "Bitmap Files (*.bmp)\0*.bmp\0";
4333                                 ofn.nFilterIndex = 1;
4334                                 ofn.lpstrFile = bg_bitmap_file;
4335                                 ofn.nMaxFile = 1023;
4336                                 ofn.lpstrInitialDir = NULL;
4337 #ifdef JP
4338                                 ofn.lpstrTitle = "ÊÉ»æ¤òÁª¤ó¤Ç¤Í¡£";
4339 #else
4340                                 ofn.lpstrTitle = "Choose wall paper.";
4341 #endif
4342                                 ofn.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
4343
4344                                 if (GetOpenFileName(&ofn))
4345                                 {
4346                                         /* Load 'savefile' */
4347                                         use_bg = 1;
4348                                         init_bg();
4349                                 }
4350
4351                                 /* React to changes */
4352                                 Term_xtra_win_react();
4353
4354                                 /* Hack -- Force redraw */
4355                                 Term_key_push(KTRL('R'));
4356                         }
4357                         break;
4358                 }
4359
4360                 case IDM_DUMP_SCREEN_HTML:
4361                 {
4362                         static char buf[1024] = "";
4363                         memset(&ofn, 0, sizeof(ofn));
4364                         ofn.lStructSize = sizeof(ofn);
4365                         ofn.hwndOwner = data[0].w;
4366                         ofn.lpstrFilter = "HTML Files (*.html)\0*.html\0";
4367                         ofn.nFilterIndex = 1;
4368                         ofn.lpstrFile = buf;
4369                         ofn.nMaxFile = 1023;
4370                         ofn.lpstrDefExt = "html";
4371                         ofn.lpstrInitialDir = NULL;
4372 #ifdef JP
4373                         ofn.lpstrTitle = "HTML¤Ç¥¹¥¯¥ê¡¼¥ó¥À¥ó¥×¤òÊݸ";
4374 #else
4375                         ofn.lpstrTitle = "Save screen dump as HTML.";
4376 #endif
4377                         ofn.Flags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT;
4378
4379                         if (GetSaveFileName(&ofn))
4380                         {
4381                                 do_cmd_save_screen_html_aux(buf, 0);
4382                         }
4383                         break;
4384                 }
4385
4386 #ifdef USE_SAVER
4387
4388                 case IDM_OPTIONS_SAVER:
4389                 {
4390                         if (hwndSaver)
4391                         {
4392                                 DestroyWindow(hwndSaver);
4393                                 hwndSaver = NULL;
4394                         }
4395                         else
4396                         {
4397                                 /* Create a screen scaver window */
4398                                 hwndSaver = CreateWindowEx(WS_EX_TOPMOST, "WindowsScreenSaverClass",
4399                                                            "Angband Screensaver",
4400                                                            WS_POPUP | WS_MAXIMIZE | WS_VISIBLE,
4401                                                            0, 0, GetSystemMetrics(SM_CXSCREEN),
4402                                                            GetSystemMetrics(SM_CYSCREEN),
4403                                                            NULL, NULL, hInstance, NULL);
4404
4405                                 if (hwndSaver)
4406                                 {
4407                                         /* Push the window to the bottom XXX XXX XXX */
4408                                         SetWindowPos(hwndSaver, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
4409                                 }
4410                                 else
4411                                 {
4412 #ifdef JP
4413                                         plog("¥¦¥£¥ó¥É¥¦¤òºîÀ®½ÐÍè¤Þ¤»¤ó");
4414 #else
4415                                         plog("Failed to create saver window");
4416 #endif
4417
4418                                 }
4419                         }
4420                         break;
4421                 }
4422
4423 #endif
4424
4425                 case IDM_OPTIONS_MAP:
4426                 {
4427                         windows_map();
4428                         break;
4429                 }
4430
4431                 case IDM_HELP_CONTENTS:
4432                 {
4433 #ifdef HTML_HELP
4434                         char tmp[1024];
4435                         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_HELP, "zangband.chm");
4436                         if (check_file(tmp))
4437                         {
4438                                 HtmlHelp(data[0].w, tmp, HH_DISPLAY_TOPIC, 0);
4439                         }
4440                         else
4441                         {
4442 #ifdef JP
4443                                 plog_fmt("¥Ø¥ë¥×¥Õ¥¡¥¤¥ë[%s]¤¬¸«ÉÕ¤«¤ê¤Þ¤»¤ó¡£", tmp);
4444                                 plog("Âå¤ï¤ê¤Ë¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£");
4445 #else
4446                                 plog_fmt("Cannot find help file: %s", tmp);
4447                                 plog("Use the online help files instead.");
4448 #endif
4449
4450                         }
4451                         break;
4452 #else /* HTML_HELP */
4453                         char buf[1024];
4454                         char tmp[1024];
4455                         path_build(tmp, sizeof(tmp), ANGBAND_DIR_XTRA_HELP, "zangband.hlp");
4456                         if (check_file(tmp))
4457                         {
4458                                 sprintf(buf, "winhelp.exe %s", tmp);
4459                                 WinExec(buf, SW_NORMAL);
4460                         }
4461                         else
4462                         {
4463 #ifdef JP
4464                                 plog_fmt("¥Ø¥ë¥×¥Õ¥¡¥¤¥ë[%s]¤¬¸«ÉÕ¤«¤ê¤Þ¤»¤ó¡£", tmp);
4465                                 plog("Âå¤ï¤ê¤Ë¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£");
4466 #else
4467                                 plog_fmt("Cannot find help file: %s", tmp);
4468                                 plog("Use the online help files instead.");
4469 #endif
4470
4471                         }
4472                         break;
4473 #endif /* HTML_HELP */
4474                 }
4475         }
4476 }
4477
4478
4479 static bool process_keydown(WPARAM wParam, LPARAM lParam)
4480 {
4481         int i;
4482         bool mc = FALSE;
4483         bool ms = FALSE;
4484         bool ma = FALSE;
4485
4486         /* Extract the modifiers */
4487         if (GetKeyState(VK_CONTROL) & 0x8000) mc = TRUE;
4488         if (GetKeyState(VK_SHIFT)   & 0x8000) ms = TRUE;
4489         if (GetKeyState(VK_MENU)    & 0x8000) ma = TRUE;
4490
4491         Term_no_press = (ma) ? TRUE : FALSE;
4492
4493         /* Handle "special" keys */
4494         if (special_key[(byte)(wParam)] || (ma && !ignore_key[(byte)(wParam)]) )
4495         {
4496                 bool ext_key = (lParam & 0x1000000L) ? TRUE : FALSE;
4497                 bool numpad = FALSE;
4498
4499                 /* Begin the macro trigger */
4500                 Term_keypress(31);
4501
4502                 /* Send the modifiers */
4503                 if (mc) Term_keypress('C');
4504                 if (ms) Term_keypress('S');
4505                 if (ma) Term_keypress('A');
4506
4507                 /* Extract "scan code" */
4508                 i = LOBYTE(HIWORD(lParam));
4509
4510                 /* Introduce the scan code */
4511                 Term_keypress('x');
4512
4513                 /* Extended key bit */
4514                 switch (wParam)
4515                 {
4516                         /* Numpad Enter and '/' are extended key */
4517                 case VK_DIVIDE:
4518                         Term_no_press = TRUE;
4519                 case VK_RETURN: /* Enter */
4520                         numpad = ext_key;
4521                         break;
4522                         /* Other extended keys are on full keyboard */
4523                 case VK_NUMPAD0:
4524                 case VK_NUMPAD1:
4525                 case VK_NUMPAD2:
4526                 case VK_NUMPAD3:
4527                 case VK_NUMPAD4:
4528                 case VK_NUMPAD5:
4529                 case VK_NUMPAD6:
4530                 case VK_NUMPAD7:
4531                 case VK_NUMPAD8:
4532                 case VK_NUMPAD9:
4533                 case VK_ADD:
4534                 case VK_MULTIPLY:
4535                 case VK_SUBTRACT:
4536                 case VK_SEPARATOR:
4537                 case VK_DECIMAL:
4538                         Term_no_press = TRUE;
4539                 case VK_CLEAR:
4540                 case VK_HOME:
4541                 case VK_END:
4542                 case VK_PRIOR:  /* Page Up */
4543                 case VK_NEXT:   /* Page Down */
4544                 case VK_INSERT:
4545                 case VK_DELETE:
4546                 case VK_UP:
4547                 case VK_DOWN:
4548                 case VK_LEFT:
4549                 case VK_RIGHT:
4550                         numpad = !ext_key;
4551                 }
4552
4553                 /* Special modifiers for keypad keys */
4554                 if (numpad) Term_keypress('K');
4555
4556                 /* Encode the hexidecimal scan code */
4557                 Term_keypress(hexsym[i/16]);
4558                 Term_keypress(hexsym[i%16]);
4559
4560                 /* End the macro trigger */
4561                 Term_keypress(13);
4562
4563                 return 1;
4564         }
4565
4566         return 0;
4567 }
4568
4569
4570 #ifdef __MWERKS__
4571 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4572                                   WPARAM wParam, LPARAM lParam);
4573 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4574                                   WPARAM wParam, LPARAM lParam)
4575 #else /* __MWERKS__ */
4576 LRESULT FAR PASCAL AngbandWndProc(HWND hWnd, UINT uMsg,
4577                                           WPARAM wParam, LPARAM lParam)
4578 #endif /* __MWERKS__ */
4579 {
4580         PAINTSTRUCT ps;
4581         HDC hdc;
4582         term_data *td;
4583 #if 0
4584         MINMAXINFO FAR *lpmmi;
4585         RECT rc;
4586 #endif
4587         int i;
4588
4589
4590         /* Acquire proper "term_data" info */
4591         td = (term_data *)GetWindowLong(hWnd, 0);
4592
4593         /* Handle message */
4594         switch (uMsg)
4595         {
4596                 /* XXX XXX XXX */
4597                 case WM_NCCREATE:
4598                 {
4599                         SetWindowLong(hWnd, 0, (LONG)(my_td));
4600                         break;
4601                 }
4602
4603                 /* XXX XXX XXX */
4604                 case WM_CREATE:
4605                 {
4606                         mop.dwCallback=(DWORD)hWnd;
4607                         return 0;
4608                 }
4609
4610                 case WM_GETMINMAXINFO:
4611                 {
4612                         MINMAXINFO FAR *lpmmi;
4613                         RECT rc;
4614
4615                         lpmmi = (MINMAXINFO FAR *)lParam;
4616
4617                         /* this message was sent before WM_NCCREATE */
4618                         if (!td) return 1;
4619
4620                         /* Minimum window size is 80x24 */
4621                         rc.left = rc.top = 0;
4622                         rc.right = rc.left + 80 * td->tile_wid + td->size_ow1 + td->size_ow2;
4623                         rc.bottom = rc.top + 24 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
4624
4625                         /* Adjust */
4626                         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
4627
4628                         /* Save minimum size */
4629                         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
4630                         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
4631
4632                         return 0;
4633                 }
4634
4635                 case WM_PAINT:
4636                 {
4637                         BeginPaint(hWnd, &ps);
4638                         if (td) term_data_redraw(td);
4639                         EndPaint(hWnd, &ps);
4640                         ValidateRect(hWnd, NULL);
4641                         return 0;
4642                 }
4643
4644 #ifdef USE_MUSIC
4645                 case MM_MCINOTIFY:
4646                 {
4647                         if(wParam == MCI_NOTIFY_SUCCESSFUL)
4648                         {
4649                                 mciSendCommand(mop.wDeviceID, MCI_SEEK, MCI_SEEK_TO_START, 0);
4650                                 mciSendCommand(mop.wDeviceID, MCI_PLAY, MCI_NOTIFY, (DWORD)&mop);
4651                         }
4652                         return 0;
4653                 }
4654 #endif
4655
4656                 case WM_SYSKEYDOWN:
4657                 case WM_KEYDOWN:
4658                 {
4659                         if (process_keydown(wParam, lParam))
4660                                 return 0;
4661                         break;
4662                 }
4663
4664                 case WM_CHAR:
4665                 {
4666                         if (Term_no_press) Term_no_press = FALSE;
4667                         else Term_keypress(wParam);
4668                         return 0;
4669                 }
4670
4671                 case WM_LBUTTONDOWN:
4672                 {
4673                         mousex = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
4674                         mousey = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
4675                         mouse_down = TRUE;
4676                         oldx = mousex;
4677                         oldy = mousey;
4678                         return 0;
4679                 }
4680
4681                 case WM_LBUTTONUP:
4682                 {
4683                         HGLOBAL hGlobal;
4684                         LPSTR lpStr;
4685                         int i, j, sz;
4686                         int dx = abs(oldx - mousex) + 1;
4687                         int dy = abs(oldy - mousey) + 1;
4688                         int ox = (oldx > mousex) ? mousex : oldx;
4689                         int oy = (oldy > mousey) ? mousey : oldy;
4690
4691                         mouse_down = FALSE;
4692                         paint_rect = FALSE;
4693
4694 #ifdef JP
4695                         sz = (dx + 3) * dy;
4696 #else
4697                         sz = (dx + 2) * dy;
4698 #endif
4699                         hGlobal = GlobalAlloc(GHND, sz + 1);
4700                         if (hGlobal == NULL) return 0;
4701                         lpStr = (LPSTR)GlobalLock(hGlobal);
4702
4703                         for (i = 0; i < dy; i++)
4704                         {
4705 #ifdef JP
4706                                 char *s;
4707                                 char **scr = data[0].t.scr->c;
4708
4709                                 C_MAKE(s, (dx + 1), char);
4710                                 strncpy(s, &scr[oy + i][ox], dx);
4711
4712                                 if (ox > 0)
4713                                 {
4714                                         if (iskanji(scr[oy + i][ox - 1])) s[0] = ' ';
4715                                 }
4716
4717                                 if (ox + dx < data[0].cols)
4718                                 {
4719                                         if (iskanji(scr[oy + i][ox + dx - 1])) s[dx - 1] = ' ';
4720                                 }
4721
4722                                 for (j = 0; j < dx; j++)
4723                                 {
4724                                         if (s[j] == 127) s[j] = '#';
4725                                         *lpStr++ = s[j];
4726                                 }
4727 #else
4728                                 for (j = 0; j < dx; j++)
4729                                 {
4730                                         *lpStr++ = data[0].t.scr->c[oy + i][ox + j];
4731                                 }
4732 #endif
4733                                 if (dy > 1)
4734                                 {
4735                                         *lpStr++ = '\r';
4736                                         *lpStr++ = '\n';
4737                                 }
4738                         }
4739
4740                         GlobalUnlock(hGlobal);
4741                         if (OpenClipboard(hWnd) == 0)
4742                         {
4743                                 GlobalFree(hGlobal);
4744                                 return 0;
4745                         }
4746                         EmptyClipboard();
4747                         SetClipboardData(CF_TEXT, hGlobal);
4748                         CloseClipboard();
4749
4750                         Term_redraw();
4751
4752                         return 0;
4753                 }
4754
4755                 case WM_MOUSEMOVE:
4756                 {
4757                         if (mouse_down)
4758                         {
4759                                 int dx, dy;
4760                                 int cx = MIN(LOWORD(lParam) / td->tile_wid, td->cols - 1);
4761                                 int cy = MIN(HIWORD(lParam) / td->tile_hgt, td->rows - 1);
4762                                 int ox, oy;
4763
4764                                 if (paint_rect)
4765                                 {
4766                                         dx = abs(oldx - mousex) + 1;
4767                                         dy = abs(oldy - mousey) + 1;
4768                                         ox = (oldx > mousex) ? mousex : oldx;
4769                                         oy = (oldy > mousey) ? mousey : oldy;
4770                                         Term_inversed_area(hWnd, ox, oy, dx, dy);
4771                                 }
4772                                 else
4773                                 {
4774                                         paint_rect = TRUE;
4775                                 }
4776
4777                                 dx = abs(cx - mousex) + 1;
4778                                 dy = abs(cy - mousey) + 1;
4779                                 ox = (cx > mousex) ? mousex : cx;
4780                                 oy = (cy > mousey) ? mousey : cy;
4781                                 Term_inversed_area(hWnd, ox, oy, dx, dy);
4782
4783                                 oldx = cx;
4784                                 oldy = cy;
4785                         }
4786                         return 0;
4787                 }
4788
4789                 case WM_INITMENU:
4790                 {
4791                         setup_menus();
4792                         return 0;
4793                 }
4794
4795                 case WM_CLOSE:
4796                 {
4797                         if (game_in_progress && character_generated)
4798                         {
4799                                 if (!can_save)
4800                                 {
4801 #ifdef JP
4802                                         plog("º£¤Ï½ªÎ»¤Ç¤­¤Þ¤»¤ó¡£");
4803 #else
4804                                         plog("You may not do that right now.");
4805 #endif
4806                                         return 0;
4807                                 }
4808
4809                                 /* Hack -- Forget messages */
4810                                 msg_flag = FALSE;
4811
4812                                 forget_lite();
4813                                 forget_view();
4814                                 clear_mon_lite();
4815
4816                                 /* Save the game */
4817 #ifdef ZANGBAND
4818                                 /* do_cmd_save_game(FALSE); */
4819 #else /* ZANGBAND */
4820                                 /* do_cmd_save_game(); */
4821 #endif /* ZANGBAND */
4822                                 Term_key_push(SPECIAL_KEY_QUIT);
4823                                 return 0;
4824                         }
4825                         quit(NULL);
4826                         return 0;
4827                 }
4828
4829                 case WM_QUERYENDSESSION:
4830                 {
4831                         if (game_in_progress && character_generated)
4832                         {
4833                                 /* Hack -- Forget messages */
4834                                 msg_flag = FALSE;
4835
4836                                 /* Mega-Hack -- Delay death */
4837                                 if (p_ptr->chp < 0) p_ptr->is_dead = FALSE;
4838
4839 #ifdef JP
4840                                 do_cmd_write_nikki(NIKKI_GAMESTART, 0, "----¥²¡¼¥àÃæÃÇ----");
4841 #else
4842                                 do_cmd_write_nikki(NIKKI_GAMESTART, 0, "---- Save and Exit Game ----");
4843 #endif
4844
4845                                 /* Hardcode panic save */
4846                                 p_ptr->panic_save = 1;
4847
4848                                 /* Forbid suspend */
4849                                 signals_ignore_tstp();
4850
4851                                 /* Indicate panic save */
4852 #ifdef JP
4853                                 (void)strcpy(p_ptr->died_from, "(¶ÛµÞ¥»¡¼¥Ö)");
4854 #else
4855                                 (void)strcpy(p_ptr->died_from, "(panic save)");
4856 #endif
4857
4858                                 /* Panic save */
4859                                 (void)save_player();
4860                         }
4861                         quit(NULL);
4862                         return 0;
4863                 }
4864
4865                 case WM_QUIT:
4866                 {
4867                         quit(NULL);
4868                         return 0;
4869                 }
4870
4871                 case WM_COMMAND:
4872                 {
4873                         process_menus(LOWORD(wParam));
4874                         return 0;
4875                 }
4876
4877                 case WM_SIZE:
4878                 {
4879                         /* this message was sent before WM_NCCREATE */
4880                         if (!td) return 1;
4881
4882                         /* it was sent from inside CreateWindowEx */
4883                         if (!td->w) return 1;
4884
4885                         /* was sent from WM_SIZE */
4886                         if (td->size_hack) return 1;
4887
4888                         switch (wParam)
4889                         {
4890                                 case SIZE_MINIMIZED:
4891                                 {
4892                                         /* Hide sub-windows */
4893                                         for (i = 1; i < MAX_TERM_DATA; i++)
4894                                         {
4895                                                 if (data[i].visible) ShowWindow(data[i].w, SW_HIDE);
4896                                         }
4897                                         return 0;
4898                                 }
4899
4900                                 case SIZE_MAXIMIZED:
4901                                 {
4902                                         /* fall through XXX XXX XXX */
4903                                 }
4904
4905                                 case SIZE_RESTORED:
4906                                 {
4907                                         uint cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
4908                                         uint rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
4909
4910                                         /* New size */
4911                                         if ((td->cols != cols) || (td->rows != rows))
4912                                         {
4913                                                 /* Save the new size */
4914                                                 td->cols = cols;
4915                                                 td->rows = rows;
4916
4917                                                 if (!IsZoomed(td->w) && !IsIconic(td->w))
4918                                                 {
4919                                                         normsize.x = td->cols;
4920                                                         normsize.y = td->rows;
4921                                                 }
4922
4923                                                 /* Activate */
4924                                                 Term_activate(&td->t);
4925
4926                                                 /* Resize the term */
4927                                                 Term_resize(td->cols, td->rows);
4928
4929                                                 /* Redraw later */
4930                                                 InvalidateRect(td->w, NULL, TRUE);
4931                                         }
4932
4933                                         td->size_hack = TRUE;
4934
4935                                         /* Show sub-windows */
4936                                         for (i = 1; i < MAX_TERM_DATA; i++)
4937                                         {
4938                                                 if (data[i].visible) ShowWindow(data[i].w, SW_SHOW);
4939                                         }
4940
4941                                         td->size_hack = FALSE;
4942
4943                                         return 0;
4944                                 }
4945                         }
4946                         break;
4947                 }
4948
4949                 case WM_PALETTECHANGED:
4950                 {
4951                         /* Ignore if palette change caused by itself */
4952                         if ((HWND)wParam == hWnd) return 0;
4953
4954                         /* Fall through... */
4955                 }
4956
4957                 case WM_QUERYNEWPALETTE:
4958                 {
4959                         if (!paletted) return 0;
4960
4961                         hdc = GetDC(hWnd);
4962
4963                         SelectPalette(hdc, hPal, FALSE);
4964
4965                         i = RealizePalette(hdc);
4966
4967                         /* if any palette entries changed, repaint the window. */
4968                         if (i) InvalidateRect(hWnd, NULL, TRUE);
4969
4970                         ReleaseDC(hWnd, hdc);
4971
4972                         return 0;
4973                 }
4974
4975                 case WM_ACTIVATE:
4976                 {
4977                         if (wParam && !HIWORD(lParam))
4978                         {
4979                                 /* Do something to sub-windows */
4980                                 for (i = 1; i < MAX_TERM_DATA; i++)
4981                                 {
4982                                         if (!data[i].posfix) term_window_pos(&data[i], hWnd);
4983                                 }
4984
4985                                 /* Focus on main window */
4986                                 SetFocus(hWnd);
4987
4988                                 return 0;
4989                         }
4990
4991                         break;
4992                 }
4993
4994                 case WM_ACTIVATEAPP:
4995                 {
4996                         if (IsIconic(td->w)) break;
4997
4998                         for (i = 1; i < MAX_TERM_DATA; i++)
4999                         {
5000                                 if(data[i].visible)
5001                                 {
5002                                         if (wParam == TRUE)
5003                                         {
5004                                                 ShowWindow(data[i].w, SW_SHOW);
5005                                         }
5006                                         else
5007                                         {
5008                                                 ShowWindow(data[i].w, SW_HIDE);
5009                                         }
5010                                 }
5011                         }
5012                 }
5013         }
5014
5015         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5016 }
5017
5018
5019 #ifdef __MWERKS__
5020 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5021                                            WPARAM wParam, LPARAM lParam);
5022 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5023                                            WPARAM wParam, LPARAM lParam)
5024 #else /* __MWERKS__ */
5025 LRESULT FAR PASCAL AngbandListProc(HWND hWnd, UINT uMsg,
5026                                            WPARAM wParam, LPARAM lParam)
5027 #endif /* __MWERKS__ */
5028 {
5029         term_data *td;
5030 #if 0
5031         MINMAXINFO FAR *lpmmi;
5032         RECT rc;
5033 #endif
5034         PAINTSTRUCT ps;
5035         HDC hdc;
5036         int i;
5037
5038
5039         /* Acquire proper "term_data" info */
5040         td = (term_data *)GetWindowLong(hWnd, 0);
5041
5042         /* Process message */
5043         switch (uMsg)
5044         {
5045                 /* XXX XXX XXX */
5046                 case WM_NCCREATE:
5047                 {
5048                         SetWindowLong(hWnd, 0, (LONG)(my_td));
5049                         break;
5050                 }
5051
5052                 /* XXX XXX XXX */
5053                 case WM_CREATE:
5054                 {
5055                         return 0;
5056                 }
5057
5058                 case WM_GETMINMAXINFO:
5059                 {
5060                         MINMAXINFO FAR *lpmmi;
5061                         RECT rc;
5062
5063                         lpmmi = (MINMAXINFO FAR *)lParam;
5064
5065                         /* this message was sent before WM_NCCREATE */
5066                         if (!td) return 1;
5067
5068                         /* Minimum window size is 80x24 */
5069                         rc.left = rc.top = 0;
5070                         rc.right = rc.left + 20 * td->tile_wid + td->size_ow1 + td->size_ow2;
5071                         rc.bottom = rc.top + 3 * td->tile_hgt + td->size_oh1 + td->size_oh2 + 1;
5072
5073                         /* Adjust */
5074                         AdjustWindowRectEx(&rc, td->dwStyle, TRUE, td->dwExStyle);
5075
5076                         /* Save minimum size */
5077                         lpmmi->ptMinTrackSize.x = rc.right - rc.left;
5078                         lpmmi->ptMinTrackSize.y = rc.bottom - rc.top;
5079
5080                         return 0;
5081                 }
5082
5083                 case WM_SIZE:
5084                 {
5085                         uint cols;
5086                         uint rows;
5087                         
5088                         /* this message was sent before WM_NCCREATE */
5089                         if (!td) return 1;
5090
5091                         /* it was sent from inside CreateWindowEx */
5092                         if (!td->w) return 1;
5093
5094                         /* was sent from inside WM_SIZE */
5095                         if (td->size_hack) return 1;
5096
5097                         td->size_hack = TRUE;
5098
5099                         cols = (LOWORD(lParam) - td->size_ow1) / td->tile_wid;
5100                         rows = (HIWORD(lParam) - td->size_oh1) / td->tile_hgt;
5101
5102                         /* New size */
5103                         if ((td->cols != cols) || (td->rows != rows))
5104                         {
5105                                 /* Save old term */
5106                                 term *old_term = Term;
5107
5108                                 /* Save the new size */
5109                                 td->cols = cols;
5110                                 td->rows = rows;
5111
5112                                 /* Activate */
5113                                 Term_activate(&td->t);
5114
5115                                 /* Resize the term */
5116                                 Term_resize(td->cols, td->rows);
5117
5118                                 /* Activate */
5119                                 Term_activate(old_term);
5120
5121                                 /* Redraw later */
5122                                 InvalidateRect(td->w, NULL, TRUE);
5123
5124                                 /* HACK - Redraw all windows */
5125                                 p_ptr->window = 0xFFFFFFFF;
5126                                 window_stuff();
5127                         }
5128
5129                         td->size_hack = FALSE;
5130
5131                         return 0;
5132                 }
5133
5134                 case WM_PAINT:
5135                 {
5136                         BeginPaint(hWnd, &ps);
5137                         if (td) term_data_redraw(td);
5138                         EndPaint(hWnd, &ps);
5139                         return 0;
5140                 }
5141
5142                 case WM_SYSKEYDOWN:
5143                 case WM_KEYDOWN:
5144                 {
5145                         if (process_keydown(wParam, lParam))
5146                                 return 0;
5147                         break;
5148                 }
5149
5150                 case WM_CHAR:
5151                 {
5152                         if (Term_no_press) Term_no_press = FALSE;
5153                         else Term_keypress(wParam);
5154                         return 0;
5155                 }
5156
5157                 case WM_PALETTECHANGED:
5158                 {
5159                         /* ignore if palette change caused by itself */
5160                         if ((HWND)wParam == hWnd) return FALSE;
5161                         /* otherwise, fall through!!! */
5162                 }
5163
5164                 case WM_QUERYNEWPALETTE:
5165                 {
5166                         if (!paletted) return 0;
5167                         hdc = GetDC(hWnd);
5168                         SelectPalette(hdc, hPal, FALSE);
5169                         i = RealizePalette(hdc);
5170                         /* if any palette entries changed, repaint the window. */
5171                         if (i) InvalidateRect(hWnd, NULL, TRUE);
5172                         ReleaseDC(hWnd, hdc);
5173                         return 0;
5174                 }
5175
5176                 case WM_NCLBUTTONDOWN:
5177                 {
5178
5179 #ifdef HTCLOSE
5180                         if (wParam == HTCLOSE) wParam = HTSYSMENU;
5181 #endif /* HTCLOSE */
5182
5183                         if (wParam == HTSYSMENU)
5184                         {
5185                                 if (td->visible)
5186                                 {
5187                                         td->visible = FALSE;
5188                                         ShowWindow(td->w, SW_HIDE);
5189                                 }
5190
5191                                 return 0;
5192                         }
5193
5194                         break;
5195                 }
5196         }
5197
5198         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5199 }
5200
5201
5202 #ifdef USE_SAVER
5203
5204 #define MOUSE_SENS 40
5205
5206 #ifdef __MWERKS__
5207 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5208                                     WPARAM wParam, LPARAM lParam);
5209 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5210                                     WPARAM wParam, LPARAM lParam)
5211 #else /* __MWERKS__ */
5212 LRESULT FAR PASCAL AngbandSaverProc(HWND hWnd, UINT uMsg,
5213                                             WPARAM wParam, LPARAM lParam)
5214 #endif /* __MWERKS__ */
5215 {
5216         static int iMouse = 0;
5217         static WORD xMouse = 0;
5218         static WORD yMouse = 0;
5219
5220         int dx, dy;
5221
5222
5223         /* Process */
5224         switch (uMsg)
5225         {
5226                 /* XXX XXX XXX */
5227                 case WM_NCCREATE:
5228                 {
5229                         break;
5230                 }
5231
5232                 case WM_SETCURSOR:
5233                 {
5234                         SetCursor(NULL);
5235                         return 0;
5236                 }
5237
5238 #if 0
5239                 case WM_ACTIVATE:
5240                 {
5241                         if (LOWORD(wParam) == WA_INACTIVE) break;
5242
5243                         /* else fall through */
5244                 }
5245 #endif
5246
5247                 case WM_LBUTTONDOWN:
5248                 case WM_MBUTTONDOWN:
5249                 case WM_RBUTTONDOWN:
5250                 case WM_KEYDOWN:
5251                 {
5252                         SendMessage(hWnd, WM_CLOSE, 0, 0);
5253                         return 0;
5254                 }
5255
5256                 case WM_MOUSEMOVE:
5257                 {
5258                         if (iMouse)
5259                         {
5260                                 dx = LOWORD(lParam) - xMouse;
5261                                 dy = HIWORD(lParam) - yMouse;
5262
5263                                 if (dx < 0) dx = -dx;
5264                                 if (dy < 0) dy = -dy;
5265
5266                                 if ((dx > MOUSE_SENS) || (dy > MOUSE_SENS))
5267                                 {
5268                                         SendMessage(hWnd, WM_CLOSE, 0, 0);
5269                                 }
5270                         }
5271
5272                         /* Save last location */
5273                         iMouse = 1;
5274                         xMouse = LOWORD(lParam);
5275                         yMouse = HIWORD(lParam);
5276
5277                         return 0;
5278                 }
5279
5280                 case WM_CLOSE:
5281                 {
5282                         DestroyWindow(hwndSaver);
5283                         hwndSaver = NULL;
5284                         return 0;
5285                 }
5286         }
5287
5288         /* Oops */
5289         return DefWindowProc(hWnd, uMsg, wParam, lParam);
5290 }
5291
5292 #endif /* USE_SAVER */
5293
5294
5295
5296
5297
5298 /*** Temporary Hooks ***/
5299
5300
5301 /*
5302  * Display warning message (see "z-util.c")
5303  */
5304 static void hack_plog(cptr str)
5305 {
5306         /* Give a warning */
5307         if (str)
5308         {
5309 #ifdef JP
5310                 MessageBox(NULL, str, "·Ù¹ð¡ª",
5311                            MB_ICONEXCLAMATION | MB_OK);
5312 #else
5313                 MessageBox(NULL, str, "Warning",
5314                            MB_ICONEXCLAMATION | MB_OK);
5315 #endif
5316
5317         }
5318 }
5319
5320
5321 /*
5322  * Display error message and quit (see "z-util.c")
5323  */
5324 static void hack_quit(cptr str)
5325 {
5326         /* Give a warning */
5327         if (str)
5328         {
5329 #ifdef JP
5330                 MessageBox(NULL, str, "¥¨¥é¡¼¡ª",
5331                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5332 #else
5333                 MessageBox(NULL, str, "Error",
5334                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5335 #endif
5336
5337         }
5338
5339         /* Unregister the classes */
5340         UnregisterClass(AppName, hInstance);
5341
5342         /* Destroy the icon */
5343         if (hIcon) DestroyIcon(hIcon);
5344
5345         /* Exit */
5346         exit(0);
5347 }
5348
5349
5350
5351 /*** Various hooks ***/
5352
5353
5354 /*
5355  * Display warning message (see "z-util.c")
5356  */
5357 static void hook_plog(cptr str)
5358 {
5359         /* Warning */
5360         if (str)
5361         {
5362 #ifdef JP
5363                 MessageBox(data[0].w, str, "·Ù¹ð¡ª",
5364                            MB_ICONEXCLAMATION | MB_OK);
5365 #else
5366                 MessageBox(data[0].w, str, "Warning",
5367                            MB_ICONEXCLAMATION | MB_OK);
5368 #endif
5369
5370         }
5371 }
5372
5373
5374 /*
5375  * Display error message and quit (see "z-util.c")
5376  */
5377 static void hook_quit(cptr str)
5378 {
5379         int i;
5380
5381
5382         /* Give a warning */
5383         if (str)
5384         {
5385 #ifdef JP
5386                 MessageBox(data[0].w, str, "¥¨¥é¡¼¡ª",
5387                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5388 #else
5389                 MessageBox(data[0].w, str, "Error",
5390                            MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5391 #endif
5392
5393         }
5394
5395
5396         /* Save the preferences */
5397         save_prefs();
5398
5399
5400         /*** Could use 'Term_nuke_win()' XXX XXX XXX */
5401
5402         /* Destroy all windows */
5403         for (i = MAX_TERM_DATA - 1; i >= 0; --i)
5404         {
5405                 term_force_font(&data[i], NULL);
5406                 if (data[i].font_want) string_free(data[i].font_want);
5407                 if (data[i].w) DestroyWindow(data[i].w);
5408                 data[i].w = 0;
5409         }
5410
5411         /* Free the bitmap stuff */
5412 #ifdef USE_GRAPHICS
5413         if (infGraph.hPalette) DeleteObject(infGraph.hPalette);
5414         if (infGraph.hBitmap) DeleteObject(infGraph.hBitmap);
5415
5416         if (infMask.hPalette) DeleteObject(infMask.hPalette);
5417         if (infMask.hBitmap) DeleteObject(infMask.hBitmap);
5418
5419 #endif /* USE_GRAPHICS */
5420
5421         /*** Free some other stuff ***/
5422
5423         DeleteObject(hbrYellow);
5424
5425         /* bg */
5426         delete_bg();
5427
5428         if (hPal) DeleteObject(hPal);
5429
5430         UnregisterClass(AppName, hInstance);
5431
5432         if (hIcon) DestroyIcon(hIcon);
5433
5434         exit(0);
5435 }
5436
5437
5438
5439 /*** Initialize ***/
5440
5441
5442 /*
5443  * Init some stuff
5444  */
5445 static void init_stuff(void)
5446 {
5447         int i;
5448
5449         char path[1024];
5450
5451
5452         /* Get program name with full path */
5453         GetModuleFileName(hInstance, path, 512);
5454
5455         /* Save the "program name" XXX XXX XXX */
5456         argv0 = path;
5457
5458         /* Get the name of the "*.ini" file */
5459         strcpy(path + strlen(path) - 4, ".INI");
5460
5461         /* Save the the name of the ini-file */
5462         ini_file = string_make(path);
5463
5464         /* Analyze the path */
5465         i = strlen(path);
5466
5467         /* Get the path */
5468         for (; i > 0; i--)
5469         {
5470                 if (path[i] == '\\')
5471                 {
5472                         /* End of path */
5473                         break;
5474                 }
5475         }
5476
5477         /* Add "lib" to the path */
5478         strcpy(path + i + 1, "lib\\");
5479
5480         /* Validate the path */
5481         validate_dir(path, TRUE);
5482
5483         /* Init the file paths */
5484         init_file_paths(path);
5485
5486         /* Hack -- Validate the paths */
5487         validate_dir(ANGBAND_DIR_APEX, FALSE);
5488         validate_dir(ANGBAND_DIR_BONE, FALSE);
5489
5490         /* Allow missing 'edit' directory */
5491         if (!check_dir(ANGBAND_DIR_EDIT))
5492         {
5493                 /* Must have 'data'! */
5494                 validate_dir(ANGBAND_DIR_DATA, TRUE);
5495         }
5496         else
5497         {
5498                 /* Don't need 'data' */
5499                 validate_dir(ANGBAND_DIR_DATA, FALSE);
5500         }
5501
5502         validate_dir(ANGBAND_DIR_FILE, TRUE);
5503         validate_dir(ANGBAND_DIR_HELP, FALSE);
5504         validate_dir(ANGBAND_DIR_INFO, FALSE);
5505         validate_dir(ANGBAND_DIR_PREF, TRUE);
5506         validate_dir(ANGBAND_DIR_SAVE, FALSE);
5507         validate_dir(ANGBAND_DIR_USER, TRUE);
5508         validate_dir(ANGBAND_DIR_XTRA, TRUE);
5509
5510         /* Build the filename */
5511 #ifdef JP
5512         path_build(path, sizeof(path), ANGBAND_DIR_FILE, "news_j.txt");
5513 #else
5514         path_build(path, sizeof(path), ANGBAND_DIR_FILE, "news.txt");
5515 #endif
5516
5517
5518         /* Hack -- Validate the "news.txt" file */
5519         validate_file(path);
5520
5521
5522 #if 0 /* #ifndef JP */
5523         /* Build the "font" path */
5524         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "font");
5525
5526         /* Allocate the path */
5527         ANGBAND_DIR_XTRA_FONT = string_make(path);
5528
5529         /* Validate the "font" directory */
5530         validate_dir(ANGBAND_DIR_XTRA_FONT, TRUE);
5531
5532         /* Build the filename */
5533         path_build(path, sizeof(path), ANGBAND_DIR_XTRA_FONT, "8X13.FON");
5534
5535         /* Hack -- Validate the basic font */
5536         validate_file(path);
5537 #endif
5538
5539
5540 #ifdef USE_GRAPHICS
5541
5542         /* Build the "graf" path */
5543         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "graf");
5544
5545         /* Allocate the path */
5546         ANGBAND_DIR_XTRA_GRAF = string_make(path);
5547
5548         /* Validate the "graf" directory */
5549         validate_dir(ANGBAND_DIR_XTRA_GRAF, TRUE);
5550
5551 #endif /* USE_GRAPHICS */
5552
5553
5554 #ifdef USE_SOUND
5555
5556         /* Build the "sound" path */
5557         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "sound");
5558
5559         /* Allocate the path */
5560         ANGBAND_DIR_XTRA_SOUND = string_make(path);
5561
5562         /* Validate the "sound" directory */
5563         validate_dir(ANGBAND_DIR_XTRA_SOUND, FALSE);
5564
5565 #endif /* USE_SOUND */
5566
5567 #ifdef USE_MUSIC
5568
5569         /* Build the "music" path */
5570         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "music");
5571
5572         /* Allocate the path */
5573         ANGBAND_DIR_XTRA_MUSIC = string_make(path);
5574
5575         /* Validate the "music" directory */
5576         validate_dir(ANGBAND_DIR_XTRA_MUSIC, FALSE);
5577
5578 #endif /* USE_MUSIC */
5579
5580         /* Build the "help" path */
5581         path_build(path, sizeof(path), ANGBAND_DIR_XTRA, "help");
5582
5583         /* Allocate the path */
5584         ANGBAND_DIR_XTRA_HELP = string_make(path);
5585
5586         /* Validate the "help" directory */
5587         /* validate_dir(ANGBAND_DIR_XTRA_HELP); */
5588 }
5589
5590 bool is_already_running()
5591 {
5592         bool result = FALSE;
5593         HANDLE hMutex;
5594
5595         hMutex = CreateMutex(NULL, TRUE, VERSION_NAME);
5596         if (GetLastError() == ERROR_ALREADY_EXISTS)
5597         {
5598                 result = TRUE;
5599         }
5600         return result;
5601 }
5602
5603
5604 int FAR PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
5605                        LPSTR lpCmdLine, int nCmdShow)
5606 {
5607         int i;
5608
5609         WNDCLASS wc;
5610         HDC hdc;
5611         MSG msg;
5612
5613         setlocale( LC_ALL, "ja_JP" );
5614
5615         /* Unused */
5616         (void)nCmdShow;
5617
5618         /* Save globally */
5619         hInstance = hInst;
5620         
5621         
5622         /* Prevent multiple run */
5623         if (is_already_running())
5624         {
5625                 MessageBox(NULL,
5626                                 _("ÊѶòÈÚÅܤϤ¹¤Ç¤Ëµ¯Æ°¤·¤Æ¤¤¤Þ¤¹¡£", "Hengband is already running."), 
5627                                 _("¥¨¥é¡¼¡ª", "Error") ,
5628                                 MB_ICONEXCLAMATION | MB_OK | MB_ICONSTOP);
5629                 return FALSE;
5630         }
5631
5632         /* Initialize */
5633         if (hPrevInst == NULL)
5634         {
5635                 wc.style         = CS_CLASSDC;
5636                 wc.lpfnWndProc   = AngbandWndProc;
5637                 wc.cbClsExtra    = 0;
5638                 wc.cbWndExtra    = 4; /* one long pointer to term_data */
5639                 wc.hInstance     = hInst;
5640                 wc.hIcon         = hIcon = LoadIcon(hInst, AppName);
5641                 wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
5642                 wc.hbrBackground = GetStockObject(BLACK_BRUSH);
5643                 wc.lpszMenuName  = AppName;
5644                 wc.lpszClassName = AppName;
5645
5646                 if (!RegisterClass(&wc)) exit(1);
5647
5648                 wc.lpfnWndProc   = AngbandListProc;
5649                 wc.lpszMenuName  = NULL;
5650                 wc.lpszClassName = AngList;
5651
5652                 if (!RegisterClass(&wc)) exit(2);
5653
5654 #ifdef USE_SAVER
5655
5656                 wc.style          = CS_VREDRAW | CS_HREDRAW | CS_SAVEBITS | CS_DBLCLKS;
5657                 wc.lpfnWndProc    = AngbandSaverProc;
5658                 wc.hCursor        = NULL;
5659                 wc.lpszMenuName   = NULL;
5660                 wc.lpszClassName  = "WindowsScreenSaverClass";
5661
5662                 if (!RegisterClass(&wc)) exit(3);
5663
5664 #endif
5665
5666         }
5667
5668         /* Temporary hooks */
5669         plog_aux = hack_plog;
5670         quit_aux = hack_quit;
5671         core_aux = hack_quit;
5672
5673         /* Prepare the filepaths */
5674         init_stuff();
5675
5676         /* Initialize the keypress analyzer */
5677         for (i = 0; special_key_list[i]; ++i)
5678         {
5679                 special_key[special_key_list[i]] = TRUE;
5680         }
5681         /* Initialize the keypress analyzer */
5682         for (i = 0; ignore_key_list[i]; ++i)
5683         {
5684                 ignore_key[ignore_key_list[i]] = TRUE;
5685         }
5686
5687         /* Determine if display is 16/256/true color */
5688         hdc = GetDC(NULL);
5689         colors16 = (GetDeviceCaps(hdc, BITSPIXEL) == 4);
5690         paletted = ((GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) ? TRUE : FALSE);
5691         ReleaseDC(NULL, hdc);
5692
5693         /* Initialize the colors */
5694         for (i = 0; i < 256; i++)
5695         {
5696                 byte rv, gv, bv;
5697
5698                 /* Extract desired values */
5699                 rv = angband_color_table[i][1];
5700                 gv = angband_color_table[i][2];
5701                 bv = angband_color_table[i][3];
5702
5703                 /* Extract the "complex" code */
5704                 win_clr[i] = PALETTERGB(rv, gv, bv);
5705
5706                 /* Save the "simple" code */
5707                 angband_color_table[i][0] = win_pal[i];
5708         }
5709
5710         /* Prepare the windows */
5711         init_windows();
5712
5713         /* bg */
5714         init_bg();
5715
5716         /* Activate hooks */
5717         plog_aux = hook_plog;
5718         quit_aux = hook_quit;
5719         core_aux = hook_quit;
5720
5721         /* Set the system suffix */
5722         ANGBAND_SYS = "win";
5723
5724         /* Set the keyboard suffix */
5725         if (7 != GetKeyboardType(0))
5726                 ANGBAND_KEYBOARD = "0";
5727         else
5728         {
5729                 /* Japanese keyboard */
5730                 switch (GetKeyboardType(1))
5731                 {
5732                 case 0x0D01: case 0x0D02:
5733                 case 0x0D03: case 0x0D04:
5734                 case 0x0D05: case 0x0D06:
5735                         /* NEC PC-98x1 */
5736                         ANGBAND_KEYBOARD = "NEC98";
5737                         break;
5738                 default:
5739                         /* PC/AT */
5740                         ANGBAND_KEYBOARD = "JAPAN";
5741                 }
5742         }
5743
5744         /* Catch nasty signals */
5745         signals_init();
5746
5747         /* Initialize */
5748         init_angband();
5749
5750         /* We are now initialized */
5751         initialized = TRUE;
5752 #ifdef CHUUKEI
5753         if(lpCmdLine[0] == '-'){
5754           switch(lpCmdLine[1])
5755           {
5756           case 'p':
5757           case 'P':
5758             {
5759               if (!lpCmdLine[2]) break;
5760               chuukei_server = TRUE;
5761               if(connect_chuukei_server(&lpCmdLine[2])<0){
5762                 msg_print("connect fail");
5763                 return 0;
5764               }
5765               msg_print("connect");
5766               msg_print(NULL);
5767               break;
5768             }
5769
5770           case 'c':
5771           case 'C':
5772             {
5773               if (!lpCmdLine[2]) break;
5774               chuukei_client = TRUE;
5775               connect_chuukei_server(&lpCmdLine[2]);
5776               play_game(FALSE);
5777               quit(NULL);
5778               return 0;
5779             }
5780           case 'X':
5781           case 'x':
5782             {
5783               if (!lpCmdLine[2]) break;
5784               prepare_browse_movie(&lpCmdLine[2]);
5785               play_game(FALSE);
5786               quit(NULL);
5787               return 0;
5788             }
5789           }
5790         }
5791 #endif
5792
5793 #ifdef CHUUKEI
5794         /* Did the user double click on a save file? */
5795         if(!chuukei_server) check_for_save_file(lpCmdLine);
5796 #else
5797         /* Did the user double click on a save file? */
5798         check_for_save_file(lpCmdLine);
5799 #endif
5800
5801         /* Prompt the user */
5802 #ifdef JP
5803         prt("[¥Õ¥¡¥¤¥ë] ¥á¥Ë¥å¡¼¤Î [¿·µ¬] ¤Þ¤¿¤Ï [³«¤¯] ¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£", 23, 8);
5804 #else
5805         prt("[Choose 'New' or 'Open' from the 'File' menu]", 23, 17);
5806 #endif
5807
5808         Term_fresh();
5809
5810         /* Process messages forever */
5811         while (GetMessage(&msg, NULL, 0, 0))
5812         {
5813                 TranslateMessage(&msg);
5814                 DispatchMessage(&msg);
5815         }
5816
5817         /* Paranoia */
5818         quit(NULL);
5819
5820         /* Paranoia */
5821         return (0);
5822 }
5823
5824
5825 #endif /* WINDOWS */
5826