-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.cpp
282 lines (230 loc) · 7.89 KB
/
MainWindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
#include "StdH.h"
#include "MainWindow.h"
#include "resource.h"
extern BOOL _bWindowChanging = FALSE; // ignores window messages while this is set
extern HWND _hwndMain = NULL;
char _achWindowTitle[256]; // current window title
static HBITMAP _hbmSplash = NULL;
static BITMAP _bmSplash;
// For window reposition function
PIX _pixLastSizeI, _pixLastSizeJ;
// Window procedure active while window changes are occuring
LRESULT WindowProc_WindowChanging(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_PAINT: {
PAINTSTRUCT ps;
BeginPaint(hWnd, &ps);
EndPaint(hWnd, &ps);
return 0;
} break;
case WM_ERASEBKGND: {
PAINTSTRUCT ps;
BeginPaint(hWnd, &ps);
RECT rect;
GetClientRect(hWnd, &rect);
FillRect(ps.hdc, &rect, (HBRUSH)GetStockObject(BLACK_BRUSH));
HDC hdcMem = CreateCompatibleDC(ps.hdc);
SelectObject(hdcMem, _hbmSplash);
BitBlt(ps.hdc, 0, 0, _bmSplash.bmWidth, _bmSplash.bmHeight, hdcMem, 0, 0, SRCCOPY);
//StretchBlt(ps.hdc, 0, 0, rect.right, rect.bottom, hdcMem, 0, 0, _bmSplash.bmWidth, _bmSplash.bmHeight, SRCCOPY);
EndPaint(hWnd, &ps);
return 1;
} break;
case WM_CLOSE:
return 0;
break;
}
return DefWindowProcA(hWnd, message, wParam, lParam);
}
// Window procedure active normally
LRESULT WindowProc_Normal(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
switch (message) {
// system commands
case WM_SYSCOMMAND: {
switch (wParam & ~0x0F) {
// window resizing messages
case SC_MINIMIZE:
case SC_RESTORE:
case SC_MAXIMIZE:
// relay to application
PostMessage(NULL, message, wParam & ~0x0F, lParam);
// do not allow automatic resizing
return 0;
break;
// prevent screen saver and monitor power down
case SC_SCREENSAVE:
case SC_MONITORPOWER: return 0;
}
} break;
// when close box is clicked
case WM_CLOSE:
// relay to application
PostMessage(NULL, message, wParam, lParam);
// do not pass to default wndproc
return 0;
// some standard focus loose/gain messages
case WM_LBUTTONUP:
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN:
case WM_CANCELMODE:
case WM_KILLFOCUS:
case WM_ACTIVATEAPP:
// relay to application
PostMessage(NULL, message, wParam, lParam);
// pass to default wndproc
break;
}
// if we get to here, we pass the message to default procedure
return DefWindowProcA(hWnd, message, wParam, lParam);
}
// Main window procedure
LRESULT CALLBACK WindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
// dispatch to proper window procedure
if (_bWindowChanging) {
return WindowProc_WindowChanging(hWnd, message, wParam, lParam);
} else {
return WindowProc_Normal(hWnd, message, wParam, lParam);
}
}
// init/end main window management
void MainWindow_Init(void) {
// register the window class
WNDCLASSEXA wc;
wc.cbSize = sizeof(wc);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WindowProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = _hInstance;
wc.hIcon = LoadIconA(_hInstance, (LPCSTR)IDR_MAINFRAME);
wc.hCursor = NULL;
wc.hbrBackground = NULL;
wc.lpszMenuName = APPLICATION_NAME;
wc.lpszClassName = APPLICATION_NAME;
wc.hIconSm = NULL;
if (0 == RegisterClassExA(&wc)) {
// [Cecil] Append windows error message
FatalError("MainWindow_Init(): %s\n%s", LOCALIZE("Cannot open main window!"), GetWindowsError(GetLastError()));
}
// load bitmaps
_hbmSplash = LoadBitmapA(_hInstance, (char*)IDB_SPLASH);
ASSERT(_hbmSplash != NULL);
GetObject(_hbmSplash, sizeof(BITMAP), (LPSTR)&_bmSplash);
// here was loading and setting of no-windows-mouse-cursor
}
void MainWindow_End(void) {
DeleteObject(_hbmSplash);
}
// close the main application window
void CloseMainWindow(void) {
// if window exists
if (_hwndMain != NULL) {
// destroy it
DestroyWindow(_hwndMain);
_hwndMain = NULL;
}
}
void ResetMainWindowNormal(void) {
ShowWindow(_hwndMain, SW_HIDE);
// add edges and title bar to window size so client area would have size that we requested
RECT rWindow, rClient;
GetClientRect(_hwndMain, &rClient);
GetWindowRect(_hwndMain, &rWindow);
const PIX pixWidth = _pixLastSizeI + (rWindow.right - rWindow.left) - (rClient.right - rClient.left);
const PIX pixHeight = _pixLastSizeJ + (rWindow.bottom - rWindow.top) - (rClient.bottom - rClient.top);
const PIX pixPosX = (_vpixScreenRes(1) - pixWidth) / 2;
const PIX pixPosY = (_vpixScreenRes(2) - pixHeight) / 2;
// set new window size and show it
SetWindowPos(_hwndMain, NULL, pixPosX, pixPosY, pixWidth, pixHeight, SWP_NOZORDER);
ShowWindow(_hwndMain, SW_SHOW);
}
// open the main application window for windowed mode
void OpenMainWindowNormal(PIX pixSizeI, PIX pixSizeJ) {
ASSERT(_hwndMain == NULL);
// create a window, invisible initially
_hwndMain = CreateWindowExA(
WS_EX_APPWINDOW,
APPLICATION_NAME,
"", // title
WS_OVERLAPPED | WS_CAPTION | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_SYSMENU,
10, 10,
100, 100, // window size
NULL,
NULL,
_hInstance,
NULL);
// didn't make it
if (_hwndMain == NULL) {
// [Cecil] Append windows error message
FatalError("OpenMainWindowNormal(): %s\n%s", LOCALIZE("Cannot open main window!"), GetWindowsError(GetLastError()));
}
SE_UpdateWindowHandle(_hwndMain);
// set window title
sprintf(_achWindowTitle, LOCALIZE("Serious Sam (Window %dx%d)"), pixSizeI, pixSizeJ);
SetWindowTextA(_hwndMain, _achWindowTitle);
_pixLastSizeI = pixSizeI;
_pixLastSizeJ = pixSizeJ;
ResetMainWindowNormal();
}
// Open the main application window for fullscreen mode
void OpenMainWindowFullScreen(PIX pixSizeI, PIX pixSizeJ) {
ASSERT(_hwndMain == NULL);
// create a window, invisible initially
_hwndMain = CreateWindowExA(
WS_EX_TOPMOST | WS_EX_APPWINDOW,
APPLICATION_NAME,
"", // title
WS_POPUP,
0, 0,
pixSizeI, pixSizeJ, // window size
NULL,
NULL,
_hInstance,
NULL);
// didn't make it
if (_hwndMain == NULL) {
// [Cecil] Append windows error message
FatalError("OpenMainWindowFullScreen(): %s\n%s", LOCALIZE("Cannot open main window!"), GetWindowsError(GetLastError()));
}
SE_UpdateWindowHandle(_hwndMain);
// set window title and show it
sprintf(_achWindowTitle, LOCALIZE("Serious Sam (FullScreen %dx%d)"), pixSizeI, pixSizeJ);
SetWindowTextA(_hwndMain, _achWindowTitle);
ShowWindow(_hwndMain, SW_SHOWNORMAL);
}
// Open the main application window invisible
void OpenMainWindowInvisible(void) {
ASSERT(_hwndMain == NULL);
// create a window, invisible initially
_hwndMain = CreateWindowExA(
WS_EX_APPWINDOW,
APPLICATION_NAME,
"", // title
WS_POPUP,
0, 0,
10, 10, // window size
NULL,
NULL,
_hInstance,
NULL);
// didn't make it
if (_hwndMain == NULL) {
// [Cecil] Append windows error message
FatalError("OpenMainWindowInvisible(): %s\n%s", LOCALIZE("Cannot open main window!"), GetWindowsError(GetLastError()));
}
SE_UpdateWindowHandle(_hwndMain);
// set window title
sprintf(_achWindowTitle, "Serious Sam");
SetWindowTextA(_hwndMain, _achWindowTitle);
}