Mercurial > mm7
annotate mm7_2.cpp @ 1944:02bc0fac639f
fixing inventory right click crash
author | Grumpy7 |
---|---|
date | Fri, 25 Oct 2013 00:51:32 -0700 |
parents | 1cbfb6e50e48 |
children | 7fd4bfa175fd |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
4 |
0 | 5 #include <io.h> |
6 #include <direct.h> | |
1545 | 7 |
8 #include "OSAPI.h" | |
1016 | 9 |
1262 | 10 #include "Texture.h" |
11 #include "mm7_data.h" | |
1016 | 12 #include "VideoPlayer.h" |
13 #include "Sprites.h" | |
14 #include "BSPModel.h" | |
15 | |
16 #include "LightmapBuilder.h" | |
17 #include "DecalBuilder.h" | |
18 #include "ParticleEngine.h" | |
19 #include "Mouse.h" | |
20 #include "Keyboard.h" | |
21 #include "CShow.h" | |
22 #include "GammaControl.h" | |
23 #include "stru6.h" | |
24 | |
1935 | 25 #include "Actor.h" |
1016 | 26 #include "Vis.h" |
0 | 27 #include "MapInfo.h" |
28 #include "Game.h" | |
29 #include "GUIWindow.h" | |
30 #include "GUIFont.h" | |
31 #include "Party.h" | |
32 #include "AudioPlayer.h" | |
33 #include "Outdoor.h" | |
1637 | 34 #include "Outdoor_stuff.h" |
0 | 35 #include "Overlays.h" |
36 #include "Arcomage.h" | |
37 #include "LOD.h" | |
38 #include "Actor.h" | |
39 #include "Events.h" | |
40 #include "Viewport.h" | |
41 #include "FrameTableInc.h" | |
42 #include "Math.h" | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
43 #include "SpriteObject.h" |
0 | 44 #include "ObjectList.h" |
45 #include "Chest.h" | |
46 #include "PaletteManager.h" | |
47 #include "DecorationList.h" | |
48 #include "SaveLoad.h" | |
49 #include "stru123.h" | |
522 | 50 #include "stru176.h" |
0 | 51 #include "Time.h" |
52 #include "IconFrameTable.h" | |
53 #include "GUIProgressBar.h" | |
54 #include "Bink_Smacker.h" | |
55 #include "PlayerFrameTable.h" | |
56 #include "TurnEngine.h" | |
57 #include "FactionTable.h" | |
58 #include "StorylineTextTable.h" | |
59 #include "Random.h" | |
924 | 60 #include "CastSpellInfo.h" |
0 | 61 #include "stru298.h" |
62 #include "Events2D.h" | |
63 #include "Log.h" | |
1299 | 64 #include "UI\UIHouses.h" |
189 | 65 #include "texts.h" |
522 | 66 #include "MM7.h" |
1262 | 67 #include "Lights.h" |
1815 | 68 #include "NewUI/MainMenu.h" |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1826
diff
changeset
|
69 #include "Level/Decoration.h" |
0 | 70 |
1913 | 71 int __stdcall aWinProc(HWND hWnd, UINT Msg, WPARAM wParam, unsigned int lParam); |
72 int __stdcall InsertMM7CDDialogFunc(HWND hDlg, int a2, __int16 a3, int a4); | |
73 bool __fastcall FindMM7CD(HWND hWnd, char *pCDDrive); | |
74 bool __fastcall Initialize(HINSTANCE hInst, char *pCmdLine); | |
75 | |
76 //----- (004A1780) mm6_chinese--------------------------------------------- | |
77 __int64 fixpoint_div(int a1, int a2) | |
78 { | |
79 return ((__int64)a1 << 16) / a2; | |
80 } | |
81 | |
82 __int64 fixpoint_sub_unknown(int a1, int a2) | |
83 { | |
84 return (((__int64)a1 << 16) * a2) >> 16; | |
85 } | |
86 | |
87 //----- (0042EBBE) -------------------------------------------------------- | |
88 //----- (004453C0) mm6----------------------------------------------------- | |
89 //----- (004A1760) mm6_chinese--------------------------------------------- | |
90 __int64 fixpoint_mul(int a1, int a2) | |
91 { | |
92 return ((__int64)a1 * (__int64)a2) >> 16; | |
93 } | |
94 | |
95 __int64 fixpoint_dot(int x1, int x2, int y1, int y2, int z1, int z2) | |
96 { | |
97 return fixpoint_mul(x1, x2) + | |
98 fixpoint_mul(y1, y2) + | |
99 fixpoint_mul(z1, z2); | |
100 } | |
101 | |
0 | 102 //----- (004BB756) -------------------------------------------------------- |
1413 | 103 int UseNPCSkill(NPCProf profession) |
0 | 104 { |
1413 | 105 switch (profession) |
106 { | |
107 case Healer: | |
108 { | |
109 for (int i = 0; i < 4; ++i) | |
110 pParty->pPlayers[i].sHealth = pParty->pPlayers[i].GetMaxHealth(); | |
111 } | |
112 break; | |
113 | |
114 case ExpertHealer: | |
115 { | |
116 for (int i = 0; i < 4; ++i) | |
117 { | |
118 auto player = &pParty->pPlayers[i]; | |
119 player->sHealth = player->GetMaxHealth(); | |
120 | |
121 for (int j = 0; j < 14; ++j) | |
122 player->pConditions[i] = 0; | |
123 player->pConditions[18] = 0; | |
124 } | |
125 } | |
126 break; | |
127 | |
128 case MasterHealer: | |
129 { | |
130 for (int i = 0; i < 4; ++i) | |
131 { | |
132 auto player = &pParty->pPlayers[i]; | |
133 player->sHealth = player->GetMaxHealth(); | |
134 | |
135 auto v5 = LODWORD(player->pConditions[19]);//*((int *)v4 - 32); | |
136 auto v6 = HIDWORD(player->pConditions[19]);//*((int *)v4 - 31); | |
1826 | 137 memset(player->pConditions.data(), 0, 0xA0u); |
1413 | 138 |
139 __debugbreak(); | |
140 *(int *)&player->pActiveSkills[8] = v5; | |
141 *(int *)&player->pActiveSkills[10] = v6; | |
142 } | |
143 } | |
144 break; | |
145 | |
146 case Cook: | |
147 { | |
148 if (pParty->uNumFoodRations >= 13) | |
149 return 1; | |
150 | |
151 Party::GiveFood(1); | |
152 } | |
153 break; | |
154 | |
155 case Chef: | |
156 { | |
157 if (pParty->uNumFoodRations >= 13) | |
158 return 1; | |
159 | |
160 if (pParty->uNumFoodRations == 13) | |
161 Party::GiveFood(1); | |
162 else | |
163 Party::GiveFood(2); | |
164 } | |
165 break; | |
166 | |
167 case WindMaster: | |
0 | 168 { |
1413 | 169 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) |
170 { | |
171 ShowStatusBarString(pGlobalTXT_LocalizationStrings[494], 2); | |
172 pAudioPlayer->PlaySound(SOUND_203, 0, 0, -1, 0, 0, 0, 0); | |
173 } | |
174 else | |
175 { | |
176 auto v19 = pOtherOverlayList->_4418B1(10008, 203, 0, 65536); | |
177 pParty->pPartyBuffs[PARTY_BUFF_FLY].Apply(pParty->uTimePlayed + 60 * (256 * 2), 3, 1, v19, 0); | |
178 pParty->pPartyBuffs[PARTY_BUFF_FLY].uFlags |= 1u; | |
179 pAudioPlayer->PlaySound(SOUND_11090, 0, 0, -1, 0, 0, 0, 0); | |
180 } | |
181 } | |
182 break; | |
183 | |
184 case WaterMaster: | |
185 { | |
186 auto v20 = pOtherOverlayList->_4418B1(10005, 201, 0, 65536); | |
187 pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].Apply(pParty->uTimePlayed + 60 * (256 * (2 + 1)), 3, 0, v20, 0); | |
188 pParty->pPartyBuffs[PARTY_BUFF_WATER_WALK].uFlags |= 1u; | |
189 pAudioPlayer->PlaySound(SOUND_12040, 0, 0, -1, 0, 0, 0, 0); | |
190 } | |
191 break; | |
192 | |
193 case GateMaster: | |
194 { | |
195 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
196 dword_50C9DC = 195; | |
197 ptr_50C9E0 = GetNPCData(sDialogue_SpeakingActorNPC_ID); | |
198 } | |
199 break; | |
200 | |
201 case Acolyte: _42777D_CastSpell_UseWand_ShootArrow(46, 0, 133, 0, 0); break; | |
202 case Piper: _42777D_CastSpell_UseWand_ShootArrow(51, 0, 133, 0, 0); break; | |
203 case FallenWizard: _42777D_CastSpell_UseWand_ShootArrow(86, 0, 133, 0, 0); break; | |
204 | |
205 case Teacher: | |
206 case Instructor: | |
207 case Armsmaster: | |
208 case Weaponsmaster: | |
209 case Apprentice: | |
210 case Mystic: | |
211 case Spellmaster: | |
212 case Trader: | |
213 case Merchant: | |
214 case Scout: | |
215 case Herbalist: | |
216 case Apothecary: | |
217 case Tinker: | |
218 case Locksmith: | |
219 case Fool: | |
220 case ChimneySweep: | |
221 case Porter: | |
222 case QuarterMaster: | |
223 case Factor: | |
224 case Banker: | |
225 case Horseman: | |
226 case Bard: | |
227 case Enchanter: | |
228 case Cartographer: | |
229 case Explorer: | |
230 case Pirate: | |
231 case Squire: | |
232 case Psychic: | |
233 case Gypsy: | |
234 case Diplomat: | |
235 case Duper: | |
236 case Burglar: | |
237 case Acolyte2: | |
238 case Initiate: | |
239 case Prelate: | |
240 case Monk: | |
241 case Sage: | |
242 case Hunter: | |
243 break; | |
244 | |
245 default: | |
246 assert(false && "Invalid enum value"); | |
247 } | |
248 return 0; | |
0 | 249 } |
250 | |
251 //----- (004BBA85) -------------------------------------------------------- | |
1529 | 252 void CheckBountyRespawnAndAward() |
0 | 253 { |
254 int i; // eax@2 | |
1529 | 255 int rand_monster_id; // edx@3 |
0 | 256 |
257 uDialogueType = 83; | |
258 pDialogueWindow->Release(); | |
259 pDialogueWindow = GUIWindow::Create(0, 0, 640, 350, WINDOW_MainMenu, 0, 0); | |
1529 | 260 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],// "Cancel" |
945 | 261 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
832 | 262 pDialogueWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0); |
1529 | 263 pDialogueWindow->CreateButton(480, 160, 140, 30, 1, 0, UIMSG_0, 83, 0, "", 0); |
972 | 264 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2); |
747 | 265 dialog_menu_id = HOUSE_DIALOGUE_OTHER; |
1529 | 266 //get new monster for hunting |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1736
diff
changeset
|
267 if ( pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] < (signed __int64)pParty->uTimePlayed ) |
1529 | 268 { |
269 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false; | |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1736
diff
changeset
|
270 pParty->PartyTimes.bountyHunting_next_generation_time[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = (signed __int64)((double)(0x12750000 * (pParty->uCurrentMonth + 12i64 * pParty->uCurrentYear - 14015)) * 0.033333335); |
0 | 271 for ( i = rand(); ; i = rand() ) |
272 { | |
1529 | 273 rand_monster_id = i % 258 + 1; |
274 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = rand_monster_id; | |
275 if ( (unsigned __int16)rand_monster_id < 0x73u || (unsigned __int16)rand_monster_id > 0x84u ) | |
0 | 276 { |
1529 | 277 if ( ((unsigned __int16)rand_monster_id < 0xEBu || (unsigned __int16)rand_monster_id > 0xFCu) |
278 && ((unsigned __int16)rand_monster_id < 0x85u || (unsigned __int16)rand_monster_id > 0x96u) | |
279 && ((unsigned __int16)rand_monster_id < 0x97u || (unsigned __int16)rand_monster_id > 0xBAu) | |
280 && ((unsigned __int16)rand_monster_id < 0xC4u || (unsigned __int16)rand_monster_id > 0xC6u) ) | |
0 | 281 break; |
282 } | |
283 } | |
284 } | |
1529 | 285 bountyHunting_monster_id_for_hunting = pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]; |
286 if ( !pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] ) | |
287 { | |
288 bountyHunting_text = pNPCTopics[351].pText; | |
289 if ( !pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] ) | |
290 bountyHunting_text = pNPCTopics[353].pText; | |
291 } | |
292 else//get prize | |
293 { | |
294 if ( pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] ) | |
0 | 295 { |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1826
diff
changeset
|
296 pParty->PartyFindsGold(100 * pMonsterStats->pInfos[(unsigned __int16)pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel, 0); |
1529 | 297 for ( uint i = 0; i < 4; ++i ) |
298 pParty->pPlayers[i].SetVariable(VAR_Award, 86); | |
299 pParty->uNumBountiesCollected += 100 * pMonsterStats->pInfos[pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)]].uLevel; | |
300 pParty->monster_id_for_hunting[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = 0; | |
301 pParty->monster_for_hunting_killed[(int)((char *)window_SpeakInHouse->ptr_1C - 102)] = false; | |
0 | 302 } |
1529 | 303 bountyHunting_text = pNPCTopics[352].pText; |
304 } | |
0 | 305 } |
306 | |
307 //----- (004BBCDD) -------------------------------------------------------- | |
1914 | 308 void Arena_SelectionFightLevel() |
0 | 309 { |
310 signed int v0; // ebp@3 | |
90 | 311 Actor *v1; // eax@4 |
0 | 312 __int16 v2; // cx@5 |
313 int v3; // esi@8 | |
314 Player *v4; // esi@14 | |
315 GUIButton *v5; // eax@18 | |
316 GUIButton *v6; // esi@19 | |
317 size_t v7; // [sp+10h] [bp-4h]@4 | |
318 | |
319 if ( pParty->field_7B5_in_arena_quest ) | |
320 { | |
321 if ( pParty->field_7B5_in_arena_quest == -1 ) | |
322 { | |
323 uDialogueType = 92; | |
324 } | |
325 else | |
326 { | |
327 v0 = 0; | |
90 | 328 if ( (signed int)uNumActors > 0 ) |
329 { | |
1202 | 330 v1 = pActors.data();//[0].uAIState; |
90 | 331 v7 = uNumActors; |
332 do | |
333 { | |
334 v2 = v1->uAIState; | |
848 | 335 if ( v1->uAIState == Dead || v2 == Removed || v2 == Disabled || (v3 = v1->uSummonerID) != 0 && PID_TYPE(v3) == OBJECT_Player) |
90 | 336 ++v0; |
337 ++v1; | |
338 --v7; | |
339 } | |
340 while ( v7 ); | |
341 } | |
342 if ( v0 >= (signed int)uNumActors || (signed int)uNumActors <= 0) | |
343 { | |
0 | 344 uDialogueType = 91; |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
345 v4 = pParty->pPlayers.data(); |
1529 | 346 ++*((char *)&pParty->monster_for_hunting_killed[3] + (unsigned __int8)pParty->field_7B5_in_arena_quest + 1); |
0 | 347 do |
348 { | |
349 v4->SetVariable(VAR_Award, (unsigned __int8)pParty->field_7B5_in_arena_quest + 3); | |
350 ++v4; | |
351 } | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
352 while ( (signed int)v4 < (signed int)pParty->pHirelings.data() ); |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1826
diff
changeset
|
353 pParty->PartyFindsGold(gold_transaction_amount, 0); |
0 | 354 pAudioPlayer->PlaySound((SoundID)14060, 0, 0, -1, 0, 0, 0, 0); |
355 pParty->field_7B5_in_arena_quest = -1; | |
356 } | |
357 else | |
358 { | |
359 uDialogueType = 90; | |
360 pParty->vPosition.x = 3849; | |
361 pParty->vPosition.y = 5770; | |
362 pParty->vPosition.z = 1; | |
363 pParty->uFallStartY = 1; | |
364 pParty->sRotationY = 512; | |
365 pParty->sRotationX = 0; | |
366 pParty->uFallSpeed = 0; | |
367 pAudioPlayer->PlaySound((SoundID)14060, 0, 0, -1, 0, 0, 0, 0); | |
368 } | |
369 } | |
370 } | |
371 else | |
372 { | |
373 uDialogueType = 89; | |
374 v5 = pDialogueWindow->pControlsHead; | |
375 if ( v5 ) | |
376 { | |
377 do | |
378 { | |
379 v6 = v5->pNext; | |
1583 | 380 free(v5); |
0 | 381 v5 = v6; |
382 } | |
383 while ( v6 ); | |
384 } | |
385 pDialogueWindow->pControlsHead = 0; | |
386 pDialogueWindow->pControlsTail = 0; | |
387 pDialogueWindow->uNumControls = 0; | |
832 | 388 pBtn_ExitCancel = pDialogueWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], |
945 | 389 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
832 | 390 pDialogueWindow->CreateButton(0x1E0u, 0xA0u, 0x8Cu, 0x1Eu, 1, 0, UIMSG_SelectNPCDialogueOption, 0x55u, 0, "", 0); |
391 pDialogueWindow->CreateButton(0x1E0u, 0xBEu, 0x8Cu, 0x1Eu, 1, 0, UIMSG_SelectNPCDialogueOption, 0x56u, 0, "", 0); | |
392 pDialogueWindow->CreateButton(0x1E0u, 0xDCu, 0x8Cu, 0x1Eu, 1, 0, UIMSG_SelectNPCDialogueOption, 0x57u, 0, "", 0); | |
393 pDialogueWindow->CreateButton(0x1E0u, 0xFAu, 0x8Cu, 0x1Eu, 1, 0, UIMSG_SelectNPCDialogueOption, 0x58u, 0, "", 0); | |
972 | 394 pDialogueWindow->_41D08F_set_keyboard_control_group(4, 1, 0, 1); |
0 | 395 } |
396 } | |
397 | |
398 //----- (004BC109) -------------------------------------------------------- | |
1458 | 399 void ArenaFight() |
0 | 400 { |
401 int v0; // edi@1 | |
402 char *v1; // eax@7 | |
403 Player *v2; // edi@9 | |
404 int v3; // eax@10 | |
405 signed int v4; // esi@10 | |
406 signed __int64 v5; // qax@18 | |
407 signed int v6; // ebx@34 | |
408 char *v7; // edi@34 | |
409 int v8; // eax@37 | |
410 int v9; // esi@43 | |
411 int v10; // eax@44 | |
412 unsigned __int8 v11; // sf@44 | |
413 unsigned __int8 v12; // of@44 | |
414 signed int v13; // eax@49 | |
415 int v14; // esi@49 | |
416 int v15; // edx@50 | |
417 int v16; // eax@51 | |
418 signed int v17; // ecx@51 | |
419 int v18; // edx@53 | |
420 int i; // edi@55 | |
421 int monster_y; // ST18_4@56 | |
422 int v21; // eax@56 | |
423 signed int v22; // [sp-4h] [bp-144h]@51 | |
424 __int16 v23[100]; // [sp+Ch] [bp-134h]@39 | |
425 GUIWindow window; // [sp+D4h] [bp-6Ch]@1 | |
426 __int16 monster_ids[6]; // [sp+128h] [bp-18h]@56 | |
427 int v26; // [sp+134h] [bp-Ch]@1 | |
428 int v27; // [sp+138h] [bp-8h]@23 | |
429 int num_monsters; // [sp+13Ch] [bp-4h]@17 | |
430 | |
431 v26 = 0; | |
432 pParty->field_7B5_in_arena_quest = uDialogueType; | |
433 memcpy(&window, pDialogueWindow, sizeof(window)); | |
819 | 434 window.uFrameWidth = game_viewport_width; |
0 | 435 window.uFrameZ = 452; |
436 v0 = pFontArrus->CalcTextHeight(pGlobalTXT_LocalizationStrings[575], &window, 13, 0) + 7; | |
437 pRenderer->BeginSceneD3D(); | |
438 | |
439 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
440 pIndoor->Draw(); | |
441 else if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
442 pOutdoor->Draw(); | |
443 | |
444 pRenderer->DrawBillboards_And_MaybeRenderSpecialEffects_And_EndScene(); | |
445 pRenderer->BeginScene(); | |
446 if ( pRenderer->pRenderD3D ) | |
447 pRenderer->FillRectFast( | |
693 | 448 pViewport->uViewportTL_X, |
449 pViewport->uViewportTL_Y, | |
450 pViewport->uViewportBR_X - pViewport->uViewportTL_X, | |
451 pViewport->uViewportBR_Y - pViewport->uViewportTL_Y + 1, | |
0 | 452 pRenderer->uTargetGMask | pRenderer->uTargetBMask); |
453 | |
945 | 454 auto pTex = pIcons_LOD->GetTexture(uTextureID_Leather); |
1496 | 455 pRenderer->GetLeather(8, 352 - v0, pTex, pTex->uTextureHeight - v0); |
0 | 456 |
457 pRenderer->DrawTextureIndexed(8u, 347 - v0, pTexture_591428); | |
458 v1 = FitTextInAWindow(pGlobalTXT_LocalizationStrings[575], pFontArrus, &window, 0xDu, 0); | |
459 pDialogueWindow->DrawText(pFontArrus, 13, 354 - v0, 0, v1, 0, 0, 0); | |
460 pRenderer->EndScene(); | |
461 pRenderer->Present(); | |
462 pParty->vPosition.x = 3849; | |
463 pParty->vPosition.y = 5770; | |
464 pParty->vPosition.z = 1; | |
465 pParty->uFallStartY = 1; | |
466 pParty->sRotationY = 512; | |
467 pParty->sRotationX = 0; | |
468 pParty->uFallSpeed = 0; | |
437 | 469 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 ) |
0 | 470 { |
990 | 471 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_Escape; |
0 | 472 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 1; |
473 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0; | |
474 ++pMessageQueue_50CBD0->uNumMessages; | |
437 | 475 }*/ |
476 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 1, 0); | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
477 v2 = pParty->pPlayers.data(); |
0 | 478 do |
479 { | |
480 v3 = v2->GetActualLevel(); | |
481 v4 = v26; | |
482 if ( v3 > v26 ) | |
483 { | |
484 v26 = v2->GetActualLevel(); | |
485 v4 = v26; | |
486 } | |
487 ++v2; | |
488 } | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
489 while ( (signed int)v2 < (signed int)pParty->pHirelings.data() ); |
0 | 490 if ( uDialogueType == 85 ) |
491 { | |
492 num_monsters = v4; | |
1416 | 493 v4 /= 2; |
494 } | |
495 else if ( uDialogueType == 86 ) | |
0 | 496 { |
497 v5 = (signed __int64)((double)v26 * 1.5); | |
1416 | 498 num_monsters = v5; |
499 v4 /= 2; | |
500 } | |
501 else if ( uDialogueType == 87 ) | |
0 | 502 { |
503 LODWORD(v5) = 2 * v4; | |
504 num_monsters = v5; | |
505 v4 /= 2; | |
1416 | 506 } |
0 | 507 else |
1416 | 508 { |
509 __debugbreak(); // warning C4700: uninitialized local variable 'v27' used | |
510 if ( uDialogueType == 88 ) | |
511 num_monsters = 2 * v4; | |
512 else | |
513 v4 = v27; | |
514 } | |
0 | 515 if ( v4 < 1 ) |
516 v4 = 1; | |
517 if ( v4 > 100 ) | |
518 v4 = 100; | |
519 if ( num_monsters > 100 ) | |
520 num_monsters = 100; | |
521 if ( v4 < 2 ) | |
522 v4 = 2; | |
523 if ( num_monsters < 2 ) | |
524 num_monsters = 2; | |
525 v6 = 0; | |
526 v27 = 1; | |
527 v7 = (char *)&pMonsterStats->pInfos[1].uLevel; | |
528 do | |
529 { | |
530 if ( v7[8] != 1 ) | |
531 { | |
532 if ( !MonsterStats::BelongsToSupertype(*((short *)v7 + 22), MONSTER_SUPERTYPE_8) ) | |
533 { | |
534 v8 = (unsigned __int8)*v7; | |
535 if ( v8 >= v4 ) | |
536 { | |
537 if ( v8 <= num_monsters ) | |
538 v23[v6++] = v27; | |
539 } | |
540 } | |
541 } | |
542 ++v27; | |
543 v7 += 88; | |
544 } | |
545 while ( (signed int)v7 <= (signed int)&pMonsterStats->pInfos[258].uLevel ); | |
546 num_monsters = 6; | |
547 if ( v6 < 6 ) | |
548 num_monsters = v6; | |
549 v9 = 0; | |
550 if ( num_monsters > 0 ) | |
551 { | |
552 do | |
553 { | |
554 v10 = rand(); | |
555 ++v9; | |
556 v12 = __OFSUB__(v9, num_monsters); | |
557 v11 = v9 - num_monsters < 0; | |
558 *((short *)&window.pControlsTail + v9 + 1) = v23[v10 % v6]; | |
559 } | |
560 while ( v11 ^ v12 ); | |
561 } | |
562 if ( uDialogueType == 85 ) | |
563 { | |
564 v16 = rand(); | |
565 v17 = 3; | |
566 v22 = 50; | |
1416 | 567 v18 = v16 % v17; |
568 v13 = v22; | |
569 v14 = v18 + 6; | |
570 } | |
571 else if ( uDialogueType == 86 ) | |
0 | 572 { |
573 v16 = rand(); | |
574 v17 = 7; | |
575 v22 = 100; | |
576 v18 = v16 % v17; | |
577 v13 = v22; | |
578 v14 = v18 + 6; | |
1416 | 579 } |
580 else if ( uDialogueType == 87 ) | |
0 | 581 { |
582 v15 = rand() % 11; | |
583 v13 = 200; | |
584 v14 = v15 + 10; | |
585 } | |
586 else | |
587 { | |
588 if ( uDialogueType == 88 ) | |
589 { | |
590 v13 = 500; | |
591 v14 = 20; | |
592 } | |
593 else | |
594 { | |
595 v14 = v27; | |
267 | 596 v13 = gold_transaction_amount; |
0 | 597 } |
598 } | |
599 i = 0; | |
267 | 600 for ( gold_transaction_amount = v26 * v13; i < v14; ++i ) |
0 | 601 { |
602 monster_y = pMonsterArenaPlacements[i].y; | |
603 v21 = rand(); | |
1935 | 604 Actor::_4BBF61_summon_actor((unsigned __int16)monster_ids[v21 % num_monsters], pMonsterArenaPlacements[i].x, monster_y, 1); |
0 | 605 } |
606 pAudioPlayer->PlaySound((SoundID)14060, 0, 0, -1, 0, 0, 0, 0); | |
607 } | |
608 | |
609 //----- (004BD8B5) -------------------------------------------------------- | |
1919 | 610 int HouseDialogPressCloseBtn() |
0 | 611 { |
612 if ( pMessageQueue_50CBD0->uNumMessages ) | |
613 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
1459 | 614 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_CANCELLED); |
0 | 615 pKeyActionMap->ResetKeys(); |
520
35f28d4c0ff9
GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents:
519
diff
changeset
|
616 activeLevelDecoration = NULL; |
827 | 617 current_npc_text = 0; |
1917 | 618 if ( pDialogueNPCCount == 0) |
1919 | 619 return 0; |
620 | |
621 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL && ShopTexture ) | |
0 | 622 { |
1919 | 623 ShopTexture->Release(); |
1917 | 624 ShopTexture = 0; |
625 } | |
626 | |
1919 | 627 switch(dialog_menu_id) |
1917 | 628 { |
1919 | 629 case -1: |
630 _4B4224_UpdateNPCTopics((int)((char *)pDialogueNPCCount - 1)); | |
631 pVideoPlayer->_4BF5B2(); | |
632 break; | |
633 | |
634 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT: | |
635 case HOUSE_DIALOGUE_LEARN_SKILLS: | |
636 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN: | |
637 pVideoPlayer->_4BF5B2(); | |
638 UI_CreateEndConversationButton(); | |
639 dialog_menu_id = HOUSE_DIALOGUE_MAIN; | |
640 InitializaDialogueOptions(in_current_building_type); | |
641 break; | |
642 | |
643 case HOUSE_DIALOGUE_SHOP_SELL: | |
644 case HOUSE_DIALOGUE_SHOP_IDENTIFY: | |
645 case HOUSE_DIALOGUE_SHOP_REPAIR: | |
646 UI_CreateEndConversationButton(); | |
647 dialog_menu_id = HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT; | |
648 InitializaDialogueOptions_Shops(in_current_building_type); | |
649 break; | |
650 | |
651 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RULES: | |
652 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_VICTORY_CONDITIONS: | |
653 case HOUSE_DIALOGUE_TAVERN_ARCOMAGE_RESULT: | |
654 pVideoPlayer->_4BF5B2(); | |
655 UI_CreateEndConversationButton(); | |
656 dialog_menu_id = HOUSE_DIALOGUE_TAVERN_ARCOMAGE_MAIN; | |
657 InitializaDialogueOptions_Tavern(in_current_building_type); | |
658 break; | |
659 | |
660 case HOUSE_DIALOGUE_NULL: | |
661 case HOUSE_DIALOGUE_MAIN: | |
662 pDialogueNPCCount = 0; | |
663 pDialogueWindow->Release(); | |
664 dialog_menu_id = HOUSE_DIALOGUE_NULL; | |
665 pDialogueWindow = 0; | |
666 pIcons_LOD->SyncLoadedFilesCount(); | |
667 | |
668 if ( uNumDialogueNPCPortraits == 1 ) | |
669 return 0; | |
670 | |
671 pBtn_ExitCancel = window_SpeakInHouse->pControlsHead; | |
672 if ( uNumDialogueNPCPortraits > 0 ) | |
673 { | |
674 for ( uint i = 0; i < (unsigned int)uNumDialogueNPCPortraits; ++i ) | |
675 { | |
676 HouseNPCPortraitsButtonsList[i] = window_SpeakInHouse->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][i], | |
677 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][i], | |
678 63, 73, 1, 0, UIMSG_ClickHouseNPCPortrait, i, 0, byte_591180[i].data(), 0, 0, 0); | |
679 } | |
680 } | |
681 | |
682 pVideoPlayer->_4BF5B2(); | |
683 break; | |
684 | |
685 default: | |
686 pVideoPlayer->_4BF5B2(); | |
687 dialog_menu_id = HOUSE_DIALOGUE_MAIN; | |
688 InitializaDialogueOptions(in_current_building_type); | |
689 break; | |
0 | 690 } |
1917 | 691 return 1; |
0 | 692 } |
693 | |
694 //----- (004BF91E) -------------------------------------------------------- | |
1458 | 695 unsigned int GameOverMenu(void *ecx0) |
0 | 696 { |
1838 | 697 const char *v1; // eax@2 |
0 | 698 unsigned int result; // eax@3 |
89 | 699 Player *v3; // eax@7 |
1838 | 700 const char *v4; // ST24_4@9 |
0 | 701 int v5; // eax@9 |
1838 | 702 const char *v6; // eax@10 |
703 const char *v7; // edx@10 | |
704 const char *v8; // ecx@12 | |
705 const char *v9; // eax@14 | |
0 | 706 unsigned int v10; // eax@25 |
707 GUIWindow pWindow; // [sp+34h] [bp-9Ch]@1 | |
1532 | 708 //MSG Msg; // [sp+88h] [bp-48h]@22 |
0 | 709 unsigned int v14; // [sp+A4h] [bp-2Ch]@5 |
710 void *v15; // [sp+A8h] [bp-28h]@1 | |
1838 | 711 const char *pInString; // [sp+ACh] [bp-24h]@5 |
0 | 712 unsigned int v17; // [sp+B0h] [bp-20h]@5 |
713 unsigned int v18; // [sp+B4h] [bp-1Ch]@5 | |
714 unsigned int v19; // [sp+B8h] [bp-18h]@5 | |
715 int v20; // [sp+BCh] [bp-14h]@7 | |
89 | 716 Player *i; // [sp+C0h] [bp-10h]@7 |
0 | 717 GUIFont *pFont; // [sp+C4h] [bp-Ch]@1 |
718 unsigned __int64 v23; // [sp+C8h] [bp-8h]@5 | |
719 | |
720 v15 = ecx0; | |
721 | |
722 RGBTexture _this; // [sp+Ch] [bp-C4h]@1 | |
723 //RGBTexture::RGBTexture(&this); | |
724 | |
725 BYTE1(dword_6BE364_game_settings_1) &= 0xBFu; | |
726 bGameoverLoop = 1; | |
727 pVideoPlayer->bStopBeforeSchedule = 0; | |
728 pAudioPlayer->StopChannels(-1, -1); | |
729 pRenderer->BeginScene(); | |
730 pRenderer->ClearBlack(); | |
731 pRenderer->EndScene(); | |
732 pRenderer->Present(); | |
165 | 733 pVideoPlayer->pResetflag = 0; |
484 | 734 _449B57_test_bit(pParty->_quest_bits, 99); |
0 | 735 _this.Load("winbg.pcx", 2); |
736 pRenderer->BeginScene(); | |
737 pRenderer->DrawTextureRGB(0, 0, &_this); | |
738 pRenderer->EndScene(); | |
739 free(_this.pPixels); | |
740 _this.pPixels = 0; | |
336 | 741 window_SpeakInHouse = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0); |
0 | 742 pWindow.uFrameX = 75; |
743 pWindow.uFrameY = 60; | |
744 pWindow.uFrameWidth = 469; | |
745 pWindow.uFrameHeight = 338; | |
746 pWindow.uFrameZ = 543; | |
747 pWindow.uFrameW = 397; | |
180 | 748 pFont = LoadFont("endgame.fnt", "FONTPAL", NULL); |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1330
diff
changeset
|
749 if ( pParty->IsPartyGood() ) |
0 | 750 { |
751 v1 = pGlobalTXT_LocalizationStrings[675]; | |
752 } | |
753 else | |
754 { | |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1330
diff
changeset
|
755 result = pParty->IsPartyEvil(); |
0 | 756 if ( !(short)result ) |
757 return result; | |
758 v1 = pGlobalTXT_LocalizationStrings[676]; | |
759 } | |
760 pInString = v1; | |
761 v23 = pParty->uTimePlayed - 138240; | |
762 v19 = (unsigned int)((signed __int64)((double)(pParty->uTimePlayed - 138240) * 0.234375) / 60 / 60) / 0x18; | |
763 v14 = (unsigned int)((signed __int64)((double)(pParty->uTimePlayed - 138240) * 0.234375) / 60 / 60) / 0x18 / 0x1C / 0xC; | |
764 v18 = (unsigned int)((signed __int64)((double)(pParty->uTimePlayed - 138240) * 0.234375) / 60 / 60) / 0x18 / 0x1C % 0xC; | |
765 v17 = v19 % 0x1C; | |
766 if ( !v19 ) | |
767 v19 = 1; | |
768 pRenderer->BeginScene(); | |
769 pWindow.DrawTitleText(pFont, 1u, 0x23u, 1u, pGlobalTXT_LocalizationStrings[9], 3u); | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
770 v3 = pParty->pPlayers.data();//[0].pName; |
0 | 771 v23 = 0i64; |
772 v20 = 0; | |
89 | 773 //for ( i = (int)pParty->pPlayers[0].pName; ; v3 = (char *)i ) |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1842
diff
changeset
|
774 for ( i = pParty->pPlayers.data(); ; v3 = i ) |
89 | 775 { |
135 | 776 v4 = pClassNames[v3->classType]; |
89 | 777 v5 = v3->GetBaseLevel(); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
778 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[129], i->pName, v5, v4); |
0 | 779 pWindow.DrawTitleText( |
780 pFont, | |
781 1u, | |
782 v20 * (LOBYTE(pFont->uFontHeight) - 2) + LOBYTE(pFont->uFontHeight) + 46, | |
783 1u, | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
784 pTmpBuf.data(), |
0 | 785 3u); |
89 | 786 v23 += i->uExperience;//__PAIR__(*(int *)(i - 4), *(int *)(i - 8)); |
0 | 787 ++v20; |
89 | 788 ++i; |
789 if ( i > &pParty->pPlayers[3] ) | |
0 | 790 break; |
791 } | |
792 v23 = (signed __int64)v23 / v19; | |
793 v6 = FitTextInAWindow(pInString, pFont, &pWindow, 0xCu, 0); | |
794 pWindow.DrawTitleText(pFont, 1u, 5 * (LOBYTE(pFont->uFontHeight) + 11), 1u, v6, 0); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
795 strcpy(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[37]); |
0 | 796 v7 = pGlobalTXT_LocalizationStrings[56]; |
797 if ( v17 != 1 ) | |
798 v7 = pGlobalTXT_LocalizationStrings[57]; | |
799 v8 = pGlobalTXT_LocalizationStrings[146]; | |
800 if ( v18 != 1 ) | |
801 v8 = pGlobalTXT_LocalizationStrings[148]; | |
802 v9 = pGlobalTXT_LocalizationStrings[245]; | |
803 if ( v14 != 1 ) | |
804 v9 = pGlobalTXT_LocalizationStrings[132]; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
805 sprintf(pTmpBuf2.data(), " %lu %s, %lu %s, %lu %s ", v14, v9, v18, v8, v17, v7); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
806 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
807 pWindow.DrawTitleText(pFont, 1u, pWindow.uFrameHeight - 2 * LOBYTE(pFont->uFontHeight) - 5, 1u, pTmpBuf.data(), 3u); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
808 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[94], v23); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
809 pWindow.DrawTitleText(pFont, 1u, pWindow.uFrameHeight, 1u, pTmpBuf.data(), 3u); |
0 | 810 BYTE1(dword_6BE364_game_settings_1) |= 0x40u; |
811 pRenderer->EndScene(); | |
812 pRenderer->Present(); | |
813 if ( pRenderer->pRenderD3D ) | |
814 pRenderer->pBeforePresentFunction(); | |
815 pRenderer->_49F1BC("MM7_Win.Pcx"); | |
1583 | 816 free(pFont); |
336 | 817 window_SpeakInHouse->Release(); |
818 window_SpeakInHouse = 0; | |
0 | 819 if ( v15 == (void *)2 ) |
820 { | |
821 result = pMessageQueue_50CBD0->uNumMessages; | |
822 } | |
823 else | |
824 { | |
825 LODWORD(v23) = GetTickCount() + 5000; | |
826 while ( (unsigned int)v23 > GetTickCount() ) | |
827 ; | |
1532 | 828 for (MSG msg; PeekMessage(&msg, 0, 0, 0, PM_REMOVE);) |
0 | 829 { |
1532 | 830 if (msg.message == WM_QUIT) |
0 | 831 Game_DeinitializeAndTerminate(0); |
1532 | 832 TranslateMessage(&msg); |
833 DispatchMessage(&msg); | |
0 | 834 } |
835 if ( pMessageQueue_50CBD0->uNumMessages ) | |
836 { | |
837 LOBYTE(v10) = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
838 pMessageQueue_50CBD0->uNumMessages = v10; | |
839 } | |
840 pKeyActionMap->ResetKeys(); | |
841 pKeyActionMap->uLastKeyPressed = 0; | |
842 do | |
843 { | |
1532 | 844 for (MSG msg; PeekMessage(&msg, 0, 0, 0, PM_REMOVE);) |
0 | 845 { |
1532 | 846 if (msg.message == WM_QUIT) |
0 | 847 Game_DeinitializeAndTerminate(0); |
1532 | 848 TranslateMessage(&msg); |
849 DispatchMessage(&msg); | |
0 | 850 } |
851 } | |
852 while ( !pKeyActionMap->uLastKeyPressed ); | |
853 result = pMessageQueue_50CBD0->uNumMessages; | |
854 if ( pMessageQueue_50CBD0->uNumMessages ) | |
855 { | |
856 result = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
857 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
858 } | |
859 } | |
860 if ( v15 ) | |
861 { | |
437 | 862 /*if ( (signed int)result < 40 ) |
863 { | |
864 pMessageQueue_50CBD0->pMessages[result].eType = UIMSG_Quit; | |
865 }*/ | |
866 pMessageQueue_50CBD0->AddMessage(UIMSG_Quit, 1, 0); | |
0 | 867 } |
868 else | |
869 { | |
437 | 870 pMessageQueue_50CBD0->AddMessage(UIMSG_ShowFinalWindow, 1, 0); |
871 /*if ( (signed int)result < 40 ) | |
872 { | |
873 pMessageQueue_50CBD0->pMessages[result].eType = UIMSG_C5; | |
0 | 874 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = 1; |
875 result = 3 * pMessageQueue_50CBD0->uNumMessages + 3; | |
876 *(&pMessageQueue_50CBD0->uNumMessages + result) = 0; | |
877 ++pMessageQueue_50CBD0->uNumMessages; | |
437 | 878 }*/ |
0 | 879 } |
880 bGameoverLoop = 0; | |
881 return result; | |
882 } | |
883 | |
1391
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1359
diff
changeset
|
884 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1359
diff
changeset
|
885 |
cc9a3a24d61d
Moved stru11, stru12 and some SW Rendering stuff to the archives.
Nomad
parents:
1359
diff
changeset
|
886 |
0 | 887 //----- (00451007) -------------------------------------------------------- |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
888 int stru350::sub_451007_scale_image_bicubic(unsigned short *pSrc, int srcWidth, int srcHeight, int srcPitch, //changing this to some library function might be a good idea |
0 | 889 unsigned short *pDst, int dstWidth, int dstHeight, int dstPitch, |
890 int a10, int a11) | |
891 { | |
892 int result; // eax@1 | |
893 float v17; // ST3C_4@12 | |
894 float v18; // ST38_4@12 | |
895 unsigned int v19; // esi@12 | |
896 int v21; // eax@18 | |
897 unsigned int v22; // ecx@25 | |
898 unsigned int v23; // eax@29 | |
1146
b4ade2580ae3
sub_451007_scale_image_bicubic cleanup - some variable renaming, code shuffling
Grumpy7
parents:
1145
diff
changeset
|
899 unsigned int heightRatioPlusOne; // [sp+Ch] [bp-7Ch]@12 |
b4ade2580ae3
sub_451007_scale_image_bicubic cleanup - some variable renaming, code shuffling
Grumpy7
parents:
1145
diff
changeset
|
900 unsigned int widthRatio; // [sp+Ch] [bp-7Ch]@218 |
b4ade2580ae3
sub_451007_scale_image_bicubic cleanup - some variable renaming, code shuffling
Grumpy7
parents:
1145
diff
changeset
|
901 unsigned int heightRatio; // [sp+14h] [bp-74h]@12 |
b4ade2580ae3
sub_451007_scale_image_bicubic cleanup - some variable renaming, code shuffling
Grumpy7
parents:
1145
diff
changeset
|
902 unsigned int widthRatioPlusOne; // [sp+14h] [bp-74h]@218 |
0 | 903 int v160; // [sp+3Ch] [bp-4Ch]@13 |
904 unsigned __int16 *v175; // [sp+4Ch] [bp-3Ch]@13 | |
905 unsigned __int16 *v193; // [sp+5Ch] [bp-2Ch]@7 | |
906 signed int v231; // [sp+78h] [bp-10h]@7 | |
907 __int64 v240; // [sp+7Ch] [bp-Ch]@12 | |
908 unsigned int v251; // [sp+80h] [bp-8h]@218 | |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
909 unsigned int v252; // [sp+84h] [bp-4h]@218 |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
910 float a6s; // [sp+A0h] [bp+18h]@218 |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
911 float a6t; // [sp+A0h] [bp+18h]@218 |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
912 unsigned int a6b; // [sp+A0h] [bp+18h]@218 |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
913 int field_0_bits; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
914 int field_20_bits; |
1131
71ba92960bc5
banker's rounding template made as fast as before and a bit more safe
Grumpy7
parents:
1130
diff
changeset
|
915 |
1146
b4ade2580ae3
sub_451007_scale_image_bicubic cleanup - some variable renaming, code shuffling
Grumpy7
parents:
1145
diff
changeset
|
916 int field0value = this->field_0.field_C; |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
917 switch(field0value) |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
918 { |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
919 case 8: field_0_bits = 1; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
920 break; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
921 case 16: field_0_bits = 2; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
922 break; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
923 case 32: field_0_bits = 4; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
924 break; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
925 default: |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
926 return field0value; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
927 } |
1144
f544cd6f7168
sub_451007_scale_image_bicubic cleanup - preparations for further condition body extractions
Grumpy7
parents:
1140
diff
changeset
|
928 int field20value = this->field_20.field_C; |
f544cd6f7168
sub_451007_scale_image_bicubic cleanup - preparations for further condition body extractions
Grumpy7
parents:
1140
diff
changeset
|
929 switch(field20value) |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
930 { |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
931 case 8: field_20_bits = 1; |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
932 break; |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
933 case 16: field_20_bits = 2; |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
934 break; |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
935 case 32: field_20_bits = 4; |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
936 break; |
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
937 default: |
1144
f544cd6f7168
sub_451007_scale_image_bicubic cleanup - preparations for further condition body extractions
Grumpy7
parents:
1140
diff
changeset
|
938 return field20value; |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
939 } |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
940 |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
941 result = (int)pDst; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
942 v193 = pDst; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
943 v231 = 0; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
944 if ( dstHeight <= 0 ) |
1129
9362028fccd1
sub_451007_scale_image_bicubic cleanup - extracting common bodies from conditions
Grumpy7
parents:
1128
diff
changeset
|
945 return result; |
1600
0016b08ab621
stru350::sub_451007_scale_image_bicubic - fixing a memory access bug
Grumpy7
parents:
1546
diff
changeset
|
946 |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
947 do |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
948 { |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
949 for (int counter = 0; counter < dstWidth; counter++) |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
950 { |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
951 a6s = (double)counter / (double)dstWidth * (double)srcWidth; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
952 widthRatio = bankersRounding(a6s); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
953 a6t = (double)(counter + 1) / (double)dstWidth * (double)srcWidth; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
954 widthRatioPlusOne = bankersRounding(a6t); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
955 v17 = (double)v231 / (double)dstHeight * (double)srcHeight; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
956 heightRatio = bankersRounding(v17); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
957 v18 = (double)(v231 + 1) / (double)dstHeight * (double)srcHeight; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
958 heightRatioPlusOne = bankersRounding(v18); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
959 v251 = 0; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
960 v19 = (heightRatioPlusOne - heightRatio) * (widthRatioPlusOne - widthRatio); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
961 v252 = 0; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
962 a6b = 0; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
963 v240 = 0i64; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
964 |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
965 v175 = (unsigned short*)((char *)pSrc + field_0_bits * (widthRatio + srcPitch * heightRatio)); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
966 for (int heightDiff = 0; heightDiff < heightRatioPlusOne - heightRatio; heightDiff++) |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
967 { |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
968 int ratioDiff = widthRatioPlusOne - widthRatio; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
969 for(int i = 0; i < ratioDiff; i++) |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
970 { |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
971 if(field0value == 32) |
1600
0016b08ab621
stru350::sub_451007_scale_image_bicubic - fixing a memory access bug
Grumpy7
parents:
1546
diff
changeset
|
972 v21 = _450FB1(((int*)v175)[i]); |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
973 else if(field0value == 16) |
1600
0016b08ab621
stru350::sub_451007_scale_image_bicubic - fixing a memory access bug
Grumpy7
parents:
1546
diff
changeset
|
974 v21 = _450FB1(((_WORD*)v175)[i]); |
1901 | 975 else if (field0value == 8) |
1600
0016b08ab621
stru350::sub_451007_scale_image_bicubic - fixing a memory access bug
Grumpy7
parents:
1546
diff
changeset
|
976 v21 = _450FB1(((unsigned __int8*)v175)[i]); |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
977 v240 += ((unsigned int)v21 >> 24); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
978 a6b += BYTE2(v21); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
979 v252 += BYTE1(v21); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
980 v251 += (unsigned __int8)v21; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
981 } |
1901 | 982 if (field0value == 32) |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
983 v175 += 2 * srcPitch; |
1901 | 984 else if (field0value == 16) |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
985 v175 += srcPitch; |
1901 | 986 else if (field0value == 8) |
1149
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
987 v175 = (unsigned short*)((char *)v175 + 2 * srcPitch); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
988 } |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
989 v22 = (unsigned int)v240 / ((heightRatioPlusOne - heightRatio) * (widthRatioPlusOne - widthRatio)); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
990 if ( v19 ) |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
991 { |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
992 a6b /= v19; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
993 v252 /= v19; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
994 v251 /= v19; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
995 } |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
996 if ( v22 != 255 ) |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
997 v22 &= 0x7FFFFFFFu; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
998 v23 = _450F55(v251 | ((v252 | ((a6b | (v22 << 8)) << 8)) << 8)); |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
999 *(_DWORD *)v193 = v23; |
05b30ed00d7c
sub_451007_scale_image_bicubic cleanup - changing if+dowhile pair to for
Grumpy7
parents:
1148
diff
changeset
|
1000 v193 = (unsigned __int16 *)((char *)v193 + field_20_bits); |
1148
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1001 } |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1002 v193 = (unsigned __int16 *)((char *)v193 + field_20_bits * (dstPitch - dstWidth)); |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1003 ++v231; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1004 result = v231; |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1005 } |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1006 while(v231 < dstHeight); |
ee6bccef32e8
sub_451007_scale_image_bicubic cleanup - final condition collapsing, remaining labels removed, etc
Grumpy7
parents:
1147
diff
changeset
|
1007 return result; |
0 | 1008 } |
1009 | |
1010 //----- (0044F57C) -------------------------------------------------------- | |
1011 void SpawnEncounter(MapInfo *pMapInfo, SpawnPointMM7 *spawn, int a3, int a4, int a5) | |
1012 { | |
1013 //MapInfo *v5; // esi@1 | |
1014 //SpawnPointMM7 *v6; // ebx@1 | |
1015 int v7; // eax@2 | |
1016 char v8; // zf@5 | |
1017 int v9; // edi@9 | |
1018 int v10; // eax@9 | |
1019 int v11; // ecx@9 | |
1020 int v12; // edx@9 | |
1021 int v13; // eax@9 | |
1022 int v14; // eax@14 | |
1023 int v15; // ecx@14 | |
1024 int v16; // eax@19 | |
1025 int v17; // ecx@19 | |
1026 int v18; // esi@31 | |
1027 //int pPosX; // ecx@32 | |
1028 //int v20; // edx@32 | |
1029 //int v21; // eax@32 | |
1030 Actor *pMonster; // esi@35 | |
1031 int v23; // edx@36 | |
1032 signed int v24; // edi@36 | |
1033 int v25; // ecx@36 | |
1034 unsigned __int16 v26; // ax@47 | |
1035 MonsterDesc *v27; // edi@48 | |
1036 signed int v28; // eax@48 | |
1037 __int16 v29; // cx@50 | |
1038 __int16 v30; // ax@50 | |
1039 __int16 v31; // ax@50 | |
1040 int v32; // eax@50 | |
1041 int v33; // edi@50 | |
1042 int v34; // eax@50 | |
1043 int v35; // eax@50 | |
1044 int v36; // eax@50 | |
1045 int v37; // eax@51 | |
1046 int v38; // eax@52 | |
1047 int v39; // edi@52 | |
1048 std::string v40; // [sp-18h] [bp-100h]@60 | |
1049 void *v41; // [sp-14h] [bp-FCh]@50 | |
1050 //void *v42; // [sp-10h] [bp-F8h]@50 | |
1051 //size_t v43; // [sp-Ch] [bp-F4h]@50 | |
1052 const char *v44; // [sp-8h] [bp-F0h]@13 | |
1053 char *pTexture; // [sp-4h] [bp-ECh]@9 | |
1054 char Str[32]; // [sp+Ch] [bp-DCh]@60 | |
1055 char Str2[120]; // [sp+2Ch] [bp-BCh]@29 | |
1056 unsigned int uFaceID; // [sp+A4h] [bp-44h]@52 | |
1057 MonsterInfo *Src; // [sp+A8h] [bp-40h]@50 | |
1058 int v50; // [sp+ACh] [bp-3Ch]@47 | |
1059 char Source[32]; // [sp+B0h] [bp-38h]@20 | |
1060 int v52; // [sp+D0h] [bp-18h]@34 | |
1061 int v53; // [sp+D4h] [bp-14h]@34 | |
1062 int pSector; // [sp+D8h] [bp-10h]@32 | |
1063 int pPosX; // [sp+DCh] [bp-Ch]@32 | |
1064 int v56; // [sp+E0h] [bp-8h]@8 | |
1065 int v57; // [sp+E4h] [bp-4h]@1 | |
1066 | |
1067 //auto a2 = spawn; | |
1068 v57 = 0; | |
1069 //v5 = pMapInfo; | |
1070 //v6 = spawn; | |
1071 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1072 v7 = pOutdoor->ddm.field_C_alert; | |
1073 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
1074 v7 = pIndoor->dlv.field_C_alert; | |
1075 else | |
1076 v7 = 0; | |
1077 if (v7) | |
1078 v8 = (spawn->uAttributes & 1) == 0; | |
1079 else | |
1080 v8 = (spawn->uAttributes & 1) == 1; | |
1081 if (v8) | |
1082 return; | |
1083 //result = (void *)(spawn->uIndex - 1); | |
1084 v56 = 1; | |
1085 switch (spawn->uIndex - 1) | |
1086 { | |
1087 case 0u: | |
1088 v9 = pMapInfo->uEncounterMonster1AtLeast; | |
1089 v10 = rand(); | |
1090 v11 = pMapInfo->uEncounterMonster1AtMost; | |
1091 pTexture = pMapInfo->pEncounterMonster1Texture; | |
1092 v12 = v10 % (v11 - v9 + 1); | |
237 | 1093 v13 = pMapInfo->Dif_M1; |
1416 | 1094 v57 = v13; |
1095 v56 = v9 + v12; | |
1096 strcpy(Source, pTexture); | |
1097 break; | |
0 | 1098 case 3u: |
1099 pTexture = pMapInfo->pEncounterMonster1Texture; | |
1100 v44 = "%s A"; | |
1416 | 1101 sprintf(Source, v44, pTexture); |
1102 break; | |
0 | 1103 case 4u: |
1104 pTexture = pMapInfo->pEncounterMonster2Texture; | |
1105 v44 = "%s A"; | |
1416 | 1106 sprintf(Source, v44, pTexture); |
1107 break; | |
0 | 1108 case 5u: |
1109 pTexture = pMapInfo->pEncounterMonster3Texture; | |
1110 v44 = "%s A"; | |
1416 | 1111 sprintf(Source, v44, pTexture); |
1112 break; | |
0 | 1113 case 1u: |
1114 v9 = pMapInfo->uEncounterMonster2AtLeast; | |
1115 v14 = rand(); | |
1116 v15 = pMapInfo->uEncounterMonster2AtMost; | |
1117 pTexture = pMapInfo->pEncounterMonster2Texture; | |
1118 v12 = v14 % (v15 - v9 + 1); | |
237 | 1119 v13 = pMapInfo->Dif_M2; |
1416 | 1120 v57 = v13; |
1121 v56 = v9 + v12; | |
1122 strcpy(Source, pTexture); | |
1123 break; | |
0 | 1124 case 6u: |
1125 pTexture = pMapInfo->pEncounterMonster1Texture; | |
1126 v44 = "%s B"; | |
1416 | 1127 sprintf(Source, v44, pTexture); |
1128 break; | |
0 | 1129 case 7u: |
1130 pTexture = pMapInfo->pEncounterMonster2Texture; | |
1131 v44 = "%s B"; | |
1416 | 1132 sprintf(Source, v44, pTexture); |
1133 break; | |
0 | 1134 case 8u: |
1135 pTexture = pMapInfo->pEncounterMonster3Texture; | |
1136 v44 = "%s B"; | |
1416 | 1137 sprintf(Source, v44, pTexture); |
1138 break; | |
0 | 1139 case 2u: |
1140 v9 = pMapInfo->uEncounterMonster3AtLeast; | |
1141 v16 = rand(); | |
1142 v17 = pMapInfo->uEncounterMonster3AtMost; | |
1143 pTexture = pMapInfo->pEncounterMonster3Texture; | |
1144 v12 = v16 % (v17 - v9 + 1); | |
237 | 1145 v13 = pMapInfo->Dif_M3; |
0 | 1146 v57 = v13; |
1147 v56 = v9 + v12; | |
1148 strcpy(Source, pTexture); | |
1416 | 1149 break; |
0 | 1150 case 9u: |
1151 pTexture = pMapInfo->pEncounterMonster1Texture; | |
1152 v44 = "%s C"; | |
1416 | 1153 sprintf(Source, v44, pTexture); |
1154 break; | |
0 | 1155 case 0xAu: |
1156 pTexture = pMapInfo->pEncounterMonster2Texture; | |
1157 v44 = "%s C"; | |
1416 | 1158 sprintf(Source, v44, pTexture); |
1159 break; | |
0 | 1160 case 0xBu: |
1161 pTexture = pMapInfo->pEncounterMonster3Texture; | |
1162 v44 = "%s C"; | |
1163 sprintf(Source, v44, pTexture); | |
1164 break; | |
1165 default: | |
1166 return; | |
1167 } | |
1416 | 1168 if (Source[0] == '0') |
1169 return; | |
1170 v57 += a3; | |
1171 if ( v57 > 4 ) | |
1172 v57 = 4; | |
1173 strcpy(Str2, Source); | |
1174 if ( a4 ) | |
1175 v56 = a4; | |
1176 v18 = v56; | |
1177 if ( (signed int)(v56 + uNumActors) >= 500 ) | |
1178 return; | |
1179 pSector = 0; | |
1180 pPosX = spawn->vPosition.x; | |
1181 a4 = spawn->vPosition.y; | |
1182 a3 = spawn->vPosition.z; | |
1183 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1184 pSector = pIndoor->GetSector(spawn->vPosition.x, spawn->vPosition.y, spawn->vPosition.z); | |
1185 v53 = 0; | |
1186 v52 = (((uCurrentlyLoadedLevelType != LEVEL_Outdoor) - 1) & 0x40) + 64; | |
1187 if ( v18 <= 0 ) | |
1188 return; | |
0 | 1189 for (uint i = v53; i < v56; ++i) |
1190 { | |
1191 pMonster = &pActors[uNumActors]; | |
1192 pActors[uNumActors].Reset(); | |
1193 if ( v57 ) | |
1194 { | |
1195 v23 = rand() % 100; | |
1196 v24 = 3; | |
1197 v25 = (unsigned __int16)word_4E8152[3 * v57]; | |
1198 if ( v23 >= v25 ) | |
1199 { | |
1200 if ( v23 < v25 + (unsigned __int16)word_4E8152[3 * v57 + 1] ) | |
1201 v24 = 2; | |
1202 } | |
1203 else | |
1204 { | |
1205 v24 = 1; | |
1206 } | |
1207 if ( v24 == 1 ) | |
1208 { | |
1209 pTexture = Source; | |
1210 v44 = "%s A"; | |
1211 } | |
1212 else | |
1213 { | |
1214 if ( v24 == 2 ) | |
1215 { | |
1216 pTexture = Source; | |
1217 v44 = "%s B"; | |
1218 } | |
1219 else | |
1220 { | |
1221 if ( v24 != 3 ) | |
1416 | 1222 continue; |
0 | 1223 pTexture = Source; |
1224 v44 = "%s C"; | |
1225 } | |
1226 } | |
1227 sprintf(Str2, v44, pTexture); | |
1228 } | |
751 | 1229 v50 = pMonsterList->GetMonsterIDByName(Str2); |
0 | 1230 pTexture = Str2; |
751 | 1231 if ( (signed __int16)v50 == -1 ) |
0 | 1232 { |
1233 sprintf(Str, "Can't create random monster: '%s'! See MapStats.txt and Monsters.txt!", pTexture); | |
1234 MessageBoxA(nullptr, Str, nullptr, 0); | |
1235 ExitProcess(0); | |
1236 } | |
751 | 1237 v27 = &pMonsterList->pMonsters[(signed __int16)v50]; |
1238 v28 = pMonsterStats->FindMonsterByTextureName(pTexture); | |
0 | 1239 if ( !v28 ) |
1240 v28 = 1; | |
1241 Src = &pMonsterStats->pInfos[v28]; | |
1242 strcpy(pMonster->pActorName, Src->pName); | |
1243 pMonster->sCurrentHP = Src->uHP; | |
1244 assert(sizeof(MonsterInfo) == 88); | |
1245 memcpy(&pMonster->pMonsterInfo, Src, sizeof(MonsterInfo)); | |
1246 pMonster->word_000086_some_monster_id = v50 + 1; | |
1247 pMonster->uActorRadius = v27->uMonsterRadius; | |
1248 pMonster->uActorHeight = v27->uMonsterHeight; | |
1249 pMonster->uMovementSpeed = v27->uMovementSpeed; | |
1250 pMonster->vInitialPosition.x = spawn->vPosition.x; | |
1251 pMonster->vPosition.x = spawn->vPosition.x; | |
1252 pMonster->uTetherDistance = 256; | |
1253 pMonster->vInitialPosition.y = a4; | |
1254 pMonster->vPosition.y = a4; | |
1255 pTexture = 0; | |
1256 pMonster->vInitialPosition.z = a3; | |
1257 pMonster->vPosition.z = a3; | |
1258 pMonster->uSectorID = pSector; | |
1259 pMonster->uGroup = spawn->uGroup; | |
1260 pMonster->PrepareSprites((char)pTexture); | |
1261 pMonster->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
1262 v32 = rand(); | |
1263 v33 = v32 % 2048; | |
323 | 1264 v34 = stru_5C6E00->Cos(v32 % 2048); |
0 | 1265 a4 = v34; |
1266 a3 = (unsigned __int64)(v34 * (signed __int64)v52) >> 16; | |
1267 pPosX = a3 + spawn->vPosition.x; | |
323 | 1268 v35 = stru_5C6E00->Sin(v33); |
0 | 1269 a4 = v35; |
1270 a3 = (unsigned __int64)(v35 * (signed __int64)v52) >> 16; | |
1271 a4 = a3 + spawn->vPosition.y; | |
1272 v36 = spawn->vPosition.z; | |
1273 a3 = spawn->vPosition.z; | |
1274 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
1416 | 1275 { |
1276 if ( a5 ) | |
1277 pMonster->uAttributes |= 0x080000; | |
1278 ++uNumActors; | |
1279 continue; | |
1280 } | |
0 | 1281 v37 = pIndoor->GetSector(pPosX, a4, v36); |
1282 if ( v37 == pSector ) | |
1283 { | |
723 | 1284 v38 = BLV_GetFloorLevel(pPosX, a4, a3, v37, &uFaceID); |
0 | 1285 v39 = v38; |
1286 if ( v38 != -30000 ) | |
1287 { | |
1288 if ( abs(v38 - a3) <= 1024 ) | |
1289 { | |
1290 a3 = v39; | |
1291 if ( a5 ) | |
1292 pMonster->uAttributes |= 0x080000; | |
1293 ++uNumActors; | |
1416 | 1294 continue; |
0 | 1295 } |
1296 } | |
1297 } | |
1298 ; | |
1299 //v53 = (char *)v53 + 1; | |
1300 //result = v53; | |
1301 } | |
1302 //while ( (signed int)v53 < v56 ); | |
1303 } | |
1304 | |
1305 //----- (0044FA4C) -------------------------------------------------------- | |
1306 signed int __fastcall sub_44FA4C_spawn_light_elemental(int a1, int a2, int a3) | |
1307 { | |
1308 signed int v3; // ecx@6 | |
90 | 1309 Actor *v4; // edx@7 |
0 | 1310 signed int result; // eax@13 |
1311 Actor *v6; // esi@16 | |
1312 char *v7; // ebx@16 | |
1313 MonsterDesc *v8; // edi@16 | |
1314 unsigned __int16 v9; // ax@16 | |
1315 int v10; // ebx@16 | |
1052 | 1316 //int v11; // edi@16 |
1317 //int v12; // eax@16 | |
1318 //int v13; // ecx@16 | |
1319 //int v14; // ebx@16 | |
0 | 1320 const char *v15; // [sp-4h] [bp-24h]@2 |
1052 | 1321 //unsigned __int16 v16; // [sp+0h] [bp-20h]@1 |
1322 //int v17; // [sp+4h] [bp-1Ch]@1 | |
0 | 1323 unsigned int uFaceID; // [sp+8h] [bp-18h]@16 |
1324 int v19; // [sp+Ch] [bp-14h]@16 | |
1325 size_t v20; // [sp+10h] [bp-10h]@6 | |
1326 int v21; // [sp+14h] [bp-Ch]@14 | |
1052 | 1327 //int v22; // [sp+18h] [bp-8h]@14 |
0 | 1328 unsigned int v23; // [sp+1Ch] [bp-4h]@6 |
1329 | |
1052 | 1330 //v16 = a2; |
1331 //v17 = a1; | |
0 | 1332 if ( a2 == 4 ) |
1333 { | |
1334 v15 = "Elemental Light C"; | |
1335 } | |
1052 | 1336 else if ( a2 == 3 ) |
0 | 1337 v15 = "Elemental Light B"; |
1338 else | |
1339 v15 = "Elemental Light A"; | |
1052 | 1340 |
751 | 1341 v23 = pMonsterList->GetMonsterIDByName(v15); |
0 | 1342 v3 = 0; |
1343 v20 = uNumActors; | |
1344 if ( (signed int)uNumActors > 0 ) | |
1345 { | |
1202 | 1346 v4 = pActors.data();//[0].uAIState; |
90 | 1347 while ( v4->uAIState != Removed ) |
0 | 1348 { |
1052 | 1349 ++v3; |
90 | 1350 ++v4; |
0 | 1351 if ( v3 >= (signed int)uNumActors ) |
90 | 1352 break; |
1353 } | |
1354 if( v3 < (signed int)uNumActors ) | |
1355 v20 = v3; | |
1356 } | |
0 | 1357 if ( v20 != uNumActors || (result = uNumActors + 1, (signed int)(uNumActors + 1) < 500) ) |
1358 { | |
1359 v21 = 0; | |
1052 | 1360 //v22 = pParty->vPosition.z; |
0 | 1361 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) |
1362 v21 = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
1363 v6 = &pActors[v20]; | |
1364 v7 = (char *)&pMonsterStats->pInfos[v23 + 1]; | |
1365 v19 = (((uCurrentlyLoadedLevelType != LEVEL_Outdoor) - 1) & 0x40) + 64; | |
1366 v6->Reset(); | |
1367 v8 = &pMonsterList->pMonsters[v23]; | |
1368 strcpy(v6->pActorName, *(const char **)v7); | |
1369 v6->sCurrentHP = *((short *)v7 + 32); | |
1370 memcpy(&v6->pMonsterInfo, v7, 0x58u); | |
1371 v6->word_000086_some_monster_id = v23 + 1; | |
1372 v6->uActorRadius = v8->uMonsterRadius; | |
1373 v6->uActorHeight = v8->uMonsterHeight; | |
1374 v9 = v8->uMovementSpeed; | |
1375 v6->pMonsterInfo.uTreasureDiceRolls = 0; | |
1376 v6->pMonsterInfo.uTreasureType = 0; | |
1377 v6->pMonsterInfo.uExp = 0; | |
1378 v6->uMovementSpeed = v9; | |
1379 v10 = rand() % 2048; | |
1643 | 1380 //v11 = pParty->vPosition.x + fixpoint_mul(stru_5C6E00->Cos(v10), v19); |
323 | 1381 uFaceID = stru_5C6E00->Sin(v10); |
1052 | 1382 //v12 = pParty->vPosition.y; |
1643 | 1383 //v13 = fixpoint_mul(uFaceID, v19); |
1384 //v14 = pParty->vPosition.y + fixpoint_mul(uFaceID, v19); | |
1052 | 1385 //LOWORD(v12) = v22; |
1643 | 1386 v6->vInitialPosition.x = pParty->vPosition.x + fixpoint_mul(stru_5C6E00->Cos(v10), v19); |
1052 | 1387 v6->vPosition.x = v6->vInitialPosition.x; |
1643 | 1388 v6->vInitialPosition.y = pParty->vPosition.y + fixpoint_mul(uFaceID, v19); |
1052 | 1389 v6->vPosition.y = v6->vInitialPosition.y; |
1390 v6->vInitialPosition.z = pParty->vPosition.z; | |
1391 v6->vPosition.z = v6->vInitialPosition.z; | |
1392 //LOWORD(v12) = v21; | |
0 | 1393 v6->uTetherDistance = 256; |
1052 | 1394 v6->uSectorID = v21; |
0 | 1395 v6->PrepareSprites(0); |
1396 v6->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
1397 v6->uAlly = 9999; | |
1398 v6->uGroup = 0; | |
1399 v6->uCurrentActionTime = 0; | |
1400 v6->uAIState = Summoned; | |
1401 v6->uCurrentActionLength = 256; | |
1402 v6->UpdateAnimation(); | |
1403 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor | |
1052 | 1404 || (result = pIndoor->GetSector(v6->vPosition.x, v6->vPosition.y, v6->vPosition.z), |
0 | 1405 result == v21) |
1052 | 1406 && (result = BLV_GetFloorLevel(v6->vPosition.x, v6->vPosition.y, v6->vPosition.z, result, &uFaceID), result != -30000) |
1407 && (result = abs(result - pParty->vPosition.z), result <= 1024) ) | |
0 | 1408 { |
1409 if ( v20 == uNumActors ) | |
1410 ++uNumActors; | |
1052 | 1411 v6->uSummonerID = PID(OBJECT_Player, a1); |
1412 result = v6->pActorBuffs[2].Apply(pParty->uTimePlayed + (a3 * 128) / 30.0f, | |
1413 a2, | |
1414 a1, | |
0 | 1415 0, |
1416 0); | |
1417 } | |
1418 } | |
1419 return result; | |
1420 } | |
1421 | |
1422 //----- (0044FFD8) -------------------------------------------------------- | |
1423 int MapInfo::SpawnRandomTreasure(SpawnPointMM7 *a2) | |
1424 { | |
472 | 1425 //MapInfo *v2; // ebx@1 |
1426 //SpawnPointMM7 *v3; // esi@1 | |
1427 //int v4; // eax@1 | |
0 | 1428 int v5; // edx@1 |
1429 int v6; // eax@1 | |
1430 int v7; // ecx@1 | |
1431 int v8; // ebx@1 | |
1432 int v9; // eax@1 | |
1433 signed int v10; // ebx@1 | |
1434 signed int result; // eax@1 | |
1435 signed __int64 v12; // qtt@1 | |
1436 int v13; // ebx@1 | |
1437 int v14; // edx@10 | |
1438 signed int v15; // ebx@20 | |
1439 unsigned __int16 v16; // dx@20 | |
1417 | 1440 ObjectDesc *v17; // ecx@21 |
0 | 1441 unsigned __int16 v18; // ax@24 |
1442 int v19; // ST0C_4@27 | |
1443 int v20; // ST08_4@27 | |
1444 int v21; // ST04_4@27 | |
1445 int v22; // eax@27 | |
1446 signed int v23; // ebx@29 | |
1447 unsigned __int16 v24; // dx@29 | |
1417 | 1448 ObjectDesc *v25; // ecx@30 |
0 | 1449 unsigned __int16 v26; // ax@33 |
472 | 1450 //int v27; // ecx@35 |
1451 //int v28; // eax@35 | |
1452 //int v29; // esi@35 | |
1453 //__int16 v30; // ax@35 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
1454 SpriteObject a1a; // [sp+Ch] [bp-7Ch]@1 |
472 | 1455 //int v32; // [sp+7Ch] [bp-Ch]@1 |
1456 //int v33; // [sp+80h] [bp-8h]@1 | |
0 | 1457 int v34; // [sp+84h] [bp-4h]@1 |
1458 | |
472 | 1459 //auto a1 = this; |
1460 //v2 = a1; | |
1461 //v3 = a2; | |
1462 //v4 = rand(); | |
0 | 1463 v34 = 0; |
472 | 1464 v5 = rand() % 100; |
436 | 1465 // v6 = 2 * (v2->Treasure_prob + 7 * v3->uIndex) - 14; |
472 | 1466 v7 = (unsigned __int8)byte_4E8168[a2->uIndex - 1][2 * Treasure_prob]; |
1467 v8 = (unsigned __int8)byte_4E8168[a2->uIndex - 1][2 * Treasure_prob + 1]; | |
1468 //v32 = v5; | |
1469 //v33 = v7; | |
0 | 1470 v9 = rand(); |
472 | 1471 v10 = v8 - v7 + 1; |
0 | 1472 v12 = v9; |
1473 result = v9 / v10; | |
472 | 1474 v13 = v7 + (unsigned __int64)(v12 % v10); |
0 | 1475 if ( v13 < 7 ) |
1476 { | |
472 | 1477 if ( v5 < 20 ) |
0 | 1478 return result; |
472 | 1479 if ( v5 >= 60 ) |
1480 { | |
1481 v19 = a2->vPosition.z; | |
1482 v20 = a2->vPosition.y; | |
1483 v21 = a2->vPosition.x; | |
0 | 1484 v22 = rand(); |
1485 return sub_450521_ProllyDropItemAt(v13, v22 % 27 + 20, v21, v20, v19, 0); | |
1486 } | |
472 | 1487 if ( a2->uIndex == 1 ) |
0 | 1488 { |
1489 v14 = rand() % 51 + 50; | |
1417 | 1490 a1a.stru_24.uItemID = 197; |
1491 v34 = v14; | |
1492 } | |
1493 else if ( a2->uIndex == 2 ) | |
0 | 1494 { |
1417 | 1495 v14 = rand() % 101 + 100; |
1496 a1a.stru_24.uItemID = 197; | |
1497 v34 = v14; | |
1498 } | |
1499 else if ( a2->uIndex == 3 ) | |
0 | 1500 { |
1501 v14 = rand() % 301 + 200; | |
1417 | 1502 a1a.stru_24.uItemID = 198; |
1503 v34 = v14; | |
0 | 1504 } |
1417 | 1505 else if ( a2->uIndex == 4 ) |
0 | 1506 { |
1417 | 1507 v14 = rand() % 501 + 500; |
1508 a1a.stru_24.uItemID = 198; | |
1509 v34 = v14; | |
1510 } | |
1511 else if ( a2->uIndex == 5 ) | |
1512 { | |
1513 v14 = rand() % 1001 + 1000; | |
0 | 1514 a1a.stru_24.uItemID = 199; |
1515 v34 = v14; | |
1516 } | |
1417 | 1517 else if ( a2->uIndex == 6 ) |
1518 { | |
1519 v14 = rand() % 3001 + 2000; | |
1520 a1a.stru_24.uItemID = 199; | |
1521 v34 = v14; | |
1522 } | |
1523 v15 = 0; | |
1524 v16 = pItemsTable->pItems[a1a.stru_24.uItemID].uSpriteID; | |
1525 a1a.uType = pItemsTable->pItems[a1a.stru_24.uItemID].uSpriteID; | |
1526 v18 = 0; | |
1527 for( int i = 0; i < pObjectList->uNumObjects; i++ ) | |
1528 { | |
1529 if ( pObjectList->pObjects[i].uObjectID == v16 ) | |
1530 { | |
1531 v18 = i; | |
1532 break; | |
1533 } | |
1534 } | |
1535 a1a.stru_24.SetIdentified(); | |
1536 a1a.uObjectDescID = v18; | |
1537 a1a.stru_24.uSpecEnchantmentType = v34; | |
0 | 1538 } |
1539 else | |
1540 { | |
1417 | 1541 result = a1a.stru_24.GenerateArtifact(); |
1542 if ( !result ) | |
1543 return result; | |
1544 v23 = 0; | |
1545 v24 = pItemsTable->pItems[a1a.stru_24.uItemID].uSpriteID; | |
1546 a1a.uType = pItemsTable->pItems[a1a.stru_24.uItemID].uSpriteID; | |
1547 v26 = 0; | |
1548 for( int i = 0; i < pObjectList->uNumObjects; i++ ) | |
1549 { | |
1550 if( v24 == pObjectList->pObjects[i].uObjectID ) | |
1551 { | |
1552 v26 = i; | |
1553 break; | |
1554 } | |
1555 } | |
1556 a1a.uObjectDescID = v26; | |
1557 a1a.stru_24.Reset(); | |
1558 } | |
472 | 1559 a1a.vPosition.y = a2->vPosition.y; |
0 | 1560 a1a.uAttributes = 0; |
1561 a1a.uSoundID = 0; | |
1562 a1a.uFacing = 0; | |
472 | 1563 a1a.vPosition.z = a2->vPosition.z; |
1564 a1a.vPosition.x = a2->vPosition.x; | |
822 | 1565 a1a.spell_skill = 0; |
1566 a1a.spell_level = 0; | |
1567 a1a.spell_id = 0; | |
823 | 1568 a1a.spell_target_pid = 0; |
822 | 1569 a1a.spell_caster_pid = 0; |
0 | 1570 a1a.uSpriteFrameID = 0; |
472 | 1571 a1a.uSectorID = pIndoor->GetSector(a2->vPosition.x, a2->vPosition.y, a2->vPosition.z);; |
0 | 1572 return a1a.Create(0, 0, 0, 0); |
1573 } | |
1574 | |
1575 //----- (00450521) -------------------------------------------------------- | |
1459 | 1576 int __fastcall sub_450521_ProllyDropItemAt(int ecx0, signed int a2, int a3, int a4, int a5, unsigned __int16 a6) |
0 | 1577 { |
1578 int v6; // edi@1 | |
1579 int v7; // esi@1 | |
1580 signed int v8; // edi@1 | |
1581 unsigned __int16 v9; // cx@1 | |
1582 char *v10; // edx@2 | |
1583 unsigned __int16 v11; // ax@5 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
1584 SpriteObject a1; // [sp+8h] [bp-70h]@1 |
0 | 1585 |
1586 v6 = ecx0; | |
1587 v7 = a2; | |
1588 pItemsTable->GenerateItem(v6, v7, &a1.stru_24); | |
1589 v8 = 0; | |
1590 v9 = pItemsTable->pItems[a1.stru_24.uItemID].uSpriteID; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
1591 a1.uType = pItemsTable->pItems[a1.stru_24.uItemID].uSpriteID; |
1417 | 1592 v11 = 0; |
1593 for( int i = 0; i < pObjectList->uNumObjects; i++ ) | |
1594 { | |
1595 if( v9 == pObjectList->pObjects[i].uObjectID ) | |
1596 { | |
1597 v11 = i; | |
1598 break; | |
1599 } | |
1600 } | |
0 | 1601 a1.uObjectDescID = v11; |
1602 a1.vPosition.y = a4; | |
1603 a1.vPosition.x = a3; | |
1604 a1.vPosition.z = a5; | |
1605 a1.uFacing = a6; | |
1606 a1.uAttributes = 0; | |
1607 a1.uSectorID = pIndoor->GetSector(a3, a4, a5); | |
1608 a1.uSpriteFrameID = 0; | |
1609 return a1.Create(0, 0, 0, 0); | |
1610 } | |
1611 | |
1612 //----- (0045063B) -------------------------------------------------------- | |
1415 | 1613 int __fastcall _45063B_spawn_some_monster(MapInfo *a1, int a2) |
0 | 1614 { |
1615 signed int v2; // edi@1 | |
1616 Actor *v3; // esi@2 | |
1415 | 1617 //signed __int64 v4; // qax@3 |
0 | 1618 int result; // eax@8 |
1619 int v6; // edi@11 | |
1620 int v7; // ebx@11 | |
1621 int v8; // edi@11 | |
1622 int v9; // ebx@12 | |
1623 int v10; // eax@12 | |
1624 char v11; // zf@16 | |
1625 int v12; // edi@20 | |
1626 int v13; // eax@20 | |
1627 int v14; // ebx@20 | |
1628 int v15; // eax@20 | |
1629 int v16; // eax@20 | |
1630 int v17; // eax@20 | |
1631 int v18; // eax@21 | |
1632 SpawnPointMM7 v19; // [sp+Ch] [bp-38h]@1 | |
1633 int v20; // [sp+24h] [bp-20h]@11 | |
1415 | 1634 //MapInfo *v21; // [sp+28h] [bp-1Ch]@1 |
0 | 1635 int v22; // [sp+2Ch] [bp-18h]@3 |
1636 int v23; // [sp+30h] [bp-14h]@11 | |
1415 | 1637 //int v24; // [sp+34h] [bp-10h]@1 |
0 | 1638 unsigned int uFaceID; // [sp+38h] [bp-Ch]@10 |
1639 int v26; // [sp+3Ch] [bp-8h]@11 | |
1640 int v27; // [sp+40h] [bp-4h]@11 | |
1415 | 1641 |
1642 if (!uNumActors) | |
1643 return 0; | |
1644 | |
1645 //v21 = a1; | |
1646 //v24 = a2; | |
0 | 1647 v2 = 0; |
1202 | 1648 v3 = pActors.data(); |
0 | 1649 while ( 1 ) |
1650 { | |
1415 | 1651 if (v3->pMonsterInfo.uID >= 121 && v3->pMonsterInfo.uID <= 123 || // Dwarf FemaleC A-C |
1652 v3->pMonsterInfo.uID >= 124 && v3->pMonsterInfo.uID <= 126 || // Dwarf MaleA A-C | |
1653 v3->pMonsterInfo.uID >= 133 && v3->pMonsterInfo.uID <= 135 || // Peasant Elf FemaleA A-C | |
1654 !v3->CanAct()) | |
0 | 1655 { |
1415 | 1656 ++v2; |
1657 ++v3; | |
1658 | |
1659 if (v2 >= uNumActors) | |
1660 return 0; | |
1661 | |
1662 continue; | |
0 | 1663 } |
1415 | 1664 |
1665 break; | |
1666 //v22 = v3->pMonsterInfo.uID - 1; | |
1667 //v4 = (signed __int64)((double)v22 * 0.3333333333333333); | |
1668 //if ( (int)v4 != 40 ) | |
1669 //{ | |
1670 // if ( (int)v4 != 41 && (int)v4 != 44 && v3->CanAct() ) | |
1671 // break; | |
1672 //} | |
1673 //++v2; | |
1674 //++v3; | |
1675 //if ( v2 >= (signed int)uNumActors ) | |
1676 // goto LABEL_8; | |
0 | 1677 } |
1678 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
1679 { | |
1680 v22 = 0; | |
1681 uFaceID = 0; | |
1682 while ( 1 ) | |
1683 { | |
1684 ++uFaceID; | |
1685 v6 = rand() % 1024 + 512; | |
1686 v7 = rand() % (signed int)stru_5C6E00->uIntegerDoublePi; | |
323 | 1687 v20 = stru_5C6E00->Cos(v7); |
0 | 1688 v23 = (unsigned __int64)(v20 * (signed __int64)v6) >> 16; |
1689 v19.vPosition.x = pParty->vPosition.x + v23; | |
323 | 1690 v20 = stru_5C6E00->Sin(v7); |
0 | 1691 v23 = (unsigned __int64)(v20 * (signed __int64)v6) >> 16; |
1692 v8 = 0; | |
1415 | 1693 v19.uIndex = a2; |
0 | 1694 v19.vPosition.y = v23 + pParty->vPosition.y; |
1695 v19.vPosition.z = pParty->vPosition.z; | |
1696 v26 = 0; | |
1697 v27 = 0; | |
723 | 1698 v19.vPosition.z = ODM_GetFloorLevel( |
0 | 1699 v19.vPosition.x, |
1700 v23 + pParty->vPosition.y, | |
1701 pParty->vPosition.z, | |
1702 0, | |
1703 &v26, | |
1704 &v27, | |
1705 0); | |
1706 v23 = 0; | |
1416 | 1707 for( int i = 0; i < pOutdoor->uNumBModels; i++ ) |
1708 { | |
1709 v9 = abs(v19.vPosition.y - pOutdoor->pBModels[i].vBoundingCenter.y); | |
1710 v10 = abs(v19.vPosition.x - pOutdoor->pBModels[i].vBoundingCenter.x); | |
1711 if ( int_get_vector_length(v10, v9, 0) < pOutdoor->pBModels[i].sBoundingRadius + 256 ) | |
1712 { | |
1713 v22 = 1; | |
1714 break; | |
1715 } | |
1716 } | |
0 | 1717 v11 = uFaceID == 100; |
1718 if ( uFaceID >= 100 ) | |
1719 break; | |
1720 if ( v22 ) | |
1721 { | |
1722 v11 = uFaceID == 100; | |
1723 break; | |
1724 } | |
1725 } | |
1726 } | |
1727 else | |
1728 { | |
1729 v26 = 0; | |
1730 v22 = pIndoor->GetSector(pParty->vPosition.x, pParty->vPosition.y, pParty->vPosition.z); | |
1731 do | |
1732 { | |
1733 ++v26; | |
1734 v12 = rand() % 512 + 256; | |
1735 v13 = rand(); | |
1736 v14 = v13 % (signed int)stru_5C6E00->uIntegerDoublePi; | |
323 | 1737 v15 = stru_5C6E00->Cos(v13 % (signed int)stru_5C6E00->uIntegerDoublePi); |
0 | 1738 v20 = v15; |
1739 v23 = (unsigned __int64)(v15 * (signed __int64)v12) >> 16; | |
1740 v19.vPosition.x = pParty->vPosition.x + v23; | |
323 | 1741 v16 = stru_5C6E00->Sin(v13 % (signed int)stru_5C6E00->uIntegerDoublePi); |
0 | 1742 v20 = v16; |
1743 v23 = (unsigned __int64)(v16 * (signed __int64)v12) >> 16; | |
1744 v19.vPosition.y = v23 + pParty->vPosition.y; | |
1745 v19.vPosition.z = pParty->vPosition.z; | |
1415 | 1746 v19.uIndex = a2; |
0 | 1747 v17 = pIndoor->GetSector(v19.vPosition.x, v23 + pParty->vPosition.y, pParty->vPosition.z); |
1748 if ( v17 == v22 ) | |
1749 { | |
723 | 1750 v18 = BLV_GetFloorLevel(v19.vPosition.x, v19.vPosition.y, v19.vPosition.z, v17, &uFaceID); |
0 | 1751 v19.vPosition.z = v18; |
1752 if ( v18 != -30000 ) | |
1753 { | |
1754 if ( abs(v18 - pParty->vPosition.z) <= 1024 ) | |
1755 break; | |
1756 } | |
1757 } | |
1758 } | |
1759 while ( v26 < 100 ); | |
1760 v11 = v26 == 100; | |
1761 } | |
1762 if ( v11 ) | |
1763 { | |
1764 result = 0; | |
1765 } | |
1766 else | |
1767 { | |
1415 | 1768 SpawnEncounter(a1, &v19, 0, 0, 1); |
1769 result = a2; | |
0 | 1770 } |
1771 return result; | |
1772 } | |
1773 | |
1774 //----- (00450AAA) -------------------------------------------------------- | |
1775 void RespawnGlobalDecorations() | |
1776 { | |
1822 | 1777 memset(stru_5E4C90_MapPersistVars._decor_events.data(), 0, 125); |
0 | 1778 |
1779 uint decorEventIdx = 0; | |
1780 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1781 { | |
1202 | 1782 auto decor = &pLevelDecorations[i]; |
0 | 1783 |
1514
965af46e8793
Rename LevelDecoration::field_16_event_id to LevelDecoration::uEventID.
yoctozepto
parents:
1513
diff
changeset
|
1784 if (!decor->uEventID) |
0 | 1785 { |
1786 if (decor->IsInteractive()) | |
1787 { | |
1788 if (decorEventIdx < 124) | |
1789 { | |
1790 decor->_idx_in_stru123 = decorEventIdx + 75; | |
1736
c6fe09a06712
Player::CompareVariable finished, renamed stru_5E4C90 to stru_5E4C90_MapPersistVars, party::field_4A0 to party::CounterEventValues
Grumpy7
parents:
1706
diff
changeset
|
1791 stru_5E4C90_MapPersistVars._decor_events[decorEventIdx++] = decor->GetGlobalEvent(); |
0 | 1792 } |
1793 } | |
1794 } | |
1795 } | |
1796 } | |
1797 | |
1798 //----- (00450B0A) -------------------------------------------------------- | |
1799 bool __fastcall SpawnActor(unsigned int uMonsterID) | |
1800 { | |
1801 unsigned int v1; // ebx@1 | |
1802 bool result; // eax@2 | |
1803 MonsterDesc *v3; // esi@5 | |
1804 MonsterInfo *v4; // edi@5 | |
1805 Vec3_int_ v5; // ST08_12@5 | |
1806 unsigned int v6; // ecx@5 | |
1807 Actor *v7; // eax@7 | |
1808 Actor actor; // [sp+4h] [bp-350h]@5 | |
1809 Vec3_int_ pOut; // [sp+348h] [bp-Ch]@5 | |
1810 | |
1811 v1 = uMonsterID; | |
1812 if ( uNumActors == 499 ) | |
1813 { | |
1814 result = 0; | |
1815 } | |
1816 else | |
1817 { | |
1818 if ( (signed int)uMonsterID >= (signed int)pMonsterList->uNumMonsters ) | |
1819 v1 = 0; | |
1820 v3 = &pMonsterList->pMonsters[v1]; | |
1821 v4 = &pMonsterStats->pInfos[v1 + 1]; | |
1822 memset(&actor, 0, 0x344u); | |
1823 strcpy(actor.pActorName, v4->pName); | |
1824 actor.sCurrentHP = LOWORD(v4->uHP); | |
1825 memcpy(&actor.pMonsterInfo, &pMonsterStats->pInfos[v1 + 1], 0x58u); | |
1826 actor.word_000086_some_monster_id = v1 + 1; | |
1827 actor.uActorRadius = v3->uMonsterRadius; | |
1828 actor.uActorHeight = v3->uMonsterHeight; | |
1829 actor.uMovementSpeed = v3->uMovementSpeed; | |
1830 v5 = pParty->vPosition; | |
1831 Vec3_int_::Rotate(200, pParty->sRotationY, 0, v5, &pOut.x, &pOut.z, &pOut.y); | |
1832 actor.vInitialPosition.x = pOut.x; | |
1833 actor.vPosition.x = pOut.x; | |
1834 actor.uTetherDistance = 256; | |
1835 actor.vInitialPosition.y = LOWORD(pOut.z); | |
1836 actor.vPosition.y = LOWORD(pOut.z); | |
1837 actor.vInitialPosition.z = LOWORD(pOut.y); | |
1838 actor.vPosition.z = LOWORD(pOut.y); | |
1839 pSprites_LOD->DeleteSomeSprites(); | |
1840 pPaletteManager->ResetNonTestLocked(); | |
1841 v6 = uNumActors - 1; | |
1842 if ( dword_5C6DF8 == 1 ) | |
1843 { | |
1844 dword_5C6DF8 = 0; | |
1845 v6 = uNumActors++; | |
1846 } | |
1847 v7 = &pActors[v6]; | |
1848 memcpy(v7, &actor, 0x344u); | |
1849 v7->PrepareSprites(1); | |
1850 result = 1; | |
1851 } | |
1852 return result; | |
1853 } | |
1854 // 5C6DF8: using guessed type int dword_5C6DF8; | |
1855 | |
1856 //----- (00450DA3) -------------------------------------------------------- | |
1458 | 1857 int GetAlertStatus() |
0 | 1858 { |
1859 int result; // eax@2 | |
1860 | |
1861 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1862 result = pOutdoor->ddm.field_C_alert; | |
1863 else | |
1864 result = uCurrentlyLoadedLevelType == LEVEL_Outdoor ? pIndoor->dlv.field_C_alert : 0; | |
1865 return result; | |
1866 } | |
1867 | |
1868 //----- (00450DDE) -------------------------------------------------------- | |
1869 stru350 *stru350::_450DDE() | |
1870 { | |
1871 _450DF1(&stru_4E82A4, &stru_4E82A4); | |
1872 return this; | |
1873 } | |
1874 | |
1875 //----- (00450DF1) -------------------------------------------------------- | |
1876 bool stru350::_450DF1(const stru355 *p1, const stru355 *p2) | |
1877 { | |
1878 //stru350 *v3; // esi@1 | |
1879 //void *result; // eax@1 | |
1880 unsigned int v5; // ecx@2 | |
1881 int v6; // edi@2 | |
1882 int v7; // edx@2 | |
1883 unsigned int v8; // ecx@8 | |
1884 int v9; // edi@8 | |
1885 int v10; // edx@8 | |
1886 int v11; // ecx@12 | |
1887 int v12; // edi@12 | |
1888 unsigned int v13; // ecx@12 | |
1889 int v14; // edx@12 | |
1890 int v15; // ecx@16 | |
1891 unsigned int v16; // edx@16 | |
1892 int v17; // ecx@16 | |
1893 int v18; // edi@16 | |
1894 char v19; // zf@20 | |
1895 unsigned int v20; // ecx@21 | |
1896 int v21; // edi@21 | |
1897 int v22; // edx@21 | |
1898 unsigned int v23; // ecx@27 | |
1899 int v24; // edi@27 | |
1900 int v25; // edx@27 | |
1901 int v26; // ecx@31 | |
1902 int v27; // edi@31 | |
1903 unsigned int v28; // ecx@31 | |
1904 int v29; // edx@31 | |
1905 int v30; // ebx@35 | |
1906 int v31; // ecx@35 | |
1907 int v32; // edi@35 | |
1908 int v33; // edx@35 | |
1909 unsigned int i; // ecx@35 | |
1910 int v35; // ecx@39 | |
1911 unsigned int v36; // edx@39 | |
1912 int v37; // ecx@39 | |
1913 int v38; // ebx@39 | |
1914 | |
1915 //v3 = this; | |
1916 memcpy(&field_0, p1, sizeof(stru355)); | |
1917 memcpy(&field_20, p2, sizeof(stru355)); | |
1918 //result = memcpy(&v3->field_20, p2, 0x20u); | |
1919 //LOBYTE(result) = 1; | |
1920 if (field_0.field_4 & 1) | |
1921 { | |
1922 v5 = field_0.field_1C; | |
1923 v6 = 0; | |
1924 v7 = 0; | |
1925 while ( !(v5 & 1) ) | |
1926 { | |
1927 ++v6; | |
1928 v5 >>= 1; | |
1929 } | |
1930 do | |
1931 { | |
1932 v5 >>= 1; | |
1933 ++v7; | |
1934 } | |
1935 while ( v5 & 1 ); | |
1936 field_40 = 32 - v7 - v6; | |
1937 } | |
1938 else | |
1939 { | |
1940 field_40 = 0; | |
1941 } | |
1942 v8 = field_0.field_10; | |
1943 v9 = 0; | |
1944 v10 = 0; | |
1945 while ( !(v8 & 1) ) | |
1946 { | |
1947 ++v9; | |
1948 v8 >>= 1; | |
1949 } | |
1950 do | |
1951 { | |
1952 v8 >>= 1; | |
1953 ++v10; | |
1954 } | |
1955 while ( v8 & 1 ); | |
1956 v11 = 24 - v10 - v9; | |
1957 v12 = 0; | |
1958 field_48 = v11; | |
1959 v13 = field_0.field_14; | |
1960 v14 = 0; | |
1961 while ( !(v13 & 1) ) | |
1962 { | |
1963 ++v12; | |
1964 v13 >>= 1; | |
1965 } | |
1966 do | |
1967 { | |
1968 v13 >>= 1; | |
1969 ++v14; | |
1970 } | |
1971 while ( v13 & 1 ); | |
1972 v15 = 16 - v14; | |
1973 v16 = field_0.field_18; | |
1974 field_50 = v15 - v12; | |
1975 v17 = 0; | |
1976 v18 = 0; | |
1977 while ( !(v16 & 1) ) | |
1978 { | |
1979 ++v17; | |
1980 v16 >>= 1; | |
1981 } | |
1982 do | |
1983 { | |
1984 v16 >>= 1; | |
1985 ++v18; | |
1986 } | |
1987 while ( v16 & 1 ); | |
1988 v19 = (field_20.field_4 & 1) == 0; | |
1989 field_58 = v17 - v18 + 8; | |
1990 if ( v19 ) | |
1991 { | |
1992 field_44 = 0; | |
1993 } | |
1994 else | |
1995 { | |
1996 v20 = field_20.field_1C; | |
1997 v21 = 0; | |
1998 v22 = 0; | |
1999 while ( !(v20 & 1) ) | |
2000 { | |
2001 ++v21; | |
2002 v20 >>= 1; | |
2003 } | |
2004 do | |
2005 { | |
2006 v20 >>= 1; | |
2007 ++v22; | |
2008 } | |
2009 while ( v20 & 1 ); | |
2010 field_44 = 32 - v22 - v21; | |
2011 } | |
2012 v23 = field_20.field_10; | |
2013 v24 = 0; | |
2014 v25 = 0; | |
2015 while ( !(v23 & 1) ) | |
2016 { | |
2017 ++v24; | |
2018 v23 >>= 1; | |
2019 } | |
2020 do | |
2021 { | |
2022 v23 >>= 1; | |
2023 ++v25; | |
2024 } | |
2025 while ( v23 & 1 ); | |
2026 v26 = 24 - v25 - v24; | |
2027 v27 = 0; | |
2028 field_4C = v26; | |
2029 v28 = field_20.field_14; | |
2030 v29 = 0; | |
2031 while ( !(v28 & 1) ) | |
2032 { | |
2033 ++v27; | |
2034 v28 >>= 1; | |
2035 } | |
2036 do | |
2037 { | |
2038 v28 >>= 1; | |
2039 ++v29; | |
2040 } | |
2041 while ( v28 & 1 ); | |
2042 v30 = 0; | |
2043 v31 = 16 - v29 - v27; | |
2044 v32 = field_20.field_18; | |
2045 field_54 = v31; | |
2046 v33 = 0; | |
2047 for ( i = v32; !(i & 1); i >>= 1 ) | |
2048 ++v30; | |
2049 do | |
2050 { | |
2051 i >>= 1; | |
2052 ++v33; | |
2053 } | |
2054 while ( i & 1 ); | |
2055 v35 = 32 - v33; | |
2056 v36 = v32; | |
2057 field_5C = v35 - v30; | |
2058 v37 = 0; | |
2059 v38 = 0; | |
2060 while ( !(v36 & 1) ) | |
2061 { | |
2062 ++v37; | |
2063 v36 >>= 1; | |
2064 } | |
2065 do | |
2066 { | |
2067 v36 >>= 1; | |
2068 ++v38; | |
2069 } | |
2070 while ( v36 & 1 ); | |
2071 field_5C = v37 - v38 + 8; | |
2072 return true; | |
2073 } | |
2074 | |
2075 //----- (00450F55) -------------------------------------------------------- | |
2076 unsigned int stru350::_450F55(int a2) | |
2077 { | |
2078 int v2 = a2 & stru_4E82A4.field_1C; | |
2079 if (field_20.field_4 & 1) | |
2080 v2 = (unsigned int)v2 >> this->field_44; | |
2081 return v2 & field_20.field_1C | | |
2082 field_20.field_10 & ((a2 & (unsigned int)stru_4E82A4.field_10) >> field_4C) | | |
2083 field_20.field_14 & ((a2 & (unsigned int)stru_4E82A4.field_14) >> field_54) | | |
2084 field_20.field_18 & ((a2 & (unsigned int)stru_4E82A4.field_18) >> field_5C); | |
2085 } | |
2086 | |
2087 //----- (00450FB1) -------------------------------------------------------- | |
2088 int stru350::_450FB1(int a2) | |
2089 { | |
2090 int v2 = 0; | |
2091 int v4 = field_0.field_4 & 1; | |
2092 if ( v4 ) | |
2093 v2 = a2 & field_0.field_1C; | |
2094 if ( v4 ) | |
2095 v2 <<= field_40; | |
2096 return v2 | ((a2 & field_0.field_10) << field_48) | ((a2 & field_0.field_14) << field_50) | ((a2 & field_0.field_18) << field_58); | |
2097 } | |
2098 | |
2099 //----- (00452442) -------------------------------------------------------- | |
1583 | 2100 unsigned int __fastcall _452442_color_cvt(unsigned __int16 a1, unsigned __int16 a2, int a3, int a4) |
0 | 2101 { |
2102 int v4; // ebx@0 | |
2103 __int16 v5; // ST14_2@1 | |
2104 __int16 v6; // dx@1 | |
2105 int v7; // ecx@1 | |
2106 __int16 v8; // ST10_2@1 | |
2107 int v9; // edi@1 | |
2108 unsigned __int16 v10; // dh@1@1 | |
2109 int v11; // ebx@1 | |
2110 int v12; // ebx@1 | |
2111 __int16 a3a; // [sp+1Ch] [bp+8h]@1 | |
2112 | |
2113 v5 = a2 >> 2; | |
2114 v6 = (unsigned __int16)a4 >> 2; | |
2115 v8 = a1 >> 2; | |
2116 a3a = (unsigned __int16)a3 >> 2; | |
2117 LOWORD(v7) = a3a; | |
2118 v9 = v7; | |
2119 LOWORD(v4) = ((unsigned __int16)a4 >> 2) & 0xE0; | |
2120 LOWORD(v7) = a3a & 0xE0; | |
2121 LOWORD(v9) = v9 & 0x1C00; | |
2122 v11 = v7 + v4; | |
2123 LOWORD(v7) = v5 & 0xE0; | |
2124 v12 = v7 + v11; | |
2125 LOWORD(v7) = v8 & 0xE0; | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1408
diff
changeset
|
2126 __debugbreak(); // warning C4700: uninitialized local variable 'v10' used |
848 | 2127 return (PID_TYPE(v8) + PID_TYPE(v5) + PID_TYPE(a3a) + PID_TYPE(v6)) | (v7 + v12) | ((v8 & 0x1C00) |
0 | 2128 + (v5 & 0x1C00) |
2129 + v9 | |
2130 + (__PAIR__(v10, (unsigned __int16)a4 >> 2) & 0x1C00)); | |
2131 } | |
2132 | |
2133 //----- (0045281E) -------------------------------------------------------- | |
2134 // Calculates atan2(y/x) | |
2135 // return value: angle in integer format (multiplier of Pi/1024) | |
2136 unsigned int stru193_math::Atan2(int x, int y) | |
2137 { | |
2138 signed int quadrant; | |
2139 __int64 dividend; | |
2140 int quotient; | |
2141 int lowIdx; | |
2142 int highIdx; | |
2143 int angle; | |
2144 | |
2145 auto X = x; | |
2146 auto Y = y; | |
2147 | |
2148 if ( abs(X) < 65536 ) | |
2149 { | |
2150 if ( (abs(Y) >> 15) >= abs(X) ) | |
2151 X = 0; | |
2152 } | |
2153 | |
2154 if ( !X ) | |
2155 { | |
2156 if ( Y > 0 ) | |
2157 { | |
2158 return uIntegerHalfPi; //Pi/2 | |
2159 } | |
2160 else | |
2161 { | |
2162 return uIntegerHalfPi + uIntegerPi; //3*(Pi/2) | |
2163 } | |
2164 } | |
2165 | |
2166 if ( Y ) | |
2167 { | |
2168 if ( X < 0 ) | |
2169 { | |
2170 X = -X; | |
2171 if ( Y > 0 ) | |
2172 { | |
2173 quadrant = 4; | |
2174 } | |
2175 else | |
2176 { | |
2177 quadrant = 3; | |
2178 } | |
2179 } | |
2180 else | |
2181 { | |
2182 if ( Y > 0 ) | |
2183 { | |
2184 quadrant = 1; | |
2185 } | |
2186 else | |
2187 { | |
2188 quadrant = 2; | |
2189 } | |
2190 } | |
2191 | |
2192 if ( Y < 0 ) | |
2193 Y = -Y; | |
2194 | |
2195 LODWORD(dividend) = Y << 16; | |
2196 HIDWORD(dividend) = Y >> 16; | |
2197 quotient = dividend / X; | |
2198 | |
2199 //looks like binary search | |
2200 { | |
2201 int i; | |
2202 highIdx = uIntegerHalfPi; | |
2203 lowIdx = 0; | |
2204 | |
2205 for (i = 0; i < 6; ++i) | |
2206 { | |
2207 if (quotient <= pTanTable[(lowIdx + highIdx) / 2]) | |
2208 highIdx = (lowIdx + highIdx) / 2; | |
2209 else | |
2210 lowIdx = (lowIdx + highIdx) / 2; | |
2211 } | |
2212 } | |
2213 | |
2214 angle = lowIdx + 1; | |
2215 while ( angle < (highIdx - 1) && quotient >= pTanTable[angle] ) | |
2216 ++angle; | |
2217 | |
2218 switch (quadrant) | |
2219 { | |
2220 case 1: //X > 0, Y > 0 | |
2221 return angle; | |
2222 | |
2223 case 2: //X > 0, Y < 0 | |
2224 return uIntegerDoublePi - angle; //2*Pi - angle | |
2225 | |
2226 case 3: //X > 0, Y < 0 | |
2227 return uIntegerPi + angle; //Pi + angle | |
2228 | |
2229 case 4: //X < 0, Y > 0 | |
2230 return uIntegerPi - angle; //Pi - angle | |
2231 } | |
2232 | |
2233 //should newer get here | |
2234 return 0; | |
2235 } | |
2236 | |
2237 if ( X < 0 ) //Y == 0, X < 0 | |
2238 return uIntegerPi; | |
2239 | |
2240 return 0; | |
2241 } | |
2242 | |
2243 //----- (00452969) -------------------------------------------------------- | |
2244 stru193_math::stru193_math() | |
2245 { | |
2246 double v3; // ST18_8@2 | |
1214
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2247 |
0 | 2248 this->pTanTable[0] = 0; |
2249 this->pCosTable[0] = 65536; | |
2250 this->pInvCosTable[0] = 65536; | |
1214
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2251 for(int i = 1; i < (signed int)this->uIntegerHalfPi; i++) |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2252 { |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2253 v3 = (double)i * 3.141592653589793 / (double)uIntegerPi; |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2254 pTanTable[i] = (signed __int64)(tan(v3) * (double)this->pCosTable[0] + 0.5); |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2255 pCosTable[i] = (signed __int64)(cos(v3) * (double)this->pCosTable[0] + 0.5); |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2256 pInvCosTable[i] = (signed __int64)(1.0 / cos(v3) * (double)this->pCosTable[0] + 0.5); |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2257 } |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2258 for(int i = this->uIntegerHalfPi; i < 520; i++) |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2259 { |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2260 this->pTanTable[i] = 0xEFFFFFFFu; |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2261 this->pCosTable[i] = 0; |
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
2262 this->pInvCosTable[i] = 0xEFFFFFFFu; |
0 | 2263 } |
2264 } | |
2265 | |
2266 //----- (00452A9E) -------------------------------------------------------- | |
295 | 2267 int integer_sqrt(int val) |
0 | 2268 { |
2269 signed int result; // eax@2 | |
295 | 2270 unsigned int v2; // edx@3 |
271 | 2271 unsigned int v3; // edi@3 |
2272 //signed int v4; // ebx@3 | |
0 | 2273 int v5; // esi@4 |
2274 | |
295 | 2275 if (val < 1) |
2276 return val; | |
271 | 2277 |
2278 | |
0 | 2279 v2 = 0; |
295 | 2280 v3 = val; |
0 | 2281 result = 0; |
271 | 2282 //v4 = 16; |
2283 for (uint i = 0; i < 16; ++i) | |
2284 { | |
0 | 2285 result *= 2; |
271 | 2286 v2 = (v3 >> 30) | 4 * v2; |
0 | 2287 v5 = 2 * result + 1; |
2288 v3 *= 4; | |
295 | 2289 if ( v2 >= v5 ) |
0 | 2290 { |
2291 ++result; | |
2292 v2 -= v5; | |
2293 } | |
271 | 2294 //--v4; |
2295 } | |
2296 //while ( v4 ); | |
295 | 2297 if ( val - result * result >= (unsigned int)(result - 1) ) |
0 | 2298 ++result; |
295 | 2299 return result; |
0 | 2300 } |
2301 | |
2302 //----- (00452AE2) -------------------------------------------------------- | |
2303 int __fastcall MakeColorMaskFromBitDepth(int a1) | |
2304 { | |
2305 signed __int64 v1; // qax@1 | |
2306 | |
2307 v1 = 4294967296i64; | |
2308 if ( a1 > 0 ) | |
2309 { | |
2310 do | |
2311 { | |
2312 LODWORD(v1) = HIDWORD(v1) + v1; | |
2313 HIDWORD(v1) *= 2; | |
2314 --a1; | |
2315 } | |
2316 while ( a1 ); | |
2317 } | |
2318 return v1; | |
2319 } | |
2320 | |
2321 //----- (00452AF3) -------------------------------------------------------- | |
2322 void __fastcall fill_pixels_fast(unsigned int a1, unsigned __int16 *pPixels, unsigned int uNumPixels) | |
2323 { | |
2324 void *v3; // edi@1 | |
2325 unsigned int v4; // eax@1 | |
2326 unsigned __int16 *v5; // edi@3 | |
2327 unsigned int i; // ecx@3 | |
2328 | |
2329 v3 = pPixels; | |
2330 v4 = a1 | (a1 << 16); | |
2331 if ( (unsigned __int8)pPixels & 2 ) // first 2 pixels | |
2332 { | |
2333 *pPixels = v4; | |
2334 v3 = pPixels + 1; | |
2335 --uNumPixels; | |
2336 } | |
2337 memset32(v3, v4, uNumPixels >> 1); // 4 pixels at once | |
2338 v5 = (unsigned __int16 *)((char *)v3 + 4 * (uNumPixels >> 1)); | |
2339 for ( i = uNumPixels & 1; i; --i ) // leftover pixels | |
2340 { | |
2341 *v5 = v4; | |
2342 ++v5; | |
2343 } | |
2344 } | |
2345 | |
2346 //----- (00452B2E) -------------------------------------------------------- | |
2347 int __fastcall GetDiceResult(unsigned int uNumDice, unsigned int uDiceSides) | |
2348 { | |
2349 signed int v2; // edi@1 | |
2350 int v3; // esi@1 | |
2351 int result; // eax@2 | |
2352 unsigned int v5; // ebx@4 | |
2353 | |
2354 v2 = uDiceSides; | |
2355 v3 = 0; | |
2356 if ( uDiceSides ) | |
2357 { | |
2358 if ( (signed int)uNumDice > 0 ) | |
2359 { | |
2360 v5 = uNumDice; | |
2361 do | |
2362 { | |
2363 --v5; | |
2364 v3 += rand() % v2 + 1; | |
2365 } | |
2366 while ( v5 ); | |
2367 } | |
2368 result = v3; | |
2369 } | |
2370 else | |
2371 { | |
2372 result = 0; | |
2373 } | |
2374 return result; | |
2375 } | |
2376 | |
2377 //----- (00453F62) -------------------------------------------------------- | |
2378 void MapStats::Initialize() | |
2379 { | |
237 | 2380 char work_str[32]; // [sp+Ch] [bp-34h]@3 |
2381 int work_str_pos; | |
2382 int work_str_len; | |
2383 int i; | |
2384 char* test_string; | |
2385 unsigned char c; | |
2386 bool break_loop; | |
2387 unsigned int temp_str_len; | |
2388 char* tmp_pos; | |
2389 int decode_step; | |
2390 int item_counter; | |
2391 | |
0 | 2392 if ( pMapStatsTXT_Raw ) |
1583 | 2393 free(pMapStatsTXT_Raw); |
237 | 2394 pMapStatsTXT_Raw = NULL; |
0 | 2395 pMapStatsTXT_Raw = (char *)pEvents_LOD->LoadRaw("MapStats.txt", 0); |
2396 strtok(pMapStatsTXT_Raw, "\r"); | |
237 | 2397 strtok(NULL, "\r"); |
2398 strtok(NULL, "\r"); | |
2399 | |
2400 for (i=1; i<77; ++i) | |
2401 { | |
2402 test_string = strtok(NULL, "\r") + 1; | |
2403 break_loop = false; | |
2404 decode_step=0; | |
2405 do | |
2406 { | |
2407 c = *(unsigned char*)test_string; | |
2408 temp_str_len = 0; | |
2409 while((c!='\t')&&(c>0)) | |
2410 { | |
2411 ++temp_str_len; | |
2412 c=test_string[temp_str_len]; | |
2413 } | |
2414 tmp_pos=test_string+temp_str_len; | |
2415 if (*tmp_pos == 0) | |
2416 break_loop = true; | |
2417 *tmp_pos = 0; | |
2418 if (temp_str_len) | |
2419 { | |
2420 switch (decode_step) | |
2421 { | |
2422 case 1: | |
2423 pInfos[i].pName = RemoveQuotes(test_string); | |
2424 break; | |
2425 case 2: | |
2426 pInfos[i].pFilename = RemoveQuotes(test_string); | |
2427 break; | |
2428 case 3: | |
2429 pInfos[i].uNumResets = atoi(test_string); | |
2430 break; | |
2431 case 4: | |
2432 pInfos[i].uFirstVisitedAt = atoi(test_string); | |
2433 break; | |
2434 case 5: | |
2435 pInfos[i]._per = atoi(test_string); | |
2436 break; | |
2437 case 6: | |
2438 pInfos[i].uRespawnIntervalDays = atoi(test_string); | |
2439 break; | |
2440 case 7: | |
2441 pInfos[i]._alert_days = atoi(test_string); | |
2442 break; | |
2443 case 8: | |
2444 pInfos[i]._steal_perm = atoi(test_string); | |
2445 break; | |
2446 case 9: | |
2447 pInfos[i].LockX5 = atoi(test_string); | |
2448 break; | |
2449 case 10: | |
2450 pInfos[i].Trap_D20 = atoi(test_string); | |
2451 break; | |
2452 case 11: | |
2453 pInfos[i].Treasure_prob = atoi(test_string); | |
2454 break; | |
2455 case 12: | |
2456 pInfos[i].Encounter_percent = atoi(test_string); | |
2457 break; | |
2458 case 13: | |
2459 pInfos[i].EncM1percent = atoi(test_string); | |
2460 break; | |
2461 case 14: | |
2462 pInfos[i].EncM2percent = atoi(test_string); | |
2463 break; | |
2464 case 15: | |
2465 pInfos[i].EncM3percent = atoi(test_string); | |
2466 break; | |
2467 case 16: | |
2468 pInfos[i].pEncounterMonster1Texture = RemoveQuotes(test_string); | |
2469 break; | |
2470 case 18: | |
2471 pInfos[i].Dif_M1 = atoi(test_string); | |
2472 break; | |
2473 case 19: | |
2474 pInfos[i].uEncounterMonster1AtLeast = 1; | |
2475 pInfos[i].uEncounterMonster1AtMost = 1; | |
2476 strcpy(work_str, test_string); | |
2477 work_str_pos = 0; | |
2478 work_str_len=strlen(work_str); | |
2479 if (work_str_len ) | |
2480 { | |
2481 while (work_str[work_str_pos] != '-' ) | |
2482 { | |
2483 ++work_str_pos; | |
2484 if (work_str_pos >= work_str_len ) | |
2485 break; | |
2486 } | |
2487 work_str[work_str_pos] = 0; | |
2488 pInfos[i].uEncounterMonster1AtLeast = atoi(work_str); | |
2489 if ( work_str_pos < work_str_len ) | |
2490 pInfos[i].uEncounterMonster1AtMost = atoi(&work_str[work_str_pos + 1]); | |
2491 else | |
2492 pInfos[i].uEncounterMonster1AtMost = pInfos[i].uEncounterMonster1AtLeast; | |
2493 } | |
2494 break; | |
2495 case 20: | |
2496 pInfos[i].pEncounterMonster2Texture = RemoveQuotes(test_string); | |
2497 break; | |
2498 case 22: | |
2499 pInfos[i].Dif_M2 = atoi(test_string); | |
2500 break; | |
2501 case 23: | |
2502 pInfos[i].uEncounterMonster2AtLeast = 1; | |
2503 pInfos[i].uEncounterMonster2AtMost = 1; | |
2504 strcpy(work_str, test_string); | |
2505 work_str_pos = 0; | |
2506 work_str_len=strlen(work_str); | |
2507 if (work_str_len ) | |
2508 { | |
2509 while (work_str[work_str_pos] != '-' ) | |
2510 { | |
2511 ++work_str_pos; | |
2512 if (work_str_pos >= work_str_len ) | |
2513 break; | |
2514 } | |
2515 work_str[work_str_pos] = 0; | |
2516 pInfos[i].uEncounterMonster2AtLeast = atoi(work_str); | |
2517 if ( work_str_pos < work_str_len ) | |
2518 pInfos[i].uEncounterMonster2AtMost = atoi(&work_str[work_str_pos + 1]); | |
2519 else | |
2520 pInfos[i].uEncounterMonster2AtMost = pInfos[i].uEncounterMonster2AtLeast; | |
2521 } | |
2522 break; | |
2523 case 24: | |
2524 pInfos[i].pEncounterMonster3Texture = RemoveQuotes(test_string); | |
2525 break; | |
2526 case 26: | |
2527 pInfos[i].Dif_M3 = atoi(test_string); | |
2528 break; | |
2529 case 27: | |
2530 pInfos[i].uEncounterMonster3AtLeast = 1; | |
2531 pInfos[i].uEncounterMonster3AtMost = 1; | |
2532 strcpy(work_str, test_string); | |
2533 work_str_pos = 0; | |
2534 work_str_len=strlen(work_str); | |
2535 if (work_str_len ) | |
2536 { | |
2537 while (work_str[work_str_pos] != '-' ) | |
2538 { | |
2539 ++work_str_pos; | |
2540 if (work_str_pos >= work_str_len ) | |
2541 break; | |
2542 } | |
2543 work_str[work_str_pos] = 0; | |
2544 pInfos[i].uEncounterMonster3AtLeast = atoi(work_str); | |
2545 if ( work_str_pos < work_str_len ) | |
2546 pInfos[i].uEncounterMonster3AtMost = atoi(&work_str[work_str_pos + 1]); | |
2547 else | |
2548 pInfos[i].uEncounterMonster3AtMost = pInfos[i].uEncounterMonster3AtLeast; | |
2549 } | |
2550 break; | |
2551 case 28: | |
2552 pInfos[i].uRedbookTrackID = atoi(test_string); | |
2553 break; | |
2554 case 29: | |
2555 { | |
2556 if ( !strcmp(test_string, "CAVE") ) | |
2557 { | |
2558 pInfos[i].uEAXEnv = 8; | |
2559 break; | |
2560 } | |
2561 if ( !strcmp(test_string, "STONEROOM") ) | |
2562 { | |
2563 pInfos[i].uEAXEnv = 5; | |
2564 break; | |
2565 } | |
2566 if ( !strcmp(test_string, "MOUNTAINS") ) | |
2567 { | |
2568 pInfos[i].uEAXEnv = 17; | |
2569 break; | |
2570 } | |
2571 if ( !strcmp(test_string, "PLAIN") ) | |
2572 { | |
2573 pInfos[i].uEAXEnv = 19; | |
2574 break; | |
2575 } | |
2576 if ( !strcmp(test_string, "FOREST") ) | |
2577 { | |
2578 pInfos[i].uEAXEnv = 15; | |
2579 break; | |
2580 } | |
2581 if ( !strcmp(test_string, "CITY") ) | |
2582 { | |
2583 pInfos[i].uEAXEnv = 16; | |
2584 break; | |
2585 } | |
2586 if ( !strcmp(test_string, "UNDERWATER") ) | |
2587 { | |
2588 pInfos[i].uEAXEnv = 22; | |
2589 break; | |
2590 } | |
2591 if ( !strcmp(test_string, "ARENA") ) | |
2592 { | |
2593 pInfos[i].uEAXEnv = 9; | |
2594 break; | |
2595 } | |
2596 if ( !strcmp(test_string, "GENERIC") ) | |
2597 { | |
2598 pInfos[i].uEAXEnv = 0; | |
2599 break; | |
2600 } | |
2601 if ( !strcmp(test_string, "PADDEDCELL") ) | |
2602 { | |
2603 pInfos[i].uEAXEnv = 1; | |
2604 break; | |
2605 } | |
2606 if ( !strcmp(test_string, "ROOM") ) | |
2607 { | |
2608 pInfos[i].uEAXEnv = 2; | |
2609 break; | |
2610 } | |
2611 if ( !strcmp(test_string, "BATHROOM") ) | |
2612 { | |
2613 pInfos[i].uEAXEnv = 3; | |
2614 break; | |
2615 } | |
2616 if ( !strcmp(test_string, "LIVINGROOM") ) | |
2617 { | |
2618 pInfos[i].uEAXEnv = 4; | |
2619 break; | |
2620 } | |
2621 if ( !strcmp(test_string, "AUDITORIUM") ) | |
2622 { | |
2623 pInfos[i].uEAXEnv = 6; | |
2624 break; | |
2625 } | |
2626 if ( !strcmp(test_string, "CONCERTHALL") ) | |
2627 { | |
2628 pInfos[i].uEAXEnv = 7; | |
2629 break; | |
2630 } | |
2631 if ( !strcmp(test_string, "HANGAR") ) | |
2632 { | |
2633 pInfos[i].uEAXEnv = 10; | |
2634 break; | |
2635 } | |
2636 if ( !strcmp(test_string, "CARPETEDHALLWAY") ) | |
2637 { | |
2638 pInfos[i].uEAXEnv = 11; | |
2639 break; | |
2640 } | |
2641 if ( !strcmp(test_string, "HALLWAY") ) | |
2642 { | |
2643 pInfos[i].uEAXEnv = 12; | |
2644 break; | |
2645 } | |
2646 if ( !strcmp(test_string, "STONECORRIDOR") ) | |
2647 { | |
2648 pInfos[i].uEAXEnv = 13; | |
2649 break; | |
2650 } | |
2651 if ( !strcmp(test_string, "ALLEY") ) | |
2652 { | |
2653 pInfos[i].uEAXEnv = 14; | |
2654 break; | |
2655 } | |
2656 if ( !strcmp(test_string, "QUARRY") ) | |
2657 { | |
2658 pInfos[i].uEAXEnv = 18; | |
2659 break; | |
2660 } | |
2661 if ( !strcmp(test_string, "PARKINGLOT") ) | |
2662 { | |
2663 pInfos[i].uEAXEnv = 20; | |
2664 break; | |
2665 } | |
2666 if ( !strcmp(test_string, "SEWERPIPE") ) | |
2667 { | |
2668 pInfos[i].uEAXEnv = 21; | |
2669 break; | |
2670 } | |
2671 if ( !strcmp(test_string, "DRUGGED") ) | |
2672 { | |
2673 pInfos[i].uEAXEnv = 23; | |
2674 break; | |
2675 } | |
2676 if ( !strcmp(test_string, "DIZZY") ) | |
2677 { | |
2678 pInfos[i].uEAXEnv = 24; | |
2679 break; | |
2680 } | |
2681 if ( !strcmp(test_string, "PSYCHOTIC") ) | |
2682 { | |
2683 pInfos[i].uEAXEnv = 25; | |
2684 break; | |
2685 } | |
2686 pInfos[i].uEAXEnv = 26; | |
2687 | |
2688 } | |
2689 break; | |
2690 } | |
2691 } | |
2692 else | |
2693 { | |
2694 break_loop = true; | |
2695 } | |
2696 ++decode_step; | |
2697 test_string=tmp_pos+1; | |
2698 } while ((decode_step<31)&&!break_loop); | |
2699 } | |
2700 | |
2701 uNumMaps = 77; | |
0 | 2702 } |
2703 // 453F62: using guessed type char Str[32]; | |
2704 | |
2705 //----- (004547A3) -------------------------------------------------------- | |
767 | 2706 MAP_TYPE MapStats::GetMapInfo(const char *Str2) |
2707 { | |
2708 assert(uNumMaps >= 2); | |
2709 | |
2710 for (uint i = 1; i < uNumMaps; ++i) | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
2711 if (!_stricmp(pInfos[i].pFilename, Str2)) |
767 | 2712 return (MAP_TYPE)i; |
2713 | |
2714 assert(false && "Map not found!"); | |
0 | 2715 } |
2716 | |
2717 //----- (004547E4) -------------------------------------------------------- | |
2718 void FactionTable::Initialize() | |
2719 { | |
237 | 2720 int i; |
2721 char* test_string; | |
2722 unsigned char c; | |
2723 bool break_loop; | |
2724 unsigned int temp_str_len; | |
2725 char* tmp_pos; | |
2726 int decode_step; | |
2727 int item_counter; | |
2728 | |
0 | 2729 if ( pHostileTXT_Raw ) |
1583 | 2730 free(pHostileTXT_Raw); |
237 | 2731 pHostileTXT_Raw = NULL; |
0 | 2732 pHostileTXT_Raw = (char *)pEvents_LOD->LoadRaw("hostile.txt", 0); |
2733 strtok(pHostileTXT_Raw, "\r"); | |
237 | 2734 for (i=0; i<89; ++i) |
2735 { | |
2736 test_string = strtok(NULL, "\r") + 1; | |
2737 break_loop = false; | |
2738 decode_step=0; | |
2739 do | |
2740 { | |
2741 c = *(unsigned char*)test_string; | |
2742 temp_str_len = 0; | |
2743 while((c!='\t')&&(c>0)) | |
2744 { | |
2745 ++temp_str_len; | |
2746 c=test_string[temp_str_len]; | |
2747 } | |
2748 tmp_pos=test_string+temp_str_len; | |
2749 if (*tmp_pos == 0) | |
2750 break_loop = true; | |
2751 *tmp_pos = 0; | |
2752 if (temp_str_len) | |
2753 { | |
2754 if ( decode_step >= 1 && decode_step < 90 ) | |
2755 relations[decode_step-1][i] = atoi(test_string); | |
2756 } | |
2757 else | |
2758 { | |
2759 break_loop = true; | |
2760 } | |
2761 ++decode_step; | |
2762 test_string=tmp_pos+1; | |
2763 } while ((decode_step<92)&&!break_loop); | |
2764 } | |
2765 if ( pHostileTXT_Raw) | |
0 | 2766 { |
1583 | 2767 free(pHostileTXT_Raw); |
237 | 2768 pHostileTXT_Raw = NULL; |
0 | 2769 } |
2770 } | |
2771 | |
2772 //----- (00458244) -------------------------------------------------------- | |
1783 | 2773 unsigned int SkillToMastery( unsigned int skill_value ) |
1067 | 2774 { |
1064 | 2775 switch (skill_value & 0x1C0) |
983 | 2776 { |
2777 case 0x100: return 4; // Grandmaster | |
2778 case 0x80: return 3; // Master | |
2779 case 0x40: return 2; // Expert | |
2780 case 0x00: return 1; // Normal | |
1409
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1408
diff
changeset
|
2781 } |
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1408
diff
changeset
|
2782 assert(false); |
c9e3b93ec570
Highlighted locations with "using uninitialized variable" warning.
Nomad
parents:
1408
diff
changeset
|
2783 return 0; |
0 | 2784 } |
2785 | |
2786 //----- (0045828B) -------------------------------------------------------- | |
2787 unsigned int __fastcall GetSpellColor(signed int a1) | |
2788 { | |
1799 | 2789 if ( a1 == 0 ) |
2790 return TargetColor(0, 0, 0); | |
2791 if ( a1 < 12 ) | |
2792 return TargetColor(255, 85, 0); | |
2793 if ( a1 < 23 ) | |
2794 return TargetColor(150, 212, 255); | |
2795 if ( a1 < 34 ) | |
2796 return TargetColor(0, 128, 255); | |
2797 if ( a1 < 45 ) | |
2798 return TargetColor(128, 128, 128); | |
2799 if ( a1 < 56 ) | |
2800 return TargetColor(225, 225, 225); | |
2801 if ( a1 < 67 ) | |
2802 return TargetColor(235, 15, 255); | |
2803 if ( a1 < 78 ) | |
2804 return TargetColor(255, 128, 0); | |
2805 if ( a1 < 89 ) | |
2806 return TargetColor(255, 255, 155); | |
2807 if ( a1 < 100 ) | |
2808 return TargetColor(192, 192, 240); | |
0 | 2809 } |
2810 | |
2811 //----- (004610AA) -------------------------------------------------------- | |
1637 | 2812 void __fastcall PrepareToLoadODM(unsigned int bLoading, ODMRenderParams *a2) |
0 | 2813 { |
2814 unsigned int v2; // edi@1 | |
1637 | 2815 ODMRenderParams *v3; // esi@1 |
0 | 2816 |
2817 v2 = bLoading; | |
2818 v3 = a2; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
2819 pGameLoadingUI_ProgressBar->Reset(27); |
0 | 2820 pSoundList->_4A9D79(0); |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
2821 uCurrentlyLoadedLevelType = LEVEL_Outdoor; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
2822 ODM_LoadAndInitialize(pCurrentMapName, v3); |
0 | 2823 if ( !v2 ) |
2824 TeleportToStartingPoint(uLevel_StartingPointType); | |
2825 viewparams->_443365(); | |
2826 PlayLevelMusic(); | |
2827 } | |
2828 // 6BE35C: using guessed type int uLevel_StartingPointType; | |
2829 | |
2830 //----- (00461103) -------------------------------------------------------- | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2831 void _461103_load_level_sub() |
0 | 2832 { |
2833 //GUIProgressBar *v0; // ebx@1 | |
2834 //signed int v1; // ebp@1 | |
2835 //char *v2; // esi@2 | |
2836 __int16 v3; // cx@3 | |
2837 int v4; // edx@8 | |
2838 //size_t v5; // edi@14 | |
2839 signed int v6; // esi@14 | |
2840 //char *v7; // edx@15 | |
2841 signed int v8; // ecx@16 | |
2842 int v9; // ecx@23 | |
2843 MonsterInfo *v10; // ebx@23 | |
2844 //int *v11; // esi@23 | |
2845 int v12; // esi@25 | |
2846 int v13; // eax@26 | |
2847 __int16 v14; // ax@41 | |
2848 //signed int v15; // [sp+10h] [bp-4Ch]@1 | |
2849 //signed int v16; // [sp+10h] [bp-4Ch]@14 | |
2850 signed int v17; // [sp+14h] [bp-48h]@3 | |
2851 signed int v18; // [sp+14h] [bp-48h]@23 | |
2852 int v19; // [sp+18h] [bp-44h]@1 | |
2853 signed int v20; // [sp+18h] [bp-44h]@14 | |
2854 int v21[16]; // [sp+1Ch] [bp-40h]@17 | |
2855 | |
598 | 2856 GenerateItemsInChest(); |
0 | 2857 //v0 = pGameLoadingUI_ProgressBar; |
2858 pGameLoadingUI_ProgressBar->Progress(); | |
2859 pParty->uFlags |= 2u; | |
2860 pParty->field_7B5_in_arena_quest = 0; | |
2861 //v1 = 0; | |
2862 dword_5C6DF8 = 1; | |
291 | 2863 pNPCStats->uNewlNPCBufPos = 0; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
2864 v19 = pMapStats->GetMapInfo(pCurrentMapName); |
0 | 2865 |
2866 //v15 = 0; | |
2867 for (uint i = 0; i < uNumActors; ++i) | |
2868 //if ( (signed int)uNumActors > 0 ) | |
2869 { | |
1202 | 2870 auto pActor = &pActors[i]; |
0 | 2871 //v2 = (char *)&pActors[0].uNPC_ID; |
2872 //do | |
2873 //{ | |
2874 v3 = pActor->pMonsterInfo.uID; | |
2875 v17 = 0; | |
1799 | 2876 if ( pActor->pMonsterInfo.uID >= 115 && pActor->pMonsterInfo.uID <= 186 |
2877 || pActor->pMonsterInfo.uID >= 232 && pActor->pMonsterInfo.uID <= 249 ) | |
0 | 2878 v17 = 1; |
2879 //v1 = 0; | |
2880 v4 = (v3 - 1) % 3; | |
2881 if ( 2 == v4 ) | |
2882 { | |
602 | 2883 if ( pActor->sNPC_ID && pActor->sNPC_ID < 5000 ) |
0 | 2884 continue; |
2885 } | |
2886 else | |
2887 { | |
2888 if ( v4 != 1 ) | |
2889 { | |
1416 | 2890 if ( v4 == 0 && pActor->sNPC_ID == 0 ) |
2891 pActor->sNPC_ID = 0; | |
2892 continue; | |
0 | 2893 } |
2894 } | |
602 | 2895 if ( pActor->sNPC_ID > 0 && pActor->sNPC_ID < 5000 ) |
0 | 2896 continue; |
2897 if ( v17 ) | |
2898 { | |
291 | 2899 pNPCStats->InitializeAdditionalNPCs(&pNPCStats->pAdditionalNPC[pNPCStats->uNewlNPCBufPos], v3, 0, v19); |
2900 v14 = LOWORD(pNPCStats->uNewlNPCBufPos) + 5000; | |
2901 ++pNPCStats->uNewlNPCBufPos; | |
602 | 2902 pActor->sNPC_ID = v14; |
0 | 2903 continue; |
2904 } | |
602 | 2905 pActor->sNPC_ID = 0; |
0 | 2906 //++v15; |
2907 //v2 += 836; | |
2908 //} | |
2909 //while ( v15 < (signed int)uNumActors ); | |
2910 } | |
2911 | |
2912 pGameLoadingUI_ProgressBar->Progress(); | |
2913 | |
2914 //v5 = uNumActors; | |
2915 v6 = 0; | |
2916 v20 = 0; | |
2917 //v16 = v1; | |
2918 | |
2919 for (uint i = 0; i < uNumActors; ++i) | |
2920 { | |
1202 | 2921 auto pActor = &pActors[i]; |
0 | 2922 //v7 = (char *)&pActors[0].pMonsterInfo; |
2923 //do | |
2924 //{ | |
2925 v8 = 0; | |
2926 if ( v6 > 0 ) | |
2927 { | |
2928 do | |
2929 { | |
2930 if ( v21[v8] == pActor->pMonsterInfo.uID - 1 ) | |
2931 break; | |
2932 ++v8; | |
2933 } | |
2934 while ( v8 < v6 ); | |
2935 } | |
2936 | |
2937 if ( v8 == v6 ) | |
2938 { | |
2939 v21[v6++] = pActor->pMonsterInfo.uID - 1; | |
2940 v20 = v6; | |
2941 if ( v6 == 16 ) | |
2942 break; | |
2943 } | |
2944 //++v16; | |
2945 //v7 += 836; | |
2946 //} | |
2947 //while ( v16 < (signed int)v5 ); | |
2948 } | |
2949 | |
2950 pGameLoadingUI_ProgressBar->Progress(); | |
2951 | |
2952 if ( v6 > 0 ) | |
2953 { | |
2954 int _v0 = 0; | |
2955 do | |
2956 { | |
2957 v9 = v21[_v0]; | |
2958 v18 = 4; | |
2959 v10 = &pMonsterStats->pInfos[v9 + 1]; | |
2960 //v11 = (int *)pMonsterList->pMonsters[v9].pSoundSampleIDs; | |
2961 auto v11 = &pMonsterList->pMonsters[v9]; | |
2962 do | |
2963 { | |
2964 pSoundList->LoadSound(v11->pSoundSampleIDs[4 - v18], 0); | |
2965 //v11 = (int *)((char *)v11 + 2); | |
2966 --v18; | |
2967 } | |
2968 while ( v18 ); | |
2969 v12 = 0; | |
2970 do | |
2971 v13 = pSoundList->LoadSound(v12++ + word_4EE088_sound_ids[v10->uSpell1ID], 1); | |
2972 while ( v13 ); | |
2973 ++_v0; | |
2974 } | |
2975 while ( _v0 < v6 ); | |
2976 //v0 = pGameLoadingUI_ProgressBar; | |
2977 //v1 = 0; | |
2978 } | |
2979 | |
2980 pGameLoadingUI_ProgressBar->Progress(); | |
2981 | |
2982 if ( dword_6BE368_debug_settings_2 & 4 ) | |
2983 uNumActors = 0; | |
2984 if ( dword_6BE368_debug_settings_2 & 8 ) | |
2985 uNumLevelDecorations = 0; | |
1459 | 2986 init_event_triggers(); |
0 | 2987 |
2988 pGameLoadingUI_ProgressBar->Progress(); | |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
2989 |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2990 pGame->pIndoorCameraD3D->vPartyPos.x = 0; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2991 pGame->pIndoorCameraD3D->vPartyPos.y = 0; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2992 pGame->pIndoorCameraD3D->vPartyPos.z = 100; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2993 pGame->pIndoorCameraD3D->sRotationX = 0; |
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
2994 pGame->pIndoorCameraD3D->sRotationY = 0; |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
2995 viewparams->bRedrawGameUI = true; |
783 | 2996 uLevel_StartingPointType = MapStartPoint_Party; |
0 | 2997 pSprites_LOD->_461397(); |
2998 pPaletteManager->LockTestAll(); | |
2999 if ( pParty->pPickedItem.uItemID != 0 ) | |
3000 pMouse->SetCursorBitmapFromItemID(pParty->pPickedItem.uItemID); | |
3001 } | |
3002 | |
3003 //----- (004613C4) -------------------------------------------------------- | |
1459 | 3004 void init_event_triggers() |
0 | 3005 { |
1459 | 3006 uint id = pDecorationList->GetDecorIdByName("Event Trigger"); |
3007 | |
3008 num_event_triggers = 0; | |
3009 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
3010 if (pLevelDecorations[i].uDecorationDescID == id) | |
3011 event_triggers[num_event_triggers++] = i; | |
0 | 3012 } |
3013 | |
3014 //----- (004627B7) -------------------------------------------------------- | |
762 | 3015 void MainMenu_Loop() |
0 | 3016 { |
3017 GUIButton *pButton; // eax@27 | |
3018 unsigned int pControlParam; // ecx@35 | |
3019 int v10; // ecx@36 | |
3020 int v11; // ecx@37 | |
3021 unsigned int pY; // [sp-18h] [bp-54h]@39 | |
3022 Texture *pTexture; // [sp-14h] [bp-50h]@39 | |
3023 GUIButton *pButton2; // [sp+0h] [bp-3Ch]@27 | |
3024 GUIWindow *pWindow; // [sp+4h] [bp-38h]@11 | |
3025 | |
151 | 3026 pCurrentScreen = SCREEN_GAME; |
1038 | 3027 |
0 | 3028 pGUIWindow2 = 0; |
3029 pAudioPlayer->StopChannels(-1, -1); | |
3030 pMouse->RemoveHoldingItem(); | |
762 | 3031 |
3032 pIcons_LOD->_inlined_sub2(); | |
3033 | |
165 | 3034 pWindow_MainMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0); |
3035 auto pNew = pIcons_LOD->LoadTexturePtr("title_new", TEXTURE_16BIT_PALETTE); | |
0 | 3036 auto pLoad = pIcons_LOD->LoadTexturePtr("title_load", TEXTURE_16BIT_PALETTE); |
3037 auto pCredits = pIcons_LOD->LoadTexturePtr("title_cred", TEXTURE_16BIT_PALETTE); | |
3038 auto pExit = pIcons_LOD->LoadTexturePtr("title_exit", TEXTURE_16BIT_PALETTE); | |
948 | 3039 |
3040 pMainMenu_BtnNew = pWindow_MainMenu->CreateButton(495, 172, pNew->uTextureWidth, pNew->uTextureHeight, 1, 0, UIMSG_MainMenu_ShowPartyCreationWnd, 0, 'N', "", pNew, 0); | |
3041 pMainMenu_BtnLoad = pWindow_MainMenu->CreateButton(495, 227, pLoad->uTextureWidth, pLoad->uTextureHeight, 1, 0, UIMSG_MainMenu_ShowLoadWindow, 1, 'L', "", pLoad, 0); | |
3042 pMainMenu_BtnCredits = pWindow_MainMenu->CreateButton(495, 282, pCredits->uTextureWidth, pCredits->uTextureHeight, 1, 0, UIMSG_ShowCredits, 2, 'C', "", pCredits, 0); | |
3043 pMainMenu_BtnExit = pWindow_MainMenu->CreateButton(495, 337, pExit->uTextureWidth, pExit->uTextureHeight, 1, 0, UIMSG_ExitToWindows, 3, 0, "", pExit, 0); | |
3044 | |
0 | 3045 pTexture_PCX.Release(); |
3046 pTexture_PCX.Load("title.pcx", 0); | |
3047 SetCurrentMenuID(MENU_MAIN); | |
1802 | 3048 //SetForegroundWindow(hWnd); |
3049 //SendMessageW(hWnd, WM_ACTIVATEAPP, 1, 0); | |
0 | 3050 while (GetCurrentMenuID() == MENU_MAIN || GetCurrentMenuID() == MENU_SAVELOAD) |
3051 { | |
3052 POINT pt; | |
3053 pMouse->GetCursorPos(&pt); | |
3054 pWindow = pWindow_MainMenu; | |
165 | 3055 if ( GetCurrentMenuID() == MENU_SAVELOAD) |
0 | 3056 { |
151 | 3057 if ( pCurrentScreen != SCREEN_LOADGAME ) |
0 | 3058 { |
3059 pTexture_PCX.Release(); | |
3060 pTexture_PCX.Load("lsave640.pcx", 0); | |
3061 pGUIWindow2 = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0); | |
151 | 3062 pCurrentScreen = SCREEN_LOADGAME; |
1033 | 3063 LoadUI_Load(0); |
0 | 3064 } |
3065 pWindow = pGUIWindow_CurrentMenu; | |
3066 } | |
3067 | |
1532 | 3068 for (MSG msg; PeekMessage(&msg, 0, 0, 0, PM_REMOVE);) |
0 | 3069 { |
3070 if (msg.message == WM_QUIT) | |
3071 Game_DeinitializeAndTerminate(0); | |
3072 TranslateMessage(&msg); | |
1532 | 3073 DispatchMessage(&msg); |
0 | 3074 } |
3075 if (dword_6BE364_game_settings_1 & 0x0100) | |
3076 { | |
3077 WaitMessage(); | |
3078 } | |
3079 else | |
3080 { | |
3081 pRenderer->BeginScene(); | |
3082 pRenderer->DrawTextureRGB(0, 0, &pTexture_PCX); | |
1038 | 3083 |
165 | 3084 GUI_MainMenuMessageProc(); |
0 | 3085 GUI_UpdateWindows(); |
1038 | 3086 |
165 | 3087 if (GetCurrentMenuID() != MENU_MAIN) |
3088 { | |
961 | 3089 if (GetCurrentMenuID() == MENU_LoadingProcInMainMenu) |
0 | 3090 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
3091 pIcons_LOD->RemoveTexturesPackFromTextureList(); |
0 | 3092 pGUIWindow_CurrentMenu->Release(); |
3093 pGUIWindow_CurrentMenu = 0; | |
151 | 3094 pCurrentScreen = SCREEN_GAME; |
0 | 3095 viewparams->bRedrawGameUI = 1; |
3096 } | |
3097 } | |
3098 else | |
3099 { | |
1458 | 3100 if ( !pModalWindow )// ??? |
0 | 3101 { |
3102 pButton = pWindow->pControlsHead; | |
3103 for ( pButton = pWindow->pControlsHead; pButton; pButton = pButton->pNext ) | |
3104 { | |
3105 if ( pt.x >= (signed int)pButton->uX && pt.x <= (signed int)pButton->uZ | |
3106 && pt.y >= (signed int)pButton->uY && pt.y <= (signed int)pButton->uW | |
3107 && pWindow == pWindow_MainMenu ) | |
3108 { | |
832 | 3109 pControlParam = pButton->msg_param; |
0 | 3110 switch (pControlParam) // ïîäñâåòêà êíîïîê |
3111 { | |
3112 case 0: | |
3113 pTexture = pNew; | |
3114 pY = 172; | |
3115 break; | |
3116 case 1: | |
3117 pTexture = pLoad; | |
3118 pY = 227; | |
3119 break; | |
3120 case 2: | |
3121 pTexture = pCredits; | |
3122 pY = 282; | |
3123 break; | |
3124 case 3: | |
3125 pTexture = pExit; | |
3126 pY = 337; | |
3127 break; | |
3128 } | |
3129 pRenderer->DrawTextureIndexed(495, pY, pTexture); //ïîäñâåòêà êíîïîê | |
3130 } | |
3131 } | |
3132 } | |
3133 } | |
3134 pRenderer->EndScene(); | |
3135 pRenderer->Present(); | |
3136 } | |
3137 } | |
970 | 3138 GUI_MainMenuMessageProc(); |
0 | 3139 pRenderer->BeginScene(); |
3140 GUI_UpdateWindows(); | |
3141 pRenderer->EndScene(); | |
3142 pRenderer->Present(); | |
961 | 3143 pTexture_PCX.Release(); |
0 | 3144 if ( pGUIWindow2 ) |
3145 { | |
3146 pGUIWindow2->Release(); | |
3147 pGUIWindow2 = 0; | |
3148 } | |
3149 pWindow_MainMenu->Release(); | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
3150 pIcons_LOD->RemoveTexturesPackFromTextureList(); |
0 | 3151 } |
3152 | |
3153 | |
3154 //----- (00464479) -------------------------------------------------------- | |
1583 | 3155 void ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows() |
0 | 3156 { |
3157 int v0; // esi@9 | |
3158 | |
3159 if (pMouse) | |
3160 pMouse->SetCursorBitmap("MICON1"); | |
3161 | |
3162 pPaletteManager->ResetNonLocked(); | |
3163 pBitmaps_LOD->ReleaseAll2(); | |
3164 pSprites_LOD->DeleteSomeOtherSprites(); | |
3165 pIcons_LOD->ReleaseAll2(); | |
3166 if (pRenderer->pRenderD3D) | |
3167 { | |
3168 pRenderer->field_1036B8 = 0; | |
3169 pRenderer->_gpu_memory_used = 0; | |
3170 } | |
3171 sub_46080D(); | |
3172 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
3173 pIndoor->Release(); | |
3174 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
1583 | 3175 pOutdoor->Release(); |
0 | 3176 |
3177 pAudioPlayer->StopChannels(-1, -1); | |
3178 pSoundList->_4A9D79(0); | |
3179 uCurrentlyLoadedLevelType = LEVEL_null; | |
3180 pSpriteFrameTable->ResetSomeSpriteFlags(); | |
3181 v0 = uNumVisibleWindows; | |
349 | 3182 pParty->armageddon_timer = 0; |
0 | 3183 while ( v0 > 0 ) |
3184 pWindowList[pVisibleWindowsIdxs[v0--] - 1].Release(); | |
3185 } | |
3186 | |
3187 //----- (004646F0) -------------------------------------------------------- | |
1458 | 3188 void PrepareWorld(unsigned int _0_box_loading_1_fullscreen) |
0 | 3189 { |
3190 if ( pRenderer->pRenderD3D ) | |
3191 pGame->pVisInstance->_4C1A02(); | |
3192 pEventTimer->Pause(); | |
3193 pMiscTimer->Pause(); | |
3194 pParty->uFlags = 2; | |
1517 | 3195 CastSpellInfoHelpers::_427D48(); |
0 | 3196 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); |
1458 | 3197 DoPrepareWorld(0, (_0_box_loading_1_fullscreen == 0) + 1); |
0 | 3198 pMiscTimer->Resume(); |
3199 pEventTimer->Resume(); | |
3200 } | |
3201 | |
3202 //----- (00464761) -------------------------------------------------------- | |
1583 | 3203 void Game_DeinitializeAndTerminate(int exitCode) |
0 | 3204 { |
1586 | 3205 SetPriorityClass(GetCurrentProcess(), NORMAL_PRIORITY_CLASS); |
0 | 3206 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); |
3207 pGame->Deinitialize(); | |
3208 pRenderer->Release2(); | |
1802 | 3209 delete window; |
3210 //if ( !DestroyWindow(hWnd) ) | |
3211 // GetLastError(); | |
1583 | 3212 exit(exitCode); |
0 | 3213 } |
3214 | |
3215 //----- (004647AB) -------------------------------------------------------- | |
762 | 3216 void FinalInitialization() |
0 | 3217 { |
3218 pViewport->SetScreen(viewparams->uSomeX, viewparams->uSomeY, viewparams->uSomeZ, viewparams->uSomeW); | |
3219 pViewport->_4C02F8((signed __int64)(flt_6BE3A0 * 65536.0)); | |
3220 | |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
3221 //pIndoorCamera = new IndoorCamera; |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
3222 //pIndoorCamera->Initialize(65, viewparams->uScreen_BttmR_X - viewparams->uScreen_topL_X + 1, |
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1637
diff
changeset
|
3223 // viewparams->uScreen_BttmR_Y - viewparams->uScreen_topL_Y + 1); |
0 | 3224 |
3225 InitializeTurnBasedAnimations(&stru_50C198); | |
762 | 3226 pBitmaps_LOD->_inlined_sub1(); |
3227 pSprites_LOD->_inlined_sub1(); | |
3228 pIcons_LOD->_inlined_sub1(); | |
0 | 3229 } |
3230 // 6BE3A0: using guessed type float flt_6BE3A0; | |
3231 | |
3232 //----- (00464839) -------------------------------------------------------- | |
1583 | 3233 char Is_out15odm_underwater() |
0 | 3234 { |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3235 return _stricmp(pCurrentMapName, "out15.odm") == 0; |
0 | 3236 } |
3237 | |
3238 //----- (00464851) -------------------------------------------------------- | |
1583 | 3239 void SetUnderwaterFog() |
0 | 3240 { |
3241 day_fogrange_1 = 50; | |
3242 day_fogrange_2 = 5000; | |
3243 } | |
3244 | |
3245 //----- (00464866) -------------------------------------------------------- | |
1458 | 3246 void DoPrepareWorld(unsigned int bLoading, int _1_fullscreen_loading_2_box) |
0 | 3247 { |
1458 | 3248 //int v2; // esi@1 |
0 | 3249 char *v3; // eax@1 |
3250 //char *v4; // eax@1 | |
3251 unsigned int v5; // eax@3 | |
3252 //size_t v6; // ecx@10 | |
3253 //char *v7; // eax@11 | |
3254 char Str1[20]; // [sp+Ch] [bp-18h]@1 | |
3255 unsigned int v9; // [sp+20h] [bp-4h]@1 | |
3256 | |
3257 v9 = bLoading; | |
3258 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); | |
3259 pDecalBuilder->Reset(0); | |
1458 | 3260 pGameLoadingUI_ProgressBar->Initialize(_1_fullscreen_loading_2_box == 1 ? GUIProgressBar::TYPE_Fullscreen : |
3261 GUIProgressBar::TYPE_Box); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3262 strcpy(Str1, pCurrentMapName); |
0 | 3263 v3 = strtok(Str1, "."); |
3264 strcpy(Str1, v3); | |
3265 Level_LoadEvtAndStr(Str1); | |
3266 LoadLevel_InitializeLevelEvt(); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3267 strcpy(Str1, pCurrentMapName); |
0 | 3268 _strrev(Str1); |
3269 strtok(Str1, "."); | |
3270 _strrev(Str1); | |
3271 | |
3272 for (uint i = 0; i < 1000; ++i) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
3273 pSpriteObjects[i].uObjectDescID = 0; |
0 | 3274 |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3275 v5 = pMapStats->GetMapInfo(pCurrentMapName); |
1541 | 3276 bUnderwater = false; |
0 | 3277 uLevelMapStatsID = v5; |
3278 pGame->uFlags2 &= 0xFFFFFFF7u; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3279 if ( !_stricmp(pCurrentMapName, "out15.odm") ) |
0 | 3280 { |
1541 | 3281 bUnderwater = true; |
1583 | 3282 pGame->uFlags2 |= GAME_FLAGS_2_ALTER_GRAVITY; |
0 | 3283 } |
831 | 3284 pParty->floor_face_pid = 0; |
1104 | 3285 if ( _stricmp(Str1, "blv") ) |
0 | 3286 PrepareToLoadODM(v9, 0); |
3287 else | |
3288 PrepareToLoadBLV(v9); | |
3289 pAudioPlayer->SetMapEAX(); | |
1459 | 3290 _461103_load_level_sub(); |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3291 if ( !_stricmp(pCurrentMapName, "d11.blv") || !_stricmp(pCurrentMapName, "d10.blv") ) |
0 | 3292 { |
1583 | 3293 //spawning grounds & walls of mist - no loot & exp from monsters |
0 | 3294 |
3295 for (uint i = 0; i < uNumActors; ++i) | |
3296 { | |
3297 pActors[i].pMonsterInfo.uTreasureType = 0; | |
3298 pActors[i].pMonsterInfo.uTreasureDiceRolls = 0; | |
3299 pActors[i].pMonsterInfo.uExp = 0; | |
3300 } | |
3301 } | |
3302 bDialogueUI_InitializeActor_NPC_ID = 0; | |
3303 OnMapLoad(); | |
3304 pGameLoadingUI_ProgressBar->Progress(); | |
1459 | 3305 memset(&pRenderer->pBillboardRenderListD3D, 0, sizeof(pRenderer->pBillboardRenderListD3D)); |
0 | 3306 pGameLoadingUI_ProgressBar->Release(); |
3307 _flushall(); | |
3308 } | |
3309 | |
3310 //----- (004649EF) -------------------------------------------------------- | |
3311 int __fastcall ReadWindowsRegistryInt(const char *pKey, int uDefValue) | |
3312 { | |
3313 int v3; // [sp+4h] [bp-24h]@1 | |
3314 DWORD cbData; // [sp+8h] [bp-20h]@1 | |
3315 LPCSTR lpValueName; // [sp+Ch] [bp-1Ch]@1 | |
3316 DWORD dwDisposition; // [sp+10h] [bp-18h]@2 | |
3317 BYTE Data[4]; // [sp+14h] [bp-14h]@5 | |
3318 HKEY hKey; // [sp+18h] [bp-10h]@1 | |
3319 HKEY phkResult; // [sp+1Ch] [bp-Ch]@1 | |
3320 HKEY v10; // [sp+20h] [bp-8h]@1 | |
3321 HKEY v11; // [sp+24h] [bp-4h]@1 | |
3322 | |
3323 v3 = uDefValue; | |
3324 lpValueName = pKey; | |
3325 v11 = 0; | |
3326 v10 = 0; | |
3327 hKey = 0; | |
3328 phkResult = 0; | |
3329 cbData = 4; | |
27 | 3330 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, KEY_READ|KEY_WOW64_32KEY, &hKey) )// for 64 bit |
0 | 3331 { |
3332 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
3333 { | |
3334 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v10, &dwDisposition) ) | |
3335 { | |
3336 if ( !RegCreateKeyExA(v10, "1.0", 0, "", 0, 0xF003Fu, 0, &v11, &dwDisposition) ) | |
3337 { | |
3338 if ( RegQueryValueExA(v11, lpValueName, 0, 0, Data, &cbData) ) | |
3339 { | |
3340 *(int *)Data = v3; | |
3341 RegSetValueExA(v11, lpValueName, 0, 4u, Data, 4u); | |
3342 } | |
3343 RegCloseKey(v11); | |
3344 } | |
3345 RegCloseKey(v10); | |
3346 } | |
3347 RegCloseKey(phkResult); | |
3348 } | |
3349 RegCloseKey(hKey); | |
3350 } | |
3351 return *(int *)Data; | |
3352 } | |
3353 | |
3354 //----- (00464B02) -------------------------------------------------------- | |
3355 void __fastcall WriteWindowsRegistryString(const char *pKey, const char *pString) | |
3356 { | |
3357 size_t v2; // eax@5 | |
3358 const char *lpValueName; // [sp+4h] [bp-1Ch]@1 | |
3359 const char *Str; // [sp+8h] [bp-18h]@1 | |
3360 DWORD dwDisposition; // [sp+Ch] [bp-14h]@2 | |
3361 HKEY hKey; // [sp+10h] [bp-10h]@1 | |
3362 HKEY phkResult; // [sp+14h] [bp-Ch]@1 | |
3363 HKEY v8; // [sp+18h] [bp-8h]@1 | |
3364 HKEY v9; // [sp+1Ch] [bp-4h]@1 | |
3365 | |
3366 Str = pString; | |
3367 lpValueName = pKey; | |
3368 v9 = 0; | |
3369 v8 = 0; | |
3370 hKey = 0; | |
3371 phkResult = 0; | |
3372 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) ) | |
3373 { | |
3374 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
3375 { | |
3376 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v8, &dwDisposition) ) | |
3377 { | |
3378 if ( !RegCreateKeyExA(v8, "1.0", 0, "", 0, 0xF003Fu, 0, &v9, &dwDisposition) ) | |
3379 { | |
3380 v2 = strlen(Str); | |
3381 RegSetValueExA(v9, lpValueName, 0, 1u, (const BYTE *)Str, v2 + 1); | |
3382 RegCloseKey(v9); | |
3383 } | |
3384 RegCloseKey(v8); | |
3385 } | |
3386 RegCloseKey(phkResult); | |
3387 } | |
3388 RegCloseKey(hKey); | |
3389 } | |
3390 } | |
3391 | |
3392 //----- (00464BEF) -------------------------------------------------------- | |
3393 void __fastcall ReadWindowsRegistryString(const char *pKeyName, char *pOutString, int uBufLen, const char *pDefaultValue) | |
3394 { | |
3395 LSTATUS (__stdcall *v4)(HKEY); // esi@1 | |
3396 LSTATUS result; // eax@7 | |
3397 DWORD Type; // [sp+Ch] [bp-24h]@5 | |
3398 LPCSTR lpValueName; // [sp+10h] [bp-20h]@1 | |
3399 DWORD cbData; // [sp+14h] [bp-1Ch]@1 | |
3400 LPBYTE Dest; // [sp+18h] [bp-18h]@1 | |
3401 DWORD dwDisposition; // [sp+1Ch] [bp-14h]@2 | |
3402 HKEY phkResult; // [sp+20h] [bp-10h]@1 | |
3403 HKEY hKey; // [sp+24h] [bp-Ch]@1 | |
3404 HKEY v13; // [sp+28h] [bp-8h]@1 | |
3405 HKEY v14; // [sp+2Ch] [bp-4h]@1 | |
3406 | |
3407 cbData = uBufLen; | |
3408 Dest = (LPBYTE)pOutString; | |
3409 lpValueName = pKeyName; | |
3410 v14 = 0; | |
3411 v13 = 0; | |
3412 hKey = 0; | |
3413 phkResult = 0; | |
3414 v4 = RegCloseKey; | |
3415 if ( RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) | |
3416 || RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) | |
3417 || RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v13, &dwDisposition) | |
3418 || RegCreateKeyExA(v13, "1.0", 0, "", 0, 0xF003Fu, 0, &v14, &dwDisposition) ) | |
1416 | 3419 { |
3420 result = (LSTATUS)strncpy((char *)Dest, pDefaultValue, uBufLen); | |
3421 } | |
3422 else if ( RegQueryValueExA(v14, lpValueName, 0, &Type, Dest, &cbData) ) | |
0 | 3423 { |
3424 RegCloseKey(v14); | |
3425 v14 = 0; | |
3426 result = (LSTATUS)strncpy((char *)Dest, pDefaultValue, uBufLen); | |
1416 | 3427 } |
3428 else | |
3429 { | |
3430 v4 = RegCloseKey; | |
3431 RegCloseKey(v14); | |
3432 v14 = 0; | |
3433 RegCloseKey(v13); | |
3434 v13 = 0; | |
3435 RegCloseKey(phkResult); | |
3436 phkResult = 0; | |
3437 result = RegCloseKey(hKey); | |
3438 hKey = 0; | |
3439 } | |
0 | 3440 if ( v14 ) |
3441 result = v4(v14); | |
3442 if ( v13 ) | |
3443 result = v4(v13); | |
3444 if ( hKey ) | |
3445 result = v4(hKey); | |
3446 if ( phkResult ) | |
3447 result = v4(phkResult); | |
3448 } | |
3449 | |
3450 //----- (00464D32) -------------------------------------------------------- | |
3451 void __fastcall WriteWindowsRegistryInt(const char *pKey, int val) | |
3452 { | |
3453 const char *lpValueName; // [sp+4h] [bp-1Ch]@1 | |
3454 BYTE Data[4]; // [sp+8h] [bp-18h]@1 | |
3455 DWORD dwDisposition; // [sp+Ch] [bp-14h]@2 | |
3456 HKEY hKey; // [sp+10h] [bp-10h]@1 | |
3457 HKEY phkResult; // [sp+14h] [bp-Ch]@1 | |
3458 HKEY v7; // [sp+18h] [bp-8h]@1 | |
3459 HKEY v8; // [sp+1Ch] [bp-4h]@1 | |
3460 | |
3461 *(int *)Data = val; | |
3462 lpValueName = pKey; | |
3463 v8 = 0; | |
3464 v7 = 0; | |
3465 hKey = 0; | |
3466 phkResult = 0; | |
3467 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) ) | |
3468 { | |
3469 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
3470 { | |
3471 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v7, &dwDisposition) ) | |
3472 { | |
3473 if ( !RegCreateKeyExA(v7, "1.0", 0, "", 0, 0xF003Fu, 0, &v8, &dwDisposition) ) | |
3474 { | |
3475 RegSetValueExA(v8, lpValueName, 0, 4u, Data, 4u); | |
3476 RegCloseKey(v8); | |
3477 } | |
3478 RegCloseKey(v7); | |
3479 } | |
3480 RegCloseKey(phkResult); | |
3481 } | |
3482 RegCloseKey(hKey); | |
3483 } | |
3484 } | |
3485 | |
3486 //----- (00464E17) -------------------------------------------------------- | |
3487 bool __fastcall CheckMM7CD(char c) | |
3488 { | |
3489 char DstBuf[256]; // [sp+Ch] [bp-218h]@1 | |
3490 char strCommand[256]; // [sp+10Ch] [bp-118h]@1 | |
3491 char Filename[20]; // [sp+20Ch] [bp-18h]@1 | |
3492 | |
3493 | |
3494 wchar_t pMagicPath[1024]; | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
3495 swprintf(pMagicPath, wcslen(L"%C:\\anims\\magic7.vid"), L"%C:\\anims\\magic7.vid", c); |
0 | 3496 if (GetFileAttributesW(pMagicPath) == -1) |
3497 return false; | |
3498 | |
3499 wsprintfA(strCommand, "open %c: type cdaudio alias CD", c); | |
3500 if (!mciSendStringA(strCommand, DstBuf, 0xFFu, 0)) | |
3501 { | |
3502 wsprintfA(strCommand, "info CD UPC wait"); | |
3503 mciSendStringA(strCommand, DstBuf, 0xFFu, 0); | |
3504 wsprintfA(strCommand, "close CD"); | |
3505 mciSendStringA(strCommand, DstBuf, 0xFFu, 0); | |
3506 } | |
3507 | |
3508 memcpy(Filename, "X:\\anims\\magic7.vid", sizeof(Filename)); | |
3509 *Filename = c; | |
3510 | |
3511 auto f = fopen(Filename, "rb"); | |
3512 if (!f) | |
3513 return false; | |
3514 | |
3515 if (!fseek(f, 0, SEEK_END)) | |
3516 { | |
3517 if (!fseek(f, -100, SEEK_CUR)) | |
3518 fread(DstBuf, 1u, 0x64u, f); | |
3519 | |
3520 fclose(f); | |
3521 return true; | |
3522 } | |
3523 fclose(f); | |
3524 return false; | |
3525 } | |
3526 | |
3527 //----- (00464F1B) -------------------------------------------------------- | |
3528 signed int __stdcall InsertMM7CDDialogFunc(HWND hDlg, int a2, __int16 a3, int a4) | |
3529 { | |
3530 char v4; // zf@3 | |
3531 int v6; // eax@10 | |
3532 int v7; // eax@11 | |
3533 int v8; // eax@12 | |
3534 int v9; // eax@13 | |
3535 BOOL (__stdcall *v10)(HWND, int, LPCSTR); // edi@15 | |
3536 const CHAR *v11; // [sp-Ch] [bp-Ch]@15 | |
3537 INT_PTR v12; // [sp-4h] [bp-4h]@5 | |
3538 | |
3539 if ( a2 == 272 ) | |
3540 { | |
3541 hInsertCDWindow = hDlg; | |
3542 v6 = (GetUserDefaultLangID() & 0x3FF) - 7; | |
3543 if ( v6 ) | |
3544 { | |
3545 v7 = v6 - 3; | |
3546 if ( v7 ) | |
3547 { | |
3548 v8 = v7 - 2; | |
3549 if ( v8 ) | |
3550 { | |
3551 v9 = v8 - 4; | |
3552 if ( v9 ) | |
3553 { | |
3554 if ( v9 != 5 ) | |
3555 return 0; | |
3556 SetWindowTextA(hDlg, "Wloz CD-ROM numer 2"); | |
3557 v10 = SetDlgItemTextA; | |
3558 SetDlgItemTextA(hDlg, 1010, "Wloz CD-ROM numer 2 Might and Magic® VII."); | |
3559 v11 = "Odwolaj"; | |
3560 } | |
3561 else | |
3562 { | |
3563 SetWindowTextA(hDlg, "Inserire il secondo CD"); | |
3564 v10 = SetDlgItemTextA; | |
3565 SetDlgItemTextA(hDlg, 1010, "Inserire il secondo CD di Might and Magic® VII."); | |
3566 v11 = "Annulla"; | |
3567 } | |
3568 } | |
3569 else | |
3570 { | |
3571 SetWindowTextA(hDlg, "Insérez le CD 2"); | |
3572 v10 = SetDlgItemTextA; | |
3573 SetDlgItemTextA(hDlg, 1010, "Insérez Might & Magic® VII CD 2."); | |
3574 v11 = "Supprimer"; | |
3575 } | |
3576 } | |
3577 else | |
3578 { | |
3579 SetWindowTextA(hDlg, "Por favor, inserte disco 2"); | |
3580 v10 = SetDlgItemTextA; | |
3581 SetDlgItemTextA(hDlg, 1010, "Por favor, inserte disco 2 de Might & Magic® VII."); | |
3582 v11 = "Cancelar"; | |
3583 } | |
3584 } | |
3585 else | |
3586 { | |
3587 SetWindowTextA(hDlg, "Bitte CD 2 einlegen"); | |
3588 v10 = SetDlgItemTextA; | |
3589 SetDlgItemTextA(hDlg, 1010, "Bitte CD 2 von Might and Magic® VII einlegen."); | |
3590 v11 = "Abbrechen"; | |
3591 } | |
3592 v10(hDlg, 2, v11); | |
3593 return 0; | |
3594 } | |
3595 if ( a2 == 273 ) | |
3596 { | |
3597 if ( a3 == 2 ) | |
3598 { | |
3599 v12 = 0; | |
3600 EndDialog(hDlg, v12); | |
3601 return 1; | |
3602 } | |
3603 v4 = a3 == 1; | |
3604 } | |
3605 else | |
3606 { | |
3607 v4 = a2 == 1025; | |
3608 } | |
3609 if ( v4 ) | |
3610 { | |
3611 v12 = 1; | |
1416 | 3612 EndDialog(hDlg, v12); |
3613 return 1; | |
0 | 3614 } |
3615 return 0; | |
3616 } | |
3617 | |
3618 //----- (00465061) -------------------------------------------------------- | |
3619 bool __fastcall FindMM7CD(HWND hWnd, char *pCDDrive) | |
3620 { | |
3621 char drive[4] = {'X', ':', '\\', 0}; | |
3622 | |
3623 bool bGotCDFromRegistry = false; | |
3624 | |
3625 HKEY hSoftware = nullptr, | |
3626 hNWC = nullptr, | |
3627 hMM7 = nullptr, | |
3628 hVersion = nullptr; | |
3629 if (!RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hSoftware)) | |
3630 { | |
3631 if (!RegOpenKeyExA(hSoftware, "New World Computing", 0, 0x2001Fu, &hNWC)) | |
3632 { | |
3633 if (!RegOpenKeyExA(hNWC, "Might and Magic VII", 0, 0x2001Fu, &hMM7)) | |
3634 { | |
3635 if (!RegOpenKeyExA(hMM7, "1.0", 0, 0x2001Fu, &hVersion)) | |
3636 { | |
3637 DWORD cbData = 3; | |
3638 if (!RegQueryValueExA(hVersion, "CDDrive", 0, 0, (BYTE *)drive, &cbData)) | |
3639 bGotCDFromRegistry = true; | |
3640 } | |
3641 RegCloseKey(hVersion); | |
3642 } | |
3643 RegCloseKey(hMM7); | |
3644 } | |
3645 RegCloseKey(hNWC); | |
3646 } | |
3647 RegCloseKey(hSoftware); | |
3648 | |
3649 if (bGotCDFromRegistry) | |
3650 if (CheckMM7CD(*drive)) | |
3651 { | |
3652 cMM7GameCDDriveLetter = *drive; | |
3653 return true; | |
3654 } | |
3655 | |
3656 while (true) | |
3657 { | |
3658 for (uint i = 0; i < 26; ++i) | |
3659 { | |
3660 drive[0] = 'A' + i; | |
3661 | |
3662 if (GetDriveTypeA(drive) == DRIVE_CDROM) | |
3663 if (CheckMM7CD(*drive)) | |
3664 { | |
3665 cMM7GameCDDriveLetter = *drive; | |
3666 WriteWindowsRegistryString("CDDrive", drive); | |
3667 return true; | |
3668 } | |
3669 } | |
3670 | |
1802 | 3671 if (DialogBoxParamA(GetModuleHandleW(nullptr), "InsertCD", hWnd, (DLGPROC)InsertMM7CDDialogFunc, 0)) |
0 | 3672 continue; |
3673 return false; | |
3674 } | |
3675 } | |
3676 | |
1655 | 3677 |
3678 | |
0 | 3679 //----- (004651F4) -------------------------------------------------------- |
1655 | 3680 bool MM7_Initialize(int game_width, int game_height) |
0 | 3681 { |
3682 wchar_t pCurrentDir[1024]; | |
3683 _wgetcwd(pCurrentDir, 1024); | |
3684 | |
3685 wchar_t pMM6IniFile[1024]; | |
293 | 3686 wsprintfW(pMM6IniFile, L"%s\\mm6.ini", pCurrentDir); |
0 | 3687 |
3688 bCanLoadFromCD = GetPrivateProfileIntW(L"settings", L"use_cd", 1, pMM6IniFile); | |
3689 if (bNoCD) | |
3690 bCanLoadFromCD = false; | |
3691 if (bCanLoadFromCD) | |
3692 { | |
1802 | 3693 if (!FindMM7CD(nullptr, &cMM7GameCDDriveLetter)) |
0 | 3694 return false; |
3695 } | |
3696 | |
3697 | |
3698 srand(GetTickCount()); | |
1802 | 3699 |
3700 window = OSWindow::Create(L"Might and Magic® Trilogy", game_width, game_height); | |
0 | 3701 |
3702 pRenderer = Render::Create(); | |
3703 if (!pRenderer) | |
3704 { | |
3705 Log::Warning(L"Render creation failed"); | |
3706 return false; | |
3707 } | |
3708 else | |
3709 { | |
3710 bool bWindowMode = ReadWindowsRegistryInt("startinwindow", false); | |
1802 | 3711 //uint uDefaultDevice = ReadWindowsRegistryInt("D3D Device", 1); |
0 | 3712 bool bColoredLights = ReadWindowsRegistryInt("Colored Lights", false); |
3713 uint uLevelOfDetail = ReadWindowsRegistryInt("Detail Level", 1); | |
3714 uint bTinting = ReadWindowsRegistryInt("Tinting", 1) != 0; | |
3715 | |
1802 | 3716 if (!pRenderer->Initialize(bWindowMode, window, bColoredLights, uLevelOfDetail, bTinting)) |
0 | 3717 { |
3718 Log::Warning(L"Render failed to initialize"); | |
3719 return false; | |
3720 } | |
3721 } | |
492 | 3722 |
351 | 3723 game_starting_year = 1168; |
0 | 3724 |
3725 pParty = new Party; | |
147 | 3726 memset(&pParty->pHirelings, 0, sizeof(pParty->pHirelings)); |
0 | 3727 pParty->uWalkSpeed = GetPrivateProfileIntW(L"debug", L"walkspeed", 384, pMM6IniFile); |
3728 pParty->uDefaultEyelevel = GetPrivateProfileIntW(L"party", L"eyelevel", 160, pMM6IniFile); | |
3729 pParty->sEyelevel = pParty->uDefaultEyelevel; | |
3730 pParty->uDefaultPartyHeight = GetPrivateProfileIntW(L"party", L"height", 192, pMM6IniFile); | |
3731 pParty->uPartyHeight = pParty->uDefaultPartyHeight; | |
3732 | |
3733 bUseRegistry = GetPrivateProfileIntW(L"settings", L"registry", 1, pMM6IniFile); | |
3734 MM6_Initialize(pMM6IniFile); | |
3735 | |
3736 pKeyActionMap = new KeyboardActionMapping; | |
3737 | |
3738 pEventTimer = Timer::Create(); | |
3739 pEventTimer->Initialize(); | |
3740 | |
3741 OnTimer(1); | |
3742 GameUI_StatusBar_UpdateTimedString(1); | |
3743 pGame = Game::Create(); | |
3744 pMouse = pGame->pMouseInstance; | |
1655 | 3745 |
0 | 3746 |
3747 pIcons_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3748 if (!pIcons_LOD->Load("data\\icons.lod", "icons")) |
0 | 3749 { |
3750 MessageBoxW(nullptr, | |
3751 L"Some files are missing\n\nPlease Reinstall.", | |
3752 L"Files Missing", MB_ICONEXCLAMATION); | |
3753 return false; | |
3754 } | |
3755 pIcons_LOD->dword_011BA4 = 0; | |
3756 | |
3757 pEvents_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3758 if (!pEvents_LOD->Load("data\\events.lod", "icons")) |
0 | 3759 { |
3760 MessageBoxW(nullptr, | |
3761 L"Some files are missing\n\nPlease Reinstall.", | |
3762 L"Files Missing", MB_ICONEXCLAMATION); | |
3763 return false; | |
3764 } | |
3765 | |
3766 InitializeGameText(); | |
3767 | |
3768 pBitmaps_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3769 if (!pBitmaps_LOD->Load("data\\bitmaps.lod", "bitmaps")) |
0 | 3770 { |
3771 MessageBoxA(nullptr, | |
3772 pGlobalTXT_LocalizationStrings[63], | |
3773 pGlobalTXT_LocalizationStrings[184], MB_ICONEXCLAMATION); | |
3774 return false; | |
3775 } | |
3776 | |
3777 if (bUseRegistry) | |
3778 bUseLoResSprites = ReadWindowsRegistryInt("resolution", 0); | |
3779 else | |
3780 bUseLoResSprites = GetPrivateProfileIntW(L"settings", L"resolution", 0, pMM6IniFile); | |
3781 | |
3782 const char *pSpritesFile = nullptr; | |
3783 if (bUseLoResSprites) | |
3784 pSpritesFile = "data\\spriteLO.lod"; | |
3785 else | |
3786 pSpritesFile = "data\\sprites.lod"; | |
3787 | |
3788 pSprites_LOD = new LODFile_Sprites; | |
3789 if (!pSprites_LOD->LoadSprites(pSpritesFile)) | |
3790 { | |
3791 MessageBoxA(nullptr, | |
3792 pGlobalTXT_LocalizationStrings[63], | |
3793 pGlobalTXT_LocalizationStrings[184], MB_ICONEXCLAMATION); | |
3794 return false; | |
3795 } | |
3796 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3797 |
1543 | 3798 #if 0 |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3799 if (_access("../MM_VI/data/icons.lod", 0) == 0) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3800 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3801 pIcons_LOD_mm6 = new LODFile_IconsBitmaps; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3802 if (!pIcons_LOD_mm6->Load("../MM_VI/data/icons.lod", "icons")) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3803 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3804 delete pIcons_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3805 pIcons_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3806 Log::Warning(L"Unable to load mm6:icons.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3807 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3808 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3809 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3810 Log::Warning(L"Unable to find mm6:icons.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3811 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3812 if (_access("../MM_VI/data/bitmaps.lod", 0) == 0) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3813 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3814 pBitmaps_LOD_mm6 = new LODFile_IconsBitmaps; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3815 if (!pBitmaps_LOD_mm6->Load("../MM_VI/data/bitmaps.lod", "bitmaps")) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3816 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3817 delete pBitmaps_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3818 pBitmaps_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3819 Log::Warning(L"Unable to load mm6:bitmaps.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3820 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3821 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3822 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3823 Log::Warning(L"Unable to find mm6:bitmaps.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3824 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3825 auto mm6_sprite_container_name = bUseLoResSprites ? "../MM_VI/data/spriteLO.lod" |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3826 : "../MM_VI/data/sprites.lod"; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3827 if (_access(mm6_sprite_container_name, 0) == 0) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3828 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3829 pSprites_LOD_mm6 = new LODFile_Sprites; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3830 if (!pSprites_LOD_mm6->LoadSprites(mm6_sprite_container_name)) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3831 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3832 delete pSprites_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3833 pSprites_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3834 Log::Warning(L"Unable to load mm6:sprites.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3835 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3836 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3837 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3838 Log::Warning(L"Unable to find mm6:sprites.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3839 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3840 |
1541 | 3841 if (_access("../mm8/data/icons.lod", 0) == 0) |
3842 { | |
3843 pIcons_LOD_mm8 = new LODFile_IconsBitmaps; | |
3844 if (!pIcons_LOD_mm8->Load("../mm8/data/icons.lod", "icons")) | |
3845 { | |
3846 delete pIcons_LOD_mm8; | |
3847 pIcons_LOD_mm8 = nullptr; | |
3848 Log::Warning(L"Unable to load mm8:icons.lod"); | |
3849 } | |
0 | 3850 } |
3851 else | |
1541 | 3852 Log::Warning(L"Unable to find mm8:icons.lod"); |
3853 | |
3854 | |
3855 if (_access("../mm8/data/bitmaps.lod", 0) == 0) | |
3856 { | |
3857 pBitmaps_LOD_mm8 = new LODFile_IconsBitmaps; | |
3858 if (!pBitmaps_LOD_mm8->Load("../mm8/data/bitmaps.lod", "bitmaps")) | |
3859 { | |
3860 delete pBitmaps_LOD_mm8; | |
3861 pBitmaps_LOD_mm8 = nullptr; | |
3862 Log::Warning(L"Unable to load mm8:bitmaps.lod"); | |
3863 } | |
3864 } | |
3865 else | |
3866 Log::Warning(L"Unable to find mm8:bitmaps.lod"); | |
3867 | |
3868 | |
3869 if (_access("../mm8/data/sprites.lod", 0) == 0) | |
3870 { | |
3871 pSprites_LOD_mm8 = new LODFile_Sprites; | |
3872 if (!pSprites_LOD_mm8->LoadSprites("../mm8/data/sprites.lod")) | |
3873 { | |
3874 delete pSprites_LOD_mm8; | |
3875 pSprites_LOD_mm8 = nullptr; | |
3876 Log::Warning(L"Unable to load mm8:sprites.lod"); | |
3877 } | |
3878 } | |
3879 else | |
3880 Log::Warning(L"Unable to find mm8:sprites.lod"); | |
1543 | 3881 #endif |
1541 | 3882 |
0 | 3883 { |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3884 void *sft_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dsft.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3885 *sft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3886 auto sft_mm7 = pEvents_LOD->LoadRaw("dsft.bin", 1); |
0 | 3887 pSpriteFrameTable = new SpriteFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3888 pSpriteFrameTable->FromFile(sft_mm6, sft_mm7, sft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3889 free(sft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3890 free(sft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3891 free(sft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3892 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3893 void *tft_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dtft.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3894 *tft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3895 auto tft_mm7 = pEvents_LOD->LoadRaw("dtft.bin", 1); |
0 | 3896 pTextureFrameTable = new TextureFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3897 pTextureFrameTable->FromFile(tft_mm6, tft_mm7, tft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3898 free(tft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3899 free(tft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3900 free(tft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3901 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3902 void *tiles_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dtile.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3903 *tiles_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3904 auto tiles_mm7 = pEvents_LOD->LoadRaw("dtile.bin", 1); |
0 | 3905 pTileTable = new TileTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3906 pTileTable->FromFile(tiles_mm6, tiles_mm7, tiles_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3907 free(tiles_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3908 free(tiles_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3909 free(tiles_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3910 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3911 void *pft_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dpft.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3912 *pft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3913 auto pft_mm7 = pEvents_LOD->LoadRaw("dpft.bin", 1); |
0 | 3914 pPlayerFrameTable = new PlayerFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3915 pPlayerFrameTable->FromFile(pft_mm6, pft_mm7, pft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3916 free(pft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3917 free(pft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3918 free(pft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3919 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3920 void *ift_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dift.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3921 *ift_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3922 auto ift_mm7 = pEvents_LOD->LoadRaw("dift.bin", 1); |
0 | 3923 pIconsFrameTable = new IconFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3924 pIconsFrameTable->FromFile(ift_mm6, ift_mm7, ift_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3925 free(ift_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3926 free(ift_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3927 free(ift_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3928 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3929 void *decs_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("ddeclist.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3930 *decs_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3931 auto decs_mm7 = pEvents_LOD->LoadRaw("ddeclist.bin", 1); |
0 | 3932 pDecorationList = new DecorationList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3933 pDecorationList->FromFile(decs_mm6, decs_mm7, decs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3934 free(decs_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3935 free(decs_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3936 free(decs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3937 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3938 void *objs_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dobjlist.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3939 *objs_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3940 auto objs_mm7 = pEvents_LOD->LoadRaw("dobjlist.bin", 1); |
0 | 3941 pObjectList = new ObjectList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3942 pObjectList->FromFile(objs_mm6, objs_mm7, objs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3943 free(objs_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3944 free(objs_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3945 free(objs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3946 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3947 void *mons_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dmonlist.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3948 *mons_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3949 auto mons_mm7 = pEvents_LOD->LoadRaw("dmonlist.bin", 1); |
0 | 3950 pMonsterList = new MonsterList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3951 pMonsterList->FromFile(mons_mm6, mons_mm7, mons_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3952 free(mons_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3953 free(mons_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3954 free(mons_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3955 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3956 void *chests_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dchest.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3957 *chests_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3958 auto chests_mm7 = pEvents_LOD->LoadRaw("dchest.bin", 1); |
0 | 3959 pChestList = new ChestList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3960 pChestList->FromFile(chests_mm6, chests_mm7, chests_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3961 free(chests_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3962 free(chests_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3963 free(chests_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3964 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3965 void *overlays_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("doverlay.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3966 *overlays_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3967 auto overlays_mm7 = pEvents_LOD->LoadRaw("doverlay.bin", 1); |
0 | 3968 pOverlayList = new OverlayList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3969 pOverlayList->FromFile(overlays_mm6, overlays_mm7, overlays_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3970 free(overlays_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3971 free(overlays_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3972 free(overlays_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3973 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3974 void *sounds_mm6 = pIcons_LOD_mm6 ? pIcons_LOD_mm6->LoadRaw("dsounds.bin", 1) : nullptr, |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3975 *sounds_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3976 auto sounds_mm7 = pEvents_LOD->LoadRaw("dsounds.bin", 1); |
0 | 3977 pSoundList = new SoundList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3978 pSoundList->FromFile(sounds_mm6, sounds_mm7, sounds_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3979 free(sounds_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3980 free(sounds_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3981 free(sounds_mm8); |
0 | 3982 } |
3983 | |
3984 | |
3985 | |
492 | 3986 |
0 | 3987 if (dword_6BE364_game_settings_1 & 2 || !(dword_6BE368_debug_settings_2 & 1))// |
3988 // color depth != 16 | |
3989 // or | |
3990 // not in window | |
3991 { | |
1802 | 3992 window->SetFullscreenMode(); |
3993 pRenderer->InitializeFullscreen(); | |
0 | 3994 } |
3995 else | |
3996 { | |
1802 | 3997 window->SetWindowedMode(game_width, game_height); |
3998 pRenderer->SwitchToWindow(); | |
0 | 3999 } |
4000 | |
4001 uSoundVolumeMultiplier = ReadWindowsRegistryInt("soundflag", 9); | |
4002 if (uSoundVolumeMultiplier > 9) | |
4003 uSoundVolumeMultiplier = 9; | |
4004 uMusicVolimeMultiplier = ReadWindowsRegistryInt("musicflag", 9); | |
4005 if (uMusicVolimeMultiplier > 9) | |
4006 uMusicVolimeMultiplier = 9; | |
4007 uVoicesVolumeMultiplier = ReadWindowsRegistryInt("CharVoices", 9); | |
4008 if (uVoicesVolumeMultiplier > 9) | |
4009 uVoicesVolumeMultiplier = 9; | |
4010 bShowDamage = ReadWindowsRegistryInt("ShowDamage", 1) != 0; | |
4011 byte_6BE388_graphicsmode = ReadWindowsRegistryInt("graphicsmode", 1); | |
4012 if (byte_6BE388_graphicsmode < 0 || byte_6BE388_graphicsmode > 2) | |
4013 byte_6BE388_graphicsmode = 0; | |
4014 | |
4015 uGammaPos = ReadWindowsRegistryInt("GammaPos", 4); | |
733 | 4016 if (uGammaPos > 9) |
0 | 4017 uGammaPos = 4; |
4018 pGame->pGammaController->Initialize(uGammaPos * 0.1 + 0.6); | |
4019 | |
4020 if ( ReadWindowsRegistryInt("Bloodsplats", 1) ) | |
591 | 4021 pGame->uFlags2 |= GAME_FLAGS_2_DRAW_BLOODSPLATS; |
0 | 4022 else |
733 | 4023 pGame->uFlags2 &= ~GAME_FLAGS_2_DRAW_BLOODSPLATS; |
0 | 4024 |
4025 uTurnSpeed = ReadWindowsRegistryInt("TurnDelta", 0); | |
4026 dword_6BE384_2dacceloff = ReadWindowsRegistryInt("2dacceloff", 0); | |
4027 | |
4028 if (!bNoSound) | |
1802 | 4029 pAudioPlayer->Initialize(); |
0 | 4030 |
1262 | 4031 pVideoPlayer = new VideoPlayer(); |
1802 | 4032 pVideoPlayer->Initialize(window); |
0 | 4033 |
4034 dword_6BE364_game_settings_1 |= 0x4000; | |
4035 | |
4036 switch ( uTurnSpeed ) | |
4037 { | |
731 | 4038 case 0: // undefined turn option |
1067 | 4039 __debugbreak(); // really shouldn't use this mode |
731 | 4040 uTurnSpeed = (unsigned int)uCPUSpeed < 199 ? 128 : 64; // adjust turn speed to estimated fps |
4041 break; | |
4042 | |
4043 case 1u: // 16x | |
4044 Log::Warning(L"x16 Turn Speed"); // really shouldn't use this mode | |
0 | 4045 uTurnSpeed = 128; |
731 | 4046 break; |
4047 | |
4048 case 2u: // 32x | |
4049 Log::Warning(L"x32 Turn Speed"); // really shouldn't use this mode | |
0 | 4050 uTurnSpeed = 64; |
731 | 4051 break; |
4052 | |
4053 case 3u: // smooth | |
0 | 4054 uTurnSpeed = 0; |
731 | 4055 break; |
4056 } | |
4057 | |
0 | 4058 return true; |
4059 } | |
4060 | |
4061 //----- (00465D0B) -------------------------------------------------------- | |
1802 | 4062 void SecondaryInitialization() |
0 | 4063 { |
4064 __int16 v4; // ax@4 | |
4065 signed int v5; // esi@5 | |
4066 int v6; // ecx@6 | |
4067 int v7; // edx@7 | |
4068 ObjectDesc *v8; // eax@7 | |
4069 char pContainer[32]; // [sp+10h] [bp-Ch]@9 | |
4070 | |
1802 | 4071 pMouse->Initialize(window); |
0 | 4072 |
4073 pItemsTable = new ItemsTable; | |
4074 pItemsTable->Initialize(); | |
4075 | |
4076 pBitmaps_LOD->dword_011BA8 = 1; | |
4077 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
4078 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
4079 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
762 | 4080 |
4081 pPaletteManager->SetMistColor(128, 128, 128); | |
0 | 4082 pPaletteManager->RecalculateAll(); |
4083 pSprites_LOD->field_ECAC = 1; | |
4084 pObjectList->InitializeSprites(); | |
4085 pOverlayList->InitializeSprites(); | |
4086 if (!bNoSound) | |
4087 pSoundList->Initialize(); | |
4088 | |
4089 static const char *pUIAnimNames[4] = | |
4090 { | |
4091 "glow03", "glow05", | |
4092 "torchA", "wizeyeA" | |
4093 }; | |
4094 static unsigned short _4E98D0[4][4] = | |
4095 { | |
4096 {479, 0, 329, 0}, | |
4097 {585, 0, 332, 0}, | |
4098 {468, 0, 0, 0}, | |
4099 {606, 0, 0, 0} | |
4100 }; | |
4101 | |
4102 | |
4103 for (uint i = 0; i < 4; ++i) | |
4104 { | |
4105 pUIAnims[i]->uIconID = pIconsFrameTable->FindIcon(pUIAnimNames[i]); | |
4106 pIconsFrameTable->InitializeAnimation(pUIAnims[i]->uIconID); | |
4107 | |
4108 pUIAnims[i]->uAnimLength = 0; | |
4109 pUIAnims[i]->uAnimTime = 0; | |
4110 pUIAnims[i]->x = _4E98D0[i][0]; | |
4111 pUIAnims[i]->y = _4E98D0[i][2]; | |
4112 } | |
4113 | |
4114 v5 = 0; | |
4115 if ( (signed int)pObjectList->uNumObjects > 0 ) | |
4116 { | |
4117 v6 = 0; | |
4118 do | |
4119 { | |
4120 BYTE3(v7) = 0; | |
4121 v8 = &pObjectList->pObjects[v6]; | |
4122 ++v6; | |
4123 *(short *)((char *)&v7 + 1) = v8->uParticleTrailColorR; | |
4124 LOBYTE(v7) = v8->uParticleTrailColorG; | |
4125 ++v5; | |
4126 v8->uParticleTrailColor = v8->uParticleTrailColorB | (v7 << 8); | |
4127 } | |
4128 while ( v5 < (signed int)pObjectList->uNumObjects ); | |
4129 } | |
4130 flt_6BE3A0 = 0.55000001f; | |
4131 MainMenuUI_Create(); | |
4132 pGame->pStru6Instance->LoadAnimations(); | |
4133 | |
4134 for (uint i = 0; i < 7; ++i) | |
4135 { | |
4136 sprintf(pContainer, "HDWTR%03u", i); | |
4137 pRenderer->pHDWaterBitmapIDs[i] = pBitmaps_LOD->LoadTexture(pContainer); | |
4138 } | |
4139 | |
4140 pNPCStats = new NPCStats; | |
110 | 4141 memset(pNPCStats->pNPCData, 0, 0x94BCu); |
0 | 4142 pNPCStats->Initialize(); |
4143 | |
4144 Initialize_GlobalEVT(); | |
762 | 4145 pBitmaps_LOD->_inlined_sub0(); |
4146 pSprites_LOD->_inlined_sub0(); | |
0 | 4147 pPaletteManager->LockAll(); |
4148 | |
4149 _mkdir("Saves"); | |
4150 for (uint i = 0; i < 5; ++i) | |
4151 for (uint j = 0; j < 6; ++j) | |
4152 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
4153 sprintf(pTmpBuf.data(), "data\\lloyd%d%d.pcx", i, j); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
4154 remove(pTmpBuf.data()); |
0 | 4155 } |
4156 | |
4157 Initialize_GamesLOD_NewLOD(); | |
1051 | 4158 _576E2C_current_minimap_zoom = 512; |
0 | 4159 dword_576E28 = 9; |
4160 } | |
4161 | |
522 | 4162 void IntegrityTest() |
4163 { | |
1869
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4164 static_assert(sizeof(MovieHeader) == 44, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4165 static_assert(sizeof(SoundDesc_mm6) == 112, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4166 static_assert(sizeof(SoundDesc) == 120, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4167 static_assert(sizeof(OverlayDesc) == 8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4168 static_assert(sizeof(ChestDesc) == 36, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4169 static_assert(sizeof(ObjectDesc_mm6) == 52, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4170 static_assert(sizeof(ObjectDesc) == 56, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4171 static_assert(sizeof(DecorationDesc) == 84, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4172 static_assert(sizeof(IconFrame) == 32, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4173 static_assert(sizeof(PlayerFrame) == 10, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4174 static_assert(sizeof(TextureFrame) == 20, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4175 static_assert(sizeof(SpriteFrame) == 60, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4176 static_assert(sizeof(RenderVertexSoft) == 0x30, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4177 static_assert(sizeof(RenderBillboard) == 0x34, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4178 static_assert(sizeof(Texture) == 0x48, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4179 static_assert(sizeof(RGBTexture) == 0x28, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4180 static_assert(sizeof(LODFile_IconsBitmaps) == 0x11BB8 + 4, "Wrong type size"); // + virtual dtor ptr |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4181 static_assert(sizeof(AudioPlayer) == 0xC84, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4182 static_assert(sizeof(SoundDesc) == 0x78, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4183 static_assert(sizeof(stru339_spell_sound) == 0xAFD8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4184 static_assert(sizeof(VideoPlayer) == 0x108 + 4, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4185 static_assert(sizeof(MovieHeader) == 0x2C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4186 static_assert(sizeof(DecorationDesc) == 0x54, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4187 static_assert(sizeof(ObjectDesc) == 0x38, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4188 static_assert(sizeof(OverlayDesc) == 0x8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4189 static_assert(sizeof(ChestDesc) == 0x24, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4190 static_assert(sizeof(TileDesc) == 0x1A, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4191 static_assert(sizeof(MonsterDesc_mm6) == 148, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4192 static_assert(sizeof(MonsterDesc) == 152, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4193 static_assert(sizeof(Timer) == 0x28, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4194 static_assert(sizeof(OtherOverlay) == 0x14, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4195 static_assert(sizeof(ItemGen) == 0x24, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4196 static_assert(sizeof(SpriteObject) == 0x70, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4197 static_assert(sizeof(ItemDesc) == 0x30, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4198 static_assert(sizeof(ItemsTable) == 0x117A0, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4199 static_assert(sizeof(Chest) == 0x14CC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4200 static_assert(sizeof(MapInfo) == 0x44, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4201 static_assert(sizeof(SpellInfo) == 0x24, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4202 static_assert(sizeof(SpellData) == 0x14, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4203 static_assert(sizeof(SpellBuff) == 0x10, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4204 static_assert(sizeof(AIDirection) == 0x1C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4205 static_assert(sizeof(ActorJob) == 0xC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4206 static_assert(sizeof(Actor) == 0x344, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4207 static_assert(sizeof(LevelDecoration) == 0x20, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4208 static_assert(sizeof(KeyboardActionMapping) == 0x20C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4209 static_assert(sizeof(UIAnimation) == 0xD, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4210 static_assert(sizeof(SpawnPointMM7) == 0x18, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4211 static_assert(sizeof(ODMFace) == 0x134, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4212 static_assert(sizeof(BSPNode) == 0x8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4213 static_assert(sizeof(BSPModel) == 0xBC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4214 static_assert(sizeof(OutdoorLocation) == 0x1C28C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4215 static_assert(sizeof(BLVFace) == 0x60, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4216 static_assert(sizeof(BLVFaceExtra) == 0x24, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4217 static_assert(sizeof(BLVSector) == 0x74, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4218 static_assert(sizeof(BLVLightMM7) == 0x10, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4219 static_assert(sizeof(BLVDoor) == 0x50, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4220 static_assert(sizeof(IndoorLocation) == 0x690, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4221 //static_assert(sizeof(ODMRenderParams) == 0x74, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4222 static_assert(sizeof(Mouse) == 0x114, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4223 static_assert(sizeof(Particle_sw) == 0x68, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4224 static_assert(sizeof(Particle) == 0x68, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4225 static_assert(sizeof(ParticleEngine) == 0xE430, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4226 static_assert(sizeof(Lightmap) == 0xC1C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4227 static_assert(sizeof(LightmapBuilder) == 0x3CBC38, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4228 static_assert(sizeof(Vis_SelectionList) == 0x2008, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4229 static_assert(sizeof(Vis) == 0x20D0, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4230 static_assert(sizeof(PlayerBuffAnim) == 0x10, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4231 static_assert(sizeof(ProjectileAnim) == 0x1C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4232 static_assert(sizeof(stru6) == 0x5F8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4233 static_assert(sizeof(IndoorCameraD3D_Vec3) == 0x10, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4234 static_assert(sizeof(IndoorCameraD3D_Vec4) == 0x18, "Wrong type size"); //should be 14 (10 vec3 + 4 vdtor) but 18 coz of his +4 from own vdtor, but it is odd since vdtor already present from vec3 |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4235 //static_assert(sizeof(IndoorCameraD3D) == 0x1A1384, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4236 static_assert(sizeof(StationaryLight) == 0xC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4237 static_assert(sizeof(LightsStack_StationaryLight_) == 0x12C8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4238 static_assert(sizeof(MobileLight) == 0x12, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4239 static_assert(sizeof(LightsStack_MobileLight_) == 0x1C28, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4240 static_assert(sizeof(Game) == 0xE78, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4241 static_assert(sizeof(stru141_actor_collision_object) == 0xA8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4242 static_assert(sizeof(ActionQueue) == 0x7C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4243 static_assert(sizeof(NPCData) == 0x4C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4244 static_assert(sizeof(NPCStats) == 0x17FFC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4245 static_assert(sizeof(BspRenderer) == 0x53740, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4246 static_assert(sizeof(PaletteManager) == 0x267AF0, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4247 static_assert(sizeof(ViewingParams) == 0x26C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4248 //static_assert(sizeof(IndoorCamera) == 0x50, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4249 static_assert(sizeof(Bloodsplat) == 0x28, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4250 static_assert(sizeof(BloodsplatContainer) == 0xA0C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4251 static_assert(sizeof(TrailParticle) == 0x18, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4252 static_assert(sizeof(EventIndex) == 0xC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4253 static_assert(sizeof(_2devent) == 0x34, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4254 static_assert(sizeof(stru176) == 0x20, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4255 static_assert(sizeof(SavegameHeader) == 0x64, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4256 static_assert(sizeof(SavegameList) == 0x3138, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4257 static_assert(sizeof(StorylineText) == 0x160, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4258 static_assert(sizeof(FactionTable) == 0x1EF1, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4259 static_assert(sizeof(Decal) == 0xC20, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4260 static_assert(sizeof(DecalBuilder) == 0x30C038, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4261 static_assert(sizeof(MonsterInfo) == 0x58, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4262 static_assert(sizeof(MonsterStats) == 0x5BA0, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4263 static_assert(sizeof(RenderD3D) == 0x148, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4264 // static_assert(sizeof(Render) == 0x129844, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4265 static_assert(sizeof(Player) == 0x1B3C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4266 static_assert(sizeof(PartyTimeStruct) == 0x678, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4267 static_assert(sizeof(Party) == 0x16238, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4268 static_assert(sizeof(GUIButton) == 0xBC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4269 static_assert(sizeof(GUIWindow) == 0x54, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4270 static_assert(sizeof(GUIProgressBar) == 0x1B8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4271 static_assert(sizeof(GUIFont) == 0x1020, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4272 // static_assert(sizeof(stru262_TurnBased) == 0x40, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4273 static_assert(sizeof(ArcomageGame) == 0xFB, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4274 static_assert(sizeof(CastSpellInfo) == 0x14, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4275 static_assert(sizeof(ArcomageCard) == 0x6C, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4276 static_assert(sizeof(stru320) == 0x3FC, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4277 static_assert(sizeof(TravelInfo) == 0x20, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4278 static_assert(sizeof(stru336) == 0x798, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4279 static_assert(sizeof(Vec3_short_) == 6, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4280 static_assert(sizeof(BLVFace) == 96, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4281 static_assert(sizeof(BLVFaceExtra) == 36, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4282 static_assert(sizeof(BLVSector) == 116, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4283 static_assert(sizeof(LevelDecoration) == 32, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4284 static_assert(sizeof(BLVLightMM7) == 16, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4285 static_assert(sizeof(BSPNode) == 8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4286 static_assert(sizeof(SpawnPointMM7) == 24, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4287 static_assert(sizeof(DDM_DLV_Header) == 40, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4288 static_assert(sizeof(Actor) == 836, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4289 static_assert(sizeof(SpriteObject) == 112, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4290 static_assert(sizeof(Chest) == 5324, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4291 static_assert(sizeof(stru123) == 0xC8, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4292 static_assert(sizeof(BLVMapOutline) == 12, "Wrong type size"); |
bc7a6ee34316
IntegrityTest size tests changed to static_asserts
Grumpy7
parents:
1861
diff
changeset
|
4293 static_assert(sizeof(LODSprite) == 0x28, "Wrong type size"); |
522 | 4294 } |
4295 | |
168 | 4296 bool new_sky = false; |
1765 | 4297 bool new_draw_object_dist = true; |
670 | 4298 bool change_seasons = false; |
894 | 4299 bool all_magic = true; |
1511 | 4300 bool wizard_eye = false; |
1837 | 4301 bool debug_information = false; |
4302 bool show_picked_face = false; | |
1507 | 4303 bool draw_debug_line = false; |
0 | 4304 |
4305 //----- (00462C94) -------------------------------------------------------- | |
4306 bool MM_Main(const wchar_t *pCmdLine) | |
4307 { | |
522 | 4308 IntegrityTest(); |
1706 | 4309 |
246 | 4310 char test[1024]; |
522 | 4311 sprintfex(test, "^Pi[%s]: çíàõàð^R[ü;êà;]", "Çîëòàí"); |
4312 | |
1052 | 4313 bool bNoMargareth = false; |
0 | 4314 if (pCmdLine && *pCmdLine) |
4315 { | |
4316 if (wcsstr(pCmdLine, L"-usedefs")) | |
4317 bDebugResouces = 1; | |
4318 if (wcsstr(pCmdLine, L"-window")) | |
4319 dword_6BE368_debug_settings_2 |= 1u; | |
4320 | |
4321 if (wcsstr(pCmdLine, L"-nointro")) | |
4322 bNoIntro = true;//dword_6BE364_game_settings_1 |= 4; | |
4323 if (wcsstr(pCmdLine, L"-nologo")) | |
4324 bNoLogo = true;//dword_6BE364_game_settings_1 |= 8; | |
4325 if (wcsstr(pCmdLine, L"-nosound")) | |
4326 bNoSound = true; //dword_6BE364_game_settings_1 |= 0x10; | |
4327 | |
4328 bWalkSound = ReadWindowsRegistryInt("WalkSound", 1) != 0; | |
4329 if (wcsstr(pCmdLine, L"-nowalksound")) | |
4330 bWalkSound = false;//dword_6BE364_game_settings_1 |= 0x20; | |
256 | 4331 if (wcsstr(pCmdLine, L"-novideo")) |
0 | 4332 { |
4333 dword_6BE364_game_settings_1 |= 0x40; | |
4334 bNoVideo = true; | |
4335 } | |
4336 if (wcsstr(pCmdLine, L"-nocd")) | |
4337 bNoCD = true; | |
168 | 4338 if (wcsstr(pCmdLine, L"-new_sky")) |
4339 new_sky = true; | |
1052 | 4340 if (wcsstr(pCmdLine, L"-nomarg")) |
4341 bNoMargareth = true; | |
0 | 4342 } |
4343 | |
4344 | |
731 | 4345 /*v8 = _4AC1C9_get_cpu_speed(0, (Vec4_int_ *)a2); |
0 | 4346 Rect.left = *(int *)v8; |
4347 Rect.top = *(int *)(v8 + 4); | |
4348 Rect.right = *(int *)(v8 + 8); | |
4349 Rect.bottom = *(int *)(v8 + 12); | |
731 | 4350 uCPUSpeed = Rect.bottom;*/ |
4351 uCPUSpeed = 2048; // about 2GHz | |
4 | 4352 |
4353 | |
1655 | 4354 if (!MM7_Initialize(640, 480)) |
734 | 4355 { |
4356 Log::Warning(L"MM init: failed"); | |
4357 pGame->Deinitialize(); | |
4358 return 1; | |
4359 } | |
0 | 4360 |
4361 pEventTimer->Pause(); | |
1397 | 4362 |
373 | 4363 SetUserInterface(PartyAlignment_Neutral, false); |
0 | 4364 ShowIntroVideo_and_LoadingScreen(); |
4365 WriteWindowsRegistryInt("Ran once", 1); | |
4366 dword_6BE364_game_settings_1 |= 0x4000; | |
4367 pGame->InitializeGammaController(); | |
4368 SecondaryInitialization(); | |
1541 | 4369 pRenderer->SetRasterClipRect(0, 0, 639, 479); |
0 | 4370 FinalInitialization(); |
4371 | |
4372 Log::Warning(L"MM: entering main loop"); | |
4373 while ( 1 ) | |
4374 { | |
1815 | 4375 auto main_menu_window = MainMenuWindow::Create(); |
4376 window->AddControl(main_menu_window); | |
4377 | |
165 | 4378 MainMenu_Loop(); |
982 | 4379 uGameState = GAME_STATE_PLAYING; |
0 | 4380 while ( 1 ) |
4381 { | |
982 | 4382 if (uGameState == GAME_FINISHED || |
4383 GetCurrentMenuID() == MENU_EXIT_GAME) | |
4384 { | |
4385 pGame->Deinitialize(); | |
4386 return true; | |
4387 } | |
4388 | |
165 | 4389 if (GetCurrentMenuID() == MENU_NEWGAME) |
0 | 4390 { |
4391 if ( pAudioPlayer->hAILRedbook ) | |
165 | 4392 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
4393 pParty->Reset(); | |
783 | 4394 pOtherOverlayList->Reset(); |
4395 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4396 strcpy(pCurrentMapName, pStartingMapName); |
165 | 4397 pParty->CreateDefaultParty(0); |
0 | 4398 PlayerCreationUI_Initialize(); |
165 | 4399 if ( PlayerCreationUI_Loop() ) |
0 | 4400 { |
4401 DeleteCCharFont(); | |
165 | 4402 break; |
0 | 4403 } |
4404 DeleteCCharFont(); | |
4405 bFlashQuestBook = true; | |
1397 | 4406 PlayFullscreenMovie(MOVIE_Emerald); |
4407 //pGame->pCShow->PlayMovie(MOVIE_Emerald, 0); | |
837 | 4408 SaveNewGame(); |
1052 | 4409 |
4410 if (bNoMargareth) | |
4411 _449B7E_toggle_bit(pParty->_quest_bits, PARTY_QUEST_EMERALD_MARGARETH_OFF, 1); | |
165 | 4412 pGame->Loop(); |
982 | 4413 |
4414 if (uGameState == GAME_STATE_NEWGAME_OUT_GAMEMENU) | |
165 | 4415 { |
4416 SetCurrentMenuID(MENU_NEWGAME); | |
982 | 4417 uGameState = GAME_STATE_PLAYING; |
165 | 4418 continue; |
4419 } | |
982 | 4420 else if (uGameState == GAME_STATE_GAME_QUITTING_TO_MAIN_MENU) |
4421 break; | |
4422 | |
4423 assert(false && "Invalid game state"); | |
165 | 4424 } |
4425 if (GetCurrentMenuID() == MENU_CREDITS) | |
0 | 4426 { |
4427 if ( pAudioPlayer->hAILRedbook ) | |
165 | 4428 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
1033 | 4429 MainMenuUI_Credits_Loop(); |
0 | 4430 break; |
4431 } | |
961 | 4432 if (GetCurrentMenuID() == MENU_5 || GetCurrentMenuID() == MENU_LoadingProcInMainMenu) |
2 | 4433 { |
982 | 4434 uGameState = GAME_STATE_PLAYING; |
1416 | 4435 pGame->Loop(); |
2 | 4436 } |
4 | 4437 else |
961 | 4438 { |
1458 | 4439 if (GetCurrentMenuID() == MENU_DebugBLVLevel) |
1416 | 4440 { |
4441 pMouse->Activate(0); | |
4442 | |
4443 pParty->Reset(); | |
4444 pParty->CreateDefaultParty(1); | |
1545 | 4445 |
4446 __debugbreak(); | |
4447 /*extern void CreateDefaultBLVLevel(); | |
1458 | 4448 CreateDefaultBLVLevel(); |
4449 | |
1545 | 4450 OPENFILENAMEA ofn; |
1416 | 4451 if ( !GetOpenFileNameA((LPOPENFILENAMEA)&ofn) ) |
4452 { | |
4453 pMouse->Activate(1); | |
4454 break; | |
4455 } | |
4456 _chdir("..\\"); | |
1545 | 4457 strcpy(pCurrentMapName, ofn.lpstrFileTitle);*/ |
1416 | 4458 pMouse->Activate(1); |
4459 pGame->Loop(); | |
4460 } | |
492 | 4461 } |
1214
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
4462 if ( uGameState == GAME_STATE_LOADING_GAME ) |
961 | 4463 { |
982 | 4464 SetCurrentMenuID(MENU_5); |
4465 uGameState = GAME_STATE_PLAYING; | |
0 | 4466 continue; |
961 | 4467 } |
165 | 4468 if ( uGameState == GAME_STATE_NEWGAME_OUT_GAMEMENU ) |
101 | 4469 { |
4470 SetCurrentMenuID(MENU_NEWGAME); | |
982 | 4471 uGameState = GAME_STATE_PLAYING; |
0 | 4472 continue; |
101 | 4473 } |
907 | 4474 if ( uGameState == GAME_STATE_GAME_QUITTING_TO_MAIN_MENU)// from the loaded game |
4475 { | |
0 | 4476 pAudioPlayer->StopChannels(-1, -1); |
982 | 4477 uGameState = GAME_STATE_PLAYING; |
0 | 4478 break; |
907 | 4479 } |
0 | 4480 } |
4481 if (!bNoSound && pAudioPlayer->hAILRedbook) | |
4482 { | |
328 | 4483 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); |
0 | 4484 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
1541 | 4485 unsigned int startms, end_ms; |
0 | 4486 AIL_redbook_track_info(pAudioPlayer->hAILRedbook, 0xE, &startms, &end_ms); |
4487 AIL_redbook_play(pAudioPlayer->hAILRedbook, startms + 1, end_ms); | |
4488 } | |
4489 } | |
734 | 4490 |
0 | 4491 pGame->Deinitialize(); |
734 | 4492 return 1; |
0 | 4493 } |
4494 | |
4495 //----- (004637E0) -------------------------------------------------------- | |
1458 | 4496 char sub_4637E0_is_there_popup_onscreen() |
0 | 4497 { |
4498 return dword_507BF0_is_there_popup_onscreen == 1; | |
4499 } | |
4500 // 507BF0: using guessed type int dword_507BF0_is_there_popup_onscreen; | |
4501 | |
4502 //----- (00466082) -------------------------------------------------------- | |
4503 void MM6_Initialize(const wchar_t *pIniFilename) | |
4504 { | |
4505 //int v0; // eax@1 | |
4506 UINT v1; // eax@18 | |
4507 size_t v2; // eax@31 | |
4508 size_t v3; // ebx@32 | |
4509 size_t v4; // edi@36 | |
4510 //char v5[120]; // [sp+Ch] [bp-17Ch]@1 | |
4511 //char String[120]; // [sp+84h] [bp-104h]@32 | |
4512 char pDefaultGroundTexture[16]; // [sp+FCh] [bp-8Ch]@32 | |
4513 //char pIniFilename[120]; // [sp+10Ch] [bp-7Ch]@1 | |
4514 unsigned int v9; // [sp+184h] [bp-4h]@28 | |
4515 | |
4516 //_getcwd(v5, 120); | |
4517 //sprintfex(pIniFilename, "%s\\mm6.ini", v5); | |
4518 viewparams = new ViewingParams; | |
819 | 4519 game_viewport_x = viewparams->uScreen_topL_X = GetPrivateProfileIntW(L"screen", L"vx1", 8, pIniFilename); |
4520 game_viewport_y = viewparams->uScreen_topL_Y = GetPrivateProfileIntW(L"screen", L"vy1", 8, pIniFilename); | |
4521 game_viewport_z = viewparams->uScreen_BttmR_X = GetPrivateProfileIntW(L"screen", L"vx2", 468, pIniFilename); | |
4522 game_viewport_w = viewparams->uScreen_BttmR_Y = GetPrivateProfileIntW(L"screen", L"vy2", 351, pIniFilename); | |
4523 game_viewport_width = game_viewport_z - game_viewport_x; | |
4524 game_viewport_height = game_viewport_w - game_viewport_y + 1; | |
0 | 4525 |
4526 | |
4527 pAudioPlayer = new AudioPlayer; | |
4528 pAudioPlayer->uMixerChannels = GetPrivateProfileIntW(L"settings", L"mixerchannels", 16, pIniFilename); | |
4529 if ( pAudioPlayer->uMixerChannels > 16 ) | |
4530 pAudioPlayer->uMixerChannels = 16; | |
4531 | |
4532 | |
4533 if (GetPrivateProfileIntW(L"debug", L"nomonster", 0, pIniFilename)) | |
4534 dword_6BE368_debug_settings_2 |= 4; | |
4535 if (bUseRegistry) | |
4536 v1 = ReadWindowsRegistryInt("startinwindow", 0); | |
4537 else | |
4538 v1 = GetPrivateProfileIntW(L"debug", L"startinwindow", 0, pIniFilename); | |
4539 if (v1) | |
4540 dword_6BE368_debug_settings_2 |= 1; | |
4541 if (GetPrivateProfileIntW(L"debug", L"showFR", 0, pIniFilename)) | |
4542 dword_6BE368_debug_settings_2 |= 2; | |
4543 if (GetPrivateProfileIntW(L"debug", L"nodamage", 0, pIniFilename)) | |
4544 dword_6BE368_debug_settings_2 |= 0x10; | |
4545 if (GetPrivateProfileIntW(L"debug", L"nodecoration", 0, pIniFilename)) | |
4546 dword_6BE368_debug_settings_2 |= 8; | |
4547 | |
4548 wchar_t pStartingMapNameW[1024]; | |
4549 GetPrivateProfileStringW(L"file", L"startmap", L"out01.odm", pStartingMapNameW, 0x20u, pIniFilename); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4550 sprintf(pStartingMapName, "%S", pStartingMapNameW); |
0 | 4551 |
4552 v9 = 0; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4553 if ( strlen(pStartingMapName) ) |
0 | 4554 { |
4555 do | |
4556 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4557 if ( pStartingMapName[v9] == ' ' ) |
0 | 4558 pStartingMapName[v9] = 0; |
4559 ++v9; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4560 v2 = strlen(pStartingMapName); |
0 | 4561 } |
4562 while ( v9 < v2 ); | |
4563 } | |
4564 | |
1637 | 4565 pODMRenderParams = new ODMRenderParams; |
0 | 4566 outdoor_day_top_r = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.r", 81, pIniFilename); |
4567 outdoor_day_top_g = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.g", 121, pIniFilename); | |
4568 outdoor_day_top_b = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.b", 236, pIniFilename); | |
4569 outdoor_day_bottom_r = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.r", 153, pIniFilename); | |
4570 outdoor_day_bottom_g = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.g", 193, pIniFilename); | |
4571 outdoor_day_bottom_b = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.b", 237, pIniFilename); | |
4572 outdoor_night_top_r = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.r", 0, pIniFilename); | |
4573 outdoor_night_top_g = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.g", 0, pIniFilename); | |
4574 outdoor_night_top_b = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.b", 0, pIniFilename); | |
4575 outdoor_night_bottom_r = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.r", 11, pIniFilename); | |
4576 outdoor_night_bottom_g = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.g", 41, pIniFilename); | |
4577 outdoor_night_bottom_b = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.b", 129, pIniFilename); | |
1637 | 4578 pODMRenderParams->outdoor_no_mist = GetPrivateProfileIntW(L"debug", L"noMist", 0, pIniFilename); |
4579 pODMRenderParams->bNoSky = GetPrivateProfileIntW(L"outdoor", L"nosky", 0, pIniFilename); | |
4580 pODMRenderParams->bDoNotRenderDecorations = GetPrivateProfileIntW(L"render", L"nodecorations", 0, pIniFilename); | |
4581 pODMRenderParams->outdoor_no_wavy_water = GetPrivateProfileIntW(L"outdoor", L"nowavywater", 0, pIniFilename); | |
0 | 4582 outdoor_grid_band_1 = GetPrivateProfileIntW(L"outdoor", L"gridband1", 10, pIniFilename); |
4583 outdoor_grid_band_2 = GetPrivateProfileIntW(L"outdoor", L"gridband2", 15, pIniFilename); | |
4584 outdoor_grid_band_3 = GetPrivateProfileIntW(L"outdoor", L"gridband3", 25, pIniFilename); | |
1637 | 4585 pODMRenderParams->terrain_gamma = GetPrivateProfileIntW(L"outdoor", L"ter_gamma", 0, pIniFilename); |
4586 pODMRenderParams->building_gamme = GetPrivateProfileIntW(L"outdoor", L"bld_gamma", 0, pIniFilename); | |
0 | 4587 mipmapping_terrain_mm1 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm1", 2048, pIniFilename); |
4588 mipmapping_terrain_mm2 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm2", 4096, pIniFilename); | |
4589 mipmapping_terrain_mm3 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm3", 8192, pIniFilename); | |
4590 mipmapping_building_mm1 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm1", 1024, pIniFilename); | |
4591 mipmapping_building_mm2 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm2", 2048, pIniFilename); | |
4592 mipmapping_building_mm3 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm3", 4096, pIniFilename); | |
1637 | 4593 pODMRenderParams->shading_dist_shade = GetPrivateProfileIntW(L"shading", L"dist_shade", 2048, pIniFilename); |
4594 pODMRenderParams->shading_dist_shademist = GetPrivateProfileIntW(L"shading", L"dist_shademist", 4096, pIniFilename); | |
1765 | 4595 |
4596 int dist = 0x2000; | |
4597 extern bool new_draw_object_dist; | |
4598 if ( new_draw_object_dist ) | |
4599 dist = 0x6000; | |
4600 pODMRenderParams->shading_dist_mist = GetPrivateProfileIntW(L"shading", L"dist_mist", dist, pIniFilename); | |
0 | 4601 |
4602 wchar_t pDefaultSkyTextureW[1024]; | |
4603 GetPrivateProfileStringW(L"textures", L"sky", L"plansky1", pDefaultSkyTextureW, 0x10u, pIniFilename); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
4604 sprintf(pDefaultSkyTexture.data(), "%S", pDefaultSkyTextureW); |
0 | 4605 |
4606 wchar_t pDefaultGroundTextureW[1024]; | |
4607 GetPrivateProfileStringW(L"textures", L"default", L"dirt", pDefaultGroundTextureW, 0x10u, pIniFilename); | |
4608 sprintf(pDefaultGroundTexture, "%S", pDefaultGroundTextureW); | |
4609 | |
4610 wchar_t pFloat[1024]; | |
4611 GetPrivateProfileStringW(L"debug", L"recmod1", L"1.0", pFloat, 0x10u, pIniFilename); | |
4612 swscanf(pFloat, L"%f", &flt_6BE3A4_debug_recmod1); | |
4613 | |
4614 GetPrivateProfileStringW(L"debug", L"recmod2", L"1.0", pFloat, 0x10u, pIniFilename); | |
4615 swscanf(pFloat, L"%f", &flt_6BE3A8_debug_recmod2); | |
4616 | |
4617 flt_6BE3AC_debug_recmod1_x_1_6 = flt_6BE3A4_debug_recmod1 * 1.666666666666667; | |
4618 | |
4619 v3 = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
4620 if ( strlen(pDefaultSkyTexture.data()) ) |
0 | 4621 { |
4622 do | |
4623 { | |
4624 if ( pDefaultSkyTexture[v3] == ' ' ) | |
4625 pDefaultSkyTexture[v3] = 0; | |
4626 ++v3; | |
4627 } | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
4628 while ( v3 < strlen(pDefaultSkyTexture.data()) ); |
0 | 4629 } |
4630 v4 = 0; | |
4631 if ( strlen(pDefaultGroundTexture) ) | |
4632 { | |
4633 do | |
4634 { | |
4635 if ( pDefaultGroundTexture[v4] == ' ' ) | |
4636 pDefaultGroundTexture[v4] = 0; | |
4637 ++v4; | |
4638 } | |
4639 while ( v4 < strlen(pDefaultGroundTexture) ); | |
4640 } | |
4641 | |
4642 texmapping_terrain_subdivsize = GetPrivateProfileIntW(L"texmapping", L"terrain_subdivsize", 16, pIniFilename); | |
4643 texmapping_terrain_subdivpow2 = GetPrivateProfileIntW(L"texmapping", L"terrain_subdivpow2", 4, pIniFilename); | |
4644 texmapping_building_subdivsize = GetPrivateProfileIntW(L"texmapping", L"building_subdivsize", 32, pIniFilename); | |
4645 texmapping_building_subdivpow2 = GetPrivateProfileIntW(L"texmapping", L"building_subdivpow2", 5, pIniFilename); | |
4646 | |
4647 MM7Initialization(); | |
4648 } | |
4649 | |
4650 //----- (004666D5) -------------------------------------------------------- | |
1458 | 4651 void MM7Initialization() |
0 | 4652 { |
4653 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
4654 { | |
4655 if ( !byte_6BE388_graphicsmode ) | |
4656 { | |
4657 outdoor_grid_band_1 = 10; | |
4658 outdoor_grid_band_2 = 15; | |
4659 outdoor_grid_band_3 = 20; | |
1637 | 4660 pODMRenderParams->shading_dist_mist = 8192; |
4661 pODMRenderParams->bNoSky = false; | |
0 | 4662 LOBYTE(viewparams->field_20) = 0; |
4663 } | |
4664 mipmapping_terrain_mm1 = 1024; | |
4665 mipmapping_terrain_mm2 = 2048; | |
4666 mipmapping_building_mm1 = 1024; | |
4667 mipmapping_building_mm2 = 2048; | |
1637 | 4668 pODMRenderParams->shading_dist_shade = 2048; |
4669 pODMRenderParams->terrain_gamma = 0; | |
4670 pODMRenderParams->building_gamme = 0; | |
0 | 4671 mipmapping_terrain_mm3 = 4096; |
4672 mipmapping_building_mm3 = 4096; | |
1637 | 4673 pODMRenderParams->shading_dist_shademist = 4096; |
4674 pODMRenderParams->outdoor_no_wavy_water = 0; | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
4675 //_47F4D3_initialize_terrain_bezier_stuff(outdoor_grid_band_1, outdoor_grid_band_2, outdoor_grid_band_3); |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
4676 { |
1637 | 4677 pODMRenderParams->outdoor_grid_band_3 = outdoor_grid_band_3; |
4678 pODMRenderParams->uPickDepth = outdoor_grid_band_3 * 512; | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
4679 } |
0 | 4680 } |
4681 else | |
4682 { | |
4683 LOBYTE(viewparams->field_20) = 0; | |
4684 } | |
4685 pParty->uFlags |= 2u; | |
692 | 4686 viewparams->uSomeY = viewparams->uScreen_topL_Y; |
4687 viewparams->uSomeX = viewparams->uScreen_topL_X; | |
4688 viewparams->uSomeZ = viewparams->uScreen_BttmR_X; | |
4689 viewparams->uSomeW = viewparams->uScreen_BttmR_Y; | |
4690 | |
4691 pViewport->SetScreen(viewparams->uScreen_topL_X, viewparams->uScreen_topL_Y, viewparams->uScreen_BttmR_X, viewparams->uScreen_BttmR_Y); | |
0 | 4692 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) |
1637 | 4693 pODMRenderParams->Initialize(); |
0 | 4694 } |
4695 | |
4696 //----- (00466C40) -------------------------------------------------------- | |
4697 const wchar_t *MENU_STATE_to_string(MENU_STATE m) | |
4698 { | |
4699 switch (m) | |
4700 { | |
982 | 4701 case -1: return L"-1"; |
4702 case MENU_MAIN: return L"MENU_MAIN"; | |
4703 case MENU_NEWGAME: return L"MENU_NEWGAME"; | |
4704 case MENU_CREDITS: return L"MENU_CREDITS"; | |
4705 case MENU_SAVELOAD: return L"MENU_SAVELOAD"; | |
4706 case MENU_EXIT_GAME: return L"MENU_EXIT_GAME"; | |
4707 case MENU_5: return L"MENU_5"; | |
4708 case MENU_CREATEPARTY: return L"MENU_CREATEPARTY"; | |
165 | 4709 case MENU_NAMEPANELESC: return L"MENU_NAMEPANELESC"; |
982 | 4710 case MENU_CREDITSPROC: return L"MENU_CREDITSPROC"; |
961 | 4711 case MENU_LoadingProcInMainMenu: return L"MENU_LoadingProcInMainMenu"; |
1458 | 4712 case MENU_DebugBLVLevel: return L"MENU_DebugBLVLevel"; |
165 | 4713 case MENU_CREDITSCLOSE: return L"MENU_CREDITSCLOSE"; |
982 | 4714 default: return L"unk"; |
0 | 4715 }; |
4716 }; | |
4717 void SetCurrentMenuID(MENU_STATE uMenu) | |
4718 { | |
4719 uCurrentMenuID = uMenu; | |
4720 | |
4721 Log::Warning(L"CurrentMenu = %s", MENU_STATE_to_string(uMenu)); | |
4722 } | |
4723 | |
4724 //----- (00466CA0) -------------------------------------------------------- | |
4725 MENU_STATE GetCurrentMenuID() | |
4726 { | |
4727 return uCurrentMenuID; | |
4728 } | |
4729 | |
4730 | |
4731 //----- (0046A6AC) -------------------------------------------------------- | |
1459 | 4732 int __fastcall _46A6AC_spell_render(int a1, int a2, int a3) |
0 | 4733 { |
4734 int result; // eax@2 | |
4735 unsigned int v4; // edx@3 | |
4736 int *v5; // esi@6 | |
4737 unsigned int v6; // ebx@6 | |
4738 signed int v7; // edi@9 | |
4739 unsigned __int16 v8; // ax@9 | |
4740 int i; // eax@14 | |
4741 int v10; // ecx@19 | |
4742 int v11; // [sp+0h] [bp-18h]@1 | |
4743 unsigned int v12; // [sp+4h] [bp-14h]@3 | |
4744 unsigned int v13; // [sp+8h] [bp-10h]@4 | |
4745 int v14; // [sp+Ch] [bp-Ch]@1 | |
4746 int *v15; // [sp+10h] [bp-8h]@4 | |
4747 int v16; // [sp+14h] [bp-4h]@3 | |
4748 | |
4749 v11 = a2; | |
4750 v14 = a1; | |
4751 if ( pRenderer->pRenderD3D ) | |
4752 { | |
1459 | 4753 result = _46A6AC_spell_render_d3d(a1, a2, a3); |
0 | 4754 } |
4755 else | |
4756 { | |
1459 | 4757 __debugbreak(); // SW render never called |
0 | 4758 v16 = 0; |
692 | 4759 v4 = viewparams->uScreen_topL_X; |
4760 v12 = viewparams->uScreen_BttmR_X; | |
4761 if ( (signed int)viewparams->uScreen_topL_Y < (signed int)viewparams->uScreen_BttmR_Y ) | |
4762 { | |
4763 v15 = &pRenderer->pActiveZBuffer[viewparams->uScreen_topL_X + 640 * viewparams->uScreen_topL_Y]; | |
4764 v13 = ((viewparams->uScreen_BttmR_Y - viewparams->uScreen_topL_Y - 1) >> 1) + 1; | |
0 | 4765 do |
4766 { | |
4767 if ( (signed int)v4 < (signed int)v12 ) | |
4768 { | |
4769 v5 = v15; | |
4770 v6 = ((v12 - v4 - 1) >> 1) + 1; | |
4771 do | |
4772 { | |
848 | 4773 if ( PID_TYPE(*(char *)v5) == OBJECT_Actor) |
0 | 4774 { |
4775 if ( *v5 <= a3 << 16 ) | |
4776 { | |
848 | 4777 v7 = PID_ID((signed int)(unsigned __int16)*v5); |
0 | 4778 v8 = pActors[v7].uAIState; |
4779 if ( v8 != 5 ) | |
4780 { | |
4781 if ( v8 != 4 && v8 != 11 && v8 != 17 && v8 != 19 ) | |
4782 { | |
4783 for ( i = 0; i < v16; ++i ) | |
4784 { | |
4785 if ( *(int *)(v14 + 4 * i) == v7 ) | |
4786 break; | |
4787 } | |
4788 if ( i == v16 ) | |
4789 { | |
4790 if ( i < v11 - 1 ) | |
4791 { | |
4792 v10 = v16++; | |
4793 *(int *)(v14 + 4 * v10) = v7; | |
4794 } | |
4795 } | |
4796 } | |
4797 } | |
4798 } | |
4799 } | |
4800 v5 += 2; | |
4801 --v6; | |
4802 } | |
4803 while ( v6 ); | |
4804 } | |
4805 v15 += 1280; | |
4806 --v13; | |
4807 } | |
4808 while ( v13 ); | |
4809 } | |
4810 result = v16; | |
4811 } | |
4812 return result; | |
4813 } | |
4814 | |
4815 //----- (0046A7C8) -------------------------------------------------------- | |
1459 | 4816 int __fastcall _46A6AC_spell_render_d3d(int a1, int a2, int a3) |
0 | 4817 { |
4818 unsigned int v3; // eax@2 | |
4819 int v4; // ecx@2 | |
4820 unsigned int v5; // eax@2 | |
4821 unsigned int v6; // eax@4 | |
4822 unsigned int v7; // edi@4 | |
4823 unsigned __int16 v8; // ax@4 | |
4824 float v9; // ST00_4@9 | |
4825 int v10; // ecx@11 | |
4826 unsigned int v12; // [sp+10h] [bp-14h]@1 | |
4827 int v13; // [sp+14h] [bp-10h]@1 | |
4828 int v14; // [sp+18h] [bp-Ch]@1 | |
4829 int v15; // [sp+1Ch] [bp-8h]@1 | |
4830 unsigned int a1a; // [sp+20h] [bp-4h]@1 | |
4831 | |
4832 v13 = a1; | |
4833 v14 = a2; | |
4834 v15 = 0; | |
4835 a1a = 0; | |
4836 v12 = pRenderer->GetBillboardDrawListSize(); | |
4837 if ( (signed int)v12 > 0 ) | |
4838 { | |
4839 do | |
4840 { | |
4841 v3 = pRenderer->GetParentBillboardID(a1a); | |
4842 v4 = pBillboardRenderList[v3].sZValue; | |
194 | 4843 v5 = (unsigned __int16)pBillboardRenderList[v3].object_pid; |
848 | 4844 if ( PID_TYPE(v5) == OBJECT_Actor) |
0 | 4845 { |
4846 if ( v4 <= (unsigned int)(a3 << 16) ) | |
4847 { | |
848 | 4848 v6 = PID_ID(v5); |
0 | 4849 v7 = v6; |
4850 v8 = pActors[v6].uAIState; | |
1038 | 4851 if ( v8 != Dead ) |
4852 { | |
4853 if ( v8 != Dying ) | |
4854 { | |
4855 if ( v8 != Removed ) | |
0 | 4856 { |
1038 | 4857 if ( v8 != Disabled ) |
0 | 4858 { |
1038 | 4859 if ( v8 != Summoned ) |
0 | 4860 { |
4861 v9 = (double)a3; | |
4862 if ( pGame->pVisInstance->DoesRayIntersectBillboard(v9, a1a) ) | |
4863 { | |
4864 if ( v15 < v14 - 1 ) | |
4865 { | |
4866 v10 = v15++; | |
4867 *(int *)(v13 + 4 * v10) = v7; | |
4868 } | |
4869 } | |
4870 } | |
4871 } | |
4872 } | |
4873 } | |
4874 } | |
4875 } | |
4876 } | |
4877 ++a1a; | |
4878 } | |
4879 while ( (signed int)a1a < (signed int)v12 ); | |
4880 } | |
4881 return v15; | |
4882 } | |
4883 | |
4884 //----- (0046A89E) -------------------------------------------------------- | |
1459 | 4885 int __fastcall _46A89E_immolation_effect(int a1, int a2, int a3) |
0 | 4886 { |
4887 signed int v3; // edi@1 | |
90 | 4888 Actor *v4; // esi@2 |
0 | 4889 int v5; // ebx@3 |
4890 int v6; // eax@3 | |
4891 int v7; // ebx@3 | |
4892 unsigned int v8; // ecx@3 | |
4893 int v9; // edx@4 | |
4894 unsigned int v10; // edx@6 | |
4895 unsigned int v11; // edx@8 | |
4896 __int16 v12; // ax@10 | |
4897 int v13; // ecx@15 | |
4898 int v15; // [sp+4h] [bp-18h]@1 | |
4899 int v16; // [sp+8h] [bp-14h]@1 | |
4900 int v17; // [sp+Ch] [bp-10h]@3 | |
4901 int v18; // [sp+10h] [bp-Ch]@3 | |
4902 int v19; // [sp+18h] [bp-4h]@1 | |
4903 | |
4904 v3 = 0; | |
4905 v15 = a2; | |
4906 v16 = a1; | |
4907 v19 = 0; | |
4908 if ( (signed int)uNumActors > 0 ) | |
4909 { | |
1202 | 4910 v4 = pActors.data();//[0].uAIState; |
0 | 4911 do |
4912 { | |
90 | 4913 v5 = abs(v4->vPosition.x - pParty->vPosition.x); |
4914 v17 = abs(v4->vPosition.y - pParty->vPosition.y); | |
4915 v18 = abs(v4->vPosition.z - pParty->vPosition.z); | |
0 | 4916 v6 = v5; |
4917 v7 = v17; | |
4918 v8 = v18; | |
4919 if ( v6 < v17 ) | |
4920 { | |
4921 v9 = v6; | |
4922 v6 = v17; | |
4923 v7 = v9; | |
4924 } | |
4925 if ( v6 < v18 ) | |
4926 { | |
4927 v10 = v6; | |
4928 v6 = v18; | |
4929 v8 = v10; | |
4930 } | |
4931 if ( v7 < (signed int)v8 ) | |
4932 { | |
4933 v11 = v8; | |
4934 v8 = v7; | |
4935 v7 = v11; | |
4936 } | |
4937 if ( (signed int)(((unsigned int)(11 * v7) >> 5) + (v8 >> 2) + v6) <= a3 ) | |
4938 { | |
90 | 4939 v12 = v4->uAIState; |
4940 if ( v4->uAIState != 5 ) | |
0 | 4941 { |
4942 if ( v12 != 4 ) | |
4943 { | |
4944 if ( v12 != 11 ) | |
4945 { | |
4946 if ( v12 != 19 ) | |
4947 { | |
4948 if ( v12 != 17 ) | |
4949 { | |
4950 v13 = v19++; | |
4951 *(int *)(v16 + 4 * v13) = v3; | |
4952 if ( v19 >= v15 - 1 ) | |
4953 break; | |
4954 } | |
4955 } | |
4956 } | |
4957 } | |
4958 } | |
4959 } | |
4960 ++v3; | |
90 | 4961 ++v4; |
0 | 4962 } |
4963 while ( v3 < (signed int)uNumActors ); | |
4964 } | |
4965 return v19; | |
4966 } | |
4967 | |
4968 //----- (0046A99B) -------------------------------------------------------- | |
1458 | 4969 int sub_46A99B() |
0 | 4970 { |
4971 int v0; // ebx@1 | |
4972 signed int v1; // ecx@1 | |
4973 signed int v2; // esi@1 | |
4974 int v3; // edx@1 | |
4975 signed int v4; // eax@1 | |
4976 int v5; // ecx@2 | |
4977 int *v6; // eax@3 | |
4978 int v7; // ecx@3 | |
4979 int v8; // edx@5 | |
4980 int v9; // edi@6 | |
4981 unsigned __int8 v10; // zf@14 | |
4982 char v11; // sf@14 | |
4983 char v12; // of@14 | |
4984 int *v14; // esi@19 | |
4985 signed int v15; // ebx@19 | |
4986 int i; // edi@20 | |
4987 int v17; // ecx@21 | |
4988 int v18; // edi@26 | |
4989 int v19; // esi@27 | |
4990 unsigned int v20; // ecx@27 | |
4991 BLVFace *v21; // eax@32 | |
4992 unsigned int v22; // ecx@33 | |
4993 const char *v23; // eax@35 | |
4994 const char *v24; // ecx@36 | |
4995 LevelDecoration *v25; // ecx@43 | |
4996 LevelDecoration *v26; // edi@43 | |
4997 __int16 v27; // ax@43 | |
4998 int v28; // [sp+Ch] [bp-18h]@1 | |
4999 int v29; // [sp+14h] [bp-10h]@2 | |
5000 int v30; // [sp+18h] [bp-Ch]@1 | |
5001 signed int v31; // [sp+1Ch] [bp-8h]@3 | |
5002 int v32; // [sp+20h] [bp-4h]@1 | |
5003 | |
5004 v0 = 0; | |
692 | 5005 v1 = (signed int)(viewparams->uScreen_BttmR_Y + viewparams->uScreen_topL_Y) >> 1; |
5006 v2 = (signed int)(viewparams->uScreen_topL_X + viewparams->uScreen_BttmR_X) >> 1; | |
0 | 5007 v3 = v1 - 50; |
5008 v32 = 0; | |
5009 v4 = 100; | |
5010 v30 = v1 - 50; | |
5011 v28 = v1 + 50; | |
5012 if ( v1 - 50 >= v1 + 50 ) | |
5013 return 0; | |
5014 v5 = 640 * v3; | |
5015 v29 = 640 * v3; | |
5016 while ( 2 ) | |
5017 { | |
1416 | 5018 v6 = &pRenderer->pActiveZBuffer[v2 + v5 - v4 / 2]-1; |
0 | 5019 v7 = v0; |
1416 | 5020 //while ( 1 ) |
5021 for( int i = 0; i < 100; i++) | |
5022 { | |
5023 ++v6; | |
0 | 5024 v8 = *v6; |
5025 if ( (unsigned int)*v6 <= 0x2000000 ) | |
5026 { | |
5027 v9 = 0; | |
5028 if ( v7 > 0 ) | |
5029 { | |
5030 do | |
5031 { | |
5032 if ( dword_7201B0_zvalues[v9] == (unsigned __int16)v8 ) | |
5033 break; | |
5034 ++v9; | |
5035 } | |
5036 while ( v9 < v0 ); | |
5037 } | |
5038 if ( v9 == v0 ) | |
5039 { | |
5040 if ( v8 & 7 ) | |
5041 { | |
5042 dword_720020_zvalues[v7] = v8; | |
5043 dword_7201B0_zvalues[v7] = (unsigned __int16)v8; | |
5044 ++v7; | |
5045 ++v0; | |
5046 v32 = v0; | |
5047 if ( v7 == 99 ) | |
5048 { | |
5049 v12 = 0; | |
5050 v10 = v0 == 0; | |
5051 v11 = v0 < 0; | |
5052 goto LABEL_18; | |
5053 } | |
5054 } | |
5055 } | |
5056 } | |
1416 | 5057 } |
0 | 5058 v4 = -1; |
5059 ++v30; | |
5060 v5 = v29 + 640; | |
5061 v29 += 640; | |
1416 | 5062 if ( v30 >= v28 ) |
5063 break; | |
0 | 5064 } |
5065 v12 = 0; | |
5066 v10 = v0 == 0; | |
5067 v11 = v0 < 0; | |
5068 if ( !v0 ) | |
5069 return 0; | |
5070 LABEL_18: | |
5071 if ( !((unsigned __int8)(v11 ^ v12) | v10) ) | |
5072 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5073 v14 = dword_720020_zvalues.data(); |
0 | 5074 v15 = 1; |
5075 do | |
5076 { | |
5077 for ( i = v15; i < v32; ++i ) | |
5078 { | |
5079 v17 = dword_720020_zvalues[i]; | |
5080 if ( v17 < *v14 ) | |
5081 { | |
5082 dword_720020_zvalues[i] = *v14; | |
5083 *v14 = v17; | |
5084 } | |
5085 } | |
5086 ++v15; | |
5087 ++v14; | |
5088 } | |
5089 while ( v15 - 1 < v32 ); | |
5090 v0 = v32; | |
5091 } | |
5092 v18 = 0; | |
5093 if ( v0 <= 0 ) | |
5094 return 0; | |
5095 while ( 1 ) | |
5096 { | |
5097 v19 = dword_720020_zvalues[v18] & 0xFFFF; | |
848 | 5098 v20 = PID_ID(dword_720020_zvalues[v18]); |
5099 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Item) | |
0 | 5100 { |
5101 if ( v20 >= 0x3E8 ) | |
5102 return 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5103 if ( !(pSpriteObjects[v20].uAttributes & 0x10) ) |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5104 { |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5105 v23 = pSpriteObjects[v20].stru_24.GetDisplayName(); |
0 | 5106 v24 = v23; |
1416 | 5107 GameUI_SetFooterString(v24); |
5108 return v19; | |
0 | 5109 } |
5110 } | |
1416 | 5111 else |
5112 { | |
5113 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Actor) | |
5114 { | |
5115 if ( v20 >= 0xBB8 ) | |
5116 return 0; | |
5117 v24 = (const char *)&pActors[v20]; | |
5118 GameUI_SetFooterString(v24); | |
5119 return v19; | |
5120 } | |
5121 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Decoration) | |
5122 break; | |
5123 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_BModel) | |
5124 { | |
5125 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
5126 { | |
5127 v21 = &pIndoor->pFaces[v20]; | |
5128 if ( BYTE3(v21->uAttributes) & 2 ) | |
5129 v22 = pIndoor->pFaceExtras[v21->uFaceExtraID].uEventID; | |
5130 } | |
5131 else | |
5132 { | |
5133 if ( (dword_720020_zvalues[v18] & 0xFFFFu) >> 9 < pOutdoor->uNumBModels ) | |
5134 { | |
5135 v22 = pOutdoor->pBModels[(dword_720020_zvalues[v18] & 0xFFFFu) >> 9].pFaces[v20 & 0x3F].sCogTriggeredID; | |
5136 if ( v22 ) | |
5137 { | |
5138 v23 = GetEventHintString(v22); | |
5139 if ( v23 ) | |
5140 { | |
5141 v24 = v23; | |
5142 GameUI_SetFooterString(v24); | |
5143 return v19; | |
5144 } | |
5145 } | |
5146 } | |
5147 } | |
5148 } | |
5149 } | |
5150 ++v18; | |
0 | 5151 if ( v18 >= v0 ) |
5152 return 0; | |
5153 } | |
5154 v25 = &pLevelDecorations[v20]; | |
5155 v26 = v25; | |
1514
965af46e8793
Rename LevelDecoration::field_16_event_id to LevelDecoration::uEventID.
yoctozepto
parents:
1513
diff
changeset
|
5156 v27 = v25->uEventID; |
0 | 5157 if ( v27 ) |
5158 { | |
428 | 5159 v23 = GetEventHintString(v27); |
0 | 5160 if ( !v23 ) |
5161 return v19; | |
1416 | 5162 v24 = v23; |
5163 GameUI_SetFooterString(v24); | |
5164 return v19; | |
0 | 5165 } |
5166 if ( v25->IsInteractive() ) | |
1736
c6fe09a06712
Player::CompareVariable finished, renamed stru_5E4C90 to stru_5E4C90_MapPersistVars, party::field_4A0 to party::CounterEventValues
Grumpy7
parents:
1706
diff
changeset
|
5167 v24 = pNPCTopics[stru_5E4C90_MapPersistVars._decor_events[v26->_idx_in_stru123 - 75] + 379].pTopic; |
0 | 5168 else |
5169 v24 = pDecorationList->pDecorations[v26->uDecorationDescID].field_20; | |
994 | 5170 GameUI_SetFooterString(v24); |
0 | 5171 return v19; |
5172 } | |
5173 | |
5174 //----- (0046BDA8) -------------------------------------------------------- | |
1458 | 5175 unsigned int GetGravityStrength() |
0 | 5176 { |
5177 int v0; // eax@1 | |
5178 | |
5179 v0 = ~LOBYTE(pGame->uFlags2) & 8; | |
5180 LOBYTE(v0) = v0 | 2; | |
5181 return (unsigned int)v0 >> 1; | |
5182 } | |
5183 | |
5184 //----- (0046BDC0) -------------------------------------------------------- | |
1458 | 5185 void UpdateUserInput_and_MapSpecificStuff() |
0 | 5186 { |
5187 if ( dword_6BE364_game_settings_1 & 0x80 ) | |
5188 { | |
5189 LOBYTE(dword_6BE364_game_settings_1) = dword_6BE364_game_settings_1 & 0x7F; | |
5190 } | |
5191 else | |
5192 { | |
630 | 5193 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) |
0 | 5194 BLV_UpdateUserInputAndOther(); |
630 | 5195 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) |
0 | 5196 ODM_UpdateUserInputAndOther(); |
630 | 5197 |
783 | 5198 area_of_effect__damage_evaluate(); |
0 | 5199 } |
5200 } | |
5201 | |
5202 //----- (0046BFFA) -------------------------------------------------------- | |
5203 bool __fastcall _46BFFA_check_object_intercept(unsigned int uLayingItemID, signed int a2) | |
5204 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5205 //SpriteObject *v2; // esi@1 |
0 | 5206 ObjectDesc *v3; // ebx@1 |
5207 unsigned __int16 v5; // cx@9 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5208 //unsigned __int16 v6; // cx@14 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5209 //signed int v7; // edx@14 |
0 | 5210 unsigned int v8; // eax@19 |
5211 unsigned int v9; // edi@19 | |
5212 signed int v10; // ebx@19 | |
5213 char *v11; // edx@20 | |
5214 unsigned __int16 v12; // ax@23 | |
5215 int v13; // eax@27 | |
5216 unsigned int v14; // ebx@33 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5217 //unsigned __int16 v15; // ax@35 |
0 | 5218 int v16; // eax@36 |
5219 unsigned int v17; // eax@37 | |
5220 __int16 v18; // di@37 | |
5221 signed int v19; // edx@37 | |
5222 unsigned __int8 v20; // sf@37 | |
5223 char *v21; // ecx@38 | |
5224 unsigned __int16 v22; // ax@41 | |
5225 unsigned int v23; // eax@46 | |
5226 signed int v24; // ebx@46 | |
5227 char *v25; // edx@47 | |
5228 int v26; // edx@54 | |
5229 int v27; // edx@55 | |
5230 int v28; // edx@56 | |
5231 int v29; // edx@57 | |
5232 unsigned __int16 v30; // ax@60 | |
5233 unsigned int v31; // ecx@60 | |
5234 int v32; // edi@60 | |
5235 unsigned int v33; // eax@65 | |
5236 signed int v34; // edx@65 | |
5237 char *v35; // ecx@66 | |
5238 unsigned __int16 v36; // ax@69 | |
5239 int v37; // ST14_4@72 | |
5240 int v38; // eax@72 | |
5241 int v39; // ST10_4@72 | |
5242 int v40; // ST0C_4@72 | |
5243 int v41; // edx@76 | |
5244 int v42; // edx@77 | |
5245 int v43; // edx@78 | |
5246 unsigned __int8 v44; // zf@79 | |
5247 int v45; // edx@79 | |
5248 unsigned __int16 v46; // ax@80 | |
5249 int v47; // eax@81 | |
5250 int v48; // edx@87 | |
5251 int v49; // edx@88 | |
5252 int v50; // edx@89 | |
5253 unsigned int v51; // eax@93 | |
5254 signed int v52; // ebx@93 | |
5255 char *v53; // edx@94 | |
5256 unsigned __int16 v54; // ax@98 | |
5257 unsigned int v55; // ecx@98 | |
5258 signed int v56; // ebx@98 | |
5259 char *v57; // edx@99 | |
5260 unsigned __int16 v58; // ax@102 | |
5261 unsigned __int16 v59; // ax@107 | |
5262 unsigned int v60; // ecx@107 | |
5263 signed int v61; // ebx@107 | |
5264 char *v62; // edx@108 | |
5265 unsigned __int16 v63; // ax@111 | |
5266 int v64; // ebx@114 | |
5267 signed int v65; // eax@114 | |
5268 unsigned int v66; // edi@123 | |
5269 unsigned __int16 v67; // ax@124 | |
5270 unsigned int v68; // ecx@124 | |
5271 signed int v69; // ebx@124 | |
5272 char *v70; // edx@125 | |
5273 unsigned __int16 v71; // ax@128 | |
5274 unsigned int v72; // ebx@131 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5275 //int v73; // ST14_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5276 //int v74; // ST10_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5277 //int v75; // ebx@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5278 //int v76; // ST0C_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5279 //unsigned __int16 v77; // ax@132 |
0 | 5280 int v78; // eax@133 |
5281 char v79; // zf@139 | |
5282 unsigned int v80; // eax@140 | |
5283 signed int v81; // edx@140 | |
5284 char *v82; // ecx@141 | |
5285 unsigned __int16 v83; // ax@144 | |
5286 unsigned __int16 v84; // ax@151 | |
5287 unsigned int v85; // ecx@151 | |
5288 signed int v86; // ebx@151 | |
5289 char *v87; // edx@152 | |
5290 unsigned __int16 v88; // ax@155 | |
5291 unsigned int v89; // eax@158 | |
5292 int v90; // ST34_4@159 | |
5293 int v91; // eax@159 | |
5294 unsigned int v92; // eax@163 | |
5295 unsigned int v93; // eax@177 | |
5296 char *v94; // ecx@178 | |
5297 unsigned __int16 v95; // ax@181 | |
5298 unsigned __int16 v96; // ax@184 | |
5299 int v97; // eax@185 | |
5300 unsigned __int16 v98; // ax@191 | |
5301 unsigned int v99; // ecx@191 | |
5302 char v100; // ST18_1@198 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5303 //int v101; // ST14_4@198 |
0 | 5304 int v102; // eax@198 |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5305 //int v103; // ST10_4@198 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5306 //int v104; // ST0C_4@198 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5307 //unsigned __int16 v105; // ax@200 |
0 | 5308 signed int v106; // eax@208 |
5309 unsigned int v107; // edx@220 | |
5310 signed int v108; // ebx@225 | |
5311 unsigned int v109; // eax@234 | |
5312 signed int v110; // ebx@234 | |
5313 char *v111; // ecx@235 | |
5314 unsigned __int16 v112; // ax@238 | |
5315 unsigned __int16 v113; // si@241 | |
5316 int v114; // eax@242 | |
5317 int v115; // eax@245 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5318 //signed int v116; // eax@245 |
0 | 5319 unsigned __int16 v117; // ax@251 |
5320 unsigned int v118; // ecx@251 | |
5321 signed int v119; // ebx@251 | |
5322 char *v120; // edx@252 | |
5323 unsigned __int16 v121; // ax@255 | |
5324 unsigned int v122; // eax@260 | |
5325 char *v123; // edx@261 | |
5326 int v124; // eax@267 | |
5327 int v125; // [sp-20h] [bp-4Ch]@28 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5328 //signed int v126; // [sp-1Ch] [bp-48h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5329 //unsigned int v127; // [sp-18h] [bp-44h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5330 //signed int v128; // [sp-14h] [bp-40h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5331 //signed int v129; // [sp-10h] [bp-3Ch]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5332 //int v130; // [sp-Ch] [bp-38h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5333 //unsigned int v131; // [sp-8h] [bp-34h]@27 |
0 | 5334 char v132; // [sp-8h] [bp-34h]@131 |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5335 //int v133; // [sp-4h] [bp-30h]@27 |
0 | 5336 char v134; // [sp-4h] [bp-30h]@131 |
5337 signed int v135; // [sp-4h] [bp-30h]@217 | |
5338 int v136; // [sp+Ch] [bp-20h]@208 | |
5339 int v137; // [sp+10h] [bp-1Ch]@208 | |
5340 signed int v138; // [sp+14h] [bp-18h]@207 | |
5341 signed int v139; // [sp+18h] [bp-14h]@208 | |
5342 char *v140; // [sp+1Ch] [bp-10h]@61 | |
5343 signed int v141; // [sp+1Ch] [bp-10h]@117 | |
5344 unsigned int v142; // [sp+1Ch] [bp-10h]@158 | |
5345 signed int v143; // [sp+1Ch] [bp-10h]@172 | |
5346 char *v144; // [sp+1Ch] [bp-10h]@192 | |
5347 signed int v145; // [sp+20h] [bp-Ch]@1 | |
5348 signed int v146; // [sp+20h] [bp-Ch]@60 | |
5349 int v147; // [sp+20h] [bp-Ch]@72 | |
5350 signed int v148; // [sp+20h] [bp-Ch]@158 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5351 //int v149; // [sp+20h] [bp-Ch]@198 |
0 | 5352 unsigned __int16 v150; // [sp+20h] [bp-Ch]@208 |
5353 int v151; // [sp+24h] [bp-8h]@1 | |
5354 signed int v152; // [sp+24h] [bp-8h]@208 | |
5355 unsigned int v153; // [sp+28h] [bp-4h]@1 | |
5356 | |
5357 v153 = uLayingItemID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5358 //v2 = &pSpriteObjects[uLayingItemID]; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5359 v3 = &pObjectList->pObjects[pSpriteObjects[uLayingItemID].uObjectDescID]; |
0 | 5360 v145 = a2; |
848 | 5361 v151 = PID_TYPE(a2); |
5362 if ( PID_TYPE(a2) == OBJECT_Actor) | |
5363 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5364 if ( PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) == OBJECT_Actor |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5365 && !pActors[PID_ID(pSpriteObjects[uLayingItemID].spell_caster_pid)].GetActorsRelation(&pActors[PID_ID(a2)]) ) |
0 | 5366 return 1; |
5367 } | |
5368 else | |
5369 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5370 if ( PID_TYPE(a2) == OBJECT_Player && PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) == OBJECT_Player) |
0 | 5371 return 1; |
5372 } | |
5373 if ( pParty->bTurnBasedModeOn == 1 ) | |
5374 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5375 v5 = pSpriteObjects[uLayingItemID].uAttributes; |
0 | 5376 if ( v5 & 4 ) |
5377 { | |
1450 | 5378 --pTurnEngine->pending_actions; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5379 pSpriteObjects[uLayingItemID].uAttributes = v5 & 0xFFFB; |
0 | 5380 } |
5381 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5382 if ( v151 == OBJECT_BModel && PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) != OBJECT_Player) |
1280 | 5383 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5384 if (PID_ID(pSpriteObjects[uLayingItemID].spell_caster_pid) < 500) //bugfix PID_ID(v2->spell_caster_pid)==1000 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5385 BYTE2(pActors[PID_ID(pSpriteObjects[uLayingItemID].spell_caster_pid)].uAttributes) |= 4; |
1280 | 5386 } |
5387 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5388 //v6 = v2->uType; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5389 //v7 = v2->uType; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5390 if ( pSpriteObjects[uLayingItemID].uType > 3060 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5391 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5392 if ( pSpriteObjects[uLayingItemID].uType > 6090 ) |
0 | 5393 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5394 if ( pSpriteObjects[uLayingItemID].uType > 8090 ) |
0 | 5395 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5396 if ( pSpriteObjects[uLayingItemID].uType == 9010 ) |
0 | 5397 goto LABEL_247; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5398 if ( pSpriteObjects[uLayingItemID].uType != 9030 ) |
0 | 5399 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5400 if ( pSpriteObjects[uLayingItemID].uType != 9040 ) |
0 | 5401 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5402 if ( pSpriteObjects[uLayingItemID].uType != 9080 ) |
0 | 5403 return 0; |
5404 LABEL_191: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5405 v98 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 5406 v99 = pObjectList->uNumObjects; |
5407 v32 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5408 pSpriteObjects[uLayingItemID].uType = v98; |
0 | 5409 v146 = 0; |
5410 if ( (signed int)v99 > 0 ) | |
5411 { | |
5412 v144 = (char *)&pObjectList->pObjects->uObjectID; | |
5413 while ( v98 != *(short *)v144 ) | |
5414 { | |
5415 ++v146; | |
5416 v144 += 56; | |
5417 if ( v146 >= (signed int)v99 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5418 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5419 pSpriteObjects[uLayingItemID].uObjectDescID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5420 if ( !v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5421 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5422 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5423 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5424 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5425 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5426 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5427 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5428 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5429 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5430 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5431 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5432 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5433 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5434 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5435 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5436 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5437 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5438 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5439 } |
0 | 5440 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5441 pSpriteObjects[uLayingItemID].uObjectDescID = v146; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5442 if ( v146 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5443 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5444 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5445 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5446 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5447 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5448 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5449 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5450 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5451 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5452 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5453 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5454 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5455 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5456 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5457 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5458 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5459 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5460 return 0; |
0 | 5461 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5462 pSpriteObjects[uLayingItemID].uObjectDescID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5463 if ( !v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5464 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5465 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5466 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5467 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5468 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5469 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5470 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5471 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5472 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5473 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5474 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5475 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5476 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5477 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5478 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5479 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5480 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5481 return 0; |
0 | 5482 } |
5483 goto LABEL_93; | |
5484 } | |
5485 LABEL_172: | |
5486 v143 = 17030; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5487 switch ( pSpriteObjects[uLayingItemID].uType ) |
0 | 5488 { |
5489 case 0x1798u: | |
5490 v143 = 15040; | |
5491 break; | |
5492 case 0xFAAu: | |
5493 v143 = 13010; | |
5494 break; | |
5495 case 0x2346u: | |
5496 v143 = 18030; | |
5497 break; | |
5498 } | |
5499 v138 = 1; | |
141 | 5500 if ( v151 != OBJECT_Actor) |
0 | 5501 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5502 if ( pSpriteObjects[uLayingItemID].uType != 9030 || pSpriteObjects[uLayingItemID].spell_skill != 4 ) |
1416 | 5503 { |
5504 SpriteObject::OnInteraction(v153); | |
5505 return 0; | |
5506 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5507 pSpriteObjects[uLayingItemID]._46BEF1_apply_spells_aoe(); |
0 | 5508 LABEL_233: |
5509 if ( !v138 ) | |
5510 { | |
5511 v109 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5512 ++pSpriteObjects[uLayingItemID].uType; |
0 | 5513 v110 = 0; |
5514 if ( (signed int)v109 <= 0 ) | |
5515 { | |
5516 LABEL_238: | |
5517 v112 = 0; | |
5518 } | |
5519 else | |
5520 { | |
5521 v111 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5522 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v111 ) |
0 | 5523 { |
5524 ++v110; | |
5525 v111 += 56; | |
5526 if ( v110 >= (signed int)v109 ) | |
5527 goto LABEL_238; | |
5528 } | |
5529 v112 = v110; | |
5530 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5531 pSpriteObjects[uLayingItemID].uObjectDescID = v112; |
0 | 5532 if ( !v112 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5533 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5534 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5535 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5536 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5537 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5538 v113 = pSpriteObjects[uLayingItemID].uSoundID; |
0 | 5539 if ( v113 ) |
5540 v114 = (signed __int16)v113 + 4; | |
5541 else | |
5542 v114 = 0; | |
5543 v115 = 8 * v153; | |
862 | 5544 LOBYTE(v115) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5545 v125 = v143 + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5546 pAudioPlayer->PlaySound((SoundID)v125, v115, 0, -1, 0, v114, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5547 return 0; |
0 | 5548 } |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5549 SpriteObject::OnInteraction(v153); |
0 | 5550 return 0; |
5551 } | |
5552 v106 = v145; | |
5553 v150 = 0; | |
848 | 5554 v139 = PID_ID(v106); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5555 v137 = pSpriteObjects[uLayingItemID].spell_level; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5556 v152 = pSpriteObjects[uLayingItemID].spell_skill; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5557 v136 = pSpriteObjects[uLayingItemID].spell_id; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5558 if ( pSpriteObjects[uLayingItemID].uType == 9030 ) |
0 | 5559 { |
5560 v150 = 2; | |
5561 if ( v152 == 2 ) | |
5562 { | |
5563 v150 = 3; | |
5564 } | |
5565 else | |
5566 { | |
5567 if ( v152 >= 3 ) | |
5568 v150 = 4; | |
5569 } | |
5570 BYTE2(pActors[v139].uAttributes) |= 8u; | |
5571 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5572 if ( pSpriteObjects[uLayingItemID].uType == 6040 ) |
0 | 5573 { |
5574 v135 = 7; | |
5575 } | |
5576 else | |
5577 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5578 if ( pSpriteObjects[uLayingItemID].uType == 8030 ) |
0 | 5579 { |
5580 v135 = 9; | |
5581 } | |
5582 else | |
5583 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5584 if ( pSpriteObjects[uLayingItemID].uType != 9030 ) |
0 | 5585 { |
5586 v107 = v136; | |
5587 LABEL_222: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5588 if ( pSpriteObjects[uLayingItemID].uType != 9030 || v152 != 4 ) |
0 | 5589 { |
5590 v108 = v139; | |
5591 if ( stru_50C198.GetMagicalResistance(&pActors[v139], v107) ) | |
5592 { | |
5593 v138 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5594 if ( pSpriteObjects[uLayingItemID].uType == 8030 ) |
0 | 5595 { |
5596 pActors[v108].uAIState = Standing; | |
5597 pActors[v108].UpdateAnimation(); | |
5598 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5599 pActors[v108].pActorBuffs[v136].Apply(pParty->uTimePlayed + (signed int)(signed __int64)((double)(v137 << 7) * 0.033333335), |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5600 v152, v150, 0, 0); |
0 | 5601 } |
5602 } | |
5603 else | |
5604 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5605 pSpriteObjects[uLayingItemID]._46BEF1_apply_spells_aoe(); |
0 | 5606 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5607 pSpriteObjects[uLayingItemID].spell_level = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5608 pSpriteObjects[uLayingItemID].spell_skill = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5609 pSpriteObjects[uLayingItemID].spell_id = 0; |
0 | 5610 goto LABEL_233; |
5611 } | |
5612 v135 = 10; | |
5613 } | |
5614 } | |
5615 v107 = v135; | |
5616 goto LABEL_222; | |
5617 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5618 if ( pSpriteObjects[uLayingItemID].uType == 8090 || pSpriteObjects[uLayingItemID].uType == 7030 || pSpriteObjects[uLayingItemID].uType == 7090 || pSpriteObjects[uLayingItemID].uType == 8000 ) |
0 | 5619 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5620 if ( pSpriteObjects[uLayingItemID].uType == 8010 ) |
0 | 5621 { |
5622 if ( v151 == 3 | |
848 | 5623 && MonsterStats::BelongsToSupertype(pActors[PID_ID(v145)].pMonsterInfo.uID, MONSTER_SUPERTYPE_UNDEAD) ) |
0 | 5624 sub_43A97E(v153, v145); |
5625 v93 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5626 ++pSpriteObjects[uLayingItemID].uType; |
0 | 5627 v9 = 0; |
5628 v52 = 0; | |
5629 if ( (signed int)v93 > 0 ) | |
5630 { | |
5631 v94 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5632 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v94 ) |
0 | 5633 { |
5634 ++v52; | |
5635 v94 += 56; | |
5636 if ( v52 >= (signed int)v93 ) | |
5637 goto LABEL_181; | |
5638 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5639 v95 = v52; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5640 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
1416 | 5641 if ( v95 == (short)v9 ) |
5642 SpriteObject::OnInteraction(v153); | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5643 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5644 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5645 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5646 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5647 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
1416 | 5648 if ( v96 == (short)v9 ) |
5649 v97 = 0; | |
5650 else | |
5651 v97 = (signed __int16)v96 + 4; | |
5652 v92 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5653 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5654 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5655 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5656 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5657 return 0; |
0 | 5658 } |
5659 goto LABEL_181; | |
5660 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5661 v79 = pSpriteObjects[uLayingItemID].uType == 8030; |
0 | 5662 } |
5663 else | |
5664 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5665 if ( pSpriteObjects[uLayingItemID].uType == 6090 ) |
0 | 5666 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5667 if ( pSpriteObjects[uLayingItemID].uType <= 4070 ) |
0 | 5668 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5669 if ( pSpriteObjects[uLayingItemID].uType != 4070 ) |
0 | 5670 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5671 v48 = pSpriteObjects[uLayingItemID].uType - 3090; |
0 | 5672 if ( v48 ) |
5673 { | |
5674 v49 = v48 - 2; | |
5675 if ( v49 ) | |
5676 { | |
5677 v50 = v49 - 908; | |
5678 if ( !v50 ) | |
5679 goto LABEL_93; | |
5680 v45 = v50 - 30; | |
5681 v44 = v45 == 0; | |
5682 goto LABEL_91; | |
5683 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5684 v54 = pSpriteObjects[uLayingItemID].uType - 1; |
0 | 5685 v55 = pObjectList->uNumObjects; |
5686 v9 = 0; | |
5687 v56 = 0; | |
5688 v44 = pObjectList->uNumObjects == 0; | |
5689 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5690 pSpriteObjects[uLayingItemID].uType = v54; |
0 | 5691 if ( v20 | v44 ) |
5692 { | |
5693 LABEL_102: | |
5694 v58 = 0; | |
5695 } | |
5696 else | |
5697 { | |
5698 v57 = (char *)&pObjectList->pObjects->uObjectID; | |
5699 while ( v54 != *(short *)v57 ) | |
5700 { | |
5701 ++v56; | |
5702 v57 += 56; | |
5703 if ( v56 >= (signed int)v55 ) | |
5704 goto LABEL_102; | |
5705 } | |
5706 v58 = v56; | |
5707 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5708 pSpriteObjects[uLayingItemID].uObjectDescID = v58; |
0 | 5709 if ( !v58 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5710 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5711 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5712 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5713 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5714 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 5715 sub_43A97E(v153, v145); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5716 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
0 | 5717 v16 = 0; |
5718 else | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5719 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5720 v124 = 8 * v153; |
0 | 5721 LOBYTE(v124) = v124 | 2; |
1456 | 5722 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5723 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5724 return 0; |
0 | 5725 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5726 v59 = pSpriteObjects[uLayingItemID].uType + 2; |
0 | 5727 v60 = pObjectList->uNumObjects; |
5728 v9 = 0; | |
5729 v61 = 0; | |
5730 v44 = pObjectList->uNumObjects == 0; | |
5731 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5732 pSpriteObjects[uLayingItemID].uType = v59; |
0 | 5733 if ( v20 | v44 ) |
5734 { | |
5735 LABEL_111: | |
5736 v63 = 0; | |
5737 } | |
5738 else | |
5739 { | |
5740 v62 = (char *)&pObjectList->pObjects->uObjectID; | |
5741 while ( v59 != *(short *)v62 ) | |
5742 { | |
5743 ++v61; | |
5744 v62 += 56; | |
5745 if ( v61 >= (signed int)v60 ) | |
5746 goto LABEL_111; | |
5747 } | |
5748 v63 = v61; | |
5749 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5750 pSpriteObjects[uLayingItemID].uObjectDescID = v63; |
0 | 5751 if ( !v63 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5752 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5753 v64 = pSpriteObjects[uLayingItemID].uFacing - stru_5C6E00->uIntegerDoublePi; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5754 v44 = pSpriteObjects[uLayingItemID].spell_skill == 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5755 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5756 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5757 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
0 | 5758 v65 = 7; |
5759 if ( v44 ) | |
5760 v65 = 9; | |
5761 if ( v65 > 0 ) | |
5762 { | |
5763 v141 = v65; | |
5764 do | |
5765 { | |
5766 v64 += (signed int)stru_5C6E00->uIntegerHalfPi >> 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5767 pSpriteObjects[uLayingItemID].Create(v64, 0, 1000, 0); |
0 | 5768 --v141; |
5769 } | |
5770 while ( v141 ); | |
5771 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5772 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5773 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5774 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5775 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5776 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5777 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5778 LOBYTE(v124) = v124 | 2; |
1456 | 5779 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5780 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5781 return 0; |
0 | 5782 } |
5783 if ( v151 == 6 || v151 == 5 || (v66 = 0, !v151) ) | |
5784 return 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5785 v67 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 5786 v68 = pObjectList->uNumObjects; |
5787 v69 = 0; | |
5788 v44 = pObjectList->uNumObjects == 0; | |
5789 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5790 pSpriteObjects[uLayingItemID].uType = v67; |
0 | 5791 if ( v20 | v44 ) |
5792 { | |
5793 LABEL_128: | |
5794 v71 = 0; | |
5795 } | |
5796 else | |
5797 { | |
5798 v70 = (char *)&pObjectList->pObjects->uObjectID; | |
5799 while ( v67 != *(short *)v70 ) | |
5800 { | |
5801 ++v69; | |
5802 v70 += 56; | |
5803 if ( v69 >= (signed int)v68 ) | |
5804 goto LABEL_128; | |
5805 } | |
5806 v71 = v69; | |
5807 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5808 pSpriteObjects[uLayingItemID].uObjectDescID = v71; |
0 | 5809 if ( !v71 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5810 SpriteObject::OnInteraction(v153); |
0 | 5811 v134 = 0; |
5812 v72 = v153; | |
5813 v132 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5814 pSpriteObjects[uLayingItemID].vVelocity.z = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5815 pSpriteObjects[uLayingItemID].vVelocity.y = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5816 pSpriteObjects[uLayingItemID].vVelocity.x = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5817 pSpriteObjects[uLayingItemID].uSpriteFrameID = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5818 stru_50FE08.Add(PID(OBJECT_Item,v72), 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v132, v134); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5819 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v66 ) |
0 | 5820 v78 = 0; |
5821 else | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5822 v78 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5823 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5824 pAudioPlayer->PlaySound((SoundID)v125, pSpriteObjects[uLayingItemID].vPosition.x, v66, -1, v66, v78, v66, v66); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5825 return 0; |
0 | 5826 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5827 if ( pSpriteObjects[uLayingItemID].uType == 4090 ) |
0 | 5828 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5829 v84 = pSpriteObjects[uLayingItemID].uType + 2; |
0 | 5830 v85 = pObjectList->uNumObjects; |
5831 v9 = 0; | |
5832 v86 = 0; | |
5833 v44 = pObjectList->uNumObjects == 0; | |
5834 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5835 pSpriteObjects[uLayingItemID].uType = v84; |
0 | 5836 if ( v20 | v44 ) |
5837 { | |
5838 LABEL_155: | |
5839 v88 = 0; | |
5840 } | |
5841 else | |
5842 { | |
5843 v87 = (char *)&pObjectList->pObjects->uObjectID; | |
5844 while ( v84 != *(short *)v87 ) | |
5845 { | |
5846 ++v86; | |
5847 v87 += 56; | |
5848 if ( v86 >= (signed int)v85 ) | |
5849 goto LABEL_155; | |
5850 } | |
5851 v88 = v86; | |
5852 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5853 pSpriteObjects[uLayingItemID].uObjectDescID = v88; |
0 | 5854 if ( !v88 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5855 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5856 v89 = pSpriteObjects[uLayingItemID].uFacing - stru_5C6E00->uIntegerDoublePi; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5857 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5858 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5859 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
0 | 5860 v142 = v89; |
5861 v148 = 7; | |
5862 do | |
5863 { | |
5864 pRnd->SetRange(-128, 128); | |
5865 v90 = pRnd->GetInRange(); | |
5866 pRnd->SetRange(5, 500); | |
5867 v91 = pRnd->GetInRange(); | |
5868 v142 += (signed int)stru_5C6E00->uIntegerHalfPi >> 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5869 pSpriteObjects[uLayingItemID].Create(v90 + v142, 0, v91, 0); |
0 | 5870 --v148; |
5871 } | |
5872 while ( v148 ); | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5873 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5874 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5875 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5876 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5877 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5878 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5879 LOBYTE(v124) = v124 | 2; |
1456 | 5880 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id-1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5881 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5882 return 0; |
0 | 5883 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5884 if ( pSpriteObjects[uLayingItemID].uType == 4092 ) |
0 | 5885 { |
5886 v80 = pObjectList->uNumObjects; | |
5887 v66 = 0; | |
5888 v81 = 0; | |
5889 v44 = pObjectList->uNumObjects == 0; | |
5890 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5891 pSpriteObjects[uLayingItemID].uType = 4091; |
0 | 5892 if ( v20 | v44 ) |
5893 { | |
5894 LABEL_144: | |
5895 v83 = 0; | |
5896 } | |
5897 else | |
5898 { | |
5899 v82 = (char *)&pObjectList->pObjects->uObjectID; | |
5900 while ( *(short *)v82 != 4091 ) | |
5901 { | |
5902 ++v81; | |
5903 v82 += 56; | |
5904 if ( v81 >= (signed int)v80 ) | |
5905 goto LABEL_144; | |
5906 } | |
5907 v83 = v81; | |
5908 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5909 pSpriteObjects[uLayingItemID].uObjectDescID = v83; |
0 | 5910 if ( !v83 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5911 SpriteObject::OnInteraction(v153); |
0 | 5912 v134 = 0; |
5913 v72 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5914 v132 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5915 pSpriteObjects[uLayingItemID].vVelocity.z = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5916 pSpriteObjects[uLayingItemID].vVelocity.y = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5917 pSpriteObjects[uLayingItemID].vVelocity.x = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5918 pSpriteObjects[uLayingItemID].uSpriteFrameID = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5919 stru_50FE08.Add(PID(OBJECT_Item,v72), 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v132, v134); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5920 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v66 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5921 v78 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5922 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5923 v78 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5924 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5925 pAudioPlayer->PlaySound((SoundID)v125, pSpriteObjects[uLayingItemID].vPosition.x, v66, -1, v66, v78, v66, v66); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5926 return 0; |
0 | 5927 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5928 if ( pSpriteObjects[uLayingItemID].uType == 4100 || pSpriteObjects[uLayingItemID].uType == 6010 ) |
0 | 5929 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5930 v79 = pSpriteObjects[uLayingItemID].uType == 6040; |
0 | 5931 } |
5932 if ( !v79 ) | |
5933 return 0; | |
5934 goto LABEL_172; | |
5935 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5936 if ( pSpriteObjects[uLayingItemID].uType == 3060 ) |
0 | 5937 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5938 if ( pSpriteObjects[uLayingItemID].uType <= 555 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5939 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5940 if ( pSpriteObjects[uLayingItemID].uType == 555 ) |
0 | 5941 { |
5942 sub_43A97E(v153, v145); | |
5943 v23 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5944 ++pSpriteObjects[uLayingItemID].uType; |
0 | 5945 v18 = 0; |
5946 v24 = 0; | |
5947 if ( (signed int)v23 <= 0 ) | |
5948 { | |
5949 LABEL_41: | |
5950 v22 = 0; | |
5951 } | |
5952 else | |
5953 { | |
5954 v25 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5955 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v25 ) |
0 | 5956 { |
5957 ++v24; | |
5958 v25 += 56; | |
5959 if ( v24 >= (signed int)v23 ) | |
5960 goto LABEL_41; | |
5961 } | |
5962 v22 = v24; | |
5963 } | |
5964 LABEL_42: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5965 pSpriteObjects[uLayingItemID].uObjectDescID = v22; |
0 | 5966 if ( v22 == v18 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
5967 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5968 pSpriteObjects[uLayingItemID].vVelocity.z = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5969 pSpriteObjects[uLayingItemID].vVelocity.y = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5970 pSpriteObjects[uLayingItemID].vVelocity.x = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5971 pSpriteObjects[uLayingItemID].uSpriteFrameID = v18; |
0 | 5972 } |
5973 else | |
5974 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5975 switch ( pSpriteObjects[uLayingItemID].uType ) |
0 | 5976 { |
5977 case 500: | |
5978 case 505: | |
5979 case 510: | |
5980 case 515: | |
5981 case 520: | |
5982 case 525: | |
5983 case 530: | |
5984 case 535: | |
5985 case 540: | |
5986 sub_43A97E(v153, v145); | |
5987 v8 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5988 ++pSpriteObjects[uLayingItemID].uType; |
0 | 5989 v9 = 0; |
5990 v10 = 0; | |
5991 if ( (signed int)v8 <= 0 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5992 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5993 v12 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5994 goto LABEL_24; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
5995 } |
0 | 5996 v11 = (char *)&pObjectList->pObjects->uObjectID; |
5997 break; | |
5998 case 545: | |
5999 case 550: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6000 if ( pSpriteObjects[uLayingItemID].stru_24.uItemID != 405 && pSpriteObjects[uLayingItemID].stru_24.uSpecEnchantmentType != 3 ) |
0 | 6001 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6002 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6003 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6004 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6005 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 6006 sub_43A97E(v153, v145); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6007 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6008 if ( pSpriteObjects[uLayingItemID].uSoundID == 0 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6009 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6010 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6011 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6012 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6013 LOBYTE(v124) = v124 | 2; |
1456 | 6014 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6015 pAudioPlayer->PlaySound((SoundID)v125, v124, 0, -1, 0, v16, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6016 return 0; |
0 | 6017 } |
6018 v17 = pObjectList->uNumObjects; | |
6019 v18 = 0; | |
6020 v19 = 0; | |
6021 v44 = pObjectList->uNumObjects == 0; | |
6022 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6023 pSpriteObjects[uLayingItemID].uType = 600; |
0 | 6024 if ( v20 | v44 ) |
6025 goto LABEL_41; | |
6026 v21 = (char *)&pObjectList->pObjects->uObjectID; | |
6027 while ( *(short *)v21 != 600 ) | |
6028 { | |
6029 ++v19; | |
6030 v21 += 56; | |
6031 if ( v19 >= (signed int)v17 ) | |
6032 goto LABEL_41; | |
6033 } | |
6034 v22 = v19; | |
6035 goto LABEL_42; | |
6036 default: | |
6037 return 0; | |
6038 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6039 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v11 ) |
0 | 6040 { |
6041 ++v10; | |
6042 v11 += 56; | |
6043 if ( v10 >= (signed int)v8 ) | |
6044 { | |
6045 v12 = 0; | |
6046 goto LABEL_24; | |
6047 } | |
6048 } | |
6049 v12 = v10; | |
6050 LABEL_24: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6051 pSpriteObjects[uLayingItemID].uObjectDescID = v12; |
0 | 6052 if ( !v12 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6053 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6054 v44 = pSpriteObjects[uLayingItemID].uType == 555; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6055 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6056 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6057 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6058 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 6059 if ( !v44 ) |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6060 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6061 v13 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6062 LOBYTE(v13) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6063 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6064 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6065 } |
0 | 6066 } |
6067 return 0; | |
6068 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6069 if ( pSpriteObjects[uLayingItemID].uType > 1100 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6070 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6071 v41 = pSpriteObjects[uLayingItemID].uType - 2030; |
0 | 6072 if ( !v41 ) |
6073 goto LABEL_247; | |
6074 v42 = v41 - 30; | |
6075 if ( v42 ) | |
6076 { | |
6077 v43 = v42 - 40; | |
6078 if ( !v43 ) | |
6079 goto LABEL_59; | |
6080 v45 = v43 - 910; | |
6081 v44 = v45 == 0; | |
6082 LABEL_91: | |
6083 if ( !v44 && v45 != 20 ) | |
6084 return 0; | |
6085 } | |
6086 LABEL_93: | |
6087 sub_43A97E(v153, v145); | |
6088 v51 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6089 ++pSpriteObjects[uLayingItemID].uType; |
0 | 6090 v9 = 0; |
6091 v52 = 0; | |
6092 if ( (signed int)v51 > 0 ) | |
6093 { | |
6094 v53 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6095 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v53 ) |
0 | 6096 { |
6097 ++v52; | |
6098 v53 += 56; | |
6099 if ( v52 >= (signed int)v51 ) | |
6100 goto LABEL_181; | |
6101 } | |
1416 | 6102 v95 = v52; |
0 | 6103 } |
1416 | 6104 else |
6105 { | |
0 | 6106 LABEL_181: |
6107 v95 = 0; | |
1416 | 6108 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6109 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
0 | 6110 if ( v95 == (short)v9 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6111 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6112 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6113 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6114 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6115 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6116 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
0 | 6117 if ( v96 == (short)v9 ) |
6118 v97 = 0; | |
6119 else | |
6120 v97 = (signed __int16)v96 + 4; | |
6121 v92 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6122 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6123 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6124 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6125 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6126 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6127 } |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6128 if ( pSpriteObjects[uLayingItemID].uType == 1100 ) |
0 | 6129 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6130 v26 = pSpriteObjects[uLayingItemID].uType - 600; |
0 | 6131 if ( !v26 ) |
6132 { | |
6133 v33 = pObjectList->uNumObjects; | |
6134 v34 = 0; | |
6135 v44 = pObjectList->uNumObjects == 0; | |
6136 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6137 pSpriteObjects[uLayingItemID].uType = 601; |
0 | 6138 if ( v20 | v44 ) |
6139 { | |
6140 LABEL_69: | |
6141 v36 = 0; | |
6142 } | |
6143 else | |
6144 { | |
6145 v35 = (char *)&pObjectList->pObjects->uObjectID; | |
6146 while ( *(short *)v35 != 601 ) | |
6147 { | |
6148 ++v34; | |
6149 v35 += 56; | |
6150 if ( v34 >= (signed int)v33 ) | |
6151 goto LABEL_69; | |
6152 } | |
6153 v36 = v34; | |
6154 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6155 pSpriteObjects[uLayingItemID].uObjectDescID = v36; |
0 | 6156 if ( !v36 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6157 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6158 v37 = pSpriteObjects[uLayingItemID].vPosition.z; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6159 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
0 | 6160 v38 = 8 * v153; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6161 v39 = pSpriteObjects[uLayingItemID].vPosition.y; |
862 | 6162 LOBYTE(v38) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6163 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6164 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6165 v40 = pSpriteObjects[uLayingItemID].vPosition.x; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6166 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 6167 v147 = v38; |
6168 stru_50FE08.Add(v38, 512, v40, v39, v37, 0, 0); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
6169 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6170 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6171 pAudioPlayer->PlaySound(SOUND_8, v147, 0, -1, 0, 0, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6172 return 0; |
0 | 6173 } |
6174 v27 = v26 - 410; | |
6175 if ( !v27 ) | |
6176 goto LABEL_93; | |
6177 v28 = v27 - 40; | |
6178 if ( !v28 ) | |
6179 goto LABEL_191; | |
6180 v29 = v28 - 10; | |
6181 if ( v29 ) | |
6182 { | |
6183 if ( v29 != 20 ) | |
6184 return 0; | |
6185 LABEL_59: | |
6186 if ( v151 != 3 ) | |
6187 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6188 v30 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 6189 v31 = pObjectList->uNumObjects; |
6190 v32 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6191 pSpriteObjects[uLayingItemID].uType = v30; |
0 | 6192 v146 = 0; |
6193 if ( (signed int)v31 > 0 ) | |
6194 { | |
6195 v140 = (char *)&pObjectList->pObjects->uObjectID; | |
6196 while ( v30 != *(short *)v140 ) | |
6197 { | |
6198 ++v146; | |
6199 v140 += 56; | |
6200 if ( v146 >= (signed int)v31 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6201 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6202 v46 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6203 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6204 if ( v46 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6205 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6206 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6207 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6208 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6209 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6210 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6211 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6212 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6213 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6214 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6215 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6216 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6217 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6218 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6219 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6220 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6221 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6222 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6223 } |
0 | 6224 } |
6225 v46 = v146; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6226 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
0 | 6227 if ( v46 == (short)v32 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6228 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6229 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6230 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
0 | 6231 v102 = 8 * v153; |
862 | 6232 LOBYTE(v102) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6233 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6234 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6235 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6236 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
6237 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6238 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6239 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
0 | 6240 v47 = 0; |
6241 else | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6242 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6243 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6244 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6245 return 0; |
0 | 6246 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6247 v46 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6248 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6249 if ( v46 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6250 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6251 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6252 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6253 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6254 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6255 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6256 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6257 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6258 stru_50FE08.Add(v102, 512, pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v100, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6259 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6260 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6261 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6262 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6263 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6264 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6265 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6266 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6267 return 0; |
0 | 6268 } |
6269 return 1; | |
6270 } | |
6271 LABEL_247: | |
6272 if ( v151 == 6 || v151 == 5 || (v9 = 0, !v151) ) | |
6273 return 1; | |
6274 if ( v151 != 2 ) | |
6275 { | |
6276 sub_43A97E(v153, v145); | |
6277 v122 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6278 ++pSpriteObjects[uLayingItemID].uType; |
0 | 6279 v52 = 0; |
6280 if ( (signed int)v122 > 0 ) | |
6281 { | |
6282 v123 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6283 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v123 ) |
0 | 6284 { |
6285 ++v52; | |
6286 v123 += 56; | |
6287 if ( v52 >= (signed int)v122 ) | |
6288 goto LABEL_181; | |
6289 } | |
6290 v95 = v52; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6291 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6292 if ( v95 == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6293 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6294 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6295 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6296 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6297 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6298 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6299 if ( v96 == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6300 v97 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6301 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6302 v97 = (signed __int16)v96 + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6303 v92 = v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6304 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6305 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6306 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6307 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6308 return 0; |
0 | 6309 } |
6310 goto LABEL_181; | |
6311 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6312 v117 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 6313 v118 = pObjectList->uNumObjects; |
6314 v119 = 0; | |
6315 v44 = pObjectList->uNumObjects == 0; | |
6316 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6317 pSpriteObjects[uLayingItemID].uType = v117; |
0 | 6318 if ( v20 | v44 ) |
6319 { | |
6320 v121 = 0; | |
6321 } | |
6322 else | |
6323 { | |
6324 v120 = (char *)&pObjectList->pObjects->uObjectID; | |
6325 while ( v117 != *(short *)v120 ) | |
6326 { | |
6327 ++v119; | |
6328 v120 += 56; | |
6329 if ( v119 >= (signed int)v118 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6330 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6331 v121 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6332 pSpriteObjects[uLayingItemID].uObjectDescID = v121; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6333 if ( !v121 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6334 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6335 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6336 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6337 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6338 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6339 v13 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6340 LOBYTE(v13) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6341 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6342 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6343 } |
0 | 6344 } |
6345 v121 = v119; | |
6346 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6347 pSpriteObjects[uLayingItemID].uObjectDescID = v121; |
0 | 6348 if ( !v121 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6349 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6350 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6351 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6352 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6353 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 6354 v13 = 8 * v153; |
862 | 6355 LOBYTE(v13) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6356 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
0 | 6357 return 0; |
6358 } |