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