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