annotate Game.cpp @ 638:ccf8b4815a1f

GetActorTintColor fixed Outdoor sunlight works on terrain & bmodels (not sure about billboards though)
author Nomad
date Mon, 11 Mar 2013 21:43:26 +0200
parents 86ee21956082
children ecfb1b3c9a39
rev   line source
137
a2ddaf0e4d8a automerge fix
Nomad
parents: 134
diff changeset
1 #include <assert.h>
a2ddaf0e4d8a automerge fix
Nomad
parents: 134
diff changeset
2
0
Ritor1
parents:
diff changeset
3 #include "Game.h"
Ritor1
parents:
diff changeset
4 #include "Party.h"
Ritor1
parents:
diff changeset
5 #include "IndoorCamera.h"
Ritor1
parents:
diff changeset
6 #include "Math.h"
Ritor1
parents:
diff changeset
7 #include "LightmapBuilder.h"
Ritor1
parents:
diff changeset
8 #include "Viewport.h"
Ritor1
parents:
diff changeset
9 #include "Time.h"
Ritor1
parents:
diff changeset
10 #include "Outdoor.h"
Ritor1
parents:
diff changeset
11 #include "Overlays.h"
Ritor1
parents:
diff changeset
12 #include "stru279.h"
Ritor1
parents:
diff changeset
13 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
14 #include "LOD.h"
Ritor1
parents:
diff changeset
15 #include "OSInfo.h"
Ritor1
parents:
diff changeset
16 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
17 #include "Party.h"
Ritor1
parents:
diff changeset
18 #include "TurnEngine.h"
Ritor1
parents:
diff changeset
19 #include "VideoPlayer.h"
Ritor1
parents:
diff changeset
20 #include "Bink_Smacker.h"
Ritor1
parents:
diff changeset
21 #include "Events.h"
Ritor1
parents:
diff changeset
22 #include "Arcomage.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 165
diff changeset
23 #include "texts.h"
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
24 #include "Actor.h"
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
25 #include "Log.h"
0
Ritor1
parents:
diff changeset
26
Ritor1
parents:
diff changeset
27 //#include "MM7.h"
Ritor1
parents:
diff changeset
28
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30
Ritor1
parents:
diff changeset
31
Ritor1
parents:
diff changeset
32
Ritor1
parents:
diff changeset
33
Ritor1
parents:
diff changeset
34 Game *pGame;
Ritor1
parents:
diff changeset
35
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37
Ritor1
parents:
diff changeset
38
Ritor1
parents:
diff changeset
39
Ritor1
parents:
diff changeset
40 //----- (00435694) --------------------------------------------------------
Ritor1
parents:
diff changeset
41 void Game::ToggleFlags2(unsigned int uFlag)
Ritor1
parents:
diff changeset
42 {
Ritor1
parents:
diff changeset
43 unsigned int v2; // eax@1
Ritor1
parents:
diff changeset
44
Ritor1
parents:
diff changeset
45 v2 = this->uFlags2;
Ritor1
parents:
diff changeset
46 if ( v2 & uFlag )
Ritor1
parents:
diff changeset
47 this->uFlags2 = v2 & ~uFlag;
Ritor1
parents:
diff changeset
48 else
Ritor1
parents:
diff changeset
49 this->uFlags2 = uFlag | v2;
Ritor1
parents:
diff changeset
50 }
Ritor1
parents:
diff changeset
51
Ritor1
parents:
diff changeset
52 //----- (0044103C) --------------------------------------------------------
Ritor1
parents:
diff changeset
53 void Game::Draw()
Ritor1
parents:
diff changeset
54 {
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
55 //float v2; // ST24_4@11
0
Ritor1
parents:
diff changeset
56 //double v3; // ST28_8@11
Ritor1
parents:
diff changeset
57 int v4; // edi@26
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
58 //int v5; // eax@35
0
Ritor1
parents:
diff changeset
59
Ritor1
parents:
diff changeset
60 uFlags2 &= 0xFFFFFFFDu;
Ritor1
parents:
diff changeset
61 if ( pParty->_497FC5_check_party_perception_against_level() )
Ritor1
parents:
diff changeset
62 uFlags2 |= 2u;
Ritor1
parents:
diff changeset
63 pIndoorCamera->sRotationX = pParty->sRotationX;
Ritor1
parents:
diff changeset
64 pIndoorCamera->sRotationY = pParty->sRotationY;
120
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 101
diff changeset
65 //pIndoorCamera->pos.x = pParty->vPosition.x - ((__int64)pParty->y_rotation_granularity * stru_5C6E00->SinCos(pIndoorCamera->sRotationY)) / 2048.0;//12552
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 101
diff changeset
66 //pIndoorCamera->pos.y = pParty->vPosition.y - ((__int64)pParty->y_rotation_granularity * stru_5C6E00->SinCos(pIndoorCamera->sRotationY)) / 2048.0;//800
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 101
diff changeset
67 pIndoorCamera->pos.x = pParty->vPosition.x - pParty->y_rotation_granularity * cosf(2 * 3.141592653589 * pIndoorCamera->sRotationY / 2048.0);
fe0e317c0de0 Camera rotation fixed. Sorta
Nomad
parents: 101
diff changeset
68 pIndoorCamera->pos.y = pParty->vPosition.y - pParty->y_rotation_granularity * sinf(2 * 3.141592653589 * pIndoorCamera->sRotationY / 2048.0);
66
653fdf29c654 23.01.13 (work)
Ritor1
parents: 11
diff changeset
69 pIndoorCamera->pos.z = pParty->vPosition.z + pParty->sEyelevel;//193, but real 353
0
Ritor1
parents:
diff changeset
70 pIndoorCamera->Initialize2();
Ritor1
parents:
diff changeset
71 pIndoorCameraD3D->CreateWorldMatrixAndSomeStuff();
Ritor1
parents:
diff changeset
72 pIndoorCameraD3D->_4374E8_ProllyBuildFrustrum();
Ritor1
parents:
diff changeset
73
Ritor1
parents:
diff changeset
74 if ( pVideoPlayer->AnyMovieLoaded() )
Ritor1
parents:
diff changeset
75 {
Ritor1
parents:
diff changeset
76 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
77 goto LABEL_22;
Ritor1
parents:
diff changeset
78 pRenderer->BeginSceneD3D();
Ritor1
parents:
diff changeset
79 pMouse->DrawCursorToTarget();
Ritor1
parents:
diff changeset
80 }
Ritor1
parents:
diff changeset
81 else
Ritor1
parents:
diff changeset
82 {
78
d56c13146285 Rotate fixed correct
Ritor1
parents: 77
diff changeset
83 if ( pParty->vPosition.x != pParty->vPrevPosition.x | pParty->sRotationY != pParty->sPrevRotationY | pParty->vPosition.y != pParty->vPrevPosition.y
101
2fb33d31ca0d 8.02.13
Ritor1
parents: 85
diff changeset
84 | pParty->sRotationX != pParty->sPrevRotationX | pParty->vPosition.z != pParty->vPrevPosition.z | pParty->sEyelevel != pParty->sPrevEyelevel )
0
Ritor1
parents:
diff changeset
85 pParty->uFlags |= 2u;
78
d56c13146285 Rotate fixed correct
Ritor1
parents: 77
diff changeset
86 pParty->vPrevPosition = pParty->vPosition;
d56c13146285 Rotate fixed correct
Ritor1
parents: 77
diff changeset
87 pParty->vPrevPosition.y = pParty->vPosition.y;
0
Ritor1
parents:
diff changeset
88 //v0 = &pRenderer;
Ritor1
parents:
diff changeset
89 pParty->sPrevRotationY = pParty->sRotationY;
78
d56c13146285 Rotate fixed correct
Ritor1
parents: 77
diff changeset
90 pParty->vPrevPosition.z = pParty->vPosition.z;
0
Ritor1
parents:
diff changeset
91 pParty->sPrevRotationX = pParty->sRotationX;
Ritor1
parents:
diff changeset
92 pParty->sPrevEyelevel = pParty->sEyelevel;
Ritor1
parents:
diff changeset
93 pRenderer->BeginSceneD3D();
Ritor1
parents:
diff changeset
94
Ritor1
parents:
diff changeset
95 if ( !pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
96 pMouse->DrawCursorToTarget();
265
96bc024a5fed Render overflows
Nomad
parents: 227
diff changeset
97 if ( !PauseGameDrawing() || viewparams->field_48 == 1 )
0
Ritor1
parents:
diff changeset
98 {
Ritor1
parents:
diff changeset
99 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
100 {
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
101 float v2 = (double)(((signed int)pMiscTimer->uTotalGameTimeElapsed >> 2) & 0x1F) * 0.032258064 * 6.0;
0
Ritor1
parents:
diff changeset
102 //v3 = v2 + 6.7553994e15;
Ritor1
parents:
diff changeset
103 //pRenderer->field_1036A8_bitmapid = LODWORD(v3);
265
96bc024a5fed Render overflows
Nomad
parents: 227
diff changeset
104 pRenderer->hd_water_current_frame = floorf(v2 + 0.5f);
0
Ritor1
parents:
diff changeset
105 }
Ritor1
parents:
diff changeset
106
Ritor1
parents:
diff changeset
107 if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
Ritor1
parents:
diff changeset
108 pIndoor->Draw();
Ritor1
parents:
diff changeset
109 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
Ritor1
parents:
diff changeset
110 pOutdoor->Draw();
137
a2ddaf0e4d8a automerge fix
Nomad
parents: 134
diff changeset
111 else assert(false);
0
Ritor1
parents:
diff changeset
112
Ritor1
parents:
diff changeset
113 if (pRenderer->pRenderD3D)
Ritor1
parents:
diff changeset
114 {
Ritor1
parents:
diff changeset
115 pDecalBuilder->DrawBloodsplats();
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 484
diff changeset
116 pGame->pLightmapBuilder->DrawLightmaps(2);
0
Ritor1
parents:
diff changeset
117 }
Ritor1
parents:
diff changeset
118 }
Ritor1
parents:
diff changeset
119 }
Ritor1
parents:
diff changeset
120 pRenderer->DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene();
Ritor1
parents:
diff changeset
121 LABEL_22:
Ritor1
parents:
diff changeset
122 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
123 if (pRenderer->pRenderD3D)
Ritor1
parents:
diff changeset
124 pMouse->DrawCursorToTarget();
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
125 if (pOtherOverlayList->bRedraw)
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
126 viewparams->bRedrawGameUI = true;
0
Ritor1
parents:
diff changeset
127 v4 = viewparams->bRedrawGameUI;
Ritor1
parents:
diff changeset
128 GameUI_DrawStatusBar();
Ritor1
parents:
diff changeset
129 if (!viewparams->bRedrawGameUI)
Ritor1
parents:
diff changeset
130 {
Ritor1
parents:
diff changeset
131 GameUI_DrawRightPanelItems();
Ritor1
parents:
diff changeset
132 }
Ritor1
parents:
diff changeset
133 else
Ritor1
parents:
diff changeset
134 {
Ritor1
parents:
diff changeset
135 GameUI_DrawRightPanelFrames();
Ritor1
parents:
diff changeset
136 GameUI_DrawStatusBar_2();
Ritor1
parents:
diff changeset
137 viewparams->bRedrawGameUI = false;
Ritor1
parents:
diff changeset
138 }
Ritor1
parents:
diff changeset
139 if (!pVideoPlayer->pSmackerMovie)
Ritor1
parents:
diff changeset
140 {
Ritor1
parents:
diff changeset
141 GameUI_DrawMinimap(488, 16, 625, 133, viewparams->uMinimapZoom, pParty->uFlags & 2);
Ritor1
parents:
diff changeset
142 if (v4)
Ritor1
parents:
diff changeset
143 {
265
96bc024a5fed Render overflows
Nomad
parents: 227
diff changeset
144 if ( !PauseGameDrawing() && pRenderer->pRenderD3D) // clear game viewport with transparent color
0
Ritor1
parents:
diff changeset
145 pRenderer->FillRectFast(pViewport->uViewportX, pViewport->uViewportY, pViewport->uViewportZ - pViewport->uViewportX,
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
146 pViewport->uViewportW - pViewport->uViewportY + 1,
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
147 pRenderer->uTargetGMask | pRenderer->uTargetBMask);
0
Ritor1
parents:
diff changeset
148 viewparams->field_48 = 0;
Ritor1
parents:
diff changeset
149 }
Ritor1
parents:
diff changeset
150 }
142
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
151
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
152 viewparams->bRedrawGameUI = pOtherOverlayList->bRedraw;
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
153 pOtherOverlayList->bRedraw = 0;
8b8fd4d83fdc Various things here and there
Nomad
parents: 137
diff changeset
154
0
Ritor1
parents:
diff changeset
155 GameUI_DrawPartySpells();
291
0ea5fbd16edb NPC mostly done
Gloval
parents: 271
diff changeset
156 if (v4 || pParty->pHirelings[0].evt_C || pParty->pHirelings[1].evt_C )
134
1c6d36681f7f Margaret
Ritor1
parents: 133
diff changeset
157 DrawHiredNPCs();
0
Ritor1
parents:
diff changeset
158 GameUI_DrawPortraits(v4);
Ritor1
parents:
diff changeset
159 GameUI_DrawLifeManaBars();
Ritor1
parents:
diff changeset
160 GameUI_DrawCharacterSelectionFrame();
Ritor1
parents:
diff changeset
161 if ( sub_44100D() )
Ritor1
parents:
diff changeset
162 draw_right_panel();
Ritor1
parents:
diff changeset
163 if ( !pVideoPlayer->AnyMovieLoaded() )
Ritor1
parents:
diff changeset
164 {
Ritor1
parents:
diff changeset
165 pStru6Instance->DrawPlayerBuffAnims();
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 484
diff changeset
166 pOtherOverlayList->DrawTurnBasedIcon(v4);
0
Ritor1
parents:
diff changeset
167 GameUI_DrawTorchlightAndWizardEye();
Ritor1
parents:
diff changeset
168 }
Ritor1
parents:
diff changeset
169 GUI_UpdateWindows();
130
1c471f3629fb Party expressions update
Nomad
parents: 121
diff changeset
170 pParty->UpdatePlayersAndHirelingsEmotions();
0
Ritor1
parents:
diff changeset
171 ++stru_51076C.field_8;
434
137c59c3dbc4 Temple of Moon and Dragon Lair can now be entered.
Nomad
parents: 378
diff changeset
172 _unused_5B5924_is_travel_ui_drawn = false;
0
Ritor1
parents:
diff changeset
173 if (v4)
Ritor1
parents:
diff changeset
174 pMouse->field_14 = 1;
Ritor1
parents:
diff changeset
175 pMouse->_469EA4();
Ritor1
parents:
diff changeset
176 pMouse->DrawCursor();
Ritor1
parents:
diff changeset
177 pMouse->_469E1C();
Ritor1
parents:
diff changeset
178 pRenderer->EndScene();
Ritor1
parents:
diff changeset
179 pRenderer->Present();
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 484
diff changeset
180 pParty->uFlags &= ~2;
0
Ritor1
parents:
diff changeset
181 }
Ritor1
parents:
diff changeset
182
Ritor1
parents:
diff changeset
183 //----- (0047A815) --------------------------------------------------------
Ritor1
parents:
diff changeset
184 void Game::DrawParticles()
Ritor1
parents:
diff changeset
185 {
Ritor1
parents:
diff changeset
186 pParticleEngine->Draw();
Ritor1
parents:
diff changeset
187 }
Ritor1
parents:
diff changeset
188
Ritor1
parents:
diff changeset
189 //----- (00463149) --------------------------------------------------------
Ritor1
parents:
diff changeset
190 void Game::Loop()
Ritor1
parents:
diff changeset
191 {
Ritor1
parents:
diff changeset
192 //signed int v0; // ebp@3
Ritor1
parents:
diff changeset
193 //signed int v1; // esi@4
Ritor1
parents:
diff changeset
194 //Render *v2; // edi@7
Ritor1
parents:
diff changeset
195 //signed int v3; // esi@7
Ritor1
parents:
diff changeset
196 signed int pNewNPCsCount; // ecx@58
Ritor1
parents:
diff changeset
197 char *pFlags; // eax@59
Ritor1
parents:
diff changeset
198 Player *pPlayer; // esi@65
Ritor1
parents:
diff changeset
199 OtherOverlay *pOtherOverlay; // esi@67
Ritor1
parents:
diff changeset
200 signed int v8; // edi@67
Ritor1
parents:
diff changeset
201 int pPlayerNum; // edi@69
Ritor1
parents:
diff changeset
202 int *pHealth; // esi@71
Ritor1
parents:
diff changeset
203 signed int v11; // esi@78
Ritor1
parents:
diff changeset
204 int v12; // eax@83
Ritor1
parents:
diff changeset
205 const char *pLocationName; // [sp-4h] [bp-68h]@74
Ritor1
parents:
diff changeset
206 bool bLoading; // [sp+10h] [bp-54h]@1
Ritor1
parents:
diff changeset
207 signed int bLoadinga; // [sp+10h] [bp-54h]@19
Ritor1
parents:
diff changeset
208 signed int v16; // [sp+14h] [bp-50h]@8
Ritor1
parents:
diff changeset
209 int v17[4]; // [sp+18h] [bp-4Ch]@80
Ritor1
parents:
diff changeset
210 MSG Msg; // [sp+28h] [bp-3Ch]@20
Ritor1
parents:
diff changeset
211 char Source[64]; // [sp+44h] [bp-20h]@76
Ritor1
parents:
diff changeset
212
165
Ritor1
parents: 153
diff changeset
213 bLoading = uCurrentMenuID == MENU_LOADINGPROC;
0
Ritor1
parents:
diff changeset
214 SetCurrentMenuID((MENU_STATE)-1);
Ritor1
parents:
diff changeset
215 if (bLoading)
Ritor1
parents:
diff changeset
216 {
Ritor1
parents:
diff changeset
217 pParty->Reset();
Ritor1
parents:
diff changeset
218 dword_6BE340 = 0;
Ritor1
parents:
diff changeset
219 uGameState = 0;
Ritor1
parents:
diff changeset
220 LoadGame(uLoadGameUI_SelectedSlot);
Ritor1
parents:
diff changeset
221 }
Ritor1
parents:
diff changeset
222
Ritor1
parents:
diff changeset
223 for (uint i = 1; i < 5; ++i)
Ritor1
parents:
diff changeset
224 for (uint j = 1; j < 6; ++j)
Ritor1
parents:
diff changeset
225 {
Ritor1
parents:
diff changeset
226 sprintf(pTmpBuf, "data\\lloyd%d%d.pcx", i, j);
Ritor1
parents:
diff changeset
227 remove(pTmpBuf);
Ritor1
parents:
diff changeset
228 }
Ritor1
parents:
diff changeset
229
Ritor1
parents:
diff changeset
230 LoadPlayerPortraintsAndVoices();
Ritor1
parents:
diff changeset
231 pIcons_LOD->dword_11B84 = pIcons_LOD->uNumLoadedFiles;
328
8e23edf57e27 little fix
Ritor1
parents: 323
diff changeset
232 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f);
0
Ritor1
parents:
diff changeset
233
Ritor1
parents:
diff changeset
234 while ( 2 )
Ritor1
parents:
diff changeset
235 {
Ritor1
parents:
diff changeset
236 v16 = 1;
Ritor1
parents:
diff changeset
237 if (pMessageQueue_50CBD0->uNumMessages)
Ritor1
parents:
diff changeset
238 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
Ritor1
parents:
diff changeset
239
Ritor1
parents:
diff changeset
240 pPartyActionQueue->uNumActions = 0;
Ritor1
parents:
diff changeset
241 if (pParty->bTurnBasedModeOn)
Ritor1
parents:
diff changeset
242 {
Ritor1
parents:
diff changeset
243 pTurnEngine->End(false);
Ritor1
parents:
diff changeset
244 pParty->bTurnBasedModeOn = false;
Ritor1
parents:
diff changeset
245 }
Ritor1
parents:
diff changeset
246 DoPrepareWorld(bLoading, 1);
Ritor1
parents:
diff changeset
247 pEventTimer->Resume();
Ritor1
parents:
diff changeset
248 dword_6BE364_game_settings_1 |= 0x80;
Ritor1
parents:
diff changeset
249 dword_6BE340 = 2;
Ritor1
parents:
diff changeset
250 // uGame_if_0_else_ui_id__11_save__else_load__8_drawSpellInfoPopup__22_final_window__26_keymapOptions__2_options__28_videoOptions = 0;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
251 pCurrentScreen = SCREEN_GAME;
0
Ritor1
parents:
diff changeset
252 if (pAsyncMouse)
Ritor1
parents:
diff changeset
253 pAsyncMouse->Resume();
Ritor1
parents:
diff changeset
254 if (pGame->pKeyboardInstance->bUsingAsynKeyboard && pAsyncKeyboard )
Ritor1
parents:
diff changeset
255 pAsyncKeyboard->Resume();
Ritor1
parents:
diff changeset
256 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
257 pGame->pVisInstance->_4C1A02();
Ritor1
parents:
diff changeset
258 bLoadinga = 0;
Ritor1
parents:
diff changeset
259 do
Ritor1
parents:
diff changeset
260 {
Ritor1
parents:
diff changeset
261 while ( PeekMessageA(&Msg, 0, 0, 0, PM_REMOVE) )
Ritor1
parents:
diff changeset
262 {
Ritor1
parents:
diff changeset
263 if ( Msg.message == WM_QUIT )
Ritor1
parents:
diff changeset
264 Game_DeinitializeAndTerminate(0);
Ritor1
parents:
diff changeset
265 TranslateMessage(&Msg);
Ritor1
parents:
diff changeset
266 DispatchMessageA(&Msg);
Ritor1
parents:
diff changeset
267 }
Ritor1
parents:
diff changeset
268 if (dword_6BE364_game_settings_1 & 0x0100 )
Ritor1
parents:
diff changeset
269 {
Ritor1
parents:
diff changeset
270 WaitMessage();
Ritor1
parents:
diff changeset
271 continue;
Ritor1
parents:
diff changeset
272 }
Ritor1
parents:
diff changeset
273 pGame->_44EEA7();
Ritor1
parents:
diff changeset
274 GameUI_WritePointedObjectStatusString();
Ritor1
parents:
diff changeset
275 ProcessInputActions();
Ritor1
parents:
diff changeset
276 GameUI_MsgProc();
Ritor1
parents:
diff changeset
277 if ( pArcomageGame->bGameInProgress )
Ritor1
parents:
diff changeset
278 {
Ritor1
parents:
diff changeset
279 ArcomageGame::Loop();
Ritor1
parents:
diff changeset
280 //LABEL_89:
Ritor1
parents:
diff changeset
281 pRenderer->Present();
Ritor1
parents:
diff changeset
282 continue;
Ritor1
parents:
diff changeset
283 }
Ritor1
parents:
diff changeset
284 if (pAsyncMouse)
Ritor1
parents:
diff changeset
285 pAsyncMouse->_46B736_consume_click_lists(1);
Ritor1
parents:
diff changeset
286 if ( pVideoPlayer->pSmackerMovie && !SmackWait(pVideoPlayer->pSmackerMovie) )
Ritor1
parents:
diff changeset
287 {
Ritor1
parents:
diff changeset
288 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
289 pMouse->DrawCursorToTarget();
Ritor1
parents:
diff changeset
290 pVideoPlayer->SmackUpdatePalette(pVideoPlayer->hWindow);
Ritor1
parents:
diff changeset
291 pMouse->_469EA4();
Ritor1
parents:
diff changeset
292 pRenderer->EndScene();
Ritor1
parents:
diff changeset
293 }
Ritor1
parents:
diff changeset
294 if ( pVideoPlayer->pBinkMovie && !BinkWait(pVideoPlayer->pBinkMovie) )
Ritor1
parents:
diff changeset
295 {
Ritor1
parents:
diff changeset
296 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
297 pMouse->DrawCursorToTarget();
Ritor1
parents:
diff changeset
298 pVideoPlayer->BinkUpdatePalette(pVideoPlayer->hWindow);
Ritor1
parents:
diff changeset
299 pMouse->_469EA4();
Ritor1
parents:
diff changeset
300 pRenderer->EndScene();
Ritor1
parents:
diff changeset
301 }
Ritor1
parents:
diff changeset
302 pEventTimer->Update();
Ritor1
parents:
diff changeset
303 pMiscTimer->Update();
Ritor1
parents:
diff changeset
304 OnTimer(0);
Ritor1
parents:
diff changeset
305 GameUI_StatusBar_UpdateTimedString(0);
Ritor1
parents:
diff changeset
306 if ( pMiscTimer->bPaused && !pEventTimer->bPaused )
Ritor1
parents:
diff changeset
307 pMiscTimer->Resume();
Ritor1
parents:
diff changeset
308 if ( pEventTimer->bTackGameTime && !pParty->bTurnBasedModeOn )
Ritor1
parents:
diff changeset
309 pEventTimer->bTackGameTime = 0;
Ritor1
parents:
diff changeset
310 if ( !pEventTimer->bPaused && !uGameState )
Ritor1
parents:
diff changeset
311 {
Ritor1
parents:
diff changeset
312 if ( !pEventTimer->bTackGameTime )
Ritor1
parents:
diff changeset
313 _494035_timed_effects__water_walking_damage__etc();
Ritor1
parents:
diff changeset
314 if ( dword_6BE364_game_settings_1 & 1 )
Ritor1
parents:
diff changeset
315 {
Ritor1
parents:
diff changeset
316 dword_6BE364_game_settings_1 &= 0xFFFFFFFEu;
Ritor1
parents:
diff changeset
317 }
Ritor1
parents:
diff changeset
318 else
Ritor1
parents:
diff changeset
319 {
Ritor1
parents:
diff changeset
320 sub_401A91_AI();
Ritor1
parents:
diff changeset
321 sub_46BDC0_UpdateUserInput_and_MapSpecificStuff();
Ritor1
parents:
diff changeset
322 }
Ritor1
parents:
diff changeset
323 }
Ritor1
parents:
diff changeset
324 if ( v16 )
Ritor1
parents:
diff changeset
325 {
Ritor1
parents:
diff changeset
326 v16 = 0;
Ritor1
parents:
diff changeset
327 viewparams->bRedrawGameUI = true;
Ritor1
parents:
diff changeset
328 }
378
50875632e776 AudioPlayer::UpdateSounds (004AAFCF) take 1
Nomad
parents: 328
diff changeset
329 pAudioPlayer->UpdateSounds();
0
Ritor1
parents:
diff changeset
330 if (uGameState == 1)
Ritor1
parents:
diff changeset
331 //goto LABEL_96;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
332 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
333 bLoadinga = 1;
0
Ritor1
parents:
diff changeset
334 continue;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
335 }
0
Ritor1
parents:
diff changeset
336 if (uGameState == 2)
Ritor1
parents:
diff changeset
337 {
Ritor1
parents:
diff changeset
338 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
339 PrepareWorld(0);
Ritor1
parents:
diff changeset
340 uGameState = 0;
Ritor1
parents:
diff changeset
341 continue;
Ritor1
parents:
diff changeset
342 }
Ritor1
parents:
diff changeset
343 if ( (signed int)uGameState <= 2 )
Ritor1
parents:
diff changeset
344 //goto LABEL_85;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
345 {
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
346 pGame->Draw();
0
Ritor1
parents:
diff changeset
347 continue;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
348 }
0
Ritor1
parents:
diff changeset
349 if ( (signed int)uGameState <= 5 || uGameState == 7 )
Ritor1
parents:
diff changeset
350 {
Ritor1
parents:
diff changeset
351 //LABEL_96:
Ritor1
parents:
diff changeset
352 bLoadinga = 1;
Ritor1
parents:
diff changeset
353 continue;
Ritor1
parents:
diff changeset
354 }
Ritor1
parents:
diff changeset
355 if ( uGameState != 8 )
Ritor1
parents:
diff changeset
356 {
Ritor1
parents:
diff changeset
357 if ( uGameState != 9 )
Ritor1
parents:
diff changeset
358 {
Ritor1
parents:
diff changeset
359 //LABEL_85:
Ritor1
parents:
diff changeset
360 pGame->Draw();
Ritor1
parents:
diff changeset
361 continue;
Ritor1
parents:
diff changeset
362 }
Ritor1
parents:
diff changeset
363 pRenderer->BeginScene();
Ritor1
parents:
diff changeset
364 GUI_UpdateWindows();
Ritor1
parents:
diff changeset
365 pRenderer->EndScene();
Ritor1
parents:
diff changeset
366 //goto LABEL_89;
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
367 pRenderer->Present();
0
Ritor1
parents:
diff changeset
368 continue;
Ritor1
parents:
diff changeset
369 }
4
8e33efd39355 15.01.13(work)
Ritor1
parents: 0
diff changeset
370 pAudioPlayer->StopChannels(-1, -1);//äàëåå â ñëó÷àå ñìåðòè ãðóïïû
293
27670273a6ff little fix npc gen
Gloval
parents: 291
diff changeset
371 memset(&pParty->pHirelings[0], 0, 0x4Cu);
0
Ritor1
parents:
diff changeset
372 memset(&pParty->pHirelings[1], 0, 0x4Cu);
Ritor1
parents:
diff changeset
373 pNewNPCsCount = 0;
Ritor1
parents:
diff changeset
374 if ( (signed int)pNPCStats->uNumNewNPCs > 0 )
Ritor1
parents:
diff changeset
375 {
Ritor1
parents:
diff changeset
376 pFlags = (char *)&pNPCStats->pNewNPCData[0].uFlags;
Ritor1
parents:
diff changeset
377 do
Ritor1
parents:
diff changeset
378 {
Ritor1
parents:
diff changeset
379 if ( *((int *)pFlags + 6) )
Ritor1
parents:
diff changeset
380 *pFlags &= 0x7Fu;
Ritor1
parents:
diff changeset
381 ++pNewNPCsCount;
Ritor1
parents:
diff changeset
382 pFlags += 76;
Ritor1
parents:
diff changeset
383 }
Ritor1
parents:
diff changeset
384 while ( pNewNPCsCount < (signed int)pNPCStats->uNumNewNPCs );
Ritor1
parents:
diff changeset
385 }
Ritor1
parents:
diff changeset
386 pVideoPlayer->PlayDeathMovie();
Ritor1
parents:
diff changeset
387 if ( pVideoPlayer->AnyMovieLoaded() )
Ritor1
parents:
diff changeset
388 pVideoPlayer->Unload();
Ritor1
parents:
diff changeset
389 SaveGame(0, 0);
Ritor1
parents:
diff changeset
390 ++pParty->uNumDeaths;
Ritor1
parents:
diff changeset
391 pPlayer = pParty->pPlayers;
Ritor1
parents:
diff changeset
392 do
Ritor1
parents:
diff changeset
393 {
Ritor1
parents:
diff changeset
394 pPlayer->SetVariable(VAR_Award, 85);
Ritor1
parents:
diff changeset
395 ++pPlayer;
Ritor1
parents:
diff changeset
396 }
Ritor1
parents:
diff changeset
397 while ( (signed int)pPlayer < (signed int)pParty->pHirelings );
Ritor1
parents:
diff changeset
398 pParty->field_764 = 0;
Ritor1
parents:
diff changeset
399 pParty->uTimePlayed += 0x276000ui64;
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 484
diff changeset
400 LOWORD(pParty->uFlags) &= ~0x204;
0
Ritor1
parents:
diff changeset
401 pParty->SetGold(0);
Ritor1
parents:
diff changeset
402 pOtherOverlay = pOtherOverlayList->pOverlays;
Ritor1
parents:
diff changeset
403 v8 = 50;
Ritor1
parents:
diff changeset
404 do
Ritor1
parents:
diff changeset
405 {
Ritor1
parents:
diff changeset
406 pOtherOverlay->Reset();
Ritor1
parents:
diff changeset
407 ++pOtherOverlay;
Ritor1
parents:
diff changeset
408 --v8;
Ritor1
parents:
diff changeset
409 }
Ritor1
parents:
diff changeset
410 while ( v8 );
Ritor1
parents:
diff changeset
411 memset(pParty->pPartyBuffs, 0, 0x140u);
Ritor1
parents:
diff changeset
412 pPlayerNum = 1;
Ritor1
parents:
diff changeset
413 if ( pParty->bTurnBasedModeOn == 1 )
Ritor1
parents:
diff changeset
414 {
Ritor1
parents:
diff changeset
415 pTurnEngine->End(1);
Ritor1
parents:
diff changeset
416 pParty->bTurnBasedModeOn = 0;
Ritor1
parents:
diff changeset
417 }
440
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
418 //pHealth = &pParty->pPlayers[0].sHealth;//193C
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
419 //do
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
420 for(int i=0; i<4; ++i)
0
Ritor1
parents:
diff changeset
421 {
440
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
422 memset(pParty->pPlayers[i].pConditions, 0, 0xA0u);//(pConditions, 0, 160)
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
423 memset(pParty->pPlayers[i].pPlayerBuffs, 0, 0x180u);//(pPlayerBuffs[0], 0, 384)
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
424 //*pHealth = 1;
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
425 pParty->pPlayers[i].sHealth=1;
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
426 //pHealth += 1743; //6CF
0
Ritor1
parents:
diff changeset
427 uActiveCharacter = 1;
Ritor1
parents:
diff changeset
428 }
440
4946b3ed74be more itemgen
Gloval
parents: 434
diff changeset
429 // while ( (signed int)pHealth < (signed int)&pParty->field_871C[567] );
484
4bd56919f075 avard quest guild bits
Gloval
parents: 440
diff changeset
430 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 136) )
0
Ritor1
parents:
diff changeset
431 {
Ritor1
parents:
diff changeset
432 pParty->vPosition.x = -17331; // respawn in harmondale
Ritor1
parents:
diff changeset
433 pParty->vPosition.y = 12547;
Ritor1
parents:
diff changeset
434 pParty->vPosition.z = 465;
Ritor1
parents:
diff changeset
435 pParty->sRotationY = 0;
Ritor1
parents:
diff changeset
436 pLocationName = "out02.odm";
Ritor1
parents:
diff changeset
437 }
Ritor1
parents:
diff changeset
438 else
Ritor1
parents:
diff changeset
439 {
Ritor1
parents:
diff changeset
440 pParty->vPosition.x = 12552; // respawn on emerald isle
Ritor1
parents:
diff changeset
441 pParty->vPosition.y = 1816;
Ritor1
parents:
diff changeset
442 pParty->vPosition.z = 0;
Ritor1
parents:
diff changeset
443 pParty->sRotationY = 512;
Ritor1
parents:
diff changeset
444 pLocationName = "out01.odm";
Ritor1
parents:
diff changeset
445 }
Ritor1
parents:
diff changeset
446 strcpy(Source, pLocationName);
Ritor1
parents:
diff changeset
447 pParty->uFallStartY = pParty->vPosition.z;
Ritor1
parents:
diff changeset
448 pParty->sRotationX = 0;
Ritor1
parents:
diff changeset
449 pParty->uFallSpeed = 0;
Ritor1
parents:
diff changeset
450 pParty->field_6E4 = 0;
Ritor1
parents:
diff changeset
451 pParty->field_6E0 = 0;
Ritor1
parents:
diff changeset
452 if ( _strcmpi(Source, pCurrentMapName) )
Ritor1
parents:
diff changeset
453 {
Ritor1
parents:
diff changeset
454 strcpy(pCurrentMapName, Source);
Ritor1
parents:
diff changeset
455 _5B65A8_npcdata_uflags_or_other = pParty->vPosition.x;
Ritor1
parents:
diff changeset
456 _5B65AC_npcdata_fame_or_other = pParty->vPosition.y;
Ritor1
parents:
diff changeset
457 _5B65B0_npcdata_rep_or_other = pParty->vPosition.z;
Ritor1
parents:
diff changeset
458 _5B65B4_npcdata_loword_house_or_other = pParty->sRotationY;
Ritor1
parents:
diff changeset
459 _5B65B8_npcdata_hiword_house_or_other = pParty->sRotationX;
Ritor1
parents:
diff changeset
460 dword_5B65C0 = 1;
Ritor1
parents:
diff changeset
461 PrepareWorld(1);
Ritor1
parents:
diff changeset
462 }
Ritor1
parents:
diff changeset
463 InitializeActors();
Ritor1
parents:
diff changeset
464 v11 = 0;
Ritor1
parents:
diff changeset
465 do
Ritor1
parents:
diff changeset
466 {
Ritor1
parents:
diff changeset
467 if ( pPlayers[pPlayerNum]->CanAct() )
Ritor1
parents:
diff changeset
468 v17[v11++] = pPlayerNum;
Ritor1
parents:
diff changeset
469 ++pPlayerNum;
Ritor1
parents:
diff changeset
470 }
Ritor1
parents:
diff changeset
471 while ( pPlayerNum <= 4 );
Ritor1
parents:
diff changeset
472 if ( v11 )
Ritor1
parents:
diff changeset
473 {
Ritor1
parents:
diff changeset
474 v12 = rand();
187
49728858c35e On player voices
Nomad
parents: 165
diff changeset
475 pPlayers[v17[v12 % v11]]->PlaySound(SPEECH_99, 0);
0
Ritor1
parents:
diff changeset
476 }
Ritor1
parents:
diff changeset
477 ShowStatusBarString(pGlobalTXT_LocalizationStrings[524], 2u);// "Once again you've cheated death!.." "Âû ñíîâà îáõèòðèëè ñìåðòü! …"
Ritor1
parents:
diff changeset
478 uGameState = 0;
Ritor1
parents:
diff changeset
479 }
Ritor1
parents:
diff changeset
480 while ( !bLoadinga );
Ritor1
parents:
diff changeset
481 dword_6BE340 = 0;
Ritor1
parents:
diff changeset
482 pEventTimer->Pause();
Ritor1
parents:
diff changeset
483 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows();
Ritor1
parents:
diff changeset
484 if ( uGameState == 3 )
Ritor1
parents:
diff changeset
485 {
Ritor1
parents:
diff changeset
486 sub_491E3A();
Ritor1
parents:
diff changeset
487 LoadPlayerPortraintsAndVoices();
Ritor1
parents:
diff changeset
488 uGameState = 0;
Ritor1
parents:
diff changeset
489 pIcons_LOD->dword_11B84 = pIcons_LOD->uNumLoadedFiles;
Ritor1
parents:
diff changeset
490 bLoading = true;
Ritor1
parents:
diff changeset
491 continue;
Ritor1
parents:
diff changeset
492 }
Ritor1
parents:
diff changeset
493 break;
Ritor1
parents:
diff changeset
494 }
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 150
diff changeset
495 pCurrentScreen = SCREEN_VIDEO;
0
Ritor1
parents:
diff changeset
496 sub_491E3A();
Ritor1
parents:
diff changeset
497 }
Ritor1
parents:
diff changeset
498
Ritor1
parents:
diff changeset
499
Ritor1
parents:
diff changeset
500 //----- (0044F192) --------------------------------------------------------
Ritor1
parents:
diff changeset
501 void Game::PrepareBloodsplats()
Ritor1
parents:
diff changeset
502 {
Ritor1
parents:
diff changeset
503 for (uint i = 0; i < uNumBloodsplats; ++i)
Ritor1
parents:
diff changeset
504 {
Ritor1
parents:
diff changeset
505 pBloodsplatContainer->AddBloodsplat(
Ritor1
parents:
diff changeset
506 pBloodsplats[i].x,
Ritor1
parents:
diff changeset
507 pBloodsplats[i].y,
Ritor1
parents:
diff changeset
508 pBloodsplats[i].z,
Ritor1
parents:
diff changeset
509 pBloodsplats[i].radius,
Ritor1
parents:
diff changeset
510 pBloodsplats[i].r,
Ritor1
parents:
diff changeset
511 pBloodsplats[i].g,
Ritor1
parents:
diff changeset
512 pBloodsplats[i].b);
Ritor1
parents:
diff changeset
513 }
Ritor1
parents:
diff changeset
514 }
Ritor1
parents:
diff changeset
515
Ritor1
parents:
diff changeset
516
Ritor1
parents:
diff changeset
517 //----- (0044F120) --------------------------------------------------------
Ritor1
parents:
diff changeset
518 void Game::PushStationaryLights(int a2)
Ritor1
parents:
diff changeset
519 {
Ritor1
parents:
diff changeset
520 signed int v3; // ebx@1
Ritor1
parents:
diff changeset
521 char *v4; // esi@2
Ritor1
parents:
diff changeset
522
Ritor1
parents:
diff changeset
523 auto v2 = this;
Ritor1
parents:
diff changeset
524 v3 = 0;
Ritor1
parents:
diff changeset
525 if ( (signed int)this->uNumStationaryLights > 0 )
Ritor1
parents:
diff changeset
526 {
Ritor1
parents:
diff changeset
527 v4 = (char *)&this->pStationaryLights[0].vRGBColor.y;
Ritor1
parents:
diff changeset
528 do
Ritor1
parents:
diff changeset
529 {
Ritor1
parents:
diff changeset
530 pStationaryLightsStack->AddLight(
Ritor1
parents:
diff changeset
531 (signed __int64)*((float *)v4 - 4),
Ritor1
parents:
diff changeset
532 (signed __int64)*((float *)v4 - 3),
Ritor1
parents:
diff changeset
533 (signed __int64)*((float *)v4 - 2),
Ritor1
parents:
diff changeset
534 (signed __int64)*((float *)v4 + 2),
Ritor1
parents:
diff changeset
535 (signed __int64)*((float *)v4 - 1),
Ritor1
parents:
diff changeset
536 (signed __int64)*(float *)v4,
Ritor1
parents:
diff changeset
537 (signed __int64)*((float *)v4 + 1),
Ritor1
parents:
diff changeset
538 byte_4E94D0);
Ritor1
parents:
diff changeset
539 ++v3;
Ritor1
parents:
diff changeset
540 v4 += 28;
Ritor1
parents:
diff changeset
541 }
Ritor1
parents:
diff changeset
542 while ( v3 < (signed int)v2->uNumStationaryLights );
Ritor1
parents:
diff changeset
543 }
Ritor1
parents:
diff changeset
544 }
Ritor1
parents:
diff changeset
545 // 4E94D0: using guessed type char byte_4E94D0;
Ritor1
parents:
diff changeset
546
Ritor1
parents:
diff changeset
547 //----- (0044F0FD) --------------------------------------------------------
Ritor1
parents:
diff changeset
548 void Game::_44F0FD()
Ritor1
parents:
diff changeset
549 {
Ritor1
parents:
diff changeset
550 ToggleFlags(0x40u);
Ritor1
parents:
diff changeset
551
Ritor1
parents:
diff changeset
552 if ( !(uFlags & 0x40) )
Ritor1
parents:
diff changeset
553 {
Ritor1
parents:
diff changeset
554 uNumBloodsplats = 0;
Ritor1
parents:
diff changeset
555 field_E0C = 0;
Ritor1
parents:
diff changeset
556 }
Ritor1
parents:
diff changeset
557 }
Ritor1
parents:
diff changeset
558
Ritor1
parents:
diff changeset
559 //----- (0044F0D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
560 void Game::ToggleFlags(uint uMask)
Ritor1
parents:
diff changeset
561 {
Ritor1
parents:
diff changeset
562 if (uFlags & uMask)
Ritor1
parents:
diff changeset
563 uFlags &= ~uMask;
Ritor1
parents:
diff changeset
564 else
Ritor1
parents:
diff changeset
565 uFlags |= uMask;
Ritor1
parents:
diff changeset
566 }
Ritor1
parents:
diff changeset
567
Ritor1
parents:
diff changeset
568
Ritor1
parents:
diff changeset
569 //----- (0044F07B) --------------------------------------------------------
Ritor1
parents:
diff changeset
570 bool Game::_44F07B()
Ritor1
parents:
diff changeset
571 {
Ritor1
parents:
diff changeset
572 if (!pKeyboardInstance->IsKeyBeingHeld(VK_SHIFT) &&
Ritor1
parents:
diff changeset
573 !pKeyboardInstance->IsKeyBeingHeld(VK_LSHIFT) &&
Ritor1
parents:
diff changeset
574 !pKeyboardInstance->IsKeyBeingHeld(VK_LSHIFT) ||
Ritor1
parents:
diff changeset
575
Ritor1
parents:
diff changeset
576 (pKeyboardInstance->WasKeyPressed(VK_F11) == 0 &&
Ritor1
parents:
diff changeset
577 pKeyboardInstance->WasKeyPressed(VK_F11)))
Ritor1
parents:
diff changeset
578 return true;
Ritor1
parents:
diff changeset
579 return false;
Ritor1
parents:
diff changeset
580 }
Ritor1
parents:
diff changeset
581
Ritor1
parents:
diff changeset
582 //----- (0044EEA7) --------------------------------------------------------
Ritor1
parents:
diff changeset
583 bool Game::_44EEA7()
Ritor1
parents:
diff changeset
584 {
Ritor1
parents:
diff changeset
585 //Game *v1; // esi@1
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
586 //double v2; // st7@2
0
Ritor1
parents:
diff changeset
587 float depth; // ST00_4@9
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
588 //bool result; // eax@9
0
Ritor1
parents:
diff changeset
589 unsigned int v5; // eax@14
Ritor1
parents:
diff changeset
590 __int64 v6; // kr00_8@21
Ritor1
parents:
diff changeset
591 unsigned int y; // [sp+4h] [bp-24h]@2
Ritor1
parents:
diff changeset
592 unsigned int x; // [sp+8h] [bp-20h]@2
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
593 Vis_SelectionFilter *v10; // [sp+10h] [bp-18h]@2
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
594 Vis_SelectionFilter *v11; // [sp+14h] [bp-14h]@2
0
Ritor1
parents:
diff changeset
595 POINT a2; // [sp+20h] [bp-8h]@1
Ritor1
parents:
diff changeset
596
Ritor1
parents:
diff changeset
597 //v1 = this;
Ritor1
parents:
diff changeset
598 ++qword_5C6DF0;
Ritor1
parents:
diff changeset
599 pParticleEngine->UpdateParticles();
Ritor1
parents:
diff changeset
600 pMouseInstance->GetCursorPos(&a2);
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
601
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
602 x = a2.y;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
603 y = a2.x;
0
Ritor1
parents:
diff changeset
604 if ( sub_4637E0_is_there_popup_onscreen() )
Ritor1
parents:
diff changeset
605 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
606 v11 = &vis_face_filter;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
607 v10 = &vis_sprite_filter_2;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
608 depth = GetPickDepth();
0
Ritor1
parents:
diff changeset
609 }
Ritor1
parents:
diff changeset
610 else
Ritor1
parents:
diff changeset
611 {
592
96f48cfdd657 some flags
Nomad
parents: 569
diff changeset
612 if ( uFlags2 & GAME_FLAGS_2_TARGETING_MODE )
0
Ritor1
parents:
diff changeset
613 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
614 v11 = &vis_face_filter;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
615 v10 = &vis_sprite_filter_1;
0
Ritor1
parents:
diff changeset
616 }
Ritor1
parents:
diff changeset
617 else
Ritor1
parents:
diff changeset
618 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
619 v11 = &vis_face_filter;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
620 v10 = &vis_sprite_filter_4;
0
Ritor1
parents:
diff changeset
621 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
622 depth = 5120.0;
0
Ritor1
parents:
diff changeset
623 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
624 //depth = v2;
0
Ritor1
parents:
diff changeset
625
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 293
diff changeset
626 PickMouse(depth, y, x, false, v10, v11);
0
Ritor1
parents:
diff changeset
627 pLightmapBuilder->std__vector_000004_size = 0;
Ritor1
parents:
diff changeset
628 pLightmapBuilder->std__vector_183808_size = 0;
Ritor1
parents:
diff changeset
629 pDecalBuilder->std__vector_pDecals_size = 0;
Ritor1
parents:
diff changeset
630 pDecalBuilder->field_308008 = 0;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
631 if (!_44F07B())
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
632 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
633
0
Ritor1
parents:
diff changeset
634 if ( uFlags & 8 )
Ritor1
parents:
diff changeset
635 LOBYTE(pStru10Instance->field_4) = 0;
Ritor1
parents:
diff changeset
636 if ( pRenderer->pRenderD3D && uCurrentlyLoadedLevelType == LEVEL_Outdoor)
Ritor1
parents:
diff changeset
637 {
Ritor1
parents:
diff changeset
638 v5 = GetLevelFogColor();
Ritor1
parents:
diff changeset
639 pRenderer->uFogColor = v5 & 0xFFFFFF;
Ritor1
parents:
diff changeset
640 }
Ritor1
parents:
diff changeset
641 if (uFlags & 0x0400)
Ritor1
parents:
diff changeset
642 uFlags2 |= 0x01;
Ritor1
parents:
diff changeset
643 if ( !pRenderer->pRenderD3D && uCurrentlyLoadedLevelType == LEVEL_Outdoor && pMobileLightsStack->uNumLightsActive )
Ritor1
parents:
diff changeset
644 {
Ritor1
parents:
diff changeset
645 uFlags2 |= 0x01;
Ritor1
parents:
diff changeset
646 field_E10 = qword_5C6DF0;
Ritor1
parents:
diff changeset
647 }
Ritor1
parents:
diff changeset
648 v6 = qword_5C6DF0 - field_E10;
Ritor1
parents:
diff changeset
649 if ( qword_5C6DF0 - field_E10 == 1 )
Ritor1
parents:
diff changeset
650 uFlags2 |= v6;
Ritor1
parents:
diff changeset
651 if (uNumStationaryLights_in_pStationaryLightsStack != pStationaryLightsStack->uNumLightsActive )
Ritor1
parents:
diff changeset
652 {
Ritor1
parents:
diff changeset
653 uFlags2 |= 1u;
Ritor1
parents:
diff changeset
654 uNumStationaryLights_in_pStationaryLightsStack = pStationaryLightsStack->uNumLightsActive;
Ritor1
parents:
diff changeset
655 }
Ritor1
parents:
diff changeset
656 _44E904();
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
657 return true;
0
Ritor1
parents:
diff changeset
658 }
Ritor1
parents:
diff changeset
659
Ritor1
parents:
diff changeset
660
Ritor1
parents:
diff changeset
661 //----- (0044EDE4) --------------------------------------------------------
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
662 bool Game::AlterGamma_BLV(BLVFace *pFace, unsigned int *pColor)
0
Ritor1
parents:
diff changeset
663 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
664 if (uFlags2 & GAME_FLAGS_2_SATURATE_LIGHTMAPS &&
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
665 pFace->uAttributes & FACE_CAN_SATURATE_COLOR)
0
Ritor1
parents:
diff changeset
666 {
Ritor1
parents:
diff changeset
667 *pColor = ReplaceHSV(*pColor, 1.0, fSaturation, -1.0);
Ritor1
parents:
diff changeset
668 return true;
Ritor1
parents:
diff changeset
669 }
Ritor1
parents:
diff changeset
670 else
Ritor1
parents:
diff changeset
671 return false;
Ritor1
parents:
diff changeset
672 }
Ritor1
parents:
diff changeset
673
Ritor1
parents:
diff changeset
674 //----- (0044EE30) --------------------------------------------------------
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
675 bool Game::AlterGamma_ODM(ODMFace *pFace, unsigned int *pColor)
0
Ritor1
parents:
diff changeset
676 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
677 if (uFlags2 & GAME_FLAGS_2_SATURATE_LIGHTMAPS &&
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
678 pFace->uAttributes & FACE_CAN_SATURATE_COLOR)
0
Ritor1
parents:
diff changeset
679 {
638
ccf8b4815a1f GetActorTintColor fixed
Nomad
parents: 621
diff changeset
680 *pColor = ReplaceHSV(*pColor, 1.0, fSaturation, -1.0);
0
Ritor1
parents:
diff changeset
681 return true;
Ritor1
parents:
diff changeset
682 }
Ritor1
parents:
diff changeset
683 else
Ritor1
parents:
diff changeset
684 return false;
Ritor1
parents:
diff changeset
685 }
Ritor1
parents:
diff changeset
686
Ritor1
parents:
diff changeset
687
Ritor1
parents:
diff changeset
688 //----- (004645FA) --------------------------------------------------------
Ritor1
parents:
diff changeset
689 void Game::Deinitialize()
Ritor1
parents:
diff changeset
690 {
Ritor1
parents:
diff changeset
691 struct tagRECT Rect; // [sp+0h] [bp-10h]@6
Ritor1
parents:
diff changeset
692
Ritor1
parents:
diff changeset
693 if (pAsyncMouse)
Ritor1
parents:
diff changeset
694 pAsyncMouse->Suspend();
Ritor1
parents:
diff changeset
695 if (pGame->pKeyboardInstance->bUsingAsynKeyboard && pAsyncKeyboard)
Ritor1
parents:
diff changeset
696 pAsyncKeyboard->Suspend();
Ritor1
parents:
diff changeset
697 WriteWindowsRegistryInt("startinwindow", pRenderer->bWindowMode);
Ritor1
parents:
diff changeset
698 if ( GetWindowRect(hWnd, &Rect) && pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
699 {
Ritor1
parents:
diff changeset
700 WriteWindowsRegistryInt("window X", Rect.left);
Ritor1
parents:
diff changeset
701 WriteWindowsRegistryInt("window Y", Rect.top);
Ritor1
parents:
diff changeset
702 }
Ritor1
parents:
diff changeset
703 WriteWindowsRegistryInt("debug flags", stru_51076C.registry_debug_flags);
Ritor1
parents:
diff changeset
704 WriteWindowsRegistryInt("valAlwaysRun", bAlwaysRun);
Ritor1
parents:
diff changeset
705 pItemsTable->Release();
Ritor1
parents:
diff changeset
706 pNPCStats->Release();
Ritor1
parents:
diff changeset
707 if (pAsyncKeyboard)
Ritor1
parents:
diff changeset
708 pAsyncKeyboard->Release();
Ritor1
parents:
diff changeset
709 if (pAsyncMouse)
Ritor1
parents:
diff changeset
710 pAsyncMouse->Release();
Ritor1
parents:
diff changeset
711 if (pMouse)
Ritor1
parents:
diff changeset
712 pMouse->Deactivate();
Ritor1
parents:
diff changeset
713
Ritor1
parents:
diff changeset
714 pAudioPlayer->Release();//error
Ritor1
parents:
diff changeset
715 pNew_LOD->FreeSubIndexAndIO();
Ritor1
parents:
diff changeset
716 pGames_LOD->FreeSubIndexAndIO();
Ritor1
parents:
diff changeset
717 ClipCursor(0);
Ritor1
parents:
diff changeset
718 Game::Destroy();
Ritor1
parents:
diff changeset
719 }
Ritor1
parents:
diff changeset
720
Ritor1
parents:
diff changeset
721 //----- (0044EE7C) --------------------------------------------------------
Ritor1
parents:
diff changeset
722 bool Game::draw_debug_outlines()
Ritor1
parents:
diff changeset
723 {
Ritor1
parents:
diff changeset
724 if (uFlags & 0x04)
Ritor1
parents:
diff changeset
725 {
Ritor1
parents:
diff changeset
726 pLightmapBuilder->DrawDebugOutlines(-1);
Ritor1
parents:
diff changeset
727 pDecalBuilder->DrawDecalDebugOutlines();
Ritor1
parents:
diff changeset
728 }
Ritor1
parents:
diff changeset
729 return true;
Ritor1
parents:
diff changeset
730 }
Ritor1
parents:
diff changeset
731
Ritor1
parents:
diff changeset
732 //----- (0044EC23) --------------------------------------------------------
Ritor1
parents:
diff changeset
733 int Game::_44EC23(stru148 *a2, int *a3, signed int a4)
Ritor1
parents:
diff changeset
734 {
Ritor1
parents:
diff changeset
735 double v4; // st7@4
Ritor1
parents:
diff changeset
736 //double v5; // ST00_8@4
Ritor1
parents:
diff changeset
737 signed int v6; // eax@5
Ritor1
parents:
diff changeset
738 //double v7; // ST00_8@6
Ritor1
parents:
diff changeset
739 signed int result; // eax@8
Ritor1
parents:
diff changeset
740 //double v9; // ST00_8@9
Ritor1
parents:
diff changeset
741 //double v10; // ST00_8@11
Ritor1
parents:
diff changeset
742 float a2a; // [sp+14h] [bp+8h]@4
Ritor1
parents:
diff changeset
743 float a3a; // [sp+18h] [bp+Ch]@4
Ritor1
parents:
diff changeset
744 float a3b; // [sp+18h] [bp+Ch]@6
Ritor1
parents:
diff changeset
745 float a4a; // [sp+1Ch] [bp+10h]@9
Ritor1
parents:
diff changeset
746 float a4b; // [sp+1Ch] [bp+10h]@11
Ritor1
parents:
diff changeset
747
Ritor1
parents:
diff changeset
748 if ( this->uFlags2 & 2 && a2->field_59 == 5 && a2->pODMFace->uAttributes & 2 )
Ritor1
parents:
diff changeset
749 {
Ritor1
parents:
diff changeset
750 v4 = (double)a4;
Ritor1
parents:
diff changeset
751 a2a = v4;
Ritor1
parents:
diff changeset
752 *a3 |= 2u;
Ritor1
parents:
diff changeset
753 a3a = (1.0 - this->fSaturation) * v4;
Ritor1
parents:
diff changeset
754 //v5 = a3a + 6.7553994e15;
Ritor1
parents:
diff changeset
755 //if ( SLODWORD(v5) >= 0 )
Ritor1
parents:
diff changeset
756 if (floorf(a3a + 0.5f) >= 0 )
Ritor1
parents:
diff changeset
757 {
Ritor1
parents:
diff changeset
758 a3b = (1.0 - this->fSaturation) * a2a;
Ritor1
parents:
diff changeset
759 //v7 = a3b + 6.7553994e15;
Ritor1
parents:
diff changeset
760 //v6 = LODWORD(v7);
Ritor1
parents:
diff changeset
761 v6 = floorf(a3b + 0.5f);
Ritor1
parents:
diff changeset
762 }
Ritor1
parents:
diff changeset
763 else
Ritor1
parents:
diff changeset
764 {
Ritor1
parents:
diff changeset
765 v6 = 0;
Ritor1
parents:
diff changeset
766 }
Ritor1
parents:
diff changeset
767 if ( a4 >= v6 )
Ritor1
parents:
diff changeset
768 {
Ritor1
parents:
diff changeset
769 a4a = (1.0 - fSaturation) * a2a;
Ritor1
parents:
diff changeset
770 //v9 = a4a + 6.7553994e15;
Ritor1
parents:
diff changeset
771 //if ( SLODWORD(v9) >= 0 )
Ritor1
parents:
diff changeset
772 if (floorf(a4a + 0.5f) >= 0)
Ritor1
parents:
diff changeset
773 {
Ritor1
parents:
diff changeset
774 a4b = (1.0 - fSaturation) * a2a;
Ritor1
parents:
diff changeset
775 //v10 = a4b + 6.7553994e15;
Ritor1
parents:
diff changeset
776 //result = LODWORD(v10);
Ritor1
parents:
diff changeset
777 result = floorf(a4b + 0.5f);
Ritor1
parents:
diff changeset
778 }
Ritor1
parents:
diff changeset
779 else
Ritor1
parents:
diff changeset
780 {
Ritor1
parents:
diff changeset
781 result = 0;
Ritor1
parents:
diff changeset
782 }
Ritor1
parents:
diff changeset
783 }
Ritor1
parents:
diff changeset
784 else
Ritor1
parents:
diff changeset
785 {
Ritor1
parents:
diff changeset
786 result = a4;
Ritor1
parents:
diff changeset
787 }
Ritor1
parents:
diff changeset
788 }
Ritor1
parents:
diff changeset
789 else
Ritor1
parents:
diff changeset
790 {
Ritor1
parents:
diff changeset
791 result = -1;
Ritor1
parents:
diff changeset
792 }
Ritor1
parents:
diff changeset
793 return result;
Ritor1
parents:
diff changeset
794 }
Ritor1
parents:
diff changeset
795
Ritor1
parents:
diff changeset
796
Ritor1
parents:
diff changeset
797
Ritor1
parents:
diff changeset
798 //----- (00465C8B) --------------------------------------------------------
Ritor1
parents:
diff changeset
799 Game *Game::Create()
Ritor1
parents:
diff changeset
800 {
Ritor1
parents:
diff changeset
801 return new Game;
Ritor1
parents:
diff changeset
802 }
Ritor1
parents:
diff changeset
803
Ritor1
parents:
diff changeset
804 //----- (00465CF3) --------------------------------------------------------
Ritor1
parents:
diff changeset
805 void Game::Destroy()
Ritor1
parents:
diff changeset
806 {
Ritor1
parents:
diff changeset
807 if (pGame)
Ritor1
parents:
diff changeset
808 delete pGame;
Ritor1
parents:
diff changeset
809 pGame = nullptr;
Ritor1
parents:
diff changeset
810 }
Ritor1
parents:
diff changeset
811
Ritor1
parents:
diff changeset
812 //----- (0044ED0A) --------------------------------------------------------
Ritor1
parents:
diff changeset
813 signed int Game::_44ED0A(BLVFace *a2, int *a3, signed int a4)
Ritor1
parents:
diff changeset
814 {
Ritor1
parents:
diff changeset
815 double v4; // st7@3
Ritor1
parents:
diff changeset
816 //double v5; // ST00_8@3
Ritor1
parents:
diff changeset
817 signed int v6; // eax@4
Ritor1
parents:
diff changeset
818 //double v7; // ST00_8@5
Ritor1
parents:
diff changeset
819 signed int result; // eax@7
Ritor1
parents:
diff changeset
820 //double v9; // ST00_8@8
Ritor1
parents:
diff changeset
821 //double v10; // ST00_8@10
Ritor1
parents:
diff changeset
822 float v11; // [sp+14h] [bp+8h]@3
Ritor1
parents:
diff changeset
823 float v12; // [sp+18h] [bp+Ch]@3
Ritor1
parents:
diff changeset
824 float v13; // [sp+18h] [bp+Ch]@5
Ritor1
parents:
diff changeset
825 float v14; // [sp+1Ch] [bp+10h]@8
Ritor1
parents:
diff changeset
826 float v15; // [sp+1Ch] [bp+10h]@10
Ritor1
parents:
diff changeset
827
Ritor1
parents:
diff changeset
828 if ( this->uFlags2 & 2 && a2->uAttributes & 2 )
Ritor1
parents:
diff changeset
829 {
Ritor1
parents:
diff changeset
830 v4 = (double)a4;
Ritor1
parents:
diff changeset
831 v11 = v4;
Ritor1
parents:
diff changeset
832 *a3 |= 2u;
Ritor1
parents:
diff changeset
833 v12 = (1.0 - this->fSaturation) * v4;
Ritor1
parents:
diff changeset
834 //v5 = v12 + 6.7553994e15;
Ritor1
parents:
diff changeset
835 if (floorf(v12 + 0.5f)/* SLODWORD(v5)*/ >= 0 )
Ritor1
parents:
diff changeset
836 {
Ritor1
parents:
diff changeset
837 v13 = (1.0 - this->fSaturation) * v11;
Ritor1
parents:
diff changeset
838 //v7 = v13 + 6.7553994e15;
Ritor1
parents:
diff changeset
839 //v6 = LODWORD(v7);
Ritor1
parents:
diff changeset
840 v6 = floorf(v13 + 0.5f);
Ritor1
parents:
diff changeset
841 }
Ritor1
parents:
diff changeset
842 else
Ritor1
parents:
diff changeset
843 {
Ritor1
parents:
diff changeset
844 v6 = 0;
Ritor1
parents:
diff changeset
845 }
Ritor1
parents:
diff changeset
846 if ( a4 >= v6 )
Ritor1
parents:
diff changeset
847 {
Ritor1
parents:
diff changeset
848 v14 = (1.0 - fSaturation) * v11;
Ritor1
parents:
diff changeset
849 //v9 = v14 + 6.7553994e15;
Ritor1
parents:
diff changeset
850 if (floorf(v14 + 0.5f)/* SLODWORD(v9)*/ >= 0 )
Ritor1
parents:
diff changeset
851 {
Ritor1
parents:
diff changeset
852 v15 = (1.0 - fSaturation) * v11;
Ritor1
parents:
diff changeset
853 //v10 = v15 + 6.7553994e15;
Ritor1
parents:
diff changeset
854 //result = LODWORD(v10);
Ritor1
parents:
diff changeset
855 result = floorf(v15 + 0.5f);
Ritor1
parents:
diff changeset
856 }
Ritor1
parents:
diff changeset
857 else
Ritor1
parents:
diff changeset
858 {
Ritor1
parents:
diff changeset
859 result = 0;
Ritor1
parents:
diff changeset
860 }
Ritor1
parents:
diff changeset
861 }
Ritor1
parents:
diff changeset
862 else
Ritor1
parents:
diff changeset
863 {
Ritor1
parents:
diff changeset
864 result = a4;
Ritor1
parents:
diff changeset
865 }
Ritor1
parents:
diff changeset
866 }
Ritor1
parents:
diff changeset
867 else
Ritor1
parents:
diff changeset
868 {
Ritor1
parents:
diff changeset
869 result = -1;
Ritor1
parents:
diff changeset
870 }
Ritor1
parents:
diff changeset
871 return result;
Ritor1
parents:
diff changeset
872 }
Ritor1
parents:
diff changeset
873
Ritor1
parents:
diff changeset
874
Ritor1
parents:
diff changeset
875 //----- (0044E4B7) --------------------------------------------------------
Ritor1
parents:
diff changeset
876 Game::Game()
Ritor1
parents:
diff changeset
877 {
Ritor1
parents:
diff changeset
878 uNumStationaryLights = 0;
Ritor1
parents:
diff changeset
879 uNumBloodsplats = 0;
Ritor1
parents:
diff changeset
880 field_E0C = 0;
Ritor1
parents:
diff changeset
881 field_E10 = 0;
Ritor1
parents:
diff changeset
882 uNumStationaryLights_in_pStationaryLightsStack = 0;
Ritor1
parents:
diff changeset
883 bGammaControlInitialized = false;
Ritor1
parents:
diff changeset
884 uFlags = 0;
Ritor1
parents:
diff changeset
885 uFlags2 = 0;
Ritor1
parents:
diff changeset
886 uSomeGammaStartTime = 0;
Ritor1
parents:
diff changeset
887 uSomeGammaDeltaTime = 0;
Ritor1
parents:
diff changeset
888
Ritor1
parents:
diff changeset
889 pThreadWardInstance = new ThreadWard;
Ritor1
parents:
diff changeset
890 pParticleEngine = new ParticleEngine;
Ritor1
parents:
diff changeset
891 pMouse = pMouseInstance = new Mouse(pThreadWardInstance);
Ritor1
parents:
diff changeset
892 pLightmapBuilder = new LightmapBuilder;
Ritor1
parents:
diff changeset
893 pVisInstance = new Vis;
Ritor1
parents:
diff changeset
894 pStru6Instance = new stru6;
Ritor1
parents:
diff changeset
895 pIndoorCameraD3D = new IndoorCameraD3D;
Ritor1
parents:
diff changeset
896 pStru9Instance = new stru9;
Ritor1
parents:
diff changeset
897 pStru10Instance = new stru10;
Ritor1
parents:
diff changeset
898 pStru11Instance = new stru11;
Ritor1
parents:
diff changeset
899 pStru12Instance = new stru12(pStru11Instance);
Ritor1
parents:
diff changeset
900 pCShow = new CShow;
Ritor1
parents:
diff changeset
901 pKeyboardInstance = new Keyboard;
Ritor1
parents:
diff changeset
902 pGammaController = new GammaController;
Ritor1
parents:
diff changeset
903
Ritor1
parents:
diff changeset
904 uFlags |= 0x0800;
Ritor1
parents:
diff changeset
905 uFlags2 |= 0x24;
Ritor1
parents:
diff changeset
906
Ritor1
parents:
diff changeset
907 _44F0FD();
Ritor1
parents:
diff changeset
908
Ritor1
parents:
diff changeset
909 bWinNT4_0 = false;
Ritor1
parents:
diff changeset
910 if (pVersion->pVersionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT &&
Ritor1
parents:
diff changeset
911 pVersion->pVersionInfo.dwMajorVersion == 4)
Ritor1
parents:
diff changeset
912 bWinNT4_0 = true;
Ritor1
parents:
diff changeset
913 }
Ritor1
parents:
diff changeset
914
Ritor1
parents:
diff changeset
915 //----- (0044E7F3) --------------------------------------------------------
Ritor1
parents:
diff changeset
916 Game::~Game()
Ritor1
parents:
diff changeset
917 {
Ritor1
parents:
diff changeset
918 if (pGammaController)
Ritor1
parents:
diff changeset
919 delete pGammaController;
Ritor1
parents:
diff changeset
920 if (pKeyboardInstance)
Ritor1
parents:
diff changeset
921 delete pKeyboardInstance;
Ritor1
parents:
diff changeset
922 if (pCShow)
Ritor1
parents:
diff changeset
923 delete pCShow;
Ritor1
parents:
diff changeset
924 if (pStru12Instance)
Ritor1
parents:
diff changeset
925 delete pStru12Instance;
Ritor1
parents:
diff changeset
926 if (pStru11Instance)
Ritor1
parents:
diff changeset
927 delete pStru11Instance;
Ritor1
parents:
diff changeset
928 if (pStru10Instance)
Ritor1
parents:
diff changeset
929 delete pStru10Instance;
Ritor1
parents:
diff changeset
930 if (pStru9Instance)
Ritor1
parents:
diff changeset
931 delete pStru9Instance;
Ritor1
parents:
diff changeset
932 if (pIndoorCameraD3D)
Ritor1
parents:
diff changeset
933 delete pIndoorCameraD3D;
Ritor1
parents:
diff changeset
934 if (pStru6Instance)
Ritor1
parents:
diff changeset
935 delete pStru6Instance;
Ritor1
parents:
diff changeset
936 if (pVisInstance)
Ritor1
parents:
diff changeset
937 delete pVisInstance;
Ritor1
parents:
diff changeset
938 if (pLightmapBuilder)
Ritor1
parents:
diff changeset
939 delete pLightmapBuilder;
Ritor1
parents:
diff changeset
940 if (pMouseInstance)
Ritor1
parents:
diff changeset
941 delete pMouseInstance;
Ritor1
parents:
diff changeset
942 if (pParticleEngine)
Ritor1
parents:
diff changeset
943 delete pParticleEngine;
Ritor1
parents:
diff changeset
944 if (pThreadWardInstance)
Ritor1
parents:
diff changeset
945 delete pThreadWardInstance;
Ritor1
parents:
diff changeset
946 }
Ritor1
parents:
diff changeset
947
Ritor1
parents:
diff changeset
948 //----- (0044E904) --------------------------------------------------------
Ritor1
parents:
diff changeset
949 void Game::_44E904()
Ritor1
parents:
diff changeset
950 {
Ritor1
parents:
diff changeset
951 //Game *v1; // esi@1
Ritor1
parents:
diff changeset
952 unsigned __int64 v2; // qax@1
Ritor1
parents:
diff changeset
953 unsigned int v3; // ecx@1
Ritor1
parents:
diff changeset
954 int v4; // edi@1
Ritor1
parents:
diff changeset
955 unsigned __int8 v5; // cf@7
Ritor1
parents:
diff changeset
956 double v6; // st7@13
Ritor1
parents:
diff changeset
957 double v7; // st7@15
Ritor1
parents:
diff changeset
958 signed __int64 v8; // [sp+Ch] [bp-8h]@1
Ritor1
parents:
diff changeset
959
Ritor1
parents:
diff changeset
960 //v1 = this;
Ritor1
parents:
diff changeset
961 v2 = pEventTimer->Time();
Ritor1
parents:
diff changeset
962 v4 = (v2 - uSomeGammaStartTime) >> 32;
Ritor1
parents:
diff changeset
963 v3 = v2 - LODWORD(uSomeGammaStartTime);
Ritor1
parents:
diff changeset
964 v8 = v2 - uSomeGammaStartTime;
Ritor1
parents:
diff changeset
965 if ( v4 < 0
Ritor1
parents:
diff changeset
966 || SHIDWORD(v2) < ((unsigned int)v2 < LODWORD(uSomeGammaStartTime)) + HIDWORD(uSomeGammaStartTime) | v4 == 0
Ritor1
parents:
diff changeset
967 && v3 <= 0x80 )
Ritor1
parents:
diff changeset
968 {
Ritor1
parents:
diff changeset
969 if ( v4 > 0 || v4 >= 0 )
Ritor1
parents:
diff changeset
970 goto LABEL_12;
Ritor1
parents:
diff changeset
971 v3 = 0;
Ritor1
parents:
diff changeset
972 v4 = 0;
Ritor1
parents:
diff changeset
973 }
Ritor1
parents:
diff changeset
974 else
Ritor1
parents:
diff changeset
975 {
Ritor1
parents:
diff changeset
976 if ( uSomeGammaDeltaTime )
Ritor1
parents:
diff changeset
977 {
Ritor1
parents:
diff changeset
978 LODWORD(uSomeGammaDeltaTime) = 0;
Ritor1
parents:
diff changeset
979 HIDWORD(uSomeGammaDeltaTime) = 0;
Ritor1
parents:
diff changeset
980 }
Ritor1
parents:
diff changeset
981 else
Ritor1
parents:
diff changeset
982 {
Ritor1
parents:
diff changeset
983 LODWORD(uSomeGammaDeltaTime) = v3;
Ritor1
parents:
diff changeset
984 HIDWORD(uSomeGammaDeltaTime) = v4;
Ritor1
parents:
diff changeset
985 }
Ritor1
parents:
diff changeset
986 v5 = __CFADD__(v3, -128);
Ritor1
parents:
diff changeset
987 v3 -= 128;
Ritor1
parents:
diff changeset
988 v4 = v5 + v4 - 1;
Ritor1
parents:
diff changeset
989 }
Ritor1
parents:
diff changeset
990 uSomeGammaStartTime = v2;
Ritor1
parents:
diff changeset
991 v8 = __PAIR__(v4, v3);
Ritor1
parents:
diff changeset
992 LABEL_12:
Ritor1
parents:
diff changeset
993 if ( uSomeGammaDeltaTime )
Ritor1
parents:
diff changeset
994 v6 = (double)(signed __int64)(uSomeGammaDeltaTime - __PAIR__(v4, v3));
Ritor1
parents:
diff changeset
995 else
Ritor1
parents:
diff changeset
996 v6 = (double)v8;
Ritor1
parents:
diff changeset
997 v7 = v6 * 0.0078125;
Ritor1
parents:
diff changeset
998 if ( v7 < 0.0 || v7 <= 1.0 )
Ritor1
parents:
diff changeset
999 {
Ritor1
parents:
diff changeset
1000 if ( v7 < 0.0 )
Ritor1
parents:
diff changeset
1001 v7 = 0.0;
Ritor1
parents:
diff changeset
1002 }
Ritor1
parents:
diff changeset
1003 else
Ritor1
parents:
diff changeset
1004 {
Ritor1
parents:
diff changeset
1005 v7 = 1.0;
Ritor1
parents:
diff changeset
1006 }
Ritor1
parents:
diff changeset
1007 if ( pRenderer->pRenderD3D )
Ritor1
parents:
diff changeset
1008 fSaturation = v7;
Ritor1
parents:
diff changeset
1009 else
Ritor1
parents:
diff changeset
1010 fSaturation = (1.0 - 0.5) * v7 + 0.5;
Ritor1
parents:
diff changeset
1011 }
Ritor1
parents:
diff changeset
1012
Ritor1
parents:
diff changeset
1013 //----- (0044EA17) --------------------------------------------------------
Ritor1
parents:
diff changeset
1014 bool Game::InitializeGammaController()
Ritor1
parents:
diff changeset
1015 {
Ritor1
parents:
diff changeset
1016 if (pVersion->pVersionInfo.dwPlatformId != VER_PLATFORM_WIN32_NT ||
Ritor1
parents:
diff changeset
1017 pVersion->pVersionInfo.dwMajorVersion != 4 )
Ritor1
parents:
diff changeset
1018 pGammaController->InitializeFromSurface(pRenderer->pFrontBuffer4);
Ritor1
parents:
diff changeset
1019
Ritor1
parents:
diff changeset
1020 bGammaControlInitialized = true;
Ritor1
parents:
diff changeset
1021 uSomeGammaStartTime = pEventTimer->Time();
Ritor1
parents:
diff changeset
1022 return true;
Ritor1
parents:
diff changeset
1023 }
Ritor1
parents:
diff changeset
1024
Ritor1
parents:
diff changeset
1025 //----- (0044EA5E) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1026 bool Game::PickMouse(float fPickDepth, unsigned int uMouseX, unsigned int uMouseY, bool bOutline, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter)
0
Ritor1
parents:
diff changeset
1027 {
227
bcd55744c2f4 Clicking background in MainMenu fix
Nomad
parents: 194
diff changeset
1028 if (pCurrentScreen != SCREEN_GAME|| !pRenderer->pRenderD3D)
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1029 return false;
0
Ritor1
parents:
diff changeset
1030
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1031 if (!pVisInstance)
0
Ritor1
parents:
diff changeset
1032 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1033 MessageBoxW(nullptr, L"The 'Vis' object pointer has not been instatiated, but CGame::Pick() is trying to call through it.", nullptr, 0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1034 return false;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1035 }
0
Ritor1
parents:
diff changeset
1036
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1037 if (uMouseX >= (signed int)pViewport->uScreenX &&
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1038 uMouseX <= (signed int)pViewport->uScreenZ &&
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1039 uMouseY >= (signed int)pViewport->uScreenY &&
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1040 uMouseY <= (signed int)pViewport->uScreenW)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1041 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1042 pVisInstance->PickMouse(fPickDepth, uMouseX, uMouseY, sprite_filter, face_filter);
0
Ritor1
parents:
diff changeset
1043
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1044 if (bOutline)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1045 OutlineSelection();
0
Ritor1
parents:
diff changeset
1046 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1047
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1048 return true;
0
Ritor1
parents:
diff changeset
1049 }
Ritor1
parents:
diff changeset
1050 // 4E28F8: using guessed type int pCurrentScreen;
Ritor1
parents:
diff changeset
1051
Ritor1
parents:
diff changeset
1052 //----- (0044EB12) --------------------------------------------------------
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1053 bool Game::PickKeyboard(bool bOutline, Vis_SelectionFilter *sprite_filter, Vis_SelectionFilter *face_filter)
0
Ritor1
parents:
diff changeset
1054 {
271
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 265
diff changeset
1055 if (pCurrentScreen == SCREEN_GAME && pVisInstance && pRenderer->pRenderD3D)
0
Ritor1
parents:
diff changeset
1056 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1057 bool r = pVisInstance->PickKeyboard(&pVisInstance->default_list, sprite_filter, face_filter);
0
Ritor1
parents:
diff changeset
1058
Ritor1
parents:
diff changeset
1059 if (bOutline)
Ritor1
parents:
diff changeset
1060 OutlineSelection();
Ritor1
parents:
diff changeset
1061 return r;
Ritor1
parents:
diff changeset
1062 }
Ritor1
parents:
diff changeset
1063 return false;
Ritor1
parents:
diff changeset
1064 }
123
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1065 /*
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1066 Result::Code Game::PickKeyboard(bool bOutline, struct unnamed_F93E6C *a3, struct unnamed_F93E6C *a4)
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1067 {
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1068 if (dword_4E28F8_PartyCantJumpIfTrue)
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1069 return Result::Generic;
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1070
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1071 pVis->PickKeyboard(a3, a4);
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1072 if (bOutline)
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1073 Game_outline_selection((int)this);
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1074 return Result::Success;
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1075 }
4e35bb416dea 11.02.13
Ritor1
parents: 101
diff changeset
1076 */
0
Ritor1
parents:
diff changeset
1077 // 4E28F8: using guessed type int pCurrentScreen;
Ritor1
parents:
diff changeset
1078
Ritor1
parents:
diff changeset
1079 //----- (0044EB5A) --------------------------------------------------------
Ritor1
parents:
diff changeset
1080 void Game::OutlineSelection()
Ritor1
parents:
diff changeset
1081 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1082 if (!pVisInstance)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1083 return;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1084
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1085 if (!pVisInstance->default_list.uNumPointers)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1086 return;
0
Ritor1
parents:
diff changeset
1087
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1088 auto object_info = pVisInstance->default_list.object_pointers[0];
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1089 if (object_info)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1090 switch (object_info->object_type)
0
Ritor1
parents:
diff changeset
1091 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1092 case VisObjectType_Sprite:
0
Ritor1
parents:
diff changeset
1093 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1094 Log::Warning(L"Sprite outline currently unsupported");
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1095 return;
0
Ritor1
parents:
diff changeset
1096 }
Ritor1
parents:
diff changeset
1097
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1098 case VisObjectType_Face:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1099 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1100 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor)
0
Ritor1
parents:
diff changeset
1101 {
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1102 auto face = (ODMFace *)object_info->object;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1103 if (face->uAttributes & FACE_OUTLINED)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1104 face->uAttributes &= ~FACE_OUTLINED;
0
Ritor1
parents:
diff changeset
1105 else
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1106 face->uAttributes |= FACE_OUTLINED;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1107 }
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1108 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1109 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1110 auto face = (BLVFace *)object_info->object;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1111 if (face->uAttributes & FACE_OUTLINED)
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1112 face->uAttributes &= ~FACE_OUTLINED;
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1113 else
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1114 face->uAttributes |= FACE_OUTLINED;
0
Ritor1
parents:
diff changeset
1115 }
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1116 else assert(false);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1117 }
323
d720a13e2273 Very basic picking & entering houses
Nomad
parents: 293
diff changeset
1118 break;
194
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1119
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1120 default:
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1121 {
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1122 MessageBoxW(nullptr, L"Undefined CObjectInfo type requested in CGame::outline_selection()", nullptr, 0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1123 ExitProcess(0);
650d96af8855 Vis overhaul; sprites can be picked by mouse
Nomad
parents: 190
diff changeset
1124 }
0
Ritor1
parents:
diff changeset
1125 }
Ritor1
parents:
diff changeset
1126 }