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