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