2008-08-11 12:43:00 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-02-18 02:34:26 +01:00
|
|
|
*
|
2008-08-11 12:43:00 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 02:34:26 +01:00
|
|
|
*
|
2008-08-11 12:43:00 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-08-11 12:43:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common/savefile.h"
|
|
|
|
|
2008-11-13 00:16:13 +00:00
|
|
|
#include "graphics/thumbnail.h"
|
|
|
|
|
2008-08-11 12:43:00 +00:00
|
|
|
#include "toltecs/toltecs.h"
|
|
|
|
#include "toltecs/animation.h"
|
2011-11-24 00:01:29 +02:00
|
|
|
#include "toltecs/music.h"
|
2008-08-11 12:43:00 +00:00
|
|
|
#include "toltecs/palette.h"
|
|
|
|
#include "toltecs/script.h"
|
|
|
|
#include "toltecs/screen.h"
|
2011-11-21 23:47:47 +02:00
|
|
|
#include "toltecs/sound.h"
|
2008-08-11 12:43:00 +00:00
|
|
|
|
|
|
|
namespace Toltecs {
|
|
|
|
|
2008-08-12 08:49:53 +00:00
|
|
|
/* TODO:
|
|
|
|
- Saving during an animation (AnimationPlayer) is not working correctly yet
|
|
|
|
- Maybe switch to SCUMM/Tinsel serialization approach?
|
|
|
|
*/
|
|
|
|
|
2012-09-10 23:19:43 +03:00
|
|
|
#define TOLTECS_SAVEGAME_VERSION 4
|
2008-08-11 12:43:00 +00:00
|
|
|
|
ALL: Load savegame thumbnail only when necessary
This commit introduces the following changes:
1. Graphics::loadThumbnail()
Now returns a boolean and takes a new argument skipThumbnail which
defaults to false. In case of true, loadThumbnail() reads past the
thumbnail data in the input stream instead of actually loading the
thumbnail. This simplifies savegame handling where, up until now,
many engines always read the whole savegame metadata (including
the thumbnail) and then threw away the thumbnail when not needed
(which is in almost all cases, the most common exception being
MetaEngine::querySaveMetaInfos() which is responsible for loading
savegame metadata for displaying it in the GUI launcher.
2. readSavegameHeader()
Engines which already implement such a method (name varies) now take
a new argument skipThumbnail (default: true) which is passed
through to loadThumbnail(). This means that the default case for
readSavegameHeader() is now _not_ loading the thumbnail from a
savegame and just reading past it. In those cases, e.g.
querySaveMetaInfos(), where we actually are interested in loading
the thumbnail readSavegameHeader() needs to explicitely be called
with skipThumbnail == false.
Engines whose readSavegameHeader() (name varies) already takes an
argument loadThumbnail have been adapted to have a similar
prototype and semantics.
I.e. readSaveHeader(in, loadThumbnail, header) now is
readSaveHeader(in, header, skipThumbnail).
3. Error handling
Engines which previously did not check the return value of
readSavegameHeader() (name varies) now do so ensuring that possibly
broken savegames (be it a broken thumbnail or something else) don't
make it into the GUI launcher list in the first place.
2018-04-06 00:06:38 +02:00
|
|
|
WARN_UNUSED_RESULT ToltecsEngine::kReadSaveHeaderError ToltecsEngine::readSaveHeader(Common::SeekableReadStream *in, SaveHeader &header, bool skipThumbnail) {
|
2008-11-13 00:16:13 +00:00
|
|
|
|
|
|
|
header.version = in->readUint32LE();
|
2011-11-21 22:29:44 +02:00
|
|
|
if (header.version > TOLTECS_SAVEGAME_VERSION)
|
2008-11-13 00:16:13 +00:00
|
|
|
return kRSHEInvalidVersion;
|
|
|
|
|
|
|
|
byte descriptionLen = in->readByte();
|
|
|
|
header.description = "";
|
|
|
|
while (descriptionLen--)
|
|
|
|
header.description += (char)in->readByte();
|
|
|
|
|
ALL: Load savegame thumbnail only when necessary
This commit introduces the following changes:
1. Graphics::loadThumbnail()
Now returns a boolean and takes a new argument skipThumbnail which
defaults to false. In case of true, loadThumbnail() reads past the
thumbnail data in the input stream instead of actually loading the
thumbnail. This simplifies savegame handling where, up until now,
many engines always read the whole savegame metadata (including
the thumbnail) and then threw away the thumbnail when not needed
(which is in almost all cases, the most common exception being
MetaEngine::querySaveMetaInfos() which is responsible for loading
savegame metadata for displaying it in the GUI launcher.
2. readSavegameHeader()
Engines which already implement such a method (name varies) now take
a new argument skipThumbnail (default: true) which is passed
through to loadThumbnail(). This means that the default case for
readSavegameHeader() is now _not_ loading the thumbnail from a
savegame and just reading past it. In those cases, e.g.
querySaveMetaInfos(), where we actually are interested in loading
the thumbnail readSavegameHeader() needs to explicitely be called
with skipThumbnail == false.
Engines whose readSavegameHeader() (name varies) already takes an
argument loadThumbnail have been adapted to have a similar
prototype and semantics.
I.e. readSaveHeader(in, loadThumbnail, header) now is
readSaveHeader(in, header, skipThumbnail).
3. Error handling
Engines which previously did not check the return value of
readSavegameHeader() (name varies) now do so ensuring that possibly
broken savegames (be it a broken thumbnail or something else) don't
make it into the GUI launcher list in the first place.
2018-04-06 00:06:38 +02:00
|
|
|
if (!Graphics::loadThumbnail(*in, header.thumbnail, skipThumbnail)) {
|
|
|
|
return kRSHEIoError;
|
2008-11-13 00:16:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Not used yet, reserved for future usage
|
|
|
|
header.gameID = in->readByte();
|
|
|
|
header.flags = in->readUint32LE();
|
|
|
|
|
2011-11-21 23:47:47 +02:00
|
|
|
if (header.version >= 1) {
|
2011-11-21 22:29:44 +02:00
|
|
|
header.saveDate = in->readUint32LE();
|
|
|
|
header.saveTime = in->readUint32LE();
|
|
|
|
header.playTime = in->readUint32LE();
|
|
|
|
} else {
|
|
|
|
header.saveDate = 0;
|
|
|
|
header.saveTime = 0;
|
|
|
|
header.playTime = 0;
|
|
|
|
}
|
|
|
|
|
2009-12-19 10:43:38 +00:00
|
|
|
return ((in->eos() || in->err()) ? kRSHEIoError : kRSHENoError);
|
2008-11-13 00:16:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ToltecsEngine::savegame(const char *filename, const char *description) {
|
2008-08-11 12:43:00 +00:00
|
|
|
Common::OutSaveFile *out;
|
|
|
|
if (!(out = g_system->getSavefileManager()->openForSaving(filename))) {
|
|
|
|
warning("Can't create file '%s', game not saved", filename);
|
2008-08-12 08:49:53 +00:00
|
|
|
return;
|
2008-08-11 12:43:00 +00:00
|
|
|
}
|
|
|
|
|
2011-11-21 22:29:44 +02:00
|
|
|
TimeDate curTime;
|
|
|
|
g_system->getTimeAndDate(curTime);
|
|
|
|
|
|
|
|
// Header start
|
2010-05-10 08:13:04 +00:00
|
|
|
out->writeUint32LE(TOLTECS_SAVEGAME_VERSION);
|
2008-08-12 08:49:53 +00:00
|
|
|
|
2008-11-13 00:16:13 +00:00
|
|
|
byte descriptionLen = strlen(description);
|
|
|
|
out->writeByte(descriptionLen);
|
|
|
|
out->write(description, descriptionLen);
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2008-11-13 00:16:13 +00:00
|
|
|
Graphics::saveThumbnail(*out);
|
|
|
|
|
|
|
|
// Not used yet, reserved for future usage
|
|
|
|
out->writeByte(0);
|
|
|
|
out->writeUint32LE(0);
|
2011-11-21 22:29:44 +02:00
|
|
|
uint32 saveDate = ((curTime.tm_mday & 0xFF) << 24) | (((curTime.tm_mon + 1) & 0xFF) << 16) | ((curTime.tm_year + 1900) & 0xFFFF);
|
|
|
|
uint32 saveTime = ((curTime.tm_hour & 0xFF) << 16) | (((curTime.tm_min) & 0xFF) << 8) | ((curTime.tm_sec) & 0xFF);
|
|
|
|
uint32 playTime = g_engine->getTotalPlayTime() / 1000;
|
|
|
|
out->writeUint32LE(saveDate);
|
|
|
|
out->writeUint32LE(saveTime);
|
|
|
|
out->writeUint32LE(playTime);
|
|
|
|
// Header end
|
2008-11-13 00:16:13 +00:00
|
|
|
|
2008-08-12 08:49:53 +00:00
|
|
|
out->writeUint16LE(_cameraX);
|
|
|
|
out->writeUint16LE(_cameraY);
|
|
|
|
out->writeUint16LE(_cameraHeight);
|
|
|
|
|
|
|
|
out->writeUint16LE(_guiHeight);
|
|
|
|
|
|
|
|
out->writeUint16LE(_sceneWidth);
|
|
|
|
out->writeUint16LE(_sceneHeight);
|
|
|
|
out->writeUint32LE(_sceneResIndex);
|
|
|
|
|
|
|
|
out->writeUint16LE(_walkSpeedX);
|
|
|
|
out->writeUint16LE(_walkSpeedY);
|
|
|
|
|
|
|
|
out->writeUint32LE(_counter01);
|
|
|
|
out->writeUint32LE(_counter02);
|
|
|
|
out->writeByte(_movieSceneFlag ? 1 : 0);
|
|
|
|
out->writeByte(_flag01);
|
2008-08-11 12:43:00 +00:00
|
|
|
|
2008-08-14 07:57:07 +00:00
|
|
|
out->writeUint16LE(_mouseX);
|
|
|
|
out->writeUint16LE(_mouseY);
|
|
|
|
out->writeUint16LE(_mouseDisabled);
|
2008-08-12 11:19:51 +00:00
|
|
|
|
2008-08-11 12:43:00 +00:00
|
|
|
_palette->saveState(out);
|
|
|
|
_script->saveState(out);
|
|
|
|
_anim->saveState(out);
|
2008-08-12 08:49:53 +00:00
|
|
|
_screen->saveState(out);
|
2011-11-21 23:47:47 +02:00
|
|
|
_sound->saveState(out);
|
2011-11-24 00:01:29 +02:00
|
|
|
_music->saveState(out);
|
2008-08-11 12:43:00 +00:00
|
|
|
|
2011-10-20 22:50:13 +00:00
|
|
|
out->finalize();
|
2008-08-11 12:43:00 +00:00
|
|
|
delete out;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToltecsEngine::loadgame(const char *filename) {
|
2012-09-10 23:19:43 +03:00
|
|
|
Common::InSaveFile *in = g_system->getSavefileManager()->openForLoading(filename);
|
|
|
|
if (!in) {
|
2008-08-12 08:49:53 +00:00
|
|
|
warning("Can't open file '%s', game not loaded", filename);
|
|
|
|
return;
|
|
|
|
}
|
2008-11-13 00:16:13 +00:00
|
|
|
|
|
|
|
SaveHeader header;
|
|
|
|
|
ALL: Load savegame thumbnail only when necessary
This commit introduces the following changes:
1. Graphics::loadThumbnail()
Now returns a boolean and takes a new argument skipThumbnail which
defaults to false. In case of true, loadThumbnail() reads past the
thumbnail data in the input stream instead of actually loading the
thumbnail. This simplifies savegame handling where, up until now,
many engines always read the whole savegame metadata (including
the thumbnail) and then threw away the thumbnail when not needed
(which is in almost all cases, the most common exception being
MetaEngine::querySaveMetaInfos() which is responsible for loading
savegame metadata for displaying it in the GUI launcher.
2. readSavegameHeader()
Engines which already implement such a method (name varies) now take
a new argument skipThumbnail (default: true) which is passed
through to loadThumbnail(). This means that the default case for
readSavegameHeader() is now _not_ loading the thumbnail from a
savegame and just reading past it. In those cases, e.g.
querySaveMetaInfos(), where we actually are interested in loading
the thumbnail readSavegameHeader() needs to explicitely be called
with skipThumbnail == false.
Engines whose readSavegameHeader() (name varies) already takes an
argument loadThumbnail have been adapted to have a similar
prototype and semantics.
I.e. readSaveHeader(in, loadThumbnail, header) now is
readSaveHeader(in, header, skipThumbnail).
3. Error handling
Engines which previously did not check the return value of
readSavegameHeader() (name varies) now do so ensuring that possibly
broken savegames (be it a broken thumbnail or something else) don't
make it into the GUI launcher list in the first place.
2018-04-06 00:06:38 +02:00
|
|
|
kReadSaveHeaderError errorCode = readSaveHeader(in, header);
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2008-11-13 00:16:13 +00:00
|
|
|
if (errorCode != kRSHENoError) {
|
|
|
|
warning("Error loading savegame '%s'", filename);
|
|
|
|
delete in;
|
2008-08-12 08:49:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2011-11-21 23:47:47 +02:00
|
|
|
_sound->stopAll();
|
2011-11-24 00:01:29 +02:00
|
|
|
_music->stopSequence();
|
2011-11-21 22:29:44 +02:00
|
|
|
g_engine->setTotalPlayTime(header.playTime * 1000);
|
|
|
|
|
2008-08-12 08:49:53 +00:00
|
|
|
_cameraX = in->readUint16LE();
|
|
|
|
_cameraY = in->readUint16LE();
|
|
|
|
_cameraHeight = in->readUint16LE();
|
|
|
|
|
|
|
|
_guiHeight = in->readUint16LE();
|
|
|
|
|
|
|
|
_sceneWidth = in->readUint16LE();
|
|
|
|
_sceneHeight = in->readUint16LE();
|
|
|
|
_sceneResIndex = in->readUint32LE();
|
|
|
|
|
|
|
|
_walkSpeedX = in->readUint16LE();
|
|
|
|
_walkSpeedY = in->readUint16LE();
|
|
|
|
|
|
|
|
_counter01 = in->readUint32LE();
|
|
|
|
_counter02 = in->readUint32LE();
|
|
|
|
_movieSceneFlag = in->readByte() != 0;
|
|
|
|
_flag01 = in->readByte();
|
|
|
|
|
2008-08-14 07:57:07 +00:00
|
|
|
_mouseX = in->readUint16LE();
|
|
|
|
_mouseY = in->readUint16LE();
|
|
|
|
_mouseDisabled = in->readUint16LE();
|
2012-09-26 04:17:31 +02:00
|
|
|
|
2008-08-14 07:57:07 +00:00
|
|
|
_system->warpMouse(_mouseX, _mouseY);
|
2013-11-24 18:08:39 +01:00
|
|
|
_system->showMouse(_mouseDisabled == 0);
|
2008-08-12 11:19:51 +00:00
|
|
|
|
2008-08-12 08:49:53 +00:00
|
|
|
_palette->loadState(in);
|
|
|
|
_script->loadState(in);
|
|
|
|
_anim->loadState(in);
|
|
|
|
_screen->loadState(in);
|
2011-11-21 23:47:47 +02:00
|
|
|
if (header.version >= 2)
|
2012-09-10 23:19:43 +03:00
|
|
|
_sound->loadState(in, header.version);
|
2011-11-24 00:01:29 +02:00
|
|
|
if (header.version >= 3)
|
|
|
|
_music->loadState(in);
|
2008-08-12 08:49:53 +00:00
|
|
|
|
|
|
|
delete in;
|
|
|
|
|
|
|
|
loadScene(_sceneResIndex);
|
|
|
|
|
|
|
|
_newCameraX = _cameraX;
|
|
|
|
_newCameraY = _cameraY;
|
|
|
|
}
|
2008-08-11 12:43:00 +00:00
|
|
|
|
2008-11-13 00:16:13 +00:00
|
|
|
Common::Error ToltecsEngine::loadGameState(int slot) {
|
|
|
|
const char *fileName = getSavegameFilename(slot);
|
|
|
|
loadgame(fileName);
|
2008-12-15 08:04:06 +00:00
|
|
|
return Common::kNoError;
|
2008-11-13 00:16:13 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 22:13:33 -08:00
|
|
|
Common::Error ToltecsEngine::saveGameState(int slot, const Common::String &description, bool isAutosave) {
|
2008-11-13 00:16:13 +00:00
|
|
|
const char *fileName = getSavegameFilename(slot);
|
2011-06-19 14:04:22 +00:00
|
|
|
savegame(fileName, description.c_str());
|
2008-12-15 08:04:06 +00:00
|
|
|
return Common::kNoError;
|
2008-11-13 00:16:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *ToltecsEngine::getSavegameFilename(int num) {
|
|
|
|
static Common::String filename;
|
|
|
|
filename = getSavegameFilename(_targetName, num);
|
|
|
|
return filename.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
Common::String ToltecsEngine::getSavegameFilename(const Common::String &target, int num) {
|
|
|
|
assert(num >= 0 && num <= 999);
|
|
|
|
|
|
|
|
char extension[5];
|
|
|
|
sprintf(extension, "%03d", num);
|
|
|
|
|
|
|
|
return target + "." + extension;
|
|
|
|
}
|
|
|
|
|
2008-08-11 12:43:00 +00:00
|
|
|
} // End of namespace Toltecs
|