Mercurial > mm7
annotate mm7_2.cpp @ 1489:a27cdb3d753e
Cleanup of LevelDecoration and related.
author | yoctozepto |
---|---|
date | Thu, 29 Aug 2013 22:22:33 +0200 |
parents | 61451d5980bf |
children | ab6bf38b2940 6306a33af531 |
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); |
446 pRenderer->_4A6A68(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 |
1789 if (!decor->field_16_event_id) | |
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 //----- (004621DA) -------------------------------------------------------- | |
1408 | 3117 int int_get_vector_length(signed int x, signed int y, signed int z) |
0 | 3118 { |
3119 signed int v3; // eax@2 | |
1408 | 3120 |
3121 if ( x < y ) | |
3122 { | |
3123 v3 = x; | |
3124 x = y; | |
3125 y = v3; | |
3126 } | |
3127 if ( x < z ) | |
3128 { | |
3129 v3 = x; | |
3130 x = z; | |
3131 z = v3; | |
3132 } | |
3133 if ( y < z ) | |
3134 { | |
3135 v3 = y; | |
3136 y = z; | |
3137 z = v3; | |
3138 } | |
3139 return (11 * y >> 5) + x + (z >> 2); | |
0 | 3140 } |
3141 | |
3142 OPENFILENAMEA ofn; | |
3143 //----- (0046271C) -------------------------------------------------------- | |
1458 | 3144 void CreateDefaultBLVLevel() |
0 | 3145 { |
3146 ofn.lStructSize = 0x4Cu; | |
3147 ofn.hwndOwner = hWnd; | |
3148 ofn.hInstance = 0; | |
3149 ofn.lpstrFilter = "Indoor BLV Files (*.blv)"; | |
3150 ofn.lpstrCustomFilter = 0; | |
3151 ofn.nMaxCustFilter = 0; | |
3152 ofn.nFilterIndex = 0; | |
3153 ofn.lpstrFile = 0; | |
3154 ofn.nMaxFile = 260; | |
3155 ofn.nMaxFileTitle = 512; | |
3156 ofn.lpstrInitialDir = "levels"; | |
3157 ofn.lpstrTitle = "Might and Magic® VII - Load Which Level?"; | |
3158 ofn.Flags = 4; | |
3159 ofn.nFileOffset = 0; | |
3160 ofn.nFileExtension = 0; | |
3161 ofn.lpstrDefExt = "blv"; | |
3162 ofn.lCustData = 0; | |
3163 ofn.lpfnHook = 0; | |
3164 ofn.lpTemplateName = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
3165 ofn.lpstrFileTitle = pTmpBuf.data(); |
0 | 3166 } |
3167 | |
3168 //----- (004627B7) -------------------------------------------------------- | |
762 | 3169 void MainMenu_Loop() |
0 | 3170 { |
3171 GUIButton *pButton; // eax@27 | |
3172 unsigned int pControlParam; // ecx@35 | |
3173 int v10; // ecx@36 | |
3174 int v11; // ecx@37 | |
3175 unsigned int pY; // [sp-18h] [bp-54h]@39 | |
3176 Texture *pTexture; // [sp-14h] [bp-50h]@39 | |
3177 GUIButton *pButton2; // [sp+0h] [bp-3Ch]@27 | |
3178 GUIWindow *pWindow; // [sp+4h] [bp-38h]@11 | |
3179 | |
151 | 3180 pCurrentScreen = SCREEN_GAME; |
1038 | 3181 |
0 | 3182 pGUIWindow2 = 0; |
3183 pAudioPlayer->StopChannels(-1, -1); | |
3184 pMouse->RemoveHoldingItem(); | |
762 | 3185 |
3186 pIcons_LOD->_inlined_sub2(); | |
3187 | |
165 | 3188 pWindow_MainMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0); |
3189 auto pNew = pIcons_LOD->LoadTexturePtr("title_new", TEXTURE_16BIT_PALETTE); | |
0 | 3190 auto pLoad = pIcons_LOD->LoadTexturePtr("title_load", TEXTURE_16BIT_PALETTE); |
3191 auto pCredits = pIcons_LOD->LoadTexturePtr("title_cred", TEXTURE_16BIT_PALETTE); | |
3192 auto pExit = pIcons_LOD->LoadTexturePtr("title_exit", TEXTURE_16BIT_PALETTE); | |
948 | 3193 |
3194 pMainMenu_BtnNew = pWindow_MainMenu->CreateButton(495, 172, pNew->uTextureWidth, pNew->uTextureHeight, 1, 0, UIMSG_MainMenu_ShowPartyCreationWnd, 0, 'N', "", pNew, 0); | |
3195 pMainMenu_BtnLoad = pWindow_MainMenu->CreateButton(495, 227, pLoad->uTextureWidth, pLoad->uTextureHeight, 1, 0, UIMSG_MainMenu_ShowLoadWindow, 1, 'L', "", pLoad, 0); | |
3196 pMainMenu_BtnCredits = pWindow_MainMenu->CreateButton(495, 282, pCredits->uTextureWidth, pCredits->uTextureHeight, 1, 0, UIMSG_ShowCredits, 2, 'C', "", pCredits, 0); | |
3197 pMainMenu_BtnExit = pWindow_MainMenu->CreateButton(495, 337, pExit->uTextureWidth, pExit->uTextureHeight, 1, 0, UIMSG_ExitToWindows, 3, 0, "", pExit, 0); | |
3198 | |
0 | 3199 pTexture_PCX.Release(); |
3200 pTexture_PCX.Load("title.pcx", 0); | |
3201 SetCurrentMenuID(MENU_MAIN); | |
3202 SetForegroundWindow(hWnd); | |
3203 SendMessageW(hWnd, WM_ACTIVATEAPP, 1, 0); | |
3204 while (GetCurrentMenuID() == MENU_MAIN || GetCurrentMenuID() == MENU_SAVELOAD) | |
3205 { | |
3206 POINT pt; | |
3207 pMouse->GetCursorPos(&pt); | |
3208 pWindow = pWindow_MainMenu; | |
165 | 3209 if ( GetCurrentMenuID() == MENU_SAVELOAD) |
0 | 3210 { |
151 | 3211 if ( pCurrentScreen != SCREEN_LOADGAME ) |
0 | 3212 { |
3213 pTexture_PCX.Release(); | |
3214 pTexture_PCX.Load("lsave640.pcx", 0); | |
3215 pGUIWindow2 = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0); | |
151 | 3216 pCurrentScreen = SCREEN_LOADGAME; |
1033 | 3217 LoadUI_Load(0); |
0 | 3218 } |
3219 pWindow = pGUIWindow_CurrentMenu; | |
3220 } | |
3221 | |
3222 MSG msg; | |
165 | 3223 while ( PeekMessageA(&msg, 0, 0, 0, PM_REMOVE) ) |
0 | 3224 { |
3225 if (msg.message == WM_QUIT) | |
3226 Game_DeinitializeAndTerminate(0); | |
3227 TranslateMessage(&msg); | |
3228 DispatchMessageA(&msg); | |
3229 } | |
3230 if (dword_6BE364_game_settings_1 & 0x0100) | |
3231 { | |
3232 WaitMessage(); | |
3233 } | |
3234 else | |
3235 { | |
3236 pRenderer->BeginScene(); | |
3237 pRenderer->DrawTextureRGB(0, 0, &pTexture_PCX); | |
1038 | 3238 |
165 | 3239 GUI_MainMenuMessageProc(); |
0 | 3240 GUI_UpdateWindows(); |
1038 | 3241 |
165 | 3242 if (GetCurrentMenuID() != MENU_MAIN) |
3243 { | |
961 | 3244 if (GetCurrentMenuID() == MENU_LoadingProcInMainMenu) |
0 | 3245 { |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
3246 pIcons_LOD->RemoveTexturesPackFromTextureList(); |
0 | 3247 pGUIWindow_CurrentMenu->Release(); |
3248 pGUIWindow_CurrentMenu = 0; | |
151 | 3249 pCurrentScreen = SCREEN_GAME; |
0 | 3250 viewparams->bRedrawGameUI = 1; |
3251 } | |
3252 } | |
3253 else | |
3254 { | |
1458 | 3255 if ( !pModalWindow )// ??? |
0 | 3256 { |
3257 pButton = pWindow->pControlsHead; | |
3258 for ( pButton = pWindow->pControlsHead; pButton; pButton = pButton->pNext ) | |
3259 { | |
3260 if ( pt.x >= (signed int)pButton->uX && pt.x <= (signed int)pButton->uZ | |
3261 && pt.y >= (signed int)pButton->uY && pt.y <= (signed int)pButton->uW | |
3262 && pWindow == pWindow_MainMenu ) | |
3263 { | |
832 | 3264 pControlParam = pButton->msg_param; |
0 | 3265 switch (pControlParam) // ïîäñâåòêà êíîïîê |
3266 { | |
3267 case 0: | |
3268 pTexture = pNew; | |
3269 pY = 172; | |
3270 break; | |
3271 case 1: | |
3272 pTexture = pLoad; | |
3273 pY = 227; | |
3274 break; | |
3275 case 2: | |
3276 pTexture = pCredits; | |
3277 pY = 282; | |
3278 break; | |
3279 case 3: | |
3280 pTexture = pExit; | |
3281 pY = 337; | |
3282 break; | |
3283 } | |
3284 pRenderer->DrawTextureIndexed(495, pY, pTexture); //ïîäñâåòêà êíîïîê | |
3285 } | |
3286 } | |
3287 } | |
3288 } | |
3289 pRenderer->EndScene(); | |
3290 pRenderer->Present(); | |
3291 } | |
3292 } | |
970 | 3293 GUI_MainMenuMessageProc(); |
0 | 3294 pRenderer->BeginScene(); |
3295 GUI_UpdateWindows(); | |
3296 pRenderer->EndScene(); | |
3297 pRenderer->Present(); | |
961 | 3298 pTexture_PCX.Release(); |
0 | 3299 if ( pGUIWindow2 ) |
3300 { | |
3301 pGUIWindow2->Release(); | |
3302 pGUIWindow2 = 0; | |
3303 } | |
3304 pWindow_MainMenu->Release(); | |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
3305 pIcons_LOD->RemoveTexturesPackFromTextureList(); |
0 | 3306 } |
3307 | |
3308 //----- (004637EB) -------------------------------------------------------- | |
3309 int __stdcall aWinProc(HWND hWnd, UINT Msg, WPARAM wParam, unsigned int lParam) | |
3310 { | |
3311 HANDLE v6; // eax@32 | |
3312 HDC v10; // edi@50 | |
3313 int v11; // esi@50 | |
3314 signed int v13; // eax@135 | |
3315 char v29; // dl@209 | |
3316 bool v31; // ebx@211 | |
3317 float v33; // ST04_4@246 | |
3318 float v34; // ST04_4@254 | |
3319 struct tagPAINTSTRUCT Paint; // [sp+24h] [bp-48h]@13 | |
3320 int pXY[2]; // [sp+64h] [bp-8h]@261 | |
3321 int a2; // [sp+7Ch] [bp+10h]@50 | |
1467 | 3322 |
0 | 3323 switch (Msg) |
3324 { | |
1458 | 3325 case WM_SIZING: return 1; |
1467 | 3326 case WM_SHOWWINDOW: |
3327 case WM_GETTEXT: | |
0 | 3328 case WM_SETTEXT: return DefWindowProcW(hWnd, Msg, wParam, lParam); |
1467 | 3329 |
3330 case WM_WINDOWPOSCHANGED: | |
3331 { | |
3332 if (pVideoPlayer && pVideoPlayer->AnyMovieLoaded() && pVideoPlayer->pBinkBuffer) | |
3333 BinkBufferSetOffset(pVideoPlayer->pBinkBuffer, 0, 0); | |
3334 | |
3335 return DefWindowProcW(hWnd, Msg, wParam, lParam); | |
3336 } | |
3337 | |
832 | 3338 case WM_CHAR: |
3339 { | |
3340 if (!pKeyActionMap->_459F10(wParam) && !viewparams->field_4C) | |
3341 GUI_HandleHotkey(wParam); | |
3342 } | |
3343 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
922 | 3344 |
1458 | 3345 |
3346 case WM_DEVICECHANGE: | |
3347 { | |
3348 if (wParam == 0x8000) // CD or some device has been inserted - notify InsertCD dialog | |
3349 PostMessageA(hInsertCDWindow, WM_USER + 1, 0, 0); | |
3350 return 0; | |
3351 } | |
3352 | |
922 | 3353 case WM_COMMAND: |
3354 { | |
3355 switch (wParam) | |
3356 { | |
947 | 3357 case 103: pRenderer->SavePCXScreenshot(); return 0; |
3358 | |
3359 case 101: // Quit game | |
922 | 3360 case 40001: |
1067 | 3361 SendMessageA(::hWnd, WM_DESTROY, 0, 0); |
922 | 3362 return 0; |
3363 | |
3364 | |
3365 case 104: | |
3366 pRenderer->ChangeBetweenWinFullscreenModes(); | |
3367 if ( pArcomageGame->bGameInProgress ) | |
3368 pArcomageGame->field_F6 = 1; | |
3369 return 0; | |
3370 | |
952 | 3371 //SubMenu "Party" |
947 | 3372 case 40007: pParty->SetGold(pParty->uNumGold + 10000); return 0; |
3373 case 40008: GivePartyExp(20000); return 0; | |
3374 case 40013: pParty->SetGold(0); return 0; | |
922 | 3375 |
3376 case 40059: | |
3377 for (uint i = 0; i < 4; ++i) | |
3378 pParty->pPlayers[i].uSkillPoints = 50; | |
3379 return 0; | |
947 | 3380 |
3381 case 40029: pPlayers[uActiveCharacter]->SetPertified(true); return 0; | |
3382 case 40030: pPlayers[uActiveCharacter]->SetWeak(true); return 0; | |
3383 case 40031: pPlayers[uActiveCharacter]->SetPoison3(true); return 0; | |
3384 case 40032: pPlayers[uActiveCharacter]->SetPoison2(true); return 0; | |
3385 case 40033: pPlayers[uActiveCharacter]->SetPoison1(true); return 0; | |
3386 case 40034: pPlayers[uActiveCharacter]->SetDisease3(true); return 0; | |
3387 case 40035: pPlayers[uActiveCharacter]->SetDisease2(true); return 0; | |
3388 case 40036: pPlayers[uActiveCharacter]->SetDisease1(true); return 0; | |
3389 case 40037: pPlayers[uActiveCharacter]->SetCursed(true); return 0; | |
3390 case 40038: pPlayers[uActiveCharacter]->SetInsane(true); return 0; | |
3391 case 40039: pPlayers[uActiveCharacter]->SetDrunk(true); return 0; | |
3392 case 40040: pPlayers[uActiveCharacter]->SetUnconcious(true); return 0; | |
3393 case 40041: pPlayers[uActiveCharacter]->SetDead(true); return 0; | |
3394 case 40042: pPlayers[uActiveCharacter]->SetEradicated(true); return 0; | |
3395 case 40043: pPlayers[uActiveCharacter]->SetAsleep(true); return 0; | |
3396 case 40044: pPlayers[uActiveCharacter]->SetAfraid(true); return 0; | |
3397 case 40045: pPlayers[uActiveCharacter]->SetParalyzed(true); return 0; | |
3398 case 40073: pPlayers[uActiveCharacter]->SetZombie(true); return 0; | |
952 | 3399 |
3400 case 40006: pParty->SetFood(pParty->uNumFoodRations + 20); return 0; | |
3401 | |
957 | 3402 case 40062: |
3403 pParty->alignment = PartyAlignment_Good; | |
3404 SetUserInterface(pParty->alignment, true); | |
3405 return 0; | |
3406 case 40063: | |
3407 pParty->alignment = PartyAlignment_Neutral; | |
3408 SetUserInterface(pParty->alignment, true); | |
3409 return 0; | |
3410 case 40064: | |
3411 pParty->alignment = PartyAlignment_Evil; | |
3412 SetUserInterface(pParty->alignment, true); | |
3413 return 0; | |
952 | 3414 |
3415 //SubMenu "Time" | |
1031 | 3416 case 40009: pParty->uTimePlayed += Timer::Day; return 0; |
3417 case 40010: pParty->uTimePlayed += Timer::Week; return 0; | |
3418 case 40011: pParty->uTimePlayed += Timer::Month; return 0; | |
3419 case 40012: pParty->uTimePlayed += Timer::Year; return 0; | |
952 | 3420 |
3421 //SubMenu "Items" | |
957 | 3422 case 40015: |
3423 { | |
3424 int pItemID = rand() % 500; | |
3425 for ( uint i = 0; i < 500; ++i ) | |
3426 { | |
3427 if ( pItemID + i > 499 ) | |
3428 pItemID = 0; | |
3429 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 1 ) | |
3430 { | |
3431 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3432 return 0; | |
3433 } | |
3434 } | |
3435 } | |
3436 return 0; | |
3437 case 40016: | |
3438 { | |
3439 int pItemID = rand() % 500; | |
3440 for ( uint i = 0; i < 500; ++i ) | |
3441 { | |
3442 if ( pItemID + i > 499 ) | |
3443 pItemID = 0; | |
3444 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 2 ) | |
3445 { | |
3446 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3447 return 0; | |
3448 } | |
3449 } | |
3450 } | |
3451 return 0; | |
3452 case 40017: | |
3453 { | |
3454 int pItemID = rand() % 500; | |
3455 for ( uint i = 0; i < 500; ++i ) | |
3456 { | |
3457 if ( pItemID + i > 499 ) | |
3458 pItemID = 0; | |
3459 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 3 ) | |
3460 { | |
3461 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3462 return 0; | |
3463 } | |
3464 } | |
3465 } | |
3466 return 0; | |
3467 case 40018: | |
3468 { | |
3469 int pItemID = rand() % 500; | |
3470 for ( uint i = 0; i < 500; ++i ) | |
3471 { | |
3472 if ( pItemID + i > 499 ) | |
3473 pItemID = 0; | |
3474 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 4 ) | |
3475 { | |
3476 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3477 return 0; | |
3478 } | |
3479 } | |
3480 } | |
3481 return 0; | |
3482 case 40019: | |
3483 { | |
3484 int pItemID = rand() % 500; | |
3485 for ( uint i = 0; i < 500; ++i ) | |
3486 { | |
3487 if ( pItemID + i > 499 ) | |
3488 pItemID = 0; | |
3489 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 5 ) | |
3490 { | |
3491 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3492 return 0; | |
3493 } | |
3494 } | |
3495 } | |
3496 return 0; | |
3497 case 40020: | |
3498 { | |
3499 int pItemID = rand() % 500; | |
3500 for ( uint i = 0; i < 500; ++i ) | |
3501 { | |
3502 if ( pItemID + i > 499 ) | |
3503 pItemID = 0; | |
3504 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St == 6 ) | |
3505 { | |
3506 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3507 return 0; | |
3508 } | |
3509 } | |
3510 } | |
3511 return 0; | |
3512 case 40061: | |
3513 { | |
3514 int pItemID = rand() % 500; | |
3515 for ( uint i = 0; i < 500; ++i ) | |
3516 { | |
3517 if ( pItemID + i > 499 ) | |
3518 pItemID = 0; | |
3519 if ( pItemsTable->pItems[pItemID + i].uItemID_Rep_St > 6 ) | |
3520 { | |
3521 pPlayers[uActiveCharacter]->AddItem(-1, pItemID + i); | |
3522 return 0; | |
3523 } | |
3524 } | |
3525 } | |
3526 return 0; | |
952 | 3527 |
922 | 3528 } |
3529 } | |
3530 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3531 }; |
3532 | |
3533 if ( Msg > WM_SYSCOMMAND ) | |
3534 { | |
3535 switch ( Msg ) | |
3536 { | |
3537 case WM_LBUTTONDOWN: | |
3538 if ( pArcomageGame->bGameInProgress ) | |
3539 { | |
3540 pArcomageGame->stru1.field_0 = 7; | |
920 | 3541 ArcomageGame::OnMouseClick(0, 1); |
3542 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3543 } |
972 | 3544 goto __handle_mouse_click; |
3545 | |
0 | 3546 case WM_RBUTTONDOWN: |
3547 v31 = 0; | |
3548 if ( !pArcomageGame->bGameInProgress ) | |
920 | 3549 //goto LABEL_240; |
3550 { | |
3551 if ( pVideoPlayer->pVideoFrame.pPixels != (unsigned __int16 *)v31 ) | |
3552 pVideoPlayer->bStopBeforeSchedule = 1; | |
1038 | 3553 |
3554 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); | |
920 | 3555 if (pGame) |
3556 { | |
3557 v33 = pGame->pIndoorCameraD3D->GetPickDepth(); | |
3558 pGame->PickMouse(v33, (unsigned __int16)lParam, lParam >> 16, v31, &vis_sprite_filter_2, &vis_door_filter); | |
3559 } | |
1038 | 3560 |
920 | 3561 sub_416D62_ShowPopupWindow_MonsterRecord_ItemInfo_etcsub_416D62(0); |
3562 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
1038 | 3563 |
3564 } | |
3565 | |
0 | 3566 pArcomageGame->stru1.field_0 = 8; |
920 | 3567 ArcomageGame::OnMouseClick(1, 1); |
3568 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3569 case WM_LBUTTONUP: |
3570 if ( !pArcomageGame->bGameInProgress ) | |
920 | 3571 //goto LABEL_218; |
3572 { | |
0 | 3573 back_to_game(); |
832 | 3574 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3575 } |
920 | 3576 pArcomageGame->stru1.field_0 = 3; |
3577 ArcomageGame::OnMouseClick(0, 0); | |
3578 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
3579 case WM_RBUTTONUP: | |
3580 if ( !pArcomageGame->bGameInProgress ) | |
3581 { | |
3582 //LABEL_218: | |
1038 | 3583 |
920 | 3584 back_to_game(); |
3585 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
3586 } | |
0 | 3587 pArcomageGame->stru1.field_0 = 4; |
1250
c515e406df4a
aWinProc cleanup - removing unused vars, unnesting conditions, removeing a few DefWindowProcA calls
Grumpy7
parents:
1249
diff
changeset
|
3588 ArcomageGame::OnMouseClick(1, false); |
920 | 3589 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
972 | 3590 |
0 | 3591 case WM_LBUTTONDBLCLK: |
3592 if ( pArcomageGame->bGameInProgress ) | |
3593 { | |
3594 pArcomageGame->stru1.field_0 = 7; | |
832 | 3595 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3596 } |
972 | 3597 |
3598 __handle_mouse_click: | |
0 | 3599 if ( pVideoPlayer->pVideoFrame.pPixels ) |
3600 pVideoPlayer->bStopBeforeSchedule = 1; | |
972 | 3601 |
0 | 3602 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); |
972 | 3603 |
3604 if (GetCurrentMenuID() != MENU_CREATEPARTY) | |
3605 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); | |
3606 else | |
3607 { | |
3608 UI_OnKeyDown(VK_SELECT); | |
3609 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); | |
3610 } | |
3611 | |
1038 | 3612 |
972 | 3613 if (pGame) |
3614 pGame->PickMouse(512.0, (unsigned __int16)lParam, lParam >> 16, false, &vis_sprite_filter_3, &vis_door_filter); | |
3615 | |
0 | 3616 UI_OnMouseLeftClick(0); |
1038 | 3617 |
920 | 3618 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
972 | 3619 |
0 | 3620 case WM_RBUTTONDBLCLK: |
3621 v31 = 0; | |
3622 if ( !pArcomageGame->bGameInProgress ) | |
3623 { | |
920 | 3624 //LABEL_240: |
0 | 3625 if ( pVideoPlayer->pVideoFrame.pPixels != (unsigned __int16 *)v31 ) |
3626 pVideoPlayer->bStopBeforeSchedule = 1; | |
1038 | 3627 |
0 | 3628 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); |
3629 if (pGame) | |
3630 { | |
871 | 3631 v33 = pGame->pIndoorCameraD3D->GetPickDepth(); |
194 | 3632 pGame->PickMouse(v33, (unsigned __int16)lParam, lParam >> 16, v31, &vis_sprite_filter_2, &vis_door_filter); |
0 | 3633 } |
1038 | 3634 |
0 | 3635 sub_416D62_ShowPopupWindow_MonsterRecord_ItemInfo_etcsub_416D62(0); |
832 | 3636 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
1038 | 3637 |
3638 } | |
0 | 3639 pArcomageGame->stru1.field_0 = 8; |
832 | 3640 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3641 case WM_MBUTTONDOWN: |
3642 if ( pRenderer->pRenderD3D ) | |
3643 { | |
1038 | 3644 if ( pGame ) |
0 | 3645 { |
871 | 3646 v34 = pGame->pIndoorCameraD3D->GetPickDepth(); |
194 | 3647 pGame->PickMouse(v34, (unsigned __int16)lParam, lParam >> 16, 1, &vis_sprite_filter_3, &vis_face_filter); |
832 | 3648 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3649 } |
3650 } | |
3651 if ( !pGame ) | |
920 | 3652 //goto _def_wnd_proc; |
3653 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
832 | 3654 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3655 case WM_MOUSEMOVE: |
3656 if ( pArcomageGame->bGameInProgress ) | |
3657 { | |
3658 pXY[0] = (unsigned __int16)lParam; | |
3659 pXY[1] = lParam >> 16; | |
3660 ArcomageGame::OnMouseMove((POINT *)pXY); | |
3661 ArcomageGame::OnMouseClick(0, wParam & 1); | |
3662 v29 = (wParam >> 1) & 1; | |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1104
diff
changeset
|
3663 ArcomageGame::OnMouseClick(1, v29 != 0); |
0 | 3664 } |
3665 else | |
3666 { | |
3667 pMouse->SetMouseClick((unsigned __int16)lParam, lParam >> 16); | |
3668 } | |
832 | 3669 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
920 | 3670 default: |
3671 //goto _def_wnd_proc; | |
3672 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3673 } |
3674 } | |
3675 if ( Msg == WM_SYSCOMMAND ) | |
3676 { | |
3677 if ( wParam == SC_SCREENSAVE || wParam == SC_MONITORPOWER ) | |
3678 return 0; | |
920 | 3679 //goto _def_wnd_proc; |
3680 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3681 } |
3682 if ( Msg > WM_ACTIVATEAPP ) | |
3683 { | |
1467 | 3684 if ( Msg != WM_KEYFIRST && Msg != WM_WINDOWPOSCHANGED) |
0 | 3685 { |
1250
c515e406df4a
aWinProc cleanup - removing unused vars, unnesting conditions, removeing a few DefWindowProcA calls
Grumpy7
parents:
1249
diff
changeset
|
3686 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
|
3687 { |
c515e406df4a
aWinProc cleanup - removing unused vars, unnesting conditions, removeing a few DefWindowProcA calls
Grumpy7
parents:
1249
diff
changeset
|
3688 dword_507B98_ctrl_pressed = 0; |
c515e406df4a
aWinProc cleanup - removing unused vars, unnesting conditions, removeing a few DefWindowProcA calls
Grumpy7
parents:
1249
diff
changeset
|
3689 } |
c515e406df4a
aWinProc cleanup - removing unused vars, unnesting conditions, removeing a few DefWindowProcA calls
Grumpy7
parents:
1249
diff
changeset
|
3690 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3691 } |
1031 | 3692 if ( uGameMenuUI_CurentlySelectedKeyIdx != -1 ) |
0 | 3693 { |
3694 pKeyActionMap->_459F10(wParam); | |
832 | 3695 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3696 } |
3697 if ( !pArcomageGame->bGameInProgress ) | |
3698 { | |
3699 if ( pVideoPlayer->pVideoFrame.pPixels ) | |
3700 pVideoPlayer->bStopBeforeSchedule = 1; | |
1067 | 3701 if ( wParam == VK_RETURN ) |
3702 { | |
3703 if ( !viewparams->field_4C ) | |
3704 UI_OnKeyDown(wParam); | |
3705 return 0; | |
3706 } | |
3707 if ( wParam == VK_CONTROL ) | |
3708 { | |
3709 dword_507B98_ctrl_pressed = 1; | |
3710 return 0; | |
3711 } | |
3712 if ( wParam == VK_ESCAPE ) | |
3713 { | |
3714 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, window_SpeakInHouse != 0, 0); | |
3715 return 0; | |
3716 } | |
3717 if ( wParam <= VK_HOME ) | |
3718 return 0; | |
3719 if ( wParam > VK_DOWN ) | |
3720 { | |
3721 if ( wParam != VK_F4 || pVideoPlayer->AnyMovieLoaded() ) | |
0 | 3722 return 0; |
1067 | 3723 SendMessageA(hWnd, WM_COMMAND, 104, 0); |
3724 return 0; | |
3725 } | |
3726 if ( wParam >= VK_LEFT && wParam <= VK_DOWN ) | |
3727 { | |
1458 | 3728 if ( pCurrentScreen != SCREEN_GAME && pCurrentScreen != SCREEN_MODAL_WINDOW ) |
1067 | 3729 { |
3730 if ( !viewparams->field_4C ) | |
3731 UI_OnKeyDown(wParam); | |
441 | 3732 return 0; |
0 | 3733 } |
1067 | 3734 } |
1458 | 3735 if ( pCurrentScreen != SCREEN_GAME && pCurrentScreen != SCREEN_MODAL_WINDOW ) |
1067 | 3736 return 0; |
0 | 3737 } |
1248
d3bf0d4fb753
aWinProc cleanup - fixing bad condition, exctracting common code from conditions, part 1
Grumpy7
parents:
1215
diff
changeset
|
3738 |
0 | 3739 pArcomageGame->stru1.field_0 = 1; |
1249
bbde4964e9b7
aWinProc cleanup - extracting conditions to a separate function
Grumpy7
parents:
1248
diff
changeset
|
3740 |
bbde4964e9b7
aWinProc cleanup - extracting conditions to a separate function
Grumpy7
parents:
1248
diff
changeset
|
3741 v13 = (unsigned __int16)MapVirtualKeyA((unsigned __int16)wParam, 2u); |
bbde4964e9b7
aWinProc cleanup - extracting conditions to a separate function
Grumpy7
parents:
1248
diff
changeset
|
3742 set_stru1_field_8_InArcomage(v13); |
920 | 3743 if ( wParam == 27 ) |
3744 { | |
1197 | 3745 pArcomageGame->GameOver = 1; |
920 | 3746 pArcomageGame->field_F4 = 1; |
3747 pArcomageGame->uGameResult = 2; | |
3748 pArcomageGame->field_B0 = -2; | |
3749 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
3750 } | |
3751 if ( wParam != 114 ) | |
3752 { | |
3753 if ( wParam == 115 && !pVideoPlayer->AnyMovieLoaded() ) | |
1249
bbde4964e9b7
aWinProc cleanup - extracting conditions to a separate function
Grumpy7
parents:
1248
diff
changeset
|
3754 SendMessageA(hWnd, 0x111u, 0x68u, 0); |
920 | 3755 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
3756 } | |
1067 | 3757 SendMessageA(hWnd, WM_COMMAND, 103, 0); |
920 | 3758 return 0; |
0 | 3759 } |
3760 if ( Msg == WM_ACTIVATEAPP ) | |
3761 { | |
3762 if ( wParam && (GetForegroundWindow() == hWnd || GetForegroundWindow() == hInsertCDWindow) ) | |
3763 { | |
3764 if ( BYTE1(dword_6BE364_game_settings_1) & 1 ) | |
3765 { | |
3766 dword_4E98BC_bApplicationActive = 1; | |
3767 if ( pRenderer->bWindowMode ) | |
3768 { | |
3769 v10 = GetDC(0); | |
3770 a2 = GetDeviceCaps(v10, BITSPIXEL); | |
3771 v11 = GetDeviceCaps(v10, PLANES); | |
3772 ReleaseDC(0, v10); | |
3773 if ( a2 != 16 || v11 != 1 ) | |
3774 Abortf(pGlobalTXT_LocalizationStrings[62]); | |
3775 } | |
3776 BYTE1(dword_6BE364_game_settings_1) &= 0xFEu; | |
1038 | 3777 |
0 | 3778 if ( pArcomageGame->bGameInProgress ) |
3779 { | |
3780 pArcomageGame->field_F9 = 1; | |
3781 } | |
3782 else | |
3783 { | |
3784 if ( BYTE1(dword_6BE364_game_settings_1) & 2 ) | |
3785 BYTE1(dword_6BE364_game_settings_1) &= 0xFDu; | |
3786 else | |
3787 pEventTimer->Resume(); | |
3788 if ( BYTE1(dword_6BE364_game_settings_1) & 4 ) | |
3789 BYTE1(dword_6BE364_game_settings_1) &= 0xFBu; | |
3790 else | |
3791 pMiscTimer->Resume(); | |
1038 | 3792 |
3793 viewparams->bRedrawGameUI = true; | |
0 | 3794 if ( pVideoPlayer->pSmackerMovie ) |
3795 { | |
3796 pRenderer->RestoreFrontBuffer(); | |
3797 pRenderer->_4A184C(); | |
3798 pVideoPlayer->_4BF5B2(); | |
3799 } | |
3800 } | |
3801 if ( pAudioPlayer->hAILRedbook && !bGameoverLoop && !pVideoPlayer->pSmackerMovie ) | |
3802 AIL_redbook_resume(pAudioPlayer->hAILRedbook); | |
3803 } | |
3804 } | |
3805 else | |
3806 { | |
3807 if ( !(dword_6BE364_game_settings_1 & 0x100) ) | |
3808 { | |
920 | 3809 while(initing); //ADDED spinlock to allow int players ets! Gloval |
3810 dword_4E98BC_bApplicationActive = 0; | |
0 | 3811 if ( (pVideoPlayer->pSmackerMovie || pVideoPlayer->pBinkMovie) && pVideoPlayer->bPlayingMovie ) |
3812 pVideoPlayer->bStopBeforeSchedule = 1; | |
1038 | 3813 |
0 | 3814 if ( pRenderer->bUserDirect3D && pRenderer->uAcquiredDirect3DDevice == 1 ) |
3815 SetWindowPos(::hWnd, (HWND)0xFFFFFFFE, 0, 0, 0, 0, 0x18u); | |
3816 ClipCursor(0); | |
3817 dword_6BE364_game_settings_1 |= 0x100u; | |
3818 if ( pEventTimer->bPaused ) | |
3819 BYTE1(dword_6BE364_game_settings_1) |= 2u; | |
3820 else | |
3821 pEventTimer->Pause(); | |
3822 if ( pMiscTimer->bPaused ) | |
3823 BYTE1(dword_6BE364_game_settings_1) |= 4u; | |
3824 else | |
3825 pMiscTimer->Pause(); | |
1038 | 3826 |
0 | 3827 pAudioPlayer->StopChannels(-1, -1); |
3828 if ( pAudioPlayer->hAILRedbook ) | |
3829 AIL_redbook_pause(pAudioPlayer->hAILRedbook); | |
3830 } | |
3831 } | |
3832 return 0; | |
3833 } | |
3834 if (Msg == WM_CREATE) | |
3835 { | |
3836 auto hDC = GetDC(hWnd); | |
3837 { | |
3838 if (GetDeviceCaps(hDC, BITSPIXEL) < 8) | |
3839 { | |
3840 ReleaseDC(hWnd, hDC); | |
3841 Log::Warning(L"You must be running in 256 color mode or higher."); | |
3842 Abortf("You must be running in 256 color mode or higher. You can change the screen depth with the control panel display icon."); | |
3843 } | |
3844 } | |
3845 ReleaseDC(hWnd, hDC); | |
3846 return 0; | |
3847 } | |
3848 if ( Msg == WM_DESTROY ) | |
3849 { | |
3850 v6 = GetCurrentProcess(); | |
3851 SetPriorityClass(v6, 0x20u); | |
3852 if ( pGame ) | |
3853 { | |
1038 | 3854 |
3855 } | |
3856 | |
0 | 3857 PostQuitMessage(0); |
3858 return 0; | |
3859 } | |
3860 if ( Msg == WM_SETFOCUS ) | |
3861 { | |
3862 if ( ::hWnd == (HWND)wParam ) | |
3863 { | |
3864 dword_4E98BC_bApplicationActive = 0; | |
3865 if ( pRenderer->bUserDirect3D && pRenderer->uAcquiredDirect3DDevice == 1 ) | |
3866 SetWindowPos(::hWnd, (HWND)0xFFFFFFFE, 0, 0, 0, 0, 0x18u); | |
3867 ClipCursor(0); | |
1038 | 3868 |
0 | 3869 } |
920 | 3870 //_def_wnd_proc: |
832 | 3871 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
0 | 3872 } |
3873 if ( Msg != WM_KILLFOCUS ) | |
3874 { | |
3875 if ( Msg == WM_PAINT ) | |
3876 { | |
3877 if ( !GetUpdateRect(hWnd, 0, 0) || !dword_4E98BC_bApplicationActive && !pRenderer->bWindowMode ) | |
3878 return 0; | |
3879 BeginPaint(hWnd, &Paint); | |
3880 if ( pArcomageGame->bGameInProgress ) | |
3881 { | |
3882 pArcomageGame->field_F9 = 1; | |
3883 } | |
3884 else | |
3885 { | |
3886 if ( !pRenderer->pRenderD3D && !pRenderer->UsingDirect3D() || !AreRenderSurfacesOk() ) | |
920 | 3887 { |
3888 EndPaint(hWnd, &Paint); | |
3889 return 0; | |
3890 } | |
0 | 3891 } |
3892 pRenderer->Present(); | |
3893 EndPaint(hWnd, &Paint); | |
3894 return 0; | |
3895 } | |
920 | 3896 //goto _def_wnd_proc; |
3897 return DefWindowProcA(hWnd, Msg, wParam, lParam); | |
0 | 3898 } |
1038 | 3899 if ( ::hWnd != (HWND)wParam || (dword_4E98BC_bApplicationActive = 1, pRenderer->bWindowMode) || true ) |
832 | 3900 return DefWindowProcA(hWnd, Msg, wParam, lParam); |
1038 | 3901 |
0 | 3902 } |
3903 | |
3904 //----- (00464479) -------------------------------------------------------- | |
1458 | 3905 void ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows() |
0 | 3906 { |
3907 int v0; // esi@9 | |
3908 | |
3909 if (pMouse) | |
3910 pMouse->SetCursorBitmap("MICON1"); | |
3911 | |
3912 pPaletteManager->ResetNonLocked(); | |
3913 pBitmaps_LOD->ReleaseAll2(); | |
3914 pSprites_LOD->DeleteSomeOtherSprites(); | |
3915 pIcons_LOD->ReleaseAll2(); | |
3916 if (pRenderer->pRenderD3D) | |
3917 { | |
3918 pRenderer->field_1036B8 = 0; | |
3919 pRenderer->_gpu_memory_used = 0; | |
3920 } | |
3921 sub_46080D(); | |
3922 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
3923 pIndoor->Release(); | |
3924 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
3925 pOutdoor->Release2(); | |
3926 | |
3927 pAudioPlayer->StopChannels(-1, -1); | |
3928 pSoundList->_4A9D79(0); | |
3929 uCurrentlyLoadedLevelType = LEVEL_null; | |
3930 pSpriteFrameTable->ResetSomeSpriteFlags(); | |
3931 v0 = uNumVisibleWindows; | |
349 | 3932 pParty->armageddon_timer = 0; |
0 | 3933 while ( v0 > 0 ) |
3934 pWindowList[pVisibleWindowsIdxs[v0--] - 1].Release(); | |
3935 } | |
3936 | |
3937 //----- (004646F0) -------------------------------------------------------- | |
1458 | 3938 void PrepareWorld(unsigned int _0_box_loading_1_fullscreen) |
0 | 3939 { |
3940 if ( pRenderer->pRenderD3D ) | |
3941 pGame->pVisInstance->_4C1A02(); | |
3942 pEventTimer->Pause(); | |
3943 pMiscTimer->Pause(); | |
3944 pParty->uFlags = 2; | |
1202 | 3945 pCastSpellInfo.data()->_427D48(1); |
0 | 3946 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); |
1458 | 3947 DoPrepareWorld(0, (_0_box_loading_1_fullscreen == 0) + 1); |
0 | 3948 pMiscTimer->Resume(); |
3949 pEventTimer->Resume(); | |
3950 } | |
3951 | |
3952 //----- (00464761) -------------------------------------------------------- | |
1458 | 3953 void Game_DeinitializeAndTerminate(int exitCode) |
0 | 3954 { |
3955 int v1; // esi@1 | |
3956 HANDLE v2; // eax@1 | |
3957 | |
3958 v1 = exitCode; | |
3959 v2 = GetCurrentProcess(); | |
3960 SetPriorityClass(v2, 0x20u); | |
3961 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); | |
3962 pGame->Deinitialize(); | |
3963 pRenderer->Release2(); | |
3964 if ( !DestroyWindow(hWnd) ) | |
3965 GetLastError(); | |
3966 hWnd = 0; | |
3967 exit(v1); | |
3968 } | |
3969 | |
3970 //----- (004647AB) -------------------------------------------------------- | |
762 | 3971 void FinalInitialization() |
0 | 3972 { |
3973 pViewport->SetScreen(viewparams->uSomeX, viewparams->uSomeY, viewparams->uSomeZ, viewparams->uSomeW); | |
3974 pViewport->_4C02F8((signed __int64)(flt_6BE3A0 * 65536.0)); | |
3975 | |
3976 pIndoorCamera = new IndoorCamera; | |
762 | 3977 pIndoorCamera->Initialize(65, viewparams->uScreen_BttmR_X - viewparams->uScreen_topL_X + 1, |
3978 viewparams->uScreen_BttmR_Y - viewparams->uScreen_topL_Y + 1); | |
0 | 3979 |
3980 InitializeTurnBasedAnimations(&stru_50C198); | |
762 | 3981 pBitmaps_LOD->_inlined_sub1(); |
3982 pSprites_LOD->_inlined_sub1(); | |
3983 pIcons_LOD->_inlined_sub1(); | |
0 | 3984 } |
3985 // 6BE3A0: using guessed type float flt_6BE3A0; | |
3986 | |
3987 //----- (00464839) -------------------------------------------------------- | |
1458 | 3988 char Is_out15odm_underwater() |
0 | 3989 { |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
3990 return _stricmp(pCurrentMapName, "out15.odm") == 0; |
0 | 3991 } |
3992 | |
3993 //----- (00464851) -------------------------------------------------------- | |
1458 | 3994 void SetUnderwaterFog() |
0 | 3995 { |
3996 day_fogrange_1 = 50; | |
3997 day_fogrange_2 = 5000; | |
3998 } | |
3999 | |
4000 //----- (00464866) -------------------------------------------------------- | |
1458 | 4001 void DoPrepareWorld(unsigned int bLoading, int _1_fullscreen_loading_2_box) |
0 | 4002 { |
1458 | 4003 //int v2; // esi@1 |
0 | 4004 char *v3; // eax@1 |
4005 //char *v4; // eax@1 | |
4006 unsigned int v5; // eax@3 | |
4007 //size_t v6; // ecx@10 | |
4008 //char *v7; // eax@11 | |
4009 char Str1[20]; // [sp+Ch] [bp-18h]@1 | |
4010 unsigned int v9; // [sp+20h] [bp-4h]@1 | |
4011 | |
4012 v9 = bLoading; | |
4013 ResetCursor_Palettes_LODs_Level_Audio_SFT_Windows(); | |
4014 pDecalBuilder->Reset(0); | |
1458 | 4015 pGameLoadingUI_ProgressBar->Initialize(_1_fullscreen_loading_2_box == 1 ? GUIProgressBar::TYPE_Fullscreen : |
4016 GUIProgressBar::TYPE_Box); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4017 strcpy(Str1, pCurrentMapName); |
0 | 4018 v3 = strtok(Str1, "."); |
4019 strcpy(Str1, v3); | |
4020 Level_LoadEvtAndStr(Str1); | |
4021 LoadLevel_InitializeLevelEvt(); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4022 strcpy(Str1, pCurrentMapName); |
0 | 4023 _strrev(Str1); |
4024 strtok(Str1, "."); | |
4025 _strrev(Str1); | |
4026 | |
4027 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
|
4028 pSpriteObjects[i].uObjectDescID = 0; |
0 | 4029 |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4030 v5 = pMapStats->GetMapInfo(pCurrentMapName); |
0 | 4031 bUnderwater = 0; |
4032 uLevelMapStatsID = v5; | |
4033 pGame->uFlags2 &= 0xFFFFFFF7u; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4034 if ( !_stricmp(pCurrentMapName, "out15.odm") ) |
0 | 4035 { |
4036 bUnderwater = 1; | |
4037 pGame->uFlags2 |= 8u; | |
4038 } | |
831 | 4039 pParty->floor_face_pid = 0; |
1104 | 4040 if ( _stricmp(Str1, "blv") ) |
0 | 4041 PrepareToLoadODM(v9, 0); |
4042 else | |
4043 PrepareToLoadBLV(v9); | |
4044 pAudioPlayer->SetMapEAX(); | |
1459 | 4045 _461103_load_level_sub(); |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4046 if ( !_stricmp(pCurrentMapName, "d11.blv") || !_stricmp(pCurrentMapName, "d10.blv") ) |
0 | 4047 { |
4048 //spawning grounds & good analogue - no loot & exp from monsters | |
4049 | |
4050 for (uint i = 0; i < uNumActors; ++i) | |
4051 { | |
4052 pActors[i].pMonsterInfo.uTreasureType = 0; | |
4053 pActors[i].pMonsterInfo.uTreasureDiceRolls = 0; | |
4054 pActors[i].pMonsterInfo.uExp = 0; | |
4055 } | |
4056 } | |
4057 bDialogueUI_InitializeActor_NPC_ID = 0; | |
4058 OnMapLoad(); | |
4059 pGameLoadingUI_ProgressBar->Progress(); | |
1459 | 4060 memset(&pRenderer->pBillboardRenderListD3D, 0, sizeof(pRenderer->pBillboardRenderListD3D)); |
0 | 4061 pGameLoadingUI_ProgressBar->Release(); |
4062 _flushall(); | |
4063 } | |
4064 | |
4065 //----- (004649EF) -------------------------------------------------------- | |
4066 int __fastcall ReadWindowsRegistryInt(const char *pKey, int uDefValue) | |
4067 { | |
4068 int v3; // [sp+4h] [bp-24h]@1 | |
4069 DWORD cbData; // [sp+8h] [bp-20h]@1 | |
4070 LPCSTR lpValueName; // [sp+Ch] [bp-1Ch]@1 | |
4071 DWORD dwDisposition; // [sp+10h] [bp-18h]@2 | |
4072 BYTE Data[4]; // [sp+14h] [bp-14h]@5 | |
4073 HKEY hKey; // [sp+18h] [bp-10h]@1 | |
4074 HKEY phkResult; // [sp+1Ch] [bp-Ch]@1 | |
4075 HKEY v10; // [sp+20h] [bp-8h]@1 | |
4076 HKEY v11; // [sp+24h] [bp-4h]@1 | |
4077 | |
4078 v3 = uDefValue; | |
4079 lpValueName = pKey; | |
4080 v11 = 0; | |
4081 v10 = 0; | |
4082 hKey = 0; | |
4083 phkResult = 0; | |
4084 cbData = 4; | |
27 | 4085 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, KEY_READ|KEY_WOW64_32KEY, &hKey) )// for 64 bit |
0 | 4086 { |
4087 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
4088 { | |
4089 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v10, &dwDisposition) ) | |
4090 { | |
4091 if ( !RegCreateKeyExA(v10, "1.0", 0, "", 0, 0xF003Fu, 0, &v11, &dwDisposition) ) | |
4092 { | |
4093 if ( RegQueryValueExA(v11, lpValueName, 0, 0, Data, &cbData) ) | |
4094 { | |
4095 *(int *)Data = v3; | |
4096 RegSetValueExA(v11, lpValueName, 0, 4u, Data, 4u); | |
4097 } | |
4098 RegCloseKey(v11); | |
4099 } | |
4100 RegCloseKey(v10); | |
4101 } | |
4102 RegCloseKey(phkResult); | |
4103 } | |
4104 RegCloseKey(hKey); | |
4105 } | |
4106 return *(int *)Data; | |
4107 } | |
4108 | |
4109 //----- (00464B02) -------------------------------------------------------- | |
4110 void __fastcall WriteWindowsRegistryString(const char *pKey, const char *pString) | |
4111 { | |
4112 size_t v2; // eax@5 | |
4113 const char *lpValueName; // [sp+4h] [bp-1Ch]@1 | |
4114 const char *Str; // [sp+8h] [bp-18h]@1 | |
4115 DWORD dwDisposition; // [sp+Ch] [bp-14h]@2 | |
4116 HKEY hKey; // [sp+10h] [bp-10h]@1 | |
4117 HKEY phkResult; // [sp+14h] [bp-Ch]@1 | |
4118 HKEY v8; // [sp+18h] [bp-8h]@1 | |
4119 HKEY v9; // [sp+1Ch] [bp-4h]@1 | |
4120 | |
4121 Str = pString; | |
4122 lpValueName = pKey; | |
4123 v9 = 0; | |
4124 v8 = 0; | |
4125 hKey = 0; | |
4126 phkResult = 0; | |
4127 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) ) | |
4128 { | |
4129 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
4130 { | |
4131 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v8, &dwDisposition) ) | |
4132 { | |
4133 if ( !RegCreateKeyExA(v8, "1.0", 0, "", 0, 0xF003Fu, 0, &v9, &dwDisposition) ) | |
4134 { | |
4135 v2 = strlen(Str); | |
4136 RegSetValueExA(v9, lpValueName, 0, 1u, (const BYTE *)Str, v2 + 1); | |
4137 RegCloseKey(v9); | |
4138 } | |
4139 RegCloseKey(v8); | |
4140 } | |
4141 RegCloseKey(phkResult); | |
4142 } | |
4143 RegCloseKey(hKey); | |
4144 } | |
4145 } | |
4146 | |
4147 //----- (00464BEF) -------------------------------------------------------- | |
4148 void __fastcall ReadWindowsRegistryString(const char *pKeyName, char *pOutString, int uBufLen, const char *pDefaultValue) | |
4149 { | |
4150 LSTATUS (__stdcall *v4)(HKEY); // esi@1 | |
4151 LSTATUS result; // eax@7 | |
4152 DWORD Type; // [sp+Ch] [bp-24h]@5 | |
4153 LPCSTR lpValueName; // [sp+10h] [bp-20h]@1 | |
4154 DWORD cbData; // [sp+14h] [bp-1Ch]@1 | |
4155 LPBYTE Dest; // [sp+18h] [bp-18h]@1 | |
4156 DWORD dwDisposition; // [sp+1Ch] [bp-14h]@2 | |
4157 HKEY phkResult; // [sp+20h] [bp-10h]@1 | |
4158 HKEY hKey; // [sp+24h] [bp-Ch]@1 | |
4159 HKEY v13; // [sp+28h] [bp-8h]@1 | |
4160 HKEY v14; // [sp+2Ch] [bp-4h]@1 | |
4161 | |
4162 cbData = uBufLen; | |
4163 Dest = (LPBYTE)pOutString; | |
4164 lpValueName = pKeyName; | |
4165 v14 = 0; | |
4166 v13 = 0; | |
4167 hKey = 0; | |
4168 phkResult = 0; | |
4169 v4 = RegCloseKey; | |
4170 if ( RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) | |
4171 || RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) | |
4172 || RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v13, &dwDisposition) | |
4173 || RegCreateKeyExA(v13, "1.0", 0, "", 0, 0xF003Fu, 0, &v14, &dwDisposition) ) | |
1416 | 4174 { |
4175 result = (LSTATUS)strncpy((char *)Dest, pDefaultValue, uBufLen); | |
4176 } | |
4177 else if ( RegQueryValueExA(v14, lpValueName, 0, &Type, Dest, &cbData) ) | |
0 | 4178 { |
4179 RegCloseKey(v14); | |
4180 v14 = 0; | |
4181 result = (LSTATUS)strncpy((char *)Dest, pDefaultValue, uBufLen); | |
1416 | 4182 } |
4183 else | |
4184 { | |
4185 v4 = RegCloseKey; | |
4186 RegCloseKey(v14); | |
4187 v14 = 0; | |
4188 RegCloseKey(v13); | |
4189 v13 = 0; | |
4190 RegCloseKey(phkResult); | |
4191 phkResult = 0; | |
4192 result = RegCloseKey(hKey); | |
4193 hKey = 0; | |
4194 } | |
0 | 4195 if ( v14 ) |
4196 result = v4(v14); | |
4197 if ( v13 ) | |
4198 result = v4(v13); | |
4199 if ( hKey ) | |
4200 result = v4(hKey); | |
4201 if ( phkResult ) | |
4202 result = v4(phkResult); | |
4203 } | |
4204 | |
4205 //----- (00464D32) -------------------------------------------------------- | |
4206 void __fastcall WriteWindowsRegistryInt(const char *pKey, int val) | |
4207 { | |
4208 const char *lpValueName; // [sp+4h] [bp-1Ch]@1 | |
4209 BYTE Data[4]; // [sp+8h] [bp-18h]@1 | |
4210 DWORD dwDisposition; // [sp+Ch] [bp-14h]@2 | |
4211 HKEY hKey; // [sp+10h] [bp-10h]@1 | |
4212 HKEY phkResult; // [sp+14h] [bp-Ch]@1 | |
4213 HKEY v7; // [sp+18h] [bp-8h]@1 | |
4214 HKEY v8; // [sp+1Ch] [bp-4h]@1 | |
4215 | |
4216 *(int *)Data = val; | |
4217 lpValueName = pKey; | |
4218 v8 = 0; | |
4219 v7 = 0; | |
4220 hKey = 0; | |
4221 phkResult = 0; | |
4222 if ( !RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hKey) ) | |
4223 { | |
4224 if ( !RegCreateKeyExA(hKey, "New World Computing", 0, "", 0, 0xF003Fu, 0, &phkResult, &dwDisposition) ) | |
4225 { | |
4226 if ( !RegCreateKeyExA(phkResult, "Might and Magic VII", 0, "", 0, 0xF003Fu, 0, &v7, &dwDisposition) ) | |
4227 { | |
4228 if ( !RegCreateKeyExA(v7, "1.0", 0, "", 0, 0xF003Fu, 0, &v8, &dwDisposition) ) | |
4229 { | |
4230 RegSetValueExA(v8, lpValueName, 0, 4u, Data, 4u); | |
4231 RegCloseKey(v8); | |
4232 } | |
4233 RegCloseKey(v7); | |
4234 } | |
4235 RegCloseKey(phkResult); | |
4236 } | |
4237 RegCloseKey(hKey); | |
4238 } | |
4239 } | |
4240 | |
4241 //----- (00464E17) -------------------------------------------------------- | |
4242 bool __fastcall CheckMM7CD(char c) | |
4243 { | |
4244 char DstBuf[256]; // [sp+Ch] [bp-218h]@1 | |
4245 char strCommand[256]; // [sp+10Ch] [bp-118h]@1 | |
4246 char Filename[20]; // [sp+20Ch] [bp-18h]@1 | |
4247 | |
4248 | |
4249 wchar_t pMagicPath[1024]; | |
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1150
diff
changeset
|
4250 swprintf(pMagicPath, wcslen(L"%C:\\anims\\magic7.vid"), L"%C:\\anims\\magic7.vid", c); |
0 | 4251 if (GetFileAttributesW(pMagicPath) == -1) |
4252 return false; | |
4253 | |
4254 wsprintfA(strCommand, "open %c: type cdaudio alias CD", c); | |
4255 if (!mciSendStringA(strCommand, DstBuf, 0xFFu, 0)) | |
4256 { | |
4257 wsprintfA(strCommand, "info CD UPC wait"); | |
4258 mciSendStringA(strCommand, DstBuf, 0xFFu, 0); | |
4259 wsprintfA(strCommand, "close CD"); | |
4260 mciSendStringA(strCommand, DstBuf, 0xFFu, 0); | |
4261 } | |
4262 | |
4263 memcpy(Filename, "X:\\anims\\magic7.vid", sizeof(Filename)); | |
4264 *Filename = c; | |
4265 | |
4266 auto f = fopen(Filename, "rb"); | |
4267 if (!f) | |
4268 return false; | |
4269 | |
4270 if (!fseek(f, 0, SEEK_END)) | |
4271 { | |
4272 if (!fseek(f, -100, SEEK_CUR)) | |
4273 fread(DstBuf, 1u, 0x64u, f); | |
4274 | |
4275 fclose(f); | |
4276 return true; | |
4277 } | |
4278 fclose(f); | |
4279 return false; | |
4280 } | |
4281 | |
4282 //----- (00464F1B) -------------------------------------------------------- | |
4283 signed int __stdcall InsertMM7CDDialogFunc(HWND hDlg, int a2, __int16 a3, int a4) | |
4284 { | |
4285 char v4; // zf@3 | |
4286 int v6; // eax@10 | |
4287 int v7; // eax@11 | |
4288 int v8; // eax@12 | |
4289 int v9; // eax@13 | |
4290 BOOL (__stdcall *v10)(HWND, int, LPCSTR); // edi@15 | |
4291 const CHAR *v11; // [sp-Ch] [bp-Ch]@15 | |
4292 INT_PTR v12; // [sp-4h] [bp-4h]@5 | |
4293 | |
4294 if ( a2 == 272 ) | |
4295 { | |
4296 hInsertCDWindow = hDlg; | |
4297 v6 = (GetUserDefaultLangID() & 0x3FF) - 7; | |
4298 if ( v6 ) | |
4299 { | |
4300 v7 = v6 - 3; | |
4301 if ( v7 ) | |
4302 { | |
4303 v8 = v7 - 2; | |
4304 if ( v8 ) | |
4305 { | |
4306 v9 = v8 - 4; | |
4307 if ( v9 ) | |
4308 { | |
4309 if ( v9 != 5 ) | |
4310 return 0; | |
4311 SetWindowTextA(hDlg, "Wloz CD-ROM numer 2"); | |
4312 v10 = SetDlgItemTextA; | |
4313 SetDlgItemTextA(hDlg, 1010, "Wloz CD-ROM numer 2 Might and Magic® VII."); | |
4314 v11 = "Odwolaj"; | |
4315 } | |
4316 else | |
4317 { | |
4318 SetWindowTextA(hDlg, "Inserire il secondo CD"); | |
4319 v10 = SetDlgItemTextA; | |
4320 SetDlgItemTextA(hDlg, 1010, "Inserire il secondo CD di Might and Magic® VII."); | |
4321 v11 = "Annulla"; | |
4322 } | |
4323 } | |
4324 else | |
4325 { | |
4326 SetWindowTextA(hDlg, "Insérez le CD 2"); | |
4327 v10 = SetDlgItemTextA; | |
4328 SetDlgItemTextA(hDlg, 1010, "Insérez Might & Magic® VII CD 2."); | |
4329 v11 = "Supprimer"; | |
4330 } | |
4331 } | |
4332 else | |
4333 { | |
4334 SetWindowTextA(hDlg, "Por favor, inserte disco 2"); | |
4335 v10 = SetDlgItemTextA; | |
4336 SetDlgItemTextA(hDlg, 1010, "Por favor, inserte disco 2 de Might & Magic® VII."); | |
4337 v11 = "Cancelar"; | |
4338 } | |
4339 } | |
4340 else | |
4341 { | |
4342 SetWindowTextA(hDlg, "Bitte CD 2 einlegen"); | |
4343 v10 = SetDlgItemTextA; | |
4344 SetDlgItemTextA(hDlg, 1010, "Bitte CD 2 von Might and Magic® VII einlegen."); | |
4345 v11 = "Abbrechen"; | |
4346 } | |
4347 v10(hDlg, 2, v11); | |
4348 return 0; | |
4349 } | |
4350 if ( a2 == 273 ) | |
4351 { | |
4352 if ( a3 == 2 ) | |
4353 { | |
4354 v12 = 0; | |
4355 EndDialog(hDlg, v12); | |
4356 return 1; | |
4357 } | |
4358 v4 = a3 == 1; | |
4359 } | |
4360 else | |
4361 { | |
4362 v4 = a2 == 1025; | |
4363 } | |
4364 if ( v4 ) | |
4365 { | |
4366 v12 = 1; | |
1416 | 4367 EndDialog(hDlg, v12); |
4368 return 1; | |
0 | 4369 } |
4370 return 0; | |
4371 } | |
4372 | |
4373 //----- (00465061) -------------------------------------------------------- | |
4374 bool __fastcall FindMM7CD(HWND hWnd, char *pCDDrive) | |
4375 { | |
4376 char drive[4] = {'X', ':', '\\', 0}; | |
4377 | |
4378 bool bGotCDFromRegistry = false; | |
4379 | |
4380 HKEY hSoftware = nullptr, | |
4381 hNWC = nullptr, | |
4382 hMM7 = nullptr, | |
4383 hVersion = nullptr; | |
4384 if (!RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE", 0, 0x2001Fu, &hSoftware)) | |
4385 { | |
4386 if (!RegOpenKeyExA(hSoftware, "New World Computing", 0, 0x2001Fu, &hNWC)) | |
4387 { | |
4388 if (!RegOpenKeyExA(hNWC, "Might and Magic VII", 0, 0x2001Fu, &hMM7)) | |
4389 { | |
4390 if (!RegOpenKeyExA(hMM7, "1.0", 0, 0x2001Fu, &hVersion)) | |
4391 { | |
4392 DWORD cbData = 3; | |
4393 if (!RegQueryValueExA(hVersion, "CDDrive", 0, 0, (BYTE *)drive, &cbData)) | |
4394 bGotCDFromRegistry = true; | |
4395 } | |
4396 RegCloseKey(hVersion); | |
4397 } | |
4398 RegCloseKey(hMM7); | |
4399 } | |
4400 RegCloseKey(hNWC); | |
4401 } | |
4402 RegCloseKey(hSoftware); | |
4403 | |
4404 if (bGotCDFromRegistry) | |
4405 if (CheckMM7CD(*drive)) | |
4406 { | |
4407 cMM7GameCDDriveLetter = *drive; | |
4408 return true; | |
4409 } | |
4410 | |
4411 while (true) | |
4412 { | |
4413 for (uint i = 0; i < 26; ++i) | |
4414 { | |
4415 drive[0] = 'A' + i; | |
4416 | |
4417 if (GetDriveTypeA(drive) == DRIVE_CDROM) | |
4418 if (CheckMM7CD(*drive)) | |
4419 { | |
4420 cMM7GameCDDriveLetter = *drive; | |
4421 WriteWindowsRegistryString("CDDrive", drive); | |
4422 return true; | |
4423 } | |
4424 } | |
4425 | |
4426 if (DialogBoxParamA(GetModuleHandleW(nullptr), "InsertCD", ::hWnd, (DLGPROC)InsertMM7CDDialogFunc, 0)) | |
4427 continue; | |
4428 return false; | |
4429 } | |
4430 } | |
4431 | |
4432 //----- (004651F4) -------------------------------------------------------- | |
4433 bool MM7_Initialize() | |
4434 { | |
363 | 4435 initing=true; //ADDED Gloval |
0 | 4436 wchar_t pCurrentDir[1024]; |
4437 _wgetcwd(pCurrentDir, 1024); | |
4438 | |
4439 wchar_t pMM6IniFile[1024]; | |
293 | 4440 wsprintfW(pMM6IniFile, L"%s\\mm6.ini", pCurrentDir); |
0 | 4441 |
4442 bCanLoadFromCD = GetPrivateProfileIntW(L"settings", L"use_cd", 1, pMM6IniFile); | |
4443 if (bNoCD) | |
4444 bCanLoadFromCD = false; | |
4445 if (bCanLoadFromCD) | |
4446 { | |
4447 if (!FindMM7CD(hWnd, &cMM7GameCDDriveLetter)) | |
4448 return false; | |
4449 } | |
4450 | |
4451 | |
4452 srand(GetTickCount()); | |
4453 | |
4454 WNDCLASSEXW wcxw; | |
4455 { | |
4456 wcxw.cbSize = sizeof(wcxw); | |
4457 wcxw.style = CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS; | |
4458 wcxw.lpfnWndProc = (WNDPROC)aWinProc; | |
4459 wcxw.cbClsExtra = 0; | |
4460 wcxw.cbWndExtra = 0; | |
4461 wcxw.hInstance = GetModuleHandleW(nullptr); | |
4462 wcxw.hCursor = 0; | |
4463 wcxw.hIcon = wcxw.hIconSm = LoadIconW(wcxw.hInstance, L"MM7_ICON"); | |
4464 wcxw.lpszMenuName = nullptr; | |
4465 wcxw.hbrBackground = (HBRUSH)GetStockObject(LTGRAY_BRUSH); | |
4466 wcxw.lpszClassName = L"M&MTrilogy"; | |
4467 } | |
4468 if (!RegisterClassExW(&wcxw)) | |
4469 { | |
4470 Log::Warning(L"Cannot register window class"); | |
4471 return false; | |
4472 } | |
4473 | |
4474 auto hDesktopDC = GetDC(nullptr); | |
4475 uint uDesktopWidth = GetDeviceCaps(hDesktopDC, HORZRES); | |
4476 uint uDesktopHeight = GetDeviceCaps(hDesktopDC, VERTRES); | |
4477 | |
4478 if (GetDeviceCaps(hDesktopDC, BITSPIXEL) != 16 || | |
4479 GetDeviceCaps(hDesktopDC, PLANES) != 1 ) | |
4480 dword_6BE364_game_settings_1 |= 2; | |
4481 | |
4482 ReleaseDC(nullptr, hDesktopDC); | |
4483 | |
4484 uint uTotalWinWidth = 2 * GetSystemMetrics(SM_CXFRAME) + 640; | |
4485 uint uTotalWinHeight = GetSystemMetrics(SM_CYCAPTION) + 2 * GetSystemMetrics(SM_CYFRAME) + 480; | |
4486 | |
4487 uint uWinCenteredPosX = (uDesktopWidth - uTotalWinWidth) / 2; | |
4488 uint uWinCenteredPosY = (uDesktopHeight - uTotalWinHeight) / 2; | |
4489 | |
4490 uWindowX = ReadWindowsRegistryInt("window X", uWinCenteredPosX); | |
748 | 4491 uWindowX = uDesktopWidth / 2 - 640 / 2; |
0 | 4492 WriteWindowsRegistryInt("window X", uWindowX); |
4493 | |
4494 uWindowY = ReadWindowsRegistryInt("window Y", uWinCenteredPosY); | |
748 | 4495 uWindowY = uDesktopHeight / 2 - 480 / 2; |
0 | 4496 WriteWindowsRegistryInt("window Y", uWindowY); |
4497 | |
4498 hWnd = CreateWindowExW(0, wcxw.lpszClassName, L"Might and Magic® VII", | |
4499 uWindowStyle = WS_SYSMENU | WS_GROUP | WS_DLGFRAME | WS_BORDER, | |
4500 uWindowX, uWindowY, | |
4501 640, 480, | |
4502 nullptr, | |
4503 hOSMenu = nullptr, | |
4504 wcxw.hInstance, | |
4505 nullptr); | |
4506 SetWindowTextW(hWnd, L"Might and Magic® VII"); | |
736 | 4507 |
4508 HMENU menu = CreateMenu(); | |
748 | 4509 { |
4510 HMENU file = CreatePopupMenu(); | |
4511 AppendMenuW(menu, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)file, L"&File"); | |
4512 { | |
4513 AppendMenuW(file, MF_ENABLED | MF_STRING, 40001, L"Exit"); | |
4514 } | |
4515 | |
4516 HMENU debug = CreatePopupMenu(); | |
4517 AppendMenuW(menu, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug, L"&Debug"); | |
4518 { | |
4519 HMENU debug_party = CreatePopupMenu(); | |
4520 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party, L"&Party"); | |
4521 { | |
4522 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40007, L"Give Gold (10 000)"); | |
4523 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40008, L"Give Exp (20 000)"); | |
4524 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40059, L"Give Skills (50 each)"); | |
4525 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40013, L"Remove Gold"); | |
4526 | |
4527 HMENU debug_party_setconditions = CreatePopupMenu(); | |
4528 AppendMenuW(debug_party, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party_setconditions, L"Set Condition"); | |
4529 { | |
4530 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40044, L"Afraid"); | |
4531 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40043, L"Asleep"); | |
4532 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40037, L"Curse"); | |
4533 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40036, L"Disease1"); | |
4534 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40035, L"Disease2"); | |
4535 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40034, L"Disease3"); | |
4536 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40041, L"Dead"); | |
4537 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40039, L"Drunk"); | |
4538 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40042, L"Eradicated"); | |
4539 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40038, L"Insane"); | |
4540 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40045, L"Paralyzed"); | |
4541 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40033, L"Poison1"); | |
4542 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40032, L"Poison2"); | |
4543 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40031, L"Poison3"); | |
4544 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40029, L"&Stone"); | |
4545 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40040, L"Unconscious"); | |
4546 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40030, L"Weak"); | |
4547 AppendMenuW(debug_party_setconditions, MF_ENABLED | MF_STRING, 40073, L"Zombie"); | |
4548 } | |
4549 | |
4550 AppendMenuW(debug_party, MF_ENABLED | MF_STRING, 40006, L"Set Food (20)"); | |
4551 | |
4552 HMENU debug_party_alignment = CreatePopupMenu(); | |
4553 AppendMenuW(debug_party, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_party_alignment, L"Alignment"); | |
4554 { | |
4555 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING, 40062, L"Good"); | |
4556 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING | MF_CHECKED, 40063, L"Neutral"); | |
4557 AppendMenuW(debug_party_alignment, MF_ENABLED | MF_STRING, 40064, L"Evil"); | |
4558 } | |
4559 } | |
4560 | |
4561 HMENU debug_time = CreatePopupMenu(); | |
4562 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_time, L"&Time"); | |
4563 { | |
4564 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40009, L"Add 1 Day"); | |
4565 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40010, L"Add 1 Week"); | |
4566 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40011, L"Add 1 Month"); | |
4567 AppendMenuW(debug_time, MF_ENABLED | MF_STRING, 40012, L"Add 1 Year"); | |
4568 } | |
4569 | |
4570 HMENU debug_items = CreatePopupMenu(); | |
4571 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_items, L"&Items"); | |
4572 { | |
4573 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40015, L"Generate level &1 item"); | |
4574 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40016, L"Generate level &2 item"); | |
4575 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40017, L"Generate level &3 item"); | |
4576 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40018, L"Generate level &4 item"); | |
4577 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40019, L"Generate level &5 item"); | |
4578 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40020, L"Generate level &6 item"); | |
4579 AppendMenuW(debug_items, MF_ENABLED | MF_STRING, 40061, L"Generate special item"); | |
4580 } | |
4581 | |
4582 HMENU debug_graphics = CreatePopupMenu(); | |
4583 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_graphics, L"&Graphics"); | |
4584 { | |
4585 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40023, L"Lighting Mode"); | |
4586 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40024, L"Lighting Geometry"); | |
4587 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING | MF_GRAYED, 40104, L"Lights Off"); | |
4588 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40105, L"Colored Lights"); | |
4589 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40025, L"Debug Lights"); | |
4590 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40101, L"Debug Decals"); | |
4591 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40027, L"HWID Portals"); | |
4592 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40047, L"SWID Portals"); | |
4593 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40051, L"OD Frustum"); | |
4594 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40054, L"SWOD Constant Redraw"); | |
4595 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40055, L"SWOD Lit Rasterizer"); | |
4596 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40056, L"Party Light off"); | |
4597 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40060, L"SWOD Nice Lighting off"); | |
4598 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40067, L"HWOD Additive Fog Lights"); | |
4599 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40072, L"HWID Nice Lighting"); | |
4600 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40048, L"Wireframe"); | |
4601 AppendMenuW(debug_graphics, MF_ENABLED | MF_STRING, 40049, L"Fog"); | |
4602 } | |
4603 | |
4604 HMENU debug_misc = CreatePopupMenu(); | |
4605 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_misc, L"&Misc"); | |
4606 { | |
4607 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40066, L"Object Viewcone Culling"); | |
4608 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40068, L"Red Tint"); | |
4609 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40071, L"Display Secrets"); | |
4610 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40102, L"Massive Bloodsplat"); | |
4611 AppendMenuW(debug_misc, MF_ENABLED | MF_STRING, 40103, L"Underwater Gravity"); | |
4612 } | |
4613 | |
4614 HMENU debug_eax = CreatePopupMenu(); | |
4615 AppendMenuW(debug, MF_ENABLED | MF_STRING | MF_POPUP, (UINT_PTR)debug_eax, L"EAX Environs"); | |
4616 { | |
4617 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40074, L"NONE"); | |
4618 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40075, L"GENERIC"); | |
4619 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40076, L"PADDEDCELL"); | |
4620 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40077, L"ROOM"); | |
4621 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40078, L"BATHROOM"); | |
4622 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40079, L"LIVINGROOM"); | |
4623 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40080, L"STONEROOM"); | |
4624 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40081, L"AUDITORIUM"); | |
4625 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40082, L"CONCERTHALL"); | |
4626 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40083, L"CAVE"); | |
4627 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40084, L"ARENA"); | |
4628 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40085, L"HANGAR"); | |
4629 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40086, L"CARPETEDHALLWAY"); | |
4630 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40087, L"HALLWAY"); | |
4631 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40088, L"STONECORRIDOR"); | |
4632 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40089, L"ALLEY"); | |
4633 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40090, L"FOREST"); | |
4634 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40091, L"CITY"); | |
4635 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40092, L"MOUNTAINS"); | |
4636 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40093, L"QUARRY"); | |
4637 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40094, L"PLAIN"); | |
4638 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40095, L"PARKINGLOT"); | |
4639 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40096, L"SEWERPIPE"); | |
4640 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40097, L"UNDERWATER"); | |
4641 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40098, L"DRUGGED"); | |
4642 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40099, L"DIZZY"); | |
4643 AppendMenuW(debug_eax, MF_ENABLED | MF_STRING, 40100, L"PSICHOTIC"); | |
4644 } | |
4645 } | |
4646 } | |
736 | 4647 SetMenu(hWnd, menu); |
492 | 4648 |
0 | 4649 SetPriorityClass(GetCurrentProcess(), NORMAL_PRIORITY_CLASS); |
4650 | |
4651 pRenderer = Render::Create(); | |
4652 if (!pRenderer) | |
4653 { | |
4654 Log::Warning(L"Render creation failed"); | |
4655 return false; | |
4656 } | |
4657 else | |
4658 { | |
4659 bool bWindowMode = ReadWindowsRegistryInt("startinwindow", false); | |
4660 uint uDefaultDevice = ReadWindowsRegistryInt("D3D Device", 1); | |
4661 bool bColoredLights = ReadWindowsRegistryInt("Colored Lights", false); | |
4662 uint uLevelOfDetail = ReadWindowsRegistryInt("Detail Level", 1); | |
4663 uint bTinting = ReadWindowsRegistryInt("Tinting", 1) != 0; | |
4664 | |
4665 if (!pRenderer->Initialize(bWindowMode, uDefaultDevice, bColoredLights, uLevelOfDetail, bTinting)) | |
4666 { | |
4667 Log::Warning(L"Render failed to initialize"); | |
4668 return false; | |
4669 } | |
4670 } | |
492 | 4671 |
0 | 4672 pAllocator = Allocator::Create(); |
650
14d13880daa9
Sleeping in tavern crash fixed - memory allocation rised to 48mb
Nomad
parents:
648
diff
changeset
|
4673 if (!pAllocator->Initialize(48 * 1024)) |
0 | 4674 { |
4675 MessageBoxW(nullptr, | |
650
14d13880daa9
Sleeping in tavern crash fixed - memory allocation rised to 48mb
Nomad
parents:
648
diff
changeset
|
4676 L"Unable to Allocate 48Mb of RAM", |
0 | 4677 L"More RAM Memory Required", MB_ICONEXCLAMATION); |
4678 return false; | |
4679 } | |
492 | 4680 |
351 | 4681 game_starting_year = 1168; |
0 | 4682 |
4683 pParty = new Party; | |
147 | 4684 memset(&pParty->pHirelings, 0, sizeof(pParty->pHirelings)); |
0 | 4685 pParty->uWalkSpeed = GetPrivateProfileIntW(L"debug", L"walkspeed", 384, pMM6IniFile); |
4686 pParty->uDefaultEyelevel = GetPrivateProfileIntW(L"party", L"eyelevel", 160, pMM6IniFile); | |
4687 pParty->sEyelevel = pParty->uDefaultEyelevel; | |
4688 pParty->uDefaultPartyHeight = GetPrivateProfileIntW(L"party", L"height", 192, pMM6IniFile); | |
4689 pParty->uPartyHeight = pParty->uDefaultPartyHeight; | |
4690 | |
4691 bUseRegistry = GetPrivateProfileIntW(L"settings", L"registry", 1, pMM6IniFile); | |
4692 MM6_Initialize(pMM6IniFile); | |
4693 | |
4694 pKeyActionMap = new KeyboardActionMapping; | |
4695 | |
4696 pEventTimer = Timer::Create(); | |
4697 pEventTimer->Initialize(); | |
4698 | |
4699 OnTimer(1); | |
4700 GameUI_StatusBar_UpdateTimedString(1); | |
4701 pGame = Game::Create(); | |
4702 pMouse = pGame->pMouseInstance; | |
4703 | |
4704 | |
4705 RECT rcWindow; | |
4706 GetWindowRect(hWnd, &rcWindow); | |
4707 | |
4708 RECT rcClient; | |
4709 GetClientRect(hWnd, &rcClient); | |
4710 uWindowWidth = rcClient.left - rcClient.right - rcWindow.left + rcWindow.right + 640; | |
4711 uWindowHeight = rcClient.top - rcClient.bottom - rcWindow.top + rcWindow.bottom + 480; | |
4712 MoveWindow(hWnd, uWindowX, uWindowY, | |
4713 rcClient.left - rcClient.right - rcWindow.left + rcWindow.right + 640, | |
4714 rcClient.top - rcClient.bottom - rcWindow.top + rcWindow.bottom + 480, 0); | |
4715 ShowWindow(hWnd, SW_SHOWNORMAL); | |
4716 | |
4717 pIcons_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4718 if (!pIcons_LOD->Load("data\\icons.lod", "icons")) |
0 | 4719 { |
4720 MessageBoxW(nullptr, | |
4721 L"Some files are missing\n\nPlease Reinstall.", | |
4722 L"Files Missing", MB_ICONEXCLAMATION); | |
4723 return false; | |
4724 } | |
4725 pIcons_LOD->dword_011BA4 = 0; | |
4726 | |
4727 pEvents_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4728 if (!pEvents_LOD->Load("data\\events.lod", "icons")) |
0 | 4729 { |
4730 MessageBoxW(nullptr, | |
4731 L"Some files are missing\n\nPlease Reinstall.", | |
4732 L"Files Missing", MB_ICONEXCLAMATION); | |
4733 return false; | |
4734 } | |
4735 | |
4736 InitializeGameText(); | |
4737 | |
4738 pBitmaps_LOD = new LODFile_IconsBitmaps; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4739 if (!pBitmaps_LOD->Load("data\\bitmaps.lod", "bitmaps")) |
0 | 4740 { |
4741 MessageBoxA(nullptr, | |
4742 pGlobalTXT_LocalizationStrings[63], | |
4743 pGlobalTXT_LocalizationStrings[184], MB_ICONEXCLAMATION); | |
4744 return false; | |
4745 } | |
4746 | |
4747 if (bUseRegistry) | |
4748 bUseLoResSprites = ReadWindowsRegistryInt("resolution", 0); | |
4749 else | |
4750 bUseLoResSprites = GetPrivateProfileIntW(L"settings", L"resolution", 0, pMM6IniFile); | |
4751 | |
4752 const char *pSpritesFile = nullptr; | |
4753 if (bUseLoResSprites) | |
4754 pSpritesFile = "data\\spriteLO.lod"; | |
4755 else | |
4756 pSpritesFile = "data\\sprites.lod"; | |
4757 | |
4758 pSprites_LOD = new LODFile_Sprites; | |
4759 if (!pSprites_LOD->LoadSprites(pSpritesFile)) | |
4760 { | |
4761 MessageBoxA(nullptr, | |
4762 pGlobalTXT_LocalizationStrings[63], | |
4763 pGlobalTXT_LocalizationStrings[184], MB_ICONEXCLAMATION); | |
4764 return false; | |
4765 } | |
4766 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4767 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4768 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4769 if (_access("../MM_VI/data/icons.lod", 0) == 0) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4770 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4771 pIcons_LOD_mm6 = new LODFile_IconsBitmaps; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4772 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
|
4773 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4774 delete pIcons_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4775 pIcons_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4776 Log::Warning(L"Unable to load mm6:icons.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4777 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4778 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4779 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4780 Log::Warning(L"Unable to find mm6:icons.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4781 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4782 if (_access("../MM_VI/data/bitmaps.lod", 0) == 0) |
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 pBitmaps_LOD_mm6 = new LODFile_IconsBitmaps; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4785 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
|
4786 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4787 delete pBitmaps_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4788 pBitmaps_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4789 Log::Warning(L"Unable to load mm6:bitmaps.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4790 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4791 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4792 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4793 Log::Warning(L"Unable to find mm6:bitmaps.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4794 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4795 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
|
4796 : "../MM_VI/data/sprites.lod"; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4797 if (_access(mm6_sprite_container_name, 0) == 0) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4798 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4799 pSprites_LOD_mm6 = new LODFile_Sprites; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4800 if (!pSprites_LOD_mm6->LoadSprites(mm6_sprite_container_name)) |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4801 { |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4802 delete pSprites_LOD_mm6; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4803 pSprites_LOD_mm6 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4804 Log::Warning(L"Unable to load mm6:sprites.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4805 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4806 } |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4807 else |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4808 Log::Warning(L"Unable to find mm6:sprites.lod"); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4809 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4810 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4811 |
0 | 4812 if (bDebugResouces) |
4813 { | |
4814 pSpriteFrameTable = new SpriteFrameTable; | |
4815 if (!pSpriteFrameTable->FromFileTxt("data\\sft.txt")) | |
4816 Abortf("Unable to open sft.txt"); | |
4817 | |
4818 pDecorationList = new DecorationList; | |
4819 if (!pDecorationList->FromFileTxt("data\\declist.txt")) | |
4820 Abortf("Unable to open declist.txt"); | |
4821 | |
4822 pObjectList = new ObjectList; | |
4823 if (!pObjectList->FromFileTxt("data\\objlist.txt")) | |
4824 Abortf("Unable to open objlist.txt"); | |
4825 | |
4826 pMonsterList = new MonsterList; | |
4827 if (!pMonsterList->FromFileTxt("data\\monlist.txt")) | |
4828 Abortf("Unable to open monlist.txt"); | |
4829 | |
4830 pIconsFrameTable = new IconFrameTable; | |
4831 if (!pIconsFrameTable->FromFileTxt("data\\ift.txt")) | |
4832 Abortf("Unable to open ift.txt"); | |
4833 | |
4834 pTextureFrameTable = new TextureFrameTable; | |
4835 if (!pTextureFrameTable->FromFileTxt("data\\tft.def")) | |
4836 Abortf("Unable to open tft.def"); | |
4837 | |
4838 pTileTable = new TileTable; | |
4839 if (!pTileTable->FromFileTxt("data\\tile.def")) | |
4840 Abortf("Unable to open tile.def"); | |
4841 | |
4842 pPlayerFrameTable = new PlayerFrameTable; | |
4843 if (!pPlayerFrameTable->FromFileTxt("data\\pft.def")) | |
4844 Abortf("Unable to open pft.def"); | |
4845 | |
4846 pChestList = new ChestList; | |
4847 if (!pChestList->FromFileTxt("data\\chest.def")) | |
4848 Abortf("Unable to open chest.def"); | |
4849 | |
4850 pOverlayList = new OverlayList; | |
4851 if (!pOverlayList->FromFileTxt("data\\overlay.def")) | |
4852 Abortf("Unable to open overlay.def"); | |
4853 | |
4854 pSoundList = new SoundList; | |
4855 if (!pSoundList->FromFileTxt("data\\sounds.def")) | |
4856 Abortf("Unable to open sounds.def"); | |
4857 } | |
4858 else | |
4859 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4860 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
|
4861 *sft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4862 auto sft_mm7 = pEvents_LOD->LoadRaw("dsft.bin", 1); |
0 | 4863 pSpriteFrameTable = new SpriteFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4864 pSpriteFrameTable->FromFile(sft_mm6, sft_mm7, sft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4865 free(sft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4866 free(sft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4867 free(sft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4868 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4869 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
|
4870 *tft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4871 auto tft_mm7 = pEvents_LOD->LoadRaw("dtft.bin", 1); |
0 | 4872 pTextureFrameTable = new TextureFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4873 pTextureFrameTable->FromFile(tft_mm6, tft_mm7, tft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4874 free(tft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4875 free(tft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4876 free(tft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4877 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4878 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
|
4879 *tiles_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4880 auto tiles_mm7 = pEvents_LOD->LoadRaw("dtile.bin", 1); |
0 | 4881 pTileTable = new TileTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4882 pTileTable->FromFile(tiles_mm6, tiles_mm7, tiles_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4883 free(tiles_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4884 free(tiles_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4885 free(tiles_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4886 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4887 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
|
4888 *pft_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4889 auto pft_mm7 = pEvents_LOD->LoadRaw("dpft.bin", 1); |
0 | 4890 pPlayerFrameTable = new PlayerFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4891 pPlayerFrameTable->FromFile(pft_mm6, pft_mm7, pft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4892 free(pft_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4893 free(pft_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4894 free(pft_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4895 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4896 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
|
4897 *ift_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4898 auto ift_mm7 = pEvents_LOD->LoadRaw("dift.bin", 1); |
0 | 4899 pIconsFrameTable = new IconFrameTable; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4900 pIconsFrameTable->FromFile(ift_mm6, ift_mm7, ift_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4901 free(ift_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4902 free(ift_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4903 free(ift_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4904 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4905 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
|
4906 *decs_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4907 auto decs_mm7 = pEvents_LOD->LoadRaw("ddeclist.bin", 1); |
0 | 4908 pDecorationList = new DecorationList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4909 pDecorationList->FromFile(decs_mm6, decs_mm7, decs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4910 free(decs_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4911 free(decs_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4912 free(decs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4913 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4914 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
|
4915 *objs_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4916 auto objs_mm7 = pEvents_LOD->LoadRaw("dobjlist.bin", 1); |
0 | 4917 pObjectList = new ObjectList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4918 pObjectList->FromFile(objs_mm6, objs_mm7, objs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4919 free(objs_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4920 free(objs_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4921 free(objs_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4922 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4923 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
|
4924 *mons_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4925 auto mons_mm7 = pEvents_LOD->LoadRaw("dmonlist.bin", 1); |
0 | 4926 pMonsterList = new MonsterList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4927 pMonsterList->FromFile(mons_mm6, mons_mm7, mons_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4928 free(mons_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4929 free(mons_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4930 free(mons_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4931 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4932 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
|
4933 *chests_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4934 auto chests_mm7 = pEvents_LOD->LoadRaw("dchest.bin", 1); |
0 | 4935 pChestList = new ChestList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4936 pChestList->FromFile(chests_mm6, chests_mm7, chests_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4937 free(chests_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4938 free(chests_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4939 free(chests_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4940 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4941 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
|
4942 *overlays_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4943 auto overlays_mm7 = pEvents_LOD->LoadRaw("doverlay.bin", 1); |
0 | 4944 pOverlayList = new OverlayList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4945 pOverlayList->FromFile(overlays_mm6, overlays_mm7, overlays_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4946 free(overlays_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4947 free(overlays_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4948 free(overlays_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4949 |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4950 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
|
4951 *sounds_mm8 = nullptr; |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4952 auto sounds_mm7 = pEvents_LOD->LoadRaw("dsounds.bin", 1); |
0 | 4953 pSoundList = new SoundList; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4954 pSoundList->FromFile(sounds_mm6, sounds_mm7, sounds_mm8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4955 free(sounds_mm6); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4956 free(sounds_mm7); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
4957 free(sounds_mm8); |
0 | 4958 } |
4959 | |
4960 | |
4961 if (bDebugResouces) | |
4962 { | |
4963 pSpriteFrameTable->ToFile(); | |
4964 pDecorationList->ToFile(); | |
4965 pObjectList->ToFile(); | |
4966 pMonsterList->ToFile(); | |
4967 pIconsFrameTable->ToFile(); | |
4968 pTextureFrameTable->ToFile(); | |
4969 pTileTable->ToFile(); | |
4970 pPlayerFrameTable->ToFile(); | |
4971 pChestList->ToFile(); | |
4972 pOverlayList->ToFile(); | |
4973 pSoundList->ToFile(); | |
4974 } | |
4975 | |
492 | 4976 |
0 | 4977 if (dword_6BE364_game_settings_1 & 2 || !(dword_6BE368_debug_settings_2 & 1))// |
4978 // color depth != 16 | |
4979 // or | |
4980 // not in window | |
4981 { | |
4982 SetMenu(hWnd, 0); | |
4983 SetWindowLongA(hWnd, GWL_EXSTYLE, 0); | |
4984 SetWindowLongA(hWnd, GWL_STYLE, WS_VISIBLE); | |
4985 pRenderer->InitializeFullscreen(hWnd); | |
4986 } | |
4987 else | |
4988 { | |
4989 ClipCursor(nullptr); | |
4990 pRenderer->SwitchToWindow(hWnd); | |
4991 } | |
4992 | |
4993 uSoundVolumeMultiplier = ReadWindowsRegistryInt("soundflag", 9); | |
4994 if (uSoundVolumeMultiplier > 9) | |
4995 uSoundVolumeMultiplier = 9; | |
4996 uMusicVolimeMultiplier = ReadWindowsRegistryInt("musicflag", 9); | |
4997 if (uMusicVolimeMultiplier > 9) | |
4998 uMusicVolimeMultiplier = 9; | |
4999 uVoicesVolumeMultiplier = ReadWindowsRegistryInt("CharVoices", 9); | |
5000 if (uVoicesVolumeMultiplier > 9) | |
5001 uVoicesVolumeMultiplier = 9; | |
5002 bShowDamage = ReadWindowsRegistryInt("ShowDamage", 1) != 0; | |
5003 byte_6BE388_graphicsmode = ReadWindowsRegistryInt("graphicsmode", 1); | |
5004 if (byte_6BE388_graphicsmode < 0 || byte_6BE388_graphicsmode > 2) | |
5005 byte_6BE388_graphicsmode = 0; | |
5006 | |
5007 uGammaPos = ReadWindowsRegistryInt("GammaPos", 4); | |
733 | 5008 if (uGammaPos > 9) |
0 | 5009 uGammaPos = 4; |
5010 pGame->pGammaController->Initialize(uGammaPos * 0.1 + 0.6); | |
5011 | |
5012 if ( ReadWindowsRegistryInt("Bloodsplats", 1) ) | |
591 | 5013 pGame->uFlags2 |= GAME_FLAGS_2_DRAW_BLOODSPLATS; |
0 | 5014 else |
733 | 5015 pGame->uFlags2 &= ~GAME_FLAGS_2_DRAW_BLOODSPLATS; |
0 | 5016 |
5017 uTurnSpeed = ReadWindowsRegistryInt("TurnDelta", 0); | |
5018 dword_6BE384_2dacceloff = ReadWindowsRegistryInt("2dacceloff", 0); | |
5019 | |
5020 if (!bNoSound) | |
5021 pAudioPlayer->Initialize(hWnd); | |
5022 | |
1262 | 5023 pVideoPlayer = new VideoPlayer(); |
0 | 5024 pVideoPlayer->Initialize(); |
5025 | |
5026 dword_6BE364_game_settings_1 |= 0x4000; | |
5027 | |
5028 switch ( uTurnSpeed ) | |
5029 { | |
731 | 5030 case 0: // undefined turn option |
1067 | 5031 __debugbreak(); // really shouldn't use this mode |
731 | 5032 uTurnSpeed = (unsigned int)uCPUSpeed < 199 ? 128 : 64; // adjust turn speed to estimated fps |
5033 break; | |
5034 | |
5035 case 1u: // 16x | |
5036 Log::Warning(L"x16 Turn Speed"); // really shouldn't use this mode | |
0 | 5037 uTurnSpeed = 128; |
731 | 5038 break; |
5039 | |
5040 case 2u: // 32x | |
5041 Log::Warning(L"x32 Turn Speed"); // really shouldn't use this mode | |
0 | 5042 uTurnSpeed = 64; |
731 | 5043 break; |
5044 | |
5045 case 3u: // smooth | |
0 | 5046 uTurnSpeed = 0; |
731 | 5047 break; |
5048 } | |
5049 | |
5050 initing = false; //ADDED Gloval | |
0 | 5051 return true; |
5052 } | |
5053 | |
5054 //----- (00465D0B) -------------------------------------------------------- | |
1458 | 5055 void SecondaryInitialization() |
0 | 5056 { |
5057 __int16 v4; // ax@4 | |
5058 signed int v5; // esi@5 | |
5059 int v6; // ecx@6 | |
5060 int v7; // edx@7 | |
5061 ObjectDesc *v8; // eax@7 | |
5062 char pContainer[32]; // [sp+10h] [bp-Ch]@9 | |
5063 | |
5064 pMouse->Initialize(hWnd); | |
5065 | |
5066 pItemsTable = new ItemsTable; | |
5067 pItemsTable->Initialize(); | |
5068 | |
5069 pBitmaps_LOD->dword_011BA8 = 1; | |
5070 pBitmaps_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
5071 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
5072 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
762 | 5073 |
5074 pPaletteManager->SetMistColor(128, 128, 128); | |
0 | 5075 pPaletteManager->RecalculateAll(); |
5076 pSprites_LOD->field_ECAC = 1; | |
5077 pObjectList->InitializeSprites(); | |
5078 pOverlayList->InitializeSprites(); | |
5079 if (!bNoSound) | |
5080 pSoundList->Initialize(); | |
5081 | |
5082 static const char *pUIAnimNames[4] = | |
5083 { | |
5084 "glow03", "glow05", | |
5085 "torchA", "wizeyeA" | |
5086 }; | |
5087 static unsigned short _4E98D0[4][4] = | |
5088 { | |
5089 {479, 0, 329, 0}, | |
5090 {585, 0, 332, 0}, | |
5091 {468, 0, 0, 0}, | |
5092 {606, 0, 0, 0} | |
5093 }; | |
5094 | |
5095 | |
5096 for (uint i = 0; i < 4; ++i) | |
5097 { | |
5098 pUIAnims[i]->uIconID = pIconsFrameTable->FindIcon(pUIAnimNames[i]); | |
5099 pIconsFrameTable->InitializeAnimation(pUIAnims[i]->uIconID); | |
5100 | |
5101 pUIAnims[i]->uAnimLength = 0; | |
5102 pUIAnims[i]->uAnimTime = 0; | |
5103 pUIAnims[i]->x = _4E98D0[i][0]; | |
5104 pUIAnims[i]->y = _4E98D0[i][2]; | |
5105 } | |
5106 | |
5107 v5 = 0; | |
5108 if ( (signed int)pObjectList->uNumObjects > 0 ) | |
5109 { | |
5110 v6 = 0; | |
5111 do | |
5112 { | |
5113 BYTE3(v7) = 0; | |
5114 v8 = &pObjectList->pObjects[v6]; | |
5115 ++v6; | |
5116 *(short *)((char *)&v7 + 1) = v8->uParticleTrailColorR; | |
5117 LOBYTE(v7) = v8->uParticleTrailColorG; | |
5118 ++v5; | |
5119 v8->uParticleTrailColor = v8->uParticleTrailColorB | (v7 << 8); | |
5120 } | |
5121 while ( v5 < (signed int)pObjectList->uNumObjects ); | |
5122 } | |
5123 flt_6BE3A0 = 0.55000001f; | |
5124 MainMenuUI_Create(); | |
5125 pGame->pStru6Instance->LoadAnimations(); | |
5126 | |
5127 for (uint i = 0; i < 7; ++i) | |
5128 { | |
5129 sprintf(pContainer, "HDWTR%03u", i); | |
5130 pRenderer->pHDWaterBitmapIDs[i] = pBitmaps_LOD->LoadTexture(pContainer); | |
5131 } | |
5132 | |
5133 pNPCStats = new NPCStats; | |
110 | 5134 memset(pNPCStats->pNPCData, 0, 0x94BCu); |
0 | 5135 pNPCStats->Initialize(); |
5136 | |
5137 Initialize_GlobalEVT(); | |
762 | 5138 pBitmaps_LOD->_inlined_sub0(); |
5139 pSprites_LOD->_inlined_sub0(); | |
0 | 5140 pPaletteManager->LockAll(); |
5141 | |
5142 _mkdir("Saves"); | |
5143 for (uint i = 0; i < 5; ++i) | |
5144 for (uint j = 0; j < 6; ++j) | |
5145 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5146 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
|
5147 remove(pTmpBuf.data()); |
0 | 5148 } |
5149 | |
5150 Initialize_GamesLOD_NewLOD(); | |
1051 | 5151 _576E2C_current_minimap_zoom = 512; |
0 | 5152 dword_576E28 = 9; |
5153 } | |
5154 | |
522 | 5155 void IntegrityTest() |
5156 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5157 assert(sizeof(SoundDesc_mm6) == 112); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5158 assert(sizeof(SoundDesc) == 120); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5159 assert(sizeof(OverlayDesc) == 8); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5160 assert(sizeof(ChestDesc) == 36); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5161 assert(sizeof(ObjectDesc_mm6) == 52); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5162 assert(sizeof(ObjectDesc) == 56); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5163 assert(sizeof(DecorationDesc) == 84); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5164 assert(sizeof(IconFrame) == 32); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5165 assert(sizeof(PlayerFrame) == 10); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5166 assert(sizeof(TextureFrame) == 20); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5167 assert(sizeof(SpriteFrame) == 60); |
522 | 5168 assert(sizeof(RenderVertexSoft) == 0x30); |
5169 assert(sizeof(RenderBillboard) == 0x34); | |
5170 assert(sizeof(Texture) == 0x48); | |
5171 assert(sizeof(RGBTexture) == 0x28); | |
5172 assert(sizeof(LODFile_IconsBitmaps) == 0x11BB8 + 4); // + virtual dtor ptr | |
5173 assert(sizeof(AudioPlayer) == 0xC84); | |
5174 assert(sizeof(SoundDesc) == 0x78); | |
5175 assert(sizeof(stru339_spell_sound) == 0xAFD8); | |
5176 assert(sizeof(VideoPlayer) == 0x108 + 4); | |
5177 assert(sizeof(MovieHeader) == 0x2C); | |
5178 assert(sizeof(DecorationDesc) == 0x54); | |
5179 assert(sizeof(ObjectDesc) == 0x38); | |
5180 assert(sizeof(OverlayDesc) == 0x8); | |
5181 assert(sizeof(ChestDesc) == 0x24); | |
5182 assert(sizeof(TileDesc) == 0x1A); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5183 assert(sizeof(MonsterDesc_mm6) == 148); |
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5184 assert(sizeof(MonsterDesc) == 152); |
522 | 5185 assert(sizeof(Timer) == 0x28); |
5186 assert(sizeof(OtherOverlay) == 0x14); | |
5187 assert(sizeof(ItemGen) == 0x24); | |
5188 assert(sizeof(SpriteObject) == 0x70); | |
5189 assert(sizeof(ItemDesc) == 0x30); | |
5190 assert(sizeof(ItemsTable) == 0x117A0); | |
5191 assert(sizeof(Chest) == 0x14CC); | |
5192 assert(sizeof(MapInfo) == 0x44); | |
5193 assert(sizeof(SpellInfo) == 0x24); | |
5194 assert(sizeof(SpellData) == 0x14); | |
5195 assert(sizeof(SpellBuff) == 0x10); | |
5196 assert(sizeof(AIDirection) == 0x1C); | |
5197 assert(sizeof(ActorJob) == 0xC); | |
5198 assert(sizeof(Actor) == 0x344); | |
5199 assert(sizeof(LevelDecoration) == 0x20); | |
5200 assert(sizeof(KeyboardActionMapping) == 0x20C); | |
5201 assert(sizeof(UIAnimation) == 0xD); | |
5202 assert(sizeof(SpawnPointMM7) == 0x18); | |
5203 assert(sizeof(ODMFace) == 0x134); | |
5204 assert(sizeof(BSPNode) == 0x8); | |
5205 assert(sizeof(BSPModel) == 0xBC); | |
5206 assert(sizeof(OutdoorLocation) == 0x1C28C); | |
5207 assert(sizeof(BLVFace) == 0x60); | |
5208 assert(sizeof(BLVFaceExtra) == 0x24); | |
5209 assert(sizeof(BLVSector) == 0x74); | |
5210 assert(sizeof(BLVLightMM7) == 0x10); | |
5211 assert(sizeof(BLVDoor) == 0x50); | |
5212 assert(sizeof(IndoorLocation) == 0x690); | |
5213 assert(sizeof(OutdoorCamera) == 0x74); | |
5214 assert(sizeof(Mouse) == 0x114); | |
619 | 5215 assert(sizeof(Particle_sw) == 0x68); |
522 | 5216 assert(sizeof(Particle) == 0x68); |
5217 assert(sizeof(ParticleEngine) == 0xE430); | |
5218 assert(sizeof(Lightmap) == 0xC1C); | |
5219 assert(sizeof(LightmapBuilder) == 0x3CBC38); | |
5220 assert(sizeof(Vis_SelectionList) == 0x2008); | |
5221 assert(sizeof(Vis) == 0x20D0); | |
5222 assert(sizeof(PlayerBuffAnim) == 0x10); | |
5223 assert(sizeof(ProjectileAnim) == 0x1C); | |
5224 assert(sizeof(stru6) == 0x5F8); | |
5225 assert(sizeof(IndoorCameraD3D_Vec3) == 0x10); | |
5226 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 | |
5227 assert(sizeof(IndoorCameraD3D) == 0x1A1384); | |
5228 assert(sizeof(StationaryLight) == 0xC); | |
5229 assert(sizeof(LightsStack_StationaryLight_) == 0x12C8); | |
5230 assert(sizeof(MobileLight) == 0x12); | |
5231 assert(sizeof(LightsStack_MobileLight_) == 0x1C28); | |
5232 assert(sizeof(Game) == 0xE78); | |
5233 assert(sizeof(stru141) == 0xA8); | |
5234 assert(sizeof(ActionQueue) == 0x7C); | |
5235 assert(sizeof(NPCData) == 0x4C); | |
5236 assert(sizeof(NPCStats) == 0x17FFC); | |
5237 assert(sizeof(BspRenderer) == 0x53740); | |
5238 assert(sizeof(PaletteManager) == 0x267AF0); | |
5239 assert(sizeof(ViewingParams) == 0x26C); | |
5240 assert(sizeof(IndoorCamera) == 0x50); | |
5241 assert(sizeof(Bloodsplat) == 0x28); | |
5242 assert(sizeof(BloodsplatContainer) == 0xA0C); | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5243 assert(sizeof(TrailParticle) == 0x18); |
522 | 5244 assert(sizeof(EventIndex) == 0xC); |
5245 assert(sizeof(_2devent) == 0x34); | |
5246 assert(sizeof(stru176) == 0x20); | |
5247 assert(sizeof(SavegameHeader) == 0x64); | |
5248 assert(sizeof(SavegameList) == 0x3138); | |
571 | 5249 assert(sizeof(StorylineText) == 0x160); |
522 | 5250 assert(sizeof(FactionTable) == 0x1EF1); |
5251 assert(sizeof(Decal) == 0xC20); | |
5252 assert(sizeof(DecalBuilder) == 0x30C038); | |
5253 assert(sizeof(MonsterInfo) == 0x58); | |
5254 assert(sizeof(MonsterStats) == 0x5BA0); | |
5255 assert(sizeof(RenderD3D) == 0x148); | |
5256 assert(sizeof(Render) == 0x129844); | |
5257 assert(sizeof(Player) == 0x1B3C); | |
5258 assert(sizeof(Party_stru0) == 0x678); | |
5259 assert(sizeof(Party) == 0x16238); | |
5260 assert(sizeof(GUIButton) == 0xBC); | |
5261 assert(sizeof(GUIWindow) == 0x54); | |
5262 assert(sizeof(GUIProgressBar) == 0x1B8); | |
5263 assert(sizeof(GUIFont) == 0x1020); | |
1330 | 5264 // assert(sizeof(stru262_TurnBased) == 0x40); |
554
9caf59edb1ee
Cave and Temple load and even doesn't crash (for a while).
Nomad
parents:
548
diff
changeset
|
5265 assert(sizeof(ArcomageGame) == 0xFB); |
924 | 5266 assert(sizeof(CastSpellInfo) == 0x14); |
522 | 5267 assert(sizeof(ArcomageCard) == 0x6C); |
5268 assert(sizeof(stru320) == 0x3FC); | |
5269 assert(sizeof(TravelInfo) == 0x20); | |
5270 assert(sizeof(stru336) == 0x798); | |
676
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5271 assert(sizeof(Vec3_short_) == 6); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5272 assert(sizeof(BLVFace) == 96); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5273 assert(sizeof(BLVFaceExtra) == 36); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5274 assert(sizeof(BLVSector) == 116); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5275 assert(sizeof(LevelDecoration) == 32); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5276 assert(sizeof(BLVLightMM7) == 16); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5277 assert(sizeof(BSPNode) == 8); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5278 assert(sizeof(SpawnPointMM7) == 24); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5279 assert(sizeof(DDM_DLV_Header) == 40); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5280 assert(sizeof(Actor) == 836); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5281 assert(sizeof(SpriteObject) == 112); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5282 assert(sizeof(Chest) == 5324); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5283 assert(sizeof(stru123) == 0xC8); |
ecfb1b3c9a39
BLV: when standing right on the portal (orange wall) everything looks fine
Nomad
parents:
668
diff
changeset
|
5284 assert(sizeof(BLVMapOutline) == 12); |
700
1d05543f522d
Some occasional crashes in PaletteManager and sprite loading fixed.
Nomad
parents:
698
diff
changeset
|
5285 assert(sizeof(LODSprite) == 0x28); |
522 | 5286 } |
5287 | |
168 | 5288 bool new_sky = false; |
670 | 5289 bool change_seasons = false; |
894 | 5290 bool all_magic = true; |
0 | 5291 |
5292 //----- (00462C94) -------------------------------------------------------- | |
5293 bool MM_Main(const wchar_t *pCmdLine) | |
5294 { | |
5295 HWND hPrevWnd; // eax@1 | |
5296 HWND hPrevWnd_; // esi@1 | |
5297 HWND v6; // eax@4 | |
5298 int v8; // eax@15 | |
5299 //bool v9; // edx@16 | |
5300 //OtherOverlay *v10; // esi@44 | |
5301 //signed int v11; // edi@44 | |
982 | 5302 //unsigned int v12; // ecx@56 |
0 | 5303 HANDLE v13; // eax@68 |
5304 unsigned int startms; // [sp+8h] [bp-24h]@55 | |
5305 RECT Rect; // [sp+Ch] [bp-20h]@15 | |
5306 int a2[4]; // [sp+1Ch] [bp-10h]@15 | |
522 | 5307 |
5308 IntegrityTest(); | |
246 | 5309 char test[1024]; |
522 | 5310 sprintfex(test, "^Pi[%s]: çíàõàð^R[ü;êà;]", "Çîëòàí"); |
5311 | |
1052 | 5312 bool bNoMargareth = false; |
0 | 5313 if (pCmdLine && *pCmdLine) |
5314 { | |
5315 if (wcsstr(pCmdLine, L"-usedefs")) | |
5316 bDebugResouces = 1; | |
5317 if (wcsstr(pCmdLine, L"-window")) | |
5318 dword_6BE368_debug_settings_2 |= 1u; | |
5319 | |
5320 if (wcsstr(pCmdLine, L"-nointro")) | |
5321 bNoIntro = true;//dword_6BE364_game_settings_1 |= 4; | |
5322 if (wcsstr(pCmdLine, L"-nologo")) | |
5323 bNoLogo = true;//dword_6BE364_game_settings_1 |= 8; | |
5324 if (wcsstr(pCmdLine, L"-nosound")) | |
5325 bNoSound = true; //dword_6BE364_game_settings_1 |= 0x10; | |
5326 | |
5327 bWalkSound = ReadWindowsRegistryInt("WalkSound", 1) != 0; | |
5328 if (wcsstr(pCmdLine, L"-nowalksound")) | |
5329 bWalkSound = false;//dword_6BE364_game_settings_1 |= 0x20; | |
256 | 5330 if (wcsstr(pCmdLine, L"-novideo")) |
0 | 5331 { |
5332 dword_6BE364_game_settings_1 |= 0x40; | |
5333 bNoVideo = true; | |
5334 } | |
5335 if (wcsstr(pCmdLine, L"-nocd")) | |
5336 bNoCD = true; | |
168 | 5337 if (wcsstr(pCmdLine, L"-new_sky")) |
5338 new_sky = true; | |
1052 | 5339 if (wcsstr(pCmdLine, L"-nomarg")) |
5340 bNoMargareth = true; | |
0 | 5341 } |
5342 | |
5343 | |
731 | 5344 /*v8 = _4AC1C9_get_cpu_speed(0, (Vec4_int_ *)a2); |
0 | 5345 Rect.left = *(int *)v8; |
5346 Rect.top = *(int *)(v8 + 4); | |
5347 Rect.right = *(int *)(v8 + 8); | |
5348 Rect.bottom = *(int *)(v8 + 12); | |
731 | 5349 uCPUSpeed = Rect.bottom;*/ |
5350 uCPUSpeed = 2048; // about 2GHz | |
4 | 5351 |
5352 | |
734 | 5353 if (!MM7_Initialize()) |
5354 { | |
5355 Log::Warning(L"MM init: failed"); | |
5356 pGame->Deinitialize(); | |
5357 return 1; | |
5358 } | |
5359 Log::Warning(L"MM init: ok"); | |
0 | 5360 |
5361 pEventTimer->Pause(); | |
1397 | 5362 |
373 | 5363 SetUserInterface(PartyAlignment_Neutral, false); |
0 | 5364 ShowIntroVideo_and_LoadingScreen(); |
5365 WriteWindowsRegistryInt("Ran once", 1); | |
5366 dword_6BE364_game_settings_1 |= 0x4000; | |
5367 pGame->InitializeGammaController(); | |
5368 SecondaryInitialization(); | |
709 | 5369 pRenderer->SetRasterClipRect(0, 0, 639u, 479u); |
0 | 5370 FinalInitialization(); |
5371 | |
5372 Log::Warning(L"MM: entering main loop"); | |
5373 while ( 1 ) | |
5374 { | |
165 | 5375 MainMenu_Loop(); |
982 | 5376 uGameState = GAME_STATE_PLAYING; |
0 | 5377 while ( 1 ) |
5378 { | |
982 | 5379 if (uGameState == GAME_FINISHED || |
5380 GetCurrentMenuID() == MENU_EXIT_GAME) | |
5381 { | |
5382 pGame->Deinitialize(); | |
5383 return true; | |
5384 } | |
5385 | |
165 | 5386 if (GetCurrentMenuID() == MENU_NEWGAME) |
0 | 5387 { |
5388 if ( pAudioPlayer->hAILRedbook ) | |
165 | 5389 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
5390 pParty->Reset(); | |
783 | 5391 pOtherOverlayList->Reset(); |
5392 | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5393 strcpy(pCurrentMapName, pStartingMapName); |
165 | 5394 pParty->CreateDefaultParty(0); |
0 | 5395 PlayerCreationUI_Initialize(); |
165 | 5396 if ( PlayerCreationUI_Loop() ) |
0 | 5397 { |
5398 DeleteCCharFont(); | |
165 | 5399 break; |
0 | 5400 } |
5401 DeleteCCharFont(); | |
5402 bFlashQuestBook = true; | |
1397 | 5403 PlayFullscreenMovie(MOVIE_Emerald); |
5404 //pGame->pCShow->PlayMovie(MOVIE_Emerald, 0); | |
837 | 5405 SaveNewGame(); |
1052 | 5406 |
5407 if (bNoMargareth) | |
5408 _449B7E_toggle_bit(pParty->_quest_bits, PARTY_QUEST_EMERALD_MARGARETH_OFF, 1); | |
165 | 5409 pGame->Loop(); |
982 | 5410 |
5411 if (uGameState == GAME_STATE_NEWGAME_OUT_GAMEMENU) | |
165 | 5412 { |
5413 SetCurrentMenuID(MENU_NEWGAME); | |
982 | 5414 uGameState = GAME_STATE_PLAYING; |
165 | 5415 continue; |
5416 } | |
982 | 5417 else if (uGameState == GAME_STATE_GAME_QUITTING_TO_MAIN_MENU) |
5418 break; | |
5419 | |
5420 assert(false && "Invalid game state"); | |
165 | 5421 } |
5422 if (GetCurrentMenuID() == MENU_CREDITS) | |
0 | 5423 { |
5424 if ( pAudioPlayer->hAILRedbook ) | |
165 | 5425 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
1033 | 5426 MainMenuUI_Credits_Loop(); |
0 | 5427 break; |
5428 } | |
961 | 5429 if (GetCurrentMenuID() == MENU_5 || GetCurrentMenuID() == MENU_LoadingProcInMainMenu) |
2 | 5430 { |
982 | 5431 uGameState = GAME_STATE_PLAYING; |
1416 | 5432 pGame->Loop(); |
2 | 5433 } |
4 | 5434 else |
961 | 5435 { |
1458 | 5436 if (GetCurrentMenuID() == MENU_DebugBLVLevel) |
1416 | 5437 { |
5438 pMouse->Activate(0); | |
5439 | |
5440 pParty->Reset(); | |
5441 pParty->CreateDefaultParty(1); | |
1458 | 5442 |
5443 extern void CreateDefaultBLVLevel(); | |
5444 CreateDefaultBLVLevel(); | |
5445 | |
1416 | 5446 extern OPENFILENAMEA ofn; |
5447 if ( !GetOpenFileNameA((LPOPENFILENAMEA)&ofn) ) | |
5448 { | |
5449 pMouse->Activate(1); | |
5450 break; | |
5451 } | |
5452 _chdir("..\\"); | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5453 strcpy(pCurrentMapName, ofn.lpstrFileTitle); |
1416 | 5454 pMouse->Activate(1); |
5455 pGame->Loop(); | |
5456 } | |
492 | 5457 } |
1214
0d6c7ff3cddd
simplified stru193_math constructor and class definition
Grumpy7
parents:
1205
diff
changeset
|
5458 if ( uGameState == GAME_STATE_LOADING_GAME ) |
961 | 5459 { |
982 | 5460 SetCurrentMenuID(MENU_5); |
5461 uGameState = GAME_STATE_PLAYING; | |
0 | 5462 continue; |
961 | 5463 } |
165 | 5464 if ( uGameState == GAME_STATE_NEWGAME_OUT_GAMEMENU ) |
101 | 5465 { |
5466 SetCurrentMenuID(MENU_NEWGAME); | |
982 | 5467 uGameState = GAME_STATE_PLAYING; |
0 | 5468 continue; |
101 | 5469 } |
907 | 5470 if ( uGameState == GAME_STATE_GAME_QUITTING_TO_MAIN_MENU)// from the loaded game |
5471 { | |
0 | 5472 pAudioPlayer->StopChannels(-1, -1); |
982 | 5473 uGameState = GAME_STATE_PLAYING; |
0 | 5474 break; |
907 | 5475 } |
0 | 5476 } |
5477 if (!bNoSound && pAudioPlayer->hAILRedbook) | |
5478 { | |
328 | 5479 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); |
0 | 5480 AIL_redbook_stop(pAudioPlayer->hAILRedbook); |
5481 unsigned int end_ms; | |
5482 AIL_redbook_track_info(pAudioPlayer->hAILRedbook, 0xE, &startms, &end_ms); | |
5483 AIL_redbook_play(pAudioPlayer->hAILRedbook, startms + 1, end_ms); | |
5484 } | |
5485 } | |
734 | 5486 |
0 | 5487 pGame->Deinitialize(); |
734 | 5488 return 1; |
0 | 5489 } |
5490 | |
5491 //----- (004637E0) -------------------------------------------------------- | |
1458 | 5492 char sub_4637E0_is_there_popup_onscreen() |
0 | 5493 { |
5494 return dword_507BF0_is_there_popup_onscreen == 1; | |
5495 } | |
5496 // 507BF0: using guessed type int dword_507BF0_is_there_popup_onscreen; | |
5497 | |
5498 //----- (00466082) -------------------------------------------------------- | |
5499 void MM6_Initialize(const wchar_t *pIniFilename) | |
5500 { | |
5501 //int v0; // eax@1 | |
5502 UINT v1; // eax@18 | |
5503 size_t v2; // eax@31 | |
5504 size_t v3; // ebx@32 | |
5505 size_t v4; // edi@36 | |
5506 //char v5[120]; // [sp+Ch] [bp-17Ch]@1 | |
5507 //char String[120]; // [sp+84h] [bp-104h]@32 | |
5508 char pDefaultGroundTexture[16]; // [sp+FCh] [bp-8Ch]@32 | |
5509 //char pIniFilename[120]; // [sp+10Ch] [bp-7Ch]@1 | |
5510 unsigned int v9; // [sp+184h] [bp-4h]@28 | |
5511 | |
5512 //_getcwd(v5, 120); | |
5513 //sprintfex(pIniFilename, "%s\\mm6.ini", v5); | |
5514 viewparams = new ViewingParams; | |
819 | 5515 game_viewport_x = viewparams->uScreen_topL_X = GetPrivateProfileIntW(L"screen", L"vx1", 8, pIniFilename); |
5516 game_viewport_y = viewparams->uScreen_topL_Y = GetPrivateProfileIntW(L"screen", L"vy1", 8, pIniFilename); | |
5517 game_viewport_z = viewparams->uScreen_BttmR_X = GetPrivateProfileIntW(L"screen", L"vx2", 468, pIniFilename); | |
5518 game_viewport_w = viewparams->uScreen_BttmR_Y = GetPrivateProfileIntW(L"screen", L"vy2", 351, pIniFilename); | |
5519 game_viewport_width = game_viewport_z - game_viewport_x; | |
5520 game_viewport_height = game_viewport_w - game_viewport_y + 1; | |
0 | 5521 |
5522 | |
5523 pAudioPlayer = new AudioPlayer; | |
5524 pAudioPlayer->uMixerChannels = GetPrivateProfileIntW(L"settings", L"mixerchannels", 16, pIniFilename); | |
5525 if ( pAudioPlayer->uMixerChannels > 16 ) | |
5526 pAudioPlayer->uMixerChannels = 16; | |
5527 | |
5528 | |
5529 if (GetPrivateProfileIntW(L"debug", L"nomonster", 0, pIniFilename)) | |
5530 dword_6BE368_debug_settings_2 |= 4; | |
5531 if (bUseRegistry) | |
5532 v1 = ReadWindowsRegistryInt("startinwindow", 0); | |
5533 else | |
5534 v1 = GetPrivateProfileIntW(L"debug", L"startinwindow", 0, pIniFilename); | |
5535 if (v1) | |
5536 dword_6BE368_debug_settings_2 |= 1; | |
5537 if (GetPrivateProfileIntW(L"debug", L"showFR", 0, pIniFilename)) | |
5538 dword_6BE368_debug_settings_2 |= 2; | |
5539 if (GetPrivateProfileIntW(L"debug", L"nodamage", 0, pIniFilename)) | |
5540 dword_6BE368_debug_settings_2 |= 0x10; | |
5541 if (GetPrivateProfileIntW(L"debug", L"nodecoration", 0, pIniFilename)) | |
5542 dword_6BE368_debug_settings_2 |= 8; | |
5543 | |
5544 wchar_t pStartingMapNameW[1024]; | |
5545 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
|
5546 sprintf(pStartingMapName, "%S", pStartingMapNameW); |
0 | 5547 |
5548 v9 = 0; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5549 if ( strlen(pStartingMapName) ) |
0 | 5550 { |
5551 do | |
5552 { | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5553 if ( pStartingMapName[v9] == ' ' ) |
0 | 5554 pStartingMapName[v9] = 0; |
5555 ++v9; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1467
diff
changeset
|
5556 v2 = strlen(pStartingMapName); |
0 | 5557 } |
5558 while ( v9 < v2 ); | |
5559 } | |
5560 | |
5561 pOutdoorCamera = new OutdoorCamera; | |
5562 outdoor_day_top_r = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.r", 81, pIniFilename); | |
5563 outdoor_day_top_g = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.g", 121, pIniFilename); | |
5564 outdoor_day_top_b = GetPrivateProfileIntW(L"outdoor", L"RGBDayTop.b", 236, pIniFilename); | |
5565 outdoor_day_bottom_r = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.r", 153, pIniFilename); | |
5566 outdoor_day_bottom_g = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.g", 193, pIniFilename); | |
5567 outdoor_day_bottom_b = GetPrivateProfileIntW(L"outdoor", L"RGBDayBottom.b", 237, pIniFilename); | |
5568 outdoor_night_top_r = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.r", 0, pIniFilename); | |
5569 outdoor_night_top_g = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.g", 0, pIniFilename); | |
5570 outdoor_night_top_b = GetPrivateProfileIntW(L"outdoor", L"RGBNightTop.b", 0, pIniFilename); | |
5571 outdoor_night_bottom_r = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.r", 11, pIniFilename); | |
5572 outdoor_night_bottom_g = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.g", 41, pIniFilename); | |
5573 outdoor_night_bottom_b = GetPrivateProfileIntW(L"outdoor", L"RGBNightBottom.b", 129, pIniFilename); | |
5574 pOutdoorCamera->outdoor_no_mist = GetPrivateProfileIntW(L"debug", L"noMist", 0, pIniFilename); | |
5575 pOutdoorCamera->bNoSky = GetPrivateProfileIntW(L"outdoor", L"nosky", 0, pIniFilename); | |
5576 pOutdoorCamera->bDoNotRenderDecorations = GetPrivateProfileIntW(L"render", L"nodecorations", 0, pIniFilename); | |
5577 pOutdoorCamera->outdoor_no_wavy_water = GetPrivateProfileIntW(L"outdoor", L"nowavywater", 0, pIniFilename); | |
5578 outdoor_grid_band_1 = GetPrivateProfileIntW(L"outdoor", L"gridband1", 10, pIniFilename); | |
5579 outdoor_grid_band_2 = GetPrivateProfileIntW(L"outdoor", L"gridband2", 15, pIniFilename); | |
5580 outdoor_grid_band_3 = GetPrivateProfileIntW(L"outdoor", L"gridband3", 25, pIniFilename); | |
5581 pOutdoorCamera->terrain_gamma = GetPrivateProfileIntW(L"outdoor", L"ter_gamma", 0, pIniFilename); | |
5582 pOutdoorCamera->building_gamme = GetPrivateProfileIntW(L"outdoor", L"bld_gamma", 0, pIniFilename); | |
5583 mipmapping_terrain_mm1 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm1", 2048, pIniFilename); | |
5584 mipmapping_terrain_mm2 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm2", 4096, pIniFilename); | |
5585 mipmapping_terrain_mm3 = GetPrivateProfileIntW(L"mipmapping", L"ter_mm3", 8192, pIniFilename); | |
5586 mipmapping_building_mm1 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm1", 1024, pIniFilename); | |
5587 mipmapping_building_mm2 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm2", 2048, pIniFilename); | |
5588 mipmapping_building_mm3 = GetPrivateProfileIntW(L"mipmapping", L"bld_mm3", 4096, pIniFilename); | |
5589 pOutdoorCamera->shading_dist_shade = GetPrivateProfileIntW(L"shading", L"dist_shade", 2048, pIniFilename); | |
5590 pOutdoorCamera->shading_dist_shademist = GetPrivateProfileIntW(L"shading", L"dist_shademist", 4096, pIniFilename); | |
5591 pOutdoorCamera->shading_dist_mist = GetPrivateProfileIntW(L"shading", L"dist_mist", 8192, pIniFilename); | |
5592 | |
5593 wchar_t pDefaultSkyTextureW[1024]; | |
5594 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
|
5595 sprintf(pDefaultSkyTexture.data(), "%S", pDefaultSkyTextureW); |
0 | 5596 |
5597 wchar_t pDefaultGroundTextureW[1024]; | |
5598 GetPrivateProfileStringW(L"textures", L"default", L"dirt", pDefaultGroundTextureW, 0x10u, pIniFilename); | |
5599 sprintf(pDefaultGroundTexture, "%S", pDefaultGroundTextureW); | |
5600 | |
5601 wchar_t pFloat[1024]; | |
5602 GetPrivateProfileStringW(L"debug", L"recmod1", L"1.0", pFloat, 0x10u, pIniFilename); | |
5603 swscanf(pFloat, L"%f", &flt_6BE3A4_debug_recmod1); | |
5604 | |
5605 GetPrivateProfileStringW(L"debug", L"recmod2", L"1.0", pFloat, 0x10u, pIniFilename); | |
5606 swscanf(pFloat, L"%f", &flt_6BE3A8_debug_recmod2); | |
5607 | |
5608 flt_6BE3AC_debug_recmod1_x_1_6 = flt_6BE3A4_debug_recmod1 * 1.666666666666667; | |
5609 | |
5610 v3 = 0; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5611 if ( strlen(pDefaultSkyTexture.data()) ) |
0 | 5612 { |
5613 do | |
5614 { | |
5615 if ( pDefaultSkyTexture[v3] == ' ' ) | |
5616 pDefaultSkyTexture[v3] = 0; | |
5617 ++v3; | |
5618 } | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5619 while ( v3 < strlen(pDefaultSkyTexture.data()) ); |
0 | 5620 } |
5621 v4 = 0; | |
5622 if ( strlen(pDefaultGroundTexture) ) | |
5623 { | |
5624 do | |
5625 { | |
5626 if ( pDefaultGroundTexture[v4] == ' ' ) | |
5627 pDefaultGroundTexture[v4] = 0; | |
5628 ++v4; | |
5629 } | |
5630 while ( v4 < strlen(pDefaultGroundTexture) ); | |
5631 } | |
5632 | |
5633 texmapping_terrain_subdivsize = GetPrivateProfileIntW(L"texmapping", L"terrain_subdivsize", 16, pIniFilename); | |
5634 texmapping_terrain_subdivpow2 = GetPrivateProfileIntW(L"texmapping", L"terrain_subdivpow2", 4, pIniFilename); | |
5635 texmapping_building_subdivsize = GetPrivateProfileIntW(L"texmapping", L"building_subdivsize", 32, pIniFilename); | |
5636 texmapping_building_subdivpow2 = GetPrivateProfileIntW(L"texmapping", L"building_subdivpow2", 5, pIniFilename); | |
5637 | |
5638 MM7Initialization(); | |
5639 } | |
5640 | |
5641 //----- (004666D5) -------------------------------------------------------- | |
1458 | 5642 void MM7Initialization() |
0 | 5643 { |
5644 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
5645 { | |
5646 if ( !byte_6BE388_graphicsmode ) | |
5647 { | |
5648 outdoor_grid_band_1 = 10; | |
5649 outdoor_grid_band_2 = 15; | |
5650 outdoor_grid_band_3 = 20; | |
5651 pOutdoorCamera->shading_dist_mist = 8192; | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5652 pOutdoorCamera->bNoSky = false; |
0 | 5653 LOBYTE(viewparams->field_20) = 0; |
5654 } | |
5655 mipmapping_terrain_mm1 = 1024; | |
5656 mipmapping_terrain_mm2 = 2048; | |
5657 mipmapping_building_mm1 = 1024; | |
5658 mipmapping_building_mm2 = 2048; | |
5659 pOutdoorCamera->shading_dist_shade = 2048; | |
5660 pOutdoorCamera->terrain_gamma = 0; | |
5661 pOutdoorCamera->building_gamme = 0; | |
5662 mipmapping_terrain_mm3 = 4096; | |
5663 mipmapping_building_mm3 = 4096; | |
5664 pOutdoorCamera->shading_dist_shademist = 4096; | |
5665 pOutdoorCamera->outdoor_no_wavy_water = 0; | |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5666 //_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
|
5667 { |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5668 pOutdoorCamera->outdoor_grid_band_3 = outdoor_grid_band_3; |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5669 pOutdoorCamera->uPickDepth = outdoor_grid_band_3 * 512; |
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
5670 } |
0 | 5671 } |
5672 else | |
5673 { | |
5674 LOBYTE(viewparams->field_20) = 0; | |
5675 } | |
5676 pParty->uFlags |= 2u; | |
692 | 5677 viewparams->uSomeY = viewparams->uScreen_topL_Y; |
5678 viewparams->uSomeX = viewparams->uScreen_topL_X; | |
5679 viewparams->uSomeZ = viewparams->uScreen_BttmR_X; | |
5680 viewparams->uSomeW = viewparams->uScreen_BttmR_Y; | |
5681 | |
5682 pViewport->SetScreen(viewparams->uScreen_topL_X, viewparams->uScreen_topL_Y, viewparams->uScreen_BttmR_X, viewparams->uScreen_BttmR_Y); | |
0 | 5683 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor ) |
5684 pOutdoorCamera->_485F64(); | |
5685 } | |
5686 | |
5687 //----- (00466B8C) -------------------------------------------------------- | |
1458 | 5688 int AbortWithError() |
0 | 5689 { |
5690 if ( !aborting_app ) | |
5691 { | |
5692 ClipCursor(0); | |
5693 aborting_app = 1; | |
5694 if ( !pRenderer->bWindowMode ) | |
5695 pRenderer->ChangeBetweenWinFullscreenModes(); | |
5696 if ( MessageBoxA(0, pGlobalTXT_LocalizationStrings[176], pGlobalTXT_LocalizationStrings[59], 0x34u) == 6 ) | |
5697 SaveGame(1, 0); // "Internal Error" | |
5698 // "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?" | |
5699 Game_DeinitializeAndTerminate(1); | |
5700 } | |
5701 return 0; | |
5702 } | |
5703 // 720018: using guessed type int aborting_app; | |
5704 | |
5705 //----- (00466BE5) -------------------------------------------------------- | |
5706 void Abortf(const char *Format, ...) | |
5707 { | |
5708 va_list va; // [sp+8h] [bp+8h]@1 | |
5709 | |
5710 va_start(va, Format); | |
5711 if ( !pRenderer->bWindowMode ) | |
5712 pRenderer->ChangeBetweenWinFullscreenModes(); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5713 vsprintf(pTmpBuf.data(), Format, va); |
0 | 5714 if ( pMouse ) |
5715 pMouse->Activate(0); | |
5716 ClipCursor(0); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
5717 MessageBoxA(0, pTmpBuf.data(), "Error", 0x30u); |
0 | 5718 Game_DeinitializeAndTerminate(1); |
5719 } | |
5720 | |
5721 //----- (00466C40) -------------------------------------------------------- | |
5722 const wchar_t *MENU_STATE_to_string(MENU_STATE m) | |
5723 { | |
5724 switch (m) | |
5725 { | |
982 | 5726 case -1: return L"-1"; |
5727 case MENU_MAIN: return L"MENU_MAIN"; | |
5728 case MENU_NEWGAME: return L"MENU_NEWGAME"; | |
5729 case MENU_CREDITS: return L"MENU_CREDITS"; | |
5730 case MENU_SAVELOAD: return L"MENU_SAVELOAD"; | |
5731 case MENU_EXIT_GAME: return L"MENU_EXIT_GAME"; | |
5732 case MENU_5: return L"MENU_5"; | |
5733 case MENU_CREATEPARTY: return L"MENU_CREATEPARTY"; | |
165 | 5734 case MENU_NAMEPANELESC: return L"MENU_NAMEPANELESC"; |
982 | 5735 case MENU_CREDITSPROC: return L"MENU_CREDITSPROC"; |
961 | 5736 case MENU_LoadingProcInMainMenu: return L"MENU_LoadingProcInMainMenu"; |
1458 | 5737 case MENU_DebugBLVLevel: return L"MENU_DebugBLVLevel"; |
165 | 5738 case MENU_CREDITSCLOSE: return L"MENU_CREDITSCLOSE"; |
982 | 5739 default: return L"unk"; |
0 | 5740 }; |
5741 }; | |
5742 void SetCurrentMenuID(MENU_STATE uMenu) | |
5743 { | |
5744 uCurrentMenuID = uMenu; | |
5745 | |
5746 Log::Warning(L"CurrentMenu = %s", MENU_STATE_to_string(uMenu)); | |
5747 } | |
5748 | |
5749 //----- (00466CA0) -------------------------------------------------------- | |
5750 MENU_STATE GetCurrentMenuID() | |
5751 { | |
5752 return uCurrentMenuID; | |
5753 } | |
5754 | |
5755 | |
5756 //----- (0046A6AC) -------------------------------------------------------- | |
1459 | 5757 int __fastcall _46A6AC_spell_render(int a1, int a2, int a3) |
0 | 5758 { |
5759 int result; // eax@2 | |
5760 unsigned int v4; // edx@3 | |
5761 int *v5; // esi@6 | |
5762 unsigned int v6; // ebx@6 | |
5763 signed int v7; // edi@9 | |
5764 unsigned __int16 v8; // ax@9 | |
5765 int i; // eax@14 | |
5766 int v10; // ecx@19 | |
5767 int v11; // [sp+0h] [bp-18h]@1 | |
5768 unsigned int v12; // [sp+4h] [bp-14h]@3 | |
5769 unsigned int v13; // [sp+8h] [bp-10h]@4 | |
5770 int v14; // [sp+Ch] [bp-Ch]@1 | |
5771 int *v15; // [sp+10h] [bp-8h]@4 | |
5772 int v16; // [sp+14h] [bp-4h]@3 | |
5773 | |
5774 v11 = a2; | |
5775 v14 = a1; | |
5776 if ( pRenderer->pRenderD3D ) | |
5777 { | |
1459 | 5778 result = _46A6AC_spell_render_d3d(a1, a2, a3); |
0 | 5779 } |
5780 else | |
5781 { | |
1459 | 5782 __debugbreak(); // SW render never called |
0 | 5783 v16 = 0; |
692 | 5784 v4 = viewparams->uScreen_topL_X; |
5785 v12 = viewparams->uScreen_BttmR_X; | |
5786 if ( (signed int)viewparams->uScreen_topL_Y < (signed int)viewparams->uScreen_BttmR_Y ) | |
5787 { | |
5788 v15 = &pRenderer->pActiveZBuffer[viewparams->uScreen_topL_X + 640 * viewparams->uScreen_topL_Y]; | |
5789 v13 = ((viewparams->uScreen_BttmR_Y - viewparams->uScreen_topL_Y - 1) >> 1) + 1; | |
0 | 5790 do |
5791 { | |
5792 if ( (signed int)v4 < (signed int)v12 ) | |
5793 { | |
5794 v5 = v15; | |
5795 v6 = ((v12 - v4 - 1) >> 1) + 1; | |
5796 do | |
5797 { | |
848 | 5798 if ( PID_TYPE(*(char *)v5) == OBJECT_Actor) |
0 | 5799 { |
5800 if ( *v5 <= a3 << 16 ) | |
5801 { | |
848 | 5802 v7 = PID_ID((signed int)(unsigned __int16)*v5); |
0 | 5803 v8 = pActors[v7].uAIState; |
5804 if ( v8 != 5 ) | |
5805 { | |
5806 if ( v8 != 4 && v8 != 11 && v8 != 17 && v8 != 19 ) | |
5807 { | |
5808 for ( i = 0; i < v16; ++i ) | |
5809 { | |
5810 if ( *(int *)(v14 + 4 * i) == v7 ) | |
5811 break; | |
5812 } | |
5813 if ( i == v16 ) | |
5814 { | |
5815 if ( i < v11 - 1 ) | |
5816 { | |
5817 v10 = v16++; | |
5818 *(int *)(v14 + 4 * v10) = v7; | |
5819 } | |
5820 } | |
5821 } | |
5822 } | |
5823 } | |
5824 } | |
5825 v5 += 2; | |
5826 --v6; | |
5827 } | |
5828 while ( v6 ); | |
5829 } | |
5830 v15 += 1280; | |
5831 --v13; | |
5832 } | |
5833 while ( v13 ); | |
5834 } | |
5835 result = v16; | |
5836 } | |
5837 return result; | |
5838 } | |
5839 | |
5840 //----- (0046A7C8) -------------------------------------------------------- | |
1459 | 5841 int __fastcall _46A6AC_spell_render_d3d(int a1, int a2, int a3) |
0 | 5842 { |
5843 unsigned int v3; // eax@2 | |
5844 int v4; // ecx@2 | |
5845 unsigned int v5; // eax@2 | |
5846 unsigned int v6; // eax@4 | |
5847 unsigned int v7; // edi@4 | |
5848 unsigned __int16 v8; // ax@4 | |
5849 float v9; // ST00_4@9 | |
5850 int v10; // ecx@11 | |
5851 unsigned int v12; // [sp+10h] [bp-14h]@1 | |
5852 int v13; // [sp+14h] [bp-10h]@1 | |
5853 int v14; // [sp+18h] [bp-Ch]@1 | |
5854 int v15; // [sp+1Ch] [bp-8h]@1 | |
5855 unsigned int a1a; // [sp+20h] [bp-4h]@1 | |
5856 | |
5857 v13 = a1; | |
5858 v14 = a2; | |
5859 v15 = 0; | |
5860 a1a = 0; | |
5861 v12 = pRenderer->GetBillboardDrawListSize(); | |
5862 if ( (signed int)v12 > 0 ) | |
5863 { | |
5864 do | |
5865 { | |
5866 v3 = pRenderer->GetParentBillboardID(a1a); | |
5867 v4 = pBillboardRenderList[v3].sZValue; | |
194 | 5868 v5 = (unsigned __int16)pBillboardRenderList[v3].object_pid; |
848 | 5869 if ( PID_TYPE(v5) == OBJECT_Actor) |
0 | 5870 { |
5871 if ( v4 <= (unsigned int)(a3 << 16) ) | |
5872 { | |
848 | 5873 v6 = PID_ID(v5); |
0 | 5874 v7 = v6; |
5875 v8 = pActors[v6].uAIState; | |
1038 | 5876 if ( v8 != Dead ) |
5877 { | |
5878 if ( v8 != Dying ) | |
5879 { | |
5880 if ( v8 != Removed ) | |
0 | 5881 { |
1038 | 5882 if ( v8 != Disabled ) |
0 | 5883 { |
1038 | 5884 if ( v8 != Summoned ) |
0 | 5885 { |
5886 v9 = (double)a3; | |
5887 if ( pGame->pVisInstance->DoesRayIntersectBillboard(v9, a1a) ) | |
5888 { | |
5889 if ( v15 < v14 - 1 ) | |
5890 { | |
5891 v10 = v15++; | |
5892 *(int *)(v13 + 4 * v10) = v7; | |
5893 } | |
5894 } | |
5895 } | |
5896 } | |
5897 } | |
5898 } | |
5899 } | |
5900 } | |
5901 } | |
5902 ++a1a; | |
5903 } | |
5904 while ( (signed int)a1a < (signed int)v12 ); | |
5905 } | |
5906 return v15; | |
5907 } | |
5908 | |
5909 //----- (0046A89E) -------------------------------------------------------- | |
1459 | 5910 int __fastcall _46A89E_immolation_effect(int a1, int a2, int a3) |
0 | 5911 { |
5912 signed int v3; // edi@1 | |
90 | 5913 Actor *v4; // esi@2 |
0 | 5914 int v5; // ebx@3 |
5915 int v6; // eax@3 | |
5916 int v7; // ebx@3 | |
5917 unsigned int v8; // ecx@3 | |
5918 int v9; // edx@4 | |
5919 unsigned int v10; // edx@6 | |
5920 unsigned int v11; // edx@8 | |
5921 __int16 v12; // ax@10 | |
5922 int v13; // ecx@15 | |
5923 int v15; // [sp+4h] [bp-18h]@1 | |
5924 int v16; // [sp+8h] [bp-14h]@1 | |
5925 int v17; // [sp+Ch] [bp-10h]@3 | |
5926 int v18; // [sp+10h] [bp-Ch]@3 | |
5927 int v19; // [sp+18h] [bp-4h]@1 | |
5928 | |
5929 v3 = 0; | |
5930 v15 = a2; | |
5931 v16 = a1; | |
5932 v19 = 0; | |
5933 if ( (signed int)uNumActors > 0 ) | |
5934 { | |
1202 | 5935 v4 = pActors.data();//[0].uAIState; |
0 | 5936 do |
5937 { | |
90 | 5938 v5 = abs(v4->vPosition.x - pParty->vPosition.x); |
5939 v17 = abs(v4->vPosition.y - pParty->vPosition.y); | |
5940 v18 = abs(v4->vPosition.z - pParty->vPosition.z); | |
0 | 5941 v6 = v5; |
5942 v7 = v17; | |
5943 v8 = v18; | |
5944 if ( v6 < v17 ) | |
5945 { | |
5946 v9 = v6; | |
5947 v6 = v17; | |
5948 v7 = v9; | |
5949 } | |
5950 if ( v6 < v18 ) | |
5951 { | |
5952 v10 = v6; | |
5953 v6 = v18; | |
5954 v8 = v10; | |
5955 } | |
5956 if ( v7 < (signed int)v8 ) | |
5957 { | |
5958 v11 = v8; | |
5959 v8 = v7; | |
5960 v7 = v11; | |
5961 } | |
5962 if ( (signed int)(((unsigned int)(11 * v7) >> 5) + (v8 >> 2) + v6) <= a3 ) | |
5963 { | |
90 | 5964 v12 = v4->uAIState; |
5965 if ( v4->uAIState != 5 ) | |
0 | 5966 { |
5967 if ( v12 != 4 ) | |
5968 { | |
5969 if ( v12 != 11 ) | |
5970 { | |
5971 if ( v12 != 19 ) | |
5972 { | |
5973 if ( v12 != 17 ) | |
5974 { | |
5975 v13 = v19++; | |
5976 *(int *)(v16 + 4 * v13) = v3; | |
5977 if ( v19 >= v15 - 1 ) | |
5978 break; | |
5979 } | |
5980 } | |
5981 } | |
5982 } | |
5983 } | |
5984 } | |
5985 ++v3; | |
90 | 5986 ++v4; |
0 | 5987 } |
5988 while ( v3 < (signed int)uNumActors ); | |
5989 } | |
5990 return v19; | |
5991 } | |
5992 | |
5993 //----- (0046A99B) -------------------------------------------------------- | |
1458 | 5994 int sub_46A99B() |
0 | 5995 { |
5996 int v0; // ebx@1 | |
5997 signed int v1; // ecx@1 | |
5998 signed int v2; // esi@1 | |
5999 int v3; // edx@1 | |
6000 signed int v4; // eax@1 | |
6001 int v5; // ecx@2 | |
6002 int *v6; // eax@3 | |
6003 int v7; // ecx@3 | |
6004 int v8; // edx@5 | |
6005 int v9; // edi@6 | |
6006 unsigned __int8 v10; // zf@14 | |
6007 char v11; // sf@14 | |
6008 char v12; // of@14 | |
6009 int *v14; // esi@19 | |
6010 signed int v15; // ebx@19 | |
6011 int i; // edi@20 | |
6012 int v17; // ecx@21 | |
6013 int v18; // edi@26 | |
6014 int v19; // esi@27 | |
6015 unsigned int v20; // ecx@27 | |
6016 BLVFace *v21; // eax@32 | |
6017 unsigned int v22; // ecx@33 | |
6018 const char *v23; // eax@35 | |
6019 const char *v24; // ecx@36 | |
6020 LevelDecoration *v25; // ecx@43 | |
6021 LevelDecoration *v26; // edi@43 | |
6022 __int16 v27; // ax@43 | |
6023 int v28; // [sp+Ch] [bp-18h]@1 | |
6024 int v29; // [sp+14h] [bp-10h]@2 | |
6025 int v30; // [sp+18h] [bp-Ch]@1 | |
6026 signed int v31; // [sp+1Ch] [bp-8h]@3 | |
6027 int v32; // [sp+20h] [bp-4h]@1 | |
6028 | |
6029 v0 = 0; | |
692 | 6030 v1 = (signed int)(viewparams->uScreen_BttmR_Y + viewparams->uScreen_topL_Y) >> 1; |
6031 v2 = (signed int)(viewparams->uScreen_topL_X + viewparams->uScreen_BttmR_X) >> 1; | |
0 | 6032 v3 = v1 - 50; |
6033 v32 = 0; | |
6034 v4 = 100; | |
6035 v30 = v1 - 50; | |
6036 v28 = v1 + 50; | |
6037 if ( v1 - 50 >= v1 + 50 ) | |
6038 return 0; | |
6039 v5 = 640 * v3; | |
6040 v29 = 640 * v3; | |
6041 while ( 2 ) | |
6042 { | |
1416 | 6043 v6 = &pRenderer->pActiveZBuffer[v2 + v5 - v4 / 2]-1; |
0 | 6044 v7 = v0; |
1416 | 6045 //while ( 1 ) |
6046 for( int i = 0; i < 100; i++) | |
6047 { | |
6048 ++v6; | |
0 | 6049 v8 = *v6; |
6050 if ( (unsigned int)*v6 <= 0x2000000 ) | |
6051 { | |
6052 v9 = 0; | |
6053 if ( v7 > 0 ) | |
6054 { | |
6055 do | |
6056 { | |
6057 if ( dword_7201B0_zvalues[v9] == (unsigned __int16)v8 ) | |
6058 break; | |
6059 ++v9; | |
6060 } | |
6061 while ( v9 < v0 ); | |
6062 } | |
6063 if ( v9 == v0 ) | |
6064 { | |
6065 if ( v8 & 7 ) | |
6066 { | |
6067 dword_720020_zvalues[v7] = v8; | |
6068 dword_7201B0_zvalues[v7] = (unsigned __int16)v8; | |
6069 ++v7; | |
6070 ++v0; | |
6071 v32 = v0; | |
6072 if ( v7 == 99 ) | |
6073 { | |
6074 v12 = 0; | |
6075 v10 = v0 == 0; | |
6076 v11 = v0 < 0; | |
6077 goto LABEL_18; | |
6078 } | |
6079 } | |
6080 } | |
6081 } | |
1416 | 6082 } |
0 | 6083 v4 = -1; |
6084 ++v30; | |
6085 v5 = v29 + 640; | |
6086 v29 += 640; | |
1416 | 6087 if ( v30 >= v28 ) |
6088 break; | |
0 | 6089 } |
6090 v12 = 0; | |
6091 v10 = v0 == 0; | |
6092 v11 = v0 < 0; | |
6093 if ( !v0 ) | |
6094 return 0; | |
6095 LABEL_18: | |
6096 if ( !((unsigned __int8)(v11 ^ v12) | v10) ) | |
6097 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1203
diff
changeset
|
6098 v14 = dword_720020_zvalues.data(); |
0 | 6099 v15 = 1; |
6100 do | |
6101 { | |
6102 for ( i = v15; i < v32; ++i ) | |
6103 { | |
6104 v17 = dword_720020_zvalues[i]; | |
6105 if ( v17 < *v14 ) | |
6106 { | |
6107 dword_720020_zvalues[i] = *v14; | |
6108 *v14 = v17; | |
6109 } | |
6110 } | |
6111 ++v15; | |
6112 ++v14; | |
6113 } | |
6114 while ( v15 - 1 < v32 ); | |
6115 v0 = v32; | |
6116 } | |
6117 v18 = 0; | |
6118 if ( v0 <= 0 ) | |
6119 return 0; | |
6120 while ( 1 ) | |
6121 { | |
6122 v19 = dword_720020_zvalues[v18] & 0xFFFF; | |
848 | 6123 v20 = PID_ID(dword_720020_zvalues[v18]); |
6124 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Item) | |
0 | 6125 { |
6126 if ( v20 >= 0x3E8 ) | |
6127 return 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6128 if ( !(pSpriteObjects[v20].uAttributes & 0x10) ) |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6129 { |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6130 v23 = pSpriteObjects[v20].stru_24.GetDisplayName(); |
0 | 6131 v24 = v23; |
1416 | 6132 GameUI_SetFooterString(v24); |
6133 return v19; | |
0 | 6134 } |
6135 } | |
1416 | 6136 else |
6137 { | |
6138 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Actor) | |
6139 { | |
6140 if ( v20 >= 0xBB8 ) | |
6141 return 0; | |
6142 v24 = (const char *)&pActors[v20]; | |
6143 GameUI_SetFooterString(v24); | |
6144 return v19; | |
6145 } | |
6146 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_Decoration) | |
6147 break; | |
6148 if ( PID_TYPE(dword_720020_zvalues[v18]) == OBJECT_BModel) | |
6149 { | |
6150 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
6151 { | |
6152 v21 = &pIndoor->pFaces[v20]; | |
6153 if ( BYTE3(v21->uAttributes) & 2 ) | |
6154 v22 = pIndoor->pFaceExtras[v21->uFaceExtraID].uEventID; | |
6155 } | |
6156 else | |
6157 { | |
6158 if ( (dword_720020_zvalues[v18] & 0xFFFFu) >> 9 < pOutdoor->uNumBModels ) | |
6159 { | |
6160 v22 = pOutdoor->pBModels[(dword_720020_zvalues[v18] & 0xFFFFu) >> 9].pFaces[v20 & 0x3F].sCogTriggeredID; | |
6161 if ( v22 ) | |
6162 { | |
6163 v23 = GetEventHintString(v22); | |
6164 if ( v23 ) | |
6165 { | |
6166 v24 = v23; | |
6167 GameUI_SetFooterString(v24); | |
6168 return v19; | |
6169 } | |
6170 } | |
6171 } | |
6172 } | |
6173 } | |
6174 } | |
6175 ++v18; | |
0 | 6176 if ( v18 >= v0 ) |
6177 return 0; | |
6178 } | |
6179 v25 = &pLevelDecorations[v20]; | |
6180 v26 = v25; | |
6181 v27 = v25->field_16_event_id; | |
6182 if ( v27 ) | |
6183 { | |
428 | 6184 v23 = GetEventHintString(v27); |
0 | 6185 if ( !v23 ) |
6186 return v19; | |
1416 | 6187 v24 = v23; |
6188 GameUI_SetFooterString(v24); | |
6189 return v19; | |
0 | 6190 } |
6191 if ( v25->IsInteractive() ) | |
6192 v24 = pNPCTopics[stru_5E4C90._decor_events[v26->_idx_in_stru123 - 75] + 379].pTopic; | |
6193 else | |
6194 v24 = pDecorationList->pDecorations[v26->uDecorationDescID].field_20; | |
994 | 6195 GameUI_SetFooterString(v24); |
0 | 6196 return v19; |
6197 } | |
6198 | |
6199 //----- (0046BDA8) -------------------------------------------------------- | |
1458 | 6200 unsigned int GetGravityStrength() |
0 | 6201 { |
6202 int v0; // eax@1 | |
6203 | |
6204 v0 = ~LOBYTE(pGame->uFlags2) & 8; | |
6205 LOBYTE(v0) = v0 | 2; | |
6206 return (unsigned int)v0 >> 1; | |
6207 } | |
6208 | |
6209 //----- (0046BDC0) -------------------------------------------------------- | |
1458 | 6210 void UpdateUserInput_and_MapSpecificStuff() |
0 | 6211 { |
6212 if ( dword_6BE364_game_settings_1 & 0x80 ) | |
6213 { | |
6214 LOBYTE(dword_6BE364_game_settings_1) = dword_6BE364_game_settings_1 & 0x7F; | |
6215 } | |
6216 else | |
6217 { | |
630 | 6218 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) |
0 | 6219 BLV_UpdateUserInputAndOther(); |
630 | 6220 else if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) |
0 | 6221 ODM_UpdateUserInputAndOther(); |
630 | 6222 |
783 | 6223 area_of_effect__damage_evaluate(); |
0 | 6224 } |
6225 } | |
6226 | |
6227 //----- (0046BFFA) -------------------------------------------------------- | |
6228 bool __fastcall _46BFFA_check_object_intercept(unsigned int uLayingItemID, signed int a2) | |
6229 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6230 //SpriteObject *v2; // esi@1 |
0 | 6231 ObjectDesc *v3; // ebx@1 |
6232 unsigned __int16 v5; // cx@9 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6233 //unsigned __int16 v6; // cx@14 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6234 //signed int v7; // edx@14 |
0 | 6235 unsigned int v8; // eax@19 |
6236 unsigned int v9; // edi@19 | |
6237 signed int v10; // ebx@19 | |
6238 char *v11; // edx@20 | |
6239 unsigned __int16 v12; // ax@23 | |
6240 int v13; // eax@27 | |
6241 unsigned int v14; // ebx@33 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6242 //unsigned __int16 v15; // ax@35 |
0 | 6243 int v16; // eax@36 |
6244 unsigned int v17; // eax@37 | |
6245 __int16 v18; // di@37 | |
6246 signed int v19; // edx@37 | |
6247 unsigned __int8 v20; // sf@37 | |
6248 char *v21; // ecx@38 | |
6249 unsigned __int16 v22; // ax@41 | |
6250 unsigned int v23; // eax@46 | |
6251 signed int v24; // ebx@46 | |
6252 char *v25; // edx@47 | |
6253 int v26; // edx@54 | |
6254 int v27; // edx@55 | |
6255 int v28; // edx@56 | |
6256 int v29; // edx@57 | |
6257 unsigned __int16 v30; // ax@60 | |
6258 unsigned int v31; // ecx@60 | |
6259 int v32; // edi@60 | |
6260 unsigned int v33; // eax@65 | |
6261 signed int v34; // edx@65 | |
6262 char *v35; // ecx@66 | |
6263 unsigned __int16 v36; // ax@69 | |
6264 int v37; // ST14_4@72 | |
6265 int v38; // eax@72 | |
6266 int v39; // ST10_4@72 | |
6267 int v40; // ST0C_4@72 | |
6268 int v41; // edx@76 | |
6269 int v42; // edx@77 | |
6270 int v43; // edx@78 | |
6271 unsigned __int8 v44; // zf@79 | |
6272 int v45; // edx@79 | |
6273 unsigned __int16 v46; // ax@80 | |
6274 int v47; // eax@81 | |
6275 int v48; // edx@87 | |
6276 int v49; // edx@88 | |
6277 int v50; // edx@89 | |
6278 unsigned int v51; // eax@93 | |
6279 signed int v52; // ebx@93 | |
6280 char *v53; // edx@94 | |
6281 unsigned __int16 v54; // ax@98 | |
6282 unsigned int v55; // ecx@98 | |
6283 signed int v56; // ebx@98 | |
6284 char *v57; // edx@99 | |
6285 unsigned __int16 v58; // ax@102 | |
6286 unsigned __int16 v59; // ax@107 | |
6287 unsigned int v60; // ecx@107 | |
6288 signed int v61; // ebx@107 | |
6289 char *v62; // edx@108 | |
6290 unsigned __int16 v63; // ax@111 | |
6291 int v64; // ebx@114 | |
6292 signed int v65; // eax@114 | |
6293 unsigned int v66; // edi@123 | |
6294 unsigned __int16 v67; // ax@124 | |
6295 unsigned int v68; // ecx@124 | |
6296 signed int v69; // ebx@124 | |
6297 char *v70; // edx@125 | |
6298 unsigned __int16 v71; // ax@128 | |
6299 unsigned int v72; // ebx@131 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6300 //int v73; // ST14_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6301 //int v74; // ST10_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6302 //int v75; // ebx@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6303 //int v76; // ST0C_4@132 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6304 //unsigned __int16 v77; // ax@132 |
0 | 6305 int v78; // eax@133 |
6306 char v79; // zf@139 | |
6307 unsigned int v80; // eax@140 | |
6308 signed int v81; // edx@140 | |
6309 char *v82; // ecx@141 | |
6310 unsigned __int16 v83; // ax@144 | |
6311 unsigned __int16 v84; // ax@151 | |
6312 unsigned int v85; // ecx@151 | |
6313 signed int v86; // ebx@151 | |
6314 char *v87; // edx@152 | |
6315 unsigned __int16 v88; // ax@155 | |
6316 unsigned int v89; // eax@158 | |
6317 int v90; // ST34_4@159 | |
6318 int v91; // eax@159 | |
6319 unsigned int v92; // eax@163 | |
6320 unsigned int v93; // eax@177 | |
6321 char *v94; // ecx@178 | |
6322 unsigned __int16 v95; // ax@181 | |
6323 unsigned __int16 v96; // ax@184 | |
6324 int v97; // eax@185 | |
6325 unsigned __int16 v98; // ax@191 | |
6326 unsigned int v99; // ecx@191 | |
6327 char v100; // ST18_1@198 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6328 //int v101; // ST14_4@198 |
0 | 6329 int v102; // eax@198 |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6330 //int v103; // ST10_4@198 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6331 //int v104; // ST0C_4@198 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6332 //unsigned __int16 v105; // ax@200 |
0 | 6333 signed int v106; // eax@208 |
6334 unsigned int v107; // edx@220 | |
6335 signed int v108; // ebx@225 | |
6336 unsigned int v109; // eax@234 | |
6337 signed int v110; // ebx@234 | |
6338 char *v111; // ecx@235 | |
6339 unsigned __int16 v112; // ax@238 | |
6340 unsigned __int16 v113; // si@241 | |
6341 int v114; // eax@242 | |
6342 int v115; // eax@245 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6343 //signed int v116; // eax@245 |
0 | 6344 unsigned __int16 v117; // ax@251 |
6345 unsigned int v118; // ecx@251 | |
6346 signed int v119; // ebx@251 | |
6347 char *v120; // edx@252 | |
6348 unsigned __int16 v121; // ax@255 | |
6349 unsigned int v122; // eax@260 | |
6350 char *v123; // edx@261 | |
6351 int v124; // eax@267 | |
6352 int v125; // [sp-20h] [bp-4Ch]@28 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6353 //signed int v126; // [sp-1Ch] [bp-48h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6354 //unsigned int v127; // [sp-18h] [bp-44h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6355 //signed int v128; // [sp-14h] [bp-40h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6356 //signed int v129; // [sp-10h] [bp-3Ch]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6357 //int v130; // [sp-Ch] [bp-38h]@27 |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6358 //unsigned int v131; // [sp-8h] [bp-34h]@27 |
0 | 6359 char v132; // [sp-8h] [bp-34h]@131 |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6360 //int v133; // [sp-4h] [bp-30h]@27 |
0 | 6361 char v134; // [sp-4h] [bp-30h]@131 |
6362 signed int v135; // [sp-4h] [bp-30h]@217 | |
6363 int v136; // [sp+Ch] [bp-20h]@208 | |
6364 int v137; // [sp+10h] [bp-1Ch]@208 | |
6365 signed int v138; // [sp+14h] [bp-18h]@207 | |
6366 signed int v139; // [sp+18h] [bp-14h]@208 | |
6367 char *v140; // [sp+1Ch] [bp-10h]@61 | |
6368 signed int v141; // [sp+1Ch] [bp-10h]@117 | |
6369 unsigned int v142; // [sp+1Ch] [bp-10h]@158 | |
6370 signed int v143; // [sp+1Ch] [bp-10h]@172 | |
6371 char *v144; // [sp+1Ch] [bp-10h]@192 | |
6372 signed int v145; // [sp+20h] [bp-Ch]@1 | |
6373 signed int v146; // [sp+20h] [bp-Ch]@60 | |
6374 int v147; // [sp+20h] [bp-Ch]@72 | |
6375 signed int v148; // [sp+20h] [bp-Ch]@158 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6376 //int v149; // [sp+20h] [bp-Ch]@198 |
0 | 6377 unsigned __int16 v150; // [sp+20h] [bp-Ch]@208 |
6378 int v151; // [sp+24h] [bp-8h]@1 | |
6379 signed int v152; // [sp+24h] [bp-8h]@208 | |
6380 unsigned int v153; // [sp+28h] [bp-4h]@1 | |
6381 | |
6382 v153 = uLayingItemID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6383 //v2 = &pSpriteObjects[uLayingItemID]; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6384 v3 = &pObjectList->pObjects[pSpriteObjects[uLayingItemID].uObjectDescID]; |
0 | 6385 v145 = a2; |
848 | 6386 v151 = PID_TYPE(a2); |
6387 if ( PID_TYPE(a2) == OBJECT_Actor) | |
6388 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6389 if ( PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) == OBJECT_Actor |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6390 && !pActors[PID_ID(pSpriteObjects[uLayingItemID].spell_caster_pid)].GetActorsRelation(&pActors[PID_ID(a2)]) ) |
0 | 6391 return 1; |
6392 } | |
6393 else | |
6394 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6395 if ( PID_TYPE(a2) == OBJECT_Player && PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) == OBJECT_Player) |
0 | 6396 return 1; |
6397 } | |
6398 if ( pParty->bTurnBasedModeOn == 1 ) | |
6399 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6400 v5 = pSpriteObjects[uLayingItemID].uAttributes; |
0 | 6401 if ( v5 & 4 ) |
6402 { | |
1450 | 6403 --pTurnEngine->pending_actions; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6404 pSpriteObjects[uLayingItemID].uAttributes = v5 & 0xFFFB; |
0 | 6405 } |
6406 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6407 if ( v151 == OBJECT_BModel && PID_TYPE(pSpriteObjects[uLayingItemID].spell_caster_pid) != OBJECT_Player) |
1280 | 6408 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6409 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
|
6410 BYTE2(pActors[PID_ID(pSpriteObjects[uLayingItemID].spell_caster_pid)].uAttributes) |= 4; |
1280 | 6411 } |
6412 | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6413 //v6 = v2->uType; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6414 //v7 = v2->uType; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6415 if ( pSpriteObjects[uLayingItemID].uType > 3060 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6416 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6417 if ( pSpriteObjects[uLayingItemID].uType > 6090 ) |
0 | 6418 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6419 if ( pSpriteObjects[uLayingItemID].uType > 8090 ) |
0 | 6420 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6421 if ( pSpriteObjects[uLayingItemID].uType == 9010 ) |
0 | 6422 goto LABEL_247; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6423 if ( pSpriteObjects[uLayingItemID].uType != 9030 ) |
0 | 6424 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6425 if ( pSpriteObjects[uLayingItemID].uType != 9040 ) |
0 | 6426 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6427 if ( pSpriteObjects[uLayingItemID].uType != 9080 ) |
0 | 6428 return 0; |
6429 LABEL_191: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6430 v98 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 6431 v99 = pObjectList->uNumObjects; |
6432 v32 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6433 pSpriteObjects[uLayingItemID].uType = v98; |
0 | 6434 v146 = 0; |
6435 if ( (signed int)v99 > 0 ) | |
6436 { | |
6437 v144 = (char *)&pObjectList->pObjects->uObjectID; | |
6438 while ( v98 != *(short *)v144 ) | |
6439 { | |
6440 ++v146; | |
6441 v144 += 56; | |
6442 if ( v146 >= (signed int)v99 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6443 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6444 pSpriteObjects[uLayingItemID].uObjectDescID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6445 if ( !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; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6464 } |
0 | 6465 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6466 pSpriteObjects[uLayingItemID].uObjectDescID = v146; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6467 if ( v146 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6468 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6469 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6470 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6471 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6472 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6473 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6474 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6475 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6476 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
|
6477 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6478 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
|
6479 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6480 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6481 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6482 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6483 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6484 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6485 return 0; |
0 | 6486 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6487 pSpriteObjects[uLayingItemID].uObjectDescID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6488 if ( !v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6489 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6490 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6491 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6492 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6493 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6494 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6495 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6496 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6497 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
|
6498 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6499 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
|
6500 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6501 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6502 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6503 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6504 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6505 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6506 return 0; |
0 | 6507 } |
6508 goto LABEL_93; | |
6509 } | |
6510 LABEL_172: | |
6511 v143 = 17030; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6512 switch ( pSpriteObjects[uLayingItemID].uType ) |
0 | 6513 { |
6514 case 0x1798u: | |
6515 v143 = 15040; | |
6516 break; | |
6517 case 0xFAAu: | |
6518 v143 = 13010; | |
6519 break; | |
6520 case 0x2346u: | |
6521 v143 = 18030; | |
6522 break; | |
6523 } | |
6524 v138 = 1; | |
141 | 6525 if ( v151 != OBJECT_Actor) |
0 | 6526 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6527 if ( pSpriteObjects[uLayingItemID].uType != 9030 || pSpriteObjects[uLayingItemID].spell_skill != 4 ) |
1416 | 6528 { |
6529 SpriteObject::OnInteraction(v153); | |
6530 return 0; | |
6531 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6532 pSpriteObjects[uLayingItemID]._46BEF1_apply_spells_aoe(); |
0 | 6533 LABEL_233: |
6534 if ( !v138 ) | |
6535 { | |
6536 v109 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6537 ++pSpriteObjects[uLayingItemID].uType; |
0 | 6538 v110 = 0; |
6539 if ( (signed int)v109 <= 0 ) | |
6540 { | |
6541 LABEL_238: | |
6542 v112 = 0; | |
6543 } | |
6544 else | |
6545 { | |
6546 v111 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6547 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v111 ) |
0 | 6548 { |
6549 ++v110; | |
6550 v111 += 56; | |
6551 if ( v110 >= (signed int)v109 ) | |
6552 goto LABEL_238; | |
6553 } | |
6554 v112 = v110; | |
6555 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6556 pSpriteObjects[uLayingItemID].uObjectDescID = v112; |
0 | 6557 if ( !v112 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6558 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6559 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6560 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6561 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6562 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6563 v113 = pSpriteObjects[uLayingItemID].uSoundID; |
0 | 6564 if ( v113 ) |
6565 v114 = (signed __int16)v113 + 4; | |
6566 else | |
6567 v114 = 0; | |
6568 v115 = 8 * v153; | |
862 | 6569 LOBYTE(v115) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6570 v125 = v143 + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6571 pAudioPlayer->PlaySound((SoundID)v125, v115, 0, -1, 0, v114, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6572 return 0; |
0 | 6573 } |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6574 SpriteObject::OnInteraction(v153); |
0 | 6575 return 0; |
6576 } | |
6577 v106 = v145; | |
6578 v150 = 0; | |
848 | 6579 v139 = PID_ID(v106); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6580 v137 = pSpriteObjects[uLayingItemID].spell_level; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6581 v152 = pSpriteObjects[uLayingItemID].spell_skill; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6582 v136 = pSpriteObjects[uLayingItemID].spell_id; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6583 if ( pSpriteObjects[uLayingItemID].uType == 9030 ) |
0 | 6584 { |
6585 v150 = 2; | |
6586 if ( v152 == 2 ) | |
6587 { | |
6588 v150 = 3; | |
6589 } | |
6590 else | |
6591 { | |
6592 if ( v152 >= 3 ) | |
6593 v150 = 4; | |
6594 } | |
6595 BYTE2(pActors[v139].uAttributes) |= 8u; | |
6596 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6597 if ( pSpriteObjects[uLayingItemID].uType == 6040 ) |
0 | 6598 { |
6599 v135 = 7; | |
6600 } | |
6601 else | |
6602 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6603 if ( pSpriteObjects[uLayingItemID].uType == 8030 ) |
0 | 6604 { |
6605 v135 = 9; | |
6606 } | |
6607 else | |
6608 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6609 if ( pSpriteObjects[uLayingItemID].uType != 9030 ) |
0 | 6610 { |
6611 v107 = v136; | |
6612 LABEL_222: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6613 if ( pSpriteObjects[uLayingItemID].uType != 9030 || v152 != 4 ) |
0 | 6614 { |
6615 v108 = v139; | |
6616 if ( stru_50C198.GetMagicalResistance(&pActors[v139], v107) ) | |
6617 { | |
6618 v138 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6619 if ( pSpriteObjects[uLayingItemID].uType == 8030 ) |
0 | 6620 { |
6621 pActors[v108].uAIState = Standing; | |
6622 pActors[v108].UpdateAnimation(); | |
6623 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6624 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
|
6625 v152, v150, 0, 0); |
0 | 6626 } |
6627 } | |
6628 else | |
6629 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6630 pSpriteObjects[uLayingItemID]._46BEF1_apply_spells_aoe(); |
0 | 6631 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6632 pSpriteObjects[uLayingItemID].spell_level = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6633 pSpriteObjects[uLayingItemID].spell_skill = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6634 pSpriteObjects[uLayingItemID].spell_id = 0; |
0 | 6635 goto LABEL_233; |
6636 } | |
6637 v135 = 10; | |
6638 } | |
6639 } | |
6640 v107 = v135; | |
6641 goto LABEL_222; | |
6642 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6643 if ( pSpriteObjects[uLayingItemID].uType == 8090 || pSpriteObjects[uLayingItemID].uType == 7030 || pSpriteObjects[uLayingItemID].uType == 7090 || pSpriteObjects[uLayingItemID].uType == 8000 ) |
0 | 6644 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6645 if ( pSpriteObjects[uLayingItemID].uType == 8010 ) |
0 | 6646 { |
6647 if ( v151 == 3 | |
848 | 6648 && MonsterStats::BelongsToSupertype(pActors[PID_ID(v145)].pMonsterInfo.uID, MONSTER_SUPERTYPE_UNDEAD) ) |
0 | 6649 sub_43A97E(v153, v145); |
6650 v93 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6651 ++pSpriteObjects[uLayingItemID].uType; |
0 | 6652 v9 = 0; |
6653 v52 = 0; | |
6654 if ( (signed int)v93 > 0 ) | |
6655 { | |
6656 v94 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6657 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v94 ) |
0 | 6658 { |
6659 ++v52; | |
6660 v94 += 56; | |
6661 if ( v52 >= (signed int)v93 ) | |
6662 goto LABEL_181; | |
6663 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6664 v95 = v52; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6665 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
1416 | 6666 if ( v95 == (short)v9 ) |
6667 SpriteObject::OnInteraction(v153); | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6668 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6669 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6670 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6671 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6672 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
1416 | 6673 if ( v96 == (short)v9 ) |
6674 v97 = 0; | |
6675 else | |
6676 v97 = (signed __int16)v96 + 4; | |
6677 v92 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6678 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6679 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6680 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6681 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6682 return 0; |
0 | 6683 } |
6684 goto LABEL_181; | |
6685 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6686 v79 = pSpriteObjects[uLayingItemID].uType == 8030; |
0 | 6687 } |
6688 else | |
6689 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6690 if ( pSpriteObjects[uLayingItemID].uType == 6090 ) |
0 | 6691 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6692 if ( pSpriteObjects[uLayingItemID].uType <= 4070 ) |
0 | 6693 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6694 if ( pSpriteObjects[uLayingItemID].uType != 4070 ) |
0 | 6695 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6696 v48 = pSpriteObjects[uLayingItemID].uType - 3090; |
0 | 6697 if ( v48 ) |
6698 { | |
6699 v49 = v48 - 2; | |
6700 if ( v49 ) | |
6701 { | |
6702 v50 = v49 - 908; | |
6703 if ( !v50 ) | |
6704 goto LABEL_93; | |
6705 v45 = v50 - 30; | |
6706 v44 = v45 == 0; | |
6707 goto LABEL_91; | |
6708 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6709 v54 = pSpriteObjects[uLayingItemID].uType - 1; |
0 | 6710 v55 = pObjectList->uNumObjects; |
6711 v9 = 0; | |
6712 v56 = 0; | |
6713 v44 = pObjectList->uNumObjects == 0; | |
6714 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6715 pSpriteObjects[uLayingItemID].uType = v54; |
0 | 6716 if ( v20 | v44 ) |
6717 { | |
6718 LABEL_102: | |
6719 v58 = 0; | |
6720 } | |
6721 else | |
6722 { | |
6723 v57 = (char *)&pObjectList->pObjects->uObjectID; | |
6724 while ( v54 != *(short *)v57 ) | |
6725 { | |
6726 ++v56; | |
6727 v57 += 56; | |
6728 if ( v56 >= (signed int)v55 ) | |
6729 goto LABEL_102; | |
6730 } | |
6731 v58 = v56; | |
6732 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6733 pSpriteObjects[uLayingItemID].uObjectDescID = v58; |
0 | 6734 if ( !v58 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6735 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6736 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6737 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6738 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6739 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 6740 sub_43A97E(v153, v145); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6741 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
0 | 6742 v16 = 0; |
6743 else | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6744 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6745 v124 = 8 * v153; |
0 | 6746 LOBYTE(v124) = v124 | 2; |
1456 | 6747 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6748 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6749 return 0; |
0 | 6750 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6751 v59 = pSpriteObjects[uLayingItemID].uType + 2; |
0 | 6752 v60 = pObjectList->uNumObjects; |
6753 v9 = 0; | |
6754 v61 = 0; | |
6755 v44 = pObjectList->uNumObjects == 0; | |
6756 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6757 pSpriteObjects[uLayingItemID].uType = v59; |
0 | 6758 if ( v20 | v44 ) |
6759 { | |
6760 LABEL_111: | |
6761 v63 = 0; | |
6762 } | |
6763 else | |
6764 { | |
6765 v62 = (char *)&pObjectList->pObjects->uObjectID; | |
6766 while ( v59 != *(short *)v62 ) | |
6767 { | |
6768 ++v61; | |
6769 v62 += 56; | |
6770 if ( v61 >= (signed int)v60 ) | |
6771 goto LABEL_111; | |
6772 } | |
6773 v63 = v61; | |
6774 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6775 pSpriteObjects[uLayingItemID].uObjectDescID = v63; |
0 | 6776 if ( !v63 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6777 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6778 v64 = pSpriteObjects[uLayingItemID].uFacing - stru_5C6E00->uIntegerDoublePi; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6779 v44 = pSpriteObjects[uLayingItemID].spell_skill == 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6780 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6781 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6782 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
0 | 6783 v65 = 7; |
6784 if ( v44 ) | |
6785 v65 = 9; | |
6786 if ( v65 > 0 ) | |
6787 { | |
6788 v141 = v65; | |
6789 do | |
6790 { | |
6791 v64 += (signed int)stru_5C6E00->uIntegerHalfPi >> 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6792 pSpriteObjects[uLayingItemID].Create(v64, 0, 1000, 0); |
0 | 6793 --v141; |
6794 } | |
6795 while ( v141 ); | |
6796 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6797 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6798 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6799 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6800 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6801 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6802 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6803 LOBYTE(v124) = v124 | 2; |
1456 | 6804 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6805 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6806 return 0; |
0 | 6807 } |
6808 if ( v151 == 6 || v151 == 5 || (v66 = 0, !v151) ) | |
6809 return 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6810 v67 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 6811 v68 = pObjectList->uNumObjects; |
6812 v69 = 0; | |
6813 v44 = pObjectList->uNumObjects == 0; | |
6814 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6815 pSpriteObjects[uLayingItemID].uType = v67; |
0 | 6816 if ( v20 | v44 ) |
6817 { | |
6818 LABEL_128: | |
6819 v71 = 0; | |
6820 } | |
6821 else | |
6822 { | |
6823 v70 = (char *)&pObjectList->pObjects->uObjectID; | |
6824 while ( v67 != *(short *)v70 ) | |
6825 { | |
6826 ++v69; | |
6827 v70 += 56; | |
6828 if ( v69 >= (signed int)v68 ) | |
6829 goto LABEL_128; | |
6830 } | |
6831 v71 = v69; | |
6832 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6833 pSpriteObjects[uLayingItemID].uObjectDescID = v71; |
0 | 6834 if ( !v71 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6835 SpriteObject::OnInteraction(v153); |
0 | 6836 v134 = 0; |
6837 v72 = v153; | |
6838 v132 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6839 pSpriteObjects[uLayingItemID].vVelocity.z = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6840 pSpriteObjects[uLayingItemID].vVelocity.y = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6841 pSpriteObjects[uLayingItemID].vVelocity.x = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6842 pSpriteObjects[uLayingItemID].uSpriteFrameID = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6843 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
|
6844 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v66 ) |
0 | 6845 v78 = 0; |
6846 else | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6847 v78 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6848 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6849 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
|
6850 return 0; |
0 | 6851 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6852 if ( pSpriteObjects[uLayingItemID].uType == 4090 ) |
0 | 6853 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6854 v84 = pSpriteObjects[uLayingItemID].uType + 2; |
0 | 6855 v85 = pObjectList->uNumObjects; |
6856 v9 = 0; | |
6857 v86 = 0; | |
6858 v44 = pObjectList->uNumObjects == 0; | |
6859 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6860 pSpriteObjects[uLayingItemID].uType = v84; |
0 | 6861 if ( v20 | v44 ) |
6862 { | |
6863 LABEL_155: | |
6864 v88 = 0; | |
6865 } | |
6866 else | |
6867 { | |
6868 v87 = (char *)&pObjectList->pObjects->uObjectID; | |
6869 while ( v84 != *(short *)v87 ) | |
6870 { | |
6871 ++v86; | |
6872 v87 += 56; | |
6873 if ( v86 >= (signed int)v85 ) | |
6874 goto LABEL_155; | |
6875 } | |
6876 v88 = v86; | |
6877 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6878 pSpriteObjects[uLayingItemID].uObjectDescID = v88; |
0 | 6879 if ( !v88 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6880 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6881 v89 = pSpriteObjects[uLayingItemID].uFacing - stru_5C6E00->uIntegerDoublePi; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6882 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6883 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6884 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
0 | 6885 v142 = v89; |
6886 v148 = 7; | |
6887 do | |
6888 { | |
6889 pRnd->SetRange(-128, 128); | |
6890 v90 = pRnd->GetInRange(); | |
6891 pRnd->SetRange(5, 500); | |
6892 v91 = pRnd->GetInRange(); | |
6893 v142 += (signed int)stru_5C6E00->uIntegerHalfPi >> 1; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6894 pSpriteObjects[uLayingItemID].Create(v90 + v142, 0, v91, 0); |
0 | 6895 --v148; |
6896 } | |
6897 while ( v148 ); | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6898 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6899 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6900 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6901 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6902 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6903 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6904 LOBYTE(v124) = v124 | 2; |
1456 | 6905 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id-1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6906 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v16, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6907 return 0; |
0 | 6908 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6909 if ( pSpriteObjects[uLayingItemID].uType == 4092 ) |
0 | 6910 { |
6911 v80 = pObjectList->uNumObjects; | |
6912 v66 = 0; | |
6913 v81 = 0; | |
6914 v44 = pObjectList->uNumObjects == 0; | |
6915 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6916 pSpriteObjects[uLayingItemID].uType = 4091; |
0 | 6917 if ( v20 | v44 ) |
6918 { | |
6919 LABEL_144: | |
6920 v83 = 0; | |
6921 } | |
6922 else | |
6923 { | |
6924 v82 = (char *)&pObjectList->pObjects->uObjectID; | |
6925 while ( *(short *)v82 != 4091 ) | |
6926 { | |
6927 ++v81; | |
6928 v82 += 56; | |
6929 if ( v81 >= (signed int)v80 ) | |
6930 goto LABEL_144; | |
6931 } | |
6932 v83 = v81; | |
6933 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6934 pSpriteObjects[uLayingItemID].uObjectDescID = v83; |
0 | 6935 if ( !v83 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6936 SpriteObject::OnInteraction(v153); |
0 | 6937 v134 = 0; |
6938 v72 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6939 v132 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6940 pSpriteObjects[uLayingItemID].vVelocity.z = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6941 pSpriteObjects[uLayingItemID].vVelocity.y = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6942 pSpriteObjects[uLayingItemID].vVelocity.x = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6943 pSpriteObjects[uLayingItemID].uSpriteFrameID = v66; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6944 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
|
6945 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v66 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6946 v78 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6947 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6948 v78 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6949 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6950 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
|
6951 return 0; |
0 | 6952 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6953 if ( pSpriteObjects[uLayingItemID].uType == 4100 || pSpriteObjects[uLayingItemID].uType == 6010 ) |
0 | 6954 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6955 v79 = pSpriteObjects[uLayingItemID].uType == 6040; |
0 | 6956 } |
6957 if ( !v79 ) | |
6958 return 0; | |
6959 goto LABEL_172; | |
6960 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6961 if ( pSpriteObjects[uLayingItemID].uType == 3060 ) |
0 | 6962 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6963 if ( pSpriteObjects[uLayingItemID].uType <= 555 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6964 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6965 if ( pSpriteObjects[uLayingItemID].uType == 555 ) |
0 | 6966 { |
6967 sub_43A97E(v153, v145); | |
6968 v23 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6969 ++pSpriteObjects[uLayingItemID].uType; |
0 | 6970 v18 = 0; |
6971 v24 = 0; | |
6972 if ( (signed int)v23 <= 0 ) | |
6973 { | |
6974 LABEL_41: | |
6975 v22 = 0; | |
6976 } | |
6977 else | |
6978 { | |
6979 v25 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6980 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v25 ) |
0 | 6981 { |
6982 ++v24; | |
6983 v25 += 56; | |
6984 if ( v24 >= (signed int)v23 ) | |
6985 goto LABEL_41; | |
6986 } | |
6987 v22 = v24; | |
6988 } | |
6989 LABEL_42: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6990 pSpriteObjects[uLayingItemID].uObjectDescID = v22; |
0 | 6991 if ( v22 == v18 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
6992 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6993 pSpriteObjects[uLayingItemID].vVelocity.z = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6994 pSpriteObjects[uLayingItemID].vVelocity.y = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6995 pSpriteObjects[uLayingItemID].vVelocity.x = v18; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
6996 pSpriteObjects[uLayingItemID].uSpriteFrameID = v18; |
0 | 6997 } |
6998 else | |
6999 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7000 switch ( pSpriteObjects[uLayingItemID].uType ) |
0 | 7001 { |
7002 case 500: | |
7003 case 505: | |
7004 case 510: | |
7005 case 515: | |
7006 case 520: | |
7007 case 525: | |
7008 case 530: | |
7009 case 535: | |
7010 case 540: | |
7011 sub_43A97E(v153, v145); | |
7012 v8 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7013 ++pSpriteObjects[uLayingItemID].uType; |
0 | 7014 v9 = 0; |
7015 v10 = 0; | |
7016 if ( (signed int)v8 <= 0 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7017 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7018 v12 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7019 goto LABEL_24; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7020 } |
0 | 7021 v11 = (char *)&pObjectList->pObjects->uObjectID; |
7022 break; | |
7023 case 545: | |
7024 case 550: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7025 if ( pSpriteObjects[uLayingItemID].stru_24.uItemID != 405 && pSpriteObjects[uLayingItemID].stru_24.uSpecEnchantmentType != 3 ) |
0 | 7026 { |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7027 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7028 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7029 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7030 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 7031 sub_43A97E(v153, v145); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7032 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7033 if ( pSpriteObjects[uLayingItemID].uSoundID == 0 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7034 v16 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7035 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7036 v16 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7037 v124 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7038 LOBYTE(v124) = v124 | 2; |
1456 | 7039 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7040 pAudioPlayer->PlaySound((SoundID)v125, v124, 0, -1, 0, v16, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7041 return 0; |
0 | 7042 } |
7043 v17 = pObjectList->uNumObjects; | |
7044 v18 = 0; | |
7045 v19 = 0; | |
7046 v44 = pObjectList->uNumObjects == 0; | |
7047 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7048 pSpriteObjects[uLayingItemID].uType = 600; |
0 | 7049 if ( v20 | v44 ) |
7050 goto LABEL_41; | |
7051 v21 = (char *)&pObjectList->pObjects->uObjectID; | |
7052 while ( *(short *)v21 != 600 ) | |
7053 { | |
7054 ++v19; | |
7055 v21 += 56; | |
7056 if ( v19 >= (signed int)v17 ) | |
7057 goto LABEL_41; | |
7058 } | |
7059 v22 = v19; | |
7060 goto LABEL_42; | |
7061 default: | |
7062 return 0; | |
7063 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7064 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v11 ) |
0 | 7065 { |
7066 ++v10; | |
7067 v11 += 56; | |
7068 if ( v10 >= (signed int)v8 ) | |
7069 { | |
7070 v12 = 0; | |
7071 goto LABEL_24; | |
7072 } | |
7073 } | |
7074 v12 = v10; | |
7075 LABEL_24: | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7076 pSpriteObjects[uLayingItemID].uObjectDescID = v12; |
0 | 7077 if ( !v12 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
7078 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7079 v44 = pSpriteObjects[uLayingItemID].uType == 555; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7080 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7081 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7082 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7083 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 7084 if ( !v44 ) |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7085 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7086 v13 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7087 LOBYTE(v13) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7088 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7089 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7090 } |
0 | 7091 } |
7092 return 0; | |
7093 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7094 if ( pSpriteObjects[uLayingItemID].uType > 1100 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7095 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7096 v41 = pSpriteObjects[uLayingItemID].uType - 2030; |
0 | 7097 if ( !v41 ) |
7098 goto LABEL_247; | |
7099 v42 = v41 - 30; | |
7100 if ( v42 ) | |
7101 { | |
7102 v43 = v42 - 40; | |
7103 if ( !v43 ) | |
7104 goto LABEL_59; | |
7105 v45 = v43 - 910; | |
7106 v44 = v45 == 0; | |
7107 LABEL_91: | |
7108 if ( !v44 && v45 != 20 ) | |
7109 return 0; | |
7110 } | |
7111 LABEL_93: | |
7112 sub_43A97E(v153, v145); | |
7113 v51 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7114 ++pSpriteObjects[uLayingItemID].uType; |
0 | 7115 v9 = 0; |
7116 v52 = 0; | |
7117 if ( (signed int)v51 > 0 ) | |
7118 { | |
7119 v53 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7120 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v53 ) |
0 | 7121 { |
7122 ++v52; | |
7123 v53 += 56; | |
7124 if ( v52 >= (signed int)v51 ) | |
7125 goto LABEL_181; | |
7126 } | |
1416 | 7127 v95 = v52; |
0 | 7128 } |
1416 | 7129 else |
7130 { | |
0 | 7131 LABEL_181: |
7132 v95 = 0; | |
1416 | 7133 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7134 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
0 | 7135 if ( v95 == (short)v9 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
7136 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7137 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7138 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7139 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7140 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7141 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
0 | 7142 if ( v96 == (short)v9 ) |
7143 v97 = 0; | |
7144 else | |
7145 v97 = (signed __int16)v96 + 4; | |
7146 v92 = v153; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7147 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7148 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7149 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7150 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7151 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7152 } |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7153 if ( pSpriteObjects[uLayingItemID].uType == 1100 ) |
0 | 7154 goto LABEL_93; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7155 v26 = pSpriteObjects[uLayingItemID].uType - 600; |
0 | 7156 if ( !v26 ) |
7157 { | |
7158 v33 = pObjectList->uNumObjects; | |
7159 v34 = 0; | |
7160 v44 = pObjectList->uNumObjects == 0; | |
7161 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7162 pSpriteObjects[uLayingItemID].uType = 601; |
0 | 7163 if ( v20 | v44 ) |
7164 { | |
7165 LABEL_69: | |
7166 v36 = 0; | |
7167 } | |
7168 else | |
7169 { | |
7170 v35 = (char *)&pObjectList->pObjects->uObjectID; | |
7171 while ( *(short *)v35 != 601 ) | |
7172 { | |
7173 ++v34; | |
7174 v35 += 56; | |
7175 if ( v34 >= (signed int)v33 ) | |
7176 goto LABEL_69; | |
7177 } | |
7178 v36 = v34; | |
7179 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7180 pSpriteObjects[uLayingItemID].uObjectDescID = v36; |
0 | 7181 if ( !v36 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
7182 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7183 v37 = pSpriteObjects[uLayingItemID].vPosition.z; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7184 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
0 | 7185 v38 = 8 * v153; |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7186 v39 = pSpriteObjects[uLayingItemID].vPosition.y; |
862 | 7187 LOBYTE(v38) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7188 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7189 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7190 v40 = pSpriteObjects[uLayingItemID].vPosition.x; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7191 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 7192 v147 = v38; |
7193 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
|
7194 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7195 trail_particle_generator.GenerateTrailParticles(pSpriteObjects[uLayingItemID].vPosition.x, pSpriteObjects[uLayingItemID].vPosition.y, pSpriteObjects[uLayingItemID].vPosition.z, v3->uParticleTrailColor); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7196 pAudioPlayer->PlaySound(SOUND_8, v147, 0, -1, 0, 0, 0, 0); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7197 return 0; |
0 | 7198 } |
7199 v27 = v26 - 410; | |
7200 if ( !v27 ) | |
7201 goto LABEL_93; | |
7202 v28 = v27 - 40; | |
7203 if ( !v28 ) | |
7204 goto LABEL_191; | |
7205 v29 = v28 - 10; | |
7206 if ( v29 ) | |
7207 { | |
7208 if ( v29 != 20 ) | |
7209 return 0; | |
7210 LABEL_59: | |
7211 if ( v151 != 3 ) | |
7212 { | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7213 v30 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 7214 v31 = pObjectList->uNumObjects; |
7215 v32 = 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7216 pSpriteObjects[uLayingItemID].uType = v30; |
0 | 7217 v146 = 0; |
7218 if ( (signed int)v31 > 0 ) | |
7219 { | |
7220 v140 = (char *)&pObjectList->pObjects->uObjectID; | |
7221 while ( v30 != *(short *)v140 ) | |
7222 { | |
7223 ++v146; | |
7224 v140 += 56; | |
7225 if ( v146 >= (signed int)v31 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7226 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7227 v46 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7228 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7229 if ( v46 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7230 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7231 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7232 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7233 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7234 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7235 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7236 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7237 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7238 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
|
7239 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7240 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
|
7241 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7242 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7243 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7244 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7245 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7246 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7247 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7248 } |
0 | 7249 } |
7250 v46 = v146; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7251 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
0 | 7252 if ( v46 == (short)v32 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
7253 SpriteObject::OnInteraction(v153); |
1429
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; |
0 | 7256 v102 = 8 * v153; |
862 | 7257 LOBYTE(v102) = PID(OBJECT_Item,v153); |
1429
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); |
1410
38df78aba732
deleted stru220.h and stru220 (bezier terrain stuff)
Nomad
parents:
1409
diff
changeset
|
7262 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
1429
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 ) |
0 | 7265 v47 = 0; |
7266 else | |
1429
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 } |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7272 v46 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7273 pSpriteObjects[uLayingItemID].uObjectDescID = v46; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7274 if ( v46 == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7275 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7276 v100 = pSpriteObjects[uLayingItemID].field_61; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7277 pSpriteObjects[uLayingItemID].uSpriteFrameID = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7278 v102 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7279 LOBYTE(v102) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7280 pSpriteObjects[uLayingItemID].vVelocity.x = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7281 pSpriteObjects[uLayingItemID].vVelocity.y = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7282 pSpriteObjects[uLayingItemID].vVelocity.z = v32; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7283 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
|
7284 if (v3->uFlags & OBJECT_DESC_TRIAL_PARTICLE) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7285 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
|
7286 if ( pSpriteObjects[uLayingItemID].uSoundID == (short)v32 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7287 v47 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7288 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7289 v47 = (signed __int16)pSpriteObjects[uLayingItemID].uSoundID + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7290 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7291 pAudioPlayer->PlaySound((SoundID)v125, v102, v32, -1, v32, v47, v32, v32); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7292 return 0; |
0 | 7293 } |
7294 return 1; | |
7295 } | |
7296 LABEL_247: | |
7297 if ( v151 == 6 || v151 == 5 || (v9 = 0, !v151) ) | |
7298 return 1; | |
7299 if ( v151 != 2 ) | |
7300 { | |
7301 sub_43A97E(v153, v145); | |
7302 v122 = pObjectList->uNumObjects; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7303 ++pSpriteObjects[uLayingItemID].uType; |
0 | 7304 v52 = 0; |
7305 if ( (signed int)v122 > 0 ) | |
7306 { | |
7307 v123 = (char *)&pObjectList->pObjects->uObjectID; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7308 while ( pSpriteObjects[uLayingItemID].uType != *(short *)v123 ) |
0 | 7309 { |
7310 ++v52; | |
7311 v123 += 56; | |
7312 if ( v52 >= (signed int)v122 ) | |
7313 goto LABEL_181; | |
7314 } | |
7315 v95 = v52; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7316 pSpriteObjects[uLayingItemID].uObjectDescID = v95; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7317 if ( v95 == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7318 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7319 v96 = pSpriteObjects[uLayingItemID].uSoundID; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7320 pSpriteObjects[uLayingItemID].vVelocity.z = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7321 pSpriteObjects[uLayingItemID].vVelocity.y = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7322 pSpriteObjects[uLayingItemID].vVelocity.x = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7323 pSpriteObjects[uLayingItemID].uSpriteFrameID = v9; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7324 if ( v96 == (short)v9 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7325 v97 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7326 else |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7327 v97 = (signed __int16)v96 + 4; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7328 v92 = v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7329 v124 = 8 * v92; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7330 LOBYTE(v124) = v124 | 2; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7331 v125 = word_4EE088_sound_ids[pSpriteObjects[uLayingItemID].spell_id - 1] + 1; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7332 pAudioPlayer->PlaySound((SoundID)v125, v124, v9, -1, v9, v97, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7333 return 0; |
0 | 7334 } |
7335 goto LABEL_181; | |
7336 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7337 v117 = pSpriteObjects[uLayingItemID].uType + 1; |
0 | 7338 v118 = pObjectList->uNumObjects; |
7339 v119 = 0; | |
7340 v44 = pObjectList->uNumObjects == 0; | |
7341 v20 = (pObjectList->uNumObjects & 0x80000000u) != 0; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7342 pSpriteObjects[uLayingItemID].uType = v117; |
0 | 7343 if ( v20 | v44 ) |
7344 { | |
7345 v121 = 0; | |
7346 } | |
7347 else | |
7348 { | |
7349 v120 = (char *)&pObjectList->pObjects->uObjectID; | |
7350 while ( v117 != *(short *)v120 ) | |
7351 { | |
7352 ++v119; | |
7353 v120 += 56; | |
7354 if ( v119 >= (signed int)v118 ) | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7355 { |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7356 v121 = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7357 pSpriteObjects[uLayingItemID].uObjectDescID = v121; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7358 if ( !v121 ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7359 SpriteObject::OnInteraction(v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7360 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7361 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7362 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7363 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7364 v13 = 8 * v153; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7365 LOBYTE(v13) = PID(OBJECT_Item,v153); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7366 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7367 return 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7368 } |
0 | 7369 } |
7370 v121 = v119; | |
7371 } | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7372 pSpriteObjects[uLayingItemID].uObjectDescID = v121; |
0 | 7373 if ( !v121 ) |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
496
diff
changeset
|
7374 SpriteObject::OnInteraction(v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7375 pSpriteObjects[uLayingItemID].vVelocity.z = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7376 pSpriteObjects[uLayingItemID].vVelocity.y = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7377 pSpriteObjects[uLayingItemID].vVelocity.x = 0; |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7378 pSpriteObjects[uLayingItemID].uSpriteFrameID = 0; |
0 | 7379 v13 = 8 * v153; |
862 | 7380 LOBYTE(v13) = PID(OBJECT_Item,v153); |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1417
diff
changeset
|
7381 pAudioPlayer->PlaySound(SOUND_8, v13, v9, -1, v9, v9, v9, v9); |
0 | 7382 return 0; |
7383 } |