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