diff options
author | Eugene Sandulenko | 2019-07-21 20:38:56 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:26 +0200 |
commit | d4f927f338d4d221de59a04c85f9286a0a505528 (patch) | |
tree | 8f6a464fc456ae95d09e2bbcbef20b98f5cbbd42 | |
parent | cfe228d7bbb04159da660ceebb7ef8583dcfe405 (diff) | |
download | scummvm-rg350-d4f927f338d4d221de59a04c85f9286a0a505528.tar.gz scummvm-rg350-d4f927f338d4d221de59a04c85f9286a0a505528.tar.bz2 scummvm-rg350-d4f927f338d4d221de59a04c85f9286a0a505528.zip |
HDB: Put both data and Lua saves into single file
-rw-r--r-- | engines/hdb/hdb.cpp | 3 | ||||
-rw-r--r-- | engines/hdb/hdb.h | 3 | ||||
-rw-r--r-- | engines/hdb/lua-script.cpp | 51 | ||||
-rw-r--r-- | engines/hdb/lua-script.h | 4 | ||||
-rw-r--r-- | engines/hdb/saveload.cpp | 5 |
5 files changed, 28 insertions, 38 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 445c5d86b7..e8e75d19bf 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -64,6 +64,9 @@ HDBGame::HDBGame(OSystem *syst, const ADGameDescription *gameDesc) : Engine(syst _timePlayed = _timeSlice = _prevTimeSlice = _timeSeconds = _tiempo = 0; + _currentOutSaveFile = NULL; + _currentInSaveFile = NULL; + _progressActive = false; _monkeystone7 = STARS_MONKEYSTONE_7_FAKE; diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h index 3b42c262bd..cea8ab3548 100644 --- a/engines/hdb/hdb.h +++ b/engines/hdb/hdb.h @@ -305,6 +305,9 @@ public: // FPS Variables Common::Array<uint32> _frames; + Common::OutSaveFile *_currentOutSaveFile; + Common::InSaveFile *_currentInSaveFile; + private: uint32 _timePlayed; diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index b61276d2df..cf0ef69f8a 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -187,7 +187,7 @@ void LuaScript::purgeGlobals() { _globals.clear(); } -void LuaScript::save(Common::OutSaveFile *out, int slot) { +void LuaScript::save(Common::OutSaveFile *out) { out->writeUint32LE(_globals.size()); // Save Globals @@ -198,15 +198,18 @@ void LuaScript::save(Common::OutSaveFile *out, int slot) { out->write(_globals[i]->string, 32); } - Common::String saveLuaName = g_hdb->genSaveFileName(slot, true); + g_hdb->_currentOutSaveFile = out; + lua_printstack(_state); lua_getglobal(_state, "SaveState"); - lua_pushstring(_state, saveLuaName.c_str()); + lua_pushstring(_state, "tempSave"); // the save file will be ignored lua_call(_state, 1, 0); + + g_hdb->_currentOutSaveFile = NULL; } -void LuaScript::loadSaveFile(Common::InSaveFile *in, const char *fName) { +void LuaScript::loadSaveFile(Common::InSaveFile *in) { // Clear out all globals _globals.clear(); @@ -223,10 +226,14 @@ void LuaScript::loadSaveFile(Common::InSaveFile *in, const char *fName) { _globals.push_back(g); } + g_hdb->_currentInSaveFile = in; + lua_getglobal(_state, "LoadState"); - lua_pushstring(_state, fName); + lua_pushstring(_state, "tempSave"); // it will be ignored lua_call(_state, 1, 0); + + g_hdb->_currentInSaveFile = NULL; } void LuaScript::setLuaGlobalValue(const char *name, int value) { @@ -1342,28 +1349,17 @@ static int playVoice(lua_State *L) { } static int openFile(lua_State *L) { - - const char *fName = lua_tostring(L, 1); - const char *mode = lua_tostring(L, 2); - g_hdb->_lua->checkParameters("openFile", 2); - lua_pop(L, 2); + lua_pop(L, 2); // drop 2 parameters - if (!scumm_stricmp(mode, "wt")) { - Common::OutSaveFile *outLua = g_system->getSavefileManager()->openForSaving(fName); - if (!outLua) - error("Cannot open %s", fName); - lua_pushlightuserdata(L, outLua); - } else { - error("LUA openFile: Unsupported mode '%s'", mode); - } + lua_pushlightuserdata(L, 0); return 1; } static int write(lua_State *L) { - Common::OutSaveFile *out = (Common::OutSaveFile *)lua_topointer(L, 1); + Common::OutSaveFile *out = g_hdb->_currentOutSaveFile; const char *data = lua_tostring(L, 2); g_hdb->_lua->checkParameters("write", 2); @@ -1376,30 +1372,21 @@ static int write(lua_State *L) { } static int closeFile(lua_State *L) { - Common::OutSaveFile *out = (Common::OutSaveFile *)lua_topointer(L, 1); - g_hdb->_lua->checkParameters("closeFile", 1); lua_pop(L, 1); - out->finalize(); - - delete out; + // No op return 0; } static int dofile(lua_State *L) { - const char *fName = lua_tostring(L, 1); - g_hdb->_lua->checkParameters("dofile", 1); lua_pop(L, 1); - Common::InSaveFile *in = g_system->getSavefileManager()->openForLoading(fName); - - if (!in) - error("Lua dofile: cannot open file '%s'", fName); + Common::InSaveFile *in = g_hdb->_currentInSaveFile; int length = in->size(); char *chunk = new char[length + 1]; @@ -1410,9 +1397,7 @@ static int dofile(lua_State *L) { Common::String chunkString(chunk); delete[] chunk; - delete in; - - if (!g_hdb->_lua->executeChunk(chunkString, fName)) { + if (!g_hdb->_lua->executeChunk(chunkString, "saveState")) { return 0; } diff --git a/engines/hdb/lua-script.h b/engines/hdb/lua-script.h index 4dab94efaf..10d68c84a5 100644 --- a/engines/hdb/lua-script.h +++ b/engines/hdb/lua-script.h @@ -59,8 +59,8 @@ public: void saveGlobalString(const char *global, const char *string); void loadGlobal(const char *global); void purgeGlobals(); - void save(Common::OutSaveFile *out, int slot); - void loadSaveFile(Common::InSaveFile *in, const char *fName); + void save(Common::OutSaveFile *out); + void loadSaveFile(Common::InSaveFile *in); bool init(); bool initScript(Common::SeekableReadStream *stream, const char *scriptName, int32 length); diff --git a/engines/hdb/saveload.cpp b/engines/hdb/saveload.cpp index 1163d56113..ef086f42ab 100644 --- a/engines/hdb/saveload.cpp +++ b/engines/hdb/saveload.cpp @@ -60,7 +60,7 @@ Common::Error HDBGame::saveGameState(int slot, const Common::String &desc) { // Actual Save Data saveGame(out); - _lua->save(out, slot); + _lua->save(out); out->finalize(); if (out->err()) @@ -91,8 +91,7 @@ Common::Error HDBGame::loadGameState(int slot) { _lua->loadLua(_currentLuaName); // load the Lua code FIRST! (if no file, it's ok) - saveFileName = genSaveFileName(slot, true); - _lua->loadSaveFile(in, saveFileName.c_str()); + _lua->loadSaveFile(in); delete in; |