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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
/* 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 "common/fs.h"
#include "common/debug.h"
#include "common/config-manager.h"
#include "tetraedge/te/te_core.h"
#include "tetraedge/te/te_png.h"
#include "tetraedge/te/te_images_sequence.h"
#include "tetraedge/te/te_jpeg.h"
#include "tetraedge/te/te_theora.h"
#include "tetraedge/te/te_tga.h"
namespace Tetraedge {
TeCore::TeCore() : _loc(nullptr), _coreNotReady(true) {
create();
}
void TeCore::addLoc(TeILoc *loc) {
if (_loc) {
warning("TeCore::addLoc: There is already a loc");
}
_loc = loc;
}
void TeCore::create() {
// TODO: Get language from the game definition. For now just default to en.
language("en");
_coreNotReady = false;
_activityTrackingTimer.alarmSignal().add(this, &TeCore::onActivityTrackingAlarm);
warning("TODO: TeCore::create: Finish implementing me.");
}
TeICodec *TeCore::createVideoCodec(const Common::Path &path) {
const Common::String filename = path.getLastComponent().toString();
if (!filename.contains('.'))
return nullptr;
Common::String extn = filename.substr(filename.findFirstOf('.') + 1);
extn.toLowercase();
// The original engine has more formats and even checks for alpha maps,
// but it never uses them.
if (TePng::matchExtension(extn)) {
return new TePng();
} else if (TeJpeg::matchExtension(extn)) {
return new TeJpeg();
} else if (TeTheora::matchExtension(extn)) {
return new TeTheora();
} else if (TeTga::matchExtension(extn)) {
return new TeTga();
} else if (TeImagesSequence::matchExtension(extn)) {
return new TeImagesSequence();
}
error("TTeCore::createVideoCodec: Unrecognised format %s", path.toString().c_str());
}
const Common::String &TeCore::fileFlagSystemFlag(const Common::String &name) const {
return _fileSystemFlags.find(name)->_value;
}
void TeCore::fileFlagSystemSetFlag(const Common::String &name, const Common::String &val) {
// TODO: Impmenent this fully to check possible values
_fileSystemFlags.setVal(name, val);
}
bool TeCore::fileFlagSystemFlagsContains(const Common::String &name) const {
error("TODO: Implement TeCore::fileFlagSystemFlagsContains");
return false;
}
Common::Array<Common::String> TeCore::fileFlagSystemPossibleFlags() {
error("TODO: Implement TeCore::fileFlagSystemPossibleFlags");
return Common::Array<Common::String>();
}
bool TeCore::fileFlagSystemPossibleFlagsContains(const Common::String &name) const {
error("TODO: Implement TeCore::fileFlagSystemPossibleFlagsContains");
return false;
}
const Common::String &TeCore::language() const {
return fileFlagSystemFlag("language");
}
void TeCore::language(const Common::String &val) {
return fileFlagSystemSetFlag("language", val);
}
bool TeCore::onActivityTrackingAlarm() {
error("TODO: Implement TeCore::onActivityTrackingAlarm");
}
Common::Path TeCore::findFile(const Common::Path &path) {
if (Common::File::exists(path))
return path;
const Common::String gamePath = ConfMan.get("path");
const Common::Path resPath = Common::Path(gamePath).join("Resources");
const Common::Path absolutePath = resPath.join(path);
if (Common::FSNode(absolutePath).isDirectory())
return absolutePath;
const Common::Path fname = path.getLastComponent();
const Common::Path dir = path.getParent();
static const char *pathSuffixes[] = {
nullptr, // no suffix
"PC-MacOSX",
"PC-PS3-Android-MacOSX",
"PC-MacOSX-Android-iPhone-iPad",
"PC-MacOSX-Xbox360-PS3",
"PC-MacOSX-PS3-Xbox360",
"PC-MacOSX-Xbox360-PS3/PC-MacOSX",
"PC-MacOSX-MacOSXAppStore-Android-iPhone-iPad",
"PC-MacOSX-MacOSXAppStore-Xbox360-Android-iPad-iPhone",
"Android-iPhone-iPad-PC-MacOSX",
"Full",
"Part1-Full",
"Part2-Full-Part1",
"Part3-Full-Part1",
"HD",
"HD/PC-MacOSX-Xbox360-PS3"
};
const Common::Path langs[] = {
"",
language(),
"en",
"de-es-fr-it-en"
};
// Note: the audio files for a few videos have a weird path
// structure where the language is first, followed by some other
// part names, followed by the file.
// Dialogs have part stuff followed by lang, so we have to try
// adding language before *and* after the suffix.
for (int langtype = 0; langtype < ARRAYSIZE(langs); langtype++) {
const Common::Path &lang = langs[langtype];
for (int i = 0; i < ARRAYSIZE(pathSuffixes); i++) {
const char *suffix = pathSuffixes[i];
Common::Path testPath = dir;
if (suffix)
testPath.joinInPlace(suffix);
if (!lang.empty())
testPath.joinInPlace(lang);
testPath.joinInPlace(fname);
if (Common::File::exists(testPath) || Common::FSNode(testPath).exists())
return testPath;
// also try the other way around
if (!lang.empty() && suffix) {
testPath = dir.join(lang).joinInPlace(suffix).join(fname);
if (Common::File::exists(testPath) || Common::FSNode(testPath).exists())
return testPath;
}
}
}
// Didn't find it at all..
warning("TeCore::findFile Searched but didn't find %s", path.toString().c_str());
return path;
}
} // end namespace Tetraedge
|