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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/* 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.
*
* 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.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "common/file.h"
#include "image/png.h"
#include "graphics/surface.h"
#include "graphics/managed_surface.h"
#include "tetraedge/te/te_images_sequence.h"
namespace Tetraedge {
TeImagesSequence::TeImagesSequence() : _width(0), _height(0), _curFrame(0) {
}
TeImagesSequence::~TeImagesSequence() {
for (auto surf : _cachedSurfaces) {
if (surf)
delete surf;
}
}
/*static*/
bool TeImagesSequence::matchExtension(const Common::String &extn) {
return extn == "anim";
}
static bool compareNodes(const Common::FSNode &left, const Common::FSNode &right) {
return left.getPath() < right.getPath();
}
bool TeImagesSequence::load(const Common::Path &path) {
Common::FSNode directory(path);
if (!directory.isDirectory()) {
warning("TeImagesSequence::load:: not a directory %s", path.toString().c_str());
return false;
}
Common::FSList children;
if (!directory.getChildren(children, Common::FSNode::kListFilesOnly) || children.empty()) {
warning("TeImagesSequence::load:: couldn't get children of %s", path.toString().c_str());
return false;
}
Common::sort(children.begin(), children.end(), compareNodes);
if (!SearchMan.hasArchive(path.toString()))
SearchMan.addDirectory(path.toString(), directory);
for (Common::FSNode &child : children) {
Common::String filePathStr = child.getPath();
if (filePathStr.size() <= 10 || filePathStr.substr(filePathStr.size() - 7) != "fps.png")
continue;
Common::Path filePath(filePathStr);
Common::String fname = filePath.getLastComponent().toString();
Common::String fstart = fname.substr(0, fname.size() - 7);
int frameno = 0;
int fps = 0;
if (sscanf(fstart.c_str(), "%d-%d", &frameno, &fps) != 2) {
warning("TeImagesSequence::load can't match %s", fname.c_str());
continue;
}
Common::SeekableReadStream *stream = child.createReadStream();
if (!stream) {
warning("TeImagesSequence::load can't open %s", filePath.toString().c_str());
continue;
}
// Only do the deep check for the first file to get dimensions.
// If the images are small then cache them to avoid reloading each frame each time.
if (!_width || (_width < 100 && _height < 100)) {
Image::PNGDecoder png;
if (!png.loadStream(*stream)) {
warning("Image sequence failed to load png %s", filePath.toString().c_str());
delete stream;
return false;
}
_frameRate = fps;
const Graphics::Surface *pngsurf = png.getSurface();
assert(pngsurf);
_width = pngsurf->w;
_height = pngsurf->h;
if (_width < 100 && _height < 100) {
Graphics::ManagedSurface *surf = new Graphics::ManagedSurface();
surf->copyFrom(pngsurf);
_cachedSurfaces.push_back(surf);
} else {
_cachedSurfaces.push_back(nullptr);
}
} else {
_cachedSurfaces.push_back(nullptr);
}
_files.push_back(child);
delete stream;
}
return true;
}
bool TeImagesSequence::update(unsigned long i, TeImage &imgout) {
_curFrame = i;
if (i >= _files.size())
return false;
if (_cachedSurfaces[i] == nullptr) {
Common::SeekableReadStream *stream = _files[i].createReadStream();
if (!stream)
error("Open %s failed.. it was ok before?", _files[i].getName().c_str());
Image::PNGDecoder png;
if (!png.loadStream(*stream)) {
warning("Image sequence failed to load png %s", _files[i].getName().c_str());
delete stream;
return false;
}
const Graphics::Surface *surf = png.getSurface();
assert(surf);
imgout.setAccessName(_files[i].getPath());
if (imgout.w == surf->w && imgout.h == surf->h && imgout.format == surf->format) {
imgout.copyFrom(*surf);
delete stream;
return true;
}
} else {
const Graphics::ManagedSurface *surf = _cachedSurfaces[i];
if (imgout.w == surf->w && imgout.h == surf->h && imgout.format == surf->format) {
imgout.setAccessName(_files[i].getPath());
imgout.copyFrom(*surf);
return true;
}
}
error("TODO: Implement TeImagesSequence::update for different sizes");
}
bool TeImagesSequence::isAtEnd() {
return _curFrame >= _files.size();
}
TeImage::Format TeImagesSequence::imageFormat() {
return TeImage::RGBA8;
}
} // end namespace Tetraedge
|