Mercurial > mm7
annotate OSWindow.cpp @ 2339:63e1388c5463
Moving functions from unsorted_subs.h pt3
author | Grumpy7 |
---|---|
date | Sun, 06 Apr 2014 12:37:28 +0200 |
parents | d6887ee81068 |
children | d6407efaa4ea |
rev | line source |
---|---|
2253
aff7a7b072b7
adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents:
2223
diff
changeset
|
1 #define _CRT_SECURE_NO_WARNINGS |
2336 | 2 #include "mm7_unsorted_subs.h" |
1804 | 3 #include "OSWindow.h" |
4 #include "mm7_data.h" | |
5 #include "Arcomage.h" | |
6 #include "AudioPlayer.h" | |
7 #include "VideoPlayer.h" | |
8 #include "Mouse.h" | |
2044 | 9 #include "Timer.h" |
1804 | 10 #include "GUIWindow.h" |
11 #include "Party.h" | |
12 #include "Game.h" | |
13 #include "IndoorCameraD3D.h" | |
14 #include "Keyboard.h" | |
15 #include "Render.h" | |
16 #include "Viewport.h" | |
17 #include "Vis.h" | |
18 #include "Texts.h" | |
19 #include "AIL.h" | |
20 #include "Bink_Smacker.h" | |
21 #include "ErrorHandling.h" | |
2052 | 22 #include "Log.h" |
2223 | 23 #include "LOD.h" |
2277 | 24 #include "Outdoor_stuff.h" |
1804 | 25 |
26 | |
2277 | 27 bool wizard_eye = false; //включить на постоянно око чародея |
28 bool change_seasons = false; //смена времён года | |
29 bool all_magic = false; //включить всю магию | |
30 bool debug_information = false; //информация fps, положение группы, уровень пола и т.п. | |
31 bool show_picked_face = false; //выделить активный фейс | |
32 bool draw_portals_loops = false; //видны рамки порталов | |
33 bool new_speed = false; | |
34 bool bSnow = false; | |
2320 | 35 bool draw_terrain_dist_mist = false;//новая дальность отрисовки тайлов |
2277 | 36 |
1804 | 37 bool OSWindow::OnMouseLeftClick(int x, int y) |
38 { | |
1815 | 39 if (UIControl::OnMouseLeftClick(x, y)) |
40 return true; | |
41 | |
1804 | 42 if (pVideoPlayer->pVideoFrame.pPixels) |
43 pVideoPlayer->bStopBeforeSchedule = true; | |
44 | |
45 pMouse->SetMouseClick(x, y); | |
46 | |
47 if (GetCurrentMenuID() == MENU_CREATEPARTY) | |
2339 | 48 Mouse::UI_OnKeyDown(VK_SELECT); |
1804 | 49 |
50 if (pGame) | |
51 pGame->PickMouse(512.0, x, y, false, &vis_sprite_filter_3, &vis_door_filter); | |
52 | |
2339 | 53 Mouse::UI_OnMouseLeftClick(0); |
1804 | 54 return true; |
55 } | |
56 | |
57 bool OSWindow::OnMouseRightClick(int x, int y) | |
58 { | |
1815 | 59 if (UIControl::OnMouseRightClick(x, y)) |
60 return true; | |
61 | |
1804 | 62 if (pVideoPlayer->pVideoFrame.pPixels) |
63 pVideoPlayer->bStopBeforeSchedule = true; | |
64 | |
65 pMouse->SetMouseClick(x, y); | |
66 | |
67 if (pGame) | |
68 pGame->PickMouse(pGame->pIndoorCameraD3D->GetPickDepth(), x, y, 0, &vis_sprite_filter_2, &vis_door_filter); | |
69 | |
70 UI_OnMouseRightClick(0); | |
71 return true; | |
72 } | |
73 | |
74 | |
1830 | 75 bool _507B98_ctrl_pressed = false; |
1804 | 76 bool OSWindow::WinApiMessageProc(UINT msg, WPARAM wparam, LPARAM lparam, LRESULT *result) |
77 { | |
78 switch (msg) | |
79 { | |
80 case WM_KEYUP: | |
81 { | |
1830 | 82 if (wparam == VK_CONTROL) |
83 _507B98_ctrl_pressed = false; | |
2132 | 84 if (wparam == VK_SNAPSHOT) |
85 pRenderer->SavePCXScreenshot(); | |
1830 | 86 |
1804 | 87 OnKey(wparam); |
88 return *result = 0, true; | |
89 } | |
90 | |
91 case WM_SIZING: return *result = 1, true; | |
92 case WM_WINDOWPOSCHANGED: | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
93 //if (pVideoPlayer && pVideoPlayer->AnyMovieLoaded() && pVideoPlayer->pBinkBuffer) |
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
94 //BinkBufferSetOffset(pVideoPlayer->pBinkBuffer, 0, 0); |
1804 | 95 return false; |
96 | |
97 case WM_CHAR: | |
2201 | 98 if (!pKeyActionMap->ProcessTextInput(wparam) && !viewparams->field_4C) |
1804 | 99 GUI_HandleHotkey(wparam); |
100 return false; | |
101 | |
102 case WM_DESTROY: | |
103 ExitProcess(GetLastError()); | |
104 // SetPriorityClass(GetCurrentProcess(), NORMAL_PRIORITY_CLASS); | |
105 // PostQuitMessage(0); | |
106 // return 0; | |
107 | |
108 //case WM_DEVICECHANGE: | |
109 //{ | |
110 // if (wParam == 0x8000) // CD or some device has been inserted - notify InsertCD dialog | |
111 // PostMessageW(hInsertCDWindow, WM_USER + 1, 0, 0); | |
112 // return 0; | |
113 //} | |
114 | |
115 case WM_COMMAND: | |
116 if (OnOSMenu(wparam)) | |
117 return *result = 0, true; | |
118 return false; | |
119 | |
120 case WM_LBUTTONDOWN: | |
121 { | |
122 if (pArcomageGame->bGameInProgress) | |
123 { | |
124 pArcomageGame->stru1.field_0 = 7; | |
125 ArcomageGame::OnMouseClick(0, true); | |
126 return false; | |
127 } | |
128 | |
129 OnMouseLeftClick(LOWORD(lparam), HIWORD(lparam)); | |
130 } | |
131 return false; | |
132 | |
133 | |
134 case WM_RBUTTONDOWN: | |
135 { | |
136 if (pArcomageGame->bGameInProgress) | |
137 { | |
138 pArcomageGame->stru1.field_0 = 8; | |
139 ArcomageGame::OnMouseClick(1, true); | |
140 return false; | |
141 } | |
142 | |
143 OnMouseRightClick(LOWORD(lparam), HIWORD(lparam)); | |
144 } | |
145 return false; | |
146 | |
147 | |
148 case WM_LBUTTONUP: | |
149 if ( !pArcomageGame->bGameInProgress ) | |
150 { | |
151 back_to_game(); | |
152 return false; | |
153 } | |
154 pArcomageGame->stru1.field_0 = 3; | |
155 ArcomageGame::OnMouseClick(0, 0); | |
156 return false; | |
157 | |
158 case WM_RBUTTONUP: | |
159 if ( !pArcomageGame->bGameInProgress ) | |
160 { | |
161 back_to_game(); | |
162 return false; | |
163 } | |
164 pArcomageGame->stru1.field_0 = 4; | |
165 ArcomageGame::OnMouseClick(1, false); | |
166 return false; | |
167 | |
168 case WM_LBUTTONDBLCLK: | |
169 { | |
170 if ( pArcomageGame->bGameInProgress ) | |
171 { | |
172 pArcomageGame->stru1.field_0 = 7; | |
173 return false; | |
174 } | |
175 | |
176 OnMouseLeftClick(LOWORD(lparam), HIWORD(lparam)); | |
177 } | |
178 return false; | |
179 | |
180 case WM_RBUTTONDBLCLK: | |
181 { | |
182 if (pArcomageGame->bGameInProgress) | |
183 { | |
184 pArcomageGame->stru1.field_0 = 8; | |
185 return false; | |
186 } | |
187 | |
188 OnMouseRightClick(LOWORD(lparam), HIWORD(lparam)); | |
189 } | |
190 return false; | |
191 | |
192 /*case WM_MBUTTONDOWN: | |
193 if (pRenderer->pRenderD3D && pGame) | |
194 { | |
195 pGame->PickMouse(pGame->pIndoorCameraD3D->GetPickDepth(), LOWORD(lParam), HIWORD(lParam), 1, &vis_sprite_filter_3, &vis_face_filter); | |
196 } | |
197 return false;*/ | |
198 | |
199 case WM_MOUSEMOVE: | |
200 if ( pArcomageGame->bGameInProgress ) | |
201 { | |
202 ArcomageGame::OnMouseMove(LOWORD(lparam), HIWORD(lparam)); | |
203 ArcomageGame::OnMouseClick(0, wparam == MK_LBUTTON); | |
204 ArcomageGame::OnMouseClick(1, wparam == MK_RBUTTON); | |
205 } | |
206 else if (pMouse) | |
207 pMouse->SetMouseClick(LOWORD(lparam), HIWORD(lparam)); | |
208 return false; | |
209 | |
210 case WM_SYSCOMMAND: | |
211 if ( wparam == SC_SCREENSAVE || wparam == SC_MONITORPOWER ) | |
212 return *result = 0, true; | |
213 return false; | |
214 | |
215 case WM_KEYDOWN: | |
216 if ( uGameMenuUI_CurentlySelectedKeyIdx != -1 ) | |
217 { | |
2201 | 218 pKeyActionMap->ProcessTextInput(wparam); |
1804 | 219 return false; |
220 } | |
221 if ( !pArcomageGame->bGameInProgress ) | |
222 { | |
223 if ( pVideoPlayer->pVideoFrame.pPixels ) | |
224 pVideoPlayer->bStopBeforeSchedule = 1; | |
225 if ( wparam == VK_RETURN ) | |
226 { | |
227 if ( !viewparams->field_4C ) | |
2339 | 228 Mouse::UI_OnKeyDown(wparam); |
1804 | 229 return 0; |
230 } | |
1830 | 231 if (wparam == VK_CONTROL) |
232 { | |
233 _507B98_ctrl_pressed = true; | |
234 return false; | |
235 } | |
1804 | 236 if ( wparam == VK_ESCAPE ) |
237 { | |
238 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, window_SpeakInHouse != 0, 0); | |
239 return 0; | |
240 } | |
241 if ( wparam <= VK_HOME ) | |
242 return 0; | |
243 if ( wparam > VK_DOWN ) | |
244 { | |
245 if ( wparam != VK_F4 || pVideoPlayer->AnyMovieLoaded() ) | |
246 return 0; | |
247 | |
248 // F4 - toggle fullscreen | |
249 SendMessageW(api_handle, WM_COMMAND, 104, 0); | |
250 return 0; | |
251 } | |
252 if ( wparam >= VK_LEFT && wparam <= VK_DOWN ) | |
253 { | |
254 if ( pCurrentScreen != SCREEN_GAME && pCurrentScreen != SCREEN_MODAL_WINDOW ) | |
255 { | |
256 if ( !viewparams->field_4C ) | |
2339 | 257 Mouse::UI_OnKeyDown(wparam); |
1804 | 258 return 0; |
259 } | |
260 } | |
261 if ( pCurrentScreen != SCREEN_GAME && pCurrentScreen != SCREEN_MODAL_WINDOW ) | |
262 return 0; | |
263 } | |
264 | |
265 pArcomageGame->stru1.field_0 = 1; | |
266 | |
267 set_stru1_field_8_InArcomage(MapVirtualKey(wparam, MAPVK_VK_TO_CHAR)); | |
268 if ( wparam == 27 ) | |
269 { | |
270 pArcomageGame->GameOver = 1; | |
271 pArcomageGame->field_F4 = 1; | |
2214 | 272 pArcomageGame->uGameWinner = 2; |
273 pArcomageGame->Victory_type = -2; | |
1804 | 274 return false; |
275 } | |
276 if ( wparam != 114 ) | |
277 { | |
278 if ( wparam == 115 && !pVideoPlayer->AnyMovieLoaded() ) | |
279 SendMessage(api_handle, WM_COMMAND, 104, 0); | |
280 return false; | |
281 } | |
282 SendMessageW(api_handle, WM_COMMAND, 103, 0); | |
283 return *result = 0, true; | |
284 | |
285 case WM_ACTIVATEAPP: | |
286 if ( wparam && (GetForegroundWindow() == api_handle || GetForegroundWindow() == hInsertCDWindow) ) | |
287 { | |
2061 | 288 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_APP_INACTIVE) |
1804 | 289 { |
290 dword_4E98BC_bApplicationActive = 1; | |
2069 | 291 /*if ( pRenderer->bWindowMode ) |
1804 | 292 { |
293 HDC hDC = GetDC(api_handle); | |
294 int bitsPerPixel = GetDeviceCaps(hDC, BITSPIXEL); | |
295 int planes = GetDeviceCaps(hDC, PLANES); | |
296 ReleaseDC(api_handle, hDC); | |
297 if (bitsPerPixel != 16 || planes != 1) | |
2069 | 298 Error(L"%S", pGlobalTXT_LocalizationStrings[62]); |
299 }*/ | |
2061 | 300 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_APP_INACTIVE; |
1804 | 301 |
302 if ( pArcomageGame->bGameInProgress ) | |
303 { | |
304 pArcomageGame->field_F9 = 1; | |
305 } | |
306 else | |
307 { | |
2061 | 308 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0200_EVENT_TIMER) |
309 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0200_EVENT_TIMER; | |
1804 | 310 else |
311 pEventTimer->Resume(); | |
2061 | 312 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0400_MISC_TIMER) |
313 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0400_MISC_TIMER; | |
1804 | 314 else |
315 pMiscTimer->Resume(); | |
316 | |
317 viewparams->bRedrawGameUI = true; | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
318 if ( pVideoPlayer->pMovie)//pVideoPlayer->pSmackerMovie ) |
1804 | 319 { |
320 pRenderer->RestoreFrontBuffer(); | |
2152 | 321 pRenderer->RestoreBackBuffer(); |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
322 //pVideoPlayer->_4BF5B2(); |
1804 | 323 } |
324 } | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
325 if ( pAudioPlayer->hAILRedbook && !bGameoverLoop && !pVideoPlayer->pMovie)//!pVideoPlayer->pSmackerMovie ) |
1804 | 326 AIL_redbook_resume(pAudioPlayer->hAILRedbook); |
327 } | |
328 } | |
329 else | |
330 { | |
2061 | 331 if (!(dword_6BE364_game_settings_1 & GAME_SETTINGS_APP_INACTIVE)) |
1804 | 332 { |
333 dword_4E98BC_bApplicationActive = 0; | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
334 if ( pVideoPlayer->pMovie//(pVideoPlayer->pSmackerMovie || pVideoPlayer->pBinkMovie) |
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2132
diff
changeset
|
335 && pVideoPlayer->bPlayingMovie ) |
1804 | 336 pVideoPlayer->bStopBeforeSchedule = 1; |
337 | |
338 ClipCursor(0); | |
2061 | 339 dword_6BE364_game_settings_1 |= GAME_SETTINGS_APP_INACTIVE; |
1804 | 340 if ( pEventTimer->bPaused ) |
2061 | 341 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0200_EVENT_TIMER; |
1804 | 342 else |
343 pEventTimer->Pause(); | |
344 if ( pMiscTimer->bPaused ) | |
2061 | 345 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0400_MISC_TIMER; |
1804 | 346 else |
347 pMiscTimer->Pause(); | |
348 | |
2104 | 349 pAudioPlayer->StopChannels(-1, -1);//приостановка воспроизведения звуков при неактивном окне игры |
1804 | 350 if ( pAudioPlayer->hAILRedbook ) |
351 AIL_redbook_pause(pAudioPlayer->hAILRedbook); | |
352 } | |
353 } | |
354 return *result = 0, true; | |
355 | |
356 case WM_SETFOCUS: | |
357 dword_4E98BC_bApplicationActive = 0; | |
358 ClipCursor(0); | |
359 return false; | |
360 | |
361 case WM_KILLFOCUS: | |
362 dword_4E98BC_bApplicationActive = 1; | |
363 return false; | |
364 | |
365 case WM_PAINT: | |
1806 | 366 if (!api_handle || !pRenderer) |
1805 | 367 return false; |
2154 | 368 |
2155 | 369 if ( !GetUpdateRect(api_handle, 0, 0))// || !dword_4E98BC_bApplicationActive && !pRenderer->bWindowMode ) |
2154 | 370 return *result = 0, true; |
371 | |
1804 | 372 PAINTSTRUCT Paint; |
373 BeginPaint(api_handle, &Paint); | |
374 if ( pArcomageGame->bGameInProgress ) | |
375 { | |
376 pArcomageGame->field_F9 = 1; | |
377 } | |
2154 | 378 if (pRenderer->AreRenderSurfacesOk()) |
1804 | 379 { |
2154 | 380 pRenderer->Present(); |
381 //EndPaint(api_handle, &Paint); | |
382 //return *result = 0, true; | |
1804 | 383 } |
2154 | 384 |
1804 | 385 EndPaint(api_handle, &Paint); |
386 return *result = 0, true; | |
387 | |
388 } | |
389 return false; | |
390 } | |
391 | |
392 | |
393 | |
394 bool OSWindow::Initialize(const wchar_t *title, int window_width, int window_height) | |
395 { | |
396 WNDCLASSEXW wcxw; | |
397 wcxw.cbClsExtra = 0; | |
398 wcxw.cbSize = sizeof(wcxw); | |
399 wcxw.cbWndExtra = 0; | |
400 wcxw.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1); | |
401 wcxw.hCursor = nullptr; | |
402 wcxw.hIcon = wcxw.hIconSm = nullptr; | |
403 wcxw.hInstance = GetModuleHandleW(nullptr); | |
404 wcxw.lpfnWndProc = WinApiMsgRouter; | |
405 wcxw.lpszClassName = L"M&MTrilogy"; | |
406 wcxw.lpszMenuName = nullptr; | |
407 wcxw.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; | |
408 if (!RegisterClassExW(&wcxw)) | |
409 return false; | |
410 | |
2061 | 411 api_handle = CreateWindowExW(0, wcxw.lpszClassName, title, 0, |
2069 | 412 ReadWindowsRegistryInt("window X", (GetSystemMetrics(SM_CXSCREEN) - window_width) / 2), |
413 ReadWindowsRegistryInt("window Y", (GetSystemMetrics(SM_CYSCREEN) - window_height) / 2), | |
414 window_width, window_height, nullptr, | |
1804 | 415 nullptr, wcxw.hInstance, this); |
416 if (!api_handle) | |
417 { | |
418 UnregisterClassW(wcxw.lpszClassName, wcxw.hInstance); | |
419 return false; | |
420 } | |
421 | |
422 SetWindowedMode(window_width, window_height); | |
423 Show(); | |
424 | |
425 SetActiveWindow(api_handle); | |
426 | |
427 MSG msg; | |
428 while (PeekMessageW(&msg, api_handle, 0, 0, PM_REMOVE)) | |
429 { | |
430 TranslateMessage(&msg); | |
431 DispatchMessageW(&msg); | |
432 } | |
433 | |
434 return true; | |
435 } | |
436 | |
437 | |
438 | |
439 | |
440 OSWindow *OSWindow::Create(const wchar_t *title, int window_width, int window_height) | |
441 { | |
2061 | 442 auto window = new OSWindow; |
1804 | 443 if (window) |
444 if (!window->Initialize(title, window_width, window_height)) | |
445 { | |
446 delete window; | |
447 window = nullptr; | |
448 } | |
449 | |
450 return window; | |
451 } | |
452 | |
453 | |
454 | |
455 LRESULT __stdcall OSWindow::WinApiMsgRouter(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) | |
456 { | |
457 if (msg == WM_NCCREATE) | |
458 { | |
1980 | 459 CREATESTRUCTA* cs = (CREATESTRUCTA *)(lparam); |
460 OSWindow* window = (OSWindow *)cs->lpCreateParams; | |
1804 | 461 |
462 SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LONG_PTR)window); | |
463 return DefWindowProcW(hwnd, msg, wparam, lparam); | |
464 } | |
465 | |
1980 | 466 OSWindow* window = (OSWindow *)GetWindowLongPtrW(hwnd, GWLP_USERDATA); |
1804 | 467 if (window && window->api_handle == hwnd) |
468 { | |
469 LPARAM result; | |
470 if (window->WinApiMessageProc(msg, wparam, lparam, &result)) | |
471 return result; | |
472 } | |
473 return DefWindowProcW(hwnd, msg, (WPARAM)wparam, (LPARAM)lparam); | |
474 } | |
475 | |
476 | |
477 void OSWindow::Show() | |
478 { | |
479 ShowWindow(api_handle, SW_SHOWNORMAL); | |
480 UpdateWindow(api_handle); | |
481 } | |
482 | |
483 | |
484 void OSWindow::SetCursor(const char *cursor_name) | |
485 { | |
486 POINT cursor_pos; | |
487 GetCursorPos(&cursor_pos); | |
488 | |
489 if (!strcmp(cursor_name, "MICON1") ) | |
2223 | 490 //SetClassLongPtrW(api_handle, GCLP_HCURSOR, (LONG)LoadCursorW(GetModuleHandleW(nullptr), IDC_ARROW)); |
491 SetClassLongPtrW(api_handle, GCLP_HCURSOR, (LONG)LoadCursorW(NULL, IDC_ARROW)); | |
1804 | 492 else if (!strcmp(cursor_name, "MICON2") ) |
2219 | 493 { |
2223 | 494 //HCURSOR hCurs1; // дескриптор курсора |
495 | |
496 // Создаем курсор в виде мишени. | |
497 | |
498 //pMouse->uCursorTextureID = pIcons_LOD->LoadTexture(cursor_name, TEXTURE_16BIT_PALETTE);//есть альфа маска | |
499 //hCurs1 = LoadCursor(NULL, L"Target");//неверно, наверно нужно загрузить/создать курсор | |
500 SetClassLongPtrW(api_handle, GCLP_HCURSOR, (LONG)LoadCursorW(NULL, IDC_CROSS)); | |
501 | |
2219 | 502 } |
1804 | 503 else if (!strcmp(cursor_name, "MICON3") ) |
2223 | 504 SetClassLongPtrW(api_handle, GCLP_HCURSOR, (LONG)LoadCursorW(NULL, IDC_WAIT)); |
1804 | 505 |
2217 | 506 //ClientToScreen(api_handle, &cursor_pos); //кидает курсор в другую часть экрана |
1804 | 507 SetCursorPos(cursor_pos.x, cursor_pos.y); |
508 } | |
509 | |
510 void OSWindow::SetFullscreenMode() | |
511 { | |
512 SetMenu(api_handle, nullptr); | |
513 SetWindowLongW(api_handle, GWL_EXSTYLE, WS_EX_TOPMOST); | |
514 SetWindowLongW(api_handle, GWL_STYLE, WS_VISIBLE | WS_POPUP); | |
515 | |
516 SetWindowPos(api_handle, HWND_TOP, 0, 0, -1, -1, SWP_NOSIZE | SWP_SHOWWINDOW); | |
517 } | |
518 | |
519 void OSWindow::SetWindowedMode(int new_window_width, int new_window_height) | |
520 { | |
2069 | 521 RECT rcWindowPos; |
522 GetWindowRect(api_handle, &rcWindowPos); | |
523 | |
1804 | 524 SetWindowLongW(api_handle, GWL_EXSTYLE, 0); |
525 SetWindowLongW(api_handle, GWL_STYLE, WS_VISIBLE | WS_OVERLAPPEDWINDOW); | |
1995 | 526 SetWindowPos(api_handle, HWND_TOP, 0, 0, -1, -1, 0); |
527 | |
1804 | 528 RECT rcWindow; |
529 GetWindowRect(api_handle, &rcWindow); | |
530 | |
531 RECT rcClient; | |
532 GetClientRect(api_handle, &rcClient); | |
533 | |
534 int window_borders_width = (rcWindow.right - rcWindow.left) - (rcClient.right - rcClient.left), | |
535 window_borders_height = (rcWindow.bottom - rcWindow.top) - (rcClient.bottom - rcClient.top); | |
536 int window_total_width = new_window_width + window_borders_width, | |
537 window_total_height = new_window_height + window_borders_height; | |
538 | |
539 #ifdef _DEBUG | |
540 if (!GetMenu(api_handle)) | |
541 window_total_height += GetSystemMetrics(SM_CYMENU); | |
542 #endif | |
2069 | 543 MoveWindow(api_handle, rcWindowPos.left, |
544 rcWindowPos.top, | |
1804 | 545 window_total_width, |
546 window_total_height, 0); | |
547 #ifdef _DEBUG | |
548 static HMENU debug_menu = CreateDebugMenuPanel(); | |
549 SetMenu(api_handle, debug_menu); | |
2069 | 550 |
551 GetWindowRect(api_handle, &rcWindow); | |
552 GetClientRect(api_handle, &rcClient); | |
1804 | 553 #endif |
554 } | |
555 | |
556 | |
557 | |
558 | |
559 HMENU OSWindow::CreateDebugMenuPanel() | |
560 { | |
561 HMENU menu = CreateMenu(); | |
562 { | |
563 HMENU file = CreatePopupMenu(); | |
564 AppendMenuW(menu, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)file, L"&File"); | |
565 { | |
566 AppendMenuW(file, MF_ENABLED | MF_STRING, 40001, L"Exit"); | |
567 } | |
568 | |
569 HMENU debug = CreatePopupMenu(); | |
570 AppendMenuW(menu, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug, L"&Debug"); | |
571 { | |
572 HMENU debug_party = CreatePopupMenu(); | |
573 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party, L"&Party"); | |
574 { | |
575 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40007, L"Give Gold (10 000)"); | |
576 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40008, L"Give Exp (20 000)"); | |
577 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40059, L"Give Skills (50 each)"); | |
578 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40013, L"Remove Gold"); | |
579 | |
580 HMENU debug_party_setconditions = CreatePopupMenu(); | |
581 AppendMenuW(debug_party, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party_setconditions, L"Set Condition"); | |
582 { | |
583 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40044, L"Afraid"); | |
584 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40043, L"Asleep"); | |
585 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40037, L"Curse"); | |
2187 | 586 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40036, L"Disease Weak"); |
587 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40035, L"Disease Medium"); | |
588 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40034, L"Disease Severe"); | |
1804 | 589 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40041, L"Dead"); |
590 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40039, L"Drunk"); | |
591 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40042, L"Eradicated"); | |
592 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40038, L"Insane"); | |
593 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40045, L"Paralyzed"); | |
2187 | 594 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40033, L"Poison Weak"); |
595 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40032, L"Poison Medium"); | |
596 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40031, L"Poison Severe"); | |
1804 | 597 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40029, L"&Stone"); |
598 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40040, L"Unconscious"); | |
599 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40030, L"Weak"); | |
600 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40073, L"Zombie"); | |
601 } | |
602 | |
603 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40006, L"Set Food (20)"); | |
604 | |
605 HMENU debug_party_alignment = CreatePopupMenu(); | |
606 AppendMenuW(debug_party, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party_alignment, L"Alignment"); | |
607 { | |
608 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING, 40062, L"Good"); | |
609 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING | MF_CHECKED, 40063, L"Neutral"); | |
610 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING, 40064, L"Evil"); | |
611 } | |
612 } | |
613 | |
614 HMENU debug_time = CreatePopupMenu(); | |
615 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_time, L"&Time"); | |
616 { | |
617 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40009, L"Add 1 Day"); | |
618 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40010, L"Add 1 Week"); | |
619 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40011, L"Add 1 Month"); | |
620 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40012, L"Add 1 Year"); | |
621 } | |
622 | |
623 HMENU debug_items = CreatePopupMenu(); | |
624 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_items, L"&Items"); | |
625 { | |
626 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40015, L"Generate level &1 item"); | |
627 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40016, L"Generate level &2 item"); | |
628 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40017, L"Generate level &3 item"); | |
629 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40018, L"Generate level &4 item"); | |
630 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40019, L"Generate level &5 item"); | |
631 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40020, L"Generate level &6 item"); | |
632 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40061, L"Generate special item"); | |
633 } | |
634 | |
635 HMENU debug_graphics = CreatePopupMenu(); | |
636 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_graphics, L"&Graphics"); | |
637 { | |
638 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40023, L"Lighting Mode"); | |
639 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40024, L"Lighting Geometry"); | |
640 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING | MF_GRAYED, 40104, L"Lights Off"); | |
641 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40105, L"Colored Lights"); | |
642 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40025, L"Debug Lights"); | |
643 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40101, L"Debug Decals"); | |
644 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40027, L"HWID Portals"); | |
645 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40047, L"SWID Portals"); | |
646 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40051, L"OD Frustum"); | |
647 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40054, L"SWOD Constant Redraw"); | |
648 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40055, L"SWOD Lit Rasterizer"); | |
649 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40056, L"Party Light off"); | |
650 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40060, L"SWOD Nice Lighting off"); | |
651 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40067, L"HWOD Additive Fog Lights"); | |
652 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40072, L"HWID Nice Lighting"); | |
653 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40048, L"Wireframe"); | |
654 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40049, L"Fog"); | |
655 } | |
656 | |
657 HMENU debug_misc = CreatePopupMenu(); | |
658 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_misc, L"&Misc"); | |
659 { | |
660 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40066, L"Object Viewcone Culling"); | |
661 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40068, L"Red Tint"); | |
662 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40071, L"Display Secrets"); | |
663 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40102, L"Massive Bloodsplat"); | |
664 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40103, L"Underwater Gravity"); | |
665 } | |
666 | |
667 HMENU debug_eax = CreatePopupMenu(); | |
668 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_eax, L"EAX Environs"); | |
669 { | |
670 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40074, L"NONE"); | |
671 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40075, L"GENERIC"); | |
672 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40076, L"PADDEDCELL"); | |
673 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40077, L"ROOM"); | |
674 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40078, L"BATHROOM"); | |
675 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40079, L"LIVINGROOM"); | |
676 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40080, L"STONEROOM"); | |
677 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40081, L"AUDITORIUM"); | |
678 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40082, L"CONCERTHALL"); | |
679 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40083, L"CAVE"); | |
680 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40084, L"ARENA"); | |
681 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40085, L"HANGAR"); | |
682 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40086, L"CARPETEDHALLWAY"); | |
683 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40087, L"HALLWAY"); | |
684 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40088, L"STONECORRIDOR"); | |
685 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40089, L"ALLEY"); | |
686 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40090, L"FOREST"); | |
687 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40091, L"CITY"); | |
688 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40092, L"MOUNTAINS"); | |
689 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40093, L"QUARRY"); | |
690 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40094, L"PLAIN"); | |
691 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40095, L"PARKINGLOT"); | |
692 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40096, L"SEWERPIPE"); | |
693 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40097, L"UNDERWATER"); | |
694 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40098, L"DRUGGED"); | |
695 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40099, L"DIZZY"); | |
696 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40100, L"PSICHOTIC"); | |
697 } | |
698 } | |
2277 | 699 HMENU other = CreatePopupMenu(); |
700 AppendMenuW(menu, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other, L"&Other"); | |
701 { | |
702 HMENU other_wizard_eye = CreatePopupMenu(); | |
703 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_wizard_eye, L"Wizard eye"); | |
704 { | |
705 AppendMenuW(other_wizard_eye, MF_ENABLED | MF_STRING, 40101, L"Wizard eye on"); | |
706 AppendMenuW(other_wizard_eye, MF_ENABLED | MF_STRING, 40102, L"Wizard eye off"); | |
707 } | |
708 HMENU other_new_draw_object_dist = CreatePopupMenu(); | |
709 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_new_draw_object_dist, L"New draw object distance"); | |
710 { | |
711 AppendMenuW(other_new_draw_object_dist, MF_ENABLED | MF_STRING, 40103, L"New draw object dist on"); | |
712 AppendMenuW(other_new_draw_object_dist, MF_ENABLED | MF_STRING, 40104, L"New draw object dist off"); | |
713 } | |
714 HMENU other_change_seasons = CreatePopupMenu(); | |
715 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_change_seasons, L"Change seasons"); | |
716 { | |
717 AppendMenuW(other_change_seasons, MF_ENABLED | MF_STRING, 40105, L"Change seasons on"); | |
718 AppendMenuW(other_change_seasons, MF_ENABLED | MF_STRING, 40106, L"Change seasons off"); | |
719 } | |
720 HMENU other_all_magic = CreatePopupMenu(); | |
721 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_all_magic, L"All magic"); | |
722 { | |
723 AppendMenuW(other_all_magic, MF_ENABLED | MF_STRING, 40107, L"All magic on"); | |
724 AppendMenuW(other_all_magic, MF_ENABLED | MF_STRING, 40108, L"All magic off"); | |
725 } | |
726 HMENU other_debug_information = CreatePopupMenu(); | |
727 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_debug_information, L"Debug information"); | |
728 { | |
729 AppendMenuW(other_debug_information, MF_ENABLED | MF_STRING, 40109, L"Debug information on"); | |
730 AppendMenuW(other_debug_information, MF_ENABLED | MF_STRING, 40110, L"Debug information off"); | |
731 } | |
732 HMENU other_show_picked_face = CreatePopupMenu(); | |
733 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_show_picked_face, L"Show picked face"); | |
734 { | |
735 AppendMenuW(other_show_picked_face, MF_ENABLED | MF_STRING, 40111, L"Show picked face on"); | |
736 AppendMenuW(other_show_picked_face, MF_ENABLED | MF_STRING, 40112, L"Show picked face off"); | |
737 } | |
738 HMENU other_draw_portals_loops = CreatePopupMenu(); | |
739 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_draw_portals_loops, L"Draw portals loops"); | |
740 { | |
741 AppendMenuW(other_draw_portals_loops, MF_ENABLED | MF_STRING, 40113, L"Draw portals loops on"); | |
742 AppendMenuW(other_draw_portals_loops, MF_ENABLED | MF_STRING, 40114, L"Draw portals loops off"); | |
743 } | |
744 HMENU other_new_speed = CreatePopupMenu(); | |
745 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_new_speed, L"New_speed"); | |
746 { | |
747 AppendMenuW(other_new_speed, MF_ENABLED | MF_STRING, 40115, L"New_speed on"); | |
748 AppendMenuW(other_new_speed, MF_ENABLED | MF_STRING, 40116, L"New_speed off"); | |
749 } | |
750 HMENU other_snow = CreatePopupMenu(); | |
751 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_snow, L"Snow"); | |
752 { | |
753 AppendMenuW(other_snow, MF_ENABLED | MF_STRING, 40117, L"Snowfall on"); | |
754 AppendMenuW(other_snow, MF_ENABLED | MF_STRING, 40118, L"Snowfall off"); | |
755 } | |
2320 | 756 HMENU other_draw_terrain_dist_mist = CreatePopupMenu(); |
757 AppendMenuW(other, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)other_draw_terrain_dist_mist, L"New draw terrain distance"); | |
758 { | |
759 AppendMenuW(other_draw_terrain_dist_mist, MF_ENABLED | MF_STRING, 40119, L"New draw terrain distance on"); | |
760 AppendMenuW(other_draw_terrain_dist_mist, MF_ENABLED | MF_STRING, 40120, L"New draw terrain distance off"); | |
761 } | |
2277 | 762 |
763 } | |
1804 | 764 } |
765 return menu; | |
766 } | |
767 | |
768 | |
769 | |
770 | |
771 bool OSWindow::OnOSMenu(int item_id) | |
772 { | |
773 switch (item_id) | |
774 { | |
775 default: return false; | |
776 | |
777 | |
2132 | 778 //case 103: pRenderer->SavePCXScreenshot(); break; |
1804 | 779 case 101: // Quit game |
2132 | 780 case 40001: // Menu "File"-> "Exit" |
781 pGame->Deinitialize(); | |
1804 | 782 SendMessageW(api_handle, WM_DESTROY, 0, 0); |
783 break; | |
784 | |
2132 | 785 case 104: //F4 button |
1804 | 786 pRenderer->ChangeBetweenWinFullscreenModes(); |
787 if (pArcomageGame->bGameInProgress) | |
788 pArcomageGame->field_F6 = 1; | |
789 break; | |
790 | |
791 //SubMenu "Party" | |
792 case 40006: pParty->SetFood(pParty->uNumFoodRations + 20); break; | |
793 case 40007: pParty->SetGold(pParty->uNumGold + 10000); break; | |
1827
0c75c3e7e436
cleaned up part of party.cpp, renamed byte_AE3368 to playerAlreadyPicked + 3 vars after it, moved them to party.cpp, some player.cpp bugfixes
Grumpy7
parents:
1815
diff
changeset
|
794 case 40008: pParty->GivePartyExp(20000); break; |
1804 | 795 case 40013: pParty->SetGold(0); break; |
796 | |
797 case 40059: | |
798 for (uint i = 0; i < 4; ++i) | |
799 pParty->pPlayers[i].uSkillPoints = 50; | |
800 break; | |
801 | |
2185 | 802 case 40029: pPlayers[uActiveCharacter]->SetPertified(pParty->uTimePlayed); break; |
803 case 40030: pPlayers[uActiveCharacter]->SetWeak(pParty->uTimePlayed); break; | |
2187 | 804 case 40031: pPlayers[uActiveCharacter]->SetPoisonSevere(pParty->uTimePlayed); break; |
805 case 40032: pPlayers[uActiveCharacter]->SetPoisonMedium(pParty->uTimePlayed); break; | |
806 case 40033: pPlayers[uActiveCharacter]->SetPoisonWeak(pParty->uTimePlayed); break; | |
807 case 40034: pPlayers[uActiveCharacter]->SetDiseaseSevere(pParty->uTimePlayed); break; | |
808 case 40035: pPlayers[uActiveCharacter]->SetDiseaseMedium(pParty->uTimePlayed); break; | |
809 case 40036: pPlayers[uActiveCharacter]->SetDiseaseWeak(pParty->uTimePlayed); break; | |
2185 | 810 case 40037: pPlayers[uActiveCharacter]->SetCursed(pParty->uTimePlayed); break; |
811 case 40038: pPlayers[uActiveCharacter]->SetInsane(pParty->uTimePlayed); break; | |
812 case 40039: pPlayers[uActiveCharacter]->SetDrunk(pParty->uTimePlayed); break; | |
813 case 40040: pPlayers[uActiveCharacter]->SetUnconcious(pParty->uTimePlayed); break; | |
814 case 40041: pPlayers[uActiveCharacter]->SetDead(pParty->uTimePlayed); break; | |
815 case 40042: pPlayers[uActiveCharacter]->SetEradicated(pParty->uTimePlayed); break; | |
816 case 40043: pPlayers[uActiveCharacter]->SetAsleep(pParty->uTimePlayed); break; | |
817 case 40044: pPlayers[uActiveCharacter]->SetAfraid(pParty->uTimePlayed); break; | |
818 case 40045: pPlayers[uActiveCharacter]->SetParalyzed(pParty->uTimePlayed); break; | |
819 case 40073: pPlayers[uActiveCharacter]->SetZombie(pParty->uTimePlayed); break; | |
1804 | 820 |
821 case 40062: | |
822 pParty->alignment = PartyAlignment_Good; | |
823 SetUserInterface(pParty->alignment, true); | |
824 break; | |
825 case 40063: | |
826 pParty->alignment = PartyAlignment_Neutral; | |
827 SetUserInterface(pParty->alignment, true); | |
828 break; | |
829 case 40064: | |
830 pParty->alignment = PartyAlignment_Evil; | |
831 SetUserInterface(pParty->alignment, true); | |
832 break; | |
833 | |
834 | |
835 | |
836 //SubMenu "Time" | |
837 case 40009: pParty->uTimePlayed += Timer::Day; break; | |
838 case 40010: pParty->uTimePlayed += Timer::Week; break; | |
839 case 40011: pParty->uTimePlayed += Timer::Month; break; | |
840 case 40012: pParty->uTimePlayed += Timer::Year; break; | |
841 | |
842 //SubMenu "Items" | |
843 case 40015: // uItemID_Rep_St == 1 | |
844 case 40016: // uItemID_Rep_St == 2 | |
845 case 40017: // uItemID_Rep_St == 3 | |
846 case 40018: // uItemID_Rep_St == 4 | |
847 case 40019: // uItemID_Rep_St == 5 | |
848 case 40020: // uItemID_Rep_St == 6 | |
849 { | |
850 int pItemID = rand() % 500; | |
851 for (uint i = 0; i < 500; ++i) | |
852 { | |
853 if (pItemID + i > 499) | |
854 pItemID = 0; | |
855 if (pItemsTable->pItems[pItemID + i].uItemID_Rep_St == (item_id - 40015 + 1)) | |
856 { | |
857 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
858 break; | |
859 } | |
860 } | |
861 } | |
862 break; | |
863 | |
864 case 40061: | |
865 { | |
866 int pItemID = rand() % 500; | |
867 for (uint i = 0; i < 500; ++i) | |
868 { | |
869 if (pItemID + i > 499) | |
870 pItemID = 0; | |
871 if (pItemsTable->pItems[pItemID + i].uItemID_Rep_St > 6) | |
872 { | |
873 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
874 break; | |
875 } | |
876 } | |
877 } | |
878 break; | |
2277 | 879 //SubMenu "Other" |
880 case 40101: wizard_eye = true; break; //включить око чародея | |
881 case 40102: wizard_eye = false; break; //выключить око чародея | |
882 case 40103: pODMRenderParams->shading_dist_mist = 0x6000; break;//новая дальность отрисовки объектов | |
883 case 40104: pODMRenderParams->shading_dist_mist = 0x2000; break;////обычная дальность отрисовки объектов | |
884 case 40105: change_seasons = true; break; //включить смену времён года | |
885 case 40106: change_seasons = false; break; //выключить смену времён года | |
886 case 40107: all_magic = true; break; //включить все заклы(нажимать в окне создания группы) | |
887 case 40108: all_magic = false; break; //выключить все заклы | |
888 case 40109: debug_information = true; break; //включить информацию fps, положение группы, уровень пола и т.п. | |
889 case 40110: debug_information = false; break; //выключить информацию fps, положение группы, уровень пола и т.п. | |
890 case 40111: show_picked_face = true; break; //включить выделение активного фейса | |
891 case 40112: show_picked_face = false; break; //выключить выделение активного фейса | |
892 case 40113: draw_portals_loops = true; break; //включить отрисовку рамок порталов | |
893 case 40114: draw_portals_loops = false; break; //включить отрисовку рамок порталов | |
894 case 40115: new_speed = true; break; //включить двойную скорость | |
895 case 40116: new_speed = false; break; //включить двойную скорость | |
896 case 40117: bSnow = true; break; //включить снег | |
897 case 40118: bSnow = false; break; //включить снег | |
2320 | 898 case 40119: draw_terrain_dist_mist = true; break; //новая дальность отрисовки тайлов |
899 case 40120: draw_terrain_dist_mist = false; break; //обычная дальность отрисовки тайлов | |
2277 | 900 |
1804 | 901 } |
902 | |
903 return true; | |
1924
8cd321994943
MSVS 2012 project file & some compilation warning fixes
Nomad
parents:
1830
diff
changeset
|
904 } |
2277 | 905 |