2 * windows.c: Windows front end for my puzzle collection.
9 #endif /* NO_HTMLHELP */
30 #define IDM_NEW 0x0010
31 #define IDM_RESTART 0x0020
32 #define IDM_UNDO 0x0030
33 #define IDM_REDO 0x0040
34 #define IDM_COPY 0x0050
35 #define IDM_SOLVE 0x0060
36 #define IDM_QUIT 0x0070
37 #define IDM_CONFIG 0x0080
38 #define IDM_DESC 0x0090
39 #define IDM_SEED 0x00A0
40 #define IDM_HELPC 0x00B0
41 #define IDM_GAMEHELP 0x00C0
42 #define IDM_ABOUT 0x00D0
43 #define IDM_SAVE 0x00E0
44 #define IDM_LOAD 0x00F0
45 #define IDM_PRINT 0x0100
46 #define IDM_PRESETS 0x0110
47 #define IDM_GAMES 0x0300
49 #define IDM_KEYEMUL 0x0400
51 #define HELP_FILE_NAME "puzzles.hlp"
52 #define HELP_CNT_NAME "puzzles.cnt"
54 #define CHM_FILE_NAME "puzzles.chm"
55 #endif /* NO_HTMLHELP */
58 typedef HWND (CALLBACK
*htmlhelp_t
)(HWND
, LPCSTR
, UINT
, DWORD
);
59 static htmlhelp_t htmlhelp
;
60 static HINSTANCE hh_dll
;
61 #endif /* NO_HTMLHELP */
62 enum { NONE
, HLP
, CHM
} help_type
;
64 int help_has_contents
;
67 #define FILENAME_MAX (260)
71 #define HGDI_ERROR ((HANDLE)GDI_ERROR)
75 #define CLASSNAME "Puzzles"
77 #define CLASSNAME thegame.name
83 * Wrapper implementations of functions not supplied by the
87 #define SHGetSubMenu(hWndMB,ID_MENU) (HMENU)SendMessage((hWndMB), SHCMBM_GETSUBMENU, (WPARAM)0, (LPARAM)ID_MENU)
91 int MessageBox(HWND hWnd
, LPCSTR lpText
, LPCSTR lpCaption
, UINT uType
)
96 MultiByteToWideChar (CP_ACP
, 0, lpText
, -1, wText
, 2048);
97 MultiByteToWideChar (CP_ACP
, 0, lpCaption
, -1, wCaption
, 2048);
99 return MessageBoxW (hWnd
, wText
, wCaption
, uType
);
102 BOOL
SetDlgItemTextA(HWND hDlg
, int nIDDlgItem
, LPCSTR lpString
)
106 MultiByteToWideChar (CP_ACP
, 0, lpString
, -1, wText
, 256);
107 return SetDlgItemTextW(hDlg
, nIDDlgItem
, wText
);
110 LPCSTR
getenv(LPCSTR buf
)
115 BOOL
GetKeyboardState(PBYTE pb
)
120 static TCHAR wClassName
[256], wGameName
[256];
125 static FILE *debug_fp
= NULL
;
126 static HANDLE debug_hdl
= INVALID_HANDLE_VALUE
;
127 static int debug_got_console
= 0;
129 void dputs(char *buf
)
133 if (!debug_got_console) {
134 if (AllocConsole()) {
135 debug_got_console = 1;
136 debug_hdl = GetStdHandle(STD_OUTPUT_HANDLE);
140 debug_fp = fopen("debug.log", "w");
143 if (debug_hdl != INVALID_HANDLE_VALUE) {
144 WriteFile(debug_hdl, buf, strlen(buf), &dw, NULL);
147 fputs(buf, debug_fp);
150 OutputDebugString(buf
);
153 void debug_printf(char *fmt
, ...)
157 static int debugging
= -1;
160 debugging
= getenv("DEBUG_PUZZLES") ? 1 : 0;
164 _vsnprintf(buf
, 4095, fmt
, ap
);
172 #define WINFLAGS (WS_OVERLAPPEDWINDOW &~ \
173 (WS_MAXIMIZEBOX | WS_OVERLAPPED))
175 #define WINFLAGS (WS_CAPTION | WS_SYSMENU)
178 static void new_game_size(frontend
*fe
, float scale
);
196 enum { CFG_PRINT
= CFG_FRONTEND_SPECIFIC
};
201 HWND hwnd
, statusbar
, cfgbox
;
203 HWND numpad
; /* window handle for the numeric pad */
206 HBITMAP bitmap
, prevbm
;
207 RECT bitmapPosition
; /* game bitmap position within game window */
213 HMENU gamemenu
, typemenu
;
215 DWORD timer_last_tickcount
;
217 game_params
**presets
;
219 int nfonts
, fontsize
;
221 struct cfg_aux
*cfgaux
;
222 int cfg_which
, dlg_done
;
227 enum { DRAWING
, PRINTING
, NOTHING
} drawstatus
;
229 int printcount
, printw
, printh
, printsolns
, printcurr
, printcolour
;
231 int printoffsetx
, printoffsety
;
232 float printpixelscale
;
234 int linewidth
, linedotted
;
240 void frontend_free(frontend
*fe
)
253 static void update_type_menu_tick(frontend
*fe
);
254 static void update_copy_menu_greying(frontend
*fe
);
256 void fatal(char *fmt
, ...)
262 vsprintf(buf
, fmt
, ap
);
265 MessageBox(NULL
, buf
, "Fatal error", MB_ICONEXCLAMATION
| MB_OK
);
270 char *geterrstr(void)
273 DWORD dw
= GetLastError();
277 FORMAT_MESSAGE_ALLOCATE_BUFFER
|
278 FORMAT_MESSAGE_FROM_SYSTEM
,
281 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
285 ret
= dupstr(lpMsgBuf
);
292 void get_random_seed(void **randseed
, int *randseedsize
)
294 SYSTEMTIME
*st
= snew(SYSTEMTIME
);
298 *randseed
= (void *)st
;
299 *randseedsize
= sizeof(SYSTEMTIME
);
302 static void win_status_bar(void *handle
, char *text
)
307 frontend
*fe
= (frontend
*)handle
;
310 MultiByteToWideChar (CP_ACP
, 0, text
, -1, wText
, 255);
311 SendMessage(fe
->statusbar
, SB_SETTEXT
,
312 (WPARAM
) 255 | SBT_NOBORDERS
,
315 SetWindowText(fe
->statusbar
, text
);
319 static blitter
*win_blitter_new(void *handle
, int w
, int h
)
321 blitter
*bl
= snew(blitter
);
323 memset(bl
, 0, sizeof(blitter
));
331 static void win_blitter_free(void *handle
, blitter
*bl
)
333 if (bl
->bitmap
) DeleteObject(bl
->bitmap
);
337 static void blitter_mkbitmap(frontend
*fe
, blitter
*bl
)
339 HDC hdc
= GetDC(fe
->hwnd
);
340 bl
->bitmap
= CreateCompatibleBitmap(hdc
, bl
->w
, bl
->h
);
341 ReleaseDC(fe
->hwnd
, hdc
);
344 /* BitBlt(dstDC, dstX, dstY, dstW, dstH, srcDC, srcX, srcY, dType) */
346 static void win_blitter_save(void *handle
, blitter
*bl
, int x
, int y
)
348 frontend
*fe
= (frontend
*)handle
;
349 HDC hdc_win
, hdc_blit
;
352 assert(fe
->drawstatus
== DRAWING
);
354 if (!bl
->bitmap
) blitter_mkbitmap(fe
, bl
);
356 bl
->x
= x
; bl
->y
= y
;
358 hdc_win
= GetDC(fe
->hwnd
);
359 hdc_blit
= CreateCompatibleDC(hdc_win
);
360 if (!hdc_blit
) fatal("hdc_blit failed: 0x%x", GetLastError());
362 prev_blit
= SelectObject(hdc_blit
, bl
->bitmap
);
363 if (prev_blit
== NULL
|| prev_blit
== HGDI_ERROR
)
364 fatal("SelectObject for hdc_main failed: 0x%x", GetLastError());
366 if (!BitBlt(hdc_blit
, 0, 0, bl
->w
, bl
->h
,
367 fe
->hdc
, x
, y
, SRCCOPY
))
368 fatal("BitBlt failed: 0x%x", GetLastError());
370 SelectObject(hdc_blit
, prev_blit
);
372 ReleaseDC(fe
->hwnd
, hdc_win
);
375 static void win_blitter_load(void *handle
, blitter
*bl
, int x
, int y
)
377 frontend
*fe
= (frontend
*)handle
;
378 HDC hdc_win
, hdc_blit
;
381 assert(fe
->drawstatus
== DRAWING
);
383 assert(bl
->bitmap
); /* we should always have saved before loading */
385 if (x
== BLITTER_FROMSAVED
) x
= bl
->x
;
386 if (y
== BLITTER_FROMSAVED
) y
= bl
->y
;
388 hdc_win
= GetDC(fe
->hwnd
);
389 hdc_blit
= CreateCompatibleDC(hdc_win
);
391 prev_blit
= SelectObject(hdc_blit
, bl
->bitmap
);
393 BitBlt(fe
->hdc
, x
, y
, bl
->w
, bl
->h
,
394 hdc_blit
, 0, 0, SRCCOPY
);
396 SelectObject(hdc_blit
, prev_blit
);
398 ReleaseDC(fe
->hwnd
, hdc_win
);
401 void frontend_default_colour(frontend
*fe
, float *output
)
403 DWORD c
= GetSysColor(COLOR_MENU
); /* ick */
405 output
[0] = (float)(GetRValue(c
) / 255.0);
406 output
[1] = (float)(GetGValue(c
) / 255.0);
407 output
[2] = (float)(GetBValue(c
) / 255.0);
410 static POINT
win_transform_point(frontend
*fe
, int x
, int y
)
414 assert(fe
->drawstatus
!= NOTHING
);
416 if (fe
->drawstatus
== PRINTING
) {
417 ret
.x
= (int)(fe
->printoffsetx
+ fe
->printpixelscale
* x
);
418 ret
.y
= (int)(fe
->printoffsety
+ fe
->printpixelscale
* y
);
427 static void win_text_colour(frontend
*fe
, int colour
)
429 assert(fe
->drawstatus
!= NOTHING
);
431 if (fe
->drawstatus
== PRINTING
) {
434 print_get_colour(fe
->dr
, colour
, fe
->printcolour
, &hatch
, &r
, &g
, &b
);
437 * Displaying text in hatched colours is not permitted.
441 SetTextColor(fe
->hdc
, RGB(r
* 255, g
* 255, b
* 255));
443 SetTextColor(fe
->hdc
, fe
->colours
[colour
]);
447 static void win_set_brush(frontend
*fe
, int colour
)
450 assert(fe
->drawstatus
!= NOTHING
);
452 if (fe
->drawstatus
== PRINTING
) {
455 print_get_colour(fe
->dr
, colour
, fe
->printcolour
, &hatch
, &r
, &g
, &b
);
458 br
= CreateSolidBrush(RGB(r
* 255, g
* 255, b
* 255));
462 * This is only ever required during printing, and the
463 * PocketPC port doesn't support printing.
465 fatal("CreateHatchBrush not supported");
467 br
= CreateHatchBrush(hatch
== HATCH_BACKSLASH
? HS_FDIAGONAL
:
468 hatch
== HATCH_SLASH
? HS_BDIAGONAL
:
469 hatch
== HATCH_HORIZ
? HS_HORIZONTAL
:
470 hatch
== HATCH_VERT
? HS_VERTICAL
:
471 hatch
== HATCH_PLUS
? HS_CROSS
:
472 /* hatch == HATCH_X ? */ HS_DIAGCROSS
,
477 br
= fe
->brushes
[colour
];
479 fe
->oldbr
= SelectObject(fe
->hdc
, br
);
482 static void win_reset_brush(frontend
*fe
)
486 assert(fe
->drawstatus
!= NOTHING
);
488 br
= SelectObject(fe
->hdc
, fe
->oldbr
);
489 if (fe
->drawstatus
== PRINTING
)
493 static void win_set_pen(frontend
*fe
, int colour
, int thin
)
496 assert(fe
->drawstatus
!= NOTHING
);
498 if (fe
->drawstatus
== PRINTING
) {
501 int width
= thin
? 0 : fe
->linewidth
;
506 print_get_colour(fe
->dr
, colour
, fe
->printcolour
, &hatch
, &r
, &g
, &b
);
508 * Stroking in hatched colours is not permitted.
511 pen
= CreatePen(fe
->linedotted
? PS_DOT
: PS_SOLID
,
512 width
, RGB(r
* 255, g
* 255, b
* 255));
514 pen
= fe
->pens
[colour
];
516 fe
->oldpen
= SelectObject(fe
->hdc
, pen
);
519 static void win_reset_pen(frontend
*fe
)
523 assert(fe
->drawstatus
!= NOTHING
);
525 pen
= SelectObject(fe
->hdc
, fe
->oldpen
);
526 if (fe
->drawstatus
== PRINTING
)
530 static void win_clip(void *handle
, int x
, int y
, int w
, int h
)
532 frontend
*fe
= (frontend
*)handle
;
535 if (fe
->drawstatus
== NOTHING
)
538 p
= win_transform_point(fe
, x
, y
);
539 q
= win_transform_point(fe
, x
+w
, y
+h
);
540 IntersectClipRect(fe
->hdc
, p
.x
, p
.y
, q
.x
, q
.y
);
543 static void win_unclip(void *handle
)
545 frontend
*fe
= (frontend
*)handle
;
547 if (fe
->drawstatus
== NOTHING
)
550 SelectClipRgn(fe
->hdc
, NULL
);
553 static void win_draw_text(void *handle
, int x
, int y
, int fonttype
,
554 int fontsize
, int align
, int colour
, char *text
)
556 frontend
*fe
= (frontend
*)handle
;
561 if (fe
->drawstatus
== NOTHING
)
564 if (fe
->drawstatus
== PRINTING
)
565 fontsize
= (int)(fontsize
* fe
->printpixelscale
);
567 xy
= win_transform_point(fe
, x
, y
);
570 * Find or create the font.
572 for (i
= fe
->fontstart
; i
< fe
->nfonts
; i
++)
573 if (fe
->fonts
[i
].type
== fonttype
&& fe
->fonts
[i
].size
== fontsize
)
576 if (i
== fe
->nfonts
) {
577 if (fe
->fontsize
<= fe
->nfonts
) {
578 fe
->fontsize
= fe
->nfonts
+ 10;
579 fe
->fonts
= sresize(fe
->fonts
, fe
->fontsize
, struct font
);
584 fe
->fonts
[i
].type
= fonttype
;
585 fe
->fonts
[i
].size
= fontsize
;
587 memset (&lf
, 0, sizeof(LOGFONT
));
588 lf
.lfHeight
= -fontsize
;
589 lf
.lfWeight
= (fe
->drawstatus
== PRINTING
? 0 : FW_BOLD
);
590 lf
.lfCharSet
= DEFAULT_CHARSET
;
591 lf
.lfOutPrecision
= OUT_DEFAULT_PRECIS
;
592 lf
.lfClipPrecision
= CLIP_DEFAULT_PRECIS
;
593 lf
.lfQuality
= DEFAULT_QUALITY
;
594 lf
.lfPitchAndFamily
= (fonttype
== FONT_FIXED
?
595 FIXED_PITCH
| FF_DONTCARE
:
596 VARIABLE_PITCH
| FF_SWISS
);
598 wcscpy(lf
.lfFaceName
, TEXT("Tahoma"));
601 fe
->fonts
[i
].font
= CreateFontIndirect(&lf
);
605 * Position and draw the text.
612 MultiByteToWideChar (CP_UTF8
, 0, text
, -1, wText
, 256);
614 oldfont
= SelectObject(fe
->hdc
, fe
->fonts
[i
].font
);
615 if (GetTextMetrics(fe
->hdc
, &tm
)) {
616 if (align
& ALIGN_VCENTRE
)
617 xy
.y
-= (tm
.tmAscent
+tm
.tmDescent
)/2;
621 if (GetTextExtentPoint32W(fe
->hdc
, wText
, wcslen(wText
), &size
))
623 if (align
& ALIGN_HCENTRE
)
625 else if (align
& ALIGN_HRIGHT
)
628 SetBkMode(fe
->hdc
, TRANSPARENT
);
629 win_text_colour(fe
, colour
);
630 ExtTextOutW(fe
->hdc
, xy
.x
, xy
.y
, 0, NULL
, wText
, wcslen(wText
), NULL
);
631 SelectObject(fe
->hdc
, oldfont
);
635 static void win_draw_rect(void *handle
, int x
, int y
, int w
, int h
, int colour
)
637 frontend
*fe
= (frontend
*)handle
;
640 if (fe
->drawstatus
== NOTHING
)
643 if (fe
->drawstatus
== DRAWING
&& w
== 1 && h
== 1) {
645 * Rectangle() appears to get uppity if asked to draw a 1x1
646 * rectangle, presumably on the grounds that that's beneath
647 * its dignity and you ought to be using SetPixel instead.
650 SetPixel(fe
->hdc
, x
, y
, fe
->colours
[colour
]);
652 win_set_brush(fe
, colour
);
653 win_set_pen(fe
, colour
, TRUE
);
654 p
= win_transform_point(fe
, x
, y
);
655 q
= win_transform_point(fe
, x
+w
, y
+h
);
656 Rectangle(fe
->hdc
, p
.x
, p
.y
, q
.x
, q
.y
);
662 static void win_draw_line(void *handle
, int x1
, int y1
, int x2
, int y2
, int colour
)
664 frontend
*fe
= (frontend
*)handle
;
667 if (fe
->drawstatus
== NOTHING
)
670 win_set_pen(fe
, colour
, FALSE
);
671 pp
[0] = win_transform_point(fe
, x1
, y1
);
672 pp
[1] = win_transform_point(fe
, x2
, y2
);
673 Polyline(fe
->hdc
, pp
, 2);
674 if (fe
->drawstatus
== DRAWING
)
675 SetPixel(fe
->hdc
, pp
[1].x
, pp
[1].y
, fe
->colours
[colour
]);
679 static void win_draw_circle(void *handle
, int cx
, int cy
, int radius
,
680 int fillcolour
, int outlinecolour
)
682 frontend
*fe
= (frontend
*)handle
;
685 assert(outlinecolour
>= 0);
687 if (fe
->drawstatus
== NOTHING
)
691 win_set_brush(fe
, fillcolour
);
693 fe
->oldbr
= SelectObject(fe
->hdc
, GetStockObject(NULL_BRUSH
));
695 win_set_pen(fe
, outlinecolour
, FALSE
);
696 p
= win_transform_point(fe
, cx
- radius
, cy
- radius
);
697 q
= win_transform_point(fe
, cx
+ radius
, cy
+ radius
);
698 Ellipse(fe
->hdc
, p
.x
, p
.y
, q
.x
+1, q
.y
+1);
703 static void win_draw_polygon(void *handle
, int *coords
, int npoints
,
704 int fillcolour
, int outlinecolour
)
706 frontend
*fe
= (frontend
*)handle
;
710 if (fe
->drawstatus
== NOTHING
)
713 pts
= snewn(npoints
+1, POINT
);
715 for (i
= 0; i
<= npoints
; i
++) {
716 int j
= (i
< npoints
? i
: 0);
717 pts
[i
] = win_transform_point(fe
, coords
[j
*2], coords
[j
*2+1]);
720 assert(outlinecolour
>= 0);
722 if (fillcolour
>= 0) {
723 win_set_brush(fe
, fillcolour
);
724 win_set_pen(fe
, outlinecolour
, FALSE
);
725 Polygon(fe
->hdc
, pts
, npoints
);
729 win_set_pen(fe
, outlinecolour
, FALSE
);
730 Polyline(fe
->hdc
, pts
, npoints
+1);
737 static void win_start_draw(void *handle
)
739 frontend
*fe
= (frontend
*)handle
;
742 assert(fe
->drawstatus
== NOTHING
);
744 hdc_win
= GetDC(fe
->hwnd
);
745 fe
->hdc
= CreateCompatibleDC(hdc_win
);
746 fe
->prevbm
= SelectObject(fe
->hdc
, fe
->bitmap
);
747 ReleaseDC(fe
->hwnd
, hdc_win
);
750 SetMapMode(fe
->hdc
, MM_TEXT
);
752 fe
->drawstatus
= DRAWING
;
755 static void win_draw_update(void *handle
, int x
, int y
, int w
, int h
)
757 frontend
*fe
= (frontend
*)handle
;
760 if (fe
->drawstatus
!= DRAWING
)
768 OffsetRect(&r
, fe
->bitmapPosition
.left
, fe
->bitmapPosition
.top
);
769 InvalidateRect(fe
->hwnd
, &r
, FALSE
);
772 static void win_end_draw(void *handle
)
774 frontend
*fe
= (frontend
*)handle
;
775 assert(fe
->drawstatus
== DRAWING
);
776 SelectObject(fe
->hdc
, fe
->prevbm
);
779 DeleteObject(fe
->clip
);
782 fe
->drawstatus
= NOTHING
;
785 static void win_line_width(void *handle
, float width
)
787 frontend
*fe
= (frontend
*)handle
;
789 assert(fe
->drawstatus
!= DRAWING
);
790 if (fe
->drawstatus
== NOTHING
)
793 fe
->linewidth
= (int)(width
* fe
->printpixelscale
);
796 static void win_line_dotted(void *handle
, int dotted
)
798 frontend
*fe
= (frontend
*)handle
;
800 assert(fe
->drawstatus
!= DRAWING
);
801 if (fe
->drawstatus
== NOTHING
)
804 fe
->linedotted
= dotted
;
807 static void win_begin_doc(void *handle
, int pages
)
809 frontend
*fe
= (frontend
*)handle
;
811 assert(fe
->drawstatus
!= DRAWING
);
812 if (fe
->drawstatus
== NOTHING
)
815 if (StartDoc(fe
->hdc
, &fe
->di
) <= 0) {
816 char *e
= geterrstr();
817 MessageBox(fe
->hwnd
, e
, "Error starting to print",
818 MB_ICONERROR
| MB_OK
);
820 fe
->drawstatus
= NOTHING
;
824 * Push a marker on the font stack so that we won't use the
825 * same fonts for printing and drawing. (This is because
826 * drawing seems to look generally better in bold, but printing
827 * is better not in bold.)
829 fe
->fontstart
= fe
->nfonts
;
832 static void win_begin_page(void *handle
, int number
)
834 frontend
*fe
= (frontend
*)handle
;
836 assert(fe
->drawstatus
!= DRAWING
);
837 if (fe
->drawstatus
== NOTHING
)
840 if (StartPage(fe
->hdc
) <= 0) {
841 char *e
= geterrstr();
842 MessageBox(fe
->hwnd
, e
, "Error starting a page",
843 MB_ICONERROR
| MB_OK
);
845 fe
->drawstatus
= NOTHING
;
849 static void win_begin_puzzle(void *handle
, float xm
, float xc
,
850 float ym
, float yc
, int pw
, int ph
, float wmm
)
852 frontend
*fe
= (frontend
*)handle
;
853 int ppw
, pph
, pox
, poy
;
854 float mmpw
, mmph
, mmox
, mmoy
;
857 assert(fe
->drawstatus
!= DRAWING
);
858 if (fe
->drawstatus
== NOTHING
)
861 ppw
= GetDeviceCaps(fe
->hdc
, HORZRES
);
862 pph
= GetDeviceCaps(fe
->hdc
, VERTRES
);
863 mmpw
= (float)GetDeviceCaps(fe
->hdc
, HORZSIZE
);
864 mmph
= (float)GetDeviceCaps(fe
->hdc
, VERTSIZE
);
867 * Compute the puzzle's position on the logical page.
869 mmox
= xm
* mmpw
+ xc
;
870 mmoy
= ym
* mmph
+ yc
;
873 * Work out what that comes to in pixels.
875 pox
= (int)(mmox
* (float)ppw
/ mmpw
);
876 poy
= (int)(mmoy
* (float)pph
/ mmph
);
879 * And determine the scale.
881 * I need a scale such that the maximum puzzle-coordinate
882 * extent of the rectangle (pw * scale) is equal to the pixel
883 * equivalent of the puzzle's millimetre width (wmm * ppw /
886 scale
= (wmm
* ppw
) / (mmpw
* pw
);
889 * Now store pox, poy and scale for use in the main drawing
892 fe
->printoffsetx
= pox
;
893 fe
->printoffsety
= poy
;
894 fe
->printpixelscale
= scale
;
897 fe
->linedotted
= FALSE
;
900 static void win_end_puzzle(void *handle
)
902 /* Nothing needs to be done here. */
905 static void win_end_page(void *handle
, int number
)
907 frontend
*fe
= (frontend
*)handle
;
909 assert(fe
->drawstatus
!= DRAWING
);
911 if (fe
->drawstatus
== NOTHING
)
914 if (EndPage(fe
->hdc
) <= 0) {
915 char *e
= geterrstr();
916 MessageBox(fe
->hwnd
, e
, "Error finishing a page",
917 MB_ICONERROR
| MB_OK
);
919 fe
->drawstatus
= NOTHING
;
923 static void win_end_doc(void *handle
)
925 frontend
*fe
= (frontend
*)handle
;
927 assert(fe
->drawstatus
!= DRAWING
);
930 * Free all the fonts created since we began printing.
932 while (fe
->nfonts
> fe
->fontstart
) {
934 DeleteObject(fe
->fonts
[fe
->nfonts
].font
);
939 * The MSDN web site sample code doesn't bother to call EndDoc
940 * if an error occurs half way through printing. I expect doing
941 * so would cause the erroneous document to actually be
942 * printed, or something equally undesirable.
944 if (fe
->drawstatus
== NOTHING
)
947 if (EndDoc(fe
->hdc
) <= 0) {
948 char *e
= geterrstr();
949 MessageBox(fe
->hwnd
, e
, "Error finishing printing",
950 MB_ICONERROR
| MB_OK
);
952 fe
->drawstatus
= NOTHING
;
956 char *win_text_fallback(void *handle
, const char *const *strings
, int nstrings
)
959 * We assume Windows can cope with any UTF-8 likely to be
960 * emitted by a puzzle.
962 return dupstr(strings
[0]);
965 const struct drawing_api win_drawing
= {
992 void print(frontend
*fe
)
998 midend
*nme
= NULL
; /* non-interactive midend for bulk puzzle generation */
1003 * Create our document structure and fill it up with puzzles.
1005 doc
= document_new(fe
->printw
, fe
->printh
, fe
->printscale
/ 100.0F
);
1006 for (i
= 0; i
< fe
->printcount
; i
++) {
1007 if (i
== 0 && fe
->printcurr
) {
1008 err
= midend_print_puzzle(fe
->me
, doc
, fe
->printsolns
);
1011 game_params
*params
;
1013 nme
= midend_new(NULL
, fe
->game
, NULL
, NULL
);
1016 * Set the non-interactive mid-end to have the same
1017 * parameters as the standard one.
1019 params
= midend_get_params(fe
->me
);
1020 midend_set_params(nme
, params
);
1021 fe
->game
->free_params(params
);
1024 midend_new_game(nme
);
1025 err
= midend_print_puzzle(nme
, doc
, fe
->printsolns
);
1034 MessageBox(fe
->hwnd
, err
, "Error preparing puzzles for printing",
1035 MB_ICONERROR
| MB_OK
);
1040 memset(&pd
, 0, sizeof(pd
));
1041 pd
.lStructSize
= sizeof(pd
);
1042 pd
.hwndOwner
= fe
->hwnd
;
1044 pd
.hDevNames
= NULL
;
1045 pd
.Flags
= PD_USEDEVMODECOPIESANDCOLLATE
| PD_RETURNDC
|
1046 PD_NOPAGENUMS
| PD_NOSELECTION
;
1048 pd
.nFromPage
= pd
.nToPage
= 0xFFFF;
1049 pd
.nMinPage
= pd
.nMaxPage
= 1;
1051 if (!PrintDlg(&pd
)) {
1057 * Now pd.hDC is a device context for the printer.
1061 * FIXME: IWBNI we put up an Abort box here.
1064 memset(&fe
->di
, 0, sizeof(fe
->di
));
1065 fe
->di
.cbSize
= sizeof(fe
->di
);
1066 sprintf(doctitle
, "Printed puzzles from %s (from Simon Tatham's"
1067 " Portable Puzzle Collection)", fe
->game
->name
);
1068 fe
->di
.lpszDocName
= doctitle
;
1069 fe
->di
.lpszOutput
= NULL
;
1070 fe
->di
.lpszDatatype
= NULL
;
1073 fe
->drawstatus
= PRINTING
;
1076 fe
->dr
= drawing_new(&win_drawing
, NULL
, fe
);
1077 document_print(doc
, fe
->dr
);
1078 drawing_free(fe
->dr
);
1081 fe
->drawstatus
= NOTHING
;
1088 void deactivate_timer(frontend
*fe
)
1091 return; /* for non-interactive midend */
1092 if (fe
->hwnd
) KillTimer(fe
->hwnd
, fe
->timer
);
1096 void activate_timer(frontend
*fe
)
1099 return; /* for non-interactive midend */
1101 fe
->timer
= SetTimer(fe
->hwnd
, 1, 20, NULL
);
1102 fe
->timer_last_tickcount
= GetTickCount();
1106 void write_clip(HWND hwnd
, char *data
)
1114 * Windows expects CRLF in the clipboard, so we must convert
1115 * any \n that has come out of the puzzle backend.
1118 for (i
= 0; data
[i
]; i
++) {
1119 if (data
[i
] == '\n')
1123 data2
= snewn(len
+1, char);
1125 for (i
= 0; data
[i
]; i
++) {
1126 if (data
[i
] == '\n')
1128 data2
[j
++] = data
[i
];
1133 clipdata
= GlobalAlloc(GMEM_DDESHARE
| GMEM_MOVEABLE
, len
+ 1);
1138 lock
= GlobalLock(clipdata
);
1140 GlobalFree(clipdata
);
1144 memcpy(lock
, data2
, len
);
1145 ((unsigned char *) lock
)[len
] = 0;
1146 GlobalUnlock(clipdata
);
1148 if (OpenClipboard(hwnd
)) {
1150 SetClipboardData(CF_TEXT
, clipdata
);
1153 GlobalFree(clipdata
);
1159 * Set up Help and see if we can find a help file.
1161 static void init_help(void)
1164 char b
[2048], *p
, *q
, *r
;
1168 * Find the executable file path, so we can look alongside
1169 * it for help files. Trim the filename off the end.
1171 GetModuleFileName(NULL
, b
, sizeof(b
) - 1);
1173 p
= strrchr(b
, '\\');
1174 if (p
&& p
>= r
) r
= p
+1;
1175 q
= strrchr(b
, ':');
1176 if (q
&& q
>= r
) r
= q
+1;
1180 * Try HTML Help first.
1182 strcpy(r
, CHM_FILE_NAME
);
1183 if ( (fp
= fopen(b
, "r")) != NULL
) {
1187 * We have a .CHM. See if we can use it.
1189 hh_dll
= LoadLibrary("hhctrl.ocx");
1191 htmlhelp
= (htmlhelp_t
)GetProcAddress(hh_dll
, "HtmlHelpA");
1193 FreeLibrary(hh_dll
);
1196 help_path
= dupstr(b
);
1201 #endif /* NO_HTMLHELP */
1204 * Now try old-style .HLP.
1206 strcpy(r
, HELP_FILE_NAME
);
1207 if ( (fp
= fopen(b
, "r")) != NULL
) {
1210 help_path
= dupstr(b
);
1214 * See if there's a .CNT file alongside it.
1216 strcpy(r
, HELP_CNT_NAME
);
1217 if ( (fp
= fopen(b
, "r")) != NULL
) {
1219 help_has_contents
= TRUE
;
1221 help_has_contents
= FALSE
;
1226 help_type
= NONE
; /* didn't find any */
1235 static void start_help(frontend
*fe
, const char *topic
)
1240 switch (help_type
) {
1244 str
= snewn(10+strlen(topic
), char);
1245 sprintf(str
, "JI(`',`%s')", topic
);
1247 } else if (help_has_contents
) {
1250 cmd
= HELP_CONTENTS
;
1252 WinHelp(fe
->hwnd
, help_path
, cmd
, (DWORD
)str
);
1253 fe
->help_running
= TRUE
;
1260 str
= snewn(20 + strlen(topic
) + strlen(help_path
), char);
1261 sprintf(str
, "%s::/%s.html>main", help_path
, topic
);
1263 str
= dupstr(help_path
);
1265 htmlhelp(fe
->hwnd
, str
, HH_DISPLAY_TOPIC
, 0);
1266 fe
->help_running
= TRUE
;
1268 #endif /* NO_HTMLHELP */
1270 assert(!"This shouldn't happen");
1278 * Stop Help on window cleanup.
1280 static void stop_help(frontend
*fe
)
1282 if (fe
->help_running
) {
1283 switch (help_type
) {
1285 WinHelp(fe
->hwnd
, help_path
, HELP_QUIT
, 0);
1290 htmlhelp(NULL
, NULL
, HH_CLOSE_ALL
, 0);
1292 #endif /* NO_HTMLHELP */
1294 assert(!"This shouldn't happen");
1297 fe
->help_running
= FALSE
;
1304 * Terminate Help on process exit.
1306 static void cleanup_help(void)
1308 /* Nothing to do currently.
1309 * (If we were running HTML Help single-threaded, this is where we'd
1310 * call HH_UNINITIALIZE.) */
1313 static int get_statusbar_height(frontend
*fe
)
1316 if (fe
->statusbar
) {
1318 GetWindowRect(fe
->statusbar
, &sr
);
1319 sy
= sr
.bottom
- sr
.top
;
1326 static void adjust_statusbar(frontend
*fe
, RECT
*r
)
1330 if (!fe
->statusbar
) return;
1332 sy
= get_statusbar_height(fe
);
1334 SetWindowPos(fe
->statusbar
, NULL
, 0, r
->bottom
-r
->top
-sy
, r
->right
-r
->left
,
1339 static void get_menu_size(HWND wh
, RECT
*r
)
1341 HMENU bar
= GetMenu(wh
);
1345 SetRect(r
, 0, 0, 0, 0);
1346 for (i
= 0; i
< GetMenuItemCount(bar
); i
++) {
1347 GetMenuItemRect(wh
, bar
, i
, &rect
);
1348 UnionRect(r
, r
, &rect
);
1353 * Given a proposed new puzzle size (cx,cy), work out the actual
1354 * puzzle size that would be (px,py) and the window size including
1355 * furniture (wx,wy).
1358 static int check_window_resize(frontend
*fe
, int cx
, int cy
,
1363 int x
, y
, sy
= get_statusbar_height(fe
), changed
= 0;
1365 /* disallow making window thinner than menu bar */
1366 x
= max(cx
, fe
->xmin
);
1367 y
= max(cy
- sy
, fe
->ymin
);
1370 * See if we actually got the window size we wanted, and adjust
1371 * the puzzle size if not.
1373 midend_size(fe
->me
, &x
, &y
, TRUE
);
1374 if (x
!= cx
|| y
!= cy
) {
1376 * Resize the window, now we know what size we _really_
1382 AdjustWindowRectEx(&r
, WINFLAGS
, TRUE
, 0);
1383 *wx
= r
.right
- r
.left
;
1384 *wy
= r
.bottom
- r
.top
;
1392 (float)midend_tilesize(fe
->me
) / (float)fe
->game
->preferred_tilesize
;
1398 * Given the current window size, make sure it's sane for the
1399 * current puzzle and resize if necessary.
1402 static void check_window_size(frontend
*fe
, int *px
, int *py
)
1407 GetClientRect(fe
->hwnd
, &r
);
1408 cx
= r
.right
- r
.left
;
1409 cy
= r
.bottom
- r
.top
;
1411 if (check_window_resize(fe
, cx
, cy
, px
, py
, &wx
, &wy
)) {
1413 SetWindowPos(fe
->hwnd
, NULL
, 0, 0, wx
, wy
,
1414 SWP_NOMOVE
| SWP_NOZORDER
);
1419 GetClientRect(fe
->hwnd
, &r
);
1420 adjust_statusbar(fe
, &r
);
1423 static void get_max_puzzle_size(frontend
*fe
, int *x
, int *y
)
1427 if (SystemParametersInfo(SPI_GETWORKAREA
, 0, &sr
, FALSE
)) {
1428 *x
= sr
.right
- sr
.left
;
1429 *y
= sr
.bottom
- sr
.top
;
1434 AdjustWindowRectEx(&r
, WINFLAGS
, TRUE
, 0);
1435 *x
-= r
.right
- r
.left
- 100;
1436 *y
-= r
.bottom
- r
.top
- 100;
1441 if (fe
->statusbar
!= NULL
) {
1442 GetWindowRect(fe
->statusbar
, &sr
);
1443 *y
-= sr
.bottom
- sr
.top
;
1448 /* Toolbar buttons on the numeric pad */
1449 static TBBUTTON tbNumpadButtons
[] =
1451 {0, IDM_KEYEMUL
+ '1', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1452 {1, IDM_KEYEMUL
+ '2', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1453 {2, IDM_KEYEMUL
+ '3', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1454 {3, IDM_KEYEMUL
+ '4', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1455 {4, IDM_KEYEMUL
+ '5', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1456 {5, IDM_KEYEMUL
+ '6', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1457 {6, IDM_KEYEMUL
+ '7', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1458 {7, IDM_KEYEMUL
+ '8', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1459 {8, IDM_KEYEMUL
+ '9', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1},
1460 {9, IDM_KEYEMUL
+ ' ', TBSTATE_ENABLED
, TBSTYLE_BUTTON
, 0, -1}
1465 * Allocate a new frontend structure and create its main window.
1467 static frontend
*frontend_new(HINSTANCE inst
)
1470 const char *nogame
= "Puzzles (no game selected)";
1472 fe
= snew(frontend
);
1482 fe
->help_running
= FALSE
;
1484 fe
->drawstatus
= NOTHING
;
1489 fe
->nfonts
= fe
->fontsize
= 0;
1495 fe
->puzz_scale
= 1.0;
1498 MultiByteToWideChar (CP_ACP
, 0, nogame
, -1, wGameName
, 256);
1499 fe
->hwnd
= CreateWindowEx(0, wClassName
, wGameName
,
1501 CW_USEDEFAULT
, CW_USEDEFAULT
,
1502 CW_USEDEFAULT
, CW_USEDEFAULT
,
1503 NULL
, NULL
, inst
, NULL
);
1507 RECT rc
, rcBar
, rcTB
, rcClient
;
1509 memset (&mbi
, 0, sizeof(SHMENUBARINFO
));
1510 mbi
.cbSize
= sizeof(SHMENUBARINFO
);
1511 mbi
.hwndParent
= fe
->hwnd
;
1512 mbi
.nToolBarId
= IDR_MENUBAR1
;
1513 mbi
.hInstRes
= inst
;
1515 SHCreateMenuBar(&mbi
);
1517 GetWindowRect(fe
->hwnd
, &rc
);
1518 GetWindowRect(mbi
.hwndMB
, &rcBar
);
1519 rc
.bottom
-= rcBar
.bottom
- rcBar
.top
;
1520 MoveWindow(fe
->hwnd
, rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
, FALSE
);
1525 fe
->hwnd
= CreateWindowEx(0, CLASSNAME
, nogame
,
1526 WS_OVERLAPPEDWINDOW
&~
1528 CW_USEDEFAULT
, CW_USEDEFAULT
,
1529 CW_USEDEFAULT
, CW_USEDEFAULT
,
1530 NULL
, NULL
, inst
, NULL
);
1532 DWORD lerr
= GetLastError();
1533 printf("no window: 0x%x\n", lerr
);
1537 fe
->gamemenu
= NULL
;
1540 fe
->statusbar
= NULL
;
1543 SetWindowLong(fe
->hwnd
, GWL_USERDATA
, (LONG
)fe
);
1549 * Populate a frontend structure with a (new) game and midend structure, and
1550 * create any window furniture that it needs.
1552 * Previously-allocated memory and window furniture will be freed by this function.
1554 static int new_game(frontend
*fe
, const game
*game
, char *game_id
, char **error
)
1561 if (fe
->me
) midend_free(fe
->me
);
1562 fe
->me
= midend_new(fe
, fe
->game
, &win_drawing
, fe
);
1565 *error
= midend_game_id(fe
->me
, game_id
);
1567 midend_free(fe
->me
);
1573 midend_new_game(fe
->me
);
1579 colours
= midend_colours(fe
->me
, &ncolours
);
1581 if (fe
->colours
) sfree(fe
->colours
);
1582 if (fe
->brushes
) sfree(fe
->brushes
);
1583 if (fe
->pens
) sfree(fe
->pens
);
1585 fe
->colours
= snewn(ncolours
, COLORREF
);
1586 fe
->brushes
= snewn(ncolours
, HBRUSH
);
1587 fe
->pens
= snewn(ncolours
, HPEN
);
1589 for (i
= 0; i
< ncolours
; i
++) {
1590 fe
->colours
[i
] = RGB(255 * colours
[i
*3+0],
1591 255 * colours
[i
*3+1],
1592 255 * colours
[i
*3+2]);
1593 fe
->brushes
[i
] = CreateSolidBrush(fe
->colours
[i
]);
1594 fe
->pens
[i
] = CreatePen(PS_SOLID
, 1, fe
->colours
[i
]);
1600 DestroyWindow(fe
->statusbar
);
1601 if (midend_wants_statusbar(fe
->me
)) {
1602 fe
->statusbar
= CreateWindowEx(0, STATUSCLASSNAME
, TEXT("ooh"),
1603 WS_CHILD
| WS_VISIBLE
,
1604 0, 0, 0, 0, /* status bar does these */
1605 NULL
, NULL
, fe
->inst
, NULL
);
1607 fe
->statusbar
= NULL
;
1609 get_max_puzzle_size(fe
, &x
, &y
);
1610 midend_size(fe
->me
, &x
, &y
, FALSE
);
1615 AdjustWindowRectEx(&r
, WINFLAGS
, TRUE
, 0);
1619 DestroyWindow(fe
->numpad
);
1620 if (fe
->game
->flags
& REQUIRE_NUMPAD
)
1622 fe
->numpad
= CreateToolbarEx (fe
->hwnd
,
1623 WS_VISIBLE
| WS_CHILD
| CCS_NOPARENTALIGN
| TBSTYLE_FLAT
,
1624 0, 10, fe
->inst
, IDR_PADTOOLBAR
,
1625 tbNumpadButtons
, sizeof (tbNumpadButtons
) / sizeof (TBBUTTON
),
1626 0, 0, 14, 15, sizeof (TBBUTTON
));
1627 GetWindowRect(fe
->numpad
, &rcTB
);
1628 GetClientRect(fe
->hwnd
, &rcClient
);
1629 MoveWindow(fe
->numpad
,
1631 rcClient
.bottom
- (rcTB
.bottom
- rcTB
.top
) - 1,
1633 rcTB
.bottom
- rcTB
.top
,
1635 SendMessage(fe
->numpad
, TB_SETINDENT
, (rcClient
.right
- (10 * 21)) / 2, 0);
1640 MultiByteToWideChar (CP_ACP
, 0, fe
->game
->name
, -1, wGameName
, 256);
1641 SetWindowText(fe
->hwnd
, wGameName
);
1643 SetWindowText(fe
->hwnd
, fe
->game
->name
);
1647 DestroyWindow(fe
->statusbar
);
1648 if (midend_wants_statusbar(fe
->me
)) {
1650 fe
->statusbar
= CreateWindowEx(0, STATUSCLASSNAME
, TEXT("ooh"),
1651 WS_CHILD
| WS_VISIBLE
,
1652 0, 0, 0, 0, /* status bar does these */
1653 fe
->hwnd
, NULL
, fe
->inst
, NULL
);
1655 /* Flat status bar looks better on the Pocket PC */
1656 SendMessage(fe
->statusbar
, SB_SIMPLE
, (WPARAM
) TRUE
, 0);
1657 SendMessage(fe
->statusbar
, SB_SETTEXT
,
1658 (WPARAM
) 255 | SBT_NOBORDERS
,
1663 * Now resize the window to take account of the status bar.
1665 GetWindowRect(fe
->statusbar
, &sr
);
1666 GetWindowRect(fe
->hwnd
, &r
);
1668 SetWindowPos(fe
->hwnd
, NULL
, 0, 0, r
.right
- r
.left
,
1669 r
.bottom
- r
.top
+ sr
.bottom
- sr
.top
,
1670 SWP_NOMOVE
| SWP_NOZORDER
);
1673 fe
->statusbar
= NULL
;
1677 HMENU oldmenu
= GetMenu(fe
->hwnd
);
1680 HMENU bar
= CreateMenu();
1681 HMENU menu
= CreateMenu();
1684 AppendMenu(bar
, MF_ENABLED
|MF_POPUP
, (UINT
)menu
, "&Game");
1686 HMENU menu
= SHGetSubMenu(SHFindMenuBar(fe
->hwnd
), ID_GAME
);
1687 DeleteMenu(menu
, 0, MF_BYPOSITION
);
1689 fe
->gamemenu
= menu
;
1690 AppendMenu(menu
, MF_ENABLED
, IDM_NEW
, TEXT("&New"));
1691 AppendMenu(menu
, MF_ENABLED
, IDM_RESTART
, TEXT("&Restart"));
1693 /* ...here I run out of sensible accelerator characters. */
1694 AppendMenu(menu
, MF_ENABLED
, IDM_DESC
, TEXT("Speci&fic..."));
1695 AppendMenu(menu
, MF_ENABLED
, IDM_SEED
, TEXT("Rando&m Seed..."));
1700 if ((fe
->npresets
= midend_num_presets(fe
->me
)) > 0 ||
1701 fe
->game
->can_configure
) {
1704 HMENU sub
= CreateMenu();
1706 AppendMenu(bar
, MF_ENABLED
|MF_POPUP
, (UINT
)sub
, "&Type");
1708 HMENU sub
= SHGetSubMenu(SHFindMenuBar(fe
->hwnd
), ID_TYPE
);
1709 DeleteMenu(sub
, 0, MF_BYPOSITION
);
1711 fe
->presets
= snewn(fe
->npresets
, game_params
*);
1713 for (i
= 0; i
< fe
->npresets
; i
++) {
1719 midend_fetch_preset(fe
->me
, i
, &name
, &fe
->presets
[i
]);
1722 * FIXME: we ought to go through and do something
1723 * with ampersands here.
1727 AppendMenu(sub
, MF_ENABLED
, IDM_PRESETS
+ 0x10 * i
, name
);
1729 MultiByteToWideChar (CP_ACP
, 0, name
, -1, wName
, 255);
1730 AppendMenu(sub
, MF_ENABLED
, IDM_PRESETS
+ 0x10 * i
, wName
);
1733 if (fe
->game
->can_configure
) {
1734 AppendMenu(sub
, MF_ENABLED
, IDM_CONFIG
, TEXT("&Custom..."));
1739 fe
->typemenu
= INVALID_HANDLE_VALUE
;
1745 #error Windows CE does not support COMBINED build.
1748 HMENU games
= CreateMenu();
1751 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1752 AppendMenu(menu
, MF_ENABLED
|MF_POPUP
, (UINT
)games
, "&Other");
1753 for (i
= 0; i
< gamecount
; i
++) {
1754 if (strcmp(gamelist
[i
]->name
, fe
->game
->name
) != 0) {
1755 /* only include those games that aren't the same as the
1756 * game we're currently playing. */
1757 AppendMenu(games
, MF_ENABLED
, IDM_GAMES
+ i
, gamelist
[i
]->name
);
1763 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1765 AppendMenu(menu
, MF_ENABLED
, IDM_LOAD
, TEXT("&Load..."));
1766 AppendMenu(menu
, MF_ENABLED
, IDM_SAVE
, TEXT("&Save..."));
1767 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1768 if (fe
->game
->can_print
) {
1769 AppendMenu(menu
, MF_ENABLED
, IDM_PRINT
, TEXT("&Print..."));
1770 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1773 AppendMenu(menu
, MF_ENABLED
, IDM_UNDO
, TEXT("Undo"));
1774 AppendMenu(menu
, MF_ENABLED
, IDM_REDO
, TEXT("Redo"));
1776 if (fe
->game
->can_format_as_text_ever
) {
1777 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1778 AppendMenu(menu
, MF_ENABLED
, IDM_COPY
, TEXT("&Copy"));
1781 if (fe
->game
->can_solve
) {
1782 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1783 AppendMenu(menu
, MF_ENABLED
, IDM_SOLVE
, TEXT("Sol&ve"));
1785 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1787 AppendMenu(menu
, MF_ENABLED
, IDM_QUIT
, TEXT("E&xit"));
1788 menu
= CreateMenu();
1789 AppendMenu(bar
, MF_ENABLED
|MF_POPUP
, (UINT
)menu
, TEXT("&Help"));
1791 AppendMenu(menu
, MF_ENABLED
, IDM_ABOUT
, TEXT("&About"));
1793 if (help_type
!= NONE
) {
1795 AppendMenu(menu
, MF_SEPARATOR
, 0, 0);
1796 AppendMenu(menu
, MF_ENABLED
, IDM_HELPC
, TEXT("&Contents"));
1797 assert(fe
->game
->name
);
1798 item
= snewn(10+strlen(fe
->game
->name
), char); /*ick*/
1799 sprintf(item
, "&Help on %s", fe
->game
->name
);
1800 AppendMenu(menu
, MF_ENABLED
, IDM_GAMEHELP
, item
);
1803 DestroyMenu(oldmenu
);
1804 SetMenu(fe
->hwnd
, bar
);
1805 get_menu_size(fe
->hwnd
, &menusize
);
1806 fe
->xmin
= (menusize
.right
- menusize
.left
) + 25;
1810 if (fe
->bitmap
) DeleteObject(fe
->bitmap
);
1812 new_game_size(fe
, fe
->puzz_scale
); /* initialises fe->bitmap */
1817 static void show_window(frontend
*fe
)
1819 ShowWindow(fe
->hwnd
, SW_SHOWNORMAL
);
1820 SetForegroundWindow(fe
->hwnd
);
1822 update_type_menu_tick(fe
);
1823 update_copy_menu_greying(fe
);
1825 midend_redraw(fe
->me
);
1829 static HFONT
dialog_title_font()
1831 static HFONT hf
= NULL
;
1837 memset (&lf
, 0, sizeof(LOGFONT
));
1838 lf
.lfHeight
= -11; /* - ((8 * GetDeviceCaps(hdc, LOGPIXELSY)) / 72) */
1839 lf
.lfWeight
= FW_BOLD
;
1840 wcscpy(lf
.lfFaceName
, TEXT("Tahoma"));
1842 return hf
= CreateFontIndirect(&lf
);
1845 static void make_dialog_full_screen(HWND hwnd
)
1847 SHINITDLGINFO shidi
;
1849 /* Make dialog full screen */
1850 shidi
.dwMask
= SHIDIM_FLAGS
;
1851 shidi
.dwFlags
= SHIDIF_DONEBUTTON
| SHIDIF_SIZEDLGFULLSCREEN
|
1854 SHInitDialog(&shidi
);
1858 static int CALLBACK
AboutDlgProc(HWND hwnd
, UINT msg
,
1859 WPARAM wParam
, LPARAM lParam
)
1861 frontend
*fe
= (frontend
*)GetWindowLong(hwnd
, GWL_USERDATA
);
1869 make_dialog_full_screen(hwnd
);
1871 sprintf(title
, "About %.250s", fe
->game
->name
);
1872 SetDlgItemTextA(hwnd
, IDC_ABOUT_CAPTION
, title
);
1874 SendDlgItemMessage(hwnd
, IDC_ABOUT_CAPTION
, WM_SETFONT
,
1875 (WPARAM
) dialog_title_font(), 0);
1877 SetDlgItemTextA(hwnd
, IDC_ABOUT_GAME
, fe
->game
->name
);
1878 SetDlgItemTextA(hwnd
, IDC_ABOUT_VERSION
, ver
);
1884 if (LOWORD(wParam
) == IDOK
)
1905 * Wrappers on midend_{get,set}_config, which extend the CFG_*
1906 * enumeration to add CFG_PRINT.
1908 static config_item
*frontend_get_config(frontend
*fe
, int which
,
1911 if (which
< CFG_FRONTEND_SPECIFIC
) {
1912 return midend_get_config(fe
->me
, which
, wintitle
);
1913 } else if (which
== CFG_PRINT
) {
1917 *wintitle
= snewn(40 + strlen(fe
->game
->name
), char);
1918 sprintf(*wintitle
, "%s print setup", fe
->game
->name
);
1920 ret
= snewn(8, config_item
);
1924 ret
[i
].name
= "Number of puzzles to print";
1925 ret
[i
].type
= C_STRING
;
1926 ret
[i
].sval
= dupstr("1");
1930 ret
[i
].name
= "Number of puzzles across the page";
1931 ret
[i
].type
= C_STRING
;
1932 ret
[i
].sval
= dupstr("1");
1936 ret
[i
].name
= "Number of puzzles down the page";
1937 ret
[i
].type
= C_STRING
;
1938 ret
[i
].sval
= dupstr("1");
1942 ret
[i
].name
= "Percentage of standard size";
1943 ret
[i
].type
= C_STRING
;
1944 ret
[i
].sval
= dupstr("100.0");
1948 ret
[i
].name
= "Include currently shown puzzle";
1949 ret
[i
].type
= C_BOOLEAN
;
1954 ret
[i
].name
= "Print solutions";
1955 ret
[i
].type
= C_BOOLEAN
;
1957 ret
[i
].ival
= FALSE
;
1960 if (fe
->game
->can_print_in_colour
) {
1961 ret
[i
].name
= "Print in colour";
1962 ret
[i
].type
= C_BOOLEAN
;
1964 ret
[i
].ival
= FALSE
;
1969 ret
[i
].type
= C_END
;
1976 assert(!"We should never get here");
1981 static char *frontend_set_config(frontend
*fe
, int which
, config_item
*cfg
)
1983 if (which
< CFG_FRONTEND_SPECIFIC
) {
1984 return midend_set_config(fe
->me
, which
, cfg
);
1985 } else if (which
== CFG_PRINT
) {
1986 if ((fe
->printcount
= atoi(cfg
[0].sval
)) <= 0)
1987 return "Number of puzzles to print should be at least one";
1988 if ((fe
->printw
= atoi(cfg
[1].sval
)) <= 0)
1989 return "Number of puzzles across the page should be at least one";
1990 if ((fe
->printh
= atoi(cfg
[2].sval
)) <= 0)
1991 return "Number of puzzles down the page should be at least one";
1992 if ((fe
->printscale
= (float)atof(cfg
[3].sval
)) <= 0)
1993 return "Print size should be positive";
1994 fe
->printcurr
= cfg
[4].ival
;
1995 fe
->printsolns
= cfg
[5].ival
;
1996 fe
->printcolour
= fe
->game
->can_print_in_colour
&& cfg
[6].ival
;
1999 assert(!"We should never get here");
2000 return "Internal error";
2005 /* Separate version of mkctrl function for the Pocket PC. */
2006 /* Control coordinates should be specified in dialog units. */
2007 HWND
mkctrl(frontend
*fe
, int x1
, int x2
, int y1
, int y2
,
2008 LPCTSTR wclass
, int wstyle
,
2009 int exstyle
, const char *wtext
, int wid
)
2014 /* Convert dialog units into pixels */
2015 rc
.left
= x1
; rc
.right
= x2
;
2016 rc
.top
= y1
; rc
.bottom
= y2
;
2017 MapDialogRect(fe
->cfgbox
, &rc
);
2019 MultiByteToWideChar (CP_ACP
, 0, wtext
, -1, wwtext
, 256);
2021 return CreateWindowEx(exstyle
, wclass
, wwtext
,
2022 wstyle
| WS_CHILD
| WS_VISIBLE
,
2024 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
,
2025 fe
->cfgbox
, (HMENU
) wid
, fe
->inst
, NULL
);
2028 static void create_config_controls(frontend
* fe
)
2031 int col1l
, col1r
, col2l
, col2r
, y
;
2036 /* Control placement done in dialog units */
2037 col1l
= 4; col1r
= 96; /* Label column */
2038 col2l
= 100; col2r
= 154; /* Input column (edit boxes and combo boxes) */
2041 * Count the controls so we can allocate cfgaux.
2043 for (nctrls
= 0, i
= fe
->cfg
; i
->type
!= C_END
; i
++)
2045 fe
->cfgaux
= snewn(nctrls
, struct cfg_aux
);
2048 y
= 22; /* Leave some room for the dialog title */
2049 for (i
= fe
->cfg
, j
= fe
->cfgaux
; i
->type
!= C_END
; i
++, j
++) {
2053 * Edit box with a label beside it.
2055 mkctrl(fe
, col1l
, col1r
, y
+ 1, y
+ 11,
2056 TEXT("Static"), SS_LEFTNOWORDWRAP
, 0, i
->name
, id
++);
2057 mkctrl(fe
, col2l
, col2r
, y
, y
+ 12,
2058 TEXT("EDIT"), WS_BORDER
| WS_TABSTOP
| ES_AUTOHSCROLL
,
2059 0, "", (j
->ctlid
= id
++));
2060 SetDlgItemTextA(fe
->cfgbox
, j
->ctlid
, i
->sval
);
2067 mkctrl(fe
, col1l
, col2r
, y
+ 1, y
+ 11, TEXT("BUTTON"),
2068 BS_NOTIFY
| BS_AUTOCHECKBOX
| WS_TABSTOP
,
2069 0, i
->name
, (j
->ctlid
= id
++));
2070 CheckDlgButton(fe
->cfgbox
, j
->ctlid
, (i
->ival
!= 0));
2075 * Drop-down list with a label beside it.
2077 mkctrl(fe
, col1l
, col1r
, y
+ 1, y
+ 11,
2078 TEXT("STATIC"), SS_LEFTNOWORDWRAP
, 0, i
->name
, id
++);
2079 ctl
= mkctrl(fe
, col2l
, col2r
, y
, y
+ 48,
2080 TEXT("COMBOBOX"), WS_BORDER
| WS_TABSTOP
|
2081 CBS_DROPDOWNLIST
| CBS_HASSTRINGS
,
2082 0, "", (j
->ctlid
= id
++));
2084 char c
, *p
, *q
, *str
;
2090 while (*q
&& *q
!= c
) q
++;
2091 str
= snewn(q
-p
+1, char);
2092 strncpy(str
, p
, q
-p
);
2096 MultiByteToWideChar (CP_ACP
, 0, str
, -1, ws
, 50);
2097 SendMessage(ctl
, CB_ADDSTRING
, 0, (LPARAM
)ws
);
2105 SendMessage(ctl
, CB_SETCURSEL
, i
->ival
, 0);
2115 static int CALLBACK
ConfigDlgProc(HWND hwnd
, UINT msg
,
2116 WPARAM wParam
, LPARAM lParam
)
2118 frontend
*fe
= (frontend
*)GetWindowLong(hwnd
, GWL_USERDATA
);
2128 fe
= (frontend
*) lParam
;
2129 SetWindowLong(hwnd
, GWL_USERDATA
, lParam
);
2132 fe
->cfg
= frontend_get_config(fe
, fe
->cfg_which
, &title
);
2134 make_dialog_full_screen(hwnd
);
2136 SetDlgItemTextA(hwnd
, IDC_CONFIG_CAPTION
, title
);
2137 SendDlgItemMessage(hwnd
, IDC_CONFIG_CAPTION
, WM_SETFONT
,
2138 (WPARAM
) dialog_title_font(), 0);
2140 create_config_controls(fe
);
2147 * OK and Cancel are special cases.
2149 if ((LOWORD(wParam
) == IDOK
|| LOWORD(wParam
) == IDCANCEL
)) {
2150 if (LOWORD(wParam
) == IDOK
) {
2151 char *err
= frontend_set_config(fe
, fe
->cfg_which
, fe
->cfg
);
2154 MessageBox(hwnd
, err
, "Validation error",
2155 MB_ICONERROR
| MB_OK
);
2174 * First find the control whose id this is.
2176 for (i
= fe
->cfg
, j
= fe
->cfgaux
; i
->type
!= C_END
; i
++, j
++) {
2177 if (j
->ctlid
== LOWORD(wParam
))
2180 if (i
->type
== C_END
)
2181 return 0; /* not our problem */
2183 if (i
->type
== C_STRING
&& HIWORD(wParam
) == EN_CHANGE
) {
2186 TCHAR wBuffer
[4096];
2187 GetDlgItemText(fe
->cfgbox
, j
->ctlid
, wBuffer
, 4096);
2188 WideCharToMultiByte(CP_ACP
, 0, wBuffer
, -1, buffer
, 4096, NULL
, NULL
);
2190 GetDlgItemText(fe
->cfgbox
, j
->ctlid
, buffer
, lenof(buffer
));
2192 buffer
[lenof(buffer
)-1] = '\0';
2194 i
->sval
= dupstr(buffer
);
2195 } else if (i
->type
== C_BOOLEAN
&&
2196 (HIWORD(wParam
) == BN_CLICKED
||
2197 HIWORD(wParam
) == BN_DBLCLK
)) {
2198 i
->ival
= IsDlgButtonChecked(fe
->cfgbox
, j
->ctlid
);
2199 } else if (i
->type
== C_CHOICES
&&
2200 HIWORD(wParam
) == CBN_SELCHANGE
) {
2201 i
->ival
= SendDlgItemMessage(fe
->cfgbox
, j
->ctlid
,
2202 CB_GETCURSEL
, 0, 0);
2216 HWND
mkctrl(frontend
*fe
, int x1
, int x2
, int y1
, int y2
,
2217 char *wclass
, int wstyle
,
2218 int exstyle
, const char *wtext
, int wid
)
2221 ret
= CreateWindowEx(exstyle
, wclass
, wtext
,
2222 wstyle
| WS_CHILD
| WS_VISIBLE
, x1
, y1
, x2
-x1
, y2
-y1
,
2223 fe
->cfgbox
, (HMENU
) wid
, fe
->inst
, NULL
);
2224 SendMessage(ret
, WM_SETFONT
, (WPARAM
)fe
->cfgfont
, MAKELPARAM(TRUE
, 0));
2229 static void about(frontend
*fe
)
2232 DialogBox(fe
->inst
, MAKEINTRESOURCE(IDD_ABOUT
), fe
->hwnd
, AboutDlgProc
);
2242 int winwidth
, winheight
, y
;
2243 int height
, width
, maxwid
;
2244 const char *strings
[16];
2249 sprintf(titlebuf
, "About %.250s", fe
->game
->name
);
2251 strings
[nstrings
++] = fe
->game
->name
;
2252 strings
[nstrings
++] = "from Simon Tatham's Portable Puzzle Collection";
2253 strings
[nstrings
++] = ver
;
2255 wc
.style
= CS_DBLCLKS
| CS_SAVEBITS
;
2256 wc
.lpfnWndProc
= DefDlgProc
;
2258 wc
.cbWndExtra
= DLGWINDOWEXTRA
+ 8;
2259 wc
.hInstance
= fe
->inst
;
2261 wc
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
2262 wc
.hbrBackground
= (HBRUSH
) (COLOR_BACKGROUND
+1);
2263 wc
.lpszMenuName
= NULL
;
2264 wc
.lpszClassName
= "GameAboutBox";
2267 hdc
= GetDC(fe
->hwnd
);
2268 SetMapMode(hdc
, MM_TEXT
);
2270 fe
->dlg_done
= FALSE
;
2272 fe
->cfgfont
= CreateFont(-MulDiv(8, GetDeviceCaps(hdc
, LOGPIXELSY
), 72),
2274 FALSE
, FALSE
, FALSE
, DEFAULT_CHARSET
,
2275 OUT_DEFAULT_PRECIS
, CLIP_DEFAULT_PRECIS
,
2280 oldfont
= SelectObject(hdc
, fe
->cfgfont
);
2281 if (GetTextMetrics(hdc
, &tm
)) {
2282 height
= tm
.tmAscent
+ tm
.tmDescent
;
2283 width
= tm
.tmAveCharWidth
;
2285 height
= width
= 30;
2289 * Figure out the layout of the About box by measuring the
2290 * length of each piece of text.
2293 winheight
= height
/2;
2295 for (i
= 0; i
< nstrings
; i
++) {
2296 if (GetTextExtentPoint32(hdc
, strings
[i
], strlen(strings
[i
]), &size
))
2297 lengths
[i
] = size
.cx
;
2299 lengths
[i
] = 0; /* *shrug* */
2300 if (maxwid
< lengths
[i
])
2301 maxwid
= lengths
[i
];
2302 winheight
+= height
* 3 / 2 + (height
/ 2);
2305 winheight
+= height
+ height
* 7 / 4; /* OK button */
2306 winwidth
= maxwid
+ 4*width
;
2308 SelectObject(hdc
, oldfont
);
2309 ReleaseDC(fe
->hwnd
, hdc
);
2312 * Create the dialog, now that we know its size.
2319 r
.bottom
= winheight
;
2321 AdjustWindowRectEx(&r
, (WS_OVERLAPPEDWINDOW
/*|
2322 DS_MODALFRAME | WS_POPUP | WS_VISIBLE |
2323 WS_CAPTION | WS_SYSMENU*/) &~
2324 (WS_MAXIMIZEBOX
| WS_OVERLAPPED
),
2328 * Centre the dialog on its parent window.
2332 GetWindowRect(fe
->hwnd
, &r2
);
2333 r
.left
= (r2
.left
+ r2
.right
- r
.right
) / 2;
2334 r
.top
= (r2
.top
+ r2
.bottom
- r
.bottom
) / 2;
2338 fe
->cfgbox
= CreateWindowEx(0, wc
.lpszClassName
, titlebuf
,
2339 DS_MODALFRAME
| WS_POPUP
| WS_VISIBLE
|
2340 WS_CAPTION
| WS_SYSMENU
,
2342 r
.right
-r
.left
, r
.bottom
-r
.top
,
2343 fe
->hwnd
, NULL
, fe
->inst
, NULL
);
2346 SendMessage(fe
->cfgbox
, WM_SETFONT
, (WPARAM
)fe
->cfgfont
, FALSE
);
2348 SetWindowLong(fe
->cfgbox
, GWL_USERDATA
, (LONG
)fe
);
2349 SetWindowLong(fe
->cfgbox
, DWL_DLGPROC
, (LONG
)AboutDlgProc
);
2353 for (i
= 0; i
< nstrings
; i
++) {
2354 int border
= width
*2 + (maxwid
- lengths
[i
]) / 2;
2355 mkctrl(fe
, border
, border
+lengths
[i
], y
+height
*1/8, y
+height
*9/8,
2356 "Static", 0, 0, strings
[i
], id
++);
2359 assert(y
< winheight
);
2363 y
+= height
/2; /* extra space before OK */
2364 mkctrl(fe
, width
*2, maxwid
+width
*2, y
, y
+height
*7/4, "BUTTON",
2365 BS_PUSHBUTTON
| WS_TABSTOP
| BS_DEFPUSHBUTTON
, 0,
2368 SendMessage(fe
->cfgbox
, WM_INITDIALOG
, 0, 0);
2370 EnableWindow(fe
->hwnd
, FALSE
);
2371 ShowWindow(fe
->cfgbox
, SW_SHOWNORMAL
);
2372 while ((gm
=GetMessage(&msg
, NULL
, 0, 0)) > 0) {
2373 if (!IsDialogMessage(fe
->cfgbox
, &msg
))
2374 DispatchMessage(&msg
);
2378 EnableWindow(fe
->hwnd
, TRUE
);
2379 SetForegroundWindow(fe
->hwnd
);
2380 DestroyWindow(fe
->cfgbox
);
2381 DeleteObject(fe
->cfgfont
);
2385 static int get_config(frontend
*fe
, int which
)
2388 fe
->cfg_which
= which
;
2390 return DialogBoxParam(fe
->inst
,
2391 MAKEINTRESOURCE(IDD_CONFIG
),
2392 fe
->hwnd
, ConfigDlgProc
,
2406 int winwidth
, winheight
, col1l
, col1r
, col2l
, col2r
, y
;
2407 int height
, width
, maxlabel
, maxcheckbox
;
2409 wc
.style
= CS_DBLCLKS
| CS_SAVEBITS
;
2410 wc
.lpfnWndProc
= DefDlgProc
;
2412 wc
.cbWndExtra
= DLGWINDOWEXTRA
+ 8;
2413 wc
.hInstance
= fe
->inst
;
2415 wc
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
2416 wc
.hbrBackground
= (HBRUSH
) (COLOR_BACKGROUND
+1);
2417 wc
.lpszMenuName
= NULL
;
2418 wc
.lpszClassName
= "GameConfigBox";
2421 hdc
= GetDC(fe
->hwnd
);
2422 SetMapMode(hdc
, MM_TEXT
);
2424 fe
->dlg_done
= FALSE
;
2426 fe
->cfgfont
= CreateFont(-MulDiv(8, GetDeviceCaps(hdc
, LOGPIXELSY
), 72),
2428 FALSE
, FALSE
, FALSE
, DEFAULT_CHARSET
,
2429 OUT_DEFAULT_PRECIS
, CLIP_DEFAULT_PRECIS
,
2434 oldfont
= SelectObject(hdc
, fe
->cfgfont
);
2435 if (GetTextMetrics(hdc
, &tm
)) {
2436 height
= tm
.tmAscent
+ tm
.tmDescent
;
2437 width
= tm
.tmAveCharWidth
;
2439 height
= width
= 30;
2442 fe
->cfg
= frontend_get_config(fe
, which
, &title
);
2443 fe
->cfg_which
= which
;
2446 * Figure out the layout of the config box by measuring the
2447 * length of each piece of text.
2449 maxlabel
= maxcheckbox
= 0;
2450 winheight
= height
/2;
2452 for (i
= fe
->cfg
; i
->type
!= C_END
; i
++) {
2457 * Both these control types have a label filling only
2458 * the left-hand column of the box.
2460 if (GetTextExtentPoint32(hdc
, i
->name
, strlen(i
->name
), &size
) &&
2463 winheight
+= height
* 3 / 2 + (height
/ 2);
2468 * Checkboxes take up the whole of the box width.
2470 if (GetTextExtentPoint32(hdc
, i
->name
, strlen(i
->name
), &size
) &&
2471 maxcheckbox
< size
.cx
)
2472 maxcheckbox
= size
.cx
;
2473 winheight
+= height
+ (height
/ 2);
2478 winheight
+= height
+ height
* 7 / 4; /* OK / Cancel buttons */
2481 col1r
= col1l
+ maxlabel
;
2482 col2l
= col1r
+ 2*width
;
2483 col2r
= col2l
+ 30*width
;
2484 if (col2r
< col1l
+2*height
+maxcheckbox
)
2485 col2r
= col1l
+2*height
+maxcheckbox
;
2486 winwidth
= col2r
+ 2*width
;
2488 SelectObject(hdc
, oldfont
);
2489 ReleaseDC(fe
->hwnd
, hdc
);
2492 * Create the dialog, now that we know its size.
2499 r
.bottom
= winheight
;
2501 AdjustWindowRectEx(&r
, (WS_OVERLAPPEDWINDOW
/*|
2502 DS_MODALFRAME | WS_POPUP | WS_VISIBLE |
2503 WS_CAPTION | WS_SYSMENU*/) &~
2504 (WS_MAXIMIZEBOX
| WS_OVERLAPPED
),
2508 * Centre the dialog on its parent window.
2512 GetWindowRect(fe
->hwnd
, &r2
);
2513 r
.left
= (r2
.left
+ r2
.right
- r
.right
) / 2;
2514 r
.top
= (r2
.top
+ r2
.bottom
- r
.bottom
) / 2;
2518 fe
->cfgbox
= CreateWindowEx(0, wc
.lpszClassName
, title
,
2519 DS_MODALFRAME
| WS_POPUP
| WS_VISIBLE
|
2520 WS_CAPTION
| WS_SYSMENU
,
2522 r
.right
-r
.left
, r
.bottom
-r
.top
,
2523 fe
->hwnd
, NULL
, fe
->inst
, NULL
);
2527 SendMessage(fe
->cfgbox
, WM_SETFONT
, (WPARAM
)fe
->cfgfont
, FALSE
);
2529 SetWindowLong(fe
->cfgbox
, GWL_USERDATA
, (LONG
)fe
);
2530 SetWindowLong(fe
->cfgbox
, DWL_DLGPROC
, (LONG
)ConfigDlgProc
);
2533 * Count the controls so we can allocate cfgaux.
2535 for (nctrls
= 0, i
= fe
->cfg
; i
->type
!= C_END
; i
++)
2537 fe
->cfgaux
= snewn(nctrls
, struct cfg_aux
);
2541 for (i
= fe
->cfg
, j
= fe
->cfgaux
; i
->type
!= C_END
; i
++, j
++) {
2545 * Edit box with a label beside it.
2547 mkctrl(fe
, col1l
, col1r
, y
+height
*1/8, y
+height
*9/8,
2548 "Static", 0, 0, i
->name
, id
++);
2549 ctl
= mkctrl(fe
, col2l
, col2r
, y
, y
+height
*3/2,
2550 "EDIT", WS_TABSTOP
| ES_AUTOHSCROLL
,
2551 WS_EX_CLIENTEDGE
, "", (j
->ctlid
= id
++));
2552 SetWindowText(ctl
, i
->sval
);
2560 mkctrl(fe
, col1l
, col2r
, y
, y
+height
, "BUTTON",
2561 BS_NOTIFY
| BS_AUTOCHECKBOX
| WS_TABSTOP
,
2562 0, i
->name
, (j
->ctlid
= id
++));
2563 CheckDlgButton(fe
->cfgbox
, j
->ctlid
, (i
->ival
!= 0));
2569 * Drop-down list with a label beside it.
2571 mkctrl(fe
, col1l
, col1r
, y
+height
*1/8, y
+height
*9/8,
2572 "STATIC", 0, 0, i
->name
, id
++);
2573 ctl
= mkctrl(fe
, col2l
, col2r
, y
, y
+height
*41/2,
2574 "COMBOBOX", WS_TABSTOP
|
2575 CBS_DROPDOWNLIST
| CBS_HASSTRINGS
,
2576 WS_EX_CLIENTEDGE
, "", (j
->ctlid
= id
++));
2578 char c
, *p
, *q
, *str
;
2580 SendMessage(ctl
, CB_RESETCONTENT
, 0, 0);
2585 while (*q
&& *q
!= c
) q
++;
2586 str
= snewn(q
-p
+1, char);
2587 strncpy(str
, p
, q
-p
);
2589 SendMessage(ctl
, CB_ADDSTRING
, 0, (LPARAM
)str
);
2596 SendMessage(ctl
, CB_SETCURSEL
, i
->ival
, 0);
2602 assert(y
< winheight
);
2606 y
+= height
/2; /* extra space before OK and Cancel */
2607 mkctrl(fe
, col1l
, (col1l
+col2r
)/2-width
, y
, y
+height
*7/4, "BUTTON",
2608 BS_PUSHBUTTON
| WS_TABSTOP
| BS_DEFPUSHBUTTON
, 0,
2610 mkctrl(fe
, (col1l
+col2r
)/2+width
, col2r
, y
, y
+height
*7/4, "BUTTON",
2611 BS_PUSHBUTTON
| WS_TABSTOP
, 0, "Cancel", IDCANCEL
);
2613 SendMessage(fe
->cfgbox
, WM_INITDIALOG
, 0, 0);
2615 EnableWindow(fe
->hwnd
, FALSE
);
2616 ShowWindow(fe
->cfgbox
, SW_SHOWNORMAL
);
2617 while ((gm
=GetMessage(&msg
, NULL
, 0, 0)) > 0) {
2618 if (!IsDialogMessage(fe
->cfgbox
, &msg
))
2619 DispatchMessage(&msg
);
2623 EnableWindow(fe
->hwnd
, TRUE
);
2624 SetForegroundWindow(fe
->hwnd
);
2625 DestroyWindow(fe
->cfgbox
);
2626 DeleteObject(fe
->cfgfont
);
2631 return (fe
->dlg_done
== 2);
2636 static void calculate_bitmap_position(frontend
*fe
, int x
, int y
)
2638 /* Pocket PC - center the game in the full screen window */
2642 GetClientRect(fe
->hwnd
, &rcClient
);
2643 fe
->bitmapPosition
.left
= (rcClient
.right
- x
) / 2;
2644 yMargin
= rcClient
.bottom
- y
;
2646 if (fe
->numpad
!= NULL
) {
2648 GetWindowRect(fe
->numpad
, &rcPad
);
2649 yMargin
-= rcPad
.bottom
- rcPad
.top
;
2652 if (fe
->statusbar
!= NULL
) {
2654 GetWindowRect(fe
->statusbar
, &rcStatus
);
2655 yMargin
-= rcStatus
.bottom
- rcStatus
.top
;
2658 fe
->bitmapPosition
.top
= yMargin
/ 2;
2660 fe
->bitmapPosition
.right
= fe
->bitmapPosition
.left
+ x
;
2661 fe
->bitmapPosition
.bottom
= fe
->bitmapPosition
.top
+ y
;
2664 static void calculate_bitmap_position(frontend
*fe
, int x
, int y
)
2666 /* Plain Windows - position the game in the upper-left corner */
2667 fe
->bitmapPosition
.left
= 0;
2668 fe
->bitmapPosition
.top
= 0;
2669 fe
->bitmapPosition
.right
= fe
->bitmapPosition
.left
+ x
;
2670 fe
->bitmapPosition
.bottom
= fe
->bitmapPosition
.top
+ y
;
2674 static void new_bitmap(frontend
*fe
, int x
, int y
)
2678 if (fe
->bitmap
) DeleteObject(fe
->bitmap
);
2680 hdc
= GetDC(fe
->hwnd
);
2681 fe
->bitmap
= CreateCompatibleBitmap(hdc
, x
, y
);
2682 calculate_bitmap_position(fe
, x
, y
);
2683 ReleaseDC(fe
->hwnd
, hdc
);
2686 static void new_game_size(frontend
*fe
, float scale
)
2691 get_max_puzzle_size(fe
, &x
, &y
);
2692 midend_size(fe
->me
, &x
, &y
, FALSE
);
2695 x
= (int)((float)x
* fe
->puzz_scale
);
2696 y
= (int)((float)y
* fe
->puzz_scale
);
2697 midend_size(fe
->me
, &x
, &y
, TRUE
);
2699 fe
->ymin
= (fe
->xmin
* y
) / x
;
2704 AdjustWindowRectEx(&r
, WINFLAGS
, TRUE
, 0);
2706 if (fe
->statusbar
!= NULL
) {
2707 GetWindowRect(fe
->statusbar
, &sr
);
2709 sr
.left
= sr
.right
= sr
.top
= sr
.bottom
= 0;
2712 SetWindowPos(fe
->hwnd
, NULL
, 0, 0,
2714 r
.bottom
- r
.top
+ sr
.bottom
- sr
.top
,
2715 SWP_NOMOVE
| SWP_NOZORDER
);
2718 check_window_size(fe
, &x
, &y
);
2721 if (fe
->statusbar
!= NULL
)
2722 SetWindowPos(fe
->statusbar
, NULL
, 0, y
, x
,
2723 sr
.bottom
- sr
.top
, SWP_NOZORDER
);
2726 new_bitmap(fe
, x
, y
);
2729 InvalidateRect(fe
->hwnd
, NULL
, TRUE
);
2731 midend_redraw(fe
->me
);
2735 * Given a proposed new window rect, work out the resulting
2736 * difference in client size (from current), and use to try
2737 * and resize the puzzle, returning (wx,wy) as the actual
2741 static void adjust_game_size(frontend
*fe
, RECT
*proposed
, int isedge
,
2742 int *wx_r
, int *wy_r
)
2745 int nx
, ny
, xdiff
, ydiff
, wx
, wy
;
2747 /* Work out the current window sizing, and thus the
2748 * difference in size we're asking for. */
2749 GetClientRect(fe
->hwnd
, &cr
);
2751 AdjustWindowRectEx(&wr
, WINFLAGS
, TRUE
, 0);
2753 xdiff
= (proposed
->right
- proposed
->left
) - (wr
.right
- wr
.left
);
2754 ydiff
= (proposed
->bottom
- proposed
->top
) - (wr
.bottom
- wr
.top
);
2757 /* These next four lines work around the fact that midend_size
2758 * is happy to shrink _but not grow_ if you change one dimension
2759 * but not the other. */
2760 if (xdiff
> 0 && ydiff
== 0)
2761 ydiff
= (xdiff
* (wr
.right
- wr
.left
)) / (wr
.bottom
- wr
.top
);
2762 if (xdiff
== 0 && ydiff
> 0)
2763 xdiff
= (ydiff
* (wr
.bottom
- wr
.top
)) / (wr
.right
- wr
.left
);
2766 if (check_window_resize(fe
,
2767 (cr
.right
- cr
.left
) + xdiff
,
2768 (cr
.bottom
- cr
.top
) + ydiff
,
2769 &nx
, &ny
, &wx
, &wy
)) {
2770 new_bitmap(fe
, nx
, ny
);
2771 midend_force_redraw(fe
->me
);
2773 /* reset size to current window size */
2774 wx
= wr
.right
- wr
.left
;
2775 wy
= wr
.bottom
- wr
.top
;
2777 /* Re-fetch rectangle; size limits mean we might not have
2778 * taken it quite to the mouse drag positions. */
2779 GetClientRect(fe
->hwnd
, &cr
);
2780 adjust_statusbar(fe
, &cr
);
2782 *wx_r
= wx
; *wy_r
= wy
;
2785 static void update_type_menu_tick(frontend
*fe
)
2789 if (fe
->typemenu
== INVALID_HANDLE_VALUE
)
2792 total
= GetMenuItemCount(fe
->typemenu
);
2793 n
= midend_which_preset(fe
->me
);
2795 n
= total
- 1; /* "Custom" item */
2797 for (i
= 0; i
< total
; i
++) {
2798 int flag
= (i
== n
? MF_CHECKED
: MF_UNCHECKED
);
2799 CheckMenuItem(fe
->typemenu
, i
, MF_BYPOSITION
| flag
);
2802 DrawMenuBar(fe
->hwnd
);
2805 static void update_copy_menu_greying(frontend
*fe
)
2807 UINT enable
= (midend_can_format_as_text_now(fe
->me
) ?
2808 MF_ENABLED
: MF_GRAYED
);
2809 EnableMenuItem(fe
->gamemenu
, IDM_COPY
, MF_BYCOMMAND
| enable
);
2812 static void new_game_type(frontend
*fe
)
2814 midend_new_game(fe
->me
);
2815 new_game_size(fe
, 1.0);
2816 update_type_menu_tick(fe
);
2817 update_copy_menu_greying(fe
);
2820 static int is_alt_pressed(void)
2823 int r
= GetKeyboardState(keystate
);
2826 if (keystate
[VK_MENU
] & 0x80)
2828 if (keystate
[VK_RMENU
] & 0x80)
2833 static void savefile_write(void *wctx
, void *buf
, int len
)
2835 FILE *fp
= (FILE *)wctx
;
2836 fwrite(buf
, 1, len
, fp
);
2839 static int savefile_read(void *wctx
, void *buf
, int len
)
2841 FILE *fp
= (FILE *)wctx
;
2844 ret
= fread(buf
, 1, len
, fp
);
2845 return (ret
== len
);
2848 static LRESULT CALLBACK
WndProc(HWND hwnd
, UINT message
,
2849 WPARAM wParam
, LPARAM lParam
)
2851 frontend
*fe
= (frontend
*)GetWindowLong(hwnd
, GWL_USERDATA
);
2856 DestroyWindow(hwnd
);
2860 /* Numeric pad sends WM_COMMAND messages */
2861 if ((wParam
>= IDM_KEYEMUL
) && (wParam
< IDM_KEYEMUL
+ 256))
2863 midend_process_key(fe
->me
, 0, 0, wParam
- IDM_KEYEMUL
);
2866 cmd
= wParam
& ~0xF; /* low 4 bits reserved to Windows */
2869 if (!midend_process_key(fe
->me
, 0, 0, 'n'))
2873 midend_restart_game(fe
->me
);
2876 if (!midend_process_key(fe
->me
, 0, 0, 'u'))
2880 if (!midend_process_key(fe
->me
, 0, 0, '\x12'))
2885 char *text
= midend_text_format(fe
->me
);
2887 write_clip(hwnd
, text
);
2889 MessageBeep(MB_ICONWARNING
);
2895 char *msg
= midend_solve(fe
->me
);
2897 MessageBox(hwnd
, msg
, "Unable to solve",
2898 MB_ICONERROR
| MB_OK
);
2902 if (!midend_process_key(fe
->me
, 0, 0, 'q'))
2906 if (get_config(fe
, CFG_SETTINGS
))
2910 if (get_config(fe
, CFG_SEED
))
2914 if (get_config(fe
, CFG_DESC
))
2918 if (get_config(fe
, CFG_PRINT
))
2928 char filename
[FILENAME_MAX
];
2931 memset(&of
, 0, sizeof(of
));
2932 of
.hwndOwner
= hwnd
;
2933 of
.lpstrFilter
= "All Files (*.*)\0*\0\0\0";
2934 of
.lpstrCustomFilter
= NULL
;
2935 of
.nFilterIndex
= 1;
2936 of
.lpstrFile
= filename
;
2938 of
.nMaxFile
= lenof(filename
);
2939 of
.lpstrFileTitle
= NULL
;
2940 of
.lpstrTitle
= (cmd
== IDM_SAVE
?
2941 "Enter name of game file to save" :
2942 "Enter name of saved game file to load");
2944 #ifdef OPENFILENAME_SIZE_VERSION_400
2945 of
.lStructSize
= OPENFILENAME_SIZE_VERSION_400
;
2947 of
.lStructSize
= sizeof(of
);
2949 of
.lpstrInitialDir
= NULL
;
2951 if (cmd
== IDM_SAVE
)
2952 ret
= GetSaveFileName(&of
);
2954 ret
= GetOpenFileName(&of
);
2957 if (cmd
== IDM_SAVE
) {
2960 if ((fp
= fopen(filename
, "r")) != NULL
) {
2961 char buf
[256 + FILENAME_MAX
];
2965 sprintf(buf
, "Are you sure you want to overwrite"
2966 " the file \"%.*s\"?",
2967 FILENAME_MAX
, filename
);
2968 if (MessageBox(hwnd
, buf
, "Question",
2969 MB_YESNO
| MB_ICONQUESTION
)
2974 fp
= fopen(filename
, "w");
2977 MessageBox(hwnd
, "Unable to open save file",
2978 "Error", MB_ICONERROR
| MB_OK
);
2982 midend_serialise(fe
->me
, savefile_write
, fp
);
2986 FILE *fp
= fopen(filename
, "r");
2990 MessageBox(hwnd
, "Unable to open saved game file",
2991 "Error", MB_ICONERROR
| MB_OK
);
2995 err
= midend_deserialise(fe
->me
, savefile_read
, fp
);
3000 MessageBox(hwnd
, err
, "Error", MB_ICONERROR
|MB_OK
);
3004 new_game_size(fe
, 1.0);
3012 start_help(fe
, NULL
);
3015 assert(help_type
!= NONE
);
3016 start_help(fe
, help_type
== CHM
?
3017 fe
->game
->htmlhelp_topic
: fe
->game
->winhelp_topic
);
3022 if (wParam
>= IDM_GAMES
&& wParam
< (IDM_GAMES
+ (WPARAM
)gamecount
)) {
3023 int p
= wParam
- IDM_GAMES
;
3026 new_game(fe
, gamelist
[p
], NULL
, &error
);
3030 int p
= ((wParam
&~ 0xF) - IDM_PRESETS
) / 0x10;
3032 if (p
>= 0 && p
< fe
->npresets
) {
3033 midend_set_params(fe
->me
, fe
->presets
[p
]);
3054 hdc
= BeginPaint(hwnd
, &p
);
3055 hdc2
= CreateCompatibleDC(hdc
);
3056 prevbm
= SelectObject(hdc2
, fe
->bitmap
);
3058 FillRect(hdc
, &(p
.rcPaint
), (HBRUSH
) GetStockObject(WHITE_BRUSH
));
3060 IntersectRect(&rcDest
, &(fe
->bitmapPosition
), &(p
.rcPaint
));
3062 rcDest
.left
, rcDest
.top
,
3063 rcDest
.right
- rcDest
.left
,
3064 rcDest
.bottom
- rcDest
.top
,
3066 rcDest
.left
- fe
->bitmapPosition
.left
,
3067 rcDest
.top
- fe
->bitmapPosition
.top
,
3069 SelectObject(hdc2
, prevbm
);
3078 int r
= GetKeyboardState(keystate
);
3079 int shift
= (r
&& (keystate
[VK_SHIFT
] & 0x80)) ? MOD_SHFT
: 0;
3080 int ctrl
= (r
&& (keystate
[VK_CONTROL
] & 0x80)) ? MOD_CTRL
: 0;
3084 if (!(lParam
& 0x01000000))
3085 key
= MOD_NUM_KEYPAD
| '4';
3087 key
= shift
| ctrl
| CURSOR_LEFT
;
3090 if (!(lParam
& 0x01000000))
3091 key
= MOD_NUM_KEYPAD
| '6';
3093 key
= shift
| ctrl
| CURSOR_RIGHT
;
3096 if (!(lParam
& 0x01000000))
3097 key
= MOD_NUM_KEYPAD
| '8';
3099 key
= shift
| ctrl
| CURSOR_UP
;
3102 if (!(lParam
& 0x01000000))
3103 key
= MOD_NUM_KEYPAD
| '2';
3105 key
= shift
| ctrl
| CURSOR_DOWN
;
3108 * Diagonal keys on the numeric keypad.
3111 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '9';
3114 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '3';
3117 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '7';
3120 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '1';
3123 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '0';
3126 if (!(lParam
& 0x01000000)) key
= MOD_NUM_KEYPAD
| '5';
3129 * Numeric keypad keys with Num Lock on.
3131 case VK_NUMPAD4
: key
= MOD_NUM_KEYPAD
| '4'; break;
3132 case VK_NUMPAD6
: key
= MOD_NUM_KEYPAD
| '6'; break;
3133 case VK_NUMPAD8
: key
= MOD_NUM_KEYPAD
| '8'; break;
3134 case VK_NUMPAD2
: key
= MOD_NUM_KEYPAD
| '2'; break;
3135 case VK_NUMPAD5
: key
= MOD_NUM_KEYPAD
| '5'; break;
3136 case VK_NUMPAD9
: key
= MOD_NUM_KEYPAD
| '9'; break;
3137 case VK_NUMPAD3
: key
= MOD_NUM_KEYPAD
| '3'; break;
3138 case VK_NUMPAD7
: key
= MOD_NUM_KEYPAD
| '7'; break;
3139 case VK_NUMPAD1
: key
= MOD_NUM_KEYPAD
| '1'; break;
3140 case VK_NUMPAD0
: key
= MOD_NUM_KEYPAD
| '0'; break;
3144 if (!midend_process_key(fe
->me
, 0, 0, key
))
3149 m
.message
= WM_KEYDOWN
;
3151 m
.lParam
= lParam
& 0xdfff;
3152 TranslateMessage(&m
);
3156 case WM_LBUTTONDOWN
:
3157 case WM_RBUTTONDOWN
:
3158 case WM_MBUTTONDOWN
:
3163 * Shift-clicks count as middle-clicks, since otherwise
3164 * two-button Windows users won't have any kind of
3165 * middle click to use.
3167 if (message
== WM_MBUTTONDOWN
|| (wParam
& MK_SHIFT
))
3168 button
= MIDDLE_BUTTON
;
3169 else if (message
== WM_RBUTTONDOWN
|| is_alt_pressed())
3170 button
= RIGHT_BUTTON
;
3173 button
= LEFT_BUTTON
;
3175 if ((fe
->game
->flags
& REQUIRE_RBUTTON
) == 0)
3176 button
= LEFT_BUTTON
;
3181 shrgi
.cbSize
= sizeof(SHRGINFO
);
3182 shrgi
.hwndClient
= hwnd
;
3183 shrgi
.ptDown
.x
= (signed short)LOWORD(lParam
);
3184 shrgi
.ptDown
.y
= (signed short)HIWORD(lParam
);
3185 shrgi
.dwFlags
= SHRG_RETURNCMD
;
3187 if (GN_CONTEXTMENU
== SHRecognizeGesture(&shrgi
))
3188 button
= RIGHT_BUTTON
;
3190 button
= LEFT_BUTTON
;
3194 if (!midend_process_key(fe
->me
,
3195 (signed short)LOWORD(lParam
) - fe
->bitmapPosition
.left
,
3196 (signed short)HIWORD(lParam
) - fe
->bitmapPosition
.top
,
3210 * Shift-clicks count as middle-clicks, since otherwise
3211 * two-button Windows users won't have any kind of
3212 * middle click to use.
3214 if (message
== WM_MBUTTONUP
|| (wParam
& MK_SHIFT
))
3215 button
= MIDDLE_RELEASE
;
3216 else if (message
== WM_RBUTTONUP
|| is_alt_pressed())
3217 button
= RIGHT_RELEASE
;
3219 button
= LEFT_RELEASE
;
3221 if (!midend_process_key(fe
->me
,
3222 (signed short)LOWORD(lParam
) - fe
->bitmapPosition
.left
,
3223 (signed short)HIWORD(lParam
) - fe
->bitmapPosition
.top
,
3234 if (wParam
& (MK_MBUTTON
| MK_SHIFT
))
3235 button
= MIDDLE_DRAG
;
3236 else if (wParam
& MK_RBUTTON
|| is_alt_pressed())
3237 button
= RIGHT_DRAG
;
3241 if (!midend_process_key(fe
->me
,
3242 (signed short)LOWORD(lParam
) - fe
->bitmapPosition
.left
,
3243 (signed short)HIWORD(lParam
) - fe
->bitmapPosition
.top
,
3249 if (!midend_process_key(fe
->me
, 0, 0, (unsigned char)wParam
))
3254 DWORD now
= GetTickCount();
3255 float elapsed
= (float) (now
- fe
->timer_last_tickcount
) * 0.001F
;
3256 midend_timer(fe
->me
, elapsed
);
3257 fe
->timer_last_tickcount
= now
;
3263 RECT
*sr
= (RECT
*)lParam
;
3264 int wx
, wy
, isedge
= 0;
3266 if (wParam
== WMSZ_TOP
||
3267 wParam
== WMSZ_RIGHT
||
3268 wParam
== WMSZ_BOTTOM
||
3269 wParam
== WMSZ_LEFT
) isedge
= 1;
3270 adjust_game_size(fe
, sr
, isedge
, &wx
, &wy
);
3272 /* Given the window size the puzzles constrain
3273 * us to, work out which edge we should be moving. */
3274 if (wParam
== WMSZ_TOP
||
3275 wParam
== WMSZ_TOPLEFT
||
3276 wParam
== WMSZ_TOPRIGHT
) {
3277 sr
->top
= sr
->bottom
- wy
;
3279 sr
->bottom
= sr
->top
+ wy
;
3281 if (wParam
== WMSZ_LEFT
||
3282 wParam
== WMSZ_TOPLEFT
||
3283 wParam
== WMSZ_BOTTOMLEFT
) {
3284 sr
->left
= sr
->right
- wx
;
3286 sr
->right
= sr
->left
+ wx
;
3294 return DefWindowProc(hwnd
, message
, wParam
, lParam
);
3298 static int FindPreviousInstance()
3300 /* Check if application is running. If it's running then focus on the window */
3301 HWND hOtherWnd
= NULL
;
3303 hOtherWnd
= FindWindow (wGameName
, wGameName
);
3306 SetForegroundWindow (hOtherWnd
);
3314 int WINAPI
WinMain(HINSTANCE inst
, HINSTANCE prev
, LPSTR cmdline
, int show
)
3322 MultiByteToWideChar (CP_ACP
, 0, CLASSNAME
, -1, wClassName
, 256);
3323 if (FindPreviousInstance ())
3327 InitCommonControls();
3333 wndclass
.lpfnWndProc
= WndProc
;
3334 wndclass
.cbClsExtra
= 0;
3335 wndclass
.cbWndExtra
= 0;
3336 wndclass
.hInstance
= inst
;
3337 wndclass
.hIcon
= LoadIcon(inst
, MAKEINTRESOURCE(200));
3339 if (!wndclass
.hIcon
) /* in case resource file is absent */
3340 wndclass
.hIcon
= LoadIcon(inst
, IDI_APPLICATION
);
3342 wndclass
.hCursor
= LoadCursor(NULL
, IDC_ARROW
);
3343 wndclass
.hbrBackground
= NULL
;
3344 wndclass
.lpszMenuName
= NULL
;
3346 wndclass
.lpszClassName
= wClassName
;
3348 wndclass
.lpszClassName
= CLASSNAME
;
3351 RegisterClass(&wndclass
);
3354 while (*cmdline
&& isspace((unsigned char)*cmdline
))
3363 for (i
= 0; i
< gamecount
; i
++) {
3364 const char *p
= gamelist
[i
]->name
;
3366 while (*q
&& isspace((unsigned char)*q
))
3369 if (isspace((unsigned char)*p
)) {
3370 while (*q
&& isspace((unsigned char)*q
))
3373 if (tolower((unsigned char)*p
) !=
3374 tolower((unsigned char)*q
))
3384 while (*cmdline
&& isspace((unsigned char)*cmdline
))
3394 fe
= frontend_new(inst
);
3395 if (new_game(fe
, gg
, *cmdline
? cmdline
: NULL
, &error
)) {
3397 sprintf(buf
, "%.100s Error", gg
->name
);
3398 MessageBox(NULL
, error
, buf
, MB_OK
|MB_ICONERROR
);
3403 while (GetMessage(&msg
, NULL
, 0, 0)) {
3404 DispatchMessage(&msg
);
3407 DestroyWindow(fe
->hwnd
);
3412 /* vim: set shiftwidth=4 tabstop=8: */