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