annotate Game.cpp @ 1391:cc9a3a24d61d

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