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