Mercurial > mm7
annotate mm7_1.cpp @ 1290:93911045d8f1
Слияние
author | Ritor1 |
---|---|
date | Tue, 11 Jun 2013 17:31:03 +0600 |
parents | 772f805df4f7 |
children | 1577d75db258 |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1143
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1143
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1143
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1143
diff
changeset
|
4 |
0 | 5 /* This file has been generated by the Hex-Rays decompiler. |
6 Copyright (c) 2007-2011 Hex-Rays <info@hex-rays.com> | |
7 | |
8 Detected compiler: Visual C++ | |
9 */ | |
10 | |
11 //#include <defs.h> | |
373 | 12 #include <assert.h> |
13 | |
1016 | 14 #include "VideoPlayer.h" |
15 #include "BSPModel.h" | |
16 #include "Mouse.h" | |
17 | |
18 #include "Vis.h" | |
0 | 19 #include "MM7.h" |
20 #include "Game.h" | |
21 #include "GUIWindow.h" | |
22 #include "Party.h" | |
23 #include "AudioPlayer.h" | |
24 #include "Outdoor.h" | |
25 #include "Overlays.h" | |
26 #include "LOD.h" | |
27 #include "Actor.h" | |
28 #include "Allocator.h" | |
29 #include "Events.h" | |
30 #include "Viewport.h" | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
31 #include "SpriteObject.h" |
0 | 32 #include "ObjectList.h" |
33 #include "Chest.h" | |
34 #include "DecorationList.h" | |
35 #include "stru123.h" | |
36 #include "Time.h" | |
37 #include "IconFrameTable.h" | |
38 #include "TurnEngine.h" | |
189 | 39 #include "texts.h" |
747 | 40 #include "UIHouses.h" |
0 | 41 #include "mm7_data.h" |
1078 | 42 #include "stru367.h" |
0 | 43 |
44 int __stdcall aWinProc(HWND hWnd, UINT Msg, WPARAM wParam, unsigned int lParam); | |
45 int __stdcall InsertMM7CDDialogFunc(HWND hDlg, int a2, __int16 a3, int a4); | |
46 bool __fastcall FindMM7CD(HWND hWnd, char *pCDDrive); | |
47 bool __fastcall Initialize(HINSTANCE hInst, char *pCmdLine); | |
48 | |
791 | 49 |
50 //----- (004A1780) mm6_chinese--------------------------------------------- | |
51 int fixpoint_div(int a1, int a2) | |
52 { | |
53 return ((__int64)a1 << 16) / a2; | |
54 } | |
55 | |
871 | 56 int fixpoint_mul(int a1, int a2) |
57 { | |
58 return (((__int64)a1 << 16) * a2) >> 16; | |
59 } | |
60 | |
762 | 61 //----- (004453C0) mm6----------------------------------------------------- |
62 //----- (004A1760) mm6_chinese--------------------------------------------- | |
871 | 63 int fixpoint_sub0(int a1, int a2) |
762 | 64 { |
871 | 65 return ((__int64)a1 * (__int64)a2) >> 16; |
762 | 66 } |
67 | |
0 | 68 //----- (004196A0) -------------------------------------------------------- |
991 | 69 void CharacterUI_ReleaseButtons() |
0 | 70 { |
71 GUIButton *i; // esi@2 | |
72 GUIButton *j; // esi@7 | |
73 | |
1091 | 74 if ( dword_507CC0_activ_ch ) |
0 | 75 { |
1091 | 76 dword_507CC0_activ_ch = 0; |
705 | 77 for ( i = pGUIWindow_CurrentMenu->pControlsHead; i; i = j ) |
0 | 78 { |
705 | 79 j=i->pNext; |
80 if ( BYTE1(i->field_1C) & 0x80 ) | |
81 { | |
697 | 82 i->Release(); |
705 | 83 pAllocator->FreeChunk(i); |
84 } | |
0 | 85 } |
86 for ( j = pGUIWindow_CurrentMenu->pControlsHead; j; j = j->pNext ) | |
87 { | |
832 | 88 if ( j->msg == UIMSG_InventoryLeftClick) |
0 | 89 { |
1091 | 90 j->uX = dword_50698C_uX; |
91 j->uY = dword_506988_uY; | |
92 j->uZ = dword_506984_uZ; | |
93 j->uW = dword_506980_uW; | |
972 | 94 pGUIWindow_CurrentMenu->_41D08F_set_keyboard_control_group(1, 0, 0, 0); |
0 | 95 } |
96 } | |
97 } | |
98 } | |
99 | |
100 //----- (0041CD4F) -------------------------------------------------------- | |
972 | 101 bool UI_OnKeyDown(unsigned int vkKey) |
0 | 102 { |
972 | 103 //unsigned int v1; // edi@1 |
104 //unsigned int v2; // eax@2 | |
0 | 105 int v3; // esi@3 |
106 int v4; // ecx@10 | |
979 | 107 GUIButton *pButton; // eax@11 |
0 | 108 int v6; // edx@12 |
109 int v7; // ecx@20 | |
110 char v8; // zf@21 | |
979 | 111 //GUIButton *v9; // ecx@24 |
0 | 112 int v10; // esi@24 |
832 | 113 //int v11; // edx@26 |
0 | 114 int v12; // edx@28 |
115 int v13; // esi@32 | |
979 | 116 //GUIButton *v14; // eax@37 |
0 | 117 int v15; // edx@38 |
118 int v17; // ecx@50 | |
119 int v18; // edx@50 | |
979 | 120 //GUIButton *v19; // ecx@54 |
0 | 121 int v20; // esi@54 |
832 | 122 //int v21; // edx@56 |
0 | 123 int v22; // ecx@59 |
124 int v23; // edx@59 | |
125 int v24; // ecx@60 | |
126 int v25; // esi@63 | |
972 | 127 //unsigned int v26; // [sp+Ch] [bp-14h]@1 |
128 //int v27; // [sp+10h] [bp-10h]@1 | |
0 | 129 int v28; // [sp+14h] [bp-Ch]@10 |
130 int v29; // [sp+14h] [bp-Ch]@36 | |
131 unsigned int uClickX; // [sp+18h] [bp-8h]@10 | |
132 unsigned int uClickY; // [sp+1Ch] [bp-4h]@10 | |
133 | |
972 | 134 //v1 = 0; |
135 //v27 = uNumVisibleWindows; | |
0 | 136 if ( uNumVisibleWindows < 0 ) |
979 | 137 return false; |
972 | 138 //v2 = pMessageQueue_50CBD0->uNumMessages; |
139 for (int i = uNumVisibleWindows; i >= 0; --i) | |
140 //while ( 1 ) | |
0 | 141 { |
972 | 142 v3 = pVisibleWindowsIdxs[i] - 1; |
143 if (!pWindowList[v3].receives_keyboard_input) | |
144 continue; | |
145 | |
979 | 146 switch (vkKey) |
147 { | |
148 case VK_LEFT: | |
149 { | |
150 v12 = pWindowList[v3].field_34; | |
151 if ( pWindowList[v3].pCurrentPosActiveItem - pWindowList[v3].pStartingPosActiveItem - v12 >= 0 ) | |
152 { | |
153 v8 = pCurrentScreen == SCREEN_PARTY_CREATION; | |
154 pWindowList[v3].pCurrentPosActiveItem -= v12; | |
155 if ( v8 ) | |
156 { | |
157 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
158 //v2 = pMessageQueue_50CBD0->uNumMessages; | |
159 } | |
160 } | |
161 if ( pWindowList[v3].field_30 != 0 ) | |
162 { | |
163 break; | |
164 } | |
165 pButton = pWindowList[v3].pControlsHead; | |
166 v13 = pWindowList[v3].pCurrentPosActiveItem; | |
167 if ( v13 > 0) | |
168 { | |
169 do | |
170 { | |
171 pButton = pButton->pNext; | |
172 --v13; | |
173 } | |
174 while ( v13 ); | |
175 } | |
176 pMessageQueue_50CBD0->AddMessage(pButton->msg, pButton->msg_param, 0); | |
177 break; | |
178 } | |
179 case VK_RIGHT: | |
180 { | |
181 v7 = pWindowList[v3].pCurrentPosActiveItem + pWindowList[v3].field_34; | |
182 if ( v7 < pWindowList[v3].pNumPresenceButton + pWindowList[v3].pStartingPosActiveItem ) | |
183 { | |
184 v8 = pCurrentScreen == SCREEN_PARTY_CREATION; | |
185 pWindowList[v3].pCurrentPosActiveItem = v7; | |
186 if ( v8 ) | |
187 { | |
188 pAudioPlayer->PlaySound(SOUND_Button, 0, 0, -1, 0, 0, 0, 0); | |
189 //v2 = pMessageQueue_50CBD0->uNumMessages; | |
190 } | |
191 } | |
192 if ( pWindowList[v3].field_30 != 0 ) | |
193 { | |
194 break; | |
195 } | |
196 pButton = pWindowList[v3].pControlsHead; | |
197 v10 = pWindowList[v3].pCurrentPosActiveItem; | |
198 if ( v10 > 0) | |
199 { | |
200 do | |
201 { | |
202 pButton = pButton->pNext; | |
203 --v10; | |
204 } | |
205 while ( v10 ); | |
206 } | |
207 pMessageQueue_50CBD0->AddMessage(pButton->msg, pButton->msg_param, 0); | |
208 break; | |
209 } | |
210 case VK_DOWN: | |
211 { | |
212 v17 = pWindowList[v3].pStartingPosActiveItem; | |
213 v18 = pWindowList[v3].pCurrentPosActiveItem; | |
214 if ( v18 >= pWindowList[v3].pNumPresenceButton + v17 - 1 ) | |
215 pWindowList[v3].pCurrentPosActiveItem = v17; | |
216 else | |
217 pWindowList[v3].pCurrentPosActiveItem = v18 + 1; | |
218 if ( pWindowList[v3].field_30 != 0 ) | |
219 return true; | |
220 pButton = pWindowList[v3].pControlsHead; | |
221 v20 = pWindowList[v3].pCurrentPosActiveItem; | |
222 if ( v20 > 0) | |
223 { | |
224 do | |
225 { | |
226 pButton = pButton->pNext; | |
227 --v20; | |
228 } | |
229 while ( v20 ); | |
972 | 230 } |
979 | 231 pMessageQueue_50CBD0->AddMessage(pButton->msg, pButton->msg_param, 0); |
232 return true; | |
233 } | |
234 case VK_SELECT: | |
235 { | |
236 pMouse->GetClickPos(&uClickX, &uClickY); | |
237 v4 = pWindowList[v3].pStartingPosActiveItem; | |
238 v28 = v4 + pWindowList[v3].pNumPresenceButton; | |
239 if ( v4 < v4 + pWindowList[v3].pNumPresenceButton ) | |
240 { | |
241 while ( 1 ) | |
242 { | |
243 pButton = pWindowList[v3].pControlsHead; | |
244 if ( v4 > 0 ) | |
245 { | |
246 v6 = v4; | |
247 do | |
248 { | |
249 pButton = pButton->pNext; | |
250 --v6; | |
251 } | |
252 while ( v6 ); | |
253 } | |
254 if ( (signed int)uClickX >= (signed int)pButton->uX//test for StatsTab in PlayerCreation Window | |
255 && (signed int)uClickX <= (signed int)pButton->uZ | |
256 && (signed int)uClickY >= (signed int)pButton->uY | |
257 && (signed int)uClickY <= (signed int)pButton->uW ) | |
258 break; | |
259 ++v4; | |
260 if ( v4 >= v28 ) | |
261 { | |
262 //v1 = 0; | |
263 //v2 = pMessageQueue_50CBD0->uNumMessages; | |
264 //--i; | |
265 //if ( i < 0 ) | |
266 return false; | |
267 //continue; | |
268 } | |
269 } | |
270 pWindowList[v3].pCurrentPosActiveItem = v4; | |
271 return true; | |
272 } | |
273 //v2 = pMessageQueue_50CBD0->uNumMessages; | |
274 break; | |
275 } | |
276 case VK_UP: | |
277 { | |
278 v22 = pWindowList[v3].pCurrentPosActiveItem; | |
279 v23 = pWindowList[v3].pStartingPosActiveItem; | |
280 if ( v22 <= v23 ) | |
281 v24 = pWindowList[v3].pNumPresenceButton + v23 - 1; | |
282 else | |
283 v24 = v22 - 1; | |
284 v8 = pWindowList[v3].field_30 == 0; | |
285 pWindowList[v3].pCurrentPosActiveItem = v24; | |
286 if ( !v8 ) | |
287 return true; | |
288 pButton = pWindowList[v3].pControlsHead; | |
289 v25 = pWindowList[v3].pCurrentPosActiveItem; | |
290 if ( v25 > 0) | |
291 { | |
292 do | |
293 { | |
294 pButton = pButton->pNext; | |
295 --v25; | |
296 } | |
297 while ( v25 ); | |
298 } | |
299 pMessageQueue_50CBD0->AddMessage(pButton->msg, pButton->msg_param, 0); | |
300 return true; | |
301 } | |
302 case VK_NEXT: | |
1091 | 303 { |
304 //if ( pWindowList[v3].field_30 != 0 ) //crashed at skill draw | |
305 //{ | |
306 // pMouse->GetClickPos(&uClickX, &uClickY); | |
307 // v4 = pWindowList[v3].pStartingPosActiveItem; | |
308 // v29 = v4 + pWindowList[v3].pNumPresenceButton; //num buttons more than buttons | |
309 // if ( v4 < v29 ) | |
310 // { | |
311 // while ( 1 ) | |
312 // { | |
313 // pButton = pWindowList[v3].pControlsHead; | |
314 // if ( v4 > 0 ) | |
315 // { | |
316 // v15 = v4; | |
317 // do | |
318 // { | |
319 // pButton = pButton->pNext; | |
320 // --v15; | |
321 // } | |
322 // while ( v15 ); | |
323 // } | |
324 // if ( (signed int)uClickX >= (signed int)pButton->uX | |
325 // && (signed int)uClickX <= (signed int)pButton->uZ | |
326 // && (signed int)uClickY >= (signed int)pButton->uY | |
327 // && (signed int)uClickY <= (signed int)pButton->uW ) | |
328 // { | |
329 // pWindowList[v3].pCurrentPosActiveItem = v4; | |
330 // return true; | |
331 // } | |
332 // ++v4; | |
333 // if ( v4 >= v29 ) | |
334 // { | |
335 // //v1 = 0; | |
336 // //v2 = pMessageQueue_50CBD0->uNumMessages; | |
337 // break; | |
338 // } | |
339 // } | |
340 // } | |
341 // else | |
342 // { | |
343 // //v2 = pMessageQueue_50CBD0->uNumMessages; | |
344 // } | |
345 //} | |
979 | 346 break; |
347 } | |
348 default: | |
349 { | |
350 break; | |
351 } | |
352 } | |
0 | 353 } |
354 } | |
355 | |
356 //----- (0041D20D) -------------------------------------------------------- | |
1006 | 357 void __fastcall sub_41D20D_buff_remaining_time_string( int ecx0, struct GUIWindow *edx0, __int64 a3, struct GUIFont *a2 ) |
358 { | |
0 | 359 unsigned int v4; // edi@1 |
360 unsigned int v5; // esi@1 | |
361 unsigned int v6; // ebp@1 | |
362 unsigned int v7; // ebx@1 | |
363 signed __int64 v8; // ST34_8@1 | |
364 signed __int64 v9; // kr00_8@1 | |
365 char *v10; // eax@2 | |
366 char *v11; // eax@7 | |
367 char *v12; // eax@13 | |
368 char *v13; // eax@19 | |
369 int uY; // [sp+0h] [bp-20h]@1 | |
370 GUIWindow *a1; // [sp+4h] [bp-1Ch]@1 | |
371 signed __int64 v17; // [sp+10h] [bp-10h]@1 | |
372 signed __int64 v18; // [sp+18h] [bp-8h]@1 | |
373 unsigned int v19; // [sp+24h] [bp+4h]@1 | |
374 | |
375 a1 = edx0; | |
376 uY = ecx0; | |
377 v4 = (unsigned __int64)(signed __int64)((double)a3 * 0.234375) >> 32; | |
378 v5 = (signed __int64)((double)a3 * 0.234375); | |
379 v6 = (unsigned __int64)((signed __int64)((double)a3 * 0.234375) / 60) >> 32; | |
380 v7 = (signed __int64)((double)a3 * 0.234375) / 60; | |
381 v8 = (signed __int64)((double)a3 * 0.234375) / 60 / 60; | |
382 v19 = (unsigned int)v8 / 0x18; | |
383 v18 = (signed __int64)__PAIR__(v4, v5) % 60; | |
384 v17 = (signed __int64)__PAIR__(v6, v7) % 60; | |
385 v9 = v8 % 24; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
386 strcpy(pTmpBuf.data(), "\r020"); |
0 | 387 if ( (unsigned int)v8 / 0x18 ) |
388 { | |
389 v10 = pGlobalTXT_LocalizationStrings[57]; // Days | |
390 if ( v19 <= 1 ) | |
391 v10 = pGlobalTXT_LocalizationStrings[56]; // Day | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
392 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v19, v10); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
393 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 394 } |
395 if ( v9 ) | |
396 { | |
397 if ( v9 <= 1 ) | |
398 v11 = pGlobalTXT_LocalizationStrings[109];// Hour | |
399 else | |
400 v11 = pGlobalTXT_LocalizationStrings[110];// Hours | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
401 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v9, v11); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
402 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 403 } |
404 if ( v17 && !v19 ) | |
405 { | |
406 if ( v17 <= 1 ) | |
407 v12 = pGlobalTXT_LocalizationStrings[437];// Minute | |
408 else | |
409 v12 = pGlobalTXT_LocalizationStrings[436];// Minutes | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
410 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v17, v12); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
411 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 412 } |
413 if ( v18 && !v9 ) | |
414 { | |
415 if ( v18 <= 1 ) | |
416 v13 = pGlobalTXT_LocalizationStrings[439];// Second | |
417 else | |
418 v13 = pGlobalTXT_LocalizationStrings[438];// Seconds | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
419 sprintfex(pTmpBuf2.data(), "%d %s ", (int)v18, v13); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
420 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 421 } |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
422 a1->DrawText(a2, 32, uY, 0, pTmpBuf.data(), 0, 0, 0); |
0 | 423 } |
424 | |
425 //----- (0041F54A) -------------------------------------------------------- | |
426 void __cdecl LoadActualSkyFrame() | |
427 { | |
428 if ( pTexture_RestUI_CurrentSkyFrame ) | |
429 pTexture_RestUI_CurrentSkyFrame->Release(); | |
430 if ( pTexture_RestUI_CurrentHourglassFrame ) | |
431 pTexture_RestUI_CurrentHourglassFrame->Release(); | |
1006 | 432 pIcons_LOD->SyncLoadedFilesCount(); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
433 sprintf(pTmpBuf.data(), "TERRA%03d", pParty->uCurrentMinute / 6 + 10 * pParty->uCurrentHour); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
434 pTexture_RestUI_CurrentSkyFrame = pIcons_LOD->LoadTexturePtr(pTmpBuf.data(), TEXTURE_16BIT_PALETTE); |
0 | 435 } |
436 | |
437 //----- (0041F5BE) -------------------------------------------------------- | |
438 void __cdecl Sleep6Hours() | |
439 { | |
440 if ( _506F18_num_hours_to_sleep < 6 ) | |
441 { | |
1038 | 442 pParty->pPlayers[3].SetAsleep(false); |
443 pParty->pPlayers[2].SetAsleep(false); | |
444 pParty->pPlayers[1].SetAsleep(false); | |
445 pParty->pPlayers[0].SetAsleep(false); | |
0 | 446 if ( _506F18_num_hours_to_sleep ) |
447 { | |
448 Rest(_506F18_num_hours_to_sleep); | |
449 _506F18_num_hours_to_sleep = 0; | |
450 LoadActualSkyFrame(); | |
451 } | |
452 if ( dword_506F14 == 2 ) | |
453 { | |
454 pGUIWindow_CurrentMenu->Release(); | |
455 pEventTimer->Resume(); | |
456 if ( pTexture_RestUI_CurrentSkyFrame ) | |
457 pTexture_RestUI_CurrentSkyFrame->Release(); | |
458 if ( pTexture_RestUI_CurrentHourglassFrame ) | |
459 pTexture_RestUI_CurrentHourglassFrame->Release(); | |
460 pTexture_RestUI_CurrentHourglassFrame = 0; | |
461 pTexture_RestUI_CurrentSkyFrame = 0; | |
462 pIcons_LOD->_4114F2(); | |
1006 | 463 pIcons_LOD->SyncLoadedFilesCount(); |
151 | 464 pCurrentScreen = SCREEN_GAME; |
0 | 465 viewparams->bRedrawGameUI = 1; |
466 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
467 { | |
468 pOutdoor->UpdateSunlightVectors(); | |
469 pOutdoor->UpdateFog(); | |
470 } | |
471 } | |
472 dword_506F14 = 0; | |
473 } | |
474 else | |
475 { | |
476 Rest(6u); | |
477 _506F18_num_hours_to_sleep -= 6; | |
478 LoadActualSkyFrame(); | |
479 } | |
480 viewparams->bRedrawGameUI = 1; | |
481 } | |
482 | |
483 //----- (0042038D) -------------------------------------------------------- | |
484 void __cdecl sub_42038D() | |
485 { | |
486 POINT *v0; // esi@2 | |
487 int v1; // ecx@2 | |
488 const char *v2; // eax@3 | |
489 POINT v3; // [sp+0h] [bp-10h]@2 | |
490 POINT a2; // [sp+8h] [bp-8h]@1 | |
491 | |
1038 | 492 __debugbreak(); // invalid indexing |
0 | 493 if ( pMouse->GetCursorPos(&a2)->y < 350 ) |
494 { | |
495 v0 = pMouse->GetCursorPos(&a2); | |
496 v1 = pRenderer->pActiveZBuffer[v0->x + pSRZBufferLineOffsets[pMouse->GetCursorPos(&v3)->y]]; | |
497 if ( v1 ) | |
498 { | |
499 auto _w = (ItemGen *)(&pOtherOverlayList->pOverlays[49].field_4 + 2662 * (unsigned int)pChestWindow->ptr_1C | |
526 | 500 + 18 * *((short *)&pChests[0].igChestItems[139].uExpireTime |
0 | 501 + v1 + 2662 * (unsigned int)pChestWindow->ptr_1C + 3)); |
702 | 502 |
503 _w = (ItemGen *)(&pChests[(unsigned int)pChestWindow->ptr_1C] -32 | |
504 + 18 * *((short *)&pChests[(unsigned int)pChestWindow->ptr_1C].igChestItems[139].uExpireTime + v1 + 3)); | |
0 | 505 v2 = _w->GetDisplayName(); |
994 | 506 GameUI_SetFooterString(v2); |
0 | 507 } |
508 } | |
509 } | |
510 | |
511 //----- (00420C05) -------------------------------------------------------- | |
512 void __fastcall party_finds_gold(unsigned int uNumGold, int _1_dont_share_with_followers___2_the_same_but_without_a_message__else_normal) | |
513 { | |
514 unsigned int v2; // edi@1 | |
515 int v3; // ebp@1 | |
516 unsigned int v4; // esi@1 | |
517 int v5; // ecx@6 | |
518 NPCData *v6; // eax@6 | |
519 signed int v7; // edx@8 | |
520 signed int v8; // ebx@10 | |
521 char *v9; // edi@11 | |
522 signed int v10; // ecx@17 | |
523 int v11; // eax@21 | |
524 NPCData *v12; // ecx@21 | |
525 unsigned int v13; // ecx@23 | |
526 signed int v14; // [sp+Ch] [bp-4h]@6 | |
527 | |
528 v2 = 0; | |
529 v3 = 0; | |
530 v4 = uNumGold; | |
531 if ( _1_dont_share_with_followers___2_the_same_but_without_a_message__else_normal ) | |
532 { | |
533 if ( _1_dont_share_with_followers___2_the_same_but_without_a_message__else_normal == 1 ) | |
534 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
535 sprintf(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[467], uNumGold);// You found %lu gold! |
0 | 536 } |
537 else | |
538 { | |
539 if ( _1_dont_share_with_followers___2_the_same_but_without_a_message__else_normal == 2 ) | |
540 pTmpBuf2[0] = 0; | |
541 } | |
542 } | |
543 else | |
544 { | |
545 v14 = 0; | |
546 v5 = 0; | |
547 v6 = pParty->pHirelings; | |
548 do | |
549 { | |
550 if ( v6->pName ) | |
551 { | |
552 v7 = v14++; | |
553 pTmpBuf[v7] = v5; | |
554 } | |
555 ++v6; | |
556 ++v5; | |
557 } | |
558 while ( (signed int)v6 < (signed int)&pParty->pPickedItem ); | |
559 v8 = 0; | |
560 if ( (signed int)pNPCStats->uNumNewNPCs > 0 ) | |
561 { | |
562 v9 = (char *)pNPCStats->pNewNPCData; | |
563 do | |
564 { | |
565 if ( v9[8] & 0x80 | |
566 && (!pParty->pHirelings[0].pName || strcmp(*(const char **)v9, pParty->pHirelings[0].pName)) | |
567 && (!pParty->pHirelings[1].pName || strcmp(*(const char **)v9, pParty->pHirelings[1].pName)) ) | |
568 { | |
569 v10 = v14++; | |
570 pTmpBuf[v10] = v8 + 2; | |
571 } | |
572 ++v8; | |
573 v9 += 76; | |
574 } | |
575 while ( v8 < (signed int)pNPCStats->uNumNewNPCs ); | |
576 v2 = 0; | |
577 } | |
578 if ( v14 > 0 ) | |
579 { | |
580 do | |
581 { | |
582 v11 = (unsigned __int8)pTmpBuf[v2]; | |
583 v12 = &pNPCStats->pNPCData[v11 + 499]; | |
33 | 584 if ( (unsigned __int8)pTmpBuf[v2] < 2 ) |
0 | 585 v12 = &pParty->pHirelings[v11]; |
586 v13 = v12->uProfession; | |
587 if ( v13 ) | |
291 | 588 v3 += pNPCStats->pProfessions[v13].uHirePrice;//*(&pNPCStats->field_13A58 + 5 * v13); |
0 | 589 ++v2; |
590 } | |
591 while ( (signed int)v2 < v14 ); | |
592 } | |
652 | 593 if ( CheckHiredNPCSpeciality(Factor) ) |
0 | 594 v4 += (signed int)(10 * v4) / 100; |
652 | 595 if ( CheckHiredNPCSpeciality(Banker) ) |
0 | 596 v4 += (signed int)(20 * v4) / 100; |
652 | 597 if ( CheckHiredNPCSpeciality(Pirate) ) |
0 | 598 v4 += (signed int)(10 * v4) / 100; |
599 if ( v3 ) | |
600 { | |
601 v3 = (signed int)(v4 * v3 / 100) / 100; | |
602 if ( v3 < 1 ) | |
603 v3 = 1; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
604 sprintf(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[466], v4, v3);// You found %lu gold (followers take %lu)! |
0 | 605 } |
606 else | |
607 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
608 sprintf(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[467], v4);// You found %lu gold! |
0 | 609 } |
610 v2 = 0; | |
611 } | |
612 pParty->uNumGold += v4 - v3; | |
613 pUIAnim_Gold->uAnimTime = v2; | |
614 pUIAnim_Gold->uAnimLength = 8 * pIconsFrameTable->pIcons[(signed __int16)pUIAnim_Gold->uIconID].uAnimLength; | |
615 if ( pTmpBuf2[0] ) | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
616 ShowStatusBarString(pTmpBuf2.data(), 2u); |
0 | 617 pAudioPlayer->PlaySound(SOUND_GoldReceived, v2, v2, -1, v2, v2, v2, v2); |
618 } | |
619 | |
620 //----- (00420E01) -------------------------------------------------------- | |
987 | 621 void __cdecl OnChestLeftClick() |
0 | 622 { |
526 | 623 int chest_id; // edi@1 |
0 | 624 POINT *v1; // esi@2 |
625 int v2; // eax@2 | |
626 int v3; // ebx@4 | |
627 int v4; // esi@6 | |
628 int v5; // ecx@6 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
629 //SpriteObject v6; // [sp+Ch] [bp-80h]@1 |
526 | 630 POINT v7; // [sp+7Ch] [bp-10h]@2 |
0 | 631 POINT a2; // [sp+84h] [bp-8h]@2 |
632 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
633 SpriteObject v6; // [sp+Ch] [bp-80h]@1 |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
634 //SpriteObject::SpriteObject(&v6); |
0 | 635 |
526 | 636 chest_id = pGUIWindow_CurrentMenu->par1C; |
0 | 637 if ( pParty->pPickedItem.uItemID ) |
638 { | |
526 | 639 if ( Chest::PutItemInChest(-1, &pParty->pPickedItem, pGUIWindow_CurrentMenu->par1C) ) |
0 | 640 pMouse->RemoveHoldingItem(); |
641 } | |
642 else | |
643 { | |
644 v1 = pMouse->GetCursorPos(&a2); | |
645 v2 = pRenderer->pActiveZBuffer[v1->x + pSRZBufferLineOffsets[pMouse->GetCursorPos((POINT *)&v7)->y]] & 0xFFFF; | |
646 if ( v2 ) | |
647 { | |
648 if ( v2 ) | |
649 v3 = v2 - 1; | |
650 else | |
651 v3 = -1; | |
526 | 652 v4 = pChests[chest_id].pInventoryIndices[v3] - 1; |
600 | 653 if ( pItemsTable->pItems[pChests[chest_id].igChestItems[v4].uItemID].uEquipType == EQUIP_GOLD ) |
0 | 654 { |
600 | 655 party_finds_gold(pChests[chest_id].igChestItems[v4].uSpecEnchantmentType, 0); |
0 | 656 viewparams->bRedrawGameUI = 1; |
657 } | |
658 else | |
659 { | |
526 | 660 pParty->SetHoldingItem(&pChests[chest_id].igChestItems[v4]); |
0 | 661 } |
662 sub_420B13(v4, v3); | |
663 } | |
664 } | |
665 } | |
666 | |
667 | |
668 | |
669 //----- (00421B2C) -------------------------------------------------------- | |
670 bool __cdecl sub_421B2C_PlaceInInventory_or_DropPickedItem() | |
671 { | |
672 unsigned int v0; // eax@2 | |
673 Texture *v1; // ebx@2 | |
674 int v2; // eax@3 | |
675 Player *v3; // esi@5 | |
676 int v4; // eax@6 | |
677 unsigned __int16 v5; // dx@11 | |
678 signed int v6; // eax@11 | |
679 char *v7; // edi@12 | |
680 __int16 v8; // ax@16 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
681 SpriteObject a1; // [sp+4h] [bp-78h]@11 |
0 | 682 int v11; // [sp+74h] [bp-8h]@2 |
683 int v12; // [sp+78h] [bp-4h]@5 | |
684 | |
685 if ( !pParty->pPickedItem.uItemID ) | |
686 return 1; | |
687 v0 = pIcons_LOD->LoadTexture( | |
688 pItemsTable->pItems[pParty->pPickedItem.uItemID].pIconName, | |
689 TEXTURE_16BIT_PALETTE); | |
945 | 690 v1 = pIcons_LOD->GetTexture(v0); |
0 | 691 v11 = areWeLoadingTexture; |
692 if ( uActiveCharacter | |
1014 | 693 && (v2 = pPlayers[uActiveCharacter]->AddItem(-1, pParty->pPickedItem.uItemID)) != 0 ) |
0 | 694 { |
232 | 695 memcpy(&pPlayers[uActiveCharacter]->pInventoryItems[v2-1], &pParty->pPickedItem, 0x24u); |
244 | 696 pMouse->RemoveHoldingItem(); |
0 | 697 } |
698 else | |
699 { | |
700 v12 = 0; | |
701 v3 = pParty->pPlayers; | |
244 | 702 while ( v3 <= &pParty->pPlayers[3] ) |
0 | 703 { |
1014 | 704 v4 = v3->AddItem(-1, pParty->pPickedItem.uItemID); |
0 | 705 if ( v4 ) |
244 | 706 { |
707 memcpy(&pParty->pPlayers[v12].pInventoryItems[v4], &pParty->pPickedItem, 0x24u); | |
708 pMouse->RemoveHoldingItem(); | |
709 break; | |
710 } | |
711 ++v12; | |
0 | 712 ++v3; |
244 | 713 } |
714 if ( v12 == 4 ) | |
715 { | |
716 v5 = pItemsTable->pItems[pParty->pPickedItem.uItemID].uSpriteID; | |
717 v6 = 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
718 a1.uType = pItemsTable->pItems[pParty->pPickedItem.uItemID].uSpriteID; |
244 | 719 if ( (signed int)pObjectList->uNumObjects <= 0 ) |
720 { | |
721 LOWORD(v6) = 0; | |
722 } | |
723 else | |
724 { | |
725 v7 = (char *)&pObjectList->pObjects->uObjectID; | |
726 while ( v5 != *(short *)v7 ) | |
727 { | |
728 ++v6; | |
729 v7 += 56; | |
730 if ( v6 >= (signed int)pObjectList->uNumObjects ) | |
731 { | |
732 LOWORD(v6) = 0; | |
733 break; | |
734 } | |
735 } | |
736 } | |
822 | 737 a1.spell_caster_pid = OBJECT_Player; |
244 | 738 a1.uObjectDescID = v6; |
739 a1.vPosition.y = pParty->vPosition.y; | |
740 a1.vPosition.x = pParty->vPosition.x; | |
741 a1.vPosition.z = pParty->sEyelevel + pParty->vPosition.z; | |
742 a1.uSoundID = 0; | |
743 a1.uFacing = 0; | |
744 a1.uAttributes = 8; | |
745 v8 = pIndoor->GetSector( | |
746 pParty->vPosition.x, | |
747 pParty->vPosition.y, | |
748 pParty->sEyelevel + pParty->vPosition.z); | |
749 a1.uSpriteFrameID = 0; | |
750 a1.uSectorID = v8; | |
751 memcpy(&a1.stru_24, &pParty->pPickedItem, sizeof(a1.stru_24)); | |
752 a1.Create(pParty->sRotationY, 184, 200, 0); | |
753 pMouse->RemoveHoldingItem(); | |
754 } | |
755 } | |
0 | 756 if ( !v11 ) |
757 { | |
758 v1->Release(); | |
1006 | 759 pIcons_LOD->SyncLoadedFilesCount(); |
0 | 760 } |
761 return 1; | |
762 } | |
763 | |
764 | |
765 //----- (00421EA6) -------------------------------------------------------- | |
987 | 766 void __cdecl OnInventoryLeftClick() |
0 | 767 { |
768 Player *v0; // ebx@1 | |
769 signed int v1; // eax@2 | |
770 signed int v2; // ecx@2 | |
771 int v3; // eax@2 | |
772 char v4; // sf@2 | |
773 int v5; // eax@2 | |
774 unsigned int v6; // eax@7 | |
775 unsigned int v7; // esi@12 | |
776 unsigned int v8; // eax@12 | |
777 unsigned int v9; // eax@16 | |
778 unsigned int v10; // eax@18 | |
779 ItemGen this_; // [sp+Ch] [bp-3Ch]@1 | |
780 POINT a2; // [sp+30h] [bp-18h]@4 | |
781 unsigned int v13; // [sp+38h] [bp-10h]@13 | |
782 unsigned int pY; // [sp+3Ch] [bp-Ch]@2 | |
783 unsigned int pX; // [sp+40h] [bp-8h]@2 | |
784 int a4; // [sp+44h] [bp-4h]@2 | |
785 | |
786 v0 = pPlayers[uActiveCharacter]; | |
501 | 787 if ( pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] == 103 ) |
0 | 788 { |
501 | 789 pMouse->GetClickPos(&pX, &pY); |
790 pY = pY - 17; | |
791 v2 =pX - 14; | |
792 pX = v2; | |
793 v3 = 14 * (pY >> 5); | |
794 v2 >>= 5; | |
795 v4 = v2 + v3 < 0; | |
796 v5 = v2 + v3; | |
797 a4 = v5; | |
798 if ( !v4 ) | |
0 | 799 { |
501 | 800 if ( v5 <= 126 && pMouse->GetCursorPos(&a2)->x < 462 |
801 && pMouse->GetCursorPos(&a2)->x >= 14 ) | |
0 | 802 { |
501 | 803 if ( unk_50C9A0 ) |
804 { | |
805 v6 = v0->GetItemIDAtInventoryIndex(&a4); | |
806 if ( v6 ) | |
807 { | |
808 *((char *)pGUIWindow_Settings->ptr_1C + 8) &= 0x7Fu; | |
809 *((short *)pGUIWindow_Settings->ptr_1C + 2) = uActiveCharacter - 1; | |
810 *((int *)pGUIWindow_Settings->ptr_1C + 3) = v6 - 1; | |
811 *((short *)pGUIWindow_Settings->ptr_1C + 3) = a4; | |
812 ptr_50C9A4 = (ItemGen *)&v0->pInventoryItems[v6-1]; | |
813 unk_50C9A0 = 0; | |
814 if ( pMessageQueue_50CBD0->uNumMessages ) | |
815 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
816 pMouse->SetCursorBitmap("MICON1"); | |
817 dword_50C9D0 = 113; | |
818 dword_50C9D4 = 0; | |
819 dword_50C9D8 = 256; | |
820 } | |
821 return; | |
822 } | |
823 if ( ptr_50C9A4 ) | |
824 return; | |
825 v7 = pParty->pPickedItem.uItemID; | |
826 v8 = v0->GetItemIDAtInventoryIndex(&a4); | |
827 if ( !v7 ) | |
828 { | |
829 if ( !v8 ) | |
830 return; | |
831 memcpy(&pParty->pPickedItem, &v0->pInventoryItems[v8-1], sizeof(pParty->pPickedItem)); | |
832 v0->RemoveItemAtInventoryIndex(a4); | |
833 v9 = pParty->pPickedItem.uItemID; | |
588 | 834 pMouse->SetCursorBitmap(pItemsTable->pItems[v9].pIconName); |
835 return; | |
501 | 836 } |
837 v13 = v8; | |
838 if ( v8 ) | |
839 { | |
840 a2.y = (LONG)&v0->pInventoryItems[v8-1]; | |
841 memcpy(&this_, (const void *)a2.y, sizeof(this_)); | |
842 v0->RemoveItemAtInventoryIndex(a4); | |
843 pX = v0->AddItem2(a4, &pParty->pPickedItem); | |
844 if ( !pX ) | |
845 { | |
846 pX = v0->AddItem2(0xFFFFFFFFu, &pParty->pPickedItem); | |
847 if ( !pX ) | |
848 { | |
1014 | 849 v0->PutItemArInventoryIndex(&this_, v13 - 1, a4); |
501 | 850 memcpy((void *)a2.y, &this_, sizeof(ItemGen)); |
851 return; | |
852 } | |
853 } | |
854 v9 = this_.uItemID; | |
855 memcpy(&pParty->pPickedItem, &this_, sizeof(pParty->pPickedItem)); | |
856 pMouse->SetCursorBitmap(pItemsTable->pItems[v9].pIconName); | |
857 return; | |
858 } | |
859 v10 = v0->AddItem(a4, v7); | |
860 pX = v10; | |
1014 | 861 if ( v10 || (v10 = v0->AddItem(-1, pParty->pPickedItem.uItemID), (pX = v10) != 0) ) |
501 | 862 { |
863 memcpy(&v0->pInventoryItems[v10-1], &pParty->pPickedItem, 0x24u); | |
864 pMouse->RemoveHoldingItem(); | |
865 } | |
0 | 866 } |
867 } | |
868 } | |
869 } | |
870 | |
871 //----- (0042213C) -------------------------------------------------------- | |
1030 | 872 void OnGameViewportClick() |
0 | 873 { |
874 signed int v0; // ebx@2 | |
875 POINT *v1; // esi@3 | |
876 signed int v2; // eax@9 | |
877 BLVFace *v3; // eax@10 | |
878 unsigned int v4; // eax@11 | |
879 unsigned __int16 v5; // dx@14 | |
880 signed int v6; // eax@14 | |
881 char *v7; // esi@15 | |
1038 | 882 //int *v8; // eax@19 |
0 | 883 int v9; // eax@19 |
884 unsigned int v10; // eax@19 | |
885 int v11; // ecx@21 | |
886 ODMFace *v12; // eax@22 | |
887 LevelDecoration *v13; // esi@24 | |
888 __int16 v14; // ax@25 | |
889 int v15; // ecx@29 | |
890 signed int v16; // edx@30 | |
891 Actor *v17; // esi@30 | |
892 int v18; // ebx@47 | |
893 unsigned __int16 v19; // ax@50 | |
894 const char *v20; // eax@51 | |
895 signed int v21; // eax@58 | |
896 ItemGen *v22; // esi@62 | |
897 unsigned int v23; // eax@62 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
898 SpriteObject a1; // [sp+Ch] [bp-80h]@1 |
1038 | 899 //POINT v25; // [sp+7Ch] [bp-10h]@3 |
0 | 900 POINT a2; // [sp+84h] [bp-8h]@3 |
901 | |
1098 | 902 v1 = pMouse->GetCursorPos(&a2); |
0 | 903 if ( pRenderer->pRenderD3D ) |
904 v0 = pGame->pVisInstance->get_picked_object_zbuf_val(); | |
905 else | |
906 { | |
1038 | 907 v0 = pRenderer->pActiveZBuffer[v1->x + pSRZBufferLineOffsets[v1->y]]; |
0 | 908 } |
1038 | 909 |
848 | 910 if ( PID_TYPE(v0) == OBJECT_Item) |
0 | 911 { |
912 a2.y = (signed int)(unsigned __int16)v0 >> 3; | |
913 v21 = (signed int)(unsigned __int16)v0 >> 3; | |
1047 | 914 if ( !(pObjectList->pObjects[pSpriteObjects[v21].uObjectDescID].uFlags & 0x10) && a2.y < 1000 && pSpriteObjects[v21].uObjectDescID |
0 | 915 && (unsigned int)v0 < 0x2000000 ) |
916 { | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
917 v22 = &pSpriteObjects[v21].stru_24; |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
918 v23 = pSpriteObjects[v21].stru_24.uItemID; |
0 | 919 if ( pItemsTable->pItems[v23].uEquipType == 18 ) |
920 { | |
377 | 921 party_finds_gold(v22->uSpecEnchantmentType, 0); |
0 | 922 viewparams->bRedrawGameUI = 1; |
923 } | |
924 else | |
925 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
926 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[471], pItemsTable->pItems[v23].pUnidentifiedName); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
927 ShowStatusBarString(pTmpBuf2.data(), 2u); |
0 | 928 if ( v22->uItemID == 506 ) |
484 | 929 _449B7E_toggle_bit(pParty->_quest_bits, 184, 1u); |
0 | 930 if ( v22->uItemID == 455 ) |
484 | 931 _449B7E_toggle_bit(pParty->_quest_bits, 185, 1u); |
0 | 932 if ( !pParty->AddItem(v22) ) |
933 pParty->SetHoldingItem(v22); | |
934 } | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
510
diff
changeset
|
935 SpriteObject::OnInteraction(a2.y); |
0 | 936 return; |
937 } | |
588 | 938 v4 = pParty->pPickedItem.uItemID; |
939 if ( !pParty->pPickedItem.uItemID ) | |
940 return; | |
941 goto LABEL_14; | |
0 | 942 } |
848 | 943 if ( PID_TYPE(v0) != OBJECT_Actor) |
141 | 944 { |
848 | 945 if ( PID_TYPE(v0) == OBJECT_Decoration) |
0 | 946 { |
947 v13 = &pLevelDecorations[(signed int)(unsigned __int16)v0 >> 3]; | |
948 if ( (signed int)(((unsigned int)v0 >> 16) - pDecorationList->pDecorations[v13->uDecorationDescID].uRadius) >= 512 ) | |
588 | 949 { |
950 v4 = pParty->pPickedItem.uItemID; | |
951 if ( !pParty->pPickedItem.uItemID ) | |
952 return; | |
953 goto LABEL_14; | |
954 } | |
0 | 955 v14 = v13->field_16_event_id; |
956 if ( !v14 ) | |
957 { | |
958 if ( pLevelDecorations[(signed int)(unsigned __int16)v0 >> 3].IsInteractive() ) | |
959 { | |
960 v15 = stru_5E4C90._decor_events[v13->_idx_in_stru123 - 75] + 380; | |
520
35f28d4c0ff9
GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents:
515
diff
changeset
|
961 activeLevelDecoration = &pLevelDecorations[(signed int)(unsigned __int16)v0 >> 3]; |
0 | 962 EventProcessor(v15, 0, 1); |
520
35f28d4c0ff9
GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents:
515
diff
changeset
|
963 activeLevelDecoration = NULL; |
0 | 964 } |
965 return; | |
966 } | |
967 v11 = v14; | |
968 } | |
969 else | |
970 { | |
1030 | 971 if ( PID_TYPE(v0) != OBJECT_BModel || HIWORD(v0) >= 512 ) |
588 | 972 { |
973 v4 = pParty->pPickedItem.uItemID; | |
974 if ( !pParty->pPickedItem.uItemID ) | |
975 return; | |
976 goto LABEL_14; | |
977 } | |
1030 | 978 v2 = PID_ID(v0); |
0 | 979 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor) |
980 { | |
981 v3 = &pIndoor->pFaces[v2]; | |
982 if ( !(v3->uAttributes & 0x2000000) ) | |
983 { | |
984 LABEL_11: | |
588 | 985 v4 = pParty->pPickedItem.uItemID; |
986 if ( !pParty->pPickedItem.uItemID ) | |
987 { | |
988 ShowNothingHereStatus(); | |
989 v4 = pParty->pPickedItem.uItemID; | |
990 if ( !pParty->pPickedItem.uItemID ) | |
991 return; | |
992 } | |
0 | 993 LABEL_14: |
588 | 994 v5 = pItemsTable->pItems[v4].uSpriteID; |
995 v6 = 0; | |
996 a1.uType = v5; | |
997 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
998 LOWORD(v6) = 0; | |
999 else | |
1000 { | |
1001 v7 = (char *)&pObjectList->pObjects->uObjectID; | |
1002 while ( v5 != *(short *)v7 ) | |
1003 { | |
1004 ++v6; | |
1005 v7 += 56; | |
1006 if ( v6 >= (signed int)pObjectList->uNumObjects ) | |
1007 { | |
1008 LOWORD(v6) = 0; | |
1009 break; | |
1010 } | |
1011 } | |
1012 } | |
1013 a1.uObjectDescID = v6; | |
1014 a1.vPosition.y = pParty->vPosition.y; | |
822 | 1015 a1.spell_caster_pid = OBJECT_Player; |
588 | 1016 a1.vPosition.x = pParty->vPosition.x; |
1017 a1.vPosition.z = pParty->sEyelevel + pParty->vPosition.z; | |
1018 a1.uSoundID = 0; | |
1019 a1.uFacing = 0; | |
1020 a1.uAttributes = 8; | |
1047 | 1021 a1.uSectorID = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->sEyelevel + pParty->vPosition.z); |
588 | 1022 a1.uSpriteFrameID = 0; |
1023 memcpy(&a1.stru_24, &pParty->pPickedItem, 0x24u); | |
1038 | 1024 |
1025 extern int UnprojectX(int); | |
1026 v9 = UnprojectX(v1->x); | |
588 | 1027 a1.Create(pParty->sRotationY + v9, 184, 200, 0); |
1038 | 1028 v10 = pIcons_LOD->LoadTexture(pItemsTable->pItems[pParty->pPickedItem.uItemID].pIconName, TEXTURE_16BIT_PALETTE); |
588 | 1029 if (v10 != -1) |
1030 pIcons_LOD->pTextures[v10].Release(); | |
1031 pMouse->RemoveHoldingItem(); | |
1006 | 1032 pIcons_LOD->SyncLoadedFilesCount(); |
588 | 1033 return; |
0 | 1034 } |
1035 v11 = pIndoor->pFaceExtras[v3->uFaceExtraID].uEventID; | |
1036 } | |
1037 else | |
1038 { | |
1030 | 1039 v12 = &pOutdoor->pBModels[(signed int)(v0 & 0xFFFF) >> 9].pFaces[v2 & 0x3F]; |
1040 if ( !v12->Clickable()) | |
0 | 1041 goto LABEL_11; |
1042 v11 = v12->sCogTriggeredID; | |
1043 } | |
1044 } | |
1045 EventProcessor(v11, (unsigned __int16)v0, 1); | |
1046 return; | |
1047 } | |
1048 v16 = (signed int)(unsigned __int16)v0 >> 3; | |
1049 a2.y = v16; | |
1050 v17 = &pActors[v16]; | |
1051 if ( v17->uAIState == 5 ) | |
1052 { | |
1053 if ( (unsigned int)v0 < 0x2000000 ) | |
1054 { | |
1055 stru_50C198.LootActor(&pActors[v16]); | |
1056 return; | |
1057 } | |
588 | 1058 v4 = pParty->pPickedItem.uItemID; |
1059 if ( !pParty->pPickedItem.uItemID ) | |
1060 return; | |
1061 goto LABEL_14; | |
0 | 1062 } |
1063 if ( GetAsyncKeyState(VK_SHIFT) >= 0 ) | |
1064 { | |
1065 if ( !v17->GetActorsRelation(0) && !(BYTE2(v17->uAttributes) & 8) ) | |
1066 { | |
1030 | 1067 if ( HIWORD(v0) >= 512) |
588 | 1068 { |
1069 v4 = pParty->pPickedItem.uItemID; | |
1070 if ( !pParty->pPickedItem.uItemID ) | |
1071 return; | |
1072 goto LABEL_14; | |
1073 } | |
0 | 1074 if ( !v17->CanAct() ) |
1075 return; | |
1076 v18 = a2.y; | |
1060 | 1077 Actor::AI_FaceObject(a2.y, 4u, 0, 0); |
602 | 1078 if ( !v17->sNPC_ID ) |
0 | 1079 { |
1080 v19 = pNPCStats->pGroups_copy[v17->uGroup]; | |
1081 if ( v19 ) | |
1082 { | |
1083 v20 = pNPCStats->pCatchPhrases[v19]; | |
1084 if ( v20 ) | |
1085 { | |
1086 pParty->uFlags |= 2u; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1195
diff
changeset
|
1087 strcpy(byte_5B0938.data(), v20); |
0 | 1088 sub_4451A8_press_any_key(0, 0, 0); |
1089 } | |
1090 } | |
1091 return; | |
1092 } | |
437 | 1093 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages >= 40 ) |
0 | 1094 return; |
990 | 1095 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_StartNPCDialogue; |
0 | 1096 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v18; |
1097 LABEL_42: | |
1098 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
1099 ++pMessageQueue_50CBD0->uNumMessages; | |
437 | 1100 return;*/ |
1101 pMessageQueue_50CBD0->AddMessage(UIMSG_StartNPCDialogue, v18, 0); | |
0 | 1102 return; |
1103 } | |
1104 if ( pParty->bTurnBasedModeOn == 1 && pTurnEngine->field_4 == 3 ) | |
1105 { | |
1106 pTurnEngine->field_18 |= 8u; | |
1107 return; | |
1108 } | |
437 | 1109 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) |
0 | 1110 { |
990 | 1111 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Attack; |
0 | 1112 goto LABEL_41; |
437 | 1113 }*/ |
1114 pMessageQueue_50CBD0->AddMessage(UIMSG_Attack, 0, 0); | |
0 | 1115 } |
1116 else | |
1117 { | |
1118 if ( pParty->bTurnBasedModeOn == 1 && pTurnEngine->field_4 == 3 ) | |
1119 { | |
569 | 1120 pParty->uFlags |= PARTY_FLAGS_1_FALLING; |
0 | 1121 return; |
1122 } | |
1123 if ( uActiveCharacter | |
437 | 1124 && sub_427769_spell(pPlayers[uActiveCharacter]->uQuickSpell)) |
0 | 1125 { |
961 | 1126 pMessageQueue_50CBD0->AddMessage(UIMSG_CastQuickSpell, 0, 0); |
437 | 1127 /*&& (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) |
990 | 1128 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_CastQuickSpell; |
0 | 1129 LABEL_41: |
1130 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 0; | |
437 | 1131 goto LABEL_42;*/ |
0 | 1132 } |
1133 } | |
1134 } | |
1135 | |
1136 //----- (004226C2) -------------------------------------------------------- | |
265 | 1137 bool PauseGameDrawing() |
0 | 1138 { |
265 | 1139 if ( pCurrentScreen != SCREEN_GAME |
151 | 1140 && pCurrentScreen != SCREEN_NPC_DIALOGUE |
1141 && pCurrentScreen != SCREEN_CHANGE_LOCATION ) | |
1142 { | |
1143 if ( pCurrentScreen == SCREEN_INPUT_BLV ) | |
0 | 1144 return pVideoPlayer->pSmackerMovie != 0; |
151 | 1145 if ( pCurrentScreen != SCREEN_BRANCHLESS_NPC_DIALOG ) |
265 | 1146 return true; |
1147 } | |
1148 return false; | |
0 | 1149 } |
1150 // 4E28F8: using guessed type int pCurrentScreen; | |
1151 | |
1152 //----- (004226EF) -------------------------------------------------------- | |
373 | 1153 void SetUserInterface(PartyAlignment align, bool bReplace) |
0 | 1154 { |
1155 unsigned int v3; // eax@7 | |
1156 unsigned __int16 v4; // dx@7 | |
1157 unsigned __int16 v5; // cx@7 | |
1158 unsigned __int16 v6; // [sp-4h] [bp-14h]@7 | |
1159 | |
373 | 1160 |
983 | 1161 extern void set_default_ui_skin(); |
1162 set_default_ui_skin(); | |
1163 | |
373 | 1164 if (align == PartyAlignment_Evil) |
1165 { | |
0 | 1166 if ( bReplace ) |
1167 { | |
1168 pTexture_RightFrame->Reload("ib-r-C.pcx"); | |
1169 pTexture_BottomFrame->Reload("ib-b-C.pcx"); | |
1170 pTexture_TopFrame->Reload("ib-t-C.pcx"); | |
1171 pTexture_LeftFrame->Reload("ib-l-C.pcx"); | |
1172 pTexture_StatusBar->Reload("IB-Foot-c.pcx"); | |
1173 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-C", 2); | |
1174 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D8], "ib-autmask-c", 2); | |
1175 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079B4], "IB-COMP-C", 2); | |
1176 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-c", 2); | |
1177 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-c", 2); | |
1178 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-c", 2); | |
319 | 1179 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-C", 2); |
1180 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-C", 2); | |
1181 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-C", 2); | |
1182 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-C", 2); | |
995 | 1183 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-C", 2); |
319 | 1184 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-c", 2); |
1185 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-c", 2); | |
1186 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-c", 2); | |
1187 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-c", 2); | |
569 | 1188 |
1189 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-c", 2); | |
1190 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-c", 2); | |
1191 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-c", 2); | |
1192 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-c", 2); | |
1193 | |
0 | 1194 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC"); |
569 | 1195 pIconsFrameTable->InitializeAnimation(pUIAnim_WizardEye->uIconID); |
0 | 1196 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC"); |
569 | 1197 pIconsFrameTable->InitializeAnimation(pUIAnum_Torchlight->uIconID); |
1198 | |
526 | 1199 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-c", 2); |
0 | 1200 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-c", 2); |
984 | 1201 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-c", 2); |
0 | 1202 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); |
1203 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-c", 2); | |
1204 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-c", 2); | |
1205 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-c", 2); | |
1206 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-c", 2); | |
1207 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-c", 2); | |
1208 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-c", 2); | |
1209 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-c", 2); | |
1210 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-c", 2); | |
1211 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-c", 2); | |
1212 } | |
1213 else | |
1214 { | |
1215 pTexture_RightFrame->Load("ib-r-C.pcx", 0); | |
1216 pTexture_BottomFrame->Load("ib-b-c.pcx", 0); | |
1217 pTexture_TopFrame->Load("ib-t-C.pcx", 0); | |
1218 pTexture_LeftFrame->Load("ib-l-C.pcx", 0); | |
1219 pTexture_StatusBar->Load("IB-Foot-c.pcx", 0); | |
1220 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-C", TEXTURE_16BIT_PALETTE); | |
1221 dword_5079D8 = pIcons_LOD->LoadTexture("ib-autmask-c", TEXTURE_16BIT_PALETTE); | |
1222 dword_5079B4 = pIcons_LOD->LoadTexture("IB-COMP-C", TEXTURE_16BIT_PALETTE); | |
1223 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-c", TEXTURE_16BIT_PALETTE); | |
1224 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-c", TEXTURE_16BIT_PALETTE); | |
1225 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-c", TEXTURE_16BIT_PALETTE); | |
319 | 1226 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-C", TEXTURE_16BIT_PALETTE); |
1227 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-C", TEXTURE_16BIT_PALETTE); | |
328 | 1228 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-C", TEXTURE_16BIT_PALETTE); |
319 | 1229 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-C", TEXTURE_16BIT_PALETTE); |
995 | 1230 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-C", TEXTURE_16BIT_PALETTE); |
319 | 1231 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-c", TEXTURE_16BIT_PALETTE); |
1232 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-c", TEXTURE_16BIT_PALETTE); | |
1233 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-c", TEXTURE_16BIT_PALETTE); | |
1234 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-c", TEXTURE_16BIT_PALETTE); | |
526 | 1235 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-c", TEXTURE_16BIT_PALETTE); |
569 | 1236 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-c", TEXTURE_16BIT_PALETTE); |
1237 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-c", TEXTURE_16BIT_PALETTE); | |
1238 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-c", TEXTURE_16BIT_PALETTE); | |
1239 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-c", TEXTURE_16BIT_PALETTE); | |
0 | 1240 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc-c", TEXTURE_16BIT_PALETTE); |
984 | 1241 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE); |
0 | 1242 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC"); |
1243 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
1244 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC"); | |
1245 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
1246 } | |
949 | 1247 v3 = TargetColor(0xC8u, 0, 0); |
0 | 1248 v4 = 0; |
1249 v6 = 0; | |
1250 v5 = 10; | |
1251 } | |
373 | 1252 else if (align == PartyAlignment_Neutral) |
0 | 1253 { |
1254 if ( bReplace ) | |
1255 { | |
1256 pTexture_RightFrame->Reload("ib-r-a.pcx"); | |
1257 pTexture_BottomFrame->Reload("ib-b-a.pcx"); | |
1258 pTexture_TopFrame->Reload("ib-t-a.pcx"); | |
1259 pTexture_LeftFrame->Reload("ib-l-a.pcx"); | |
1260 pTexture_StatusBar->Reload("IB-Foot-a.pcx"); | |
1261 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-a", 2); | |
1262 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D8], "ib-autmask-a", 2); | |
1263 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079B4], "IB-COMP-a", 2); | |
1264 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-a", 2); | |
1265 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-a", 2); | |
1266 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-a", 2); | |
319 | 1267 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-a", 2); |
1268 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-a", 2); | |
1269 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-a", 2); | |
1270 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-a", 2); | |
995 | 1271 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-a", 2); |
319 | 1272 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-a", 2); |
1273 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-a", 2); | |
1274 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-a", 2); | |
1275 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-a", 2); | |
569 | 1276 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-a", 2); |
1277 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-a", 2); | |
1278 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-a", 2); | |
1279 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-a", 2); | |
0 | 1280 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA"); |
1281 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
1282 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA"); | |
1283 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
526 | 1284 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-a", 2); |
0 | 1285 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc", 2); |
984 | 1286 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven", 2); |
0 | 1287 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); |
1288 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll", 2); | |
1289 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr", 2); | |
1290 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul", 2); | |
1291 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur", 2); | |
1292 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm", 2); | |
1293 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf", 2); | |
1294 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt", 2); | |
1295 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top", 2); | |
1296 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap", 2); | |
1297 } | |
1298 else | |
1299 { | |
1300 pTexture_RightFrame->Load("ib-r-A.pcx", 0); | |
1301 pTexture_BottomFrame->Load("ib-b-A.pcx", 0); | |
1302 pTexture_TopFrame->Load("ib-t-A.pcx", 0); | |
1303 pTexture_LeftFrame->Load("ib-l-A.pcx", 0); | |
1304 pTexture_StatusBar->Load("IB-Foot-a.pcx", 0); | |
1305 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-A", TEXTURE_16BIT_PALETTE); | |
1306 dword_5079D8 = pIcons_LOD->LoadTexture("ib-autmask-a", TEXTURE_16BIT_PALETTE); | |
1307 dword_5079B4 = pIcons_LOD->LoadTexture("IB-COMP-A", TEXTURE_16BIT_PALETTE); | |
1308 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-a", TEXTURE_16BIT_PALETTE); | |
1309 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-a", TEXTURE_16BIT_PALETTE); | |
1310 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-a", TEXTURE_16BIT_PALETTE); | |
319 | 1311 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-A", TEXTURE_16BIT_PALETTE); |
1312 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-A", TEXTURE_16BIT_PALETTE); | |
995 | 1313 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-A", TEXTURE_16BIT_PALETTE); |
319 | 1314 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-a", TEXTURE_16BIT_PALETTE); |
1315 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-a", TEXTURE_16BIT_PALETTE); | |
1316 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-a", TEXTURE_16BIT_PALETTE); | |
1317 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-a", TEXTURE_16BIT_PALETTE); | |
328 | 1318 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-a", TEXTURE_16BIT_PALETTE); |
319 | 1319 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-a", TEXTURE_16BIT_PALETTE); |
526 | 1320 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-a", TEXTURE_16BIT_PALETTE); |
569 | 1321 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-a", TEXTURE_16BIT_PALETTE); |
1322 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-a", TEXTURE_16BIT_PALETTE); | |
1323 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-a", TEXTURE_16BIT_PALETTE); | |
1324 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-a", TEXTURE_16BIT_PALETTE); | |
0 | 1325 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc", TEXTURE_16BIT_PALETTE); |
984 | 1326 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE); |
0 | 1327 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA"); |
1328 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
1329 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA"); | |
1330 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
1331 uTextureID_Parchment = pIcons_LOD->LoadTexture("parchment", TEXTURE_16BIT_PALETTE); | |
1332 uTextureID_5076B4 = pIcons_LOD->LoadTexture("cornr_ll", TEXTURE_16BIT_PALETTE); | |
1333 uTextureID_5076B0 = pIcons_LOD->LoadTexture("cornr_lr", TEXTURE_16BIT_PALETTE); | |
1334 uTextureID_5076AC = pIcons_LOD->LoadTexture("cornr_ul", TEXTURE_16BIT_PALETTE); | |
1335 uTextureID_5076A8 = pIcons_LOD->LoadTexture("cornr_ur", TEXTURE_16BIT_PALETTE); | |
1336 uTextureID_5076A4 = pIcons_LOD->LoadTexture("edge_btm", TEXTURE_16BIT_PALETTE); | |
1337 uTextureID_5076A0 = pIcons_LOD->LoadTexture("edge_lf", TEXTURE_16BIT_PALETTE); | |
1338 uTextureID_50769C = pIcons_LOD->LoadTexture("edge_rt", TEXTURE_16BIT_PALETTE); | |
1339 uTextureID_507698 = pIcons_LOD->LoadTexture("edge_top", TEXTURE_16BIT_PALETTE); | |
948 | 1340 pTexture_591428 = pIcons_LOD->LoadTexturePtr("endcap", TEXTURE_16BIT_PALETTE); |
0 | 1341 |
1342 } | |
949 | 1343 v3 = TargetColor(0xAu, 0, 0); |
0 | 1344 v4 = 214; |
1345 v5 = 230; | |
1346 v6 = 193; | |
1347 } | |
373 | 1348 else if (align == PartyAlignment_Good) |
0 | 1349 { |
1350 if ( bReplace ) | |
1351 { | |
1352 pTexture_RightFrame->Reload("ib-r-B.pcx"); | |
1353 pTexture_BottomFrame->Reload("ib-b-B.pcx"); | |
1354 pTexture_TopFrame->Reload("ib-t-B.pcx"); | |
1355 pTexture_LeftFrame->Reload("ib-l-B.pcx"); | |
1356 pTexture_StatusBar->Reload("IB-Foot-b.pcx"); | |
1357 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-B", 2); | |
1358 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D8], "ib-autmask-b", 2); | |
1359 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079B4], "IB-COMP-B", 2); | |
1360 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-b", 2); | |
1361 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-b", 2); | |
1362 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-b", 2); | |
319 | 1363 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-B", 2); |
1364 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-B", 2); | |
1365 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-B", 2); | |
1366 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-B", 2); | |
995 | 1367 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-B", 2); |
319 | 1368 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-b", 2); |
1369 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-b", 2); | |
1370 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-b", 2); | |
1371 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-b", 2); | |
569 | 1372 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-b", 2); |
1373 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-b", 2); | |
1374 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-b", 2); | |
1375 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-b", 2); | |
0 | 1376 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeB"); |
1377 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
1378 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchB"); | |
1379 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
526 | 1380 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-b", 2); |
0 | 1381 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-b", 2); |
984 | 1382 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-b", 2); |
0 | 1383 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); |
1384 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-b", 2); | |
1385 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-b", 2); | |
1386 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-b", 2); | |
1387 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-b", 2); | |
1388 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-b", 2); | |
1389 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-b", 2); | |
1390 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-b", 2); | |
1391 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-b", 2); | |
1392 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-b", 2); | |
1393 } | |
949 | 1394 v3 = TargetColor(0, 0, 0xC8u); |
0 | 1395 v5 = 255; |
1396 v4 = 225; | |
1397 v6 = 255; | |
1398 } | |
373 | 1399 else assert(false); |
1400 | |
0 | 1401 uGameUIFontMain = v3; |
949 | 1402 uGameUIFontShadow = TargetColor(v5, v4, v6); |
0 | 1403 } |
1404 | |
1038 | 1405 |
1406 | |
1407 | |
1408 | |
0 | 1409 //----- (00423AEE) -------------------------------------------------------- |
1410 void __cdecl reset_some_strus_flt_2Cs() | |
1411 { | |
1412 float *v0; // eax@1 | |
1413 signed int v1; // ecx@1 | |
1414 signed int v2; // edx@1 | |
1415 float *v3; // eax@3 | |
1416 signed int v4; // edx@3 | |
1417 float *v5; // eax@5 | |
1418 signed int v6; // edx@5 | |
1419 float *v7; // eax@7 | |
1420 signed int v8; // edx@7 | |
1421 float *v9; // eax@9 | |
1422 | |
1423 v0 = &array_50AC10[0].flt_2C; | |
1424 v1 = 50; | |
1425 v2 = 50; | |
1426 do | |
1427 { | |
1428 *v0 = 0.0; | |
1429 v0 += 12; | |
1430 --v2; | |
1431 } | |
1432 while ( v2 ); | |
1433 v3 = &array_50A2B0[0].flt_2C; | |
1434 v4 = 50; | |
1435 do | |
1436 { | |
1437 *v3 = 0.0; | |
1438 v3 += 12; | |
1439 --v4; | |
1440 } | |
1441 while ( v4 ); | |
1442 v5 = &array_509950[0].flt_2C; | |
1443 v6 = 50; | |
1444 do | |
1445 { | |
1446 *v5 = 0.0; | |
1447 v5 += 12; | |
1448 --v6; | |
1449 } | |
1450 while ( v6 ); | |
1451 v7 = &array_508FF0[0].flt_2C; | |
1452 v8 = 50; | |
1453 do | |
1454 { | |
1455 *v7 = 0.0; | |
1456 v7 += 12; | |
1457 --v8; | |
1458 } | |
1459 while ( v8 ); | |
1460 v9 = &array_508690[0].flt_2C; | |
1461 do | |
1462 { | |
1463 *v9 = 0.0; | |
1464 v9 += 12; | |
1465 --v1; | |
1466 } | |
1467 while ( v1 ); | |
1468 } | |
1469 | |
1470 //----- (00423B4A) -------------------------------------------------------- | |
1471 void __cdecl sub_423B4A() | |
1472 { | |
1473 float *v0; // eax@1 | |
1474 signed int v1; // ecx@1 | |
1475 | |
1476 v0 = &array_507D30[0].flt_2C; | |
1477 v1 = 50; | |
1478 do | |
1479 { | |
1480 *v0 = 0.0; | |
1481 v0 += 12; | |
1482 --v1; | |
1483 } | |
1484 while ( v1 ); | |
1485 } | |
1486 | |
1487 //----- (00423B5D) -------------------------------------------------------- | |
1488 int __fastcall sub_423B5D(unsigned int uFaceID) | |
1489 { | |
1238 | 1490 BLVFace *pFace; // ebx@1 |
1289 | 1491 //Vec3_short_ *v2; // esi@1 |
1492 //int v3; // ST28_4@1 | |
1493 //__int16 v4; // ST2C_2@1 | |
1494 //signed int v5; // esi@1 | |
1495 //Vec3_short_ *v6; // eax@4 | |
1496 //signed int v7; // edi@5 | |
1497 //signed int v8; // eax@5 | |
1498 //signed int i_; // ecx@10 | |
1499 //int v10; // eax@10 | |
1500 //int v11; // edx@11 | |
1501 //int v12; // ST28_4@12 | |
1502 //signed int v13; // edx@12 | |
1503 //signed __int64 v14; // qtt@12 | |
1504 //int *v15; // ebx@12 | |
1505 //int v16; // ST28_4@14 | |
1506 //signed int v17; // eax@14 | |
1507 //signed __int64 v18; // qtt@14 | |
1508 signed int v19; // edx@15 | |
1509 signed int v20; // edx@17 | |
1510 signed int v21; // ebx@19 | |
1511 //signed int v22; // esi@20 | |
1512 int v23; // edi@21 | |
1513 int v24; // eax@21 | |
1514 //int v25; // eax@22 | |
1515 int v26; // eax@22 | |
1516 //signed int v27; // ST30_4@24 | |
1517 //signed __int64 v28; // qtt@24 | |
1518 //int v29; // ST18_4@25 | |
1519 int v30; // eax@26 | |
1520 //int v31; // eax@27 | |
1521 int v32; // eax@27 | |
1522 //signed int v33; // ST30_4@29 | |
1523 //signed __int64 v34; // qtt@29 | |
1524 //int v35; // ST30_4@30 | |
1525 signed int v36; // edi@31 | |
1526 //unsigned int v37; // eax@31 | |
1527 bool v38; // edx@31 | |
1528 //int v39; // ecx@31 | |
1529 //int v40; // ecx@32 | |
1530 //int v41; // esi@32 | |
1531 int v42; // eax@34 | |
1532 signed int v43; // ebx@41 | |
1533 //unsigned int v44; // eax@41 | |
1534 //signed int v45; // ecx@42 | |
1535 //int v46; // esi@42 | |
1536 int v47; // eax@44 | |
1537 signed int v48; // edi@51 | |
1538 //unsigned int v49; // eax@51 | |
1539 bool v50; // edx@51 | |
1540 //int v51; // ecx@51 | |
1541 //int v52; // ecx@52 | |
1542 //signed int v53; // esi@52 | |
1543 int v54; // eax@54 | |
1544 int v55; // ebx@61 | |
1545 //unsigned int v56; // eax@61 | |
1546 //signed int v57; // ecx@62 | |
1547 //int v58; // esi@62 | |
1548 int v59; // eax@64 | |
1549 char v61; // zf@72 | |
1550 signed int v62; // edx@75 | |
1551 int v63; // ecx@76 | |
1552 int v64; // esi@76 | |
1553 int v65; // ecx@83 | |
1554 //signed int v66; // [sp+14h] [bp-14h]@3 | |
1555 int v67; // [sp+14h] [bp-14h]@34 | |
1556 int v68; // [sp+14h] [bp-14h]@44 | |
1557 int v69; // [sp+14h] [bp-14h]@54 | |
1558 int v70; // [sp+14h] [bp-14h]@64 | |
1559 signed int v71; // [sp+14h] [bp-14h]@75 | |
1560 bool thisa; // [sp+18h] [bp-10h]@9 | |
1561 int thisb; // [sp+18h] [bp-10h]@12 | |
1562 //int thisc; // [sp+18h] [bp-10h]@20 | |
1563 bool thisd; // [sp+18h] [bp-10h]@41 | |
1564 bool thise; // [sp+18h] [bp-10h]@61 | |
1565 int thisf; // [sp+18h] [bp-10h]@74 | |
1566 signed int v79; // [sp+1Ch] [bp-Ch]@9 | |
1567 int v80; // [sp+1Ch] [bp-Ch]@76 | |
1568 bool v81; // [sp+20h] [bp-8h]@10 | |
1569 bool v82; // [sp+20h] [bp-8h]@32 | |
1570 bool v83; // [sp+20h] [bp-8h]@42 | |
1571 bool v84; // [sp+20h] [bp-8h]@52 | |
1572 bool v85; // [sp+20h] [bp-8h]@62 | |
1573 //signed int i; // [sp+24h] [bp-4h]@9 | |
1574 //unsigned int i; // [sp+24h] [bp-4h]@19 | |
1575 //signed int ix; // [sp+24h] [bp-4h]@31 | |
1576 //signed int iz; // [sp+24h] [bp-4h]@41 | |
1577 //signed int iy; // [sp+24h] [bp-4h]@51 | |
1578 //signed int iw; // [sp+24h] [bp-4h]@61 | |
1579 | |
1580 pFace = &pIndoor->pFaces[uFaceID]; | |
1581 //v2 = &pIndoor->pVertices[pFace->pVertexIDs[0]]; | |
1582 //v4 = pIndoor->pVertices[pFace->pVertexIDs[0]].z; | |
1583 if ( pFace->pFacePlane.vNormal.x * (pIndoor->pVertices[pFace->pVertexIDs[0]].x - pBLVRenderParams->vPartyPos.x)//maybe it's length = n * direction vector | |
1584 + pFace->pFacePlane.vNormal.y * (pIndoor->pVertices[pFace->pVertexIDs[0]].y - pBLVRenderParams->vPartyPos.y) | |
1585 + pFace->pFacePlane.vNormal.z * (pIndoor->pVertices[pFace->pVertexIDs[0]].z - pBLVRenderParams->vPartyPos.z) < 0 ) | |
1586 { | |
1587 stru_50B700.field_0 = 1; | |
1588 } | |
1589 else | |
1590 { | |
1591 stru_50B700.field_0 = 0; | |
1592 if ( !pFace->Portal() ) | |
1593 return 0; | |
1594 } | |
1595 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
1596 { | |
1597 //auto v6 = &pIndoor->pVertices[pFace->pVertexIDs[i]]; | |
1598 pGame->pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible(pIndoor->pVertices[pFace->pVertexIDs[i]].x, | |
1599 pIndoor->pVertices[pFace->pVertexIDs[i]].y, pIndoor->pVertices[pFace->pVertexIDs[i]].z, | |
1600 &stru_50B700._view_transformed_xs[i], &stru_50B700._view_transformed_zs[i], &stru_50B700._view_transformed_ys[i], 0); | |
1601 } | |
1602 | |
1603 if (pFace->uNumVertices <= 0) | |
1604 return 0; | |
1605 | |
1606 bool bFound = false; | |
1607 for (uint i = 0; i < pFace->uNumVertices; ++i) | |
1608 if (stru_50B700._view_transformed_xs[i] >= 0x80000u) | |
1609 { | |
1610 bFound = true; | |
1611 break; | |
1612 } | |
1613 if (!bFound) | |
1614 return 0; | |
1615 | |
1616 v79 = 0; | |
1617 stru_50B700._view_transformed_xs[pFace->uNumVertices] = stru_50B700._view_transformed_xs[0]; | |
1618 stru_50B700._view_transformed_zs[pFace->uNumVertices] = stru_50B700._view_transformed_zs[0]; | |
1619 stru_50B700._view_transformed_ys[pFace->uNumVertices] = stru_50B700._view_transformed_ys[0]; | |
1620 | |
1621 //maybe for near clip plane | |
1622 thisa = stru_50B700._view_transformed_xs[0] >= (signed int)0x80000u; | |
1623 for ( uint i = 1; i <= pFace->uNumVertices; ++i) | |
1624 { | |
1625 v81 = stru_50B700._view_transformed_xs[i] >= (signed int)0x80000u; | |
1626 if ( thisa ^ v81 ) | |
1627 { | |
1628 if ( stru_50B700._view_transformed_xs[i] >= (signed int)0x80000u ) | |
1629 { | |
1630 //v12 = stru_50B700._view_transformed_xs[i] - stru_50B700._view_transformed_xs[i - 1]; | |
1631 //v13 = 0x80000 - stru_50B700._view_transformed_xs[i - 1]; | |
1632 //LODWORD(v14) = v13 << 16; | |
1633 //HIDWORD(v14) = v13 >> 16; | |
1634 //v15 = &stru_50B700._view_transformed_ys[i - 1]; | |
1635 stru_50B700.field_128[v79] = ((unsigned __int64)((stru_50B700._view_transformed_zs[i] - stru_50B700._view_transformed_zs[i - 1]) | |
1636 * (0x80000 - stru_50B700._view_transformed_xs[i - 1]) | |
1637 / (stru_50B700._view_transformed_xs[i] - stru_50B700._view_transformed_xs[i - 1]))) | |
1638 + stru_50B700._view_transformed_zs[i - 1]; | |
1639 thisb = (unsigned __int64)((stru_50B700._view_transformed_ys[i] - stru_50B700._view_transformed_ys[i - 1]) | |
1640 * (0x80000 - stru_50B700._view_transformed_xs[i - 1]) | |
1641 / (stru_50B700._view_transformed_xs[i] - stru_50B700._view_transformed_xs[i - 1])); | |
1642 } | |
1643 else | |
1644 { | |
1645 //v16 = stru_50B700._view_transformed_xs[i - 1] - stru_50B700._view_transformed_xs[i]; | |
1646 //v17 = 0x80000 - stru_50B700._view_transformed_xs[i]; | |
1647 //LODWORD(v18) = v17 << 16; | |
1648 //HIDWORD(v18) = v17 >> 16; | |
1649 //v15 = &stru_50B700._view_transformed_ys[i]; | |
1650 stru_50B700.field_128[v79] = ((unsigned __int64)((stru_50B700._view_transformed_zs[i - 1] - stru_50B700._view_transformed_zs[i]) | |
1651 * (0x80000 - stru_50B700._view_transformed_xs[i]) | |
1652 / (stru_50B700._view_transformed_xs[i - 1] - stru_50B700._view_transformed_xs[i]))) | |
1653 + stru_50B700._view_transformed_zs[i]; | |
1654 thisb = (unsigned __int64)((stru_50B700._view_transformed_ys[i - 1] - stru_50B700._view_transformed_ys[i]) | |
1655 * (0x80000 - stru_50B700._view_transformed_xs[i]) | |
1656 / (stru_50B700._view_transformed_xs[i - 1] - stru_50B700._view_transformed_xs[i])); | |
1657 } | |
1658 v19 = v79++; | |
1659 stru_50B700.field_38[v19] = thisb + stru_50B700._view_transformed_ys[i]; | |
1660 stru_50B700.field_218[v19] = 0x80000u; | |
1661 } | |
1662 if ( v81 ) | |
1663 { | |
1664 v20 = v79++; | |
1665 stru_50B700.field_218[v20] = stru_50B700._view_transformed_xs[i]; | |
1666 stru_50B700.field_128[v20] = stru_50B700._view_transformed_zs[i]; | |
1667 stru_50B700.field_38[v20] = stru_50B700._view_transformed_ys[i]; | |
1668 } | |
1669 thisa = v81; | |
1670 } | |
1671 v21 = v79; | |
1672 stru_50B700.field_218[v79] = stru_50B700.field_218[0]; | |
1673 stru_50B700.field_128[v79] = stru_50B700.field_128[0]; | |
1674 stru_50B700.field_38[v79] = stru_50B700.field_38[0]; | |
1675 | |
1676 //maybe for far clip plane | |
1677 for ( uint i = 0; i < v79; ++i ) | |
1678 { | |
1679 if ( abs(stru_50B700.field_128[i]) <= abs(stru_50B700.field_218[i]) ) | |
1680 { | |
1681 //LODWORD(v28) = stru_50B700.field_128[i] << 16; | |
1682 //HIDWORD(v28) = stru_50B700.field_128[i] >> 16; | |
1683 v26 = stru_50B700.field_128[i] / stru_50B700.field_218[i]; | |
1684 v23 = 0; | |
1685 } | |
1686 else | |
1687 { | |
1688 v23 = 0; | |
1689 v24 = 0; | |
1690 if ( stru_50B700.field_128[i] >= 0 ) | |
1691 { | |
1692 LOBYTE(v24) = stru_50B700.field_218[i] >= 0; | |
1693 v26 = ((v24 - 1) & 0xFF800000) + 0x400000; | |
1694 } | |
1695 else | |
1696 { | |
1697 LOBYTE(v24) = stru_50B700.field_218[i] >= 0; | |
1698 //v25 = v24 - 1; | |
1699 v26 = ((v24 - 1) & 0x800000) - 0x400000; | |
1700 } | |
1701 } | |
1702 stru_50B700._xs3[i] = v26; | |
1703 if ( abs(stru_50B700.field_38[i]) <= abs(stru_50B700.field_218[i]) ) | |
1704 { | |
1705 //LODWORD(v34) = stru_50B700.field_38[i] << 16; | |
1706 //HIDWORD(v34) = stru_50B700.field_38[i] >> 16; | |
1707 v32 = stru_50B700.field_38[i] / stru_50B700.field_218[i]; | |
1708 } | |
1709 else | |
1710 { | |
1711 v30 = 0; | |
1712 if ( stru_50B700.field_38[i] >= v23 ) | |
1713 { | |
1714 LOBYTE(v30) = stru_50B700.field_218[i] >= v23; | |
1715 v32 = ((v30 - 1) & 0xFF800000) + 0x400000; | |
1716 } | |
1717 else | |
1718 { | |
1719 LOBYTE(v30) = stru_50B700.field_218[i] >= v23; | |
1720 v32 = ((v30 - 1) & 0x800000) - 0x400000; | |
1721 } | |
1722 } | |
1723 stru_50B700._ys2[i] = v32; | |
1724 stru_50B700._xs3[i] = (unsigned __int64)(SHIWORD(pBLVRenderParams->field_40) * (signed __int64)stru_50B700._xs3[i]); | |
1725 stru_50B700._xs3[i] = pBLVRenderParams->uViewportCenterX - stru_50B700._xs3[i]; | |
1726 stru_50B700._ys2[i] = pBLVRenderParams->uViewportCenterY - (unsigned __int64)(SHIWORD(pBLVRenderParams->field_40) | |
1727 * (signed __int64)stru_50B700._ys2[i]); | |
1728 } | |
1729 v36 = 0; | |
1730 stru_50B700._xs3[v21] = stru_50B700._xs3[0]; | |
1731 stru_50B700._ys2[v21] = stru_50B700._ys2[0]; | |
1732 v38 = stru_50B700._xs3[0] < (signed int)pBLVRenderParams->uViewportX; | |
1733 LOBYTE(v38) = stru_50B700._xs3[0] >= (signed int)pBLVRenderParams->uViewportX; | |
1734 if ( v79 < 1 ) | |
1735 return 0; | |
1736 | |
1737 //maybe for left clip plane | |
1738 for ( uint i = 1; i <= v79; i++ ) | |
1739 { | |
1740 v82 = stru_50B700._xs3[i] >= (signed int)pBLVRenderParams->uViewportX; | |
1741 if ( v38 ^ v82 ) | |
1742 { | |
1743 if ( stru_50B700._xs3[i] >= (signed int)pBLVRenderParams->uViewportX ) | |
1744 { | |
1745 //v67 = (a-b)*(c-d)/(e-f) | |
1746 v67 = (signed int)(pBLVRenderParams->uViewportX - stru_50B700._xs3[i - 1]) | |
1747 * (signed __int64)(stru_50B700._ys2[i] - stru_50B700._ys2[i - 1]) / (stru_50B700._xs3[i] - stru_50B700._xs3[i - 1]); | |
1748 v42 = stru_50B700._ys2[i - 1];//d | |
1749 } | |
1750 else | |
1751 { | |
1752 //v67 = (a-e)*(d-c)/(f-e) | |
1753 v67 = (signed int)(pBLVRenderParams->uViewportX - stru_50B700._xs3[i]) | |
1754 * (signed __int64)(stru_50B700._ys2[i - 1] - stru_50B700._ys2[i]) / (stru_50B700._xs3[i - 1] - stru_50B700._xs3[i]); | |
1755 v42 = stru_50B700._ys2[i];//c | |
1756 } | |
1757 stru_50B700._ys[v36] = v67 + v42; | |
1758 stru_50B700._xs2[v36] = pBLVRenderParams->uViewportX; | |
1759 ++v36; | |
1760 } | |
1761 v38 = v82; | |
1762 if ( v82 ) | |
1763 { | |
1764 stru_50B700._xs2[v36] = stru_50B700._xs3[i]; | |
1765 stru_50B700._ys[v36] = stru_50B700._ys2[i]; | |
1766 ++v36; | |
1767 } | |
1768 } | |
1769 | |
1770 if (v36 < 1) | |
1771 return 0; | |
1772 | |
1773 v43 = 0; | |
1774 stru_50B700._xs2[v36] = stru_50B700._xs2[0]; | |
1775 stru_50B700._ys[v36] = stru_50B700._ys[0]; | |
1776 | |
1777 //maybe for right clip plane | |
1778 thisd = stru_50B700._xs2[0] <= (signed int)pBLVRenderParams->uViewportZ; | |
1779 for ( uint i = 1; i <= v36; ++i ) | |
1780 { | |
1781 v83 = stru_50B700._xs2[i] <= (signed int)pBLVRenderParams->uViewportZ; | |
1782 if ( thisd ^ v83 ) | |
1783 { | |
1784 if ( stru_50B700._xs2[i] <= (signed int)pBLVRenderParams->uViewportZ ) | |
1785 { | |
1786 //v68 = (a-b)*(c-d)/(e-b) | |
1787 v68 = (signed int)(pBLVRenderParams->uViewportZ - stru_50B700._xs2[i - 1]) | |
1788 * (signed __int64)(stru_50B700._ys[i] - stru_50B700._ys[i - 1]) / (stru_50B700._xs2[i] - stru_50B700._xs2[i - 1]); | |
1789 v47 = stru_50B700._ys[i - 1];//d | |
1790 } | |
1791 else | |
1792 { | |
1793 //v68 = (a-e)*(d-c)/(b-e) | |
1794 v68 = (signed int)(pBLVRenderParams->uViewportZ - stru_50B700._xs2[i]) | |
1795 * (signed __int64)(stru_50B700._ys[i - 1] - stru_50B700._ys[i]) / (stru_50B700._xs2[i - 1] - stru_50B700._xs2[i]); | |
1796 v47 = stru_50B700._ys[i];//c | |
1797 } | |
1798 stru_50B700.field_2F0[v43] = v68 + v47; | |
1799 stru_50B700._xs[v43] = pBLVRenderParams->uViewportZ; | |
1800 ++v43; | |
1801 } | |
1802 if ( v83 ) | |
1803 { | |
1804 stru_50B700._xs[v43] = stru_50B700._xs2[i]; | |
1805 stru_50B700.field_2F0[v43++] = stru_50B700._ys[i]; | |
1806 } | |
1807 thisd = v83; | |
1808 } | |
1809 | |
1810 if (v43 < 1) | |
1811 return 0; | |
1812 | |
1813 v48 = 0; | |
1814 stru_50B700._xs[v43] = stru_50B700._xs[0]; | |
1815 stru_50B700.field_2F0[v43] = stru_50B700.field_2F0[0]; | |
1816 v50 = stru_50B700.field_2F0[0] < (signed int)pBLVRenderParams->uViewportY; | |
1817 | |
1818 //maybr for top clip plane | |
1819 LOBYTE(v50) = stru_50B700.field_2F0[0] >= (signed int)pBLVRenderParams->uViewportY; | |
1820 for ( uint i = 1; i <= v43; i++ ) | |
1821 { | |
1822 v84 = stru_50B700.field_2F0[i] >= (signed int)pBLVRenderParams->uViewportY; | |
1823 if ( v50 ^ v84 ) | |
1824 { | |
1825 if ( stru_50B700.field_2F0[i] >= (signed int)pBLVRenderParams->uViewportY ) | |
1826 { | |
1827 //v69 = (a-b)*(c-d)/(e-b) | |
1828 v69 = (signed int)(pBLVRenderParams->uViewportY - stru_50B700.field_2F0[i - 1]) | |
1829 * (signed __int64)(stru_50B700._xs[i] - stru_50B700._xs[i - 1]) / (stru_50B700.field_2F0[i] - stru_50B700.field_2F0[i - 1]); | |
1830 v54 = stru_50B700._xs[i - 1];//d | |
1831 } | |
1832 else | |
1833 { | |
1834 //v69 = (a-e)*(d-c)/(b-e) | |
1835 v69 = (signed int)(pBLVRenderParams->uViewportY - stru_50B700.field_2F0[i]) | |
1836 * (signed __int64)(stru_50B700._xs[i - 1] - stru_50B700._xs[i]) / (stru_50B700.field_2F0[i - 1] - stru_50B700.field_2F0[i]); | |
1837 v54 = stru_50B700._xs[i];//c | |
1838 } | |
1839 stru_50B700.field_3D4[v48] = v69 + v54; | |
1840 stru_50B700._xs[v48 + 1] = pBLVRenderParams->uViewportY; | |
1841 ++v48; | |
1842 } | |
1843 v50 = v84; | |
1844 if ( v84 ) | |
1845 { | |
1846 stru_50B700.field_3D4[v48] = stru_50B700._xs[i]; | |
1847 stru_50B700._xs[v48 + 1] = stru_50B700.field_2F0[i]; | |
1848 v48++; | |
1849 } | |
1850 } | |
1851 | |
1852 if (v48 < 1) | |
1853 return 0; | |
1854 | |
1855 v55 = 0; | |
1856 stru_50B700.field_3D4[v48] = stru_50B700.field_3D4[0]; | |
1857 stru_50B700._xs[v48 + 1] = stru_50B700._xs[1]; | |
1858 | |
1859 //maybe for bottom clip plane | |
1860 thise = stru_50B700._xs[1] <= (signed int)pBLVRenderParams->uViewportW; | |
1861 for ( uint i = 1; i <= v48; ++i ) | |
1862 { | |
1863 v85 = stru_50B700._xs[i + 1] <= (signed int)pBLVRenderParams->uViewportW; | |
1864 if ( thise ^ v85 ) | |
1865 { | |
1866 if ( stru_50B700._xs[i + 1] <= (signed int)pBLVRenderParams->uViewportW ) | |
1867 { | |
1868 //v70 = (a-b)*(c-d)/(e-b) | |
1869 v70 = (signed int)(pBLVRenderParams->uViewportW - stru_50B700._xs[i]) | |
1870 * (signed __int64)(stru_50B700.field_3D4[i] - stru_50B700.field_3D4[i - 1]) / (stru_50B700._xs[i + 1] - stru_50B700._xs[i]); | |
1871 v59 = stru_50B700.field_3D4[i - 1];//d | |
1872 } | |
1873 else | |
1874 { | |
1875 //v70 = (a-e)*(d-c)/(b-e) | |
1876 v70 = (signed int)(pBLVRenderParams->uViewportW - stru_50B700._xs[i + 1]) | |
1877 * (signed __int64)(stru_50B700.field_3D4[i - 1] - stru_50B700.field_3D4[i]) / (stru_50B700._xs[i] - stru_50B700._xs[i + 1]); | |
1878 v59 = stru_50B700.field_3D4[i];//c | |
1879 } | |
1880 stru_50B700._screen_space_x[v55] = v70 + v59; | |
1881 stru_50B700._screen_space_y[v55] = pBLVRenderParams->uViewportW; | |
1882 ++v55; | |
1883 } | |
1884 if ( v85 ) | |
1885 { | |
1886 stru_50B700._screen_space_x[v55] = stru_50B700.field_3D4[i]; | |
1887 stru_50B700._screen_space_y[v55++] = stru_50B700._xs[i + 1]; | |
1888 } | |
1889 thise = v85; | |
1890 } | |
1891 | |
1892 if ( !v55 ) | |
1893 return 0; | |
1894 v61 = pRenderer->pRenderD3D == 0; | |
1895 stru_50B700._screen_space_x[v55] = stru_50B700._screen_space_x[0]; | |
1896 stru_50B700._screen_space_y[v55] = stru_50B700._screen_space_y[0]; | |
1897 if ( v61 && v55 > 3 ) | |
1898 { | |
1899 stru_50B700._screen_space_x[v55 + 1] = stru_50B700._screen_space_x[1]; | |
1900 stru_50B700._screen_space_y[v55 + 1] = stru_50B700._screen_space_y[1]; | |
1901 thisf = 2 * (stru_50B700.field_0 != 0) - 1; | |
1902 if ( v55 > 0 ) | |
1903 { | |
1904 v62 = 1; | |
1905 v71 = 1; | |
1906 do | |
1907 { | |
1908 v63 = v62 - 1; | |
1909 v64 = v62 + 1; | |
1910 v80 = v62 + 1; | |
1911 if ( v62 - 1 >= v55 ) | |
1912 v63 -= v55; | |
1913 if ( v62 >= v55 ) | |
1914 v62 -= v55; | |
1915 if ( v64 >= v55 ) | |
1916 v64 -= v55; | |
1917 if ( thisf * ((stru_50B700._screen_space_y[v64] - stru_50B700._screen_space_y[v63]) | |
1918 * (stru_50B700._screen_space_x[v62] - stru_50B700._screen_space_x[v63]) | |
1919 - (stru_50B700._screen_space_y[v62] - stru_50B700._screen_space_y[v63]) | |
1920 * (stru_50B700._screen_space_x[v64] - stru_50B700._screen_space_x[v63])) < 0 ) | |
1921 { | |
1922 v62 = v80; | |
1923 v71 = v80; | |
1924 } | |
1925 else | |
1926 { | |
1927 v62 = v71; | |
1928 v65 = v71; | |
1929 if ( v71 < v55 || (v65 = v71 - v55, v71 - v55 < v55) ) | |
1930 { | |
1931 memcpy(&stru_50B700._screen_space_y[v65], &stru_50B700._screen_space_y[v65 + 1], 4 * ((unsigned int)(4 * (v55 - v65)) >> 2)); | |
1932 memcpy(&stru_50B700._screen_space_x[v65], &stru_50B700._screen_space_x[v65 + 1], 4 * ((unsigned int)(4 * (v55 - v65)) >> 2)); | |
1933 } | |
1934 --v55; | |
1935 } | |
1936 } | |
1937 while ( v62 - 1 < v55 ); | |
1938 } | |
1939 stru_50B700._screen_space_x[v55] = stru_50B700._screen_space_x[0]; | |
1940 stru_50B700._screen_space_y[v55] = stru_50B700._screen_space_y[0]; | |
1941 } | |
1942 return v55; | |
1943 } | |
1944 | |
1945 //old function | |
1946 /*int __fastcall sub_423B5D(unsigned int uFaceID) | |
1947 { | |
1948 BLVFace *v1; // ebx@1 | |
0 | 1949 Vec3_short_ *v2; // esi@1 |
1950 //int v3; // ST28_4@1 | |
1951 __int16 v4; // ST2C_2@1 | |
1952 //signed int v5; // esi@1 | |
1953 //Vec3_short_ *v6; // eax@4 | |
1954 //signed int v7; // edi@5 | |
1955 //signed int v8; // eax@5 | |
1956 //signed int i_; // ecx@10 | |
1957 int v10; // eax@10 | |
1958 int v11; // edx@11 | |
1959 int v12; // ST28_4@12 | |
1960 signed int v13; // edx@12 | |
1961 signed __int64 v14; // qtt@12 | |
1962 int *v15; // ebx@12 | |
1963 int v16; // ST28_4@14 | |
1964 signed int v17; // eax@14 | |
1965 signed __int64 v18; // qtt@14 | |
1966 signed int v19; // edx@15 | |
1967 signed int v20; // edx@17 | |
1968 signed int v21; // ebx@19 | |
1969 signed int v22; // esi@20 | |
1970 int v23; // edi@21 | |
1971 int v24; // eax@21 | |
1972 int v25; // eax@22 | |
1973 int v26; // eax@22 | |
1974 signed int v27; // ST30_4@24 | |
1975 signed __int64 v28; // qtt@24 | |
1976 int v29; // ST18_4@25 | |
1977 int v30; // eax@26 | |
1978 int v31; // eax@27 | |
1979 int v32; // eax@27 | |
1980 signed int v33; // ST30_4@29 | |
1981 signed __int64 v34; // qtt@29 | |
1982 int v35; // ST30_4@30 | |
1983 signed int v36; // edi@31 | |
1984 unsigned int v37; // eax@31 | |
1985 bool v38; // edx@31 | |
1986 int v39; // ecx@31 | |
1987 int v40; // ecx@32 | |
1988 int v41; // esi@32 | |
1989 int v42; // eax@34 | |
1990 signed int v43; // ebx@41 | |
1991 unsigned int v44; // eax@41 | |
1992 signed int v45; // ecx@42 | |
1993 int v46; // esi@42 | |
1994 int v47; // eax@44 | |
1995 signed int v48; // edi@51 | |
1996 unsigned int v49; // eax@51 | |
1997 bool v50; // edx@51 | |
1998 int v51; // ecx@51 | |
1999 int v52; // ecx@52 | |
2000 signed int v53; // esi@52 | |
2001 int v54; // eax@54 | |
2002 int v55; // ebx@61 | |
2003 unsigned int v56; // eax@61 | |
2004 signed int v57; // ecx@62 | |
2005 int v58; // esi@62 | |
2006 int v59; // eax@64 | |
2007 char v61; // zf@72 | |
2008 signed int v62; // edx@75 | |
2009 int v63; // ecx@76 | |
2010 int v64; // esi@76 | |
2011 int v65; // ecx@83 | |
2012 //signed int v66; // [sp+14h] [bp-14h]@3 | |
2013 int v67; // [sp+14h] [bp-14h]@34 | |
2014 int v68; // [sp+14h] [bp-14h]@44 | |
2015 int v69; // [sp+14h] [bp-14h]@54 | |
2016 int v70; // [sp+14h] [bp-14h]@64 | |
2017 signed int v71; // [sp+14h] [bp-14h]@75 | |
2018 bool thisa; // [sp+18h] [bp-10h]@9 | |
2019 int thisb; // [sp+18h] [bp-10h]@12 | |
2020 int thisc; // [sp+18h] [bp-10h]@20 | |
2021 bool thisd; // [sp+18h] [bp-10h]@41 | |
2022 bool thise; // [sp+18h] [bp-10h]@61 | |
2023 int thisf; // [sp+18h] [bp-10h]@74 | |
2024 signed int v79; // [sp+1Ch] [bp-Ch]@9 | |
2025 int v80; // [sp+1Ch] [bp-Ch]@76 | |
2026 bool v81; // [sp+20h] [bp-8h]@10 | |
2027 bool v82; // [sp+20h] [bp-8h]@32 | |
2028 bool v83; // [sp+20h] [bp-8h]@42 | |
2029 bool v84; // [sp+20h] [bp-8h]@52 | |
2030 bool v85; // [sp+20h] [bp-8h]@62 | |
2031 //signed int i; // [sp+24h] [bp-4h]@9 | |
2032 signed int ia; // [sp+24h] [bp-4h]@19 | |
2033 signed int ib; // [sp+24h] [bp-4h]@31 | |
2034 signed int ic; // [sp+24h] [bp-4h]@41 | |
2035 signed int id; // [sp+24h] [bp-4h]@51 | |
2036 signed int ie; // [sp+24h] [bp-4h]@61 | |
1079 | 2037 |
1289 | 2038 v1 = &pIndoor->pFaces[uFaceID]; |
0 | 2039 //this = pGame->pIndoorCameraD3D; |
1289 | 2040 v2 = &pIndoor->pVertices[v1->pVertexIDs[0]]; |
0 | 2041 //v3 = *(_DWORD *)&v2->x; |
2042 v4 = v2->z; | |
2043 //v5 = 0; | |
1289 | 2044 if ( v1->pFacePlane_old.vNormal.x * (v2->x - pBLVRenderParams->vPartyPos.x) |
2045 + v1->pFacePlane_old.vNormal.y * (v2->y - pBLVRenderParams->vPartyPos.y) | |
2046 + v1->pFacePlane_old.vNormal.z * (v2->z - pBLVRenderParams->vPartyPos.z) < 0 ) | |
0 | 2047 { |
1289 | 2048 dword_50B700 = 1; |
0 | 2049 } |
2050 else | |
2051 { | |
1289 | 2052 dword_50B700 = 0; |
2053 if ( !v1->Portal() ) | |
0 | 2054 return 0; |
2055 } | |
2056 //v66 = v1->uNumVertices; | |
1289 | 2057 for (uint i = 0; i < v1->uNumVertices; ++i) |
0 | 2058 { |
1289 | 2059 auto v6 = &pIndoor->pVertices[v1->pVertexIDs[i]]; |
2060 pGame->pIndoorCameraD3D->ApplyViewTransform_TrueIfStillVisible( | |
2061 v6->x, | |
2062 v6->y, | |
2063 v6->z, | |
2064 &_50B924_view_transformed_xs[i], | |
2065 &_50B834_view_transformed_zs[i], | |
2066 &_50B744_view_transformed_ys[i], | |
2067 0); | |
0 | 2068 } |
2069 | |
2070 //v7 = v1->uNumVertices; | |
2071 //v8 = 0; | |
1289 | 2072 if (v1->uNumVertices <= 0) |
0 | 2073 return 0; |
2074 | |
2075 bool bFound = false; | |
1289 | 2076 for (uint i = 0; i < v1->uNumVertices; ++i) |
2077 if (_50B924_view_transformed_xs[i] >= 0x80000u) | |
0 | 2078 { |
2079 bFound = true; | |
2080 break; | |
2081 } | |
2082 if (!bFound) | |
2083 return 0; | |
2084 | |
2085 v79 = 0; | |
1289 | 2086 _50B924_view_transformed_xs[v1->uNumVertices] = _50B924_view_transformed_xs[0]; |
2087 _50B834_view_transformed_zs[v1->uNumVertices] = _50B834_view_transformed_zs[0]; | |
2088 _50B744_view_transformed_ys[v1->uNumVertices] = _50B744_view_transformed_ys[0]; | |
2089 thisa = _50B924_view_transformed_xs[0] >= (signed int)0x80000u; | |
0 | 2090 //int i = 1; |
1289 | 2091 for (uint i = 1; i <= v1->uNumVertices; ++i) |
0 | 2092 { |
1289 | 2093 v10 = _50B924_view_transformed_xs[i]; |
0 | 2094 v81 = v10 >= (signed int)0x80000u; |
2095 if ( thisa ^ v81 ) | |
2096 { | |
1289 | 2097 v11 = _50B924_view_transformed_xs[i - 1]; |
0 | 2098 if ( v10 >= (signed int)0x80000u ) |
2099 { | |
2100 v12 = v10 - v11; | |
2101 v13 = 0x80000 - v11; | |
2102 LODWORD(v14) = v13 << 16; | |
2103 HIDWORD(v14) = v13 >> 16; | |
1289 | 2104 v15 = &_50B744_view_transformed_ys[i - 1]; |
2105 dword_50B828[v79] = ((unsigned __int64)((_50B834_view_transformed_zs[i] - _50B834_view_transformed_zs[i - 1]) * v14 / v12) >> 16) + _50B834_view_transformed_zs[i - 1]; | |
2106 thisb = (unsigned __int64)((_50B744_view_transformed_ys[i] - _50B744_view_transformed_ys[i - 1]) * v14 / v12) >> 16; | |
0 | 2107 } |
2108 else | |
2109 { | |
2110 v16 = v11 - v10; | |
2111 v17 = 0x80000 - v10; | |
2112 LODWORD(v18) = v17 << 16; | |
2113 HIDWORD(v18) = v17 >> 16; | |
1289 | 2114 v15 = &_50B744_view_transformed_ys[i]; |
2115 dword_50B828[v79] = ((unsigned __int64)((_50B834_view_transformed_zs[i - 1] - _50B834_view_transformed_zs[i]) * v18 / v16) >> 16) + _50B834_view_transformed_zs[i]; | |
2116 thisb = (unsigned __int64)((_50B744_view_transformed_ys[i - 1] - _50B744_view_transformed_ys[i]) * v18 / v16) >> 16; | |
0 | 2117 } |
2118 v19 = v79++; | |
2119 //v7 = v66; | |
1289 | 2120 dword_50B738[v19] = thisb + *v15; |
2121 dword_50B918[v19] = 0x80000u; | |
0 | 2122 } |
2123 if ( v81 ) | |
2124 { | |
2125 v20 = v79++; | |
1289 | 2126 dword_50B918[v20] = _50B924_view_transformed_xs[i]; |
2127 dword_50B828[v20] = _50B834_view_transformed_zs[i]; | |
2128 dword_50B738[v20] = _50B744_view_transformed_ys[i]; | |
0 | 2129 } |
2130 //++i; | |
2131 thisa = v81; | |
2132 } | |
2133 v21 = v79; | |
1289 | 2134 dword_50B918[v79] = dword_50B918[0]; |
2135 dword_50B828[v79] = dword_50B828[0]; | |
2136 dword_50B738[v79] = dword_50B738[0]; | |
561 | 2137 for (ia = 0; ia < v79; ++ia) |
0 | 2138 { |
2139 v22 = ia; | |
1289 | 2140 thisc = abs(dword_50B918[ia]); |
2141 if ( abs(dword_50B828[ia]) >> 13 <= thisc ) | |
0 | 2142 { |
1289 | 2143 v27 = dword_50B828[v22]; |
0 | 2144 LODWORD(v28) = v27 << 16; |
2145 HIDWORD(v28) = v27 >> 16; | |
1289 | 2146 v26 = v28 / dword_50B918[v22]; |
0 | 2147 v23 = 0; |
2148 } | |
2149 else | |
2150 { | |
2151 v23 = 0; | |
2152 v24 = 0; | |
1289 | 2153 if ( dword_50B828[v22] >= 0 ) |
0 | 2154 { |
1289 | 2155 LOBYTE(v24) = dword_50B918[v22] >= 0; |
0 | 2156 v26 = ((v24 - 1) & 0xFF800000) + 0x400000; |
2157 } | |
2158 else | |
2159 { | |
1289 | 2160 LOBYTE(v24) = dword_50B918[v22] >= 0; |
0 | 2161 v25 = v24 - 1; |
2162 v26 = (v25 & 0x800000) - 0x400000; | |
2163 } | |
2164 } | |
1289 | 2165 v29 = dword_50B738[v22]; |
2166 dword_50BAF8_xs[v22] = v26; | |
0 | 2167 if ( abs(v29) >> 13 <= thisc ) |
2168 { | |
1289 | 2169 v33 = dword_50B738[v22]; |
0 | 2170 LODWORD(v34) = v33 << 16; |
2171 HIDWORD(v34) = v33 >> 16; | |
1289 | 2172 v32 = v34 / dword_50B918[v22]; |
0 | 2173 } |
2174 else | |
2175 { | |
2176 v30 = 0; | |
1289 | 2177 if ( dword_50B738[v22] >= v23 ) |
0 | 2178 { |
1289 | 2179 LOBYTE(v30) = dword_50B918[v22] >= v23; |
0 | 2180 v32 = ((v30 - 1) & 0xFF800000) + 0x400000; |
2181 } | |
2182 else | |
2183 { | |
1289 | 2184 LOBYTE(v30) = dword_50B918[v22] >= v23; |
0 | 2185 v31 = v30 - 1; |
2186 v32 = (v31 & 0x800000) - 0x400000; | |
2187 } | |
2188 } | |
1289 | 2189 dword_50BA08_ys[v22] = v32; |
2190 dword_50BAF8_xs[v22] = (unsigned __int64)(SHIWORD(pBLVRenderParams->field_40) * (signed __int64)dword_50BAF8_xs[v22]) >> 16; | |
2191 v35 = (unsigned __int64)(SHIWORD(pBLVRenderParams->field_40) * (signed __int64)dword_50BA08_ys[v22]) >> 16; | |
2192 dword_50BAF8_xs[v22] = pBLVRenderParams->uViewportCenterX - dword_50BAF8_xs[v22]; | |
2193 dword_50BA08_ys[v22] = pBLVRenderParams->uViewportCenterY - v35; | |
0 | 2194 } |
2195 v36 = 0; | |
1289 | 2196 dword_50BAF8_xs[v21] = dword_50BAF8_xs[0]; |
2197 dword_50BA08_ys[v21] = dword_50BA08_ys[0]; | |
0 | 2198 v37 = pBLVRenderParams->uViewportX; |
1289 | 2199 v38 = dword_50BAF8_xs[0] < (signed int)pBLVRenderParams->uViewportX; |
2200 LOBYTE(v38) = dword_50BAF8_xs[0] >= (signed int)pBLVRenderParams->uViewportX; | |
0 | 2201 v39 = 1; |
2202 ib = 1; | |
2203 if ( v79 < 1 ) | |
2204 return 0; | |
2205 do | |
2206 { | |
2207 v40 = v39; | |
1289 | 2208 v41 = dword_50BAF8_xs[v40]; |
0 | 2209 v82 = v41 >= (signed int)v37; |
2210 if ( v38 ^ v82 ) | |
2211 { | |
2212 if ( v41 >= (signed int)v37 ) | |
2213 { | |
1289 | 2214 v67 = (signed int)(v37 - dword_50BAF8_xs[v40 - 1]) * (signed __int64)(dword_50BA08_ys[v40] - dword_50BA08_ys[v40 - 1]) / (v41 - dword_50BAF8_xs[v40 - 1]); |
2215 v42 = dword_50BA08_ys[v40 - 1]; | |
0 | 2216 } |
2217 else | |
2218 { | |
1289 | 2219 v67 = (signed int)(v37 - v41) * (signed __int64)(dword_50BA08_ys[v40 - 1] - dword_50BA08_ys[v40]) / (dword_50BAF8_xs[v40 - 1] - v41); |
2220 v42 = dword_50BA08_ys[v40]; | |
0 | 2221 } |
1289 | 2222 dword_50B9FC_ys[v36] = v67 + v42; |
561 | 2223 v37 = pBLVRenderParams->uViewportX; |
1289 | 2224 dword_50BAEC_xs[v36] = pBLVRenderParams->uViewportX; |
0 | 2225 ++v36; |
2226 } | |
2227 v38 = v82; | |
2228 if ( v82 ) | |
2229 { | |
1289 | 2230 dword_50BAEC_xs[v36] = dword_50BAF8_xs[v40]; |
2231 dword_50B9FC_ys[v36] = dword_50BA08_ys[v40]; | |
561 | 2232 ++v36; |
0 | 2233 } |
2234 v39 = ib++ + 1; | |
2235 } | |
2236 while ( ib <= v79 ); | |
2237 | |
486 | 2238 if (v36 < 1) |
0 | 2239 return 0; |
2240 | |
486 | 2241 v43 = 0; |
1289 | 2242 dword_50BAEC_xs[v36] = dword_50BAEC_xs[0]; |
2243 dword_50B9FC_ys[v36] = dword_50B9FC_ys[0]; | |
486 | 2244 v44 = pBLVRenderParams->uViewportZ; |
1289 | 2245 thisd = dword_50BAEC_xs[0] <= (signed int)pBLVRenderParams->uViewportZ; |
486 | 2246 ic = 1; |
2247 | |
0 | 2248 do |
2249 { | |
2250 v45 = ic; | |
1289 | 2251 v46 = dword_50BAEC_xs[ic]; |
0 | 2252 v83 = v46 <= (signed int)v44; |
2253 if ( thisd ^ v83 ) | |
2254 { | |
2255 if ( v46 <= (signed int)v44 ) | |
2256 { | |
1289 | 2257 v68 = (signed int)(v44 - dword_50BAEC_xs[v45 - 1]) * (signed __int64)(dword_50B9FC_ys[v45] - dword_50B9FC_ys[v45 - 1]) / (v46 - dword_50BAEC_xs[v45 - 1]); |
2258 v47 = dword_50B9FC_ys[v45 - 1]; | |
0 | 2259 } |
2260 else | |
2261 { | |
1289 | 2262 v68 = (signed int)(v44 - v46) * (signed __int64)(dword_50B9FC_ys[v45 - 1] - dword_50B9FC_ys[v45]) / (dword_50BAEC_xs[v45 - 1] - v46); |
2263 v47 = dword_50B9FC_ys[v45]; | |
0 | 2264 } |
1289 | 2265 dword_50B9F0[v43] = v68 + v47; |
561 | 2266 v44 = pBLVRenderParams->uViewportZ; |
1289 | 2267 dword_50BAE0[v43] = pBLVRenderParams->uViewportZ; |
0 | 2268 ++v43; |
2269 } | |
2270 if ( v83 ) | |
2271 { | |
1289 | 2272 dword_50BAE0[v43] = dword_50BAEC_xs[v45]; |
2273 dword_50B9F0[v43++] = dword_50B9FC_ys[v45]; | |
0 | 2274 } |
2275 ++ic; | |
2276 thisd = v83; | |
2277 } | |
2278 while ( ic <= v36 ); | |
486 | 2279 |
2280 if (v43 < 1) | |
0 | 2281 return 0; |
486 | 2282 |
2283 v48 = 0; | |
1289 | 2284 dword_50BAE0[v43] = dword_50BAE0[0]; |
2285 dword_50B9F0[v43] = dword_50B9F0[0]; | |
486 | 2286 v49 = pBLVRenderParams->uViewportY; |
1289 | 2287 v50 = dword_50B9F0[0] < (signed int)pBLVRenderParams->uViewportY; |
2288 LOBYTE(v50) = dword_50B9F0[0] >= (signed int)pBLVRenderParams->uViewportY; | |
486 | 2289 v51 = 1; |
2290 id = 1; | |
0 | 2291 do |
2292 { | |
2293 v52 = v51; | |
1289 | 2294 v53 = dword_50B9F0[v52]; |
0 | 2295 v84 = v53 >= (signed int)v49; |
2296 if ( v50 ^ v84 ) | |
2297 { | |
2298 if ( v53 >= (signed int)v49 ) | |
2299 { | |
1289 | 2300 v69 = (signed int)(v49 - dword_50B9F0[v52 - 1]) * (signed __int64)(dword_50BAE0[v52] - dword_50BAE0[v52 - 1]) / (v53 - dword_50B9F0[v52 - 1]); |
2301 v54 = dword_50BAE0[v52 - 1]; | |
0 | 2302 } |
2303 else | |
2304 { | |
1289 | 2305 v69 = (signed int)(v49 - v53) * (signed __int64)(dword_50BAE0[v52 - 1] - dword_50BAE0[v52]) / (dword_50B9F0[v52 - 1] - v53); |
2306 v54 = dword_50BAE0[v52]; | |
0 | 2307 } |
1289 | 2308 dword_50BAD4[v48] = v69 + v54; |
561 | 2309 v49 = pBLVRenderParams->uViewportY; |
1289 | 2310 dword_50B9E4[v48] = pBLVRenderParams->uViewportY; |
0 | 2311 ++v48; |
2312 } | |
2313 v50 = v84; | |
2314 if ( v84 ) | |
2315 { | |
1289 | 2316 dword_50BAD4[v48] = dword_50BAE0[v52]; |
2317 dword_50B9E4[v48++] = dword_50B9F0[v52]; | |
0 | 2318 } |
2319 v51 = id++ + 1; | |
2320 } | |
2321 while ( id <= v43 ); | |
486 | 2322 |
2323 if (v48 < 1) | |
0 | 2324 return 0; |
486 | 2325 |
2326 v55 = 0; | |
1289 | 2327 dword_50BAD4[v48] = dword_50BAD4[0]; |
2328 dword_50B9E4[v48] = dword_50B9E4[0]; | |
486 | 2329 v56 = pBLVRenderParams->uViewportW; |
1289 | 2330 thise = dword_50B9E4[0] <= (signed int)pBLVRenderParams->uViewportW; |
486 | 2331 ie = 1; |
0 | 2332 do |
2333 { | |
2334 v57 = ie; | |
1289 | 2335 v58 = dword_50B9E4[ie]; |
0 | 2336 v85 = v58 <= (signed int)v56; |
2337 if ( thise ^ v85 ) | |
2338 { | |
2339 if ( v58 <= (signed int)v56 ) | |
2340 { | |
1289 | 2341 v70 = (signed int)(v56 - dword_50B9E4[v57 - 1]) * (signed __int64)(dword_50BAD4[v57] - dword_50BAD4[v57 - 1]) / (v58 - dword_50B9E4[v57 - 1]); |
2342 v59 = dword_50BAD4[v57 - 1]; | |
0 | 2343 } |
2344 else | |
2345 { | |
1289 | 2346 v70 = (signed int)(v56 - v58) * (signed __int64)(dword_50BAD4[v57 - 1] - dword_50BAD4[v57]) / (dword_50B9E4[v57 - 1] - v58); |
2347 v59 = dword_50BAD4[v57]; | |
0 | 2348 } |
1289 | 2349 _50BAC8_screen_space_x[v55] = v70 + v59; |
561 | 2350 v56 = pBLVRenderParams->uViewportW; |
1289 | 2351 _50B9D8_screen_space_y[v55] = pBLVRenderParams->uViewportW; |
0 | 2352 ++v55; |
2353 } | |
2354 if ( v85 ) | |
2355 { | |
1289 | 2356 _50BAC8_screen_space_x[v55] = dword_50BAD4[v57]; |
2357 _50B9D8_screen_space_y[v55++] = dword_50B9E4[v57]; | |
0 | 2358 } |
2359 ++ie; | |
2360 thise = v85; | |
2361 } | |
2362 while ( ie <= v48 ); | |
486 | 2363 |
0 | 2364 if ( !v55 ) |
2365 return 0; | |
2366 v61 = pRenderer->pRenderD3D == 0; | |
1289 | 2367 _50BAC8_screen_space_x[v55] = _50BAC8_screen_space_x[0]; |
2368 _50B9D8_screen_space_y[v55] = _50B9D8_screen_space_y[0]; | |
0 | 2369 if ( v61 && v55 > 3 ) |
2370 { | |
1289 | 2371 _50BAC8_screen_space_x[v55 + 1] = _50BAC8_screen_space_x[1]; |
2372 _50B9D8_screen_space_y[v55 + 1] = _50B9D8_screen_space_y[1]; | |
2373 thisf = 2 * (dword_50B700 != 0) - 1; | |
0 | 2374 if ( v55 > 0 ) |
2375 { | |
2376 v62 = 1; | |
2377 v71 = 1; | |
2378 do | |
2379 { | |
2380 v63 = v62 - 1; | |
2381 v64 = v62 + 1; | |
2382 v80 = v62 + 1; | |
2383 if ( v62 - 1 >= v55 ) | |
2384 v63 -= v55; | |
2385 if ( v62 >= v55 ) | |
2386 v62 -= v55; | |
2387 if ( v64 >= v55 ) | |
2388 v64 -= v55; | |
2389 if ( thisf | |
1289 | 2390 * ((_50B9D8_screen_space_y[v64] - _50B9D8_screen_space_y[v63]) * (_50BAC8_screen_space_x[v62] - _50BAC8_screen_space_x[v63]) |
2391 - (_50B9D8_screen_space_y[v62] - _50B9D8_screen_space_y[v63]) * (_50BAC8_screen_space_x[v64] - _50BAC8_screen_space_x[v63])) < 0 ) | |
0 | 2392 { |
2393 v62 = v80; | |
2394 v71 = v80; | |
2395 } | |
2396 else | |
2397 { | |
2398 v62 = v71; | |
2399 v65 = v71; | |
2400 if ( v71 < v55 || (v65 = v71 - v55, v71 - v55 < v55) ) | |
2401 { | |
1289 | 2402 memcpy(&_50B9D8_screen_space_y[v65], &_50B9D8_screen_space_y[v65 + 1], 4 * ((unsigned int)(4 * (v55 - v65)) >> 2)); |
2403 memcpy(&_50BAC8_screen_space_x[v65], &_50BAC8_screen_space_x[v65 + 1], 4 * ((unsigned int)(4 * (v55 - v65)) >> 2)); | |
0 | 2404 } |
2405 --v55; | |
2406 } | |
2407 } | |
2408 while ( v62 - 1 < v55 ); | |
2409 } | |
1289 | 2410 _50BAC8_screen_space_x[v55] = _50BAC8_screen_space_x[0]; |
2411 _50B9D8_screen_space_y[v55] = _50B9D8_screen_space_y[0]; | |
0 | 2412 } |
2413 return v55; | |
1289 | 2414 }*/ |
0 | 2415 |
2416 //----- (00424579) -------------------------------------------------------- | |
2417 int __fastcall sub_424579(int uFaceID, stru320 *a2) | |
2418 { | |
2419 __debugbreak(); | |
2420 return 0; | |
2421 /*BLVFace *v2; // eax@1 | |
2422 Vec3_short_ *v3; // ebx@1 | |
2423 Vec3_short_ *v4; // esi@1 | |
2424 unsigned int v5; // esi@3 | |
2425 int v7; // ST1C_4@5 | |
2426 int v8; // ST1C_4@5 | |
2427 int v9; // ST1C_4@5 | |
2428 int v10; // ST1C_4@5 | |
2429 int v11; // esi@5 | |
2430 int v12; // ST1C_4@5 | |
2431 unsigned int v15; // ecx@8 | |
2432 unsigned int v19; // ecx@13 | |
2433 signed int v20; // ecx@16 | |
2434 signed int result; // eax@20 | |
2435 signed int v24; // edx@22 | |
2436 unsigned int v25; // [sp+Ch] [bp-1Ch]@3 | |
2437 float v26; // [sp+14h] [bp-14h]@3 | |
2438 float v27; // [sp+1Ch] [bp-Ch]@3 | |
2439 float v28; // [sp+20h] [bp-8h]@3 | |
2440 signed int v29; // [sp+24h] [bp-4h]@3 | |
2441 | |
2442 v2 = &pIndoor->pFaces[uFaceID]; | |
2443 v3 = pIndoor->pVertices; | |
2444 v4 = &pIndoor->pVertices[*v2->pVertexIDs]; | |
2445 if ( v2->pFacePlane_old.vNormal.x * ((signed __int16)*(int *)&v4->x - pBLVRenderParams->vPartyPos.x) | |
2446 + v2->pFacePlane_old.vNormal.y * ((signed __int16)(*(int *)&v4->x >> 16) - pBLVRenderParams->vPartyPos.y) | |
2447 + v2->pFacePlane_old.vNormal.z * (v4->z - pBLVRenderParams->vPartyPos.z) < 0 ) | |
2448 { | |
1078 | 2449 stru_50B700.field_0 = 1; |
0 | 2450 } |
2451 else | |
2452 { | |
1078 | 2453 stru_50B700.field_0 = 0; |
0 | 2454 if ( !(v2->uAttributes & 1) ) |
2455 return 0; | |
2456 } | |
2457 v29 = 0; | |
2458 v5 = v2->uNumVertices; | |
2459 __asm { fld pBLVRenderParams->fCosineY } | |
2460 v28 = pBLVRenderParams->fSineY; | |
2461 v26 = pBLVRenderParams->fCosineNegX; | |
2462 v27 = pBLVRenderParams->fSineNegX; | |
2463 v25 = v5; | |
2464 if ( (signed int)v5 > 0 ) | |
2465 { | |
2466 _ECX = (char *)&array_50AC10[0].vWorldPosition.z; | |
2467 do | |
2468 { | |
2469 v7 = v3[v2->pVertexIDs[v29]].x; | |
2470 __asm | |
2471 { | |
2472 fild [ebp+var_10] | |
2473 fstp dword ptr [ecx-8] | |
2474 } | |
2475 v8 = v3[v2->pVertexIDs[v29]].y; | |
2476 __asm | |
2477 { | |
2478 fild [ebp+var_10] | |
2479 fstp dword ptr [ecx-4] | |
2480 } | |
2481 v9 = v3[v2->pVertexIDs[v29]].z; | |
2482 __asm | |
2483 { | |
2484 fild [ebp+var_10] | |
2485 fstp dword ptr [ecx] | |
2486 } | |
2487 _ECX += 48; | |
2488 v10 = a2->pDeltaUV[0] + v2->pVertexUIDs[v29]; | |
2489 __asm | |
2490 { | |
2491 fild [ebp+var_10] | |
2492 fstp dword ptr [ecx-14h] | |
2493 } | |
2494 v11 = a2->pDeltaUV[1] + v2->pVertexVIDs[v29++]; | |
2495 v12 = v11; | |
2496 v5 = v25; | |
2497 __asm | |
2498 { | |
2499 fild [ebp+var_10] | |
2500 fstp dword ptr [ecx-10h] | |
2501 } | |
2502 } | |
2503 while ( v29 < (signed int)v25 ); | |
2504 } | |
2505 _EDX = (char *)&array_50AC10[0].vWorldViewPosition; | |
2506 if ( pBLVRenderParams->sPartyRotX ) | |
2507 { | |
2508 if ( (signed int)v5 > 0 ) | |
2509 { | |
2510 __asm | |
2511 { | |
2512 fild pBLVRenderParams->vPartyPos.x | |
2513 fild pBLVRenderParams->vPartyPos.y | |
2514 fild pBLVRenderParams->vPartyPos.z | |
2515 } | |
2516 _EAX = (char *)&array_50AC10[0].vWorldPosition.z; | |
2517 v15 = v5; | |
2518 do | |
2519 { | |
2520 __asm | |
2521 { | |
2522 fld dword ptr [eax-8] | |
2523 fsub st, st(3) | |
2524 fld dword ptr [eax-4] | |
2525 fsub st, st(3) | |
2526 fld st(1) | |
2527 fmul st, st(6) | |
2528 fld st(1) | |
2529 fmul [ebp+var_8] | |
2530 fsubp st(1), st | |
2531 fstp [ebp+var_4] | |
2532 fld dword ptr [eax] | |
2533 fsub st, st(3) | |
2534 } | |
2535 _EAX += 48; | |
2536 --v15; | |
2537 __asm | |
2538 { | |
2539 fstp [ebp+var_10] | |
2540 fld [ebp+var_4] | |
2541 fmul [ebp+var_14] | |
2542 fld [ebp+var_10] | |
2543 fmul [ebp+var_C] | |
2544 fsubp st(1), st | |
2545 fstp dword ptr [eax-2Ch] | |
2546 fld st(1) | |
2547 fmul [ebp+var_8] | |
2548 fld st(1) | |
2549 fmul st, st(7) | |
2550 faddp st(1), st | |
2551 fstp dword ptr [eax-28h] | |
2552 fstp st | |
2553 fstp st | |
2554 fld [ebp+var_4] | |
2555 fmul [ebp+var_C] | |
2556 fld [ebp+var_10] | |
2557 fmul [ebp+var_14] | |
2558 faddp st(1), st | |
2559 fstp dword ptr [eax-24h] | |
2560 } | |
2561 } | |
2562 while ( v15 ); | |
2563 LABEL_15: | |
2564 __asm | |
2565 { | |
2566 fstp st | |
2567 fstp st | |
2568 fstp st | |
2569 } | |
2570 goto LABEL_16; | |
2571 } | |
2572 } | |
2573 else | |
2574 { | |
2575 if ( (signed int)v5 > 0 ) | |
2576 { | |
2577 __asm | |
2578 { | |
2579 fild pBLVRenderParams->vPartyPos.x | |
2580 fild pBLVRenderParams->vPartyPos.y | |
2581 fild pBLVRenderParams->vPartyPos.z | |
2582 } | |
2583 _EAX = (char *)&array_50AC10[0].vWorldViewPosition; | |
2584 v19 = v5; | |
2585 do | |
2586 { | |
2587 __asm | |
2588 { | |
2589 fld dword ptr [eax-0Ch] | |
2590 fsub st, st(3) | |
2591 fld dword ptr [eax-8] | |
2592 fsub st, st(3) | |
2593 fld st(1) | |
2594 fmul st, st(6) | |
2595 fld st(1) | |
2596 fmul [ebp+var_8] | |
2597 fsubp st(1), st | |
2598 fstp dword ptr [eax] | |
2599 fld st(1) | |
2600 fmul [ebp+var_8] | |
2601 fld st(1) | |
2602 fmul st, st(7) | |
2603 } | |
2604 _EAX += 48; | |
2605 --v19; | |
2606 __asm | |
2607 { | |
2608 faddp st(1), st | |
2609 fstp dword ptr [eax-2Ch] | |
2610 fstp st | |
2611 fstp st | |
2612 fld dword ptr [eax-34h] | |
2613 fsub st, st(1) | |
2614 fstp dword ptr [eax-28h] | |
2615 } | |
2616 } | |
2617 while ( v19 ); | |
2618 goto LABEL_15; | |
2619 } | |
2620 } | |
2621 LABEL_16: | |
2622 v20 = 0; | |
2623 __asm { fstp st } | |
2624 if ( (signed int)v5 <= 0 ) | |
2625 return 0; | |
2626 do | |
2627 { | |
2628 __asm | |
2629 { | |
2630 fld dword ptr [edx] | |
2631 fcomp ds:flt_4D8524 | |
2632 fnstsw ax | |
2633 } | |
2634 if ( !(HIBYTE(_AX) & 1) ) | |
2635 break; | |
2636 ++v20; | |
2637 _EDX += 48; | |
2638 } | |
2639 while ( v20 < (signed int)v5 ); | |
2640 if ( v20 >= (signed int)v5 ) | |
2641 return 0; | |
2642 result = sr_424CD7(v5); | |
2643 if ( result > 0 ) | |
2644 { | |
2645 __asm { fild pBLVRenderParams->field_40 } | |
2646 _ECX = (char *)&array_507D30[0].vWorldViewPosition; | |
2647 v24 = result; | |
2648 __asm | |
2649 { | |
2650 fmul ds:flt_4D84A4 | |
2651 fild pBLVRenderParams->uViewportCenterX | |
2652 fild pBLVRenderParams->uViewportCenterY | |
2653 } | |
2654 do | |
2655 { | |
2656 __asm | |
2657 { | |
2658 fld1 | |
2659 fdiv dword ptr [ecx] | |
2660 } | |
2661 _ECX += 48; | |
2662 --v24; | |
2663 __asm | |
2664 { | |
2665 fld st | |
2666 fmul dword ptr [ecx-2Ch] | |
2667 fmul st, st(4) | |
2668 fsubr st, st(3) | |
2669 fstp dword ptr [ecx-24h] | |
2670 fmul dword ptr [ecx-28h] | |
2671 fmul st, st(3) | |
2672 fsubr st, st(1) | |
2673 fstp dword ptr [ecx-20h] | |
2674 } | |
2675 } | |
2676 while ( v24 ); | |
2677 __asm | |
2678 { | |
2679 fstp st | |
2680 fstp st | |
2681 fstp st | |
2682 } | |
2683 } | |
2684 memcpy(&array_507D30[result], array_507D30, sizeof(array_507D30[result])); | |
2685 return result;*/ | |
2686 } | |
2687 | |
2688 //----- (00424829) -------------------------------------------------------- | |
1143 | 2689 bool sub_424829(int pNumVertices, BspRenderer_stru2 *a2, BspRenderer_stru2 *a3, int uFaceID) |
0 | 2690 { |
1143 | 2691 //int v4; // edi@1 |
2692 //BspRenderer_stru2 *v5; // ebx@1 | |
0 | 2693 int v6; // eax@3 |
1195 | 2694 int min_y; // esi@5 |
2695 int max_y; // edx@5 | |
1143 | 2696 //int v9; // ecx@6 |
0 | 2697 int v10; // eax@12 |
1179 | 2698 //int v11; // edi@13 |
1143 | 2699 //int v12; // edx@18 |
0 | 2700 int v13; // eax@22 |
1143 | 2701 //int v14; // edi@28 |
0 | 2702 int v15; // ecx@29 |
1179 | 2703 //int v16; // edi@30 |
1143 | 2704 //int v17; // edx@35 |
0 | 2705 int v18; // eax@39 |
2706 int v19; // eax@44 | |
2707 int v20; // ecx@44 | |
1143 | 2708 //int v21; // edi@45 |
0 | 2709 int v22; // edi@46 |
1179 | 2710 //__int16 *v23; // ecx@47 |
0 | 2711 int v24; // edx@48 |
1179 | 2712 //int v25; // eax@50 |
0 | 2713 int v26; // eax@55 |
2714 signed int v27; // edi@55 | |
1143 | 2715 //int v28; // edx@56 |
0 | 2716 int v29; // edx@57 |
1179 | 2717 //int v30; // eax@59 |
0 | 2718 int v31; // eax@64 |
2719 signed int v32; // edi@64 | |
1143 | 2720 //int v33; // edx@65 |
1179 | 2721 int v34; // eax@66 |
2722 int v35; // dx@66 | |
0 | 2723 __int16 v36; // dx@67 |
2724 __int16 v37; // di@67 | |
2725 __int16 v38; // dx@67 | |
1143 | 2726 //BspRenderer_stru2 *v39; // ecx@69 |
1179 | 2727 //int v40; // edx@69 |
2728 //int v41; // edi@70 | |
2729 //__int16 *v42; // eax@76 | |
2730 //__int16 *v43; // eax@81 | |
2731 //__int16 *v45; // eax@87 | |
0 | 2732 int v46; // edx@87 |
1179 | 2733 //__int16 v47; // cx@88 |
2734 //int v48; // eax@93 | |
0 | 2735 int v49; // esi@93 |
1179 | 2736 //__int16 *v50; // ecx@94 |
2737 //int v51; // eax@95 | |
1143 | 2738 //int v52; // eax@97 |
0 | 2739 int v53; // [sp+Ch] [bp-34h]@44 |
2740 int v54; // [sp+10h] [bp-30h]@0 | |
2741 int v55; // [sp+14h] [bp-2Ch]@12 | |
1179 | 2742 //__int16 *v56; // [sp+14h] [bp-2Ch]@47 |
2743 //__int16 v57; // [sp+14h] [bp-2Ch]@76 | |
2744 //__int16 v58; // [sp+14h] [bp-2Ch]@81 | |
2745 int v59; // [sp+14h] [bp-2Ch]@87 | |
1143 | 2746 //BspRenderer_stru2 *v60; // [sp+18h] [bp-28h]@1 |
0 | 2747 int v61; // [sp+1Ch] [bp-24h]@29 |
2748 int v62; // [sp+20h] [bp-20h]@0 | |
2749 signed int v63; // [sp+24h] [bp-1Ch]@3 | |
2750 signed int v64; // [sp+28h] [bp-18h]@3 | |
2751 int v65; // [sp+2Ch] [bp-14h]@5 | |
1179 | 2752 //int v66; // [sp+2Ch] [bp-14h]@39 |
2753 //int v67; // [sp+30h] [bp-10h]@22 | |
0 | 2754 int v68; // [sp+34h] [bp-Ch]@12 |
2755 int v69; // [sp+34h] [bp-Ch]@29 | |
2756 int v70; // [sp+34h] [bp-Ch]@46 | |
2757 int v71; // [sp+34h] [bp-Ch]@75 | |
2758 int v72; // [sp+34h] [bp-Ch]@80 | |
1179 | 2759 //int v73; // [sp+38h] [bp-8h]@11 |
1143 | 2760 //int v74; // [sp+3Ch] [bp-4h]@1 |
1179 | 2761 //int a3a; // [sp+48h] [bp+8h]@76 |
2762 //int a3b; // [sp+48h] [bp+8h]@87 | |
0 | 2763 |
1132 | 2764 //try graphic engine with function returning 1 always, and without |
1143 | 2765 //return true; |
1187 | 2766 if ( pNumVertices <= 1 ) |
1143 | 2767 return false; |
1195 | 2768 min_y = stru_50B700._screen_space_y[0]; |
1143 | 2769 v65 = 0; |
1195 | 2770 max_y = stru_50B700._screen_space_y[0]; |
1143 | 2771 if ( !stru_50B700.field_0 ) |
0 | 2772 { |
1143 | 2773 v63 = 1; |
2774 v64 = -1; | |
2775 } | |
2776 else | |
2777 { | |
2778 v63 = -1; | |
2779 v64 = 1; | |
2780 } | |
1187 | 2781 |
1143 | 2782 for ( v6 = 1; v6 < pNumVertices; ++v6 ) |
2783 { | |
1195 | 2784 if ( stru_50B700._screen_space_y[v6] >= min_y ) |
0 | 2785 { |
1195 | 2786 if ( stru_50B700._screen_space_y[v6] > max_y ) |
2787 max_y = stru_50B700._screen_space_y[v6]; | |
0 | 2788 } |
1195 | 2789 if ( stru_50B700._screen_space_y[v6] < min_y ) |
0 | 2790 { |
2791 v65 = v6; | |
1195 | 2792 min_y = stru_50B700._screen_space_y[v6]; |
0 | 2793 } |
2794 } | |
1195 | 2795 if ( max_y == min_y ) |
1143 | 2796 return false; |
1187 | 2797 |
0 | 2798 v10 = v65; |
1195 | 2799 a2->_viewport_space_y = min_y; |
2800 a2->_viewport_space_w = max_y; | |
0 | 2801 v55 = v65; |
1187 | 2802 |
2803 for ( v68 = 0; v68 < pNumVertices; ++v68 ) | |
0 | 2804 { |
1187 | 2805 v10 += v64; |
2806 if ( v10 < pNumVertices ) | |
0 | 2807 { |
1187 | 2808 if ( v10 < 0 ) |
2809 v10 += pNumVertices; | |
0 | 2810 } |
1187 | 2811 else |
2812 v10 -= pNumVertices; | |
2813 if ( stru_50B700._screen_space_y[v10] <= stru_50B700._screen_space_y[v65] ) | |
2814 { | |
2815 v55 = v10; | |
2816 v65 = v10; | |
2817 } | |
1195 | 2818 if ( stru_50B700._screen_space_y[v10] == max_y ) |
1187 | 2819 break; |
0 | 2820 } |
2821 v13 = v55 + v64; | |
1179 | 2822 if ( v13 < pNumVertices ) |
0 | 2823 { |
1179 | 2824 if ( v13 < 0 ) |
2825 v13 += pNumVertices; | |
0 | 2826 } |
2827 else | |
1143 | 2828 v13 -= pNumVertices; |
1078 | 2829 if ( stru_50B700._screen_space_y[v13] != stru_50B700._screen_space_y[v55] ) |
0 | 2830 { |
1143 | 2831 v62 = stru_50B700._screen_space_x[v55] << 16; |
2832 v54 = ((stru_50B700._screen_space_x[v13] - stru_50B700._screen_space_x[v55]) << 16) / (stru_50B700._screen_space_y[v13] - stru_50B700._screen_space_y[v55]); | |
1195 | 2833 a2->array_18[min_y] = LOWORD(stru_50B700._screen_space_x[v55]); |
0 | 2834 } |
2835 v15 = v65; | |
2836 v61 = v65; | |
1187 | 2837 |
2838 for ( v69 = 0; v69 < pNumVertices; ++v69 ) | |
0 | 2839 { |
1187 | 2840 v15 += v63; |
2841 if ( v15 < pNumVertices ) | |
0 | 2842 { |
1187 | 2843 if ( v15 < 0 ) |
2844 v15 += pNumVertices; | |
0 | 2845 } |
1187 | 2846 else |
2847 v15 -= pNumVertices; | |
2848 if ( stru_50B700._screen_space_y[v15] <= stru_50B700._screen_space_y[v65] ) | |
2849 { | |
2850 v61 = v15; | |
2851 v65 = v15; | |
2852 } | |
1195 | 2853 if ( stru_50B700._screen_space_y[v15] == max_y ) |
1187 | 2854 break; |
0 | 2855 } |
2856 v18 = v63 + v61; | |
1179 | 2857 if ( v18 < pNumVertices ) |
0 | 2858 { |
1179 | 2859 if ( v18 < 0 ) |
2860 v18 += pNumVertices; | |
0 | 2861 } |
2862 else | |
1143 | 2863 v18 -= pNumVertices; |
0 | 2864 v19 = v18; |
2865 v20 = v61; | |
1078 | 2866 if ( stru_50B700._screen_space_y[v19] != stru_50B700._screen_space_y[v61] ) |
0 | 2867 { |
1143 | 2868 v61 = stru_50B700._screen_space_x[v20] << 16; |
2869 v53 = ((stru_50B700._screen_space_x[v19] - stru_50B700._screen_space_x[v20]) << 16) / stru_50B700._screen_space_y[v19] - stru_50B700._screen_space_y[v20]; | |
1195 | 2870 a2->array_3D8[max_y] = LOWORD(stru_50B700._screen_space_x[v20]); |
0 | 2871 } |
1195 | 2872 v22 = min_y; |
2873 if ( min_y <= max_y ) | |
0 | 2874 { |
1179 | 2875 //v56 = &a2->array_3D8[v7]; |
2876 //v23 = &a2->array_18[v7]; | |
1195 | 2877 for ( v70 = min_y; v70 <= max_y; ++v70 ) |
0 | 2878 { |
1179 | 2879 v24 = v13; |
1195 | 2880 if ( v22 >= stru_50B700._screen_space_y[v13] && v22 != max_y ) |
0 | 2881 { |
1179 | 2882 v13 = v64 + v13; |
2883 if ( v13 < pNumVertices ) | |
2884 { | |
2885 if ( v13 < 0 ) | |
2886 v13 += pNumVertices; | |
2887 } | |
2888 else | |
2889 v13 -= pNumVertices; | |
2890 v26 = v13; | |
2891 //v27 = stru_50B700._screen_space_y[v26] - stru_50B700._screen_space_y[v24]; | |
2892 if ( stru_50B700._screen_space_y[v26] - stru_50B700._screen_space_y[v24] > 0 ) | |
2893 { | |
2894 v54 = ((stru_50B700._screen_space_x[v26] - stru_50B700._screen_space_x[v24]) << 16) / stru_50B700._screen_space_y[v26] - stru_50B700._screen_space_y[v24]; | |
2895 v62 = stru_50B700._screen_space_x[v24] << 16; | |
2896 } | |
0 | 2897 } |
1179 | 2898 v29 = v18; |
1195 | 2899 if ( v70 >= stru_50B700._screen_space_y[v18] && v70 != max_y ) |
0 | 2900 { |
1179 | 2901 v18 += v63; |
2902 if ( v18 < pNumVertices ) | |
0 | 2903 { |
1179 | 2904 if ( v18 < 0 ) |
2905 v18 += pNumVertices; | |
0 | 2906 } |
1179 | 2907 else |
2908 v18 -= pNumVertices; | |
2909 v31 = v18; | |
1143 | 2910 //v32 = stru_50B700._screen_space_y[v31] - stru_50B700._screen_space_y[v29]; |
1078 | 2911 if ( stru_50B700._screen_space_y[v31] - stru_50B700._screen_space_y[v29] > 0 ) |
0 | 2912 { |
1143 | 2913 v53 = ((stru_50B700._screen_space_x[v31] - stru_50B700._screen_space_x[v29]) << 16) / stru_50B700._screen_space_y[v31] - stru_50B700._screen_space_y[v29]; |
2914 v61 = stru_50B700._screen_space_x[v29] << 16; | |
0 | 2915 } |
2916 } | |
1179 | 2917 //v34 = (char *)a2->array_18 - (char *)a2->array_3D8; |
2918 //v35 = *(__int16 *)((char *)&a2->array_3D8[v70] + v34); | |
2919 //v35 = HIWORD(v62); | |
2920 a2->array_18[v70] = HIWORD(v62); | |
2921 a2->array_3D8[v70] = HIWORD(v61); | |
2922 //v34 = &a2->array_3D8[v70]; | |
2923 //v35 = a2->array_3D8[v70]; | |
2924 if ( a2->array_18[v70] > a2->array_3D8[v70] ) | |
0 | 2925 { |
1179 | 2926 v36 = a2->array_18[v70] ^ a2->array_3D8[v70]; |
2927 v37 = a2->array_3D8[v70]; | |
2928 a2->array_18[v70] = v36; | |
0 | 2929 v38 = v37 ^ v36; |
1179 | 2930 a2->array_18[v70] ^= v38; |
2931 a2->array_3D8[v70] = v38; | |
0 | 2932 } |
1179 | 2933 //++v56; |
0 | 2934 v62 += v54; |
2935 v22 = v70 + 1; | |
2936 v61 += v53; | |
1179 | 2937 //++v23; |
0 | 2938 } |
2939 } | |
1195 | 2940 if ( max_y < a3->_viewport_space_y ) |
1179 | 2941 return false; |
1195 | 2942 if ( min_y > a3->_viewport_space_w ) |
1143 | 2943 return false; |
1195 | 2944 if ( min_y < a3->_viewport_space_y ) |
2945 min_y = a3->_viewport_space_y; | |
2946 if ( max_y > a3->_viewport_space_w ) | |
2947 max_y = a3->_viewport_space_w; | |
2948 if ( min_y <= max_y ) | |
0 | 2949 { |
1179 | 2950 //a3a = (char *)a2 - (char *)a3; |
2951 //v42 = &a3->array_3D8[v7]; | |
2952 //v57 = *(__int16 *)((char *)v42 + a3a); | |
1195 | 2953 for ( v71 = min_y; v71 <= max_y; ++v71 ) |
0 | 2954 { |
1179 | 2955 if ( a2->array_18[v71] >= a3->array_18[v71] && a2->array_18[v71] <= a3->array_3D8[v71] ) |
0 | 2956 break; |
1179 | 2957 //++v57; |
1195 | 2958 ++min_y; |
1179 | 2959 //++v42; |
0 | 2960 } |
2961 } | |
1195 | 2962 if ( max_y < min_y ) |
1143 | 2963 return false; |
1179 | 2964 //a3a = (char *)a2 - (char *)a3; |
2965 //v43 = &a3->array_3D8[v8]; | |
2966 //v58 = *(__int16 *)((char *)v43 + a3a); | |
1195 | 2967 for ( v72 = max_y; v72 >= min_y; --v72 ) |
0 | 2968 { |
1179 | 2969 if ( a2->array_3D8[v72] >= a3->array_18[v72] && a2->array_18[v72] <= a3->array_3D8[v72] ) |
0 | 2970 break; |
1179 | 2971 //--v58; |
1195 | 2972 --max_y; |
1179 | 2973 //--v43; |
2974 //v8 = v8; | |
0 | 2975 } |
1195 | 2976 if ( min_y >= max_y ) |
1143 | 2977 return false; |
1179 | 2978 //a3b = (char *)a3 - (char *)a2; |
1195 | 2979 v59 = min_y; |
1179 | 2980 //v45 = &a2->array_18[v7]; |
1143 | 2981 |
1195 | 2982 for ( v46 = max_y - min_y + 1; v46; --v46 ) |
0 | 2983 { |
1179 | 2984 //v47 = *(__int16 *)((char *)v45 + a3b); |
2985 if ( a2->array_18[v59] < a3->array_18[v59] ) | |
2986 a2->array_18[v59] = a3->array_18[v59]; | |
2987 if ( a2->array_3D8[v59] > a3->array_3D8[v59] ) | |
2988 a2->array_3D8[v59] = a3->array_3D8[v59]; | |
0 | 2989 ++v59; |
1179 | 2990 //++v45; |
0 | 2991 } |
1195 | 2992 a2->_viewport_space_y = min_y; |
2993 a2->_viewport_space_w = max_y; | |
2994 a2->field_8 = a2->array_18[min_y]; | |
1179 | 2995 //v48 = a2->array_3D8[v7]; |
1195 | 2996 a2->field_10 = min_y; |
2997 a2->field_14 = min_y; | |
2998 a2->field_C = a2->array_3D8[min_y]; | |
2999 v49 = min_y + 1; | |
3000 if ( v49 <= max_y ) | |
0 | 3001 { |
1179 | 3002 //v50 = &a2->array_3D8[v49]; |
1195 | 3003 for ( v49; v49 <= max_y; ++v49 ) |
0 | 3004 { |
1179 | 3005 //v51 = a2->array_18[v49]; |
3006 if ( a2->array_18[v49] < a2->field_8 ) | |
0 | 3007 { |
1179 | 3008 a2->field_8 = a2->array_18[v49]; |
1143 | 3009 a2->field_10 = v49; |
0 | 3010 } |
1143 | 3011 if ( a2->array_3D8[v49] > a2->field_C ) |
0 | 3012 { |
1143 | 3013 a2->field_C = a2->array_3D8[v49]; |
3014 a2->field_14 = v49; | |
0 | 3015 } |
1179 | 3016 //++v50; |
0 | 3017 } |
3018 } | |
1143 | 3019 return true; |
0 | 3020 } |
1078 | 3021 // 50B700: using guessed type int stru_50B700.field_0; |
0 | 3022 |
3023 //----- (00424CD7) -------------------------------------------------------- | |
3024 signed int __fastcall sr_424CD7(unsigned int uVertexID) | |
3025 { | |
3026 unsigned int v1; // edx@1 | |
3027 signed int v2; // edi@1 | |
3028 char *v3; // esi@4 | |
3029 char *v4; // ecx@4 | |
3030 unsigned int v5; // eax@4 | |
3031 char *v6; // edx@4 | |
3032 double v7; // st6@10 | |
3033 double v8; // st5@10 | |
3034 double v9; // st6@11 | |
3035 unsigned __int8 v10; // c2@15 | |
3036 unsigned __int8 v11; // c3@15 | |
3037 RenderVertexSoft *v12; // edi@22 | |
3038 char *v13; // eax@22 | |
3039 double v14; // st6@22 | |
3040 signed int result; // eax@24 | |
3041 unsigned int v16; // [sp+8h] [bp-28h]@4 | |
3042 bool v17; // [sp+Ch] [bp-24h]@6 | |
3043 char *v18; // [sp+10h] [bp-20h]@4 | |
3044 char *v19; // [sp+14h] [bp-1Ch]@4 | |
3045 signed int v20; // [sp+18h] [bp-18h]@1 | |
3046 RenderVertexSoft *v21; // [sp+1Ch] [bp-14h]@4 | |
3047 char *v22; // [sp+20h] [bp-10h]@4 | |
3048 char *v23; // [sp+24h] [bp-Ch]@4 | |
3049 char *v24; // [sp+28h] [bp-8h]@4 | |
3050 char *v25; // [sp+2Ch] [bp-4h]@4 | |
3051 | |
3052 v1 = uVertexID; | |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
3053 memcpy(&array_50AC10[uVertexID], array_50AC10, sizeof(array_50AC10[uVertexID])); |
0 | 3054 v2 = 0; |
3055 v20 = 0; | |
3056 if ( array_50AC10[0].vWorldViewPosition.x >= 8.0 ) | |
3057 v2 = 1; | |
3058 if ( (signed int)(uVertexID + 1) <= 1 ) | |
3059 return 0; | |
3060 v3 = (char *)&array_507D30[0].vWorldViewPosition.z; | |
3061 v4 = (char *)&array_507D30[0].vWorldViewPosition.y; | |
3062 v5 = v1; | |
168 | 3063 v23 = (char *)&array_507D30[0]._rhw; |
1207
96a81634669e
arrays to std::arrays phase 3 - finishing global arrays
Grumpy7
parents:
1206
diff
changeset
|
3064 v21 = array_507D30; |
0 | 3065 v18 = (char *)&array_507D30[0].vWorldViewPosition.z; |
3066 v19 = (char *)&array_507D30[0].vWorldViewPosition.y; | |
3067 v22 = (char *)&array_507D30[0].vWorldViewPosition; | |
3068 v24 = (char *)&array_507D30[0].v; | |
3069 v25 = (char *)&array_507D30[0].u; | |
3070 v6 = (char *)&array_50AC10[0].v; | |
3071 v16 = v5; | |
3072 do | |
3073 { | |
3074 v17 = *((float *)v6 + 5) >= 8.0; | |
3075 if ( v2 != v17 ) | |
3076 { | |
3077 if ( v17 ) | |
3078 { | |
3079 v7 = (8.0 - *((float *)v6 - 7)) / (*((float *)v6 + 5) - *((float *)v6 - 7)); | |
3080 *(float *)v4 = (*((float *)v6 + 6) - *((float *)v6 - 6)) * v7 + *((float *)v6 - 6); | |
3081 *(float *)v3 = (*((float *)v6 + 7) - *((float *)v6 - 5)) * v7 + *((float *)v6 - 5); | |
3082 *(float *)v25 = (*((float *)v6 + 11) - *((float *)v6 - 1)) * v7 + *((float *)v6 - 1); | |
3083 v8 = (*((float *)v6 + 12) - *(float *)v6) * v7 + *(float *)v6; | |
3084 } | |
3085 else | |
3086 { | |
3087 v9 = (8.0 - *((float *)v6 + 5)) / (*((float *)v6 - 7) - *((float *)v6 + 5)); | |
3088 *(float *)v4 = (*((float *)v6 - 6) - *((float *)v6 + 6)) * v9 + *((float *)v6 + 6); | |
3089 *(float *)v3 = (*((float *)v6 - 5) - *((float *)v6 + 7)) * v9 + *((float *)v6 + 7); | |
3090 *(float *)v25 = (*((float *)v6 - 1) - *((float *)v6 + 11)) * v9 + *((float *)v6 + 11); | |
3091 v8 = (*(float *)v6 - *((float *)v6 + 12)) * v9 + *((float *)v6 + 12); | |
3092 } | |
3093 *(float *)v24 = v8; | |
3094 *(float *)v22 = 8.0; | |
3095 *(int *)v23 = 0x3E000000u; | |
3096 if ( v2 ) | |
3097 { | |
3098 if ( 8.0 == *((float *)v6 - 7) && *(float *)v4 == *((float *)v6 - 6) ) | |
3099 { | |
3100 v10 = 0; | |
3101 v11 = *(float *)v3 == *((float *)v6 - 5); | |
3102 goto LABEL_19; | |
3103 } | |
3104 } | |
3105 else | |
3106 { | |
3107 if ( 8.0 == *((float *)v6 + 5) && *(float *)v4 == *((float *)v6 + 6) ) | |
3108 { | |
3109 v10 = 0; | |
3110 v11 = *(float *)v3 == *((float *)v6 + 7); | |
3111 LABEL_19: | |
3112 if ( v11 | v10 ) | |
3113 goto LABEL_21; | |
3114 goto LABEL_20; | |
3115 } | |
3116 } | |
3117 LABEL_20: | |
3118 ++v21; | |
3119 v22 += 48; | |
3120 v24 += 48; | |
3121 v25 += 48; | |
3122 v4 += 48; | |
3123 v3 += 48; | |
3124 ++v20; | |
3125 v23 += 48; | |
3126 v19 = v4; | |
3127 v18 = v3; | |
3128 } | |
3129 LABEL_21: | |
3130 if ( v17 ) | |
3131 { | |
3132 v12 = v21; | |
3133 v13 = v23; | |
3134 v19 += 48; | |
3135 v18 += 48; | |
3136 v14 = 1.0 / (*((float *)v6 + 5) + 0.0000001); | |
3137 ++v20; | |
3138 v25 += 48; | |
3139 v24 += 48; | |
3140 v22 += 48; | |
3141 ++v21; | |
3142 v23 += 48; | |
3143 memcpy(v12, v6 + 8, 0x30u); | |
3144 v4 = v19; | |
3145 v3 = v18; | |
3146 *(float *)v13 = v14; | |
3147 } | |
3148 v2 = v17; | |
3149 v6 += 48; | |
3150 --v16; | |
3151 } | |
3152 while ( v16 ); | |
3153 result = v20; | |
3154 if ( v20 < 3 ) | |
3155 return 0; | |
3156 return result; | |
3157 } |