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