Mercurial > mm7
annotate Game.cpp @ 2422:bb1273b1b9b6
//Uninitialized memory access
author | Ritor1 |
---|---|
date | Wed, 23 Jul 2014 01:18:24 +0600 |
parents | f4af3b203f65 |
children | 99e7bd7ec0a2 |
rev | line source |
---|---|
2415 | 1 #define _CRTDBG_MAP_ALLOC |
2 #include <stdlib.h> | |
3 #include <crtdbg.h> | |
4 | |
2253
aff7a7b072b7
adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents:
2242
diff
changeset
|
5 #define _CRT_SECURE_NO_WARNINGS |
2339 | 6 #include "Arcomage.h" |
2336 | 7 #include "mm7_unsorted_subs.h" |
1016 | 8 #include "Vis.h" |
2121 | 9 #include "Weather.h" |
1016 | 10 #include "LightmapBuilder.h" |
11 #include "DecalBuilder.h" | |
12 #include "ParticleEngine.h" | |
13 #include "Mouse.h" | |
14 #include "Keyboard.h" | |
15 #include "CShow.h" | |
16 #include "GammaControl.h" | |
17 #include "stru6.h" | |
18 #include "stru9.h" | |
19 #include "stru10.h" | |
20 | |
0 | 21 #include "Game.h" |
22 #include "Party.h" | |
23 #include "Viewport.h" | |
2044 | 24 #include "Timer.h" |
0 | 25 #include "Outdoor.h" |
1277 | 26 #include "Outdoor_stuff.h" |
0 | 27 #include "Overlays.h" |
28 #include "AudioPlayer.h" | |
29 #include "LOD.h" | |
30 #include "GUIWindow.h" | |
31 #include "TurnEngine.h" | |
32 #include "VideoPlayer.h" | |
33 #include "Bink_Smacker.h" | |
34 #include "Events.h" | |
35 #include "Arcomage.h" | |
189 | 36 #include "texts.h" |
791 | 37 #include "GUIFont.h" |
194 | 38 #include "Log.h" |
1262 | 39 #include "Lights.h" |
40 #include "mm7_data.h" | |
1915 | 41 #include "MapInfo.h" |
42 #include "CastSpellInfo.h" | |
43 #include "FrameTableInc.h" | |
44 #include "Actor.h" | |
45 #include "Events2D.h" | |
46 #include "GUIProgressBar.h" | |
47 #include "ObjectList.h" | |
48 #include "Level/Decoration.h" | |
49 #include "PaletteManager.h" | |
50 #include "UI\UIHouses.h" | |
2350
7c10dfb6d802
Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents:
2348
diff
changeset
|
51 #include "UI\UIShops.h" |
7c10dfb6d802
Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents:
2348
diff
changeset
|
52 #include "UI\UIPartyCreation.h" |
1915 | 53 #include "SaveLoad.h" |
54 #include "SpriteObject.h" | |
55 #include "mm7.h" | |
56 #include "Sprites.h" | |
2341 | 57 #include "Registry.h" |
2343 | 58 #include "Chest.h" |
0 | 59 |
2348 | 60 #include "UI\UIGame.h" |
0 | 61 |
62 | |
63 | |
64 | |
65 Game *pGame; | |
66 | |
67 | |
68 | |
69 | |
70 | |
71 //----- (00435694) -------------------------------------------------------- | |
72 void Game::ToggleFlags2(unsigned int uFlag) | |
73 { | |
74 unsigned int v2; // eax@1 | |
75 | |
76 v2 = this->uFlags2; | |
77 if ( v2 & uFlag ) | |
78 this->uFlags2 = v2 & ~uFlag; | |
79 else | |
80 this->uFlags2 = uFlag | v2; | |
81 } | |
82 | |
83 //----- (0044103C) -------------------------------------------------------- | |
84 void Game::Draw() | |
85 { | |
86 int v4; // edi@26 | |
87 | |
1556 | 88 uFlags2 &= ~0x02; |
0 | 89 if ( pParty->_497FC5_check_party_perception_against_level() ) |
2268 | 90 uFlags2 |= 2; |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1556
diff
changeset
|
91 |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
92 pGame->pIndoorCameraD3D->sRotationX = pParty->sRotationX; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
93 pGame->pIndoorCameraD3D->sRotationY = pParty->sRotationY; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
94 pGame->pIndoorCameraD3D->vPartyPos.x = pParty->vPosition.x - pParty->y_rotation_granularity * cosf(2 * 3.141592653589 * pParty->sRotationY / 2048.0); |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
95 pGame->pIndoorCameraD3D->vPartyPos.y = pParty->vPosition.y - pParty->y_rotation_granularity * sinf(2 * 3.141592653589 * pParty->sRotationY / 2048.0); |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
96 pGame->pIndoorCameraD3D->vPartyPos.z = pParty->vPosition.z + pParty->sEyelevel;//193, but real 353 |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1556
diff
changeset
|
97 |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1556
diff
changeset
|
98 //pIndoorCamera->Initialize2(); |
1642 | 99 pIndoorCameraD3D->CalculateRotations(pParty->sRotationX, pParty->sRotationY); |
0 | 100 pIndoorCameraD3D->CreateWorldMatrixAndSomeStuff(); |
101 pIndoorCameraD3D->_4374E8_ProllyBuildFrustrum(); | |
102 | |
2394 | 103 if ( pMovie_Track ) |
0 | 104 { |
2154 | 105 /*if ( !pRenderer->pRenderD3D ) |
1421 | 106 { |
107 pRenderer->BeginSceneD3D(); | |
108 pMouse->DrawCursorToTarget(); | |
109 pRenderer->DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); | |
2154 | 110 }*/ |
0 | 111 } |
112 else | |
113 { | |
1110 | 114 if ( pParty->vPosition.x != pParty->vPrevPosition.x || pParty->sRotationY != pParty->sPrevRotationY || pParty->vPosition.y != pParty->vPrevPosition.y |
115 || pParty->sRotationX != pParty->sPrevRotationX || pParty->vPosition.z != pParty->vPrevPosition.z || pParty->sEyelevel != pParty->sPrevEyelevel ) | |
0 | 116 pParty->uFlags |= 2u; |
847 | 117 pParty->vPrevPosition.x = pParty->vPosition.x; |
78 | 118 pParty->vPrevPosition.y = pParty->vPosition.y; |
847 | 119 pParty->vPrevPosition.z = pParty->vPosition.z; |
0 | 120 //v0 = &pRenderer; |
121 pParty->sPrevRotationY = pParty->sRotationY; | |
122 pParty->sPrevRotationX = pParty->sRotationX; | |
847 | 123 |
0 | 124 pParty->sPrevEyelevel = pParty->sEyelevel; |
125 pRenderer->BeginSceneD3D(); | |
126 | |
2154 | 127 //if ( !pRenderer->pRenderD3D ) |
128 //pMouse->DrawCursorToTarget(); | |
265 | 129 if ( !PauseGameDrawing() || viewparams->field_48 == 1 ) |
0 | 130 { |
2154 | 131 //if ( pRenderer->pRenderD3D ) |
0 | 132 { |
142 | 133 float v2 = (double)(((signed int)pMiscTimer->uTotalGameTimeElapsed >> 2) & 0x1F) * 0.032258064 * 6.0; |
0 | 134 //v3 = v2 + 6.7553994e15; |
135 //pRenderer->field_1036A8_bitmapid = LODWORD(v3); | |
265 | 136 pRenderer->hd_water_current_frame = floorf(v2 + 0.5f); |
0 | 137 } |
138 | |
139 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
140 pIndoor->Draw(); | |
141 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
142 pOutdoor->Draw(); | |
1545 | 143 else Error("Invalid level type: %u", uCurrentlyLoadedLevelType); |
0 | 144 |
2154 | 145 //if (pRenderer->pRenderD3D) |
0 | 146 { |
147 pDecalBuilder->DrawBloodsplats(); | |
1394 | 148 pGame->pLightmapBuilder->DrawLightmapsType(2); |
0 | 149 } |
150 } | |
1421 | 151 pRenderer->DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); |
0 | 152 } |
791 | 153 |
154 //DEBUG: force redraw gui | |
155 viewparams->bRedrawGameUI = true; | |
156 | |
157 | |
0 | 158 pRenderer->BeginScene(); |
2154 | 159 //if (pRenderer->pRenderD3D) |
0 | 160 pMouse->DrawCursorToTarget(); |
142 | 161 if (pOtherOverlayList->bRedraw) |
162 viewparams->bRedrawGameUI = true; | |
0 | 163 v4 = viewparams->bRedrawGameUI; |
783 | 164 GameUI_Footer(); |
0 | 165 if (!viewparams->bRedrawGameUI) |
166 GameUI_DrawRightPanelItems(); | |
167 else | |
168 { | |
169 GameUI_DrawRightPanelFrames(); | |
783 | 170 GameUI_Footer_2(); |
0 | 171 viewparams->bRedrawGameUI = false; |
172 } | |
2394 | 173 if (!pMovie_Track)//!pVideoPlayer->pSmackerMovie) |
0 | 174 { |
2070 | 175 GameUI_DrawMinimap(488, 16, 625, 133, viewparams->uMinimapZoom, true);//redraw = pParty->uFlags & 2); |
0 | 176 if (v4) |
177 { | |
2154 | 178 if ( !PauseGameDrawing() /*&& pRenderer->pRenderD3D*/) // clear game viewport with transparent color |
693 | 179 pRenderer->FillRectFast(pViewport->uViewportTL_X, pViewport->uViewportTL_Y, pViewport->uViewportBR_X - pViewport->uViewportTL_X, |
180 pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1, | |
2155 | 181 0x7FF); |
0 | 182 viewparams->field_48 = 0; |
183 } | |
184 } | |
142 | 185 |
186 viewparams->bRedrawGameUI = pOtherOverlayList->bRedraw; | |
187 pOtherOverlayList->bRedraw = 0; | |
188 | |
0 | 189 GameUI_DrawPartySpells(); |
291 | 190 if (v4 || pParty->pHirelings[0].evt_C || pParty->pHirelings[1].evt_C ) |
994 | 191 GameUI_DrawHiredNPCs(); |
0 | 192 GameUI_DrawPortraits(v4); |
193 GameUI_DrawLifeManaBars(); | |
194 GameUI_DrawCharacterSelectionFrame(); | |
2205 | 195 if ( _44100D_should_alter_right_panel() ) |
994 | 196 GameUI_DrawRightPanel(); |
2394 | 197 if ( !pMovie_Track ) |
0 | 198 { |
199 pStru6Instance->DrawPlayerBuffAnims(); | |
569 | 200 pOtherOverlayList->DrawTurnBasedIcon(v4); |
0 | 201 GameUI_DrawTorchlightAndWizardEye(); |
202 } | |
791 | 203 |
794 | 204 |
205 static bool render_framerate = false; | |
206 static float framerate = 0.0f; | |
207 static uint frames_this_second = 0; | |
208 static uint last_frame_time = GetTickCount(); | |
209 static uint framerate_time_elapsed = 0; | |
2123 | 210 if ( pCurrentScreen == SCREEN_GAME && uCurrentlyLoadedLevelType == LEVEL_Outdoor) |
2122 | 211 pWeather->Draw();//Ritor1: my include |
794 | 212 |
1980 | 213 uint frame_dt = GetTickCount() - last_frame_time; |
794 | 214 last_frame_time = GetTickCount(); |
215 | |
216 framerate_time_elapsed += frame_dt; | |
217 if (framerate_time_elapsed >= 1000) | |
218 { | |
219 framerate = frames_this_second * (1000.0f / framerate_time_elapsed); | |
220 | |
221 framerate_time_elapsed = 0; | |
222 frames_this_second = 0; | |
223 render_framerate = true; | |
224 } | |
225 | |
226 ++frames_this_second; | |
227 | |
1507 | 228 if ( debug_information ) |
794 | 229 { |
1507 | 230 if (render_framerate) |
231 { | |
232 sprintf(pTmpBuf.data(), "FPS: % .4f", framerate); | |
2069 | 233 pPrimaryWindow->DrawText(pFontArrus, 494, 0, Color16(0, 0, 0), pTmpBuf.data(), 0, 0, 0); |
1507 | 234 } |
794 | 235 |
1507 | 236 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) |
237 { | |
1980 | 238 int sector_id = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); |
1507 | 239 sprintf(pTmpBuf.data(), "Party Sector ID: %u/%u\n", sector_id, pIndoor->uNumSectors); |
2069 | 240 pPrimaryWindow->DrawText(pFontArrus, 16, 16, Color16(255, 255, 255), pTmpBuf.data(), 0, 0, -1); |
1507 | 241 } |
242 sprintf(pTmpBuf.data(), "Party Position: % d % d % d", pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
2069 | 243 pPrimaryWindow->DrawText(pFontArrus, 16, 16 + 16, Color16(255, 255, 255), pTmpBuf.data(), 0, 0, -1); |
1507 | 244 |
245 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
246 { | |
247 uint uFaceID; | |
1980 | 248 int sector_id = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); |
249 int floor_level = BLV_GetFloorLevel(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z + 40, sector_id, &uFaceID); | |
1507 | 250 sprintf(pTmpBuf.data(), "BLV_GetFloorLevel: %d face_id %d\n", floor_level, uFaceID); |
251 } | |
252 else | |
253 { | |
254 int on_water, _a6; | |
1980 | 255 int floor_level = ODM_GetFloorLevel(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z, 0, &on_water, &_a6, false); |
1507 | 256 sprintf(pTmpBuf.data(), "ODM_GetFloorLevel: %d on_water: %s a6 = %d\n", floor_level, on_water ? "true" : "false", _a6); |
257 } | |
2069 | 258 pPrimaryWindow->DrawText(pFontArrus, 16, 16 + 16 + 16, Color16(255, 255, 255), pTmpBuf.data(), 0, 0, -1); |
791 | 259 } |
260 | |
0 | 261 GUI_UpdateWindows(); |
130 | 262 pParty->UpdatePlayersAndHirelingsEmotions(); |
937 | 263 |
434 | 264 _unused_5B5924_is_travel_ui_drawn = false; |
0 | 265 if (v4) |
791 | 266 pMouse->bRedraw = true; |
2216 | 267 pMouse->ReadCursorWithItem(); |
0 | 268 pMouse->DrawCursor(); |
2216 | 269 pMouse->Activate(); |
0 | 270 pRenderer->EndScene(); |
271 pRenderer->Present(); | |
569 | 272 pParty->uFlags &= ~2; |
0 | 273 } |
274 | |
275 //----- (0047A815) -------------------------------------------------------- | |
276 void Game::DrawParticles() | |
277 { | |
278 pParticleEngine->Draw(); | |
279 } | |
280 | |
281 //----- (00463149) -------------------------------------------------------- | |
282 void Game::Loop() | |
283 { | |
284 const char *pLocationName; // [sp-4h] [bp-68h]@74 | |
285 bool bLoading; // [sp+10h] [bp-54h]@1 | |
286 signed int v16; // [sp+14h] [bp-50h]@8 | |
287 MSG Msg; // [sp+28h] [bp-3Ch]@20 | |
288 char Source[64]; // [sp+44h] [bp-20h]@76 | |
289 | |
2006 | 290 bLoading = sCurrentMenuID == MENU_LoadingProcInMainMenu; |
0 | 291 SetCurrentMenuID((MENU_STATE)-1); |
2126 | 292 if (bLoading) |
0 | 293 { |
294 pParty->Reset(); | |
982 | 295 uGameState = GAME_STATE_PLAYING; |
0 | 296 LoadGame(uLoadGameUI_SelectedSlot); |
297 } | |
298 | |
299 for (uint i = 1; i < 5; ++i) | |
300 for (uint j = 1; j < 6; ++j) | |
301 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1165
diff
changeset
|
302 sprintf(pTmpBuf.data(), "data\\lloyd%d%d.pcx", i, j); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1165
diff
changeset
|
303 remove(pTmpBuf.data()); |
0 | 304 } |
305 | |
306 LoadPlayerPortraintsAndVoices(); | |
783 | 307 pIcons_LOD->_inlined_sub1(); |
328 | 308 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); |
0 | 309 |
310 while ( 2 ) | |
311 { | |
312 v16 = 1; | |
783 | 313 pMessageQueue_50CBD0->Flush(); |
0 | 314 |
315 pPartyActionQueue->uNumActions = 0; | |
316 if (pParty->bTurnBasedModeOn) | |
317 { | |
318 pTurnEngine->End(false); | |
319 pParty->bTurnBasedModeOn = false; | |
320 } | |
321 DoPrepareWorld(bLoading, 1); | |
322 pEventTimer->Resume(); | |
2061 | 323 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0080_SKIP_USER_INPUT_THIS_FRAME; |
0 | 324 // uGame_if_0_else_ui_id__11_save__else_load__8_drawSpellInfoPopup__22_final_window__26_keymapOptions__2_options__28_videoOptions = 0; |
151 | 325 pCurrentScreen = SCREEN_GAME; |
1038 | 326 |
2154 | 327 //if ( pRenderer->pRenderD3D ) |
0 | 328 pGame->pVisInstance->_4C1A02(); |
982 | 329 |
330 bool game_finished = false; | |
0 | 331 do |
332 { | |
333 while ( PeekMessageA(&Msg, 0, 0, 0, PM_REMOVE) ) | |
334 { | |
335 if ( Msg.message == WM_QUIT ) | |
336 Game_DeinitializeAndTerminate(0); | |
337 TranslateMessage(&Msg); | |
338 DispatchMessageA(&Msg); | |
339 } | |
2061 | 340 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_APP_INACTIVE) |
0 | 341 { |
342 WaitMessage(); | |
343 continue; | |
344 } | |
345 pGame->_44EEA7(); | |
346 GameUI_WritePointedObjectStatusString(); | |
2331
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
347 Keyboard::ProcessInputActions(); |
0 | 348 GameUI_MsgProc(); |
349 if ( pArcomageGame->bGameInProgress ) | |
350 { | |
351 ArcomageGame::Loop(); | |
352 pRenderer->Present(); | |
353 continue; | |
354 } | |
1802 | 355 |
356 pVideoPlayer->_inlined_in_463149(); | |
983 | 357 |
358 pEventTimer->Update(); | |
359 pMiscTimer->Update(); | |
360 | |
0 | 361 OnTimer(0); |
362 GameUI_StatusBar_UpdateTimedString(0); | |
363 if ( pMiscTimer->bPaused && !pEventTimer->bPaused ) | |
364 pMiscTimer->Resume(); | |
365 if ( pEventTimer->bTackGameTime && !pParty->bTurnBasedModeOn ) | |
366 pEventTimer->bTackGameTime = 0; | |
982 | 367 if ( !pEventTimer->bPaused && uGameState == GAME_STATE_PLAYING) |
0 | 368 { |
369 if ( !pEventTimer->bTackGameTime ) | |
370 _494035_timed_effects__water_walking_damage__etc(); | |
2061 | 371 |
372 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_0001) | |
373 dword_6BE364_game_settings_1 &= ~GAME_SETTINGS_0001; | |
0 | 374 else |
375 { | |
2338
1e865e8690ba
Moving some function declarations from unsorted subs to Actor.h and SpriteObject.h
Grumpy7
parents:
2336
diff
changeset
|
376 Actor::UpdateActorAI(); |
783 | 377 UpdateUserInput_and_MapSpecificStuff(); |
0 | 378 } |
379 } | |
380 if ( v16 ) | |
381 { | |
382 v16 = 0; | |
383 viewparams->bRedrawGameUI = true; | |
384 } | |
378 | 385 pAudioPlayer->UpdateSounds(); |
2124 | 386 if ( (signed int)uGameState == GAME_STATE_PLAYING ) |
387 { | |
388 pGame->Draw(); | |
389 continue; | |
390 } | |
978 | 391 if (uGameState == GAME_FINISHED) |
4 | 392 { |
982 | 393 game_finished = true; |
0 | 394 continue; |
4 | 395 } |
2124 | 396 if (uGameState == GAME_STATE_CHANGE_LOCATION)// смена локации |
0 | 397 { |
398 pAudioPlayer->StopChannels(-1, -1); | |
399 PrepareWorld(0); | |
982 | 400 uGameState = GAME_STATE_PLAYING; |
0 | 401 continue; |
402 } | |
2132 | 403 if ( (signed int)uGameState <= GAME_STATE_5 || uGameState == GAME_STATE_GAME_QUITTING_TO_MAIN_MENU )//GAME_STATE_NEWGAME_OUT_GAMEMENU, GAME_STATE_LOADING_GAME |
4 | 404 { |
2124 | 405 game_finished = true; |
0 | 406 continue; |
4 | 407 } |
2124 | 408 if ( uGameState == GAME_STATE_FINAL_WINDOW ) |
0 | 409 { |
2124 | 410 pRenderer->BeginScene(); |
411 GUI_UpdateWindows(); | |
412 pRenderer->EndScene(); | |
413 pRenderer->Present(); | |
0 | 414 continue; |
415 } | |
981 | 416 if ( uGameState != GAME_STATE_PARTY_DIED ) |
0 | 417 { |
2124 | 418 pGame->Draw(); |
419 continue; | |
420 } | |
421 if ( uGameState == GAME_STATE_PARTY_DIED ) | |
422 { | |
423 pAudioPlayer->StopChannels(-1, -1); | |
424 memset(&pParty->pHirelings[0], 0, 0x4Cu); | |
425 memset(&pParty->pHirelings[1], 0, 0x4Cu); | |
426 for ( int i = 0; i < (signed int)pNPCStats->uNumNewNPCs; ++i ) | |
0 | 427 { |
2124 | 428 if ( pNPCStats->pNewNPCData[i].field_24 ) |
429 pNPCStats->pNewNPCData[i].uFlags &= 0xFFFFFF7Fu; | |
430 } | |
431 pVideoPlayer->PlayDeathMovie(); | |
2394 | 432 if ( pMovie_Track ) |
2124 | 433 pVideoPlayer->Unload(); |
434 SaveGame(0, 0); | |
435 ++pParty->uNumDeaths; | |
436 for ( uint i = 0; i < 4; ++i ) | |
437 pParty->pPlayers[i].SetVariable(VAR_Award, 85); | |
438 pParty->days_played_without_rest = 0; | |
439 pParty->uTimePlayed += 0x276000ui64; | |
440 LOWORD(pParty->uFlags) &= ~0x204; | |
441 pParty->SetGold(0); | |
442 pOtherOverlayList->Reset(); | |
443 memset(pParty->pPartyBuffs.data(), 0, 0x140u); | |
444 | |
445 if ( pParty->bTurnBasedModeOn == 1 ) | |
446 { | |
447 pTurnEngine->End(true); | |
448 pParty->bTurnBasedModeOn = 0; | |
449 } | |
450 for( int i = 0; i < 4; ++i) | |
451 { | |
452 memset(pParty->pPlayers[i].pConditions.data(), 0, 0xA0u);//(pConditions, 0, 160) | |
453 memset(pParty->pPlayers[i].pPlayerBuffs.data(), 0, 0x180u);//(pPlayerBuffs[0], 0, 384) | |
454 pParty->pPlayers[i].sHealth = 1; | |
455 uActiveCharacter = 1; | |
456 } | |
457 if (_449B57_test_bit(pParty->_quest_bits, PARTY_QUEST_FINISHED_EMERALD_ISLE)) | |
458 { | |
459 pParty->vPosition.x = -17331; // respawn in harmondale | |
460 pParty->vPosition.y = 12547; | |
461 pParty->vPosition.z = 465; | |
462 pParty->sRotationY = 0; | |
463 pLocationName = "out02.odm"; | |
0 | 464 } |
981 | 465 else |
466 { | |
2124 | 467 pParty->vPosition.x = 12552; // respawn on emerald isle |
468 pParty->vPosition.y = 1816; | |
469 pParty->vPosition.z = 0; | |
470 pParty->sRotationY = 512; | |
471 pLocationName = "out01.odm"; | |
0 | 472 } |
2124 | 473 strcpy(Source, pLocationName); |
474 pParty->uFallStartY = pParty->vPosition.z; | |
475 pParty->sRotationX = 0; | |
476 pParty->uFallSpeed = 0; | |
477 pParty->field_6E4 = 0; | |
478 pParty->field_6E0 = 0; | |
479 if ( _stricmp(Source, pCurrentMapName) ) | |
480 { | |
481 strcpy(pCurrentMapName, Source); | |
482 _5B65A8_npcdata_uflags_or_other = pParty->vPosition.x; | |
483 _5B65AC_npcdata_fame_or_other = pParty->vPosition.y; | |
484 _5B65B0_npcdata_rep_or_other = pParty->vPosition.z; | |
485 _5B65B4_npcdata_loword_house_or_other = pParty->sRotationY; | |
486 _5B65B8_npcdata_hiword_house_or_other = pParty->sRotationX; | |
487 dword_5B65C0 = 1; | |
488 PrepareWorld(1); | |
489 } | |
2338
1e865e8690ba
Moving some function declarations from unsorted subs to Actor.h and SpriteObject.h
Grumpy7
parents:
2336
diff
changeset
|
490 Actor::InitializeActors(); |
981 | 491 |
2124 | 492 int num_conscious_players = 0; |
493 int conscious_players_ids[4] = {-1, -1, -1, -1}; | |
494 for (int i = 0; i < 4; ++i) | |
495 { | |
496 if (pParty->pPlayers[i].CanAct()) | |
497 conscious_players_ids[num_conscious_players++] = i; | |
498 } | |
499 if (num_conscious_players) | |
500 { | |
501 int idx = conscious_players_ids[rand() % num_conscious_players]; | |
502 Assert(idx >= 0); | |
503 pParty->pPlayers[idx].PlaySound(SPEECH_99, 0); | |
504 } | |
505 | |
506 ShowStatusBarString(pGlobalTXT_LocalizationStrings[524], 2);// "Once again you've cheated death!.." "Вы снова обхитрили смерть! …" | |
507 uGameState = GAME_STATE_PLAYING; | |
0 | 508 } |
509 } | |
982 | 510 while (!game_finished); |
511 | |
0 | 512 pEventTimer->Pause(); |
513 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); | |
1214
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
514 if ( uGameState == GAME_STATE_LOADING_GAME ) |
0 | 515 { |
516 sub_491E3A(); | |
517 LoadPlayerPortraintsAndVoices(); | |
982 | 518 uGameState = GAME_STATE_PLAYING; |
0 | 519 pIcons_LOD->dword_11B84 = pIcons_LOD->uNumLoadedFiles; |
520 bLoading = true; | |
521 continue; | |
522 } | |
523 break; | |
524 } | |
151 | 525 pCurrentScreen = SCREEN_VIDEO; |
0 | 526 sub_491E3A(); |
527 } | |
528 | |
529 | |
530 //----- (0044F192) -------------------------------------------------------- | |
531 void Game::PrepareBloodsplats() | |
532 { | |
533 for (uint i = 0; i < uNumBloodsplats; ++i) | |
534 { | |
2210 | 535 pBloodsplatContainer->AddBloodsplat(pBloodsplats[i].x, pBloodsplats[i].y, pBloodsplats[i].z, |
536 pBloodsplats[i].radius, pBloodsplats[i].r, pBloodsplats[i].g, pBloodsplats[i].b); | |
0 | 537 } |
538 } | |
539 | |
540 | |
541 //----- (0044F120) -------------------------------------------------------- | |
542 void Game::PushStationaryLights(int a2) | |
543 { | |
1094 | 544 Game__StationaryLight* pLight; |
545 | |
546 for( int i=0; i<uNumStationaryLights; ++i ) | |
547 { | |
548 pLight=&pStationaryLights[i]; | |
2210 | 549 pStationaryLightsStack->AddLight(pLight->vPosition.x, pLight->vPosition.y, pLight->vPosition.z, |
550 pLight->flt_18, pLight->vRGBColor.x, pLight->vRGBColor.y, pLight->vRGBColor.z, _4E94D0_light_type); | |
1094 | 551 } |
0 | 552 } |
2154 | 553 // 4E94D0: using guessed type char _4E94D0_light_type; |
0 | 554 |
555 //----- (0044F0FD) -------------------------------------------------------- | |
556 void Game::_44F0FD() | |
557 { | |
558 ToggleFlags(0x40u); | |
559 | |
560 if ( !(uFlags & 0x40) ) | |
561 { | |
562 uNumBloodsplats = 0; | |
563 field_E0C = 0; | |
564 } | |
565 } | |
566 | |
567 //----- (0044F0D8) -------------------------------------------------------- | |
568 void Game::ToggleFlags(uint uMask) | |
569 { | |
570 if (uFlags & uMask) | |
571 uFlags &= ~uMask; | |
572 else | |
573 uFlags |= uMask; | |
574 } | |
575 | |
576 | |
577 //----- (0044F07B) -------------------------------------------------------- | |
578 bool Game::_44F07B() | |
579 { | |
2210 | 580 if (!pKeyboardInstance->IsKeyBeingHeld(VK_SHIFT) && !pKeyboardInstance->IsKeyBeingHeld(VK_LSHIFT) && |
581 !pKeyboardInstance->IsKeyBeingHeld(VK_LSHIFT) || (pKeyboardInstance->WasKeyPressed(VK_F11) == 0 && | |
0 | 582 pKeyboardInstance->WasKeyPressed(VK_F11))) |
583 return true; | |
584 return false; | |
585 } | |
586 | |
587 //----- (0044EEA7) -------------------------------------------------------- | |
588 bool Game::_44EEA7() | |
589 { | |
590 //Game *v1; // esi@1 | |
194 | 591 //double v2; // st7@2 |
0 | 592 float depth; // ST00_4@9 |
194 | 593 //bool result; // eax@9 |
2212 | 594 //unsigned int v5; // eax@14 |
0 | 595 __int64 v6; // kr00_8@21 |
2212 | 596 //unsigned int y; // [sp+4h] [bp-24h]@2 |
597 //unsigned int x; // [sp+8h] [bp-20h]@2 | |
194 | 598 Vis_SelectionFilter *v10; // [sp+10h] [bp-18h]@2 |
599 Vis_SelectionFilter *v11; // [sp+14h] [bp-14h]@2 | |
2212 | 600 POINT cursor; // [sp+20h] [bp-8h]@1 |
0 | 601 |
602 //v1 = this; | |
603 ++qword_5C6DF0; | |
604 pParticleEngine->UpdateParticles(); | |
2212 | 605 pMouseInstance->GetCursorPos(&cursor); |
194 | 606 |
2212 | 607 //x = cursor.y; |
608 //y = cursor.x; | |
0 | 609 if ( sub_4637E0_is_there_popup_onscreen() ) |
610 { | |
194 | 611 v11 = &vis_face_filter; |
612 v10 = &vis_sprite_filter_2; | |
871 | 613 depth = pGame->pIndoorCameraD3D->GetPickDepth(); |
0 | 614 } |
615 else | |
616 { | |
592 | 617 if ( uFlags2 & GAME_FLAGS_2_TARGETING_MODE ) |
0 | 618 { |
194 | 619 v11 = &vis_face_filter; |
620 v10 = &vis_sprite_filter_1; | |
0 | 621 } |
622 else | |
623 { | |
194 | 624 v11 = &vis_face_filter; |
625 v10 = &vis_sprite_filter_4; | |
0 | 626 } |
194 | 627 depth = 5120.0; |
0 | 628 } |
194 | 629 //depth = v2; |
0 | 630 |
2212 | 631 PickMouse(depth, cursor.x, cursor.y, false, v10, v11); |
0 | 632 pLightmapBuilder->std__vector_000004_size = 0; |
633 pLightmapBuilder->std__vector_183808_size = 0; | |
634 pDecalBuilder->std__vector_pDecals_size = 0; | |
635 pDecalBuilder->field_308008 = 0; | |
194 | 636 if (!_44F07B()) |
637 return false; | |
638 | |
676
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
638
diff
changeset
|
639 if ( uFlags & GAME_FLAGS_1_DRAW_BLV_DEBUGS) |
794 | 640 pStru10Instance->bDoNotDrawPortalFrustum = false; |
2154 | 641 if ( /*pRenderer->pRenderD3D &&*/ uCurrentlyLoadedLevelType == LEVEL_Outdoor) |
2212 | 642 pRenderer->uFogColor = GetLevelFogColor() & 0xFFFFFF; |
0 | 643 if (uFlags & 0x0400) |
644 uFlags2 |= 0x01; | |
2154 | 645 /*if ( !pRenderer->pRenderD3D && uCurrentlyLoadedLevelType == LEVEL_Outdoor && pMobileLightsStack->uNumLightsActive ) |
0 | 646 { |
647 uFlags2 |= 0x01; | |
648 field_E10 = qword_5C6DF0; | |
2154 | 649 }*/ |
0 | 650 v6 = qword_5C6DF0 - field_E10; |
651 if ( qword_5C6DF0 - field_E10 == 1 ) | |
652 uFlags2 |= v6; | |
653 if (uNumStationaryLights_in_pStationaryLightsStack != pStationaryLightsStack->uNumLightsActive ) | |
654 { | |
2210 | 655 uFlags2 |= 1; |
0 | 656 uNumStationaryLights_in_pStationaryLightsStack = pStationaryLightsStack->uNumLightsActive; |
657 } | |
658 _44E904(); | |
194 | 659 return true; |
0 | 660 } |
661 | |
662 | |
663 //----- (0044EDE4) -------------------------------------------------------- | |
2006 | 664 bool Game::AlterGamma_BLV(BLVFace *pFace, signed int *pColor) |
0 | 665 { |
638 | 666 if (uFlags2 & GAME_FLAGS_2_SATURATE_LIGHTMAPS && |
667 pFace->uAttributes & FACE_CAN_SATURATE_COLOR) | |
0 | 668 { |
669 *pColor = ReplaceHSV(*pColor, 1.0, fSaturation, -1.0); | |
670 return true; | |
671 } | |
672 else | |
673 return false; | |
674 } | |
675 | |
676 //----- (0044EE30) -------------------------------------------------------- | |
2006 | 677 bool Game::AlterGamma_ODM(ODMFace *pFace, signed int *pColor) |
0 | 678 { |
638 | 679 if (uFlags2 & GAME_FLAGS_2_SATURATE_LIGHTMAPS && |
680 pFace->uAttributes & FACE_CAN_SATURATE_COLOR) | |
0 | 681 { |
638 | 682 *pColor = ReplaceHSV(*pColor, 1.0, fSaturation, -1.0); |
0 | 683 return true; |
684 } | |
685 else | |
686 return false; | |
687 } | |
688 | |
689 | |
690 //----- (004645FA) -------------------------------------------------------- | |
691 void Game::Deinitialize() | |
692 { | |
2155 | 693 WriteWindowsRegistryInt("startinwindow", 1);//pRenderer->bWindowMode); |
694 //if (pRenderer->bWindowMode) | |
0 | 695 { |
2052 | 696 WriteWindowsRegistryInt("window X", window->GetX()); |
697 WriteWindowsRegistryInt("window Y", window->GetY()); | |
1984 | 698 } |
0 | 699 WriteWindowsRegistryInt("valAlwaysRun", bAlwaysRun); |
700 pItemsTable->Release(); | |
701 pNPCStats->Release(); | |
1038 | 702 |
0 | 703 if (pMouse) |
704 pMouse->Deactivate(); | |
705 | |
1093 | 706 delete pRenderer; |
0 | 707 pAudioPlayer->Release();//error |
708 pNew_LOD->FreeSubIndexAndIO(); | |
709 pGames_LOD->FreeSubIndexAndIO(); | |
710 ClipCursor(0); | |
711 Game::Destroy(); | |
712 } | |
713 | |
714 //----- (0044EE7C) -------------------------------------------------------- | |
715 bool Game::draw_debug_outlines() | |
716 { | |
717 if (uFlags & 0x04) | |
718 { | |
719 pLightmapBuilder->DrawDebugOutlines(-1); | |
720 pDecalBuilder->DrawDecalDebugOutlines(); | |
721 } | |
722 return true; | |
723 } | |
724 | |
725 //----- (0044EC23) -------------------------------------------------------- | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1277
diff
changeset
|
726 int Game::_44EC23(struct Polygon *a2, int *a3, signed int a4) |
0 | 727 { |
728 double v4; // st7@4 | |
729 //double v5; // ST00_8@4 | |
730 signed int v6; // eax@5 | |
731 //double v7; // ST00_8@6 | |
732 signed int result; // eax@8 | |
733 //double v9; // ST00_8@9 | |
734 //double v10; // ST00_8@11 | |
735 float a2a; // [sp+14h] [bp+8h]@4 | |
736 float a3a; // [sp+18h] [bp+Ch]@4 | |
737 float a3b; // [sp+18h] [bp+Ch]@6 | |
738 float a4a; // [sp+1Ch] [bp+10h]@9 | |
739 float a4b; // [sp+1Ch] [bp+10h]@11 | |
740 | |
741 if ( this->uFlags2 & 2 && a2->field_59 == 5 && a2->pODMFace->uAttributes & 2 ) | |
742 { | |
743 v4 = (double)a4; | |
744 a2a = v4; | |
745 *a3 |= 2u; | |
746 a3a = (1.0 - this->fSaturation) * v4; | |
747 //v5 = a3a + 6.7553994e15; | |
748 //if ( SLODWORD(v5) >= 0 ) | |
749 if (floorf(a3a + 0.5f) >= 0 ) | |
750 { | |
751 a3b = (1.0 - this->fSaturation) * a2a; | |
752 //v7 = a3b + 6.7553994e15; | |
753 //v6 = LODWORD(v7); | |
754 v6 = floorf(a3b + 0.5f); | |
755 } | |
756 else | |
757 v6 = 0; | |
758 if ( a4 >= v6 ) | |
759 { | |
760 a4a = (1.0 - fSaturation) * a2a; | |
761 //v9 = a4a + 6.7553994e15; | |
762 //if ( SLODWORD(v9) >= 0 ) | |
763 if (floorf(a4a + 0.5f) >= 0) | |
764 { | |
765 a4b = (1.0 - fSaturation) * a2a; | |
766 //v10 = a4b + 6.7553994e15; | |
767 //result = LODWORD(v10); | |
768 result = floorf(a4b + 0.5f); | |
769 } | |
770 else | |
771 result = 0; | |
772 } | |
773 else | |
774 result = a4; | |
775 } | |
776 else | |
777 result = -1; | |
778 return result; | |
779 } | |
780 | |
781 | |
782 | |
783 //----- (00465C8B) -------------------------------------------------------- | |
784 Game *Game::Create() | |
785 { | |
786 return new Game; | |
787 } | |
788 | |
789 //----- (00465CF3) -------------------------------------------------------- | |
790 void Game::Destroy() | |
791 { | |
2370 | 792 delete pGame; |
0 | 793 pGame = nullptr; |
794 } | |
795 | |
796 //----- (0044ED0A) -------------------------------------------------------- | |
797 signed int Game::_44ED0A(BLVFace *a2, int *a3, signed int a4) | |
798 { | |
799 double v4; // st7@3 | |
800 //double v5; // ST00_8@3 | |
801 signed int v6; // eax@4 | |
802 //double v7; // ST00_8@5 | |
803 signed int result; // eax@7 | |
804 //double v9; // ST00_8@8 | |
805 //double v10; // ST00_8@10 | |
806 float v11; // [sp+14h] [bp+8h]@3 | |
807 float v12; // [sp+18h] [bp+Ch]@3 | |
808 float v13; // [sp+18h] [bp+Ch]@5 | |
809 float v14; // [sp+1Ch] [bp+10h]@8 | |
810 float v15; // [sp+1Ch] [bp+10h]@10 | |
811 | |
812 if ( this->uFlags2 & 2 && a2->uAttributes & 2 ) | |
813 { | |
814 v4 = (double)a4; | |
815 v11 = v4; | |
816 *a3 |= 2u; | |
817 v12 = (1.0 - this->fSaturation) * v4; | |
818 //v5 = v12 + 6.7553994e15; | |
819 if (floorf(v12 + 0.5f)/* SLODWORD(v5)*/ >= 0 ) | |
820 { | |
821 v13 = (1.0 - this->fSaturation) * v11; | |
822 //v7 = v13 + 6.7553994e15; | |
823 //v6 = LODWORD(v7); | |
824 v6 = floorf(v13 + 0.5f); | |
825 } | |
826 else | |
827 v6 = 0; | |
828 if ( a4 >= v6 ) | |
829 { | |
830 v14 = (1.0 - fSaturation) * v11; | |
831 //v9 = v14 + 6.7553994e15; | |
832 if (floorf(v14 + 0.5f)/* SLODWORD(v9)*/ >= 0 ) | |
833 { | |
834 v15 = (1.0 - fSaturation) * v11; | |
835 //v10 = v15 + 6.7553994e15; | |
836 //result = LODWORD(v10); | |
837 result = floorf(v15 + 0.5f); | |
838 } | |
839 else | |
840 result = 0; | |
841 } | |
842 else | |
843 result = a4; | |
844 } | |
845 else | |
846 result = -1; | |
847 return result; | |
848 } | |
849 | |
850 | |
851 //----- (0044E4B7) -------------------------------------------------------- | |
852 Game::Game() | |
853 { | |
854 uNumStationaryLights = 0; | |
855 uNumBloodsplats = 0; | |
856 field_E0C = 0; | |
857 field_E10 = 0; | |
858 uNumStationaryLights_in_pStationaryLightsStack = 0; | |
859 bGammaControlInitialized = false; | |
860 uFlags = 0; | |
861 uFlags2 = 0; | |
862 uSomeGammaStartTime = 0; | |
863 uSomeGammaDeltaTime = 0; | |
864 | |
1397 | 865 //pThreadWardInstance = new ThreadWard; |
866 pThreadWardInstance = nullptr; | |
0 | 867 pParticleEngine = new ParticleEngine; |
1802 | 868 pMouse = pMouseInstance = new Mouse; |
0 | 869 pLightmapBuilder = new LightmapBuilder; |
870 pVisInstance = new Vis; | |
871 pStru6Instance = new stru6; | |
872 pIndoorCameraD3D = new IndoorCameraD3D; | |
873 pStru9Instance = new stru9; | |
874 pStru10Instance = new stru10; | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1277
diff
changeset
|
875 //pStru11Instance = new stru11; |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1277
diff
changeset
|
876 pStru11Instance = nullptr; |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1277
diff
changeset
|
877 //pStru12Instance = new stru12(pStru11Instance); |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1277
diff
changeset
|
878 pStru12Instance = nullptr; |
1397 | 879 //pCShow = new CShow; |
880 pCShow = nullptr; | |
0 | 881 pKeyboardInstance = new Keyboard; |
882 pGammaController = new GammaController; | |
883 | |
884 uFlags |= 0x0800; | |
885 uFlags2 |= 0x24; | |
886 | |
887 _44F0FD(); | |
888 } | |
889 | |
890 //----- (0044E7F3) -------------------------------------------------------- | |
891 Game::~Game() | |
892 { | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
893 delete pGammaController; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
894 delete pKeyboardInstance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
895 /*delete pCShow; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
896 delete pStru12Instance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
897 delete pStru11Instance;*/ |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
898 delete pStru10Instance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
899 delete pStru9Instance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
900 delete pIndoorCameraD3D; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
901 delete pStru6Instance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
902 delete pVisInstance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
903 delete pLightmapBuilder; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
904 delete pMouseInstance; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
905 delete pParticleEngine; |
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
906 //delete pThreadWardInstance; |
0 | 907 } |
908 | |
909 //----- (0044E904) -------------------------------------------------------- | |
910 void Game::_44E904() | |
911 { | |
912 //Game *v1; // esi@1 | |
913 unsigned __int64 v2; // qax@1 | |
914 unsigned int v3; // ecx@1 | |
915 int v4; // edi@1 | |
916 unsigned __int8 v5; // cf@7 | |
917 double v6; // st7@13 | |
918 double v7; // st7@15 | |
919 signed __int64 v8; // [sp+Ch] [bp-8h]@1 | |
920 | |
921 //v1 = this; | |
922 v2 = pEventTimer->Time(); | |
923 v4 = (v2 - uSomeGammaStartTime) >> 32; | |
924 v3 = v2 - LODWORD(uSomeGammaStartTime); | |
925 v8 = v2 - uSomeGammaStartTime; | |
926 if ( v4 < 0 | |
927 || SHIDWORD(v2) < ((unsigned int)v2 < LODWORD(uSomeGammaStartTime)) + HIDWORD(uSomeGammaStartTime) | v4 == 0 | |
928 && v3 <= 0x80 ) | |
929 { | |
1421 | 930 if ( v4 < 0 ) |
931 { | |
932 v3 = 0; | |
933 v4 = 0; | |
934 uSomeGammaStartTime = v2; | |
935 v8 = __PAIR__(v4, v3); | |
936 } | |
0 | 937 } |
938 else | |
939 { | |
940 if ( uSomeGammaDeltaTime ) | |
941 { | |
942 LODWORD(uSomeGammaDeltaTime) = 0; | |
943 HIDWORD(uSomeGammaDeltaTime) = 0; | |
944 } | |
945 else | |
946 { | |
947 LODWORD(uSomeGammaDeltaTime) = v3; | |
948 HIDWORD(uSomeGammaDeltaTime) = v4; | |
949 } | |
950 v5 = __CFADD__(v3, -128); | |
951 v3 -= 128; | |
952 v4 = v5 + v4 - 1; | |
1421 | 953 uSomeGammaStartTime = v2; |
954 v8 = __PAIR__(v4, v3); | |
0 | 955 } |
956 if ( uSomeGammaDeltaTime ) | |
957 v6 = (double)(signed __int64)(uSomeGammaDeltaTime - __PAIR__(v4, v3)); | |
958 else | |
959 v6 = (double)v8; | |
960 v7 = v6 * 0.0078125; | |
961 if ( v7 < 0.0 || v7 <= 1.0 ) | |
962 { | |
963 if ( v7 < 0.0 ) | |
964 v7 = 0.0; | |
965 } | |
966 else | |
967 v7 = 1.0; | |
2155 | 968 //if ( pRenderer->pRenderD3D ) |
0 | 969 fSaturation = v7; |
2155 | 970 //else |
971 // fSaturation = (1.0 - 0.5) * v7 + 0.5; | |
0 | 972 } |
973 | |
974 //----- (0044EA17) -------------------------------------------------------- | |
975 bool Game::InitializeGammaController() | |
976 { | |
2152 | 977 //if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT || |
978 //pVersion->pVersionInfo.dwMajorVersion != 4 ) | |
0 | 979 pGammaController->InitializeFromSurface(pRenderer->pFrontBuffer4); |
980 | |
981 bGammaControlInitialized = true; | |
982 uSomeGammaStartTime = pEventTimer->Time(); | |
983 return true; | |
984 } | |
985 | |
986 //----- (0044EA5E) -------------------------------------------------------- | |
194 | 987 bool Game::PickMouse(float fPickDepth, unsigned int uMouseX, unsigned int uMouseY, bool bOutline, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter) |
0 | 988 { |
2154 | 989 /*if (pCurrentScreen != SCREEN_GAME|| !pRenderer->pRenderD3D) |
990 return false;*/ | |
0 | 991 |
194 | 992 if (!pVisInstance) |
0 | 993 { |
194 | 994 MessageBoxW(nullptr, L"The 'Vis' object pointer has not been instatiated, but CGame::Pick() is trying to call through it.", nullptr, 0); |
995 return false; | |
996 } | |
0 | 997 |
692 | 998 if (uMouseX >= (signed int)pViewport->uScreen_TL_X && |
999 uMouseX <= (signed int)pViewport->uScreen_BR_X && | |
1000 uMouseY >= (signed int)pViewport->uScreen_TL_Y && | |
1001 uMouseY <= (signed int)pViewport->uScreen_BR_Y) | |
194 | 1002 { |
1003 pVisInstance->PickMouse(fPickDepth, uMouseX, uMouseY, sprite_filter, face_filter); | |
0 | 1004 |
194 | 1005 if (bOutline) |
1006 OutlineSelection(); | |
0 | 1007 } |
194 | 1008 |
1009 return true; | |
0 | 1010 } |
1011 // 4E28F8: using guessed type int pCurrentScreen; | |
1012 | |
1013 //----- (0044EB12) -------------------------------------------------------- | |
194 | 1014 bool Game::PickKeyboard(bool bOutline, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter) |
0 | 1015 { |
2154 | 1016 if (pCurrentScreen == SCREEN_GAME && pVisInstance /*&& pRenderer->pRenderD3D*/) |
0 | 1017 { |
194 | 1018 bool r = pVisInstance->PickKeyboard(&pVisInstance->default_list, sprite_filter, face_filter); |
0 | 1019 |
1020 if (bOutline) | |
1021 OutlineSelection(); | |
1022 return r; | |
1023 } | |
1024 return false; | |
1025 } | |
123 | 1026 /* |
1027 Result::Code Game::PickKeyboard(bool bOutline, struct unnamed_F93E6C *a3, struct unnamed_F93E6C *a4) | |
1028 { | |
1029 if (dword_4E28F8_PartyCantJumpIfTrue) | |
1030 return Result::Generic; | |
1031 | |
1032 pVis->PickKeyboard(a3, a4); | |
1033 if (bOutline) | |
1034 Game_outline_selection((int)this); | |
1035 return Result::Success; | |
1036 } | |
1037 */ | |
0 | 1038 // 4E28F8: using guessed type int pCurrentScreen; |
1039 | |
1040 //----- (0044EB5A) -------------------------------------------------------- | |
1041 void Game::OutlineSelection() | |
1042 { | |
194 | 1043 if (!pVisInstance) |
1044 return; | |
1045 | |
1046 if (!pVisInstance->default_list.uNumPointers) | |
1047 return; | |
0 | 1048 |
1980 | 1049 Vis_ObjectInfo* object_info = pVisInstance->default_list.object_pointers[0]; |
194 | 1050 if (object_info) |
1051 switch (object_info->object_type) | |
0 | 1052 { |
194 | 1053 case VisObjectType_Sprite: |
0 | 1054 { |
194 | 1055 Log::Warning(L"Sprite outline currently unsupported"); |
1056 return; | |
0 | 1057 } |
1058 | |
194 | 1059 case VisObjectType_Face: |
1060 { | |
1061 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
0 | 1062 { |
1980 | 1063 ODMFace* face = (ODMFace *)object_info->object; |
194 | 1064 if (face->uAttributes & FACE_OUTLINED) |
1065 face->uAttributes &= ~FACE_OUTLINED; | |
0 | 1066 else |
194 | 1067 face->uAttributes |= FACE_OUTLINED; |
1068 } | |
1069 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
1070 { | |
1980 | 1071 BLVFace* face = (BLVFace *)object_info->object; |
194 | 1072 if (face->uAttributes & FACE_OUTLINED) |
1073 face->uAttributes &= ~FACE_OUTLINED; | |
1074 else | |
1075 face->uAttributes |= FACE_OUTLINED; | |
0 | 1076 } |
1545 | 1077 else Error("Invalid level type", uCurrentlyLoadedLevelType); |
194 | 1078 } |
323 | 1079 break; |
194 | 1080 |
1081 default: | |
1082 { | |
1083 MessageBoxW(nullptr, L"Undefined CObjectInfo type requested in CGame::outline_selection()", nullptr, 0); | |
1084 ExitProcess(0); | |
1085 } | |
0 | 1086 } |
1915 | 1087 } |
1088 //----- (004304E7) -------------------------------------------------------- | |
1089 void GameUI_MsgProc() | |
1090 { | |
1091 //signed int v0; // edi@6 | |
1092 //char *v1; // esi@6 | |
1093 unsigned int v2; // edx@7 | |
1094 Actor *pActor; // ecx@13 | |
1095 int v4; // ecx@18 | |
1096 //NPCData *pNPCData0; // eax@18 | |
1097 //int v6; // edx@20 | |
1098 //int v7; // ecx@29 | |
1099 //unsigned int v8; // edx@59 | |
1100 //unsigned int v9; // ecx@60 | |
1101 unsigned int v10; // ecx@73 | |
1102 //unsigned int v11; // eax@75 | |
1103 unsigned __int8 v12; // sf@75 | |
1104 unsigned __int8 v13; // of@75 | |
1105 int v14; // eax@98 | |
1106 unsigned int v15; // eax@102 | |
1107 unsigned __int8 v16; // al@104 | |
1108 unsigned __int8 v17; // al@105 | |
1109 int v18; // eax@106 | |
1110 float v19; // ST64_4@121 | |
2334 | 1111 // unsigned int v20; // ecx@121 |
1915 | 1112 float v21; // ST64_4@126 |
1113 float v22; // ST64_4@127 | |
2334 | 1114 // unsigned int v23; // ecx@135 |
1915 | 1115 unsigned int v24; // ecx@149 |
2334 | 1116 // unsigned int v25; // ecx@165 |
1117 // GUIWindow *pWindow; // eax@204 | |
1118 // unsigned int v27; // edx@204 | |
1119 // unsigned int v28; // ecx@204 | |
1915 | 1120 GUIWindow *pWindow2; // ecx@248 |
1121 //int v30; // edx@258 | |
1122 //const char *v31; // ecx@262 | |
1123 signed int v32; // eax@269 | |
1124 unsigned int v33; // eax@277 | |
1125 unsigned __int8 v34; // al@279 | |
1126 unsigned __int8 v35; // al@280 | |
1127 //GUIWindow *pWindow3; // ecx@332 | |
1128 int v37; // eax@341 | |
1129 int v38; // eax@358 | |
1130 SHORT v39; // ax@365 | |
1131 //signed int v40; // eax@365 | |
1132 char *v41; // eax@380 | |
1133 int v42; // eax@396 | |
2334 | 1134 // POINT *pPoint; // eax@397 |
1915 | 1135 signed int v44; // eax@398 |
1136 int v45; // edx@398 | |
1137 signed int v46; // ecx@398 | |
1138 char v47; // zf@399 | |
1139 char v48; // zf@405 | |
1140 BLVFace *pBLVFace; // ecx@410 | |
1141 ODMFace *pODMFace; // ecx@412 | |
1142 CastSpellInfo *pSpellInfo; // ecx@415 | |
2334 | 1143 // void *v52; // eax@424 |
1915 | 1144 __int16 v53; // ax@431 |
1145 int v54; // eax@432 | |
1146 int v55; // ecx@432 | |
1147 int v56; // edx@432 | |
1148 int v57; // eax@432 | |
1149 Player *pPlayer; // edx@442 | |
1150 unsigned int pMapNum; // eax@445 | |
1151 signed int v60; // ST64_4@459 | |
1152 //NPCData *pNPCData2; // eax@467 | |
1153 //unsigned __int64 v62; // kr00_8@467 | |
1154 __int16 v63; // dx@479 | |
1155 unsigned int v64; // eax@486 | |
1156 int v65; // ecx@486 | |
1157 int v66; // eax@488 | |
1158 char *v67; // eax@489 | |
1159 __int16 v68; // dx@498 | |
1160 char *v69; // eax@512 | |
1161 int v70; // eax@525 | |
1162 int v71; // edi@527 | |
1163 NPCData *pNPCData3; // esi@527 | |
1164 char *v73; // ecx@533 | |
1165 signed int v74; // edi@535 | |
1166 int v75; // eax@535 | |
1167 int v76; // esi@535 | |
1168 int v77; // eax@537 | |
1169 Player *pPlayer2; // ecx@549 | |
1170 //int v79; // ecx@550 | |
1171 //unsigned int v80; // edx@550 | |
1172 signed int v81; // eax@552 | |
2334 | 1173 // POINT *pPoint2; // eax@553 |
1915 | 1174 signed int v83; // ecx@554 |
1175 signed int v84; // ecx@554 | |
1176 GUIButton *pButton; // eax@578 | |
1177 unsigned int v86; // eax@583 | |
1178 const char *v87; // ecx@595 | |
1179 const char *v88; // ecx@596 | |
1180 //unsigned int v89; // eax@598 | |
1181 unsigned int v90; // eax@602 | |
1182 int v91; // edx@605 | |
1183 int v92; // eax@605 | |
1184 int v93; // edx@605 | |
1185 int pPlayerNum; // edx@611 | |
1186 int v95; // eax@611 | |
1187 //const char *v96; // ecx@621 | |
1188 unsigned int v97; // eax@624 | |
1189 int v98; // eax@636 | |
2334 | 1190 // unsigned __int8 v99; // al@643 |
1191 // Player *pPlayer3; // eax@648 | |
1192 // int v101; // ecx@648 | |
1193 // int v102; // edx@652 | |
1915 | 1194 int v103; // eax@671 |
1195 Player *pPlayer4; // ecx@718 | |
1196 int v105; // eax@718 | |
1197 Player *pPlayer5; // ST78_4@758 | |
1198 unsigned int v107; // eax@758 | |
1199 unsigned int v108; // eax@758 | |
1200 unsigned int v115; // eax@764 | |
1201 int v116; // eax@776 | |
2334 | 1202 // POINT *pPoint3; // eax@777 |
1915 | 1203 unsigned int v118; // eax@785 |
1204 unsigned int v119; // ecx@786 | |
2334 | 1205 // unsigned int v120; // [sp-28h] [bp-624h]@86 |
1915 | 1206 unsigned int v121; // [sp-28h] [bp-624h]@711 |
2334 | 1207 // unsigned int v122; // [sp-24h] [bp-620h]@86 |
1915 | 1208 unsigned int v123; // [sp-24h] [bp-620h]@711 |
2334 | 1209 // unsigned int v124; // [sp-20h] [bp-61Ch]@86 |
1915 | 1210 unsigned int v125; // [sp-20h] [bp-61Ch]@711 |
2334 | 1211 // unsigned int v126; // [sp-1Ch] [bp-618h]@86 |
1915 | 1212 int v127; // [sp-1Ch] [bp-618h]@107 |
1213 unsigned int v128; // [sp-1Ch] [bp-618h]@711 | |
2334 | 1214 // int v129; // [sp-18h] [bp-614h]@86 |
1915 | 1215 //signed int v130; // [sp-18h] [bp-614h]@107 |
2334 | 1216 // int v131; // [sp-14h] [bp-610h]@86 |
1915 | 1217 //unsigned int v132; // [sp-14h] [bp-610h]@107 |
1218 //unsigned int v133; // [sp-10h] [bp-60Ch]@60 | |
2334 | 1219 // unsigned int v134; // [sp-10h] [bp-60Ch]@86 |
1915 | 1220 //signed int v135; // [sp-10h] [bp-60Ch]@107 |
2334 | 1221 // unsigned int v136; // [sp-10h] [bp-60Ch]@121 |
1915 | 1222 //unsigned int v137; // [sp-Ch] [bp-608h]@60 |
2334 | 1223 // unsigned int v138; // [sp-Ch] [bp-608h]@86 |
1915 | 1224 //signed int v139; // [sp-Ch] [bp-608h]@107 |
2334 | 1225 // unsigned int v140; // [sp-Ch] [bp-608h]@121 |
1226 // enum WindowType pWindowType; // [sp-8h] [bp-604h]@56 | |
1915 | 1227 //enum WindowType pWindowType1; // [sp-8h] [bp-604h]@60 |
2334 | 1228 // unsigned __int8 v143; // [sp-8h] [bp-604h]@86 |
1915 | 1229 //int v144; // [sp-8h] [bp-604h]@107 |
2334 | 1230 // enum WindowType pWindowType2; // [sp-8h] [bp-604h]@121 |
1915 | 1231 //const char *v146; // [sp-8h] [bp-604h]@449 |
1232 //unsigned int v147; // [sp-8h] [bp-604h]@550 | |
1233 //int v148; // [sp-4h] [bp-600h]@56 | |
1234 GUIButton *pButton2; // [sp-4h] [bp-600h]@59 | |
2334 | 1235 // const char *v150; // [sp-4h] [bp-600h]@86 |
1915 | 1236 //unsigned int v151; // [sp-4h] [bp-600h]@107 |
2334 | 1237 // int v152; // [sp-4h] [bp-600h]@121 |
1238 // int v153; // [sp-4h] [bp-600h]@135 | |
1915 | 1239 //int v154; // [sp-4h] [bp-600h]@149 |
2334 | 1240 // int v155; // [sp-4h] [bp-600h]@165 |
1241 // int v156; // [sp-4h] [bp-600h]@204 | |
1915 | 1242 //const char *v157; // [sp-4h] [bp-600h]@444 |
1243 //unsigned int v158; // [sp-4h] [bp-600h]@449 | |
1244 //__int16 v159; // [sp-4h] [bp-600h]@550 | |
2334 | 1245 // int v160; // [sp-4h] [bp-600h]@599 |
1915 | 1246 const char *v161; // [sp-4h] [bp-600h]@637 |
1247 //int v162; // [sp+0h] [bp-5FCh]@56 | |
1248 //int v163; // [sp+0h] [bp-5FCh]@59 | |
2334 | 1249 // Texture *pTexture; // [sp+0h] [bp-5FCh]@86 |
1915 | 1250 //int v165; // [sp+0h] [bp-5FCh]@107 |
2334 | 1251 // int v166; // [sp+0h] [bp-5FCh]@121 |
1252 // int v167; // [sp+0h] [bp-5FCh]@135 | |
1915 | 1253 //int v168; // [sp+0h] [bp-5FCh]@149 |
2334 | 1254 // int v169; // [sp+0h] [bp-5FCh]@165 |
1255 // int v170; // [sp+0h] [bp-5FCh]@204 | |
1915 | 1256 //signed int v171; // [sp+0h] [bp-5FCh]@259 |
1257 KeyToggleType pKeyToggleType; // [sp+0h] [bp-5FCh]@287 | |
1258 char *v173; // [sp+0h] [bp-5FCh]@444 | |
1259 char *v174; // [sp+0h] [bp-5FCh]@449 | |
1260 //int v175; // [sp+0h] [bp-5FCh]@550 | |
2334 | 1261 // int v176; // [sp+0h] [bp-5FCh]@599 |
1915 | 1262 const char *v177; // [sp+0h] [bp-5FCh]@629 |
1263 char *v178; // [sp+0h] [bp-5FCh]@637 | |
2334 | 1264 // int v179; // [sp+4h] [bp-5F8h]@0 |
1915 | 1265 //signed int _this; // [sp+14h] [bp-5E8h]@22 |
2334 | 1266 // signed int thisa; // [sp+14h] [bp-5E8h]@251 |
1915 | 1267 signed int thisb; // [sp+14h] [bp-5E8h]@272 |
1268 Player *pPlayer7; // [sp+14h] [bp-5E8h]@373 | |
1269 Player *pPlayer8; // [sp+14h] [bp-5E8h]@377 | |
1270 char *pMapName; // [sp+14h] [bp-5E8h]@445 | |
1271 Player *pPlayer9; // [sp+14h] [bp-5E8h]@455 | |
1272 int thisg; // [sp+14h] [bp-5E8h]@467 | |
1273 int thish; // [sp+14h] [bp-5E8h]@528 | |
1274 signed int thisi; // [sp+14h] [bp-5E8h]@535 | |
1275 MapInfo *pMapInfo; // [sp+14h] [bp-5E8h]@604 | |
1276 Player *pPlayer10; // [sp+14h] [bp-5E8h]@641 | |
2334 | 1277 // int thisl; // [sp+14h] [bp-5E8h]@648 |
1915 | 1278 int uMessageParam; // [sp+18h] [bp-5E4h]@7 |
1279 int uAction; // [sp+1Ch] [bp-5E0h]@18 | |
1280 NPCData *pNPCData4; // [sp+20h] [bp-5DCh]@23 | |
1281 unsigned int uNumSeconds; // [sp+24h] [bp-5D8h]@18 | |
1282 char v197; // [sp+2Bh] [bp-5D1h]@101 | |
1283 enum UIMessageType uMessage; // [sp+2Ch] [bp-5D0h]@7 | |
1284 unsigned int v199; // [sp+30h] [bp-5CCh]@7 | |
1285 char *v200; // [sp+34h] [bp-5C8h]@518 | |
2334 | 1286 // POINT v201; // [sp+38h] [bp-5C4h]@553 |
1915 | 1287 POINT v202; // [sp+40h] [bp-5BCh]@141 |
1288 POINT a2; // [sp+48h] [bp-5B4h]@127 | |
2334 | 1289 // POINT v204; // [sp+50h] [bp-5ACh]@777 |
1915 | 1290 POINT v205; // [sp+58h] [bp-5A4h]@171 |
2334 | 1291 // POINT v206; // [sp+60h] [bp-59Ch]@553 |
1915 | 1292 POINT v207; // [sp+68h] [bp-594h]@155 |
2334 | 1293 // POINT v208; // [sp+70h] [bp-58Ch]@397 |
1294 // POINT v209; // [sp+78h] [bp-584h]@777 | |
1295 // POINT v210; // [sp+80h] [bp-57Ch]@397 | |
1915 | 1296 POINT v211; // [sp+88h] [bp-574h]@704 |
1297 //__int64 v212; // [sp+90h] [bp-56Ch]@467 | |
1298 int v213; // [sp+98h] [bp-564h]@385 | |
1299 char pLevelName[32]; // [sp+9Ch] [bp-560h]@380 | |
1300 char pOut[32]; // [sp+BCh] [bp-540h]@370 | |
1301 FrameTableTxtLine v216; // [sp+DCh] [bp-520h]@524 | |
1302 int v217[9]; // [sp+158h] [bp-4A4h]@652 | |
1303 FrameTableTxtLine v218; // [sp+17Ch] [bp-480h]@524 | |
1304 char a1[64]; // [sp+1F8h] [bp-404h]@467 | |
1305 char Str2[128]; // [sp+238h] [bp-3C4h]@527 | |
1306 Actor actor; // [sp+2B8h] [bp-344h]@4 | |
2154 | 1307 //unsigned short* screenshot; |
2224 | 1308 int currHour; |
1915 | 1309 |
1310 dword_50CDC8 = 0; | |
1311 if ( !pEventTimer->bPaused ) | |
1312 { | |
1313 pParty->sEyelevel = pParty->uDefaultEyelevel; | |
1314 pParty->uPartyHeight = pParty->uDefaultPartyHeight; | |
1315 } | |
1316 if ( bDialogueUI_InitializeActor_NPC_ID ) | |
1317 { | |
1318 //Actor::Actor(&actor); | |
1319 memset(&actor, 0, 0x344u); | |
1320 dword_5B65D0_dialogue_actor_npc_id = bDialogueUI_InitializeActor_NPC_ID; | |
1321 actor.sNPC_ID = bDialogueUI_InitializeActor_NPC_ID; | |
1322 GameUI_InitializeDialogue(&actor, false); | |
1323 bDialogueUI_InitializeActor_NPC_ID = 0; | |
1324 } | |
1325 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1326 { | |
1327 //v1 = ""; | |
1328 while ( 2 ) | |
1329 { | |
1330 if ( !pMessageQueue_50CBD0->uNumMessages ) | |
1331 break; | |
1332 | |
1333 pMessageQueue_50CBD0->PopMessage(&uMessage, &uMessageParam, (int *)&v199); | |
1334 switch ( uMessage ) | |
1335 { | |
1336 case UIMSG_ChangeGameState: | |
1337 uGameState = GAME_FINISHED; | |
1338 continue; | |
1339 case UIMSG_PlayArcomage: | |
1340 pVideoPlayer->_4BF5B2(); | |
1341 pArcomageGame->bGameInProgress = 1; | |
2339 | 1342 ArcomageGame::PrepareArcomage(); |
1915 | 1343 continue; |
1344 case UIMSG_StartNPCDialogue: | |
1345 if ( !uActiveCharacter ) | |
1346 continue; | |
1347 viewparams->field_48 = 1; | |
1348 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1349 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1350 dword_5B65D0_dialogue_actor_npc_id = pActors[uMessageParam].sNPC_ID; | |
1351 pActor = &pActors[uMessageParam]; | |
1352 //goto _actor_init_dlg; | |
1353 GameUI_InitializeDialogue(pActor, true); | |
1354 continue; | |
1355 case UIMSG_StartHireling1Dialogue: | |
1356 case UIMSG_StartHireling2Dialogue: | |
1357 { | |
1358 if (bNoNPCHiring || pCurrentScreen) | |
1359 continue; | |
1360 | |
1361 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1362 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1363 uAction = 0; | |
1364 int hireling_idx = uMessage - UIMSG_StartHireling1Dialogue; | |
1365 v4 = 0; | |
1366 | |
1367 for (uint i = 0; i < 2; ++i) | |
1368 //pNPCData0 = pParty->pHirelings; | |
1369 //do | |
1370 { | |
1371 if (pParty->pHirelings[i].pName) | |
1372 //{ | |
1373 //v6 = uAction++; | |
1374 pTmpBuf[uAction++] = i; | |
1375 //} | |
1376 //++pNPCData0; | |
1377 //++v4; | |
1378 } | |
1379 //while ( (signed int)pNPCData0 < (signed int)&pParty->pPickedItem ); | |
1380 | |
1381 //_this = 0; | |
1382 for (uint i = 0; i < pNPCStats->uNumNewNPCs; ++i) | |
1383 { | |
1980 | 1384 NPCData* npc = &pNPCStats->pNewNPCData[i]; |
1915 | 1385 //do |
1386 //{ | |
1387 if (npc->Hired() && | |
1388 (!pParty->pHirelings[0].pName || strcmp(npc->pName, pParty->pHirelings[0].pName)) && | |
1389 (!pParty->pHirelings[1].pName || strcmp(npc->pName, pParty->pHirelings[1].pName)) ) | |
1390 { | |
1391 //v7 =; | |
1392 pTmpBuf[uAction++] = i + 2; | |
1393 } | |
1394 //++_this; | |
1395 //++pNPCData4; | |
1396 //} | |
1397 //while ( _this < (signed int)pNPCStats->uNumNewNPCs ); | |
1398 } | |
1399 | |
1400 if ( (signed int)(hireling_idx + pParty->hirelingScrollPosition) < uAction ) | |
1401 { | |
1402 //Actor::Actor(&actor); | |
1403 memset(&actor, 0, 0x344u); | |
1404 actor.sNPC_ID += -1 - pParty->hirelingScrollPosition - hireling_idx; | |
1405 pActor = &actor; | |
1406 GameUI_InitializeDialogue(&actor, true); | |
1407 } | |
1408 } | |
1409 continue; | |
1410 | |
1411 case UIMSG_BuyInShop_Identify_Repair: | |
1412 UIShop_Buy_Identify_Repair(); | |
1413 continue; | |
1414 case UIMSG_ClickNPCTopic: | |
1415 ClickNPCTopic(uMessageParam); | |
1416 continue; | |
1417 case UIMSG_SelectShopDialogueOption: | |
1418 OnSelectShopDialogueOption(uMessageParam); | |
1419 continue; | |
1420 case UIMSG_SelectNPCDialogueOption: | |
1421 OnSelectNPCDialogueOption((DIALOGUE_TYPE)uMessageParam); | |
1422 continue; | |
1423 case UIMSG_ClickHouseNPCPortrait: | |
1424 _4B4224_UpdateNPCTopics(uMessageParam); | |
1425 continue; | |
1426 case UIMSG_StartNewGame: | |
1427 if ( dword_6BE138 == 124 || uMessageParam ) | |
1428 { | |
1429 pIcons_LOD->SyncLoadedFilesCount(); | |
1430 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
1431 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1432 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1433 pGUIWindow_CurrentMenu->Release(); | |
1434 uGameState = GAME_STATE_NEWGAME_OUT_GAMEMENU; | |
1435 pCurrentScreen = SCREEN_GAME; | |
1436 viewparams->bRedrawGameUI = 1; | |
1437 } | |
1438 else | |
1439 { | |
1440 ShowStatusBarString(pGlobalTXT_LocalizationStrings[201], 2u);// "Are you sure? Click again to start a New Game" | |
1441 pAudioPlayer->PlaySound(SOUND_20001, 0, 0, -1, 0, 0, 0, 0); | |
1442 dword_6BE138 = 124; | |
1443 } | |
1444 stru_506E40.Release(); | |
1445 continue; | |
1446 case UIMSG_Game_OpenLoadGameDialog: | |
1447 pIcons_LOD->SyncLoadedFilesCount(); | |
1448 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
1449 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1450 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1451 pGUIWindow_CurrentMenu->Release(); | |
1452 pCurrentScreen = SCREEN_LOADGAME; | |
1453 LoadUI_Load(1); | |
1454 continue; | |
1455 case UIMSG_Quit: | |
1456 if ( dword_6BE138 == 132 || uMessageParam ) | |
1457 { | |
1458 pIcons_LOD->SyncLoadedFilesCount(); | |
1459 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
1460 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1461 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1462 pGUIWindow_CurrentMenu->Release(); | |
1463 pCurrentScreen = SCREEN_GAME; | |
1464 viewparams->bRedrawGameUI = 1; | |
1465 if ( !uMessageParam ) | |
1466 pAudioPlayer->PlaySound((SoundID)(SOUND_EnteringAHouse|0x1), 0, 0, -1, 0, 0, 0, 0); | |
1467 uGameState = GAME_STATE_GAME_QUITTING_TO_MAIN_MENU; | |
1468 } | |
1469 else | |
1470 { | |
1471 ShowStatusBarString(pGlobalTXT_LocalizationStrings[82], 2);// "Are you sure? Click again to quit" | |
1472 pAudioPlayer->PlaySound(SOUND_20001, 0, 0, -1, 0, 0, 0, 0); | |
1473 dword_6BE138 = 132; | |
1474 } | |
1475 stru_506E40.Release(); | |
1476 continue; | |
1477 case UIMSG_80: | |
1478 __debugbreak(); | |
1479 pIcons_LOD->SyncLoadedFilesCount(); | |
1480 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
1481 pGUIWindow_CurrentMenu->Release(); | |
1482 pCurrentScreen = SCREEN_OPTIONS; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1483 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_8, 0, 0); |
1915 | 1484 continue; |
1485 case UIMSG_ArrowUp: | |
1486 --pSaveListPosition; | |
1487 if ( pSaveListPosition < 0 ) | |
1488 pSaveListPosition = 0; | |
1489 GUIWindow::Create(215, 199, 17, 17, WINDOW_PressedButton2, (int)pBtnArrowUp, 0); | |
1490 continue; | |
1491 case UIMSG_DownArrow: | |
1492 ++pSaveListPosition; | |
1493 if ( pSaveListPosition >= uMessageParam ) | |
1494 pSaveListPosition = uMessageParam - 1; | |
1495 GUIWindow::Create(215, 323, 17, 17, WINDOW_PressedButton2, (int)pBtnDownArrow, 0); | |
1496 continue; | |
1497 case UIMSG_Cancel: | |
1498 GUIWindow::Create(350, 302, 106, 42, WINDOW_CloseRestWindowBtn, (int)pBtnCancel, 0); | |
1499 continue; | |
1500 case UIMSG_SaveLoadBtn: | |
1501 GUIWindow::Create(241, 302, 106, 42, WINDOW_SaveLoadBtn, (int)pBtnLoadSlot, 0); | |
1502 continue; | |
1503 case UIMSG_SelectLoadSlot: | |
1504 if ( pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS) | |
1505 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE); | |
1506 if ( pCurrentScreen != SCREEN_SAVEGAME || uLoadGameUI_SelectedSlot != pSaveListPosition + uMessageParam ) | |
1507 { | |
1508 v10 = pSaveListPosition + uMessageParam; | |
1509 if ( dword_6BE138 == pSaveListPosition + uMessageParam ) | |
1510 { | |
2402 | 1511 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_SaveLoadBtn, 0, 0); |
1512 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_LoadGame, 0, 0); | |
1915 | 1513 } |
1514 uLoadGameUI_SelectedSlot = v10; | |
1515 dword_6BE138 = v10; | |
1516 } | |
1517 else | |
1518 { | |
1519 pKeyActionMap->EnterText(0, 19, pGUIWindow_CurrentMenu); | |
2389 | 1520 if ( strcmp(pSavegameHeader[uLoadGameUI_SelectedSlot].pName, pGlobalTXT_LocalizationStrings[72]) )// "Empty" |
1521 strcpy(pKeyActionMap->pPressedKeysBuffer, pSavegameHeader[uLoadGameUI_SelectedSlot].pName); | |
1522 pKeyActionMap->uNumKeysPressed = strlen(pKeyActionMap->pPressedKeysBuffer); | |
1915 | 1523 } |
1524 continue; | |
1525 case UIMSG_LoadGame: | |
1526 if ( pSavegameUsedSlots[uLoadGameUI_SelectedSlot] ) | |
1527 { | |
1528 LoadGame(uLoadGameUI_SelectedSlot); | |
1529 uGameState = GAME_STATE_LOADING_GAME; | |
1530 } | |
1531 stru_506E40.Release(); | |
1532 continue; | |
1533 case UIMSG_SaveGame: | |
1534 if ( pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS) | |
1535 { | |
1536 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE); | |
2389 | 1537 strcpy((char *)&pSavegameHeader[uLoadGameUI_SelectedSlot], pKeyActionMap->pPressedKeysBuffer); |
1915 | 1538 } |
1539 DoSavegame(uLoadGameUI_SelectedSlot); | |
1540 stru_506E40.Release(); | |
1541 continue; | |
1542 case UIMSG_Game_OpenSaveGameDialog: | |
1543 pGUIWindow_CurrentMenu->Release(); | |
1544 pCurrentScreen = SCREEN_SAVEGAME; | |
1545 SaveUI_Load(); | |
1546 continue; | |
1547 case UIMSG_Game_OpenOptionsDialog://Open | |
1548 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1549 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1550 pGUIWindow_CurrentMenu->Release(); | |
1551 viewparams->field_48 = 1; | |
1552 pCurrentScreen = SCREEN_OPTIONS; | |
1553 | |
1554 options_menu_skin.uTextureID_Background = pIcons_LOD->LoadTexture("ControlBG", TEXTURE_16BIT_PALETTE); | |
1555 options_menu_skin.uTextureID_TurnSpeed[2] = pIcons_LOD->LoadTexture("con_16x", TEXTURE_16BIT_PALETTE); | |
1556 options_menu_skin.uTextureID_TurnSpeed[1] = pIcons_LOD->LoadTexture("con_32x", TEXTURE_16BIT_PALETTE); | |
1557 options_menu_skin.uTextureID_TurnSpeed[0] = pIcons_LOD->LoadTexture("con_Smoo", TEXTURE_16BIT_PALETTE); | |
1558 options_menu_skin.uTextureID_ArrowLeft = pIcons_LOD->LoadTexture("con_ArrL", TEXTURE_16BIT_PALETTE); | |
1559 options_menu_skin.uTextureID_ArrowRight = pIcons_LOD->LoadTexture("con_ArrR", TEXTURE_16BIT_PALETTE); | |
1560 options_menu_skin.uTextureID_SoundLevels[0] = pIcons_LOD->LoadTexture("convol10", TEXTURE_16BIT_PALETTE); | |
1561 options_menu_skin.uTextureID_SoundLevels[1] = pIcons_LOD->LoadTexture("convol20", TEXTURE_16BIT_PALETTE); | |
1562 options_menu_skin.uTextureID_SoundLevels[2] = pIcons_LOD->LoadTexture("convol30", TEXTURE_16BIT_PALETTE); | |
1563 options_menu_skin.uTextureID_SoundLevels[3] = pIcons_LOD->LoadTexture("convol40", TEXTURE_16BIT_PALETTE); | |
1564 options_menu_skin.uTextureID_SoundLevels[4] = pIcons_LOD->LoadTexture("convol50", TEXTURE_16BIT_PALETTE); | |
1565 options_menu_skin.uTextureID_SoundLevels[5] = pIcons_LOD->LoadTexture("convol60", TEXTURE_16BIT_PALETTE); | |
1566 options_menu_skin.uTextureID_SoundLevels[6] = pIcons_LOD->LoadTexture("convol70", TEXTURE_16BIT_PALETTE); | |
1567 options_menu_skin.uTextureID_SoundLevels[7] = pIcons_LOD->LoadTexture("convol80", TEXTURE_16BIT_PALETTE); | |
1568 options_menu_skin.uTextureID_SoundLevels[8] = pIcons_LOD->LoadTexture("convol90", TEXTURE_16BIT_PALETTE); | |
1569 options_menu_skin.uTextureID_SoundLevels[9] = pIcons_LOD->LoadTexture("convol00", TEXTURE_16BIT_PALETTE); | |
1570 options_menu_skin.uTextureID_FlipOnExit = pIcons_LOD->LoadTexture("option04", TEXTURE_16BIT_PALETTE); | |
1571 options_menu_skin.uTextureID_AlwaysRun = pIcons_LOD->LoadTexture("option03", TEXTURE_16BIT_PALETTE); | |
1572 options_menu_skin.uTextureID_ShowDamage = pIcons_LOD->LoadTexture("option02", TEXTURE_16BIT_PALETTE); | |
1573 options_menu_skin.uTextureID_WalkSound = pIcons_LOD->LoadTexture("option01", TEXTURE_16BIT_PALETTE); | |
1574 | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1575 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Options, 0, 0); |
1915 | 1576 pGUIWindow_CurrentMenu->CreateButton(22, 270, |
1577 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[2])->uTextureWidth, | |
1578 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[2])->uTextureHeight, | |
1579 1, 0, UIMSG_SetTurnSpeed, 0x80, 0, "", 0); | |
1580 pGUIWindow_CurrentMenu->CreateButton(93, 270, | |
1581 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[1])->uTextureWidth, | |
1582 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[1])->uTextureHeight, | |
1583 1, 0, UIMSG_SetTurnSpeed, 0x40u, 0, "", 0); | |
1584 pGUIWindow_CurrentMenu->CreateButton(164, 270, | |
1585 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[0])->uTextureWidth, | |
1586 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_TurnSpeed[0])->uTextureHeight, | |
1587 1, 0, UIMSG_SetTurnSpeed, 0, 0, "", 0); | |
1588 | |
1589 pGUIWindow_CurrentMenu->CreateButton(20, 303, | |
1590 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_WalkSound)->uTextureWidth, | |
1591 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_WalkSound)->uTextureHeight, | |
1592 1, 0, UIMSG_ToggleWalkSound, 0, 0, "", 0); | |
1593 pGUIWindow_CurrentMenu->CreateButton(128, 303, | |
1594 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ShowDamage)->uTextureWidth, | |
1595 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ShowDamage)->uTextureHeight, | |
1596 1, 0, UIMSG_ToggleShowDamage, 0, 0, "", 0); | |
1597 pGUIWindow_CurrentMenu->CreateButton(20, 325, | |
1598 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_AlwaysRun)->uTextureWidth, | |
1599 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_AlwaysRun)->uTextureHeight, | |
1600 1, 0, UIMSG_ToggleAlwaysRun, 0, 0, "", 0); | |
1601 pGUIWindow_CurrentMenu->CreateButton(128, 325, | |
1602 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_FlipOnExit)->uTextureWidth, | |
1603 pIcons_LOD->GetTexture(options_menu_skin.uTextureID_FlipOnExit)->uTextureHeight, | |
1604 1, 0, UIMSG_ToggleFlipOnExit, 0, 0, "", 0); | |
1605 | |
1606 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 162, 16, 16, 1, 0, UIMSG_ChangeSoundVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0); | |
1607 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 162, 16, 16, 1, 0, UIMSG_ChangeSoundVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0); | |
1608 pGUIWindow_CurrentMenu->CreateButton(263, 162, 172, 17, 1, 0, UIMSG_ChangeSoundVolume, 0, 0, "", 0); | |
1609 | |
1610 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 216, 16, 16, 1, 0, UIMSG_ChangeMusicVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0); | |
1611 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 216, 16, 16, 1, 0, UIMSG_ChangeMusicVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0); | |
1612 pGUIWindow_CurrentMenu->CreateButton(263, 216, 172, 17, 1, 0, UIMSG_ChangeMusicVolume, 0, 0, "", 0); | |
1613 | |
1614 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(243, 270, 16, 16, 1, 0, UIMSG_ChangeVoiceVolume, 4, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowLeft), 0); | |
1615 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(435, 270, 16, 16, 1, 0, UIMSG_ChangeVoiceVolume, 5, 0, "", pIcons_LOD->GetTexture(options_menu_skin.uTextureID_ArrowRight), 0); | |
1616 pGUIWindow_CurrentMenu->CreateButton(263, 270, 172, 17, 1, 0, UIMSG_ChangeVoiceVolume, 0, 0, "", 0); | |
1617 | |
1618 pGUIWindow_CurrentMenu->CreateButton(241, 302, 214, 40, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[619], 0); // "Return to Game" | |
1619 pGUIWindow_CurrentMenu->CreateButton( 19, 140, 214, 40, 1, 0, UIMSG_OpenKeyMappingOptions, 0, 0x4Bu, "", 0); | |
1620 pGUIWindow_CurrentMenu->CreateButton( 19, 194, 214, 40, 1, 0, UIMSG_OpenVideoOptions, 0, 86, "", 0); | |
1621 continue; | |
1622 | |
1623 case UIMSG_OpenKeyMappingOptions://Open | |
1624 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1625 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1626 pGUIWindow_CurrentMenu->Release(); | |
1627 viewparams->field_48 = 1; | |
1628 pCurrentScreen = SCREEN_KEYBOARD_OPTIONS; | |
1629 uTextureID_Optkb[0] = pIcons_LOD->LoadTexture("optkb", TEXTURE_16BIT_PALETTE); | |
1630 uTextureID_Optkb[1] = pIcons_LOD->LoadTexture("optkb_h", TEXTURE_16BIT_PALETTE); | |
1631 uTextureID_Optkb[2] = pIcons_LOD->LoadTexture("resume1", TEXTURE_16BIT_PALETTE); | |
1632 uTextureID_Optkb[3] = pIcons_LOD->LoadTexture("optkb_1", TEXTURE_16BIT_PALETTE); | |
1633 uTextureID_Optkb[4] = pIcons_LOD->LoadTexture("optkb_2", TEXTURE_16BIT_PALETTE); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1634 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_KeyMappingOptions, 0, 0); |
1915 | 1635 pGUIWindow_CurrentMenu->CreateButton(0xF1u, 0x12Eu, 0xD6u, 0x28u, 1, 0, UIMSG_Escape, 0, 0, "", 0); |
1636 pGUIWindow_CurrentMenu->CreateButton(19u, 0x12Eu, 0x6Cu, 0x14u, 1, 0, UIMSG_SelectKeyPage1, 0, 0, "", 0); | |
1637 pGUIWindow_CurrentMenu->CreateButton(127u, 0x12Eu, 0x6Cu, 0x14u, 1, 0, UIMSG_SelectKeyPage2, 0, 0, "", 0); | |
1638 pGUIWindow_CurrentMenu->CreateButton(127u, 0x144u, 0x6Cu, 0x14u, 1, 0, UIMSG_ResetKeyMapping, 0, 0, "", 0); | |
1639 pGUIWindow_CurrentMenu->CreateButton(19u, 0x144u, 0x6Cu, 0x14u, 1, 0, UIMSG_Game_OpenOptionsDialog, 0, 0, "", 0); | |
1640 pGUIWindow_CurrentMenu->CreateButton(129u, 0x94u, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0, 0, "", 0); | |
1641 pGUIWindow_CurrentMenu->CreateButton(129u, 0xA7u, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 1u, 0, "", 0); | |
1642 pGUIWindow_CurrentMenu->CreateButton(129u, 0xBAu, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 2u, 0, "", 0); | |
1643 pGUIWindow_CurrentMenu->CreateButton(129u, 0xCDu, 0x46u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 3u, 0, "", 0); | |
1644 pGUIWindow_CurrentMenu->CreateButton(129u, 224u, 70u, 19u, 1, 0, UIMSG_ChangeKeyButton, 4u, 0, "", 0); | |
1645 pGUIWindow_CurrentMenu->CreateButton(129u, 243u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 5u, 0, "", 0); | |
1646 pGUIWindow_CurrentMenu->CreateButton(129u, 262u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 6u, 0, "", 0); | |
1647 pGUIWindow_CurrentMenu->CreateButton(350u, 148u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 7u, 0, "", 0); | |
1648 pGUIWindow_CurrentMenu->CreateButton(350u, 167u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 8u, 0, "", 0); | |
1649 pGUIWindow_CurrentMenu->CreateButton(350u, 186u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 9u, 0, "", 0); | |
1650 pGUIWindow_CurrentMenu->CreateButton(350u, 205u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xAu, 0, "", 0); | |
1651 pGUIWindow_CurrentMenu->CreateButton(350u, 224u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xBu, 0, "", 0); | |
1652 pGUIWindow_CurrentMenu->CreateButton(350u, 243u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xCu, 0, "", 0); | |
1653 pGUIWindow_CurrentMenu->CreateButton(350u, 262u, 70u, 0x13u, 1, 0, UIMSG_ChangeKeyButton, 0xDu, 0, "", 0); | |
1654 uGameMenuUI_CurentlySelectedKeyIdx = -1; | |
1655 KeyboardPageNum = 1; | |
1656 memset(GameMenuUI_InvaligKeyBindingsFlags.data(), 0, sizeof(GameMenuUI_InvaligKeyBindingsFlags)); | |
1657 //*(_WORD *)KeyButtonArray[28] = 0; | |
1658 memcpy(pPrevVirtualCidesMapping.data(), pKeyActionMap->pVirtualKeyCodesMapping, 0x78u); | |
1659 //v1 = ""; | |
1660 //v0 = 1; | |
1661 continue; | |
1662 case UIMSG_ChangeKeyButton: | |
1663 if ( uGameMenuUI_CurentlySelectedKeyIdx != -1 ) | |
1664 { | |
1665 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
1666 continue; | |
1667 } | |
1668 v14 = uMessageParam; | |
1669 if ( KeyboardPageNum != 1 ) | |
1670 v14 = uMessageParam + 14; | |
1671 uGameMenuUI_CurentlySelectedKeyIdx = v14; | |
1672 pKeyActionMap->EnterText(0, 1, pGUIWindow_CurrentMenu); | |
1673 continue; | |
1674 case UIMSG_ResetKeyMapping: | |
1675 v197 = 1; | |
1676 pKeyActionMap->SetDefaultMapping(); | |
1677 uAction = 0; | |
1678 do | |
1679 { | |
1680 v15 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
1681 if ( v15 != pPrevVirtualCidesMapping[uAction] ) | |
1682 { | |
1683 if ( v197 ) | |
1684 { | |
1685 v16 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
1686 GUI_ReplaceHotkey(LOBYTE(pPrevVirtualCidesMapping[uAction]), v16, 1); | |
1687 v197 = 0; | |
1688 } | |
1689 else | |
1690 { | |
1691 v17 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
1692 GUI_ReplaceHotkey(LOBYTE(pPrevVirtualCidesMapping[uAction]), v17, 0); | |
1693 } | |
1694 } | |
1695 pPrevVirtualCidesMapping[uAction] = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
1696 v18 = uAction++; | |
1697 v13 = uAction > 28; | |
1698 v12 = uAction - 28 < 0; | |
1699 GameMenuUI_InvaligKeyBindingsFlags[v18] = 0; | |
1700 } | |
1701 while ( v12 ^ v13 ); | |
1702 pAudioPlayer->PlaySound((SoundID)219, 0, 0, -1, 0, 0, 0, 0); | |
1703 continue; | |
1704 case UIMSG_SelectKeyPage1: | |
1705 KeyboardPageNum = 1; | |
1706 continue; | |
1707 case UIMSG_SelectKeyPage2: | |
1708 KeyboardPageNum = 2; | |
1709 continue; | |
1710 case UIMSG_OpenVideoOptions: | |
1711 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1712 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1713 pGUIWindow_CurrentMenu->Release(); | |
1714 viewparams->field_48 = 1; | |
1715 pCurrentScreen = SCREEN_VIDEO_OPTIONS; | |
1716 optvid_base_texture_id = pIcons_LOD->LoadTexture("optvid", TEXTURE_16BIT_PALETTE); | |
1717 bloodsplats_texture_id = pIcons_LOD->LoadTexture("opvdH-bs", TEXTURE_16BIT_PALETTE); | |
1718 us_colored_lights_texture_id = pIcons_LOD->LoadTexture("opvdH-cl", TEXTURE_16BIT_PALETTE); | |
1719 tinting_texture_id = pIcons_LOD->LoadTexture("opvdH-tn", TEXTURE_16BIT_PALETTE); | |
1720 uTextureID_507C20 = pIcons_LOD->LoadTexture("con_ArrL", TEXTURE_16BIT_PALETTE); | |
1721 uTextureID_507C24 = pIcons_LOD->LoadTexture("con_ArrR", TEXTURE_16BIT_PALETTE); | |
1722 pTextureIDs_GammaPositions[0] = pIcons_LOD->LoadTexture("convol10", TEXTURE_16BIT_PALETTE); | |
1723 pTextureIDs_GammaPositions[1] = pIcons_LOD->LoadTexture("convol20", TEXTURE_16BIT_PALETTE); | |
1724 pTextureIDs_GammaPositions[2] = pIcons_LOD->LoadTexture("convol30", TEXTURE_16BIT_PALETTE); | |
1725 pTextureIDs_GammaPositions[3] = pIcons_LOD->LoadTexture("convol40", TEXTURE_16BIT_PALETTE); | |
1726 pTextureIDs_GammaPositions[4] = pIcons_LOD->LoadTexture("convol50", TEXTURE_16BIT_PALETTE); | |
1727 pTextureIDs_GammaPositions[5] = pIcons_LOD->LoadTexture("convol60", TEXTURE_16BIT_PALETTE); | |
1728 pTextureIDs_GammaPositions[6] = pIcons_LOD->LoadTexture("convol70", TEXTURE_16BIT_PALETTE); | |
1729 pTextureIDs_GammaPositions[7] = pIcons_LOD->LoadTexture("convol80", TEXTURE_16BIT_PALETTE); | |
1730 pTextureIDs_GammaPositions[8] = pIcons_LOD->LoadTexture("convol90", TEXTURE_16BIT_PALETTE); | |
1731 pTextureIDs_GammaPositions[9] = pIcons_LOD->LoadTexture("convol00", TEXTURE_16BIT_PALETTE); | |
1732 not_available_bloodsplats_texture_id = pIcons_LOD->LoadTexture("opvdG-bs", TEXTURE_16BIT_PALETTE); | |
1733 not_available_us_colored_lights_texture_id = pIcons_LOD->LoadTexture("opvdG-cl", TEXTURE_16BIT_PALETTE); | |
1734 not_available_tinting_texture_id = pIcons_LOD->LoadTexture("opvdG-tn", TEXTURE_16BIT_PALETTE); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1735 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_VideoOptions, 0, 0); |
1915 | 1736 pGUIWindow_CurrentMenu->CreateButton(0xF1u, 0x12Eu, 0xD6u, 0x28u, 1, 0, UIMSG_Escape, 0, 0, "", 0); |
2153 | 1737 //if ( pRenderer->pRenderD3D ) |
1915 | 1738 { |
1739 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x118u, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleBloodsplats, 0, 0, "", 0); | |
1740 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x12Eu, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleColoredLights, 0, 0, "", 0); | |
1741 pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x144u, 0xD6u, 0x12u, 1, 0, UIMSG_ToggleTint, 0, 0, "", 0); | |
1742 } | |
2155 | 1743 /*if ( !pRenderer->bWindowMode ) |
1915 | 1744 { |
1745 //v0 = 1; | |
2154 | 1746 if ( pRenderer->IsGammaSupported() ) |
1915 | 1747 { |
1748 pBtn_SliderLeft = pGUIWindow_CurrentMenu->CreateButton(0x15u, 0xA1u, 0x10u, 0x10u, 1, 0, UIMSG_1A9, 4u, 0, "", pIcons_LOD->GetTexture(uTextureID_507C20), 0); | |
1749 pBtn_SliderRight = pGUIWindow_CurrentMenu->CreateButton(0xD5u, 0xA1u, 0x10u, 0x10u, 1, 0, UIMSG_1A9, 5u, 0, "", pIcons_LOD->GetTexture(uTextureID_507C24), 0); | |
1750 pGUIWindow_CurrentMenu->CreateButton(42, 162, 170, 18, 1, 0, UIMSG_1A9, 0, 0, "", 0); | |
1751 } | |
2155 | 1752 }*/ |
1915 | 1753 continue; |
1754 case UIMSG_1A9: | |
1755 __debugbreak(); | |
1756 if ( uMessageParam == 4 ) | |
1757 { | |
1758 //--uGammaPos; | |
1759 if ( (uGammaPos -- -1) < 0 ) | |
1760 { | |
1761 uGammaPos = 0; | |
1762 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0); | |
1763 continue; | |
1764 } | |
1765 v19 = (double)(signed int)uGammaPos * 0.1 + 0.6; | |
1766 pGame->pGammaController->Initialize(v19); | |
1767 GUIWindow::Create(21, 161, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1); | |
1768 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0); | |
1769 continue; | |
1770 } | |
1771 if ( uMessageParam == 5 ) | |
1772 { | |
1773 ++uGammaPos; | |
1774 if ( (signed int)uGammaPos <= 9 ) | |
1775 { | |
1776 v21 = (double)(signed int)uGammaPos * 0.1 + 0.6; | |
1777 pGame->pGammaController->Initialize(v21); | |
1778 GUIWindow::Create(213, 161, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1); | |
1779 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0); | |
1780 continue; | |
1781 } | |
1782 uGammaPos = 9; | |
1783 } | |
1784 else | |
1785 { | |
1786 uGammaPos = (pMouse->GetCursorPos(&a2)->x - 42) / 17; | |
1787 v22 = (double)(signed int)uGammaPos * 0.1 + 0.6; | |
1788 pGame->pGammaController->Initialize(v22); | |
1789 } | |
1790 pAudioPlayer->PlaySound((SoundID)21, 0, 0, -1, 0, 0, 0, 0); | |
1791 continue; | |
1792 case UIMSG_ToggleBloodsplats: | |
1793 pGame->ToggleFlags2(0x20u); | |
1794 continue; | |
1795 case UIMSG_ToggleColoredLights: | |
2153 | 1796 pRenderer->ToggleColoredLights(); |
1915 | 1797 continue; |
1798 case UIMSG_ToggleTint: | |
2153 | 1799 pRenderer->ToggleTint(); |
1915 | 1800 continue; |
2113 | 1801 case UIMSG_ChangeMusicVolume: //громкость музыки |
1802 if ( uMessageParam == 4 )//кнопка понижения | |
1915 | 1803 { |
1804 --uMusicVolimeMultiplier; | |
1805 if ( (char)uMusicVolimeMultiplier < 1 ) | |
1806 uMusicVolimeMultiplier = 0; | |
2113 | 1807 GUIWindow::Create(243, 216, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1); |
2114 | 1808 if ( uMusicVolimeMultiplier ) |
1809 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f, 0); | |
1810 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); | |
1915 | 1811 continue; |
1812 } | |
2113 | 1813 if ( uMessageParam == 5 )//кнопка повышения |
1915 | 1814 { |
1815 ++uMusicVolimeMultiplier; | |
1816 if ( (char)uMusicVolimeMultiplier > 9 ) | |
1817 uMusicVolimeMultiplier = 9; | |
2113 | 1818 GUIWindow::Create(435, 216, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1); |
1915 | 1819 if ( uMusicVolimeMultiplier ) |
2114 | 1820 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f, 0); |
1821 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); | |
1915 | 1822 continue; |
1823 } | |
2113 | 1824 uMusicVolimeMultiplier = (pMouse->GetCursorPos(&v202)->x - 263) / 17;//для задания громкости мышкой |
1915 | 1825 if ( (char)uMusicVolimeMultiplier > 9 ) |
1826 uMusicVolimeMultiplier = 9; | |
1827 if ( uMusicVolimeMultiplier ) | |
2114 | 1828 pAudioPlayer->PlaySound(SOUND_Bell, -1, 0, -1, 0, 0, pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f, 0); |
1829 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); | |
1915 | 1830 continue; |
1831 case UIMSG_ChangeSoundVolume: | |
1832 if ( uMessageParam == 4 )//reduce sound level button left | |
1833 { | |
1834 --uSoundVolumeMultiplier; | |
1835 if ( (char)uSoundVolumeMultiplier < 1 ) | |
1836 uSoundVolumeMultiplier = 0; | |
1837 GUIWindow::Create(243, 162, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1); | |
1838 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f); | |
1839 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0); | |
1840 continue; | |
1841 } | |
1842 if ( uMessageParam == 5 )//Increase sound level button right | |
1843 { | |
1844 ++uSoundVolumeMultiplier; | |
1845 if ( (char)uSoundVolumeMultiplier > 8 ) | |
1846 uSoundVolumeMultiplier = 9; | |
1847 //v168 = 1; | |
1848 v24 = 435; | |
1849 //v154 = (int)pBtn_SliderRight; | |
1850 GUIWindow::Create(v24, 0xA2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1); | |
1851 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f); | |
1852 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0); | |
1853 continue; | |
1854 } | |
1855 uSoundVolumeMultiplier = (pMouse->GetCursorPos(&v207)->x - 263) / 17; | |
1856 if ( (char)uSoundVolumeMultiplier > 8 ) | |
1857 uSoundVolumeMultiplier = 9; | |
1858 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f); | |
1859 pAudioPlayer->PlaySound((SoundID)218, -1, 0, -1, 0, 0, 0, 0); | |
1860 continue; | |
1861 case UIMSG_ToggleFlipOnExit: | |
1862 bFlipOnExit = bFlipOnExit == 0; | |
1863 continue; | |
1864 case UIMSG_ToggleAlwaysRun: | |
1865 bAlwaysRun = bAlwaysRun == 0; | |
1866 continue; | |
1867 case UIMSG_ToggleWalkSound: | |
1868 bWalkSound = bWalkSound == 0; | |
1869 continue; | |
1870 case UIMSG_ToggleShowDamage: | |
1871 bShowDamage = bShowDamage == 0; | |
1872 continue; | |
1873 case UIMSG_ChangeVoiceVolume: | |
1874 if ( uMessageParam == 4 ) | |
1875 { | |
1876 --uVoicesVolumeMultiplier; | |
1877 if ( (char)uVoicesVolumeMultiplier < 1 ) | |
1878 uVoicesVolumeMultiplier = 0; | |
1879 GUIWindow::Create(243, 270, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderLeft, (char *)1); | |
1880 if ( !uVoicesVolumeMultiplier ) | |
1881 continue; | |
1882 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0); | |
1883 continue; | |
1884 } | |
1885 if ( uMessageParam == 5 ) | |
1886 { | |
1887 ++uVoicesVolumeMultiplier; | |
1888 if ( (char)uVoicesVolumeMultiplier > 8 ) | |
1889 uVoicesVolumeMultiplier = 9; | |
1890 GUIWindow::Create(435, 270, 0, 0, WINDOW_PressedButton2, (int)pBtn_SliderRight, (char *)1); | |
1891 if ( !uVoicesVolumeMultiplier ) | |
1892 continue; | |
1893 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0); | |
1894 continue; | |
1895 } | |
1896 uVoicesVolumeMultiplier = (pMouse->GetCursorPos(&v205)->x - 263) / 17; | |
1897 if ( (char)uVoicesVolumeMultiplier > 8 ) | |
1898 uVoicesVolumeMultiplier = 9; | |
1899 if ( !uVoicesVolumeMultiplier ) | |
1900 continue; | |
2224 | 1901 pAudioPlayer->PlaySound((SoundID)5788, -1, 0, -1, 0, 0, pSoundVolumeLevels[uVoicesVolumeMultiplier] * 128.0f, 0); |
1902 continue; | |
1915 | 1903 case UIMSG_SetTurnSpeed: |
1904 if ( uMessageParam ) | |
1905 pParty->sRotationY = uMessageParam * pParty->sRotationY / uMessageParam; | |
1906 uTurnSpeed = uMessageParam; | |
1907 continue; | |
2151 | 1908 |
1915 | 1909 case UIMSG_SetGraphicsMode: |
2151 | 1910 /*if ( !bUseLoResSprites ) |
1915 | 1911 { |
1912 byte_6BE388_graphicsmode = uMessageParam; | |
1913 MM7Initialization(); | |
1914 continue; | |
1915 } | |
1916 if ( uMessageParam ) | |
1917 { | |
1918 if ( uMessageParam == 1 ) | |
1919 { | |
1920 byte_6BE388_graphicsmode = 0; | |
1921 } | |
1922 else | |
1923 { | |
1924 if ( uMessageParam != 2 ) | |
1925 continue; | |
1926 byte_6BE388_graphicsmode = 1; | |
1927 } | |
1928 MM7Initialization(); | |
1929 continue; | |
2151 | 1930 }*/ |
1915 | 1931 ModalWindow(pNPCTopics[453].pText, UIMSG_0); |
2151 | 1932 __debugbreak(); // Nomad: graphicsmode as it was now removed |
1915 | 1933 continue; |
2151 | 1934 |
1915 | 1935 case UIMSG_GameMenu_ReturnToGame: |
1936 pGUIWindow_CurrentMenu->Release(); | |
1937 pEventTimer->Resume(); | |
1938 pCurrentScreen = SCREEN_GAME; | |
1939 viewparams->bRedrawGameUI = 1; | |
1940 stru_506E40.Release(); | |
1941 continue; | |
1942 case UIMSG_OpenQuestBook: | |
1943 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1944 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1945 if ( pCurrentScreen ) | |
1946 pGUIWindow_CurrentMenu->Release(); | |
1947 pEventTimer->Pause(); | |
1948 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1949 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, uMessage, 0); |
1915 | 1950 pBooksWindow = GUIWindow::Create(493u, 355u, 0, 0, WINDOW_BooksWindow, (int)pBtn_Quests, 0); |
1951 bFlashQuestBook = 0; | |
1952 continue; | |
1953 case UIMSG_OpenAutonotes: | |
1954 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1955 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1956 if ( pCurrentScreen ) | |
1957 pGUIWindow_CurrentMenu->Release(); | |
1958 pEventTimer->Pause(); | |
1959 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1960 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, uMessage, 0); |
1915 | 1961 pBooksWindow = GUIWindow::Create(527u, 353u, 0, 0, WINDOW_BooksWindow, (int)pBtn_Autonotes, 0); |
1962 bFlashAutonotesBook = 0; | |
1963 continue; | |
1964 case UIMSG_OpenMapBook: | |
1965 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1966 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1967 if ( pCurrentScreen ) | |
1968 pGUIWindow_CurrentMenu->Release(); | |
1969 pEventTimer->Pause(); | |
1970 viewparams->sViewCenterX = pParty->vPosition.x; | |
1971 viewparams->sViewCenterY = pParty->vPosition.y; | |
1972 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1973 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, uMessage, 0); |
1915 | 1974 pBooksWindow = GUIWindow::Create(546, 353, 0, 0, WINDOW_BooksWindow, (int)pBtn_Maps, 0); |
1975 continue; | |
1976 case UIMSG_OpenCalendar: | |
1977 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1978 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1979 if ( pCurrentScreen ) | |
1980 pGUIWindow_CurrentMenu->Release(); | |
1981 pEventTimer->Pause(); | |
1982 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1983 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, uMessage, 0); |
1915 | 1984 pBooksWindow = GUIWindow::Create(570, 354, 0, 0, WINDOW_BooksWindow, (int)pBtn_Calendar, 0); |
1985 continue; | |
1986 case UIMSG_OpenHistoryBook: | |
1987 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1988 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1989 if ( pCurrentScreen ) | |
1990 pGUIWindow_CurrentMenu->Release(); | |
1991 pEventTimer->Pause(); | |
1992 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
1993 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, uMessage, 0); |
1915 | 1994 pBooksWindow = GUIWindow::Create(0x258u, 0x169u, 0, 0, WINDOW_BooksWindow, (int)pBtn_History, 0); |
1995 bFlashHistoryBook = 0; | |
1996 continue; | |
1997 case UIMSG_Escape:// нажатие Escape and return to game | |
1998 back_to_game(); | |
1999 if ( pMessageQueue_50CBD0->uNumMessages ) | |
2000 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
2001 switch ( pCurrentScreen ) | |
2002 { | |
2003 case SCREEN_E: | |
2004 __debugbreak(); | |
2005 case SCREEN_NPC_DIALOGUE: | |
2006 case SCREEN_CHEST: | |
2007 case SCREEN_CHEST_INVENTORY: | |
2008 case SCREEN_CHANGE_LOCATION: | |
2009 case SCREEN_INPUT_BLV: | |
2010 case SCREEN_QUICK_REFERENCE: | |
2011 if ( dword_50CDC8 ) | |
2012 break; | |
2013 CloseWindowBackground(); | |
2014 uMessageParam = 1; | |
2015 break; | |
2016 case SCREEN_HOUSE: | |
2154 | 2017 if ( !dword_50CDC8 ) |
1915 | 2018 { |
2019 CloseWindowBackground(); | |
2020 uMessageParam = 1; | |
2021 break; | |
2022 } | |
2023 break; | |
2024 } | |
2025 if ( !pModalWindow ) | |
2026 { | |
2027 pRenderer->ClearZBuffer(0, 479); | |
2028 viewparams->bRedrawGameUI = 1; | |
2029 viewparams->field_48 = 1; | |
2030 if ( pCurrentScreen ) | |
2031 { | |
2032 if ( pCurrentScreen > SCREEN_67 ) | |
2033 { | |
2034 if ( pCurrentScreen == SCREEN_QUICK_REFERENCE ) | |
2035 { | |
2036 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2037 if ( pGUIWindow_Settings ) | |
2038 { | |
2039 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2040 pMouse->SetCursorBitmap("MICON2"); | |
2041 else | |
2042 { | |
2043 pGUIWindow_Settings->Release(); | |
2044 pGUIWindow_Settings = 0; | |
2045 pMouse->SetCursorBitmap("MICON1"); | |
2046 GameUI_Footer_TimeLeft = 0; | |
2047 _50C9A0_IsEnchantingInProgress = 0; | |
2048 back_to_game(); | |
2049 } | |
2050 } | |
2051 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2052 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2053 pGUIWindow_CurrentMenu->Release(); | |
2054 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2055 window_SpeakInHouse = 0; | |
2056 pGUIWindow_CurrentMenu = 0; | |
2057 pEventTimer->Resume(); | |
2058 pCurrentScreen = SCREEN_GAME; | |
2059 viewparams->bRedrawGameUI = 1; | |
2060 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2061 continue; | |
2062 } | |
2063 } | |
2064 else | |
2065 { | |
2066 if ( pCurrentScreen < SCREEN_64 ) | |
2067 { | |
2068 switch ( pCurrentScreen ) | |
2069 { | |
2070 case SCREEN_CASTING: | |
2071 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2072 if ( some_active_character ) | |
2073 { | |
2074 uActiveCharacter = some_active_character; | |
2075 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2076 some_active_character = 0; | |
2077 if ( pParty->bTurnBasedModeOn ) | |
2078 pTurnEngine->ApplyPlayerAction(); | |
2079 _50C9D0_AfterEnchClickEventId = 0; | |
2080 _50C9D4_AfterEnchClickEventSecondParam = 0; | |
2081 _50C9D8_AfterEnchClickEventTimeout = 0; | |
2082 } | |
2083 if ( ptr_50C9A4_ItemToEnchant && ptr_50C9A4_ItemToEnchant->uItemID ) | |
2084 { | |
2085 LOBYTE(ptr_50C9A4_ItemToEnchant->uAttributes) &= 0xFu; | |
2086 _50C9A8_item_enchantment_timer = 0; | |
2369
bddcaf5d5db2
removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents:
2358
diff
changeset
|
2087 ptr_50C9A4_ItemToEnchant = nullptr; |
1915 | 2088 } |
2089 if ( pGUIWindow_Settings ) | |
2090 { | |
2217 | 2091 if ( pCurrentScreen == SCREEN_CHARACTERS ) |
2092 pMouse->SetCursorBitmap("MICON2"); | |
2093 else | |
2094 { | |
2095 pGUIWindow_Settings->Release(); | |
2096 pGUIWindow_Settings = 0; | |
2097 pMouse->SetCursorBitmap("MICON1"); | |
2098 GameUI_Footer_TimeLeft = 0; | |
2099 _50C9A0_IsEnchantingInProgress = 0; | |
2100 back_to_game(); | |
1915 | 2101 } |
2102 } | |
2103 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2104 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2105 pGUIWindow_CurrentMenu->Release(); | |
2106 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2107 window_SpeakInHouse = 0; | |
2108 pGUIWindow_CurrentMenu = 0; | |
2109 pEventTimer->Resume(); | |
2110 pCurrentScreen = SCREEN_GAME; | |
2111 viewparams->bRedrawGameUI = 1; | |
2112 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2113 continue; | |
2114 case SCREEN_BOOKS: | |
2115 pBooksWindow->Release(); | |
2116 //crt_deconstruct_ptr_6A0118(); | |
2117 pBooksWindow = 0; | |
2118 pEventTimer->Resume(); | |
2119 if ( pGUIWindow_Settings ) | |
2120 { | |
2121 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2217 | 2122 pMouse->SetCursorBitmap("MICON2"); |
1915 | 2123 else |
2124 { | |
2217 | 2125 pGUIWindow_Settings->Release(); |
2126 pGUIWindow_Settings = 0; | |
2127 pMouse->SetCursorBitmap("MICON1"); | |
2128 GameUI_Footer_TimeLeft = 0; | |
2129 _50C9A0_IsEnchantingInProgress = 0; | |
2130 back_to_game(); | |
1915 | 2131 } |
2132 } | |
2133 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2134 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2135 pGUIWindow_CurrentMenu->Release(); | |
2136 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2137 window_SpeakInHouse = 0; | |
2138 pGUIWindow_CurrentMenu = 0; | |
2139 pEventTimer->Resume(); | |
2140 pCurrentScreen = SCREEN_GAME; | |
2141 viewparams->bRedrawGameUI = 1; | |
2142 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2143 continue; | |
2144 case SCREEN_SAVEGAME: | |
2145 case SCREEN_LOADGAME: | |
2146 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2147 //crt_deconstruct_ptr_6A0118(); | |
2148 stru_506E40.Release(); | |
2149 break; | |
2150 case SCREEN_CHEST_INVENTORY: | |
2151 pCurrentScreen = SCREEN_CHEST; | |
2152 continue; | |
2153 case SCREEN_CHEST: | |
2154 pWindow2 = pChestWindow; | |
2155 pWindow2->Release(); | |
2156 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2157 pCurrentScreen = SCREEN_GAME; | |
2158 viewparams->bRedrawGameUI = 1; | |
2159 pEventTimer->Resume(); | |
2160 continue; | |
2161 case SCREEN_19: | |
2162 __debugbreak(); | |
2163 pWindow2 = ptr_507BC8; | |
2164 pWindow2->Release(); | |
2165 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2166 pCurrentScreen = SCREEN_GAME; | |
2167 viewparams->bRedrawGameUI = 1; | |
2168 pEventTimer->Resume(); | |
2169 continue; | |
2170 case SCREEN_OPTIONS://Close | |
2171 options_menu_skin.Relaease(); | |
2172 pIcons_LOD->SyncLoadedFilesCount(); | |
2173 WriteWindowsRegistryInt("soundflag", (char)uSoundVolumeMultiplier); | |
2174 WriteWindowsRegistryInt("musicflag", (char)uMusicVolimeMultiplier); | |
2175 WriteWindowsRegistryInt("CharVoices", (char)uVoicesVolumeMultiplier); | |
2176 WriteWindowsRegistryInt("WalkSound", bWalkSound); | |
2177 WriteWindowsRegistryInt("ShowDamage", bShowDamage); | |
2151 | 2178 //WriteWindowsRegistryInt("graphicsmode", (unsigned __int8)byte_6BE388_graphicsmode); |
1915 | 2179 WriteWindowsRegistryInt("valAlwaysRun", bAlwaysRun); |
2180 WriteWindowsRegistryInt("FlipOnExit", bFlipOnExit); | |
2181 if ( !uTurnSpeed ) | |
2182 { | |
2183 WriteWindowsRegistryInt("TurnDelta", 3); | |
2184 stru_506E40.Release(); | |
2185 break; | |
2186 } | |
2187 if ( uTurnSpeed == 64 ) | |
2188 { | |
2189 WriteWindowsRegistryInt("TurnDelta", 2); | |
2190 stru_506E40.Release(); | |
2191 break; | |
2192 } | |
2193 if ( uTurnSpeed != 128 ) | |
2194 { | |
2195 stru_506E40.Release(); | |
2196 break; | |
2197 } | |
2198 WriteWindowsRegistryInt("TurnDelta", 1); | |
2199 stru_506E40.Release(); | |
2200 break; | |
2201 case SCREEN_MENU: | |
2202 pIcons_LOD->SyncLoadedFilesCount(); | |
2203 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2204 pIcons_LOD->SyncLoadedFilesCount(); | |
2205 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2206 stru_506E40.Release(); | |
2207 break; | |
2208 case SCREEN_VIDEO_OPTIONS: | |
2153 | 2209 //if ( pRenderer->pRenderD3D ) |
1915 | 2210 { |
2211 WriteWindowsRegistryInt("Colored Lights", pRenderer->bUseColoredLights); | |
2212 WriteWindowsRegistryInt("Tinting", pRenderer->bTinting); | |
2213 WriteWindowsRegistryInt("Bloodsplats", (LOBYTE(pGame->uFlags2) >> 5) & 1); | |
2214 } | |
2155 | 2215 /*if ( !pRenderer->bWindowMode ) |
2216 WriteWindowsRegistryInt("GammaPos", uGammaPos);*/ | |
2154 | 2217 |
1915 | 2218 stru_506E40.Release(); |
2219 break; | |
2220 | |
2221 case SCREEN_KEYBOARD_OPTIONS://Return to game | |
2222 v197 = 1; | |
2223 v32 = 0; | |
2224 while ( !GameMenuUI_InvaligKeyBindingsFlags[v32]) | |
2225 { | |
2226 ++v32; | |
2227 if ( v32 >= 28 ) | |
2228 { | |
2229 thisb = (signed int)&uTextureID_Optkb; | |
2230 assert(false && "Invalid condition values"); | |
2231 do | |
2232 { | |
2233 if ( *(int *)thisb ) | |
2234 pIcons_LOD->pTextures[*(int *)thisb].Release(); | |
2235 thisb += 4; | |
2236 } | |
2237 while ( thisb < (signed int)0x00507C08 ); | |
2238 | |
2239 memset(&uTextureID_Optkb, 0, 0x14u); | |
2240 pIcons_LOD->SyncLoadedFilesCount(); | |
2212 | 2241 for ( uAction = 0; uAction < 28; ++uAction ) |
1915 | 2242 { |
2243 v33 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
2244 if ( v33 != pPrevVirtualCidesMapping[uAction] ) | |
2245 { | |
2246 if ( v197 ) | |
2247 { | |
2248 v34 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
2249 GUI_ReplaceHotkey(v34, LOBYTE(pPrevVirtualCidesMapping[uAction]), 1); | |
2250 v197 = 0; | |
2251 } | |
2252 else | |
2253 { | |
2254 v35 = pKeyActionMap->GetActionVKey((enum InputAction)uAction); | |
2255 GUI_ReplaceHotkey(v35, LOBYTE(pPrevVirtualCidesMapping[uAction]), 0); | |
2256 } | |
2257 } | |
2258 if ( uAction && uAction != 2 && uAction != 3 && uAction != 1 && uAction != 25 && uAction != 26 ) | |
2201 | 2259 pKeyToggleType = TOGGLE_OneTimePress; |
1915 | 2260 else |
2201 | 2261 pKeyToggleType = TOGGLE_Continuously; |
1915 | 2262 pKeyActionMap->SetKeyMapping(uAction, pPrevVirtualCidesMapping[uAction], pKeyToggleType); |
2263 } | |
2264 pKeyActionMap->StoreMappings(); | |
2265 stru_506E40.Release(); | |
2266 break; | |
2267 } | |
2268 } | |
2269 break; | |
2270 case SCREEN_REST://close rest screen | |
2271 if ( dword_506F14 ) | |
2272 { | |
2273 Rest(_506F18_num_minutes_to_sleep); | |
2274 pParty->pPlayers[3].SetAsleep(false); | |
2275 pParty->pPlayers[2].SetAsleep(false); | |
2276 pParty->pPlayers[1].SetAsleep(false); | |
2277 pParty->pPlayers[0].SetAsleep(false); | |
2278 } | |
2279 pTexture_RestUI_CurrentSkyFrame->Release(); | |
2280 pTexture_RestUI_CurrentHourglassFrame->Release(); | |
2281 pTexture_RestUI_CurrentHourglassFrame = 0; | |
2282 pTexture_RestUI_CurrentSkyFrame = 0; | |
2283 pIcons_LOD->SyncLoadedFilesCount(); | |
2284 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2285 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
2286 { | |
2287 pOutdoor->UpdateSunlightVectors(); | |
2288 pOutdoor->UpdateFog(); | |
2289 } | |
2290 _506F18_num_minutes_to_sleep = 0; | |
2291 dword_506F14 = 0; | |
2292 if ( pGUIWindow_Settings ) | |
2293 { | |
2294 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2295 pMouse->SetCursorBitmap("MICON2"); | |
2296 else | |
2297 { | |
2298 pGUIWindow_Settings->Release(); | |
2299 pGUIWindow_Settings = 0; | |
2300 pMouse->SetCursorBitmap("MICON1"); | |
2301 GameUI_Footer_TimeLeft = 0; | |
2302 _50C9A0_IsEnchantingInProgress = 0; | |
2303 back_to_game(); | |
2217 | 2304 } |
1915 | 2305 } |
2306 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2307 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2308 pGUIWindow_CurrentMenu->Release(); | |
2309 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2310 window_SpeakInHouse = 0; | |
2311 pGUIWindow_CurrentMenu = 0; | |
2312 pEventTimer->Resume(); | |
2313 pCurrentScreen = SCREEN_GAME; | |
2314 viewparams->bRedrawGameUI = 1; | |
2315 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2316 continue; | |
2317 case SCREEN_E: | |
2318 __debugbreak(); | |
2319 pGUIWindow_CurrentMenu->Release(); | |
2320 pCurrentScreen = SCREEN_HOUSE; | |
2321 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2322 continue; | |
2323 case SCREEN_HOUSE: | |
2324 if ( uDialogueType ) | |
2325 uDialogueType = 0; | |
2124 | 2326 if ( uGameState == GAME_STATE_CHANGE_LOCATION ) |
1915 | 2327 { |
1919 | 2328 while ( HouseDialogPressCloseBtn() ) |
1915 | 2329 ; |
2330 } | |
2331 else | |
2332 { | |
1919 | 2333 if ( HouseDialogPressCloseBtn() ) |
1915 | 2334 continue; |
2335 } | |
2336 GetHouseGoodbyeSpeech(); | |
2337 pAudioPlayer->PlaySound(SOUND_7, 814, 0, -1, 0, 0, 0, 0); | |
2338 pVideoPlayer->Unload(); | |
2339 pGUIWindow_CurrentMenu = window_SpeakInHouse; | |
2340 if ( pGUIWindow_Settings ) | |
2341 { | |
2342 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2343 pMouse->SetCursorBitmap("MICON2"); | |
2344 else | |
2345 { | |
2346 pGUIWindow_Settings->Release(); | |
2347 pGUIWindow_Settings = 0; | |
2348 pMouse->SetCursorBitmap("MICON1"); | |
2349 GameUI_Footer_TimeLeft = 0; | |
2350 _50C9A0_IsEnchantingInProgress = 0; | |
2351 back_to_game(); | |
2352 } | |
2353 } | |
2354 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2355 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2356 pGUIWindow_CurrentMenu->Release(); | |
2357 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2358 window_SpeakInHouse = 0; | |
2359 pGUIWindow_CurrentMenu = 0; | |
2360 pEventTimer->Resume(); | |
2361 pCurrentScreen = SCREEN_GAME; | |
2362 viewparams->bRedrawGameUI = true; | |
2363 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2364 continue; | |
2365 case SCREEN_INPUT_BLV://click escape | |
2366 if ( uCurrentHouse_Animation == 153 ) | |
2367 PlayHouseSound(0x99u, HouseSound_Greeting_2); | |
2368 pVideoPlayer->Unload(); | |
2369 if ( npcIdToDismissAfterDialogue ) | |
2370 { | |
2371 pParty->hirelingScrollPosition = 0; | |
2372 LOBYTE(pNPCStats->pNewNPCData[npcIdToDismissAfterDialogue].uFlags) &= 0x7Fu; | |
2373 pParty->CountHirelings(); | |
2374 viewparams->bRedrawGameUI = true; | |
2375 npcIdToDismissAfterDialogue = 0; | |
2376 } | |
2377 DialogueEnding(); | |
2378 pCurrentScreen = SCREEN_GAME; | |
2379 viewparams->bRedrawGameUI = true; | |
2380 continue; | |
2381 case SCREEN_NPC_DIALOGUE://click escape | |
2382 if ( npcIdToDismissAfterDialogue ) | |
2383 { | |
2384 pParty->hirelingScrollPosition = 0; | |
2385 LOBYTE(pNPCStats->pNewNPCData[npcIdToDismissAfterDialogue].uFlags) &= 0x7Fu; | |
2386 pParty->CountHirelings(); | |
2387 viewparams->bRedrawGameUI = true; | |
2388 npcIdToDismissAfterDialogue = 0; | |
2389 } | |
2390 //goto LABEL_317; | |
2391 DialogueEnding(); | |
2392 pCurrentScreen = SCREEN_GAME; | |
2393 viewparams->bRedrawGameUI = true; | |
2394 continue; | |
2395 case SCREEN_BRANCHLESS_NPC_DIALOG://click escape | |
2396 memset(GameUI_Footer_TimedString.data(), 0, 0xC8u); | |
2397 sub_4452BB(); | |
2398 DialogueEnding(); | |
2399 pCurrentScreen = SCREEN_GAME; | |
2400 viewparams->bRedrawGameUI = true; | |
2401 continue; | |
2402 case SCREEN_CHANGE_LOCATION://click escape | |
2403 if ( pParty->vPosition.x < -22528 ) | |
2404 pParty->vPosition.x = -22528; | |
2405 if ( pParty->vPosition.x > 22528 ) | |
2406 pParty->vPosition.x = 22528; | |
2407 if ( pParty->vPosition.y < -22528 ) | |
2408 pParty->vPosition.y = -22528; | |
2409 if ( pParty->vPosition.y > 22528 ) | |
2410 pParty->vPosition.y = 22528; | |
2411 DialogueEnding(); | |
2412 pCurrentScreen = SCREEN_GAME; | |
2413 viewparams->bRedrawGameUI = true; | |
2414 continue; | |
2415 case SCREEN_VIDEO: | |
2416 pVideoPlayer->Unload(); | |
2417 continue; | |
2418 case SCREEN_CHARACTERS: | |
2419 CharacterUI_ReleaseButtons(); | |
2420 ReleaseAwardsScrollBar(); | |
2421 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2422 if ( pGUIWindow_Settings ) | |
2423 { | |
2424 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2425 pMouse->SetCursorBitmap("MICON2"); | |
2426 else | |
2427 { | |
2428 pGUIWindow_Settings->Release(); | |
2429 pGUIWindow_Settings = 0; | |
2430 pMouse->SetCursorBitmap("MICON1"); | |
2431 GameUI_Footer_TimeLeft = 0; | |
2432 _50C9A0_IsEnchantingInProgress = 0; | |
2433 back_to_game(); | |
2434 } | |
2435 } | |
2436 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2437 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2438 pGUIWindow_CurrentMenu->Release(); | |
2439 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2440 window_SpeakInHouse = 0; | |
2441 pGUIWindow_CurrentMenu = 0; | |
2442 pEventTimer->Resume(); | |
2443 pCurrentScreen = SCREEN_GAME; | |
2444 viewparams->bRedrawGameUI = true; | |
2445 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2446 continue; | |
2447 default: | |
2448 if ( pGUIWindow_Settings ) | |
2449 { | |
2450 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2451 pMouse->SetCursorBitmap("MICON2"); | |
2452 else | |
2453 { | |
2454 pGUIWindow_Settings->Release(); | |
2455 pGUIWindow_Settings = 0; | |
2456 pMouse->SetCursorBitmap("MICON1"); | |
2457 GameUI_Footer_TimeLeft = 0; | |
2458 _50C9A0_IsEnchantingInProgress = 0; | |
2459 back_to_game(); | |
2460 } | |
2461 } | |
2462 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2463 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2464 pGUIWindow_CurrentMenu->Release(); | |
2465 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2466 window_SpeakInHouse = 0; | |
2467 pGUIWindow_CurrentMenu = 0; | |
2468 pEventTimer->Resume(); | |
2469 pCurrentScreen = SCREEN_GAME; | |
2470 viewparams->bRedrawGameUI = 1; | |
2471 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2472 continue; | |
2473 } | |
2474 if ( pGUIWindow_Settings ) | |
2475 { | |
2476 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2477 pMouse->SetCursorBitmap("MICON2"); | |
2478 else | |
2479 { | |
2480 pGUIWindow_Settings->Release(); | |
2481 pGUIWindow_Settings = 0; | |
2482 pMouse->SetCursorBitmap("MICON1"); | |
2483 GameUI_Footer_TimeLeft = 0; | |
2484 _50C9A0_IsEnchantingInProgress = 0; | |
2485 back_to_game(); | |
2486 } | |
2487 } | |
2488 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2489 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2490 pGUIWindow_CurrentMenu->Release(); | |
2491 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2492 window_SpeakInHouse = 0; | |
2493 pGUIWindow_CurrentMenu = 0; | |
2494 pEventTimer->Resume(); | |
2495 pCurrentScreen = SCREEN_GAME; | |
2496 viewparams->bRedrawGameUI = true; | |
2497 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2498 continue; | |
2499 } | |
2500 CharacterUI_ReleaseButtons(); | |
2501 ReleaseAwardsScrollBar(); | |
2502 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
2503 } | |
2504 if ( pGUIWindow_Settings ) | |
2505 { | |
2506 if ( pCurrentScreen == SCREEN_CHARACTERS ) | |
2507 pMouse->SetCursorBitmap("MICON2"); | |
2508 else | |
2509 { | |
2510 pGUIWindow_Settings->Release(); | |
2511 pGUIWindow_Settings = 0; | |
2512 pMouse->SetCursorBitmap("MICON1"); | |
2513 GameUI_Footer_TimeLeft = 0; | |
2514 _50C9A0_IsEnchantingInProgress = 0; | |
2515 back_to_game(); | |
2516 } | |
2517 } | |
2518 if ( (signed int)uActiveCharacter < 1 || (signed int)uActiveCharacter > 4 ) | |
2519 uActiveCharacter = pParty->GetNextActiveCharacter(); | |
2520 pGUIWindow_CurrentMenu->Release(); | |
2521 if ( pGUIWindow_CurrentMenu == window_SpeakInHouse ) | |
2522 window_SpeakInHouse = 0; | |
2523 pGUIWindow_CurrentMenu = 0; | |
2524 pEventTimer->Resume(); | |
2525 pCurrentScreen = SCREEN_GAME; | |
2526 viewparams->bRedrawGameUI = true; | |
2527 pIcons_LOD->RemoveTexturesFromTextureList(); | |
2528 continue; | |
2529 } | |
2530 if ( !pGUIWindow_Settings )//Draw Menu | |
2531 { | |
2532 dword_6BE138 = -1; | |
2533 GUIWindow::Create(0x25Au, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_GameSettings, (char *)1); | |
2534 pEventTimer->Pause(); | |
2535 pAudioPlayer->StopChannels(-1, -1); | |
2536 pCurrentScreen = SCREEN_MENU; | |
2537 | |
2538 ++pIcons_LOD->uTexturePacksCount; | |
2539 if ( !pIcons_LOD->uNumPrevLoadedFiles ) | |
2540 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
2541 | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
2542 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_OptionsButtons, 0, 0); |
1915 | 2543 uTextureID_Options = pIcons_LOD->LoadTexture("options", TEXTURE_16BIT_PALETTE); |
2544 uTextureID_New1 = pIcons_LOD->LoadTexture("new1", TEXTURE_16BIT_PALETTE); | |
2545 uTextureID_Load1 = pIcons_LOD->LoadTexture("load1", TEXTURE_16BIT_PALETTE); | |
2546 uTextureID_Save1 = pIcons_LOD->LoadTexture("save1", TEXTURE_16BIT_PALETTE); | |
2547 uTextureID_Controls1 = pIcons_LOD->LoadTexture("controls1", TEXTURE_16BIT_PALETTE); | |
2548 uTextureID_Resume1 = pIcons_LOD->LoadTexture("resume1", TEXTURE_16BIT_PALETTE); | |
2549 uTextureID_Quit1 = pIcons_LOD->LoadTexture("quit1", TEXTURE_16BIT_PALETTE); | |
2550 pBtn_NewGame = pGUIWindow_CurrentMenu->CreateButton(0x13u, 0x9Bu, 0xD6u, 0x28u, 1, 0, UIMSG_StartNewGame, 0, 0x4Eu, | |
2551 pGlobalTXT_LocalizationStrings[614],// "New Game" | |
2552 pIcons_LOD->GetTexture(uTextureID_New1), 0); | |
2553 pBtn_SaveGame = pGUIWindow_CurrentMenu->CreateButton(0x13u, 0xD1u, 0xD6u, 0x28u, 1, 0, UIMSG_Game_OpenSaveGameDialog, 0, 0x53u, | |
2554 pGlobalTXT_LocalizationStrings[615],// "Save Game" | |
2555 pIcons_LOD->GetTexture(uTextureID_Save1), 0); | |
2556 pBtn_LoadGame = pGUIWindow_CurrentMenu->CreateButton(19, 263, 0xD6u, 0x28u, 1, 0, UIMSG_Game_OpenLoadGameDialog, 0, 0x4Cu, | |
2557 pGlobalTXT_LocalizationStrings[616],// "Load Game" | |
2558 pIcons_LOD->GetTexture(uTextureID_Load1), 0); | |
2559 pBtn_GameControls = pGUIWindow_CurrentMenu->CreateButton(241, 155, 214, 40, 1, 0, UIMSG_Game_OpenOptionsDialog, 0, 0x43u, | |
2560 pGlobalTXT_LocalizationStrings[617],// ""Sound, Keyboard, Game Options:"" | |
2561 pIcons_LOD->GetTexture(uTextureID_Controls1), 0); | |
2562 pBtn_QuitGame = pGUIWindow_CurrentMenu->CreateButton(241, 209, 214, 40, 1, 0, UIMSG_Quit, 0, 0x51u, | |
2563 pGlobalTXT_LocalizationStrings[618],// "Quit" | |
2564 pIcons_LOD->GetTexture(uTextureID_Quit1), 0); | |
2565 pBtn_Resume = pGUIWindow_CurrentMenu->CreateButton(241, 263, 214, 40, 1, 0, UIMSG_GameMenu_ReturnToGame, 0, 0x52u, | |
2566 pGlobalTXT_LocalizationStrings[619],// "Return to Game" | |
2567 pIcons_LOD->GetTexture(uTextureID_Resume1), 0); | |
2568 pGUIWindow_CurrentMenu->_41D08F_set_keyboard_control_group(6, 1, 0, 0); | |
2569 viewparams->field_48 = 1; | |
2154 | 2570 |
1915 | 2571 stru_506E40.Release(); |
2154 | 2572 pRenderer->SaveScreenshot("gamma.pcx", 155, 117); |
2131 | 2573 stru_506E40.LoadPCXFile("gamma.pcx", 0); |
2154 | 2574 |
1915 | 2575 continue; |
2576 } | |
2577 pGUIWindow_Settings->Release(); | |
2578 pGUIWindow_Settings = 0; | |
2579 pMouse->SetCursorBitmap("MICON1"); | |
2580 GameUI_Footer_TimeLeft = 0; | |
2581 _50C9A0_IsEnchantingInProgress = 0; | |
2582 back_to_game(); | |
2583 continue; | |
2584 } | |
2585 ModalWindow_Release(); | |
2586 continue; | |
2587 case UIMSG_ScrollNPCPanel://Right and Left button for NPCPanel | |
2588 if ( uMessageParam ) | |
2589 { | |
2590 GUIWindow::Create(626, 179, 0, 0, WINDOW_PressedButton2, (int)pBtn_NPCRight, 0); | |
2591 v37 = (pParty->pHirelings[0].pName != 0) + (pParty->pHirelings[1].pName != 0) + (unsigned __int8)pParty->field_70A - 2; | |
2592 if ( pParty->hirelingScrollPosition < v37 ) | |
2593 { | |
2594 ++pParty->hirelingScrollPosition;//??? maybe number of the first cell??? | |
2595 if ( pParty->hirelingScrollPosition >= v37 ) | |
2596 pParty->hirelingScrollPosition = (pParty->pHirelings[0].pName != 0) + (pParty->pHirelings[1].pName != 0) + pParty->field_70A - 2; | |
2597 } | |
2598 } | |
2599 else | |
2600 { | |
2601 GUIWindow::Create(469, 179, 0, 0, WINDOW_PressedButton2, (int)pBtn_NPCLeft, 0); | |
2602 /*if ( pParty->field_709 ) | |
2603 { | |
2604 --pParty->field_709; | |
2605 if ( pParty->field_709 < 1 ) | |
2606 pParty->field_709 = 0; | |
2607 }*/ | |
2608 } | |
2609 GameUI_DrawHiredNPCs(); | |
2610 continue; | |
2611 case UIMSG_TransitionUI_Confirm: | |
2612 if ( pMessageQueue_50CBD0->uNumMessages ) | |
2613 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
2614 dword_50CDC8 = 1; | |
2615 sub_42FBDD(); | |
2616 PlayHouseSound(uCurrentHouse_Animation, HouseSound_NotEnoughMoney_TrainingSuccessful); | |
2617 pVideoPlayer->Unload(); | |
2618 DialogueEnding(); | |
2124 | 2619 viewparams->bRedrawGameUI = true; |
1915 | 2620 if ( dword_59117C_teleportx | dword_591178_teleporty | dword_591174_teleportz | dword_591170_teleport_directiony | dword_59116C_teleport_directionx | dword_591168_teleport_speedz ) |
2621 { | |
2622 if ( dword_59117C_teleportx ) | |
2623 { | |
2624 pParty->vPosition.x = dword_59117C_teleportx; | |
2625 _5B65A8_npcdata_uflags_or_other = dword_59117C_teleportx; | |
2626 } | |
2627 if ( dword_591178_teleporty ) | |
2628 { | |
2629 pParty->vPosition.y = dword_591178_teleporty; | |
2630 _5B65AC_npcdata_fame_or_other = dword_591178_teleporty; | |
2631 } | |
2632 if ( dword_591174_teleportz ) | |
2633 { | |
2634 pParty->vPosition.z = dword_591174_teleportz; | |
2635 _5B65B0_npcdata_rep_or_other = dword_591174_teleportz; | |
2636 pParty->uFallStartY = dword_591174_teleportz; | |
2637 } | |
2638 if ( dword_591170_teleport_directiony ) | |
2639 { | |
2640 pParty->sRotationY = dword_591170_teleport_directiony; | |
2641 _5B65B4_npcdata_loword_house_or_other = dword_591170_teleport_directiony; | |
2642 } | |
2643 if ( dword_59116C_teleport_directionx ) | |
2644 { | |
2645 pParty->sRotationX = dword_59116C_teleport_directionx; | |
2646 _5B65B8_npcdata_hiword_house_or_other = dword_59116C_teleport_directionx; | |
2647 v38 = dword_591168_teleport_speedz; | |
2648 pParty->uFallSpeed = dword_591168_teleport_speedz; | |
2649 dword_5B65BC = dword_591168_teleport_speedz; | |
2650 } | |
2651 else | |
2652 v38 = dword_5B65BC; | |
2653 if ( *dword_591164_teleport_map_name != 48 ) | |
2654 { | |
2655 pGameLoadingUI_ProgressBar->uType = (GUIProgressBar::Type)2; | |
2656 dword_5B65C0 = _5B65A8_npcdata_uflags_or_other | _5B65AC_npcdata_fame_or_other | _5B65B0_npcdata_rep_or_other | _5B65B4_npcdata_loword_house_or_other | _5B65B8_npcdata_hiword_house_or_other | v38; | |
2657 OnMapLeave(); | |
2101 | 2658 Transition_StopSound_Autosave(dword_591164_teleport_map_name, MapStartPoint_Party); |
1915 | 2659 } |
2660 } | |
2661 else | |
2662 EventProcessor(dword_5C3418, 0, 1, dword_5C341C); | |
2663 if ( !_stricmp(byte_6BE3B0.data(), "d05.blv") ) | |
2664 pParty->uTimePlayed += 1474560i64; | |
2665 continue; | |
2666 case UIMSG_TransitionWindowCloseBtn: | |
2667 CloseWindowBackground(); | |
2668 pVideoPlayer->Unload(); | |
2669 DialogueEnding(); | |
2670 viewparams->bRedrawGameUI = true; | |
2671 continue; | |
2672 case UIMSG_CycleCharacters: | |
2673 v39 = GetAsyncKeyState(VK_SHIFT); | |
2674 uActiveCharacter = CycleCharacter(v39); | |
2675 viewparams->bRedrawGameUI = true; | |
2676 continue; | |
2677 case UIMSG_OnTravelByFoot: | |
2678 if ( pMessageQueue_50CBD0->uNumMessages ) | |
2679 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
2680 dword_50CDC8 = 1; | |
2681 sub_42FBDD(); | |
2682 //pNPCData4 = (NPCData *)GetTravelTime(); | |
2683 strcpy(pOutdoor->pLevelFilename, pCurrentMapName); | |
2684 if ( bUnderwater != 1 && pParty->bFlying | |
2685 || pOutdoor->GetTravelDestination(pParty->vPosition.x, pParty->vPosition.y, pOut, 20) != 1 ) | |
2686 { | |
2687 viewparams->bRedrawGameUI = 1; | |
2688 CloseWindowBackground(); | |
2689 if ( pParty->vPosition.x < -22528 ) | |
2690 pParty->vPosition.x = -22528; | |
2691 if ( pParty->vPosition.x > 22528 ) | |
2692 pParty->vPosition.x = 22528; | |
2693 if ( pParty->vPosition.y < -22528 ) | |
2694 pParty->vPosition.y = -22528; | |
2695 if ( pParty->vPosition.y > 22528 ) | |
2696 pParty->vPosition.y = 22528; | |
2697 DialogueEnding(); | |
2698 pCurrentScreen = SCREEN_GAME; | |
2699 } | |
2700 else | |
2701 { | |
2702 pParty->field_6E4 = 0; | |
2703 pParty->field_6E0 = 0; | |
2704 CastSpellInfoHelpers::_427D48(); | |
2705 DialogueEnding(); | |
2706 pEventTimer->Pause(); | |
2707 pGameLoadingUI_ProgressBar->Initialize(GUIProgressBar::TYPE_Box); | |
2708 ++pGameLoadingUI_ProgressBar->uProgressMax; | |
2709 SaveGame(1, 0); | |
2710 pGameLoadingUI_ProgressBar->Progress(); | |
2711 RestAndHeal(1440 * (signed int)GetTravelTime()); | |
2712 if ( pParty->uNumFoodRations ) | |
2713 { | |
2714 pParty->RestAndHeal(); | |
2715 if ( ((pParty->uNumFoodRations - (signed int)GetTravelTime()) & 0x80000000u) != 0 ) | |
2716 { | |
2717 pPlayer7 = pParty->pPlayers.data(); | |
2718 do | |
2719 { | |
2720 pPlayer7->SetCondition(1, 0); | |
2721 ++pPlayer7; | |
2722 } | |
2723 while ( (signed int)pPlayer7 < (signed int)pParty->pHirelings.data() ); | |
2724 ++pParty->days_played_without_rest; | |
2725 } | |
2726 Party::TakeFood((unsigned int)GetTravelTime()); | |
2727 } | |
2728 else | |
2729 { | |
2730 pPlayer8 = pParty->pPlayers.data(); | |
2731 do | |
2732 { | |
2733 pPlayer8->SetCondition(1, 0); | |
2734 ++pPlayer8; | |
2735 } | |
2736 while ( (signed int)pPlayer8 < (signed int)pParty->pHirelings.data() ); | |
2737 ++pParty->days_played_without_rest; | |
2738 } | |
2739 pPaletteManager->ResetNonLocked(); | |
2740 pSpriteFrameTable->ResetSomeSpriteFlags(); | |
2741 strcpy(pCurrentMapName, pOut); | |
2742 strcpy(pLevelName, pCurrentMapName); | |
2743 v41 = strtok(pLevelName, "."); | |
2744 strcpy(pLevelName, v41); | |
2745 Level_LoadEvtAndStr(pLevelName); | |
2746 pDecalBuilder->Reset(0); | |
2747 LoadLevel_InitializeLevelEvt(); | |
2748 uLevelMapStatsID = pMapStats->GetMapInfo(pCurrentMapName); | |
2749 bUnderwater = 0; | |
2750 bNoNPCHiring = 0; | |
2751 pGame->uFlags2 &= 0xFFFFFFF7u; | |
2752 if ( Is_out15odm_underwater() ) | |
2753 { | |
2754 bUnderwater = 1; | |
2755 pGame->uFlags2 |= 8u; | |
2756 } | |
2757 if ( !_stricmp(pCurrentMapName, "out15.odm") || !_stricmp(pCurrentMapName, "d47.blv") ) | |
2758 bNoNPCHiring = 1; | |
2759 PrepareToLoadODM(1u, (ODMRenderParams *)1); | |
2760 pAudioPlayer->SetMapEAX(); | |
2761 bDialogueUI_InitializeActor_NPC_ID = 0; | |
2762 OnMapLoad(); | |
2763 pOutdoor->SetFog(); | |
2764 TeleportToStartingPoint(uLevel_StartingPointType); | |
2765 pParty->vPosition.z = GetTerrainHeightsAroundParty2(pParty->vPosition.x, pParty->vPosition.y, &v213, 0); | |
2766 pParty->uFallStartY = pParty->vPosition.z; | |
2767 _461103_load_level_sub(); | |
2768 pEventTimer->Resume(); | |
2769 viewparams->bRedrawGameUI = 1; | |
2770 pCurrentScreen = SCREEN_GAME; | |
2771 pGameLoadingUI_ProgressBar->Release(); | |
2772 } | |
2773 viewparams->bRedrawGameUI = 1; | |
2774 continue; | |
2775 case UIMSG_CHANGE_LOCATION_ClickCencelBtn: | |
2776 CloseWindowBackground(); | |
2777 if ( pParty->vPosition.x < -22528 ) | |
2778 pParty->vPosition.x = -22528; | |
2779 if ( pParty->vPosition.x > 22528 ) | |
2780 pParty->vPosition.x = 22528; | |
2781 if ( pParty->vPosition.y < -22528 ) | |
2782 pParty->vPosition.y = -22528; | |
2783 if ( pParty->vPosition.y > 22528 ) | |
2784 pParty->vPosition.y = 22528; | |
2785 DialogueEnding(); | |
2786 pCurrentScreen = SCREEN_GAME; | |
2787 viewparams->bRedrawGameUI = 1; | |
2788 continue; | |
2789 case UIMSG_CastSpell_Telekinesis: | |
2153 | 2790 //if ( pRenderer->pRenderD3D ) |
1915 | 2791 LOWORD(v42) = pGame->pVisInstance->get_picked_object_zbuf_val(); |
2153 | 2792 /*else |
1915 | 2793 { |
2794 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v210); | |
2795 pPoint = pMouse->GetCursorPos(&v208); | |
2796 v42 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint->y]]; | |
2153 | 2797 }*/ |
1915 | 2798 v44 = (unsigned __int16)v42; |
2799 v45 = PID_TYPE(v44); | |
2800 uNumSeconds = v44; | |
2801 v46 = PID_ID(v44); | |
2802 if ( v45 == 3 ) | |
2803 { | |
2804 v47 = pActors[v46].uAIState == Dead; | |
2805 if ( !v47 ) | |
2806 continue; | |
2807 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
2808 pSpellInfo->uFlags &= ~0x40u; | |
2809 pSpellInfo->uPlayerID_2 = uMessageParam; | |
2810 pSpellInfo->spell_target_pid = v44; | |
2811 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
2812 pGUIWindow_Settings->Release(); | |
2813 pGUIWindow_Settings = 0; | |
2814 pMouse->SetCursorBitmap("MICON1"); | |
2815 GameUI_Footer_TimeLeft = 0; | |
2816 _50C9A0_IsEnchantingInProgress = 0; | |
2817 back_to_game(); | |
2818 continue; | |
2819 } | |
2820 if ( v45 == 2 ) | |
2821 { | |
2822 v47 = (pObjectList->pObjects[pSpriteObjects[v46].uObjectDescID].uFlags & 0x10) == 0; | |
2823 if ( !v47 ) | |
2824 continue; | |
2825 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
2826 pSpellInfo->uFlags &= ~0x40u; | |
2827 pSpellInfo->uPlayerID_2 = uMessageParam; | |
2828 pSpellInfo->spell_target_pid = v44; | |
2829 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
2830 pGUIWindow_Settings->Release(); | |
2831 pGUIWindow_Settings = 0; | |
2832 pMouse->SetCursorBitmap("MICON1"); | |
2833 GameUI_Footer_TimeLeft = 0; | |
2834 _50C9A0_IsEnchantingInProgress = 0; | |
2835 back_to_game(); | |
2836 continue; | |
2837 } | |
2838 if ( v45 == 5 ) | |
2839 { | |
2840 v48 = pLevelDecorations[v46].uEventID == 0; | |
2841 } | |
2842 else | |
2843 { | |
2844 if ( v45 != 6 ) | |
2845 continue; | |
2846 if ( uCurrentlyLoadedLevelType != 1 ) | |
2847 { | |
2848 pODMFace = &pOutdoor->pBModels[v44 >> 9].pFaces[v46 & 0x3F]; | |
2092 | 2849 if ( !pODMFace->Clickable() || !pODMFace->sCogTriggeredID ) |
1915 | 2850 continue; |
2851 v44 = uNumSeconds; | |
2852 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
2853 pSpellInfo->uFlags &= ~0x40u; | |
2854 pSpellInfo->uPlayerID_2 = uMessageParam; | |
2855 pSpellInfo->spell_target_pid = v44; | |
2856 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
2857 pGUIWindow_Settings->Release(); | |
2858 pGUIWindow_Settings = 0; | |
2859 pMouse->SetCursorBitmap("MICON1"); | |
2860 GameUI_Footer_TimeLeft = 0; | |
2861 _50C9A0_IsEnchantingInProgress = 0; | |
2862 back_to_game(); | |
2863 continue; | |
2864 } | |
2865 pBLVFace = &pIndoor->pFaces[v46]; | |
2092 | 2866 if ( !pBLVFace->Clickable() ) |
1915 | 2867 continue; |
2868 v48 = pIndoor->pFaceExtras[pBLVFace->uFaceExtraID].uEventID == 0; | |
2869 } | |
2870 if ( v48 ) | |
2871 continue; | |
2872 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
2873 pSpellInfo->uFlags &= ~0x40u; | |
2874 pSpellInfo->uPlayerID_2 = uMessageParam; | |
2875 pSpellInfo->spell_target_pid = v44; | |
2876 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
2877 pGUIWindow_Settings->Release(); | |
2878 pGUIWindow_Settings = 0; | |
2879 pMouse->SetCursorBitmap("MICON1"); | |
2880 GameUI_Footer_TimeLeft = 0; | |
2881 _50C9A0_IsEnchantingInProgress = 0; | |
2882 back_to_game(); | |
2883 continue; | |
2884 case UIMSG_CastSpell_Character_Big_Improvement://Preservation and blessing, treatment paralysis, hand hammers(individual upgrade) | |
2885 case UIMSG_CastSpell_Character_Small_Improvement://Fate, cure | |
2886 case UIMSG_HiredNPC_CastSpell: | |
2887 if ( pMessageQueue_50CBD0->uNumMessages ) | |
2888 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
2889 if ( _50C9A0_IsEnchantingInProgress ) | |
2890 { | |
2891 uActiveCharacter = uMessageParam; | |
2892 viewparams->bRedrawGameUI = 1; | |
2893 } | |
2894 else | |
2895 { | |
2896 if ( pGUIWindow_Settings ) | |
2897 { | |
2898 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
2899 switch ( uMessage ) | |
2900 { | |
2901 case UIMSG_CastSpell_Character_Big_Improvement: | |
2902 pSpellInfo->uFlags &= ~0x02u; | |
2903 break; | |
2904 case UIMSG_CastSpell_Character_Small_Improvement: | |
2905 pSpellInfo->uFlags &= ~0x0100u; | |
2906 break; | |
2907 case UIMSG_HiredNPC_CastSpell: | |
2908 pSpellInfo->uFlags &= ~0x0200u; | |
2909 break; | |
2910 } | |
2911 pSpellInfo->uPlayerID_2 = uMessageParam; | |
2912 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
2913 pGUIWindow_Settings->Release(); | |
2914 pGUIWindow_Settings = 0; | |
2915 pEventTimer->Resume(); | |
2916 pMouse->SetCursorBitmap("MICON1"); | |
2917 GameUI_Footer_TimeLeft = 0; | |
2918 _50C9A0_IsEnchantingInProgress = 0; | |
2919 } | |
2920 } | |
2921 continue; | |
2922 case UIMSG_BF: | |
2923 __debugbreak(); | |
2924 dword_50CDC8 = 1; | |
2925 sub_42FBDD(); | |
2926 SaveGame(1, 0); | |
2927 strcpy(pCurrentMapName, pMapStats->pInfos[uHouse_ExitPic].pFilename); | |
2061 | 2928 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0001; |
2124 | 2929 uGameState = GAME_STATE_CHANGE_LOCATION; |
1915 | 2930 //v53 = p2DEvents_minus1_::30[26 * (unsigned int)ptr_507BC0->ptr_1C]; |
2931 v53 = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1]._quest_related; | |
2932 if ( v53 < 0 ) | |
2933 { | |
2934 v54 = abs(v53) - 1; | |
2935 _5B65B8_npcdata_hiword_house_or_other = 0; | |
2936 dword_5B65BC = 0; | |
2937 v55 = dword_4E4560[v54]; | |
2938 _5B65AC_npcdata_fame_or_other = dword_4E4578[v54]; | |
2939 v56 = dword_4E4590[v54]; | |
2940 v57 = dword_4E45A8[v54]; | |
2941 _5B65A8_npcdata_uflags_or_other = v55; | |
2942 _5B65B4_npcdata_loword_house_or_other = v57; | |
2943 _5B65B0_npcdata_rep_or_other = v56; | |
2944 dword_5B65C0 = v55 | _5B65AC_npcdata_fame_or_other | v56 | v57; | |
2945 } | |
1919 | 2946 HouseDialogPressCloseBtn(); |
1915 | 2947 //goto LABEL_434; |
2948 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) | |
2949 { | |
2950 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; | |
2951 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v0; | |
2952 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
2953 ++pMessageQueue_50CBD0->uNumMessages; | |
2954 }*/ | |
2402 | 2955 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0); |
1915 | 2956 continue; |
2957 | |
2958 case UIMSG_OnCastTownPortal: | |
2959 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
2960 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, WINDOW_TownPortal, (char *)uMessageParam); |
1915 | 2961 continue; |
2962 | |
2963 case UIMSG_OnCastLloydsBeacon: | |
2964 pAudioPlayer->StopChannels(-1, -1); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
2965 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_Book, WINDOW_LloydsBeacon, 0); |
1915 | 2966 continue; |
2967 | |
2968 case UIMSG_LloydsBeacon_FlippingBtn: | |
2969 bRecallingBeacon = uMessageParam; | |
2970 v127 = uMessageParam + 204; | |
2971 pAudioPlayer->PlaySound((SoundID)v127, 0, 0, -1, 0, 0, 0, 0); | |
2972 continue; | |
2973 case UIMSG_HintBeaconSlot: | |
2974 if ( !pGUIWindow_CurrentMenu ) | |
2975 continue; | |
2976 pPlayer = pPlayers[_506348_current_lloyd_playerid + 1]; | |
2977 uNumSeconds = (unsigned int)&pPlayer->pInstalledBeacons[uMessageParam]; | |
2978 if ( bRecallingBeacon ) | |
2979 { | |
2980 if ( !*((int *)&pSavegameThumbnails[10 * uMessageParam].pPixels ) ) | |
2981 continue; | |
2259 | 2982 v173 = pMapStats->pInfos[pMapStats->sub_410D99_get_map_index(pPlayer->pInstalledBeacons[uMessageParam].SaveFileID)].pName; |
1915 | 2983 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[474], v173);// "Recall to %s" |
2984 GameUI_SetFooterString(pTmpBuf.data()); | |
2985 continue; | |
2986 } | |
2987 pMapNum = pMapStats->GetMapInfo(pCurrentMapName); | |
2988 pMapName = "Not in Map Stats"; | |
2989 if ( pMapNum ) | |
2990 pMapName = pMapStats->pInfos[pMapNum].pName; | |
2991 if ( !*((int *)&pSavegameThumbnails[10 * uMessageParam].pPixels ) || !pMapNum ) | |
2992 { | |
2993 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[476], pMapName);// "Set to %s" | |
2994 GameUI_SetFooterString(pTmpBuf.data()); | |
2995 continue; | |
2996 } | |
2259 | 2997 v174 = pMapStats->pInfos[pMapStats->sub_410D99_get_map_index(*(short *)(uNumSeconds + 26))].pName; |
1915 | 2998 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[475], (unsigned int)pMapName, v174);// "Set %s over %s" |
2999 GameUI_SetFooterString(pTmpBuf.data()); | |
3000 continue; | |
3001 case UIMSG_CloseAfterInstallBeacon: | |
3002 dword_50CDC8 = 1; | |
2402 | 3003 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0); |
1915 | 3004 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages >= 40 ) |
3005 continue; | |
3006 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; | |
3007 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
3008 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
3009 ++pMessageQueue_50CBD0->uNumMessages;*/ | |
3010 continue; | |
3011 case UIMSG_InstallBeacon: | |
3012 pPlayer9 = pPlayers[_506348_current_lloyd_playerid + 1]; | |
3013 if ( !pPlayer9->pInstalledBeacons[uMessageParam].uBeaconTime && bRecallingBeacon ) | |
3014 continue; | |
3015 byte_506360 = 1; | |
3016 pPlayer9->CanCastSpell(uRequiredMana); | |
3017 if ( pParty->bTurnBasedModeOn ) | |
3018 { | |
3019 v60 = sRecoveryTime; | |
3020 pParty->pTurnBasedPlayerRecoveryTimes[_506348_current_lloyd_playerid] = sRecoveryTime; | |
3021 pPlayer9->SetRecoveryTime(v60); | |
3022 pTurnEngine->ApplyPlayerAction(); | |
3023 } | |
3024 else | |
3025 { | |
3026 pPlayer9->SetRecoveryTime((signed __int64)(flt_6BE3A4_debug_recmod1 * (double)sRecoveryTime * 2.133333333333333)); | |
3027 } | |
2185 | 3028 pAudioPlayer->PlaySound((SoundID)word_4EE088_sound_ids[lloyds_beacon_spell_id], 0, 0, -1, 0, lloyds_beacon_sound_id, 0, 0); |
1915 | 3029 if ( bRecallingBeacon ) |
3030 { | |
3031 if ( _stricmp(pCurrentMapName, (const char *)&pGames_LOD->pSubIndices[pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID]) ) | |
3032 { | |
3033 SaveGame(1, 0); | |
3034 OnMapLeave(); | |
3035 strcpy(pCurrentMapName, (const char *)&pGames_LOD->pSubIndices[pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID]); | |
2061 | 3036 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0001; |
2124 | 3037 uGameState = GAME_STATE_CHANGE_LOCATION; |
1915 | 3038 _5B65A8_npcdata_uflags_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X; |
3039 _5B65AC_npcdata_fame_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y; | |
3040 _5B65B0_npcdata_rep_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z; | |
3041 _5B65B4_npcdata_loword_house_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X; | |
3042 _5B65B8_npcdata_hiword_house_or_other = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y; | |
3043 dword_5B65C0 = 1; | |
3044 } | |
3045 else | |
3046 { | |
3047 pParty->vPosition.x = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X; | |
3048 pParty->vPosition.y = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y; | |
3049 pParty->vPosition.z = pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z; | |
3050 pParty->uFallStartY = pParty->vPosition.z; | |
3051 pParty->sRotationY = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X; | |
3052 pParty->sRotationX = pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y; | |
3053 } | |
2402 | 3054 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0); |
1915 | 3055 pBooksWindow->Release(); |
3056 pGUIWindow_CurrentMenu->Release(); | |
3057 pBooksWindow = 0; | |
3058 pGUIWindow_CurrentMenu = 0; | |
3059 } | |
3060 else | |
3061 { | |
3062 sprintf(a1, "data\\lloyd%d%d.pcx", _506348_current_lloyd_playerid + 1, uMessageParam + 1); | |
2154 | 3063 pRenderer->SaveScreenshot(a1, 92, 68); |
1915 | 3064 LoadThumbnailLloydTexture(uMessageParam, _506348_current_lloyd_playerid + 1); |
2185 | 3065 pPlayer9->pInstalledBeacons[uMessageParam].uBeaconTime = pParty->uTimePlayed + (signed __int64)((double)(lloyds_beacon_spell_level << 7) * 0.033333335); |
1915 | 3066 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_X = pParty->vPosition.x; |
3067 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Y = pParty->vPosition.y; | |
3068 pPlayer9->pInstalledBeacons[uMessageParam].PartyPos_Z = pParty->vPosition.z; | |
3069 pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_X = LOWORD(pParty->sRotationY); | |
3070 pPlayer9->pInstalledBeacons[uMessageParam].PartyRot_Y = LOWORD(pParty->sRotationX); | |
3071 if ( (signed int)pGames_LOD->uNumSubDirs / 2 <= 0 ) | |
3072 continue; | |
3073 for ( thisg = 0; thisg < (signed int)pGames_LOD->uNumSubDirs / 2; ++thisg ) | |
3074 { | |
2389 | 3075 if ( !_stricmp(pGames_LOD->pSubIndices[thisg].pFilename, pCurrentMapName) ) |
1915 | 3076 pPlayer9->pInstalledBeacons[uMessageParam].SaveFileID = thisg; |
3077 } | |
3078 } | |
3079 continue; | |
3080 case UIMSG_ClickTownInTP: | |
3081 if ( uMessageParam ) | |
3082 { | |
3083 switch ( uMessageParam ) | |
3084 { | |
3085 case 1: | |
3086 v63 = 208; | |
3087 break; | |
3088 case 2: | |
3089 v63 = 207; | |
3090 break; | |
3091 case 3: | |
3092 v63 = 211; | |
3093 break; | |
3094 case 4: | |
3095 v63 = 209; | |
3096 break; | |
3097 default: | |
3098 if ( uMessageParam != 5 ) | |
3099 { | |
3100 LABEL_486: | |
3101 SaveGame(1, 0); | |
3102 v64 = pMapStats->GetMapInfo(pCurrentMapName); | |
3103 v65 = uMessageParam; | |
3104 if ( v64 == TownPortalList[uMessageParam].uMapInfoID ) | |
3105 { | |
3106 pParty->vPosition.x = TownPortalList[v65].pos.x; | |
3107 pParty->vPosition.y = TownPortalList[v65].pos.y; | |
3108 pParty->vPosition.z = TownPortalList[v65].pos.z; | |
3109 pParty->uFallStartY = pParty->vPosition.z; | |
3110 pParty->sRotationY = TownPortalList[v65].rot_y; | |
3111 pParty->sRotationX = TownPortalList[v65].rot_x; | |
3112 } | |
3113 else | |
3114 { | |
3115 SaveGame(1, 0); | |
3116 OnMapLeave(); | |
2061 | 3117 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0001; |
2124 | 3118 uGameState = GAME_STATE_CHANGE_LOCATION; |
1915 | 3119 strcpy(pCurrentMapName, pMapStats->pInfos[TownPortalList[uMessageParam].uMapInfoID].pFilename); |
3120 dword_5B65C0 = 1; | |
3121 _5B65A8_npcdata_uflags_or_other = TownPortalList[uMessageParam].pos.x; | |
3122 _5B65AC_npcdata_fame_or_other = TownPortalList[uMessageParam].pos.y; | |
3123 _5B65B0_npcdata_rep_or_other = TownPortalList[uMessageParam].pos.z; | |
3124 v66 = TownPortalList[uMessageParam].rot_x; | |
3125 _5B65B4_npcdata_loword_house_or_other = TownPortalList[uMessageParam].rot_y; | |
3126 _5B65B8_npcdata_hiword_house_or_other = v66; | |
2338
1e865e8690ba
Moving some function declarations from unsorted subs to Actor.h and SpriteObject.h
Grumpy7
parents:
2336
diff
changeset
|
3127 Actor::InitializeActors(); |
1915 | 3128 } |
3129 v67 = (char*)pGUIWindow_CurrentMenu->Hint; | |
3130 if ( v67 ) | |
3131 *((int *)v67 + 17) = 1; | |
3132 else | |
3133 pParty->pPlayers[(unsigned __int8)town_portal_caster_id].CanCastSpell(0x14u); | |
3134 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) | |
3135 { | |
3136 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; | |
3137 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v0; | |
3138 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
3139 ++pMessageQueue_50CBD0->uNumMessages; | |
3140 }*/ | |
2402 | 3141 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 1, 0); |
1915 | 3142 continue; |
3143 } | |
3144 v63 = 210; | |
3145 break; | |
3146 } | |
3147 } | |
3148 else | |
3149 { | |
3150 v63 = 206; | |
3151 } | |
3152 if ( !(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, v63) ) | |
3153 return; | |
3154 goto LABEL_486; | |
3155 case UIMSG_HintTownPortal: | |
3156 if ( uMessageParam ) | |
3157 { | |
3158 switch ( uMessageParam ) | |
3159 { | |
3160 case 1: | |
3161 v68 = 208; | |
3162 break; | |
3163 case 2: | |
3164 v68 = 207; | |
3165 break; | |
3166 case 3: | |
3167 v68 = 211; | |
3168 break; | |
3169 case 4: | |
3170 v68 = 209; | |
3171 break; | |
3172 default: | |
3173 if ( uMessageParam != 5 ) | |
3174 //goto LABEL_506; | |
3175 { | |
3176 if ( uMessageParam ) | |
3177 { | |
3178 switch ( uMessageParam ) | |
3179 { | |
3180 case 1: | |
3181 v69 = pMapStats->pInfos[4].pName; | |
3182 break; | |
3183 case 2: | |
3184 v69 = pMapStats->pInfos[3].pName; | |
3185 break; | |
3186 case 3: | |
3187 v69 = pMapStats->pInfos[10].pName; | |
3188 break; | |
3189 case 4: | |
3190 v69 = pMapStats->pInfos[7].pName; | |
3191 break; | |
3192 default: | |
3193 if ( uMessageParam != 5 ) | |
3194 { | |
3195 __debugbreak(); // warning C4700: uninitialized local variable 'v200' used | |
3196 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v200); | |
3197 GameUI_SetFooterString(pTmpBuf.data()); | |
3198 continue; | |
3199 } | |
3200 v69 = pMapStats->pInfos[8].pName; | |
3201 break; | |
3202 } | |
3203 } | |
3204 else | |
3205 { | |
3206 v69 = pMapStats->pInfos[21].pName; | |
3207 } | |
3208 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v69); | |
3209 GameUI_SetFooterString(pTmpBuf.data()); | |
3210 continue; | |
3211 } | |
3212 v68 = 210; | |
3213 break; | |
3214 } | |
3215 } | |
3216 else | |
3217 { | |
3218 v68 = 206; | |
3219 } | |
3220 if ( !(unsigned __int16)_449B57_test_bit(pParty->_quest_bits, v68) ) | |
3221 { | |
3222 pRenderer->DrawTextureRGB(0, 0x160u, pTexture_StatusBar); | |
3223 continue; | |
3224 } | |
3225 //LABEL_506: | |
3226 if ( uMessageParam ) | |
3227 { | |
3228 switch ( uMessageParam ) | |
3229 { | |
3230 case 1: | |
3231 v69 = pMapStats->pInfos[4].pName; | |
3232 break; | |
3233 case 2: | |
3234 v69 = pMapStats->pInfos[3].pName; | |
3235 break; | |
3236 case 3: | |
3237 v69 = pMapStats->pInfos[10].pName; | |
3238 break; | |
3239 case 4: | |
3240 v69 = pMapStats->pInfos[7].pName; | |
3241 break; | |
3242 default: | |
3243 if ( uMessageParam != 5 ) | |
3244 //goto LABEL_519; | |
3245 { | |
3246 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v200); | |
3247 GameUI_SetFooterString(pTmpBuf.data()); | |
3248 continue; | |
3249 } | |
3250 v69 = pMapStats->pInfos[8].pName; | |
3251 break; | |
3252 } | |
3253 } | |
3254 else | |
3255 { | |
3256 v69 = pMapStats->pInfos[21].pName; | |
3257 } | |
3258 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[35], v69); | |
3259 GameUI_SetFooterString(pTmpBuf.data()); | |
3260 continue; | |
3261 case UIMSG_ShowFinalWindow: | |
3262 sprintfex(pFinalMessage.data(), "%s\n \n%s\n \n%s", pGlobalTXT_LocalizationStrings[151],// "Congratulations Adventurer." | |
3263 pGlobalTXT_LocalizationStrings[118],// "We hope that you've enjoyed playing Might and Magic VII as much as we did making it. We have saved this screen as MM7_WIN.PCX in your MM7 directory. You can print it out as proof of your accomplishment." | |
3264 pGlobalTXT_LocalizationStrings[167]);// "- The Might and Magic VII Development Team." | |
3265 ModalWindow(pFinalMessage.data(), UIMSG_OnFinalWindowClose); | |
3266 uGameState = GAME_STATE_FINAL_WINDOW; | |
3267 continue; | |
3268 case UIMSG_OnFinalWindowClose: | |
3269 __debugbreak(); | |
3270 uGameState = GAME_STATE_PLAYING; | |
3271 strcpy((char *)pKeyActionMap->pPressedKeysBuffer, "2"); | |
3272 __debugbreak(); // missed break/continue? | |
3273 case UIMSG_DD: | |
3274 __debugbreak(); | |
3275 sprintf(pTmpBuf.data(), "%s", pKeyActionMap->pPressedKeysBuffer); | |
2389 | 3276 memcpy(&v216, txt_file_frametable_parser(pKeyActionMap->pPressedKeysBuffer, &v218), sizeof(v216)); |
1915 | 3277 if ( v216.uPropCount == 1 ) |
3278 { | |
3279 pNPCData4 = (NPCData *)((signed int)pGames_LOD->uNumSubDirs / 2); | |
3280 v70 = atoi(v216.pProperties[0]); | |
3281 if ( v70 <= 0 || v70 >= 77 ) | |
3282 continue; | |
3283 v71 = v70; | |
3284 strcpy(Str2, pMapStats->pInfos[v70].pFilename); | |
3285 pNPCData3 = 0; | |
3286 if ( (signed int)pNPCData4 > 0 ) | |
3287 { | |
3288 thish = 0; | |
3289 do | |
3290 { | |
2389 | 3291 if ( !_stricmp(pGames_LOD->pSubIndices[thish].pFilename, Str2) ) |
1915 | 3292 break; |
3293 ++thish; | |
3294 pNPCData3 = (NPCData *)((char *)pNPCData3 + 1); | |
3295 } | |
3296 while ( (signed int)pNPCData3 < (signed int)pNPCData4 ); | |
3297 if ( (signed int)pNPCData3 < (signed int)pNPCData4 ) | |
3298 { | |
2389 | 3299 strcpy(pCurrentMapName, pGames_LOD->pSubIndices[(int)pNPCData3].pFilename); |
2061 | 3300 dword_6BE364_game_settings_1 |= GAME_SETTINGS_0001; |
2124 | 3301 uGameState = GAME_STATE_CHANGE_LOCATION; |
1915 | 3302 OnMapLeave(); |
3303 continue; | |
3304 } | |
3305 } | |
3306 sprintf(Str2, "No map found for %s", pMapStats->pInfos[v71].pName); | |
3307 v73 = Str2; | |
3308 } | |
3309 else | |
3310 { | |
3311 if ( v216.uPropCount != 3 ) | |
3312 continue; | |
3313 v74 = atoi(v216.pProperties[0]); | |
3314 thisi = atoi(v216.pProperties[1]); | |
3315 v75 = atoi(v216.pProperties[2]); | |
3316 v76 = v75; | |
3317 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
3318 { | |
3319 if ( pIndoor->GetSector(v74, thisi, v75) ) | |
3320 { | |
3321 v77 = thisi; | |
3322 pParty->vPosition.x = v74; | |
3323 pParty->vPosition.y = v77; | |
3324 pParty->vPosition.z = v76; | |
3325 pParty->uFallStartY = v76; | |
3326 continue; | |
3327 } | |
3328 } | |
3329 else | |
3330 { | |
3331 if ( v74 > -32768 ) | |
3332 { | |
3333 if ( v74 < 32768 ) | |
3334 { | |
3335 v77 = thisi; | |
3336 if ( thisi > -32768 ) | |
3337 { | |
3338 if ( thisi < 32768 && v76 >= 0 && v76 < 10000 ) | |
3339 { | |
3340 pParty->vPosition.x = v74; | |
3341 pParty->vPosition.y = v77; | |
3342 pParty->vPosition.z = v76; | |
3343 pParty->uFallStartY = v76; | |
3344 continue; | |
3345 } | |
3346 } | |
3347 } | |
3348 } | |
3349 } | |
3350 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0); | |
3351 v73 = "Can't jump to that location!"; | |
3352 } | |
3353 ShowStatusBarString(v73, 6u); | |
3354 continue; | |
3355 case UIMSG_CastQuickSpell: | |
3356 if ( bUnderwater == 1 ) | |
3357 { | |
3358 ShowStatusBarString(pGlobalTXT_LocalizationStrings[652], 2);// "You can not do that while you are underwater!" | |
3359 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3360 continue; | |
3361 } | |
3362 if ( !uActiveCharacter || (pPlayer2 = pPlayers[uActiveCharacter], pPlayer2->uTimeToRecovery) ) | |
3363 continue; | |
3364 _42777D_CastSpell_UseWand_ShootArrow(pPlayer2->uQuickSpell, uActiveCharacter - 1, 0, 0, uActiveCharacter); | |
3365 continue; | |
3366 case UIMSG_CastSpell_Monster_Improvement: | |
3367 case UIMSG_CastSpell_Shoot_Monster://FireBlow, Lightning, Ice Lightning, Swarm, | |
2154 | 3368 //if ( pRenderer->pRenderD3D ) |
1915 | 3369 { |
3370 v81 = pGame->pVisInstance->get_picked_object_zbuf_val(); | |
3371 } | |
2154 | 3372 /*else |
1915 | 3373 { |
3374 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v206); | |
3375 pPoint2 = pMouse->GetCursorPos(&v201); | |
3376 v81 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint2->y]]; | |
2154 | 3377 }*/ |
1915 | 3378 v83 = v81; |
3379 v44 = (unsigned __int16)v81; | |
3380 v84 = v83 >> 16; | |
3381 if ( PID_TYPE(v44) != 3 || v84 >= 5120 ) | |
3382 continue; | |
3383 pSpellInfo = (CastSpellInfo *)pGUIWindow_Settings->ptr_1C; | |
3384 if ( uMessage == UIMSG_CastSpell_Shoot_Monster ) | |
3385 { | |
3386 pSpellInfo->uFlags &= ~0x08; | |
3387 } | |
3388 else | |
3389 { | |
3390 if ( uMessage == UIMSG_CastSpell_Monster_Improvement ) | |
3391 pSpellInfo->uFlags &= ~0x0100u; | |
3392 else | |
3393 pSpellInfo->uFlags &= ~0x0200u; | |
3394 } | |
3395 pSpellInfo->uPlayerID_2 = uMessageParam; | |
3396 pSpellInfo->spell_target_pid = v44; | |
3397 pParty->pPlayers[pSpellInfo->uPlayerID].SetRecoveryTime(300); | |
3398 pGUIWindow_Settings->Release(); | |
3399 pGUIWindow_Settings = 0; | |
3400 pMouse->SetCursorBitmap("MICON1"); | |
3401 GameUI_Footer_TimeLeft = 0; | |
3402 _50C9A0_IsEnchantingInProgress = 0; | |
3403 back_to_game(); | |
3404 continue; | |
3405 case UIMSG_1C: | |
3406 __debugbreak(); | |
3407 if ( !uActiveCharacter || pCurrentScreen ) | |
3408 continue; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
3409 ptr_507BC8 = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_68, uMessageParam, 0); |
1915 | 3410 pCurrentScreen = SCREEN_19; |
3411 pEventTimer->Pause(); | |
3412 continue; | |
3413 case UIMSG_STEALFROMACTOR: | |
3414 if ( !uActiveCharacter ) | |
3415 continue; | |
3416 if ( pParty->bTurnBasedModeOn != 1 ) | |
3417 { | |
3418 if ( pActors[uMessageParam].uAIState == 5 ) | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1936
diff
changeset
|
3419 pActors[uMessageParam].LootActor(); |
1915 | 3420 else |
3421 Actor::StealFrom(uMessageParam); | |
3422 continue; | |
3423 } | |
2242 | 3424 if ( pTurnEngine->turn_stage == TE_WAIT || pTurnEngine->turn_stage == TE_MOVEMENT ) |
1915 | 3425 continue; |
3426 if ( !(pTurnEngine->field_18 & TE_HAVE_PENDING_ACTIONS) ) | |
3427 { | |
3428 if ( pActors[uMessageParam].uAIState == 5 ) | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1936
diff
changeset
|
3429 pActors[uMessageParam].LootActor(); |
1915 | 3430 else |
3431 Actor::StealFrom(uMessageParam); | |
3432 } | |
3433 continue; | |
3434 | |
3435 case UIMSG_Attack: | |
3436 if ( !uActiveCharacter ) | |
3437 continue; | |
3438 if ( pParty->bTurnBasedModeOn != 1 ) | |
3439 { | |
2331
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
3440 Player::_42ECB5_PlayerAttacksActor(); |
1915 | 3441 continue; |
3442 } | |
2242 | 3443 if ( pTurnEngine->turn_stage == TE_WAIT || pTurnEngine->turn_stage == TE_MOVEMENT ) |
1915 | 3444 continue; |
3445 if ( !(pTurnEngine->field_18 & TE_HAVE_PENDING_ACTIONS) ) | |
2331
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
3446 Player::_42ECB5_PlayerAttacksActor(); |
1915 | 3447 continue; |
3448 case UIMSG_ExitRest: | |
3449 GUIWindow::Create(pButton_RestUI_Exit->uX, pButton_RestUI_Exit->uY, 0, 0, WINDOW_CloseRestWindowBtn, (int)pButton_RestUI_Exit, pGlobalTXT_LocalizationStrings[81]);// "Exit Rest" | |
3450 continue; | |
3451 case UIMSG_Wait5Minutes: | |
3452 if ( dword_506F14 == 2 ) | |
3453 { | |
3454 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!" | |
3455 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3456 continue; | |
3457 } | |
3458 GUIWindow::Create(pButton_RestUI_Wait5Minutes->uX, pButton_RestUI_Wait5Minutes->uY, 0, 0, WINDOW_PressedButton2, | |
3459 (int)pButton_RestUI_Wait5Minutes, pGlobalTXT_LocalizationStrings[238]);// "Wait 5 Minutes" | |
3460 dword_506F14 = 1; | |
3461 _506F18_num_minutes_to_sleep = 5; | |
3462 continue; | |
3463 case UIMSG_Wait1Hour: | |
3464 if ( dword_506F14 == 2 ) | |
3465 { | |
3466 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!" | |
3467 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3468 continue; | |
3469 } | |
3470 GUIWindow::Create(pButton_RestUI_Wait1Hour->uX, pButton_RestUI_Wait1Hour->uY, 0, 0, WINDOW_PressedButton2, | |
3471 (int)pButton_RestUI_Wait1Hour, pGlobalTXT_LocalizationStrings[239]);// "Wait 1 Hour" | |
3472 dword_506F14 = 1; | |
3473 _506F18_num_minutes_to_sleep = 60; | |
3474 continue; | |
3475 case UIMSG_RentRoom: | |
3476 dword_506F14 = 2; | |
3477 RestUI_Load(); | |
3478 v86 = 60 * (_494820_training_time(pParty->uCurrentHour) + 1) - pParty->uCurrentMinute; | |
3479 _506F18_num_minutes_to_sleep = v86; | |
3480 if ( uMessageParam == 111 || uMessageParam == 114 || uMessageParam == 116 ) // 107 = Emerald Isle tavern | |
3481 _506F18_num_minutes_to_sleep = v86 + 12 * 60; | |
3482 dword_506F14 = 2; | |
3483 pParty->RestAndHeal(); | |
3484 pParty->days_played_without_rest = 0; | |
3485 pParty->pPlayers[3].SetAsleep(1); | |
3486 pParty->pPlayers[2].SetAsleep(1); | |
3487 pParty->pPlayers[1].SetAsleep(1); | |
3488 pParty->pPlayers[0].SetAsleep(1); | |
3489 continue; | |
3490 case UIMSG_RestWindow: | |
3491 if ( pMessageQueue_50CBD0->uNumMessages ) | |
3492 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
3493 if ( pCurrentScreen ) | |
3494 continue; | |
1936 | 3495 if ( CheckActors_proximity() ) |
1915 | 3496 { |
3497 if ( pParty->bTurnBasedModeOn == 1 ) | |
3498 { | |
3499 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!" | |
3500 continue; | |
3501 } | |
3502 v88 = pGlobalTXT_LocalizationStrings[480];// "There are hostile enemies near!" | |
3503 if ( pParty->uFlags & 0x88 ) | |
3504 v88 = pGlobalTXT_LocalizationStrings[479];// "You can't rest here!" | |
3505 ShowStatusBarString(v88, 2); | |
3506 if ( !uActiveCharacter ) | |
3507 continue; | |
3508 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)13, 0); | |
3509 continue; | |
3510 } | |
3511 if ( pParty->bTurnBasedModeOn == 1 ) | |
3512 { | |
3513 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!" | |
3514 continue; | |
3515 } | |
3516 if ( !(pParty->uFlags & 0x88) ) | |
3517 { | |
3518 RestUI_Load(); | |
3519 continue; | |
3520 } | |
3521 if ( pParty->bTurnBasedModeOn == 1 ) | |
3522 { | |
3523 ShowStatusBarString(pGlobalTXT_LocalizationStrings[478], 2);// "You can't rest in turn-based mode!" | |
3524 continue; | |
3525 } | |
3526 v88 = pGlobalTXT_LocalizationStrings[480];// "There are hostile enemies near!" | |
3527 if ( pParty->uFlags & 0x88 ) | |
3528 v88 = pGlobalTXT_LocalizationStrings[479];// "You can't rest here!" | |
3529 ShowStatusBarString(v88, 2u); | |
3530 if ( !uActiveCharacter ) | |
3531 continue; | |
3532 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)13, 0); | |
3533 continue; | |
3534 case UIMSG_Rest8Hour: | |
3535 if ( dword_506F14 ) | |
3536 { | |
3537 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!" | |
3538 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3539 continue; | |
3540 } | |
3541 if ( pParty->uNumFoodRations < uRestUI_FoodRequiredToRest ) | |
3542 { | |
3543 ShowStatusBarString(pGlobalTXT_LocalizationStrings[482], 2u);// "You don't have enough food to rest" | |
3544 if ( uActiveCharacter && pPlayers[uActiveCharacter]->CanAct() ) | |
3545 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_108, 0); | |
3546 } | |
3547 else | |
3548 { | |
2185 | 3549 pParty->pPlayers[3].pConditions[Condition_Sleep] = pParty->uTimePlayed; |
3550 pParty->pPlayers[2].pConditions[Condition_Sleep] = pParty->uTimePlayed; | |
3551 pParty->pPlayers[1].pConditions[Condition_Sleep] = pParty->uTimePlayed; | |
3552 pParty->pPlayers[0].pConditions[Condition_Sleep] = pParty->uTimePlayed; | |
1915 | 3553 v90 = pMapStats->GetMapInfo(pCurrentMapName); |
3554 if ( !v90 ) | |
3555 v90 = rand() % (signed int)pMapStats->uNumMaps + 1; | |
3556 pMapInfo = &pMapStats->pInfos[v90]; | |
3557 if ( rand() % 100 + 1 <= pMapInfo->Encounter_percent ) | |
3558 { | |
3559 v91 = rand() % 100; | |
3560 v92 = pMapInfo->EncM1percent; | |
3561 v93 = v91 + 1; | |
3562 if ( v93 > v92 ) | |
3563 pNPCData4 = (NPCData *)((v93 > v92 + pMapInfo->EncM2percent) + 2); | |
3564 else | |
3565 pNPCData4 = (NPCData *)1; | |
3566 if ( !_45063B_spawn_some_monster(pMapInfo, (int)pNPCData4) ) | |
3567 pNPCData4 = 0; | |
3568 if ( pNPCData4 ) | |
3569 { | |
3570 pPlayerNum = rand() % 4; | |
2185 | 3571 pParty->pPlayers[pPlayerNum].pConditions[Condition_Sleep] = 0; |
1915 | 3572 v95 = rand(); |
3573 Rest(v95 % 6 + 60); | |
3574 _506F18_num_minutes_to_sleep = 0; | |
3575 dword_506F14 = 0; | |
3576 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) | |
3577 { | |
3578 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; | |
3579 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
3580 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
3581 ++pMessageQueue_50CBD0->uNumMessages; | |
3582 }*/ | |
2402 | 3583 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0); |
1915 | 3584 ShowStatusBarString(pGlobalTXT_LocalizationStrings[481], 2);// "Encounter!" |
3585 pAudioPlayer->PlaySound((SoundID)227, 0, 0, -1, 0, 0, 0, 0); | |
3586 continue; | |
3587 } | |
3588 } | |
3589 Party::TakeFood(uRestUI_FoodRequiredToRest); | |
3590 _506F18_num_minutes_to_sleep = 480; | |
3591 dword_506F14 = 2; | |
3592 pParty->RestAndHeal(); | |
3593 pParty->days_played_without_rest = 0; | |
3594 pParty->pPlayers[3].SetAsleep(1); | |
3595 pParty->pPlayers[2].SetAsleep(1); | |
3596 pParty->pPlayers[1].SetAsleep(1); | |
3597 pParty->pPlayers[0].SetAsleep(1); | |
3598 } | |
3599 continue; | |
3600 case UIMSG_AlreadyResting: | |
3601 if ( dword_506F14 == 2 ) | |
3602 { | |
3603 ShowStatusBarString(pGlobalTXT_LocalizationStrings[477], 2);// "You are already resting!" | |
3604 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3605 continue; | |
3606 } | |
3607 GUIWindow::Create(pButton_RestUI_WaitUntilDawn->uX, pButton_RestUI_WaitUntilDawn->uY, 0, 0, WINDOW_PressedButton2, | |
3608 (int)pButton_RestUI_WaitUntilDawn, pGlobalTXT_LocalizationStrings[237]);// "Wait until Dawn" | |
3609 v97 = _494820_training_time(pParty->uCurrentHour); | |
3610 dword_506F14 = 1; | |
3611 _506F18_num_minutes_to_sleep = 60 * v97 - pParty->uCurrentMinute; | |
3612 continue; | |
3613 case UIMSG_HintSelectRemoveQuickSpellBtn: | |
3614 if ( quick_spell_at_page && byte_506550 ) | |
3615 { | |
3616 v173 = pSpellStats->pInfos[quick_spell_at_page + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage].pName; | |
3617 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[483], v173); | |
3618 } | |
3619 else | |
3620 { | |
3621 if ( pPlayers[uActiveCharacter]->uQuickSpell ) | |
3622 v177 = pGlobalTXT_LocalizationStrings[584];// "Click here to remove your Quick Spell" | |
3623 else | |
3624 v177 = pGlobalTXT_LocalizationStrings[484];// "Select a spell then click here to set a QuickSpell" | |
3625 strcpy(pTmpBuf.data(), v177); | |
3626 } | |
3627 GameUI_SetFooterString(pTmpBuf.data()); | |
3628 continue; | |
3629 case UIMSG_SPellbook_ShowHightlightedSpellInfo: | |
3630 if ( !uActiveCharacter || (uNumSeconds = (unsigned int)pPlayers[uActiveCharacter], | |
3631 !*(char *)(uNumSeconds + 11 * *(char *)(uNumSeconds + 6734) + uMessageParam + 402)) ) | |
3632 continue; | |
3633 if ( sub_4637E0_is_there_popup_onscreen() ) | |
3634 dword_507B00_spell_info_to_draw_in_popup = uMessageParam + 1; | |
3635 v98 = *(char *)(uNumSeconds + 6734); | |
3636 if ( quick_spell_at_page - 1 == uMessageParam ) | |
3637 { | |
3638 v178 = pSpellStats->pInfos[uMessageParam + 11 * v98 + 1].pName; | |
3639 v161 = pGlobalTXT_LocalizationStrings[485]; | |
3640 } | |
3641 else | |
3642 { | |
3643 v178 = pSpellStats->pInfos[uMessageParam + 11 * v98 + 1].pName; | |
3644 v161 = pGlobalTXT_LocalizationStrings[486]; | |
3645 } | |
3646 sprintfex(pTmpBuf.data(), v161, v178); | |
3647 GameUI_SetFooterString(pTmpBuf.data()); | |
3648 continue; | |
3649 case UIMSG_ClickInstallRemoveQuickSpellBtn: | |
3650 GUIWindow::Create(pBtn_InstallRemoveSpell->uX, pBtn_InstallRemoveSpell->uY, 0, 0, WINDOW_PressedButton2, (int)pBtn_InstallRemoveSpell, 0); | |
3651 if ( !uActiveCharacter ) | |
3652 continue; | |
3653 pPlayer10 = pPlayers[uActiveCharacter]; | |
3654 if ( !byte_506550 || !quick_spell_at_page ) | |
3655 { | |
3656 pPlayer10->uQuickSpell = 0; | |
3657 quick_spell_at_page = 0; | |
3658 pAudioPlayer->PlaySound((SoundID)203, 0, 0, -1, 0, 0, 0, 0); | |
3659 continue; | |
3660 } | |
2184 | 3661 pPlayers[uActiveCharacter]->uQuickSpell = quick_spell_at_page + 11 * pPlayers[uActiveCharacter]->lastOpenedSpellbookPage; |
3662 AA1058_PartyQuickSpellSound[uActiveCharacter - 1].AddPartySpellSound(pPlayers[uActiveCharacter]->uQuickSpell, uActiveCharacter); | |
1915 | 3663 if ( uActiveCharacter ) |
3664 pPlayer10->PlaySound(SPEECH_12, 0); | |
3665 byte_506550 = 0; | |
3666 continue; | |
2197 | 3667 case UIMSG_SpellBook_PressTab://перелистывание страниц клавишей Tab |
2198 | 3668 { |
1915 | 3669 if ( !uActiveCharacter ) |
3670 continue; | |
2198 | 3671 int skill_count = 0; |
1915 | 3672 uAction = 0; |
2197 | 3673 for ( uint i = 0; i < 9; i++ ) |
1915 | 3674 { |
2197 | 3675 if ( pPlayers[uActiveCharacter]->pActiveSkills[PLAYER_SKILL_FIRE + i] ) |
1915 | 3676 { |
2197 | 3677 if ( pPlayers[uActiveCharacter]->lastOpenedSpellbookPage == i ) |
2198 | 3678 uAction = skill_count; |
3679 v217[skill_count++] = i; | |
1915 | 3680 } |
3681 } | |
2198 | 3682 if ( !skill_count )//нет скиллов |
3683 pAudioPlayer->PlaySound((SoundID)(rand() % 2 + 204), 0, 0, -1, 0, 0, 0, 0); | |
1915 | 3684 else |
3685 { | |
2198 | 3686 if ( GetAsyncKeyState(16) ) |
3687 { | |
3688 --uAction; | |
3689 if ( uAction < 0 ) | |
3690 uAction = skill_count - 1; | |
3691 } | |
3692 else | |
3693 { | |
3694 ++uAction; | |
3695 if ( uAction >= skill_count ) | |
3696 uAction = 0; | |
3697 } | |
3698 OnCloseSpellBookPage(); | |
3699 pPlayers[uActiveCharacter]->lastOpenedSpellbookPage = LOBYTE(v217[uAction]); | |
3700 pGUIWindow_CurrentMenu->OpenSpellBook(); | |
3701 pAudioPlayer->PlaySound((SoundID)(rand() % 2 + 204), 0, 0, -1, 0, 0, 0, 0); | |
1915 | 3702 } |
3703 continue; | |
2198 | 3704 } |
1915 | 3705 case UIMSG_OpenSpellbookPage: |
2242 | 3706 if ( pTurnEngine->turn_stage == TE_MOVEMENT || !uActiveCharacter || uMessageParam == pPlayers[uActiveCharacter]->lastOpenedSpellbookPage ) |
1915 | 3707 continue; |
3708 OnCloseSpellBookPage(); | |
3709 pPlayers[uActiveCharacter]->lastOpenedSpellbookPage = uMessageParam; | |
3710 pGUIWindow_CurrentMenu->OpenSpellBook(); | |
2198 | 3711 pAudioPlayer->PlaySound((SoundID)(rand() % 2 + 204), 0, 0, -1, 0, 0, 0, 0); |
1915 | 3712 continue; |
3713 case UIMSG_SelectSpell: | |
3714 { | |
2242 | 3715 if (pTurnEngine->turn_stage == TE_MOVEMENT) |
1915 | 3716 continue; |
3717 if (!uActiveCharacter) | |
3718 continue; | |
3719 | |
3720 // uNumSeconds = (unsigned int)pPlayers[uActiveCharacter]; | |
1980 | 3721 Player* player = pPlayers[uActiveCharacter]; |
1915 | 3722 if (player->spellbook.pChapters[player->lastOpenedSpellbookPage].bIsSpellAvailable[uMessageParam]) |
3723 //if ( *(char *)(uNumSeconds + 11 * *(char *)(uNumSeconds + &lastOpenedSpellbookPage) + uMessageParam + 402) ) | |
3724 { | |
3725 if ( quick_spell_at_page - 1 == uMessageParam ) | |
3726 { | |
3727 pGUIWindow_CurrentMenu->Release(); | |
3728 pEventTimer->Resume(); | |
3729 viewparams->bRedrawGameUI = 1; | |
3730 pCurrentScreen = SCREEN_GAME; | |
3731 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
3732 v103 = quick_spell_at_page + 11 * player->lastOpenedSpellbookPage; | |
3733 /*if ( dword_50C9E8 < 40 ) | |
3734 { | |
3735 dword_50C9EC[3 * dword_50C9E8] = UIMSG_CastSpellFromBook; | |
3736 dword_50C9EC[3 * dword_50C9E8 + 1] = v103; | |
3737 dword_50C9EC[3 * dword_50C9E8 + 2] = uActiveCharacter - 1; | |
3738 ++dword_50C9E8; | |
3739 }*/ | |
2402 | 3740 pMessageQueue_50C9E8->AddGUIMessage(UIMSG_CastSpellFromBook, v103, uActiveCharacter - 1); |
3741 // pMessageQueue_50CBD0->AddGUIMessage(UIMSG_CastSpellFromBook, v103, uActiveCharacter - 1); | |
1915 | 3742 } |
3743 else | |
3744 { | |
3745 byte_506550 = 1; | |
3746 quick_spell_at_page = uMessageParam + 1; | |
3747 } | |
3748 } | |
3749 } | |
3750 continue; | |
3751 | |
3752 case UIMSG_CastSpellFromBook: | |
2242 | 3753 if ( pTurnEngine->turn_stage != TE_MOVEMENT ) |
1915 | 3754 _42777D_CastSpell_UseWand_ShootArrow(uMessageParam, v199, 0, 0, 0); |
3755 continue; | |
3756 | |
3757 case UIMSG_SpellScrollUse: | |
3758 __debugbreak(); | |
2242 | 3759 if ( pTurnEngine->turn_stage != TE_MOVEMENT ) |
1915 | 3760 _42777D_CastSpell_UseWand_ShootArrow(uMessageParam, v199, 133, 1, 0); |
3761 continue; | |
3762 case UIMSG_SpellBookWindow: | |
2242 | 3763 if ( pTurnEngine->turn_stage == TE_MOVEMENT ) |
1915 | 3764 continue; |
2186 | 3765 if ( bUnderwater == true ) |
1915 | 3766 { |
3767 ShowStatusBarString(pGlobalTXT_LocalizationStrings[652], 2);// "You can not do that while you are underwater!" | |
3768 pAudioPlayer->PlaySound((SoundID)27, 0, 0, -1, 0, 0, 0, 0); | |
3769 } | |
3770 else | |
3771 { | |
3772 if ( pMessageQueue_50CBD0->uNumMessages ) | |
3773 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
3774 if ( uActiveCharacter && !pPlayers[uActiveCharacter]->uTimeToRecovery ) | |
3775 { | |
2186 | 3776 if ( pCurrentScreen == SCREEN_GAME ) |
1915 | 3777 { |
2186 | 3778 GUIWindow::Create(476, 450, 0, 0, WINDOW_PressedButton2, (int)pBtn_CastSpell, 0); |
1915 | 3779 pCurrentScreen = SCREEN_SPELL_BOOK; |
3780 pEventTimer->Pause(); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
3781 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_SpellBook, 0, 0); |
1915 | 3782 pAudioPlayer->PlaySound((SoundID)48, 0, 0, -1, 0, 0, 0, 0); |
3783 viewparams->field_48 = 1; | |
3784 continue; | |
3785 } | |
2186 | 3786 if ( pCurrentScreen != SCREEN_REST && pCurrentScreen != SCREEN_CHARACTERS |
3787 && (pCurrentScreen <= SCREEN_63 || pCurrentScreen > SCREEN_67) ) | |
1915 | 3788 { |
3789 pGUIWindow_CurrentMenu->Release(); | |
2186 | 3790 GUIWindow::Create(476, 450, 0, 0, WINDOW_PressedButton2, (int)pBtn_CastSpell, 0); |
1915 | 3791 pCurrentScreen = SCREEN_SPELL_BOOK; |
3792 pEventTimer->Pause(); | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
3793 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_SpellBook, 0, 0); |
1915 | 3794 pAudioPlayer->PlaySound((SoundID)48, 0, 0, -1, 0, 0, 0, 0); |
3795 viewparams->field_48 = 1; | |
3796 continue; | |
3797 } | |
3798 } | |
3799 } | |
3800 continue; | |
3801 case UIMSG_QuickReference: | |
3802 if ( pMessageQueue_50CBD0->uNumMessages ) | |
3803 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
3804 if ( pCurrentScreen ) | |
3805 pGUIWindow_CurrentMenu->Release(); | |
3806 ++pIcons_LOD->uTexturePacksCount; | |
3807 if ( !pIcons_LOD->uNumPrevLoadedFiles ) | |
3808 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
3809 GUIWindow::Create(0x230u, 0x1C2u, 0, 0, WINDOW_PressedButton2, (int)pBtn_QuickReference, 0); | |
3810 viewparams->bRedrawGameUI = 1; | |
3811 pEventTimer->Pause(); | |
3812 pAudioPlayer->StopChannels(-1, -1); | |
3813 pCurrentScreen = SCREEN_QUICK_REFERENCE; | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2212
diff
changeset
|
3814 pGUIWindow_CurrentMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_QuickReference, 5, 0); |
1915 | 3815 papredoll_dbrds[2] = pIcons_LOD->LoadTexture("BUTTEXI1", TEXTURE_16BIT_PALETTE); |
3816 pBtn_ExitCancel = pGUIWindow_CurrentMenu->CreateButton(0x187u, 0x13Cu, 0x4Bu, 0x21u, 1, 0, UIMSG_Escape, 0, 0, | |
3817 pGlobalTXT_LocalizationStrings[79],// "Exit" | |
3818 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0); //, v179); | |
3819 continue; | |
3820 case UIMSG_GameMenuButton: | |
3821 if ( pCurrentScreen ) | |
3822 { | |
3823 pGUIWindow_CurrentMenu->Release(); | |
3824 pEventTimer->Resume(); | |
3825 pCurrentScreen = SCREEN_GAME; | |
3826 viewparams->bRedrawGameUI = 1; | |
3827 } | |
2154 | 3828 |
1915 | 3829 stru_506E40.Release(); |
2154 | 3830 pRenderer->SaveScreenshot("gamma.pcx", 155, 117); |
2131 | 3831 stru_506E40.LoadPCXFile("gamma.pcx", 0); |
2154 | 3832 |
1915 | 3833 GUIWindow::Create(0x25Au, 0x1C2u, 0, 0, WINDOW_PressedButton, (int)pBtn_GameSettings, 0); |
3834 //LABEL_453: | |
3835 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages >= 40 ) | |
3836 continue; | |
3837 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; | |
3838 //goto LABEL_770; | |
3839 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
3840 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
3841 ++pMessageQueue_50CBD0->uNumMessages;*/ | |
2402 | 3842 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_Escape, 0, 0); |
1915 | 3843 continue; |
3844 case UIMSG_ClickAwardScrollBar: | |
3845 books_page_number = 1; | |
3846 if ( pMouse->GetCursorPos(&v211)->y > 178 ) | |
3847 books_page_number = -1; | |
3848 continue; | |
3849 case UIMSG_ClickAwardsUpBtn: | |
3850 GUIWindow::Create(pBtn_Up->uX, pBtn_Up->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pBtn_Up, 0); | |
3851 BtnUp_flag = 1; | |
3852 continue; | |
3853 case UIMSG_ClickAwardsDownBtn: | |
3854 GUIWindow::Create(pBtn_Down->uX, pBtn_Down->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pBtn_Down, 0); | |
3855 BtnDown_flag = 1; | |
3856 continue; | |
3857 case UIMSG_ChangeDetaliz: | |
3858 bRingsShownInCharScreen ^= 1; | |
3859 pCharacterScreen_DetalizBtn->Release(); | |
3860 pCharacterScreen_DollBtn->Release(); | |
3861 if ( bRingsShownInCharScreen ) | |
3862 { | |
3863 v128 = pIcons_LOD->GetTexture(uTextureID_detaliz_close_button)->uTextureHeight; | |
3864 v125 = pIcons_LOD->GetTexture(uTextureID_detaliz_close_button)->uTextureWidth; | |
3865 v123 = 445; | |
3866 v121 = 470; | |
3867 } | |
3868 else | |
3869 { | |
3870 v128 = 30; | |
3871 v125 = 30; | |
3872 v123 = 300; | |
3873 v121 = 600; | |
3874 } | |
3875 pCharacterScreen_DetalizBtn = pGUIWindow_CurrentMenu->CreateButton(v121, v123, v125, v128, 1, 0, UIMSG_ChangeDetaliz, 0, 0, | |
3876 pGlobalTXT_LocalizationStrings[64],// "Detail Toggle" | |
3877 0); | |
3878 pCharacterScreen_DollBtn = pGUIWindow_CurrentMenu->CreateButton(0x1DCu, 0, 0xA4u, 0x159u, 1, 0, UIMSG_ClickPaperdoll, 0, 0, "", 0); | |
3879 viewparams->bRedrawGameUI = 1; | |
3880 continue; | |
3881 case UIMSG_ClickPaperdoll: | |
3882 OnPaperdollLeftClick(); | |
3883 continue; | |
3884 case UIMSG_ClickStatsBtn: | |
3885 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 100; | |
3886 CharacterUI_ReleaseButtons(); | |
3887 ReleaseAwardsScrollBar(); | |
3888 GUIWindow::Create(pCharacterScreen_StatsBtn->uX, pCharacterScreen_StatsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_StatsBtn, 0); | |
3889 continue; | |
3890 case UIMSG_ClickSkillsBtn: | |
3891 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 101; | |
3892 CharacterUI_ReleaseButtons(); | |
3893 ReleaseAwardsScrollBar(); | |
3894 CharacterUI_SkillsTab_CreateButtons(); | |
3895 GUIWindow::Create(pCharacterScreen_SkillsBtn->uX, pCharacterScreen_SkillsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_SkillsBtn, 0); | |
3896 continue; | |
3897 case UIMSG_SkillUp: | |
3898 pPlayer4 = pPlayers[uActiveCharacter]; | |
3899 v105 = (int)&pPlayer4->pActiveSkills[uMessageParam]; | |
3900 LOWORD(v2) = *(short *)v105; | |
3901 uNumSeconds = v2; | |
3902 if ( pPlayer4->uSkillPoints < (v2 & 0x3F) + 1 ) | |
3903 { | |
3904 v87 = pGlobalTXT_LocalizationStrings[488];// "You don't have enough skill points!" | |
3905 } | |
3906 else | |
3907 { | |
3908 if ( (uNumSeconds & 0x3F) < 0x3C ) | |
3909 { | |
3910 *(short *)v105 = uNumSeconds + 1; | |
3911 pPlayer4->uSkillPoints -= pPlayer4->pActiveSkills[uMessageParam] & 0x3F; | |
3912 pPlayer4->PlaySound(SPEECH_14, 0); | |
3913 pAudioPlayer->PlaySound((SoundID)20001, 0, 0, -1, 0, 0, 0, 0); | |
3914 continue; | |
3915 } | |
3916 v87 = pGlobalTXT_LocalizationStrings[487];// "You have already mastered this skill!" | |
3917 } | |
3918 ShowStatusBarString(v87, 2); | |
3919 continue; | |
3920 case UIMSG_ClickInventoryBtn: | |
3921 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103; | |
3922 ReleaseAwardsScrollBar(); | |
3923 CharacterUI_ReleaseButtons(); | |
3924 GUIWindow::Create(pCharacterScreen_InventoryBtn->uX, pCharacterScreen_InventoryBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_InventoryBtn, 0); | |
3925 continue; | |
3926 case UIMSG_ClickExitCharacterWindowBtn: | |
3927 GUIWindow::Create(pCharacterScreen_ExitBtn->uX, pCharacterScreen_ExitBtn->uY, 0, 0, WINDOW_ExitCharacterWindow, (int)pCharacterScreen_ExitBtn, 0); | |
3928 continue; | |
3929 case UIMSG_ClickAwardsBtn: | |
3930 ReleaseAwardsScrollBar(); | |
3931 CharacterUI_ReleaseButtons(); | |
3932 CreateAwardsScrollBar(); | |
3933 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 102; | |
3934 GUIWindow::Create(pCharacterScreen_AwardsBtn->uX, pCharacterScreen_AwardsBtn->uY, 0, 0, WINDOW_CharactersPressedButton, (int)pCharacterScreen_AwardsBtn, 0); | |
3935 FillAwardsData(); | |
3936 continue; | |
3937 case UIMSG_ClickBooksBtn: | |
3938 switch ( uMessageParam ) | |
3939 { | |
3940 case 11://Page UP | |
3941 BtnUp_flag = 1; | |
3942 pButton = pBtn_Book_2; | |
3943 break; | |
3944 case 10://Page DOWN | |
3945 BtnDown_flag = 1; | |
3946 pButton = pBtn_Book_1; | |
3947 break; | |
3948 case 0://Zoom plus | |
3949 pButton = pBtn_Book_1; | |
3950 BtnDown_flag = 1; | |
3951 break; | |
3952 case 1://Zoom minus | |
3953 pButton = pBtn_Book_2; | |
3954 BtnUp_flag = 1; | |
3955 break; | |
3956 case 2://Potions | |
3957 Book_PageBtn3_flag = 1; | |
3958 if ( dword_506364 ) | |
3959 continue; | |
3960 pButton = pBtn_Book_3; | |
3961 break; | |
3962 case 3://fountains | |
3963 Book_PageBtn4_flag = 1; | |
3964 if ( dword_506364 ) | |
3965 continue; | |
3966 pButton = pBtn_Book_4; | |
3967 break; | |
3968 case 4://obelisks | |
3969 Book_PageBtn5_flag = 1;//Autonotes_Obelisks_page_flag | |
3970 if ( dword_506364 ) | |
3971 continue; | |
3972 pButton = pBtn_Book_5; | |
3973 break; | |
3974 case 5://seer | |
3975 Book_PageBtn6_flag = 1;//Autonotes_Seer_page_flag | |
3976 if ( dword_506364 ) | |
3977 continue; | |
3978 pButton = pBtn_Book_6; | |
3979 break; | |
3980 case 6://misc | |
3981 pButton = pBtn_Autonotes_Misc; | |
3982 Autonotes_Misc_page_flag = 1; | |
3983 break; | |
3984 case 7://Instructors | |
3985 pButton = pBtn_Autonotes_Instructors; | |
3986 Autonotes_Instructors_page_flag = 1; | |
3987 break; | |
3988 default: | |
3989 continue; | |
3990 } | |
3991 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1); | |
3992 continue; | |
3993 case UIMSG_SelectCharacter: | |
3994 if ( pMessageQueue_50CBD0->uNumMessages ) | |
3995 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
3996 GameUI_OnPlayerPortraitLeftClick(uMessageParam); | |
3997 continue; | |
3998 case UIMSG_ShowStatus_Funds: | |
3999 v174 = (char *)pParty->uNumGoldInBank; | |
4000 //v158 = pParty->uNumGold + pParty->uNumGoldInBank; | |
4001 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[489], pParty->uNumGold + pParty->uNumGoldInBank, v174);// "You have %d total gold, %d in the Bank" | |
4002 GameUI_SetFooterString(pTmpBuf.data()); | |
4003 continue; | |
4004 case UIMSG_ShowStatus_DateTime: | |
2224 | 4005 currHour = pParty->uCurrentHour; |
4006 uNumSeconds = 1; | |
4007 if (pParty->uCurrentHour > 12 ) | |
1915 | 4008 { |
2224 | 4009 if (pParty->uCurrentHour >= 24) |
4010 uNumSeconds = 0; | |
4011 currHour = (currHour - 12); | |
1915 | 4012 } |
2224 | 4013 else |
1915 | 4014 { |
2224 | 4015 if (pParty->uCurrentHour < 12) // 12:00 is PM |
4016 uNumSeconds = 0; | |
4017 if (pParty->uCurrentHour == 0) | |
4018 currHour = 12; | |
1915 | 4019 } |
2224 | 4020 sprintf(pTmpBuf.data(), "%d:%02d%s %s %d %s %d", currHour, pParty->uCurrentMinute, aAMPMNames[uNumSeconds], aDayNames[pParty->uDaysPlayed % 7], |
1915 | 4021 7 * pParty->uCurrentMonthWeek + pParty->uDaysPlayed % 7 + 1, aMonthNames[pParty->uCurrentMonth], pParty->uCurrentYear); |
4022 GameUI_SetFooterString(pTmpBuf.data()); | |
4023 continue; | |
4024 case UIMSG_ShowStatus_Food: | |
4025 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[501], pParty->uNumFoodRations); // "You have %lu food" | |
4026 GameUI_SetFooterString(pTmpBuf.data()); | |
4027 continue; | |
4028 case UIMSG_ShowStatus_Player: | |
4029 pPlayer5 = pPlayers[uMessageParam]; | |
4030 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], pPlayer5->pName, pClassNames[pPlayer5->classType]);// "%s the %s" | |
4031 strcat(pTmpBuf.data(), ": "); | |
4032 v107 = pPlayer5->GetMajorConditionIdx(); | |
4033 strcat(pTmpBuf.data(), aCharacterConditionNames[v107]); | |
4034 GameUI_SetFooterString(pTmpBuf.data()); | |
4035 v108 = 8 * uMessageParam - 8; | |
4036 LOBYTE(v108) = v108 | 4; | |
4037 pMouse->uPointingObjectID = PID(OBJECT_Player,v108); | |
4038 continue; | |
4039 case UIMSG_ShowStatus_ManaHP: | |
4040 sprintf(pTmpBuf.data(), "%d / %d %s %d / %d %s", pPlayers[uMessageParam]->sHealth, pPlayers[uMessageParam]->GetMaxHealth(), | |
4041 pGlobalTXT_LocalizationStrings[108], pPlayers[uMessageParam]->sMana, pPlayers[uMessageParam]->GetMaxMana(), | |
4042 pGlobalTXT_LocalizationStrings[212]); | |
4043 GameUI_SetFooterString(pTmpBuf.data()); | |
4044 continue; | |
4045 case UIMSG_CHEST_ClickItem: | |
4046 if ( pCurrentScreen == SCREEN_CHEST_INVENTORY ) | |
4047 { | |
4048 pPlayers[uActiveCharacter]->OnInventoryLeftClick(); | |
4049 continue; | |
4050 } | |
2343 | 4051 Chest::OnChestLeftClick(); |
1915 | 4052 continue; |
4053 case UIMSG_InventoryLeftClick: | |
4054 pPlayers[uActiveCharacter]->OnInventoryLeftClick(); | |
4055 continue; | |
4056 case UIMSG_MouseLeftClickInGame: | |
2154 | 4057 /*if ( !pRenderer->pRenderD3D ) |
1915 | 4058 { |
4059 if ( pMessageQueue_50CBD0->uNumMessages ) | |
4060 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
4061 OnGameViewportClick(); | |
4062 continue; | |
2154 | 4063 }*/ |
1915 | 4064 v115 = pMessageQueue_50CBD0->uNumMessages; |
4065 if ( !pMessageQueue_50CBD0->uNumMessages ) | |
4066 { | |
2402 | 4067 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_MouseLeftClickInScreen, 0, 0); |
1915 | 4068 /*if ( (signed int)v115 < 40 ) |
4069 //goto LABEL_769; | |
4070 { | |
4071 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen; | |
4072 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
4073 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
4074 ++pMessageQueue_50CBD0->uNumMessages; | |
4075 continue; | |
4076 }*/ | |
4077 continue; | |
4078 } | |
4079 if ( pMessageQueue_50CBD0->pMessages[0].field_8 ) | |
4080 { | |
4081 pMessageQueue_50CBD0->uNumMessages = 1; | |
2402 | 4082 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_MouseLeftClickInScreen, 0, 0); |
1915 | 4083 /*v115 = v0; |
4084 pMessageQueue_50CBD0->uNumMessages = v0; | |
4085 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen; | |
4086 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
4087 //goto LABEL_771; | |
4088 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
4089 ++pMessageQueue_50CBD0->uNumMessages;*/ | |
4090 continue; | |
4091 } | |
4092 v115 = 0; | |
4093 pMessageQueue_50CBD0->uNumMessages = 0; | |
2402 | 4094 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_MouseLeftClickInScreen, 0, 0); |
1915 | 4095 /*if ( (signed int)v115 < 40 ) |
4096 //goto LABEL_769; | |
4097 { | |
4098 pMessageQueue_50CBD0->pMessages[v115].eType = UIMSG_MouseLeftClickInScreen; | |
4099 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
4100 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
4101 ++pMessageQueue_50CBD0->uNumMessages; | |
4102 continue; | |
4103 }*/ | |
4104 continue; | |
4105 case UIMSG_MouseLeftClickInScreen://срабатывает при нажатии на правую кнопку мыши после UIMSG_MouseLeftClickInGame | |
4106 if ( pMessageQueue_50CBD0->uNumMessages ) | |
4107 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
4108 OnGameViewportClick(); | |
4109 continue; | |
4110 case UIMSG_F: | |
4111 __debugbreak(); | |
2154 | 4112 //if ( pRenderer->pRenderD3D ) |
1915 | 4113 { |
4114 LOWORD(v116) = pGame->pVisInstance->get_picked_object_zbuf_val(); | |
4115 } | |
2154 | 4116 /*else |
1915 | 4117 { |
4118 uNumSeconds = (unsigned int)pMouse->GetCursorPos(&v209); | |
4119 pPoint3 = pMouse->GetCursorPos(&v204); | |
4120 v116 = pRenderer->pActiveZBuffer[*(int *)uNumSeconds + pSRZBufferLineOffsets[pPoint3->y]]; | |
2154 | 4121 }*/ |
1915 | 4122 pButton2 = (GUIButton *)(unsigned __int16)v116; |
4123 GUIWindow::Create(0, 0, 0, 0, WINDOW_F, (int)pButton2, 0); | |
4124 continue; | |
4125 case UIMSG_54: | |
4126 __debugbreak(); | |
4127 pButton2 = (GUIButton *)uMessageParam; | |
4128 GUIWindow::Create(0, 0, 0, 0, WINDOW_22, (int)pButton2, 0); | |
4129 continue; | |
4130 case UIMSG_Game_Action: | |
4131 if ( pMessageQueue_50CBD0->uNumMessages ) | |
4132 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
4133 OnPressSpace(); | |
4134 continue; | |
4135 case UIMSG_ClickZoomOutBtn: | |
4136 if ( pCurrentScreen ) | |
4137 continue; | |
4138 pParty->uFlags |= 2u; | |
4139 GUIWindow::Create(519, 136, 0, 0, WINDOW_PressedButton2, (int)pBtn_ZoomOut, 0); | |
4140 uNumSeconds = 131072; | |
4141 v118 = 2 * viewparams->uMinimapZoom; | |
4142 ++viewparams->field_28; | |
4143 viewparams->uMinimapZoom *= 2; | |
4144 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor) | |
4145 { | |
4146 if ( (signed int)v118 > 4096 ) | |
4147 { | |
4148 viewparams->uMinimapZoom = 4096; | |
4149 viewparams->field_28 = 12; | |
4150 } | |
4151 continue; | |
4152 } | |
4153 v119 = 2048; | |
4154 if ( (signed int)v118 <= 2048 ) | |
4155 { | |
4156 _576E2C_current_minimap_zoom = v118; | |
4157 dword_576E28 = viewparams->field_28; | |
4158 break; | |
4159 } | |
4160 viewparams->field_28 = 11; | |
4161 viewparams->uMinimapZoom = v119; | |
4162 _576E2C_current_minimap_zoom = v119; | |
4163 dword_576E28 = viewparams->field_28; | |
4164 break; | |
4165 case UIMSG_ClickZoomInBtn: | |
4166 if ( pCurrentScreen ) | |
4167 continue; | |
4168 pParty->uFlags |= 2u; | |
4169 GUIWindow::Create(574, 136, 0, 0, WINDOW_PressedButton2, (int)pBtn_ZoomIn, 0); | |
4170 uNumSeconds = 32768; | |
4171 v118 = (unsigned __int64)((signed __int64)(signed int)viewparams->uMinimapZoom << 15) >> 16; | |
4172 --viewparams->field_28; | |
4173 viewparams->uMinimapZoom = (unsigned __int64)((signed __int64)(signed int)viewparams->uMinimapZoom << 15) >> 16; | |
4174 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
4175 { | |
4176 v119 = 512; | |
4177 if ( (signed int)v118 < 512 ) | |
4178 { | |
4179 viewparams->field_28 = 9; | |
4180 v118 = v119; | |
4181 viewparams->uMinimapZoom = v119; | |
4182 } | |
4183 _576E2C_current_minimap_zoom = v118; | |
4184 dword_576E28 = viewparams->field_28; | |
4185 } | |
4186 else | |
4187 { | |
4188 if ( (signed int)v118 < 256 ) | |
4189 { | |
4190 viewparams->uMinimapZoom = 256; | |
4191 viewparams->field_28 = 8; | |
4192 } | |
4193 } | |
4194 default: | |
4195 continue; | |
4196 } | |
4197 } | |
4198 } | |
4199 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50C9E8->uNumMessages;//dword_50C9E8; | |
4200 memcpy(pMessageQueue_50CBD0->pMessages, pMessageQueue_50C9E8->pMessages, sizeof(GUIMessage) * pMessageQueue_50C9E8->uNumMessages); | |
4201 //memcpy(pMessageQueue_50CBD0->pMessages, dword_50C9EC, 12 * dword_50C9E8); | |
4202 //dword_50C9E8 = 0; | |
4203 | |
4204 | |
4205 pMessageQueue_50C9E8->uNumMessages=0; | |
4206 if ( dword_50C9DC ) | |
4207 { | |
4208 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) | |
4209 { | |
4210 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = (UIMessageType)dword_50C9DC; | |
4211 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = (int)ptr_50C9E0; | |
4212 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
4213 ++pMessageQueue_50CBD0->uNumMessages; | |
4214 }*/ | |
2402 | 4215 pMessageQueue_50CBD0->AddGUIMessage((UIMessageType)dword_50C9DC, (int)ptr_50C9E0, 0); |
1915 | 4216 dword_50C9DC = 0; |
4217 } | |
4218 else | |
4219 { | |
4220 if ( _50C9D0_AfterEnchClickEventId > 0 ) | |
4221 { | |
4222 _50C9D8_AfterEnchClickEventTimeout -= pEventTimer->uTimeElapsed; | |
4223 if ( _50C9D8_AfterEnchClickEventTimeout <= 0 ) | |
4224 { | |
4225 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) | |
4226 { | |
4227 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = (UIMessageType)dword_50C9D0; | |
4228 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = dword_50C9D4; | |
4229 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
4230 ++pMessageQueue_50CBD0->uNumMessages; | |
4231 }*/ | |
2402 | 4232 pMessageQueue_50CBD0->AddGUIMessage((UIMessageType)_50C9D0_AfterEnchClickEventId, _50C9D4_AfterEnchClickEventSecondParam, 0); |
1915 | 4233 _50C9D0_AfterEnchClickEventId = 0; |
4234 _50C9D4_AfterEnchClickEventSecondParam = 0; | |
4235 _50C9D8_AfterEnchClickEventTimeout = 0; | |
4236 } | |
4237 } | |
4238 } | |
4239 CastSpellInfoHelpers::_427E01_cast_spell(); | |
4240 } | |
4241 //----- (00435748) -------------------------------------------------------- | |
4242 void GUI_MainMenuMessageProc() | |
4243 { | |
4244 Player *pPlayer; // ebx@2 | |
4245 void *v3; // edi@21 | |
4246 signed int v4; // eax@29 | |
2334 | 4247 // int v5; // ecx@29 |
4248 // PLAYER_SKILL_TYPE v6; // edi@37 | |
1915 | 4249 GUIWindow *pWindow; // eax@56 |
4250 GUIButton *pButton; // eax@59 | |
4251 int v15; // edi@70 | |
4252 char v20; // dl@116 | |
4253 unsigned int v21; // eax@116 | |
4254 unsigned int v25; // eax@120 | |
4255 unsigned int v26; // ecx@127 | |
2334 | 4256 // SoundID pSoundID; // [sp-2Ch] [bp-3Ch]@36 |
4257 // signed int v41; // [sp-10h] [bp-20h]@29 | |
1915 | 4258 int pParam; // [sp+4h] [bp-Ch]@3 |
4259 UIMessageType pUIMessageType; // [sp+8h] [bp-8h]@3 | |
4260 int pSex; // [sp+Ch] [bp-4h]@3 | |
4261 | |
4262 if ( pMessageQueue_50CBD0->uNumMessages ) | |
4263 { | |
4264 pPlayer = pParty->pPlayers.data(); | |
4265 do | |
4266 { | |
4267 int param2; | |
4268 pMessageQueue_50CBD0->PopMessage(&pUIMessageType, &pParam, ¶m2); | |
1916 | 4269 //auto player = &pParty->pPlayers[pParam]; |
1915 | 4270 |
4271 switch (pUIMessageType) // For buttons of window MainMenu | |
4272 { | |
4273 case UIMSG_MainMenu_ShowPartyCreationWnd: | |
4274 GUIWindow::Create(495, 172, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnNew, 0); | |
4275 SetCurrentMenuID(MENU_NEWGAME); | |
4276 break; | |
4277 case UIMSG_MainMenu_ShowLoadWindow: | |
4278 GUIWindow::Create(495, 227, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnLoad, 0); | |
4279 SetCurrentMenuID(MENU_SAVELOAD); | |
4280 break; | |
4281 case UIMSG_ShowCredits: | |
4282 GUIWindow::Create(495, 282, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnCredits, 0); | |
4283 SetCurrentMenuID(MENU_CREDITS); | |
4284 break; | |
4285 case UIMSG_ExitToWindows: | |
4286 GUIWindow::Create(495, 337, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnExit, 0); | |
4287 SetCurrentMenuID(MENU_EXIT_GAME); | |
4288 break; | |
4289 case UIMSG_PlayerCreation_SelectAttribute: | |
4290 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) | |
4291 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam; | |
4292 uPlayerCreationUI_SelectedCharacter = pParam; | |
4293 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
4294 break; | |
4295 case UIMSG_PlayerCreation_VoicePrev: | |
1916 | 4296 pSex = pParty->pPlayers[pParam].GetSexByVoice(); |
1915 | 4297 do |
4298 { | |
1916 | 4299 if (pParty->pPlayers[pParam].uVoiceID == 0) |
4300 pParty->pPlayers[pParam].uVoiceID = 19; | |
4301 else --pParty->pPlayers[pParam].uVoiceID; | |
1915 | 4302 } |
1916 | 4303 while (pParty->pPlayers[pParam].GetSexByVoice() != pSex); |
1915 | 4304 pButton = pCreationUI_BtnPressLeft2[pParam]; |
4305 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1); | |
4306 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
1916 | 4307 pParty->pPlayers[pParam].PlaySound(SPEECH_PickMe, 0); |
1915 | 4308 break; |
4309 case UIMSG_PlayerCreation_VoiceNext: | |
1916 | 4310 pSex = pParty->pPlayers[pParam].GetSexByVoice(); |
1915 | 4311 do |
4312 { | |
1916 | 4313 pParty->pPlayers[pParam].uVoiceID = (pParty->pPlayers[pParam].uVoiceID + 1) % 20; |
1915 | 4314 } |
1916 | 4315 while (pParty->pPlayers[pParam].GetSexByVoice() != pSex); |
1915 | 4316 pButton = pCreationUI_BtnPressRight2[pParam]; |
4317 GUIWindow::Create(pButton->uX, pButton->uY, 0, 0, WINDOW_PressedButton, (int)pButton, (char *)1); | |
4318 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
1916 | 4319 pParty->pPlayers[pParam].PlaySound(SPEECH_PickMe, 0); |
1915 | 4320 break; |
4321 case UIMSG_PlayerCreation_FacePrev: | |
1916 | 4322 //pPlayer = &pParty->pPlayers[pParam]; |
4323 if (!pParty->pPlayers[pParam].uCurrentFace) | |
4324 pParty->pPlayers[pParam].uCurrentFace = 19; | |
1915 | 4325 else |
1916 | 4326 pParty->pPlayers[pParam].uCurrentFace -= 1; |
4327 pParty->pPlayers[pParam].uVoiceID = pParty->pPlayers[pParam].uCurrentFace; | |
4328 pParty->pPlayers[pParam].SetInitialStats(); | |
4329 pParty->pPlayers[pParam].SetSexByVoice(); | |
4330 pParty->pPlayers[pParam].RandomizeName(); | |
1915 | 4331 v25 = pParam; |
4332 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) | |
4333 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam; | |
4334 uPlayerCreationUI_SelectedCharacter = v25; | |
4335 GUIWindow::Create(pCreationUI_BtnPressLeft[v25]->uX, pCreationUI_BtnPressLeft[v25]->uY, 0, 0, WINDOW_PressedButton, (int)pCreationUI_BtnPressLeft[v25], (char *)1); | |
4336 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0.0, 0); | |
1916 | 4337 pParty->pPlayers[pParam].PlaySound(SPEECH_PickMe, 0); |
1915 | 4338 break; |
4339 case UIMSG_PlayerCreation_FaceNext: | |
1916 | 4340 //pPlayer = &pParty->pPlayers[pParam]; |
4341 v20 = (char)((int)pParty->pPlayers[pParam].uCurrentFace + 1) % 20; | |
4342 pParty->pPlayers[pParam].uCurrentFace = v20; | |
4343 pParty->pPlayers[pParam].uVoiceID = v20; | |
4344 pParty->pPlayers[pParam].SetInitialStats(); | |
4345 pParty->pPlayers[pParam].SetSexByVoice(); | |
4346 pParty->pPlayers[pParam].RandomizeName(); | |
1915 | 4347 v21 = pParam; |
4348 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = (pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) | |
4349 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam; | |
4350 uPlayerCreationUI_SelectedCharacter = v21; | |
4351 GUIWindow::Create(pCreationUI_BtnPressRight[v21]->uX, pCreationUI_BtnPressRight[v21]->uY, 0, 0, WINDOW_PressedButton, (int)pCreationUI_BtnPressRight[v21], (char *)1); | |
4352 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
1916 | 4353 pParty->pPlayers[pParam].PlaySound(SPEECH_PickMe, 0); |
1915 | 4354 break; |
4355 case UIMSG_PlayerCreationClickPlus: | |
4356 GUIWindow::Create(613, 393, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnPlus, (char *)1); | |
4357 pPlayer[uPlayerCreationUI_SelectedCharacter].IncreaseAttribute((pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) % 7); | |
4358 pAudioPlayer->PlaySound((SoundID)20, 0, 0, -1, 0, 0, 0, 0); | |
4359 break; | |
4360 case UIMSG_PlayerCreationClickMinus: | |
4361 GUIWindow::Create(523, 393, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnMinus, (char *)1); | |
4362 pPlayer[uPlayerCreationUI_SelectedCharacter].DecreaseAttribute((pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem) % 7); | |
4363 pAudioPlayer->PlaySound((SoundID)23, 0, 0, -1, 0, 0, 0, 0); | |
4364 break; | |
4365 case UIMSG_PlayerCreationSelectActiveSkill: | |
4366 if ( pPlayer[uPlayerCreationUI_SelectedCharacter].GetSkillIdxByOrder(3) == 37 ) | |
4367 pParty->pPlayers[uPlayerCreationUI_SelectedCharacter].pActiveSkills[pPlayer[uPlayerCreationUI_SelectedCharacter].GetSkillIdxByOrder(pParam + 4)] = 1; | |
4368 pAudioPlayer->PlaySound(SOUND_24, 0, 0, -1, 0, 0, 0, 0); | |
4369 break; | |
4370 case UIMSG_PlayerCreationSelectClass: | |
4371 pPlayer[uPlayerCreationUI_SelectedCharacter].Reset((PLAYER_CLASS_TYPE)pParam); | |
4372 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
4373 break; | |
4374 case UIMSG_PlayerCreationClickOK: | |
4375 GUIWindow::Create(580, 431, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnOK, 0); | |
4376 if ( PlayerCreation_GetUnspentAttributePointCount() || !PlayerCreation_Choose4Skills() ) | |
4377 GameUI_Footer_TimeLeft = GetTickCount() + 4000; | |
4378 else | |
4379 uGameState = GAME_STATE_STARTING_NEW_GAME; | |
4380 break; | |
4381 case UIMSG_PlayerCreationClickReset: | |
4382 GUIWindow::Create(527, 431, 0, 0, WINDOW_PressedButton2, (int)pPlayerCreationUI_BtnReset, 0); | |
4383 pParty->Reset(); | |
4384 break; | |
4385 case UIMSG_PlayerCreationRemoveUpSkill: | |
4386 v4 = pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem; | |
4387 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = v4 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam; | |
2110
18b0ff5e1bf1
pSounds[20] error and GetSkillIdxByOrder(2) != 37 //37 - None(Нет)
Ritor1
parents:
2101
diff
changeset
|
4388 if ( pPlayer[pParam].GetSkillIdxByOrder(2) != 37 )//37 - None(Нет) |
18b0ff5e1bf1
pSounds[20] error and GetSkillIdxByOrder(2) != 37 //37 - None(Нет)
Ritor1
parents:
2101
diff
changeset
|
4389 pParty->pPlayers[pParam].pActiveSkills[pPlayer[pParam].GetSkillIdxByOrder(2)] = 0; |
1915 | 4390 break; |
4391 case UIMSG_PlayerCreationRemoveDownSkill: | |
4392 v4 = pGUIWindow_CurrentMenu->pCurrentPosActiveItem - pGUIWindow_CurrentMenu->pStartingPosActiveItem; | |
4393 pGUIWindow_CurrentMenu->pCurrentPosActiveItem = v4 % 7 + pGUIWindow_CurrentMenu->pStartingPosActiveItem + 7 * pParam; | |
2110
18b0ff5e1bf1
pSounds[20] error and GetSkillIdxByOrder(2) != 37 //37 - None(Нет)
Ritor1
parents:
2101
diff
changeset
|
4394 if ( pPlayer[pParam].GetSkillIdxByOrder(3) != 37 )//37 - None(Нет) |
18b0ff5e1bf1
pSounds[20] error and GetSkillIdxByOrder(2) != 37 //37 - None(Нет)
Ritor1
parents:
2101
diff
changeset
|
4395 pParty->pPlayers[pParam].pActiveSkills[pPlayer[pParam].GetSkillIdxByOrder(3)] = 0; |
1915 | 4396 break; |
4397 case UIMSG_PlayerCreationChangeName: | |
4398 pAudioPlayer->PlaySound((SoundID)24, 0, 0, -1, 0, 0, 0, 0); | |
4399 v3 = (void *)pParam; | |
4400 uPlayerCreationUI_SelectedCharacter = pParam; | |
4401 pKeyActionMap->EnterText(0, 15, pGUIWindow_CurrentMenu); | |
4402 pGUIWindow_CurrentMenu->ptr_1C = v3; | |
4403 break; | |
4404 case UIMSG_ChangeGameState: | |
4405 uGameState = GAME_FINISHED; | |
4406 break; | |
4407 case UIMSG_ChangeCursor: | |
4408 pMouse->SetCursorBitmap("MICON2"); | |
4409 break; | |
4410 case UIMSG_3A: | |
4411 SetCurrentMenuID(MENU_DebugBLVLevel); | |
4412 break; | |
4413 case UIMSG_LoadGame: | |
4414 if (!pSavegameUsedSlots[uLoadGameUI_SelectedSlot]) | |
4415 break; | |
4416 SetCurrentMenuID(MENU_LoadingProcInMainMenu); | |
4417 break; | |
4418 case UIMSG_SelectLoadSlot: | |
4419 //main menu save/load wnd clicking on savegame lines | |
4420 if (pGUIWindow_CurrentMenu->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS) | |
4421 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_NONE); | |
4422 if ( pCurrentScreen != SCREEN_SAVEGAME || uLoadGameUI_SelectedSlot != pParam + pSaveListPosition ) | |
4423 { | |
4424 //load clicked line | |
4425 v26 = pParam + pSaveListPosition; | |
4426 if ( dword_6BE138 == pParam + pSaveListPosition ) | |
4427 { | |
2402 | 4428 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_SaveLoadBtn, 0, 0); |
4429 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_LoadGame, 0, 0); | |
1915 | 4430 } |
4431 uLoadGameUI_SelectedSlot = v26; | |
4432 dword_6BE138 = v26; | |
4433 } | |
4434 else | |
4435 { | |
4436 //typing in the line | |
4437 pKeyActionMap->EnterText(0, 19, pGUIWindow_CurrentMenu); | |
2389 | 4438 strcpy(pKeyActionMap->pPressedKeysBuffer, pSavegameHeader[uLoadGameUI_SelectedSlot].pName); |
4439 pKeyActionMap->uNumKeysPressed = strlen(pKeyActionMap->pPressedKeysBuffer); | |
1915 | 4440 } |
4441 break; | |
4442 case UIMSG_SaveLoadBtn: | |
4443 GUIWindow::Create(pGUIWindow_CurrentMenu->uFrameX + 241, pGUIWindow_CurrentMenu->uFrameY + 302, 61, 28, WINDOW_SaveLoadBtn, (int)pBtnLoadSlot, 0); | |
4444 break; | |
4445 case UIMSG_DownArrow: | |
4446 ++pSaveListPosition; | |
4447 if ( pSaveListPosition >= pParam ) | |
4448 pSaveListPosition = pParam - 1; | |
4449 if ( pSaveListPosition < 1 ) | |
4450 pSaveListPosition = 0; | |
4451 pWindow = pGUIWindow_CurrentMenu; | |
4452 GUIWindow::Create(pWindow->uFrameX + 215, pGUIWindow_CurrentMenu->uFrameY + 323, 0, 0, WINDOW_PressedButton2, (int)pBtnDownArrow, 0); | |
4453 break; | |
4454 case UIMSG_Cancel: | |
4455 GUIWindow::Create(pGUIWindow_CurrentMenu->uFrameX + 350, pGUIWindow_CurrentMenu->uFrameY + 302, 61, 28, WINDOW_LoadGame_CancelBtn, (int)pBtnCancel, 0); | |
4456 break; | |
4457 case UIMSG_ArrowUp: | |
4458 --pSaveListPosition; | |
4459 if ( pSaveListPosition < 0 ) | |
4460 pSaveListPosition = 0; | |
4461 pWindow = pGUIWindow_CurrentMenu; | |
4462 GUIWindow::Create(pWindow->uFrameX + 215, pGUIWindow_CurrentMenu->uFrameY + 197, 0, 0, WINDOW_PressedButton2, (int)pBtnArrowUp, 0); | |
4463 break; | |
4464 case UIMSG_AD: | |
4465 GUIWindow::Create(pMainMenu_BtnNew->uX, pMainMenu_BtnNew->uY, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnNew, 0); | |
4466 SetCurrentMenuID(MENU_LoadingProcInMainMenu); | |
4467 break; | |
4468 case UIMSG_AE: | |
4469 GUIWindow::Create(pMainMenu_BtnExit->uX, pMainMenu_BtnExit->uY, 0, 0, WINDOW_PressedButton2, (int)pMainMenu_BtnExit, 0); | |
4470 SetCurrentMenuID(MENU_DebugBLVLevel); | |
4471 break; | |
4472 case UIMSG_Escape: | |
4473 if ( pModalWindow ) | |
4474 { | |
4475 ModalWindow_Release(); | |
4476 break; | |
4477 } | |
2061 | 4478 if ( !(dword_6BE364_game_settings_1 & GAME_SETTINGS_4000)) |
1915 | 4479 break; |
4480 v15 = 1; | |
4481 pVideoPlayer->bStopBeforeSchedule = 1; | |
4482 viewparams->bRedrawGameUI = 1; | |
4483 viewparams->field_48 = 1; | |
2347 | 4484 if ( GetCurrentMenuID() == MENU_MAIN || GetCurrentMenuID() == MENU_MMT_MAIN_MENU |
4485 || GetCurrentMenuID() == MENU_CREATEPARTY || GetCurrentMenuID() == MENU_NAMEPANELESC ) | |
1915 | 4486 { |
2137
d24ee391fd1f
libavcodec playing movies and houses, loops not working yet
zipi
parents:
2132
diff
changeset
|
4487 //if ( pCurrentScreen == SCREEN_VIDEO ) |
d24ee391fd1f
libavcodec playing movies and houses, loops not working yet
zipi
parents:
2132
diff
changeset
|
4488 //pVideoPlayer->FastForwardToFrame(pVideoPlayer->pResetflag); |
2347 | 4489 if (GetCurrentMenuID() == MENU_NAMEPANELESC) //из панели изменения имени |
1915 | 4490 { |
2347 | 4491 SetCurrentMenuID(MENU_CREATEPARTY);//в окно создания группы |
1915 | 4492 break; |
4493 } | |
2347 | 4494 if (GetCurrentMenuID() == MENU_CREDITSPROC) //из окна Создатели |
1915 | 4495 { |
2347 | 4496 SetCurrentMenuID(MENU_CREDITSCLOSE);//в закрытие Создатели |
1915 | 4497 break; |
4498 } | |
2402 | 4499 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_ChangeGameState, 0, 0); |
1915 | 4500 break; |
4501 } | |
4502 if ( GetCurrentMenuID() == MENU_CREDITSPROC && !pCurrentScreen ) | |
4503 { | |
2142
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2137
diff
changeset
|
4504 //if ( pCurrentScreen == SCREEN_VIDEO ) |
ca548138d6aa
some code cleaning in video playing, loops play but there is a memory leak
zipi
parents:
2137
diff
changeset
|
4505 //pVideoPlayer->FastForwardToFrame(pVideoPlayer->pResetflag); |
1915 | 4506 if (GetCurrentMenuID() == MENU_NAMEPANELESC) |
4507 { | |
4508 SetCurrentMenuID(MENU_CREATEPARTY); | |
4509 break; | |
4510 } | |
4511 if (GetCurrentMenuID() == MENU_CREDITSPROC) | |
4512 { | |
4513 SetCurrentMenuID(MENU_CREDITSCLOSE); | |
4514 break; | |
4515 } | |
2402 | 4516 pMessageQueue_50CBD0->AddGUIMessage(UIMSG_ChangeGameState, 0, 0); |
1915 | 4517 break; |
4518 } | |
4519 if ( pCurrentScreen == SCREEN_LOADGAME ) | |
4520 { | |
4521 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
4522 //crt_deconstruct_ptr_6A0118(); | |
4523 pTexture_PCX.Release(); | |
4524 pTexture_PCX.Load("title.pcx", 0); | |
4525 SetCurrentMenuID(MENU_MAIN); | |
4526 v15 = 1; | |
4527 pGUIWindow_CurrentMenu->Release(); | |
4528 pGUIWindow2->Release(); | |
4529 pGUIWindow2 = 0; | |
4530 pEventTimer->Resume(); | |
4531 pCurrentScreen = SCREEN_GAME; | |
4532 viewparams->bRedrawGameUI = v15; | |
4533 break; | |
4534 } | |
4535 if ( pCurrentScreen == SCREEN_VIDEO ) | |
4536 { | |
4537 pVideoPlayer->Unload(); | |
4538 } | |
4539 else | |
4540 { | |
4541 if ( pCurrentScreen != SCREEN_1B ) | |
4542 { | |
4543 pGUIWindow_CurrentMenu->Release(); | |
4544 pGUIWindow2->Release(); | |
4545 pGUIWindow2 = 0; | |
4546 pEventTimer->Resume(); | |
4547 pCurrentScreen = SCREEN_GAME; | |
4548 viewparams->bRedrawGameUI = v15; | |
4549 break; | |
4550 } | |
4551 //VideoPlayer::dtor(); | |
4552 } | |
4553 break; | |
4554 default: | |
4555 break; | |
4556 } | |
4557 } | |
4558 while ( pMessageQueue_50CBD0->uNumMessages ); | |
4559 } | |
2331
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4560 } |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4561 |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4562 |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4563 |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4564 //----- (0042FBDD) -------------------------------------------------------- |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4565 void sub_42FBDD() |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4566 { |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4567 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4568 pRenderer->DrawTextureTransparent(pBtn_YES->uX, pBtn_YES->uY, pBtn_YES->pTextures[0]); |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4569 pRenderer->Present(); |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4570 } |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4571 |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4572 //----- (0042FC15) -------------------------------------------------------- |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4573 void CloseWindowBackground() |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4574 { |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4575 pAudioPlayer->PlaySound(SOUND_Button2, -2, 0, -1, 0, 0, 0, 0); |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4576 pRenderer->DrawTextureTransparent(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pBtn_ExitCancel->pTextures[0]); |
9551756f46c4
Moving functions out of mm7_6.cpp into appropriate classes as static methods or free functions
Grumpy7
parents:
2290
diff
changeset
|
4577 pRenderer->Present(); |
0 | 4578 } |