Mercurial > mm7
annotate SaveLoad.cpp @ 568:6f7d936edc9b
SaveGame/LoadGame sorta works
author | Nomad |
---|---|
date | Tue, 05 Mar 2013 04:30:20 +0200 |
parents | 604d70894002 |
children | 353ff9ea11e6 |
rev | line source |
---|---|
0 | 1 #include <io.h> |
2 #include <direct.h> | |
3 #include <assert.h> | |
4 | |
5 #include "SaveLoad.h" | |
6 #include "NPC.h" | |
7 #include "Party.h" | |
8 #include "LOD.h" | |
9 #include "Outdoor.h" | |
10 #include "AudioPlayer.h" | |
11 #include "Actor.h" | |
12 #include "Chest.h" | |
13 #include "Time.h" | |
14 #include "GUIWindow.h" | |
15 #include "GUIFont.h" | |
16 #include "Overlays.h" | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
17 #include "SpriteObject.h" |
0 | 18 #include "Viewport.h" |
19 #include "stru123.h" | |
189 | 20 #include "texts.h" |
0 | 21 #include "Log.h" |
22 | |
23 #include "mm7_data.h" | |
24 | |
25 | |
26 | |
27 | |
28 | |
29 struct SavegameList *pSavegameList = new SavegameList; | |
30 unsigned int uNumSavegameFiles; | |
31 unsigned int pSavegameUsedSlots[45]; | |
32 struct RGBTexture pSavegameThumbnails[45]; | |
33 SavegameHeader pSavegameHeader[45]; | |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | |
40 | |
41 | |
42 | |
43 | |
44 //----- (0045EE8A) -------------------------------------------------------- | |
45 void __fastcall LoadGame(unsigned int uSlot) | |
46 { | |
47 bool v25; // esi@62 | |
48 bool v26; // eax@62 | |
49 int v30; // [sp-Ch] [bp-FCh]@65 | |
50 int v31; // [sp-8h] [bp-F8h]@4 | |
51 SavegameHeader header; // [sp+Ch] [bp-E4h]@23 | |
52 char Str[123]; // [sp+70h] [bp-80h]@25 | |
53 | |
336 | 54 dword_5B65C8_timers_count = 0; |
0 | 55 if (!pSavegameUsedSlots[uSlot]) |
56 { | |
57 pAudioPlayer->PlaySound(SOUND_27, 0, 0, -1, 0, 0, 0, 0); | |
58 Log::Warning(L"LoadGame: slot %u is empty", uSlot); | |
59 return; | |
60 } | |
61 | |
62 for (uint i = 1; i < 5; ++i) | |
63 for (uint j = 1; j < 6; ++j) | |
64 { | |
65 sprintf(pTmpBuf, "data\\lloyd%d%d.pcx", i, j); | |
66 remove(pTmpBuf); | |
67 } | |
68 | |
69 | |
203 | 70 if (SoundSetAction[24][0]) |
0 | 71 for (uint i = 0; i < 4; ++i) |
72 { | |
73 for (uint j = 0; j < pSoundList->uNumSounds; ++j) | |
203 | 74 if (pSoundList->pSounds[j].uSoundID == 2 * (SoundSetAction[24][0] + 50 * pParty->pPlayers[i].uVoiceID) + 4998) |
0 | 75 { |
76 pSoundList->_4A9DCD(j, 1); | |
77 break; | |
78 } | |
79 | |
80 for (uint j = 0; j < pSoundList->uNumSounds; ++j) | |
203 | 81 if (pSoundList->pSounds[j].uSoundID == 2 * (SoundSetAction[24][0] + 50 * pParty->pPlayers[i].uVoiceID) + 4999) |
0 | 82 { |
83 pSoundList->_4A9DCD(j, 1); | |
84 break; | |
85 } | |
86 } | |
87 | |
382 | 88 sprintf(pTmpBuf, "saves\\%s", pSavegameList->pFileList[uSlot].pSaveFileName); |
0 | 89 |
90 pNew_LOD->CloseWriteFile(); | |
91 if (!CopyFileA(pTmpBuf, "data\\new.lod", 0)) | |
92 int e = GetLastError(); | |
93 | |
94 pNew_LOD->LoadFile("data\\new.lod", 0); | |
95 auto *f = pNew_LOD->FindContainer("header.bin", 1); | |
96 if (!f) | |
97 { | |
98 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 100); | |
99 Log::Warning(L"%S", Str); | |
100 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:549", 0); | |
101 } | |
102 assert(sizeof(SavegameHeader) == 100); | |
103 fread(&header, sizeof(SavegameHeader), 1, f); | |
104 | |
105 f = pNew_LOD->FindContainer("party.bin", 1); | |
106 if (!f) | |
107 { | |
108 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 101); | |
109 Log::Warning(L"%S", Str); | |
110 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:559", 0); | |
111 } | |
112 if (sizeof(Party) != 0x16238) | |
113 Log::Warning(L"class Party: deserialization warning"); | |
114 fread(pParty, 0x16238u, 1, f); | |
115 | |
116 | |
117 f = pNew_LOD->FindContainer("clock.bin", 1); | |
118 if (!f) | |
119 { | |
120 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 102); | |
121 Log::Warning(L"%S", Str); | |
122 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:569", 0); | |
123 } | |
124 if (sizeof(Timer) != 0x28) | |
125 Log::Warning(L"class Timer: deserialization warning"); | |
126 fread(pEventTimer, 0x28u, 1u, f); | |
127 | |
128 f = pNew_LOD->FindContainer("overlay.bin", 1); | |
129 if (!f) | |
130 { | |
131 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 103); | |
132 Log::Warning(L"%S", Str); | |
133 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:579", 0); | |
134 } | |
135 if (sizeof(OtherOverlayList) != 0x3F0) | |
136 Log::Warning(L"class OtherOverlayList: deserialization warning"); | |
137 fread(pOtherOverlayList, 0x3F0, 1, f); | |
138 | |
139 f = pNew_LOD->FindContainer("npcdata.bin", 0); | |
140 if (!f) | |
141 { | |
142 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 104); | |
143 Log::Warning(L"%S", Str); | |
144 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:590", 0); | |
145 } | |
146 if (sizeof(pNPCStats->pNewNPCData) != 0x94BC) | |
147 Log::Warning(L"NPCStats: deserialization warning"); | |
148 fread(pNPCStats->pNewNPCData, 0x94BC, 1, f); | |
149 pNPCStats->_476C60(); | |
150 | |
151 f = pNew_LOD->FindContainer("npcgroup.bin", 0); | |
152 if (!f) | |
153 { | |
154 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 105); | |
155 Log::Warning(L"%S", Str); | |
156 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:600", 0); | |
157 } | |
158 if (sizeof(pNPCStats->pGroups_copy) != 0x66) | |
159 Log::Warning(L"NPCStats: deserialization warning"); | |
160 fread(pNPCStats->pGroups_copy, 0x66, 1, f); | |
161 | |
162 | |
163 uActiveCharacter = 0; | |
164 for (uint i = 0; i < 4; ++i) | |
165 if (pParty->pPlayers[i].CanAct()) | |
166 { | |
167 uActiveCharacter = i + 1; | |
168 break; | |
169 } | |
170 | |
171 for (uint i = 0; i < 4; ++i) | |
172 { | |
173 auto uQuickspell = pParty->pPlayers[i].uQuickSpell; | |
174 if (uQuickspell) | |
175 stru_AA1058[i]._494836(uQuickspell, i + 9 - 8); | |
176 | |
177 for (uint j = 0; j < 2; ++j) | |
178 { | |
179 uint uEquipIdx = pParty->pPlayers[i].pEquipment.pIndices[j]; | |
180 if (uEquipIdx) | |
181 { | |
182 auto uItemID = pParty->pPlayers[i].pInventoryItems[uEquipIdx - 1].uItemID; | |
183 if (pItemsTable->pItems[uItemID].uEquipType == 12) | |
184 { | |
185 __debugbreak(); | |
488 | 186 v31 = *((int *)&pSpellDatas[66].uNormalLevelRecovery + uItemID); |
0 | 187 stru_A750F8[i]._494836(v31, i + 9); |
188 } | |
189 } | |
190 } | |
191 } | |
192 | |
193 | |
194 pGUIWindow_CurrentMenu->Release(); | |
151 | 195 pCurrentScreen = SCREEN_GAME; |
0 | 196 |
197 viewparams->bRedrawGameUI = true; | |
198 | |
373 | 199 SetUserInterface(pParty->alignment, true); |
0 | 200 |
201 pEventTimer->Resume(); | |
202 pEventTimer->StopGameTime(); | |
203 | |
204 v25 = pGames_LOD->DoesContainerExist(header.pLocationName); | |
205 sprintf(pTmpBuf, "levels\\%s", header.pLocationName); | |
206 v26 = _access(pTmpBuf, 4) != -1; | |
207 if ( !v25 && !v26 ) | |
208 { | |
209 sprintf(pTmpBuf, "Unable to find: %s!", header.pLocationName); | |
210 Abortf(pTmpBuf); | |
211 } | |
212 | |
213 strcpy(pCurrentMapName, header.pLocationName); | |
214 dword_6BE364_game_settings_1 |= 0x2001; | |
215 | |
216 for (uint i = 0; i < uNumSavegameFiles; ++i) | |
217 pSavegameThumbnails[i].Release(); | |
218 | |
219 pIcons_LOD->_4114F2(); | |
328 | 220 pAudioPlayer->SetMusicVolume(pSoundVolumeLevels[uMusicVolimeMultiplier] * 64.0f); |
221 pAudioPlayer->SetMasterVolume(pSoundVolumeLevels[uSoundVolumeMultiplier] * 128.0f); | |
0 | 222 if (uTurnSpeed) |
223 pParty->sRotationY = uTurnSpeed * pParty->sRotationY / (signed int)uTurnSpeed; | |
224 MM7Initialization(); | |
225 bFlashQuestBook = false; | |
226 viewparams->bRedrawGameUI = true; | |
227 } | |
228 | |
229 | |
230 //----- (0045F469) -------------------------------------------------------- | |
231 int __fastcall SaveGame(int a1, __int16 *a2) | |
232 { | |
233 int result; // eax@1 | |
234 void *pScreenshot; // edi@5 | |
235 int v4; // eax@6 | |
236 int v5; // eax@6 | |
237 int v6; // eax@6 | |
238 const char *v7; // edi@8 | |
239 FILE *v8; // edi@24 | |
240 int v9; // edi@30 | |
241 void *v10; // esi@31 | |
242 void *v11; // esi@31 | |
243 void *v12; // esi@37 | |
244 void *v13; // esi@37 | |
245 void *v14; // esi@37 | |
246 void *v15; // esi@37 | |
247 void *v16; // esi@37 | |
248 int v17; // esi@37 | |
249 unsigned int v18; // ecx@38 | |
250 unsigned int v19; // esi@39 | |
79 | 251 BSPModel *v20; // edx@39 |
0 | 252 void *v21; // esi@41 |
253 void *v22; // esi@41 | |
254 BSPModel *v23; // eax@42 | |
255 signed int v24; // edi@42 | |
256 unsigned __int8 v25; // zf@43 | |
257 unsigned __int8 v26; // sf@43 | |
258 signed int v27; // edi@47 | |
259 void *v28; // esi@50 | |
260 void *v29; // esi@50 | |
261 void *v30; // esi@50 | |
262 void *v31; // esi@50 | |
263 int v32; // esi@51 | |
264 int v33; // eax@51 | |
265 DWORD v34; // eax@59 | |
266 //std::string v35; // [sp-18h] [bp-288h]@8 | |
267 const char *v36; // [sp-10h] [bp-280h]@6 | |
268 const char *v37; // [sp-Ch] [bp-27Ch]@6 | |
79 | 269 unsigned int *v38; // [sp-8h] [bp-278h]@8 |
0 | 270 CHAR Buffer; // [sp+Ch] [bp-264h]@59 |
79 | 271 char Dir[255]; // [sp+8Ch] [bp-1E4h]@51 |
272 char Drive[255]; // [sp+ACh] [bp-1C4h]@51 | |
0 | 273 SavegameHeader header; // [sp+CCh] [bp-1A4h]@10 |
274 //int v43; // [sp+CCh] [bp-1A4h]@10 | |
275 //char Dest[20]; // [sp+E0h] [bp-190h]@10 | |
276 //unsigned __int64 pTimePlayed; // [sp+F4h] [bp-17Ch]@10 | |
79 | 277 char Filename[255]; // [sp+130h] [bp-140h]@51 |
278 char Ext[255]; // [sp+150h] [bp-120h]@51 | |
0 | 279 char v48; // [sp+151h] [bp-11Fh]@51 |
280 char Source[32]; // [sp+170h] [bp-100h]@51 | |
281 char Str[120]; // [sp+190h] [bp-E0h]@8 | |
282 int v51; // [sp+208h] [bp-68h]@2 | |
283 int pPositionX; // [sp+20Ch] [bp-64h]@2 | |
284 int v53; // [sp+210h] [bp-60h]@2 | |
285 int v54; // [sp+214h] [bp-5Ch]@2 | |
286 int Src; // [sp+218h] [bp-58h]@30 | |
287 char v56; // [sp+21Ch] [bp-54h]@30 | |
288 char v57; // [sp+21Dh] [bp-53h]@30 | |
289 char v58; // [sp+21Eh] [bp-52h]@30 | |
290 char v59; // [sp+21Fh] [bp-51h]@30 | |
291 int v60; // [sp+220h] [bp-50h]@30 | |
292 int v61; // [sp+224h] [bp-4Ch]@30 | |
293 int v62; // [sp+228h] [bp-48h]@2 | |
294 LOD::Directory pDir; // [sp+22Ch] [bp-44h]@2 | |
295 size_t Size; // [sp+250h] [bp-20h]@26 | |
296 __int16 *v66; // [sp+254h] [bp-1Ch]@1 | |
297 void *DstBuf; // [sp+258h] [bp-18h]@2 | |
298 __int16 *v68; // [sp+25Ch] [bp-14h]@32 | |
299 unsigned int v69; // [sp+260h] [bp-10h]@23 | |
300 int v70; // [sp+264h] [bp-Ch]@22 | |
301 std::string *v71; // [sp+268h] [bp-8h]@8 | |
302 int a3; // [sp+26Fh] [bp-1h]@8 | |
303 | |
568 | 304 //v66 = a2; |
0 | 305 strcpy(byte_6BE3B0, pCurrentMapName); |
568 | 306 if (!_strcmpi(pCurrentMapName, "d05.blv")) // arena |
0 | 307 return false; |
568 | 308 |
0 | 309 DstBuf = malloc(0xF4240); |
310 pDir.Reset(); | |
311 pPositionX = pParty->vPosition.x; | |
312 v51 = pParty->vPosition.y; | |
313 v62 = pParty->vPosition.z; | |
314 v53 = pParty->sRotationY; | |
315 v54 = pParty->sRotationX; | |
316 pParty->vPosition.x = pParty->vPrevPosition.x; | |
317 pParty->vPosition.y = pParty->vPrevPosition.z; | |
318 pParty->vPosition.z = pParty->vPrevPosition.y; | |
319 pParty->uFallStartY = pParty->vPrevPosition.y; | |
320 pParty->sRotationY = pParty->sPrevRotationY; | |
321 pParty->sRotationX = pParty->sPrevRotationX; | |
322 if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
323 pIndoor->stru1.uLastVisitDay = pParty->uTimePlayed; | |
324 else | |
325 pOutdoor->uLastVisitDay = pParty->uTimePlayed; | |
326 pScreenshot = MakeScreenshot(150, 112); | |
327 strcpy(pDir.pFilename, "image.pcx"); | |
328 pRenderer->_49F5A2((int)pScreenshot, 150, 112, DstBuf, 1000000, (int)&pDir.uDataSize); | |
329 free(pScreenshot); | |
151 | 330 if (pCurrentScreen == SCREEN_SAVEGAME) |
0 | 331 { |
568 | 332 pRenderer->DrawTextureIndexed(8, 8, pIcons_LOD->GetTexture(uTextureID_loadsave)); |
333 pRenderer->DrawTextureIndexed(18, 141, pIcons_LOD->GetTexture(uTextureID_save_up)); | |
0 | 334 v4 = pFontSmallnum->AlignText_Center(0xBA, pGlobalTXT_LocalizationStrings[190]); |
335 pGUIWindow_CurrentMenu->DrawText(pFontSmallnum, v4 + 25, 219, 0, pGlobalTXT_LocalizationStrings[190], 0, 0, 0); //Ñîõðàíåíèå | |
568 | 336 v5 = pFontSmallnum->AlignText_Center(0xBA, pSavegameHeader[uLoadGameUI_SelectedSlot].pName); |
337 pGUIWindow_CurrentMenu->DrawTextInRect(pFontSmallnum, v5 + 25, 0x103u, 0, pSavegameHeader[uLoadGameUI_SelectedSlot].pName, 185, 0); | |
0 | 338 v6 = pFontSmallnum->AlignText_Center(0xBA, pGlobalTXT_LocalizationStrings[165]); |
339 pGUIWindow_CurrentMenu->DrawText(pFontSmallnum, v6 + 25, 299, 0, pGlobalTXT_LocalizationStrings[165], 0, 0, 0); //Ïîæàëóéñòà, ïîäîæäèòå | |
340 pRenderer->Present(); | |
568 | 341 } |
342 | |
0 | 343 if (pNew_LOD->Write(&pDir, DstBuf, 0)) |
344 { | |
345 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 200); //Ñîõðàíåííàÿ èãðà ïîâðåæäåíà! Code=%d | |
346 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:773", 0); | |
347 } | |
348 | |
349 assert(sizeof(SavegameHeader) == 100); | |
350 memset(header.pName, 0, 20); | |
351 memset(header.pLocationName, 0, 20); | |
352 memset(header.field_30, 0, 52); | |
353 strcpy(header.pLocationName, pCurrentMapName); | |
354 header.uWordTime = pParty->uTimePlayed; | |
355 strcpy(pDir.pFilename, "header.bin"); | |
356 pDir.uDataSize = sizeof(SavegameHeader); | |
357 if (pNew_LOD->Write(&pDir, &header, 0)) | |
358 { | |
359 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 201); | |
360 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:784", 0); | |
361 } | |
362 strcpy(pDir.pFilename, "party.bin"); | |
363 pDir.uDataSize = 90680; | |
364 if ( pNew_LOD->Write(&pDir, pParty, 0) ) | |
365 { | |
366 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 202); | |
367 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:793", 0); | |
368 } | |
369 strcpy(pDir.pFilename, "clock.bin"); | |
370 pDir.uDataSize = 40; | |
371 if ( pNew_LOD->Write(&pDir, pEventTimer, 0) ) | |
372 { | |
373 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 203); | |
374 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:802", 0); | |
375 } | |
376 strcpy(pDir.pFilename, "overlay.bin"); | |
377 pDir.uDataSize = 1008; | |
378 if ( pNew_LOD->Write(&pDir, pOtherOverlayList, 0) ) | |
379 { | |
380 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 204); | |
381 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:811", 0); | |
382 } | |
383 strcpy(pDir.pFilename, "npcdata.bin"); | |
568 | 384 pDir.uDataSize = 501 * sizeof(NPCData); |
385 assert(pDir.uDataSize == 38076); | |
0 | 386 if ( pNew_LOD->Write(&pDir, pNPCStats->pNewNPCData, 0) ) |
387 { | |
388 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 205); | |
389 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:820", 0); | |
390 } | |
391 strcpy(pDir.pFilename, "npcgroup.bin"); | |
392 pDir.uDataSize = 102; | |
393 if ( pNew_LOD->Write(&pDir, pNPCStats->pGroups_copy, 0) ) | |
394 { | |
395 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 206); | |
396 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:829", 0); | |
397 } | |
398 for (int i = 1; i <= 4; ++i) // 4 - players | |
399 { | |
400 for (int j = 1; j <= 5; ++j) // 5 - images | |
401 { | |
402 sprintf(Str, "data\\lloyd%d%d.pcx", i, j); | |
403 v8 = fopen(Str, "rb"); | |
404 if ( v8 ) | |
405 { | |
406 __debugbreak(); | |
407 sprintf(Str, "lloyd%d%d.pcx", i, j); | |
408 fseek(v8, 0, 2); | |
409 pDir.uDataSize = ftell(v8); | |
410 rewind(v8); | |
411 fread(DstBuf, pDir.uDataSize, 1, v8); | |
412 strcpy((char *)&pDir, Str); | |
413 fclose(v8); | |
414 remove(Str); | |
415 if ( pNew_LOD->Write(&pDir, DstBuf, 0) ) | |
416 { | |
417 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 207); | |
418 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:857", 0); | |
419 Size = 5080748; | |
420 } | |
421 } | |
422 } | |
423 } | |
424 if ( !a2 ) | |
425 { | |
79 | 426 //__debugbreak(); |
0 | 427 sub_42FA22_mess_with_laying_item_list(); |
428 v9 = (int)malloc(0xF4240); | |
429 v71 = (std::string *)v9; | |
430 Src = 91969; | |
431 v56 = 109; | |
432 v57 = 118; | |
433 v58 = 105; | |
434 v59 = 105; | |
435 v60 = 0; | |
436 v61 = 0; | |
437 memcpy((void *)v9, &Src, 0x10); | |
438 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
439 { | |
440 __debugbreak(); | |
441 pIndoor->dlv.uNumFacesInBModels = pIndoor->uNumFaces; | |
442 pIndoor->dlv.uNumBModels = 0; | |
443 pIndoor->dlv.uNumDecorations = uNumLevelDecorations; | |
444 memcpy(DstBuf, &pIndoor->dlv, 0x28); | |
445 v10 = (char *)DstBuf + 40; | |
446 memcpy(v10, pIndoor->_visible_outlines, 0x36B); | |
447 v11 = (char *)v10 + 875; | |
448 if ( (signed int)pIndoor->uNumFaces > 0 ) | |
449 { | |
450 v68 = 0; | |
451 for (int i = 0; i <= (signed int)pIndoor->uNumFaces; ++i) | |
452 { | |
79 | 453 v38 = &pIndoor->pFaces[i].uAttributes;//(char *)v68 + (unsigned int)pIndoor->pFaces + 44; |
0 | 454 memcpy(v11, v38, 4); |
455 v68 += 48; | |
456 v11 = (char *)v11 + 4; | |
457 } | |
458 } | |
459 if ( (signed int)uNumLevelDecorations > 0 ) | |
460 { | |
461 v68 = &pLevelDecorations[0].field_2; | |
462 for (int i = 0; i <= (signed int)uNumLevelDecorations; ++i) | |
463 { | |
464 memcpy(v11, v68, 2); | |
465 v68 += 16; | |
466 v11 = (char *)v11 + 2; | |
467 } | |
468 } | |
469 memcpy(v11, &uNumActors, 4); | |
470 v12 = (char *)v11 + 4; | |
471 memcpy(v12, pActors, 836 * uNumActors); | |
472 v13 = (char *)v12 + 836 * uNumActors; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
473 memcpy(v13, &uNumSpriteObjects, 4); |
0 | 474 v13 = (char *)v13 + 4; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
475 memcpy(v13, pSpriteObjects, 112 * uNumSpriteObjects); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
476 v14 = (char *)v13 + 112 * uNumSpriteObjects; |
0 | 477 memcpy(v14, &uNumChests, 4); |
478 v14 = (char *)v14 + 4; | |
479 memcpy(v14, pChests, 5324 * uNumChests); | |
480 v15 = (char *)v14 + 5324 * uNumChests; | |
481 memcpy(v15, pIndoor->pDoors, 0x3E80); | |
482 v15 = (char *)v15 + 16000; | |
483 memcpy(v15, pIndoor->ptr_0002B4_doors_ddata, pIndoor->blv.uDoors_ddata_Size); | |
484 v16 = (char *)v15 + pIndoor->blv.uDoors_ddata_Size; | |
485 memcpy(v16, &stru_5E4C90, 0xC8); | |
486 v17 = (int)((char *)v16 + 200); | |
487 memcpy((void *)v17, &pIndoor->stru1, 0x38); | |
488 } | |
489 else | |
490 { | |
491 v18 = 0; | |
492 pOutdoor->ddm.uNumFacesInBModels = 0; | |
493 if ( (signed int)pOutdoor->uNumBModels > 0 ) | |
494 { | |
495 v19 = pOutdoor->uNumBModels; | |
79 | 496 v20 = &pOutdoor->pBModels[0]; |
0 | 497 do |
498 { | |
79 | 499 v18 += v20->uNumFaces; |
500 ++v20; | |
0 | 501 --v19; |
502 pOutdoor->ddm.uNumFacesInBModels = v18; | |
503 } | |
504 while ( v19 ); | |
505 } | |
506 v21 = DstBuf; | |
507 pOutdoor->ddm.uNumBModels = pOutdoor->uNumBModels; | |
508 pOutdoor->ddm.uNumDecorations = uNumLevelDecorations; | |
509 memcpy(DstBuf, &pOutdoor->ddm, 0x28); | |
510 v21 = (char *)v21 + 40; | |
511 memcpy(v21, pOutdoor->array_528, 0x3C8); | |
512 v21 = (char *)v21 + 968; | |
513 memcpy(v21, pOutdoor->array_8F0, 0x3C8); | |
514 v22 = (char *)v21 + 968; | |
515 if ( (signed int)pOutdoor->uNumBModels > 0 ) | |
516 { | |
517 v23 = pOutdoor->pBModels; | |
518 v24 = 76; | |
79 | 519 for (int i = 0; i < (signed int)pOutdoor->uNumBModels ; ++i) |
0 | 520 { |
79 | 521 v25 = v23[i].uNumFaces == 0;//*(int *)&v23->pModelName[v24] == 0; |
522 v26 = v23[i].uNumFaces < 0;//*(int *)&v23->pModelName[v24] < 0; | |
0 | 523 if ( !(v26 | v25) ) |
524 { | |
525 v68 = 0; | |
79 | 526 for (int j = 0; j < pOutdoor->pBModels[i].uNumFaces;++j)//*(int *)&pOutdoor->pBModels->pModelName[v24]; ++j) |
0 | 527 { |
79 | 528 v38 = &(v23[i].pFaces[j].uAttributes); //(char *)v68 + *(int *)&v23->pModelName[v24 + 8] + 28; |
0 | 529 memcpy(v22, v38, 4); |
530 v23 = pOutdoor->pBModels; | |
531 v68 += 154; | |
532 v22 = (char *)v22 + 4; | |
533 } | |
534 } | |
535 v24 += 188; | |
536 } | |
537 } | |
538 if ( (signed int)uNumLevelDecorations > 0 ) | |
539 { | |
540 v66 = &pLevelDecorations[0].field_2; | |
568 | 541 for (int i = 0; i <= (signed int)uNumLevelDecorations; ++i) |
0 | 542 { |
543 memcpy(v22, v66, 2); | |
544 v66 += 16; | |
545 v22 = (char *)v22 + 2; | |
546 } | |
547 } | |
548 memcpy(v22, &uNumActors, 4); | |
549 v28 = (char *)v22 + 4; | |
550 memcpy(v28, pActors, 836 * uNumActors); | |
551 v29 = (char *)v28 + 836 * uNumActors; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
552 memcpy(v29, &uNumSpriteObjects, 4); |
0 | 553 v29 = (char *)v29 + 4; |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
554 memcpy(v29, pSpriteObjects, 112 * uNumSpriteObjects); |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
555 v30 = (char *)v29 + 112 * uNumSpriteObjects; |
0 | 556 memcpy(v30, &uNumChests, 4); |
557 v30 = (char *)v30 + 4; | |
558 memcpy(v30, pChests, 5324 * uNumChests); | |
559 v31 = (char *)v30 + 5324 * uNumChests; | |
560 memcpy(v31, &stru_5E4C90, 0xC8); | |
561 v17 = (int)((char *)v31 + 200); | |
562 memcpy((void *)v17, &pOutdoor->uLastVisitDay, 0x38); | |
563 v9 = (int)v71; | |
564 } | |
565 v32 = v17 + 56; | |
566 strcpy(Source, pCurrentMapName); | |
79 | 567 _splitpath(Source, Drive, Dir, Filename, Ext); |
0 | 568 v48 = 100; |
569 Size = v32 - (int)DstBuf; | |
570 v69 = 999984; | |
571 LOBYTE(v33) = zlib::MemZip((char *)v9 + 16, (unsigned int *)&v69, DstBuf, v32 - (int)DstBuf); | |
572 if ( v33 || (signed int)v69 > (signed int)Size ) | |
573 { | |
574 memcpy((void *)(v9 + 16), DstBuf, Size); | |
575 v69 = Size; | |
576 } | |
577 v69 += 16; | |
578 memcpy((void *)(v9 + 8), &v69, 4); | |
579 memcpy((void *)(v9 + 12), &Size, 4); | |
580 sprintf(Source, "%s%s", &Filename, &Ext); | |
581 strcpy((char *)&pDir, Source); | |
582 pDir.uDataSize = v69; | |
583 if ( pNew_LOD->Write(&pDir, (const void *)v9, 0) ) | |
584 { | |
585 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 208); | |
586 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:1071", 0); | |
587 } | |
588 free((void *)v9); | |
589 } | |
590 free(DstBuf); | |
591 if ( a1 ) | |
592 { | |
593 if ( !CopyFileA("data\\new.lod", "saves\\autosave.mm7", 0) ) | |
594 { | |
595 v34 = GetLastError(); | |
596 FormatMessageA(0x1000, 0, v34, 0x400, &Buffer, 0x80, 0); | |
597 sprintf(Str, pGlobalTXT_LocalizationStrings[612], 300); | |
598 MessageBoxA(nullptr, Str, "E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\LoadSave.cpp:1097", 0); | |
599 } | |
600 } | |
601 pParty->vPosition.x = pPositionX; | |
602 pParty->vPosition.y = v51; | |
603 pParty->vPosition.z = v62; | |
604 pParty->uFallStartY = v62; | |
605 pParty->sRotationY = v53; | |
606 result = v54; | |
607 pParty->sRotationX = v54; | |
608 return result; | |
609 } | |
610 | |
611 | |
612 //----- (00460078) -------------------------------------------------------- | |
613 void __fastcall DoSavegame(unsigned int uSlot) | |
614 { | |
568 | 615 //unsigned int v1; // esi@1 |
616 //int v2; // esi@2 | |
557 | 617 //RGBTexture *v3; // ebx@3 |
0 | 618 int bNotArena; // [sp+2Ch] [bp-8h]@1 |
568 | 619 //unsigned int v6; // [sp+30h] [bp-4h]@1 |
0 | 620 |
165 | 621 //__debugbreak(); |
0 | 622 |
568 | 623 //v1 = uSlot; |
624 //v6 = uSlot; | |
0 | 625 bNotArena = _strcmpi(pCurrentMapName, "d05.blv"); |
626 if ( bNotArena ) | |
627 { | |
628 LOD::Directory pDir; // [sp+Ch] [bp-28h]@2 | |
629 SaveGame(0, 0); | |
568 | 630 //v2 = 100 * v1; |
631 strcpy(pSavegameHeader[uSlot].pLocationName, pCurrentMapName); | |
632 pSavegameHeader[uSlot].uWordTime = pParty->uTimePlayed; | |
633 strcpy(pDir.pFilename, "header.bin"); | |
0 | 634 pDir.uDataSize = 100; |
568 | 635 pNew_LOD->Write(&pDir, &pSavegameHeader[uSlot], 0); |
636 sprintf(pTmpBuf, "saves\\save%03d.mm7", uSlot); | |
0 | 637 pNew_LOD->CloseWriteFile(); |
638 CopyFileA("data\\new.lod", pTmpBuf, 0); | |
639 } | |
640 GUI_UpdateWindows(); | |
641 pGUIWindow_CurrentMenu->Release(); | |
151 | 642 pCurrentScreen = SCREEN_GAME; |
557 | 643 //v3 = pSavegameThumbnails; |
0 | 644 viewparams->bRedrawGameUI = 1; |
568 | 645 for (uint i = 0; i < 45; i++) |
557 | 646 pSavegameThumbnails[i].Release(); |
647 //while ( (signed int)v3 < (signed int)&unk_6A0758 ); | |
0 | 648 if ( bNotArena ) |
649 pNew_LOD->_4621A7(); | |
650 else | |
651 ShowStatusBarString(pGlobalTXT_LocalizationStrings[583], 2u);// "No saving in the Arena" | |
652 pIcons_LOD->_4355F7(); | |
653 pEventTimer->Resume(); | |
654 ShowStatusBarString(pGlobalTXT_LocalizationStrings[656], 2u);// "Game Saved!" | |
568 | 655 viewparams->bRedrawGameUI = true; |
0 | 656 } |
657 // 4E28F8: using guessed type int pCurrentScreen; | |
658 | |
659 | |
660 | |
661 | |
662 | |
663 | |
664 | |
665 | |
666 | |
667 | |
668 | |
669 //----- (0045E297) -------------------------------------------------------- | |
670 void SavegameList::Initialize(unsigned int bHideEmptySlots) | |
671 { | |
382 | 672 memset(pSavegameList, 0, 0x3138); |
673 // Reset(); | |
4 | 674 uNumSavegameFiles = 0; |
0 | 675 |
676 _chdir("saves"); | |
677 { | |
4 | 678 if (!bHideEmptySlots && _access(pGlobalTXT_LocalizationStrings[613], 0) != -1 ) // AutoSave.MM7 |
382 | 679 strcpy(pSavegameList->pFileList[uNumSavegameFiles++].pSaveFileName, pGlobalTXT_LocalizationStrings[613]); |
0 | 680 |
681 for (uint i = 0; i < 40; ++i) | |
682 { | |
683 sprintf(pTmpBuf, "save%03d.mm7", i); | |
684 if (_access(pTmpBuf, 0) == -1) | |
685 continue; | |
686 | |
687 uint idx = i; | |
688 if (!bHideEmptySlots) | |
689 idx = uNumSavegameFiles; | |
382 | 690 strcpy(pSavegameList->pFileList[idx].pSaveFileName, pTmpBuf); |
0 | 691 |
692 ++uNumSavegameFiles; | |
693 } | |
694 } | |
695 _chdir(".."); | |
696 } |