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