1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/* ResidualVM - A 3D game interpreter
*
* ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the AUTHORS
* file distributed with this source distribution.
*
* 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 2
* of the License, or (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "engines/stark/savemetadata.h"
#include "engines/stark/gfx/driver.h"
#include "engines/stark/services/stateprovider.h"
#include "engines/stark/services/userinterface.h"
#include "graphics/surface.h"
namespace Stark {
SaveMetadata::SaveMetadata() :
_readErrorCode(Common::kNoError),
levelIndex(0),
locationIndex(0),
version(0),
totalPlayTime(0),
saveYear(0),
saveMonth(0),
saveDay(0),
saveHour(0),
saveMinute(0),
gameWindowThumbnail(nullptr) {
}
void SaveMetadata::saveLoad(ResourceSerializer *s) {
s->syncAsString32(description);
syncResourceIndexAsString(s, levelIndex);
syncResourceIndexAsString(s, locationIndex);
_readErrorCode = syncVersion(s);
if (_readErrorCode != Common::kNoError) {
return;
}
if (version >= 9) {
s->syncAsByte(saveDay);
s->syncAsByte(saveMonth);
s->syncAsUint16BE(saveYear);
s->syncAsByte(saveHour);
s->syncAsByte(saveMinute);
s->syncAsSint32LE(totalPlayTime);
}
}
Common::ErrorCode SaveMetadata::read(Common::SeekableReadStream *stream, const Common::String &filename) {
_readFilename = filename;
ResourceSerializer s(stream, nullptr, 0);
saveLoad(&s);
return _readErrorCode;
}
void SaveMetadata::write(Common::WriteStream *stream) {
ResourceSerializer s(nullptr, stream, 0);
saveLoad(&s);
}
void SaveMetadata::syncResourceIndexAsString(ResourceSerializer *s, uint &index) {
Common::String indexRaw = Common::String::format("%02x", index);
s->syncAsString32(indexRaw);
if (s->isLoading()) {
index = strtol(indexRaw.c_str(), nullptr, 16);
}
}
Common::ErrorCode SaveMetadata::syncVersion(ResourceSerializer *s) {
Common::String versionRaw = Common::String::format("Version:\t%02d", version);
s->syncAsString32(versionRaw);
if (s->isLoading()) {
if (!versionRaw.hasPrefix("Version:\t")) {
warning("The save file '%s' does not match the expected format", _readFilename.c_str());
return Common::kReadingFailed;
}
version = atoi(&(versionRaw.c_str()[8]));
if (version < StateProvider::kMinSaveVersion || version > StateProvider::kSaveVersion) {
warning("The save file '%s' version (v%d) is not supported by this version of ResidualVM. Only versions v%d to v%d are allowed.",
_readFilename.c_str(), version, StateProvider::kMinSaveVersion, StateProvider::kSaveVersion);
return Common::kReadingFailed;
}
}
return Common::kNoError;
}
void SaveMetadata::setSaveTime(const TimeDate &timeDate) {
saveDay = timeDate.tm_mday;
saveMonth = timeDate.tm_mon + 1;
saveYear = timeDate.tm_year + 1900;
saveHour = timeDate.tm_hour;
saveMinute = timeDate.tm_min;
}
void SaveMetadata::writeGameScreenThumbnail(Common::WriteStream *stream) {
assert(gameWindowThumbnail);
assert(gameWindowThumbnail->pitch * gameWindowThumbnail->h == UserInterface::kThumbnailSize);
stream->write((const byte *)gameWindowThumbnail->getPixels(), UserInterface::kThumbnailSize);
}
void SaveMetadata::skipGameScreenThumbnail(Common::SeekableReadStream *stream) {
stream->skip(UserInterface::kThumbnailSize);
}
Graphics::Surface *SaveMetadata::readGameScreenThumbnail(Common::SeekableReadStream *stream) {
Graphics::Surface *thumb = new Graphics::Surface();
thumb->create(UserInterface::kThumbnailWidth, UserInterface::kThumbnailHeight, Gfx::Driver::getRGBAPixelFormat());
stream->read(thumb->getPixels(), UserInterface::kThumbnailSize);
return thumb;
}
} // End of namespace Stark
|