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