ALL: Remove Symbian port
5
.gitignore
vendored
@ -83,11 +83,6 @@ lib*.a
|
||||
|
||||
/backends/platform/maemo/scummvm
|
||||
|
||||
/backends/platform/symbian/mmp/*.mmp
|
||||
/backends/platform/symbian/*/ScummVM_*.mmp
|
||||
!/backends/platform/symbian/*/ScummVM_*_App.mmp
|
||||
/backends/platform/symbian/*/BLD.INF
|
||||
|
||||
/dists/rpl.exe
|
||||
|
||||
/dists/codeblocks/*.cbp
|
||||
|
1
NEWS.md
@ -21,6 +21,7 @@ For a more comprehensive changelog of the latest experimental code, see:
|
||||
the search box" in the documentation for details.
|
||||
- Implemented Icon view in GUI (GSoC task).
|
||||
- Added support for the RetroWave OPL3 sound card.
|
||||
- Removed Symbian port.
|
||||
|
||||
AGI:
|
||||
- Added support for Macintosh versions of Manhunter 1-2.
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include "common/textconsole.h"
|
||||
#include "common/util.h"
|
||||
|
||||
#if defined(__SYMBIAN32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__)
|
||||
#if defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__)
|
||||
#include "common/config-manager.h"
|
||||
#endif
|
||||
|
||||
@ -1238,7 +1238,7 @@ FM_OPL *makeAdLibOPL(int rate) {
|
||||
// We need to emulate one YM3812 chip
|
||||
int env_bits = FMOPL_ENV_BITS_HQ;
|
||||
int eg_ent = FMOPL_EG_ENT_HQ;
|
||||
#if defined(__SYMBIAN32__) || defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__)
|
||||
#if defined(GP2X) || defined(__MAEMO__) || defined(__DS__) || defined(__MINT__) || defined(__N64__)
|
||||
if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
|
||||
env_bits = FMOPL_ENV_BITS_HQ;
|
||||
eg_ent = FMOPL_EG_ENT_HQ;
|
||||
|
@ -1,40 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#if defined(__SYMBIAN32__)
|
||||
#include "backends/fs/symbian/symbian-fs-factory.h"
|
||||
#include "backends/fs/symbian/symbian-fs.h"
|
||||
|
||||
AbstractFSNode *SymbianFilesystemFactory::makeRootFileNode() const {
|
||||
return new SymbianFilesystemNode(true);
|
||||
}
|
||||
|
||||
AbstractFSNode *SymbianFilesystemFactory::makeCurrentDirectoryFileNode() const {
|
||||
char path[MAXPATHLEN];
|
||||
getcwd(path, MAXPATHLEN);
|
||||
return new SymbianFilesystemNode(path);
|
||||
}
|
||||
|
||||
AbstractFSNode *SymbianFilesystemFactory::makeFileNodePath(const Common::String &path) const {
|
||||
return new SymbianFilesystemNode(path);
|
||||
}
|
||||
|
||||
#endif
|
@ -1,39 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SYMBIAN_FILESYSTEM_FACTORY_H
|
||||
#define SYMBIAN_FILESYSTEM_FACTORY_H
|
||||
|
||||
#include "backends/fs/fs-factory.h"
|
||||
|
||||
/**
|
||||
* Creates SymbianFilesystemNode objects.
|
||||
*
|
||||
* Parts of this class are documented in the base interface class, FilesystemFactory.
|
||||
*/
|
||||
class SymbianFilesystemFactory final : public FilesystemFactory {
|
||||
public:
|
||||
AbstractFSNode *makeRootFileNode() const override;
|
||||
AbstractFSNode *makeCurrentDirectoryFileNode() const override;
|
||||
AbstractFSNode *makeFileNodePath(const Common::String &path) const override;
|
||||
};
|
||||
|
||||
#endif /*SYMBIAN_FILESYSTEM_FACTORY_H*/
|
@ -1,239 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#if defined(__SYMBIAN32__)
|
||||
|
||||
#include "backends/fs/symbian/symbian-fs.h"
|
||||
#include "backends/fs/symbian/symbianstream.h"
|
||||
#include "backends/platform/symbian/src/symbianos.h"
|
||||
|
||||
#include <dirent.h>
|
||||
#include <eikenv.h>
|
||||
#include <f32file.h>
|
||||
#include <bautils.h>
|
||||
|
||||
#define KDriveLabelSize 30
|
||||
|
||||
/**
|
||||
* Fixes the path by changing all slashes to backslashes.
|
||||
*
|
||||
* @param path Common::String with the path to be fixed.
|
||||
*/
|
||||
static void fixFilePath(Common::String &aPath){
|
||||
TInt len = aPath.size();
|
||||
|
||||
for (TInt index = 0; index < len; index++) {
|
||||
if (aPath[index] == '/') {
|
||||
aPath.setChar('\\', index);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SymbianFilesystemNode::SymbianFilesystemNode(bool aIsRoot) {
|
||||
_path = "";
|
||||
_isValid = true;
|
||||
_isDirectory = true;
|
||||
_isPseudoRoot = aIsRoot;
|
||||
_displayName = "Root";
|
||||
|
||||
}
|
||||
|
||||
SymbianFilesystemNode::SymbianFilesystemNode(const Common::String &path) {
|
||||
_isPseudoRoot = path.empty();
|
||||
|
||||
_path = path;
|
||||
|
||||
fixFilePath(_path);
|
||||
|
||||
_displayName = lastPathComponent(_path, '\\');
|
||||
|
||||
TEntry fileAttribs;
|
||||
TFileName fname;
|
||||
TPtrC8 ptr((const unsigned char*)_path.c_str(),_path.size());
|
||||
fname.Copy(ptr);
|
||||
|
||||
if (FsSession().Entry(fname, fileAttribs) == KErrNone) {
|
||||
_isValid = true;
|
||||
_isDirectory = fileAttribs.IsDir();
|
||||
} else {
|
||||
_isValid = true;
|
||||
_isDirectory = false;
|
||||
TParsePtrC parser(fname);
|
||||
if (parser.PathPresent() && parser.Path().Compare(_L("\\")) == KErrNone && !parser.NameOrExtPresent()) {
|
||||
_isDirectory = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool SymbianFilesystemNode::exists() const {
|
||||
TFileName fname;
|
||||
TPtrC8 ptr((const unsigned char*) _path.c_str(), _path.size());
|
||||
fname.Copy(ptr);
|
||||
bool fileExists = BaflUtils::FileExists(FsSession(), fname);
|
||||
if (!fileExists) {
|
||||
TParsePtrC parser(fname);
|
||||
if (parser.PathPresent() && parser.Path().Compare(_L("\\")) == KErrNone && !parser.NameOrExtPresent()) {
|
||||
fileExists = true;
|
||||
}
|
||||
}
|
||||
return fileExists;
|
||||
}
|
||||
|
||||
bool SymbianFilesystemNode::isReadable() const {
|
||||
return access(_path.c_str(), R_OK) == 0;
|
||||
}
|
||||
|
||||
bool SymbianFilesystemNode::isWritable() const {
|
||||
return access(_path.c_str(), W_OK) == 0;
|
||||
}
|
||||
|
||||
|
||||
AbstractFSNode *SymbianFilesystemNode::getChild(const Common::String &n) const {
|
||||
assert(_isDirectory);
|
||||
Common::String newPath(_path);
|
||||
|
||||
if (_path.lastChar() != '\\')
|
||||
newPath += '\\';
|
||||
|
||||
newPath += n;
|
||||
|
||||
return new SymbianFilesystemNode(newPath);
|
||||
}
|
||||
|
||||
bool SymbianFilesystemNode::getChildren(AbstractFSList &myList, ListMode mode, bool hidden) const {
|
||||
assert(_isDirectory);
|
||||
|
||||
// TODO: honor the hidden flag.
|
||||
|
||||
if (_isPseudoRoot) {
|
||||
// Drives enumeration.
|
||||
RFs &fs = FsSession();
|
||||
TInt driveNumber;
|
||||
TChar driveLetter;
|
||||
TUint driveLetterValue;
|
||||
TVolumeInfo volumeInfo;
|
||||
TBuf8<KDriveLabelSize> driveLabel8;
|
||||
TBuf8<KDriveLabelSize> driveString8;
|
||||
|
||||
for (driveNumber=EDriveA; driveNumber<=EDriveZ; driveNumber++) {
|
||||
TInt err = fs.Volume(volumeInfo, driveNumber);
|
||||
if (err != KErrNone)
|
||||
continue;
|
||||
if (fs.DriveToChar(driveNumber, driveLetter) != KErrNone)
|
||||
continue;
|
||||
|
||||
driveLetterValue = driveLetter;
|
||||
|
||||
if (volumeInfo.iName.Length() > 0) {
|
||||
driveLabel8.Copy(volumeInfo.iName); // 8bit to 16 des // Enabling this line alone gives KERN-EXEC 3 with non-optimized GCC? WHY? Grrr...
|
||||
driveString8.Format(_L8("Drive %c: (%S)"), driveLetterValue, &driveLabel8);
|
||||
} else {
|
||||
driveString8.Format(_L8("Drive %c:"), driveLetterValue);
|
||||
}
|
||||
|
||||
char path[10];
|
||||
sprintf(path,"%c:\\", driveNumber+'A');
|
||||
|
||||
SymbianFilesystemNode entry(false);
|
||||
entry._displayName = (char *) driveString8.PtrZ(); // drive_name
|
||||
entry._isDirectory = true;
|
||||
entry._isValid = true;
|
||||
entry._isPseudoRoot = false;
|
||||
entry._path = path;
|
||||
myList.push_back(new SymbianFilesystemNode(entry));
|
||||
}
|
||||
} else {
|
||||
TPtrC8 ptr((const unsigned char*) _path.c_str(), _path.size());
|
||||
TFileName fname;
|
||||
TBuf8<256>nameBuf;
|
||||
CDir* dirPtr;
|
||||
fname.Copy(ptr);
|
||||
|
||||
if (_path.lastChar() != '\\')
|
||||
fname.Append('\\');
|
||||
|
||||
if (FsSession().GetDir(fname, KEntryAttNormal|KEntryAttDir, 0, dirPtr) == KErrNone) {
|
||||
CleanupStack::PushL(dirPtr);
|
||||
TInt cnt = dirPtr->Count();
|
||||
for (TInt loop = 0; loop < cnt; loop++) {
|
||||
TEntry fileentry = (*dirPtr)[loop];
|
||||
nameBuf.Copy(fileentry.iName);
|
||||
SymbianFilesystemNode entry(false);
|
||||
entry._isPseudoRoot = false;
|
||||
|
||||
entry._displayName =(char *)nameBuf.PtrZ();
|
||||
entry._path = _path;
|
||||
|
||||
if (entry._path.lastChar() != '\\')
|
||||
entry._path+= '\\';
|
||||
|
||||
entry._path +=(char *)nameBuf.PtrZ();
|
||||
entry._isDirectory = fileentry.IsDir();
|
||||
|
||||
// Honor the chosen mode.
|
||||
if ((mode == Common::FSNode::kListFilesOnly && entry._isDirectory) ||
|
||||
(mode == Common::FSNode::kListDirectoriesOnly && !entry._isDirectory))
|
||||
continue;
|
||||
|
||||
myList.push_back(new SymbianFilesystemNode(entry));
|
||||
}
|
||||
CleanupStack::PopAndDestroy(dirPtr);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
AbstractFSNode *SymbianFilesystemNode::getParent() const {
|
||||
SymbianFilesystemNode *p =NULL;
|
||||
|
||||
// Root node is its own parent. Still we can't just return this
|
||||
// as the GUI code will call delete on the old node.
|
||||
if (!_isPseudoRoot && _path.size() > 3) {
|
||||
p = new SymbianFilesystemNode(false);
|
||||
const char *start = _path.c_str();
|
||||
const char *end = lastPathComponent(_path, '\\');
|
||||
|
||||
p->_path = Common::String(start, end - start);
|
||||
p->_isValid = true;
|
||||
p->_isDirectory = true;
|
||||
p->_displayName = lastPathComponent(p->_path, '\\');
|
||||
} else {
|
||||
p = new SymbianFilesystemNode(true);
|
||||
}
|
||||
|
||||
return p;
|
||||
}
|
||||
|
||||
Common::SeekableReadStream *SymbianFilesystemNode::createReadStream() {
|
||||
return SymbianStdioStream::makeFromPath(getPath(), false);
|
||||
}
|
||||
|
||||
Common::SeekableWriteStream *SymbianFilesystemNode::createWriteStream() {
|
||||
return SymbianStdioStream::makeFromPath(getPath(), true);
|
||||
}
|
||||
|
||||
bool SymbianFilesystemNode::createDirectory() {
|
||||
warning("SymbianFilesystemNode::createDirectory(): Not supported");
|
||||
return _isValid && _isDirectory;
|
||||
}
|
||||
|
||||
#endif //#if defined(__SYMBIAN32__)
|
@ -1,71 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SYMBIAN_FILESYSTEM_H
|
||||
#define SYMBIAN_FILESYSTEM_H
|
||||
|
||||
#include "backends/fs/abstract-fs.h"
|
||||
|
||||
/**
|
||||
* Implementation of the ScummVM file system API based on POSIX.
|
||||
*
|
||||
* Parts of this class are documented in the base interface class, AbstractFSNode.
|
||||
*/
|
||||
class SymbianFilesystemNode final : public AbstractFSNode {
|
||||
protected:
|
||||
Common::String _displayName;
|
||||
Common::String _path;
|
||||
bool _isDirectory;
|
||||
bool _isValid;
|
||||
bool _isPseudoRoot;
|
||||
public:
|
||||
/**
|
||||
* Creates a SymbianFilesystemNode with the root node as path.
|
||||
*
|
||||
* @param aIsRoot true if the node will be a pseudo root, false otherwise.
|
||||
*/
|
||||
SymbianFilesystemNode(bool aIsRoot);
|
||||
|
||||
/**
|
||||
* Creates a SymbianFilesystemNode for a given path.
|
||||
*
|
||||
* @param path Common::String with the path the new node should point to.
|
||||
*/
|
||||
SymbianFilesystemNode(const Common::String &path);
|
||||
|
||||
bool exists() const override;
|
||||
Common::U32String getDisplayName() const override { return _displayName; }
|
||||
Common::String getName() const override { return _displayName; }
|
||||
Common::String getPath() const override { return _path; }
|
||||
bool isDirectory() const override { return _isDirectory; }
|
||||
bool isReadable() const override;
|
||||
bool isWritable() const override;
|
||||
|
||||
AbstractFSNode *getChild(const Common::String &n) const override;
|
||||
bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const override;
|
||||
AbstractFSNode *getParent() const override;
|
||||
|
||||
Common::SeekableReadStream *createReadStream() override;
|
||||
Common::SeekableWriteStream *createWriteStream() override;
|
||||
bool createDirectory() override;
|
||||
};
|
||||
|
||||
#endif
|
@ -1,269 +0,0 @@
|
||||
/* 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/scummsys.h"
|
||||
#include "backends/fs/symbian/symbianstream.h"
|
||||
#include "common/system.h"
|
||||
#include "backends/platform/symbian/src/symbianos.h"
|
||||
|
||||
#include <f32file.h>
|
||||
|
||||
#define KInputBufferLength 128
|
||||
|
||||
// Symbian libc file functionality in order to provide shared file handles.
|
||||
class TSymbianFileEntry {
|
||||
public:
|
||||
RFile _fileHandle;
|
||||
char _inputBuffer[KInputBufferLength];
|
||||
TInt _inputBufferLen;
|
||||
TInt _inputPos;
|
||||
TInt _lastError;
|
||||
TBool _eofReached;
|
||||
};
|
||||
|
||||
TSymbianFileEntry* CreateSymbianFileEntry(const char* name, const char* mode) {
|
||||
TSymbianFileEntry* fileEntry = new TSymbianFileEntry;
|
||||
fileEntry->_inputPos = KErrNotFound;
|
||||
fileEntry->_lastError = 0;
|
||||
fileEntry->_eofReached = EFalse;
|
||||
|
||||
if (fileEntry != NULL) {
|
||||
TInt modeLen = strlen(mode);
|
||||
|
||||
TPtrC8 namePtr((unsigned char*) name, strlen(name));
|
||||
TFileName tempFileName;
|
||||
tempFileName.Copy(namePtr);
|
||||
|
||||
TInt fileMode = EFileRead;
|
||||
|
||||
if (mode[0] == 'a')
|
||||
fileMode = EFileWrite;
|
||||
|
||||
if (!((modeLen > 1 && mode[1] == 'b') || (modeLen > 2 && mode[2] == 'b'))) {
|
||||
fileMode |= EFileStreamText;
|
||||
}
|
||||
|
||||
if ((modeLen > 1 && mode[1] == '+') || (modeLen > 2 && mode[2] == '+')) {
|
||||
fileMode = fileMode| EFileWrite;
|
||||
}
|
||||
|
||||
fileMode = fileMode| EFileShareAny;
|
||||
|
||||
switch (mode[0]) {
|
||||
case 'a':
|
||||
if (fileEntry->_fileHandle.Open(FsSession(), tempFileName, fileMode) != KErrNone) {
|
||||
if (fileEntry->_fileHandle.Create(FsSession(), tempFileName, fileMode) != KErrNone) {
|
||||
delete fileEntry;
|
||||
fileEntry = NULL;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'r':
|
||||
if (fileEntry->_fileHandle.Open(FsSession(), tempFileName, fileMode) != KErrNone) {
|
||||
delete fileEntry;
|
||||
fileEntry = NULL;
|
||||
}
|
||||
break;
|
||||
|
||||
case 'w':
|
||||
if (fileEntry->_fileHandle.Replace(FsSession(), tempFileName, fileMode) != KErrNone) {
|
||||
delete fileEntry;
|
||||
fileEntry = NULL;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return fileEntry;
|
||||
}
|
||||
|
||||
size_t ReadData(const void* ptr, size_t size, size_t numItems, TSymbianFileEntry* handle) {
|
||||
TSymbianFileEntry* entry = ((TSymbianFileEntry *)(handle));
|
||||
TUint32 totsize = size*numItems;
|
||||
TPtr8 pointer ( (unsigned char*) ptr, totsize);
|
||||
|
||||
// Nothing cached and we want to load at least KInputBufferLength bytes.
|
||||
if (totsize >= KInputBufferLength) {
|
||||
TUint32 totLength = 0;
|
||||
if (entry->_inputPos != KErrNotFound) {
|
||||
TPtr8 cacheBuffer( (unsigned char*) entry->_inputBuffer+entry->_inputPos, entry->_inputBufferLen - entry->_inputPos, KInputBufferLength);
|
||||
pointer.Append(cacheBuffer);
|
||||
entry->_inputPos = KErrNotFound;
|
||||
totLength+=pointer.Length();
|
||||
pointer.Set(totLength+(unsigned char*) ptr, 0, totsize-totLength);
|
||||
}
|
||||
|
||||
entry->_lastError = entry->_fileHandle.Read(pointer);
|
||||
|
||||
totLength+=pointer.Length();
|
||||
|
||||
pointer.Set((unsigned char*) ptr, totLength, totsize);
|
||||
|
||||
} else {
|
||||
// Nothing in buffer.
|
||||
if (entry->_inputPos == KErrNotFound) {
|
||||
TPtr8 cacheBuffer( (unsigned char*) entry->_inputBuffer, KInputBufferLength);
|
||||
entry->_lastError = entry->_fileHandle.Read(cacheBuffer);
|
||||
|
||||
if (cacheBuffer.Length() >= totsize) {
|
||||
pointer.Copy(cacheBuffer.Left(totsize));
|
||||
entry->_inputPos = totsize;
|
||||
entry->_inputBufferLen = cacheBuffer.Length();
|
||||
} else {
|
||||
pointer.Copy(cacheBuffer);
|
||||
entry->_inputPos = KErrNotFound;
|
||||
}
|
||||
|
||||
} else {
|
||||
TPtr8 cacheBuffer( (unsigned char*) entry->_inputBuffer, entry->_inputBufferLen, KInputBufferLength);
|
||||
|
||||
if (entry->_inputPos+totsize < entry->_inputBufferLen) {
|
||||
pointer.Copy(cacheBuffer.Mid(entry->_inputPos, totsize));
|
||||
entry->_inputPos+=totsize;
|
||||
} else {
|
||||
|
||||
pointer.Copy(cacheBuffer.Mid(entry->_inputPos, entry->_inputBufferLen-entry->_inputPos));
|
||||
cacheBuffer.SetLength(0);
|
||||
entry->_lastError = entry->_fileHandle.Read(cacheBuffer);
|
||||
|
||||
if (cacheBuffer.Length() >= totsize-pointer.Length()) {
|
||||
TUint32 restSize = totsize-pointer.Length();
|
||||
pointer.Append(cacheBuffer.Left(restSize));
|
||||
entry->_inputPos = restSize;
|
||||
entry->_inputBufferLen = cacheBuffer.Length();
|
||||
} else {
|
||||
pointer.Append(cacheBuffer);
|
||||
entry->_inputPos = KErrNotFound;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((numItems * size) != pointer.Length() && entry->_lastError == KErrNone) {
|
||||
entry->_eofReached = ETrue;
|
||||
}
|
||||
|
||||
return pointer.Length() / size;
|
||||
}
|
||||
|
||||
SymbianStdioStream::SymbianStdioStream(void *handle) : _handle(handle) {
|
||||
assert(handle);
|
||||
}
|
||||
|
||||
SymbianStdioStream::~SymbianStdioStream() {
|
||||
((TSymbianFileEntry *)(_handle))->_fileHandle.Close();
|
||||
|
||||
delete (TSymbianFileEntry *)(_handle);
|
||||
}
|
||||
|
||||
bool SymbianStdioStream::err() const {
|
||||
return ((TSymbianFileEntry *)(_handle))->_lastError != 0;
|
||||
}
|
||||
|
||||
void SymbianStdioStream::clearErr() {
|
||||
((TSymbianFileEntry *)(_handle))->_lastError = 0;
|
||||
((TSymbianFileEntry *)(_handle))->_eofReached = 0;
|
||||
}
|
||||
|
||||
bool SymbianStdioStream::eos() const {
|
||||
TSymbianFileEntry* entry = ((TSymbianFileEntry *)(_handle));
|
||||
|
||||
return entry->_eofReached != 0;
|
||||
}
|
||||
|
||||
int64 SymbianStdioStream::pos() const {
|
||||
TInt pos = 0;
|
||||
TSymbianFileEntry* entry = ((TSymbianFileEntry *)(_handle));
|
||||
|
||||
entry->_lastError = entry->_fileHandle.Seek(ESeekCurrent, pos);
|
||||
if (entry->_lastError == KErrNone && entry->_inputPos != KErrNotFound) {
|
||||
pos += (entry->_inputPos - entry->_inputBufferLen);
|
||||
}
|
||||
|
||||
return pos;
|
||||
}
|
||||
|
||||
int64 SymbianStdioStream::size() const {
|
||||
|
||||
TInt length = 0;
|
||||
((TSymbianFileEntry *)(_handle))->_fileHandle.Size(length);
|
||||
|
||||
return length;
|
||||
}
|
||||
|
||||
bool SymbianStdioStream::seek(int64 offs, int whence) {
|
||||
assert(_handle);
|
||||
|
||||
TSeek seekMode = ESeekStart;
|
||||
TInt pos = offs;
|
||||
TSymbianFileEntry* entry = ((TSymbianFileEntry *)(_handle));
|
||||
|
||||
switch (whence) {
|
||||
case SEEK_SET:
|
||||
seekMode = ESeekStart;
|
||||
break;
|
||||
case SEEK_CUR:
|
||||
seekMode = ESeekCurrent;
|
||||
if (entry->_inputPos != KErrNotFound) {
|
||||
pos += (entry->_inputPos - entry->_inputBufferLen);
|
||||
}
|
||||
break;
|
||||
case SEEK_END:
|
||||
seekMode = ESeekEnd;
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
entry->_inputPos = KErrNotFound;
|
||||
entry->_eofReached = EFalse;
|
||||
entry->_fileHandle.Seek(seekMode, pos);
|
||||
|
||||
return true; // FIXME: Probably should return a value based on what _fileHandle.Seek returns.
|
||||
}
|
||||
|
||||
uint32 SymbianStdioStream::read(void *ptr, uint32 len) {
|
||||
return (uint32)ReadData((byte *)ptr, 1, len, (TSymbianFileEntry *)_handle);
|
||||
}
|
||||
|
||||
uint32 SymbianStdioStream::write(const void *ptr, uint32 len) {
|
||||
TPtrC8 pointer( (unsigned char*) ptr, len);
|
||||
|
||||
((TSymbianFileEntry *)(_handle))->_inputPos = KErrNotFound;
|
||||
((TSymbianFileEntry *)(_handle))->_lastError = ((TSymbianFileEntry *)(_handle))->_fileHandle.Write(pointer);
|
||||
((TSymbianFileEntry *)(_handle))->_eofReached = EFalse;
|
||||
|
||||
if (((TSymbianFileEntry *)(_handle))->_lastError == KErrNone) {
|
||||
return len;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool SymbianStdioStream::flush() {
|
||||
((TSymbianFileEntry *)(_handle))->_fileHandle.Flush();
|
||||
return true;
|
||||
}
|
||||
|
||||
SymbianStdioStream *SymbianStdioStream::makeFromPath(const Common::String &path, bool writeMode) {
|
||||
void *handle = CreateSymbianFileEntry(path.c_str(), writeMode ? "wb" : "rb");
|
||||
if (handle)
|
||||
return new SymbianStdioStream(handle);
|
||||
return 0;
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BACKENDS_FS_SYMBIANSTDIOSTREAM_H
|
||||
#define BACKENDS_FS_SYMBIANSTDIOSTREAM_H
|
||||
|
||||
#include "common/scummsys.h"
|
||||
#include "common/noncopyable.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/str.h"
|
||||
|
||||
class SymbianStdioStream final : public Common::SeekableReadStream, public Common::SeekableWriteStream, public Common::NonCopyable {
|
||||
protected:
|
||||
/** File handle to the actual file. */
|
||||
void *_handle;
|
||||
|
||||
public:
|
||||
/**
|
||||
* Given a path, invokes fopen on that path and wrap the result in a
|
||||
* StdioStream instance.
|
||||
*/
|
||||
static SymbianStdioStream *makeFromPath(const Common::String &path, bool writeMode);
|
||||
|
||||
SymbianStdioStream(void *handle);
|
||||
~SymbianStdioStream() override;
|
||||
|
||||
bool err() const override;
|
||||
void clearErr() override;
|
||||
bool eos() const override;
|
||||
|
||||
uint32 write(const void *dataPtr, uint32 dataSize) override;
|
||||
bool flush() override;
|
||||
|
||||
int64 pos() const override;
|
||||
int64 size() const override;
|
||||
bool seek(int64 offs, int whence = SEEK_SET) override;
|
||||
uint32 read(void *dataPtr, uint32 dataSize) override;
|
||||
};
|
||||
|
||||
#endif
|
@ -30,9 +30,7 @@
|
||||
|
||||
class SdlEventSource;
|
||||
|
||||
#ifndef __SYMBIAN32__
|
||||
#define USE_OSD 1
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Base class for a SDL based graphics manager.
|
||||
|
@ -85,7 +85,7 @@ AspectRatio::AspectRatio(int w, int h) {
|
||||
_kh = h;
|
||||
}
|
||||
|
||||
#if !defined(__SYMBIAN32__) && defined(USE_ASPECT)
|
||||
#if defined(USE_ASPECT)
|
||||
static AspectRatio getDesiredAspectRatio() {
|
||||
const size_t AR_COUNT = 4;
|
||||
const char *desiredAspectRatioAsStrings[AR_COUNT] = { "auto", "4/3", "16/9", "16/10" };
|
||||
@ -149,7 +149,7 @@ SurfaceSdlGraphicsManager::SurfaceSdlGraphicsManager(SdlEventSource *sdlEventSou
|
||||
_enableFocusRectDebugCode = ConfMan.getBool("use_sdl_debug_focusrect");
|
||||
#endif
|
||||
|
||||
#if !defined(__SYMBIAN32__) && defined(USE_ASPECT)
|
||||
#if defined(USE_ASPECT)
|
||||
_videoMode.aspectRatioCorrection = ConfMan.getBool("aspect_ratio");
|
||||
_videoMode.desiredAspectRatio = getDesiredAspectRatio();
|
||||
#else // for small screen platforms
|
||||
|
@ -103,12 +103,8 @@ void SdlMixerManager::init() {
|
||||
if (_obtained.samples != desired.samples)
|
||||
warning("SDL mixer output buffer size: %d differs from desired: %d", _obtained.samples, desired.samples);
|
||||
|
||||
#ifndef __SYMBIAN32__
|
||||
// The SymbianSdlMixerManager does stereo->mono downmixing,
|
||||
// but otherwise we require stereo output.
|
||||
if (_obtained.channels != 2)
|
||||
error("SDL mixer output requires stereo output device");
|
||||
#endif
|
||||
|
||||
_mixer = new Audio::MixerImpl(_obtained.freq, desired.samples);
|
||||
assert(_mixer);
|
||||
|
@ -1,73 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef __SYMBIAN32__
|
||||
|
||||
#include "backends/mixer/symbiansdl/symbiansdl-mixer.h"
|
||||
#include "common/system.h"
|
||||
|
||||
#ifdef SAMPLES_PER_SEC_8000 // the GreanSymbianMMP format cannot handle values for defines :(
|
||||
#define SAMPLES_PER_SEC 8000
|
||||
#else
|
||||
#define SAMPLES_PER_SEC 16000
|
||||
#endif
|
||||
|
||||
SymbianSdlMixerManager::SymbianSdlMixerManager()
|
||||
:
|
||||
_stereoMixBuffer(0) {
|
||||
|
||||
}
|
||||
|
||||
SymbianSdlMixerManager::~SymbianSdlMixerManager() {
|
||||
delete[] _stereoMixBuffer;
|
||||
}
|
||||
|
||||
void SymbianSdlMixerManager::startAudio() {
|
||||
// Need to create mixbuffer for stereo mix to downmix
|
||||
if (_obtained.channels != 2) {
|
||||
_stereoMixBuffer = new byte [_obtained.size * 2]; // * 2 for stereo values
|
||||
}
|
||||
|
||||
SdlMixerManager::startAudio();
|
||||
}
|
||||
|
||||
void SymbianSdlMixerManager::callbackHandler(byte *samples, int len) {
|
||||
assert(_mixer);
|
||||
#if defined(S60) && !defined(S60V3)
|
||||
// If not stereo then we need to downmix
|
||||
if (_obtained.channels != 2) {
|
||||
_mixer->mixCallback(_stereoMixBuffer, len * 2);
|
||||
|
||||
int16 *bitmixDst = (int16 *)samples;
|
||||
int16 *bitmixSrc = (int16 *)_stereoMixBuffer;
|
||||
|
||||
for (int loop = len / 2; loop >= 0; loop --) {
|
||||
*bitmixDst = (*bitmixSrc + *(bitmixSrc + 1)) >> 1;
|
||||
bitmixDst++;
|
||||
bitmixSrc += 2;
|
||||
}
|
||||
} else
|
||||
#else
|
||||
_mixer->mixCallback(samples, len);
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif
|
@ -1,42 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BACKENDS_MIXER_SYMBIAN_SDL_H
|
||||
#define BACKENDS_MIXER_SYMBIAN_SDL_H
|
||||
|
||||
#include "backends/mixer/sdl/sdl-mixer.h"
|
||||
|
||||
/**
|
||||
* SDL mixer manager for Symbian
|
||||
*/
|
||||
class SymbianSdlMixerManager : public SdlMixerManager {
|
||||
public:
|
||||
SymbianSdlMixerManager();
|
||||
virtual ~SymbianSdlMixerManager();
|
||||
|
||||
protected:
|
||||
byte *_stereoMixBuffer;
|
||||
|
||||
virtual void startAudio();
|
||||
virtual void callbackHandler(byte *samples, int len);
|
||||
};
|
||||
|
||||
#endif
|
@ -23,7 +23,7 @@
|
||||
#define BACKEND_SDL_SYS_H
|
||||
|
||||
// The purpose of this header is to include the SDL headers in a uniform
|
||||
// fashion, even on the Symbian port.
|
||||
// fashion.
|
||||
// Moreover, it contains a workaround for the fact that SDL_rwops.h uses
|
||||
// a FILE pointer in one place, which conflicts with common/forbidden.h.
|
||||
// The SDL 1.3 headers also include strings.h
|
||||
@ -168,11 +168,7 @@
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(__SYMBIAN32__)
|
||||
#include <esdl\SDL.h>
|
||||
#else
|
||||
#include <SDL.h>
|
||||
#endif
|
||||
|
||||
// Ignore warnings from system headers pulled by SDL
|
||||
#pragma warning(push)
|
||||
|
@ -1 +0,0 @@
|
||||
>> SumthinWicked *grins* <<
|
@ -1,546 +0,0 @@
|
||||
|
||||
use Cwd;
|
||||
|
||||
$buildDir = getcwd();
|
||||
chdir("../../../");
|
||||
|
||||
# list of project files to process
|
||||
@mmp_files = (
|
||||
|
||||
# Engine Project files
|
||||
"mmp/scummvm_agi.mmp",
|
||||
"mmp/scummvm_agos.mmp",
|
||||
"mmp/scummvm_cge.mmp",
|
||||
"mmp/scummvm_cine.mmp",
|
||||
"mmp/scummvm_composer.mmp",
|
||||
"mmp/scummvm_cruise.mmp",
|
||||
"mmp/scummvm_draci.mmp",
|
||||
"mmp/scummvm_drascula.mmp",
|
||||
"mmp/scummvm_dreamweb.mmp",
|
||||
"mmp/scummvm_gob.mmp",
|
||||
"mmp/scummvm_groovie.mmp",
|
||||
"mmp/scummvm_hopkins.mmp",
|
||||
"mmp/scummvm_hugo.mmp",
|
||||
"mmp/scummvm_kyra.mmp",
|
||||
"mmp/scummvm_lure.mmp",
|
||||
"mmp/scummvm_m4.mmp",
|
||||
"mmp/scummvm_made.mmp",
|
||||
"mmp/scummvm_mohawk.mmp",
|
||||
"mmp/scummvm_mortevielle.mmp",
|
||||
"mmp/scummvm_neverhood.mmp",
|
||||
"mmp/scummvm_parallaction.mmp",
|
||||
"mmp/scummvm_pegasus.mmp",
|
||||
"mmp/scummvm_queen.mmp",
|
||||
"mmp/scummvm_saga.mmp",
|
||||
"mmp/scummvm_sci.mmp",
|
||||
"mmp/scummvm_scumm.mmp",
|
||||
"mmp/scummvm_sky.mmp",
|
||||
"mmp/scummvm_sword1.mmp",
|
||||
"mmp/scummvm_sword2.mmp",
|
||||
"mmp/scummvm_teenagent.mmp",
|
||||
"mmp/scummvm_tinsel.mmp",
|
||||
"mmp/scummvm_toltecs.mmp",
|
||||
"mmp/scummvm_tony.mmp",
|
||||
"mmp/scummvm_toon.mmp",
|
||||
"mmp/scummvm_touche.mmp",
|
||||
"mmp/scummvm_tsage.mmp",
|
||||
"mmp/scummvm_tucker.mmp",
|
||||
"mmp/scummvm_voyeur.mmp",
|
||||
"mmp/scummvm_wintermute.mmp",
|
||||
# New engines
|
||||
"mmp/scummvm_access.mmp",
|
||||
"mmp/scummvm_avalanche.mmp",
|
||||
"mmp/scummvm_bbvs.mmp",
|
||||
"mmp/scummvm_cge2.mmp",
|
||||
"mmp/scummvm_fullpipe.mmp",
|
||||
"mmp/scummvm_lastexpress.mmp",
|
||||
"mmp/scummvm_mads.mmp",
|
||||
"mmp/scummvm_prince.mmp",
|
||||
"mmp/scummvm_sherlock.mmp",
|
||||
"mmp/scummvm_sword25.mmp",
|
||||
"mmp/scummvm_testbed.mmp",
|
||||
"mmp/scummvm_zvision.mmp",
|
||||
# Target Platform Project Files
|
||||
"S60/ScummVM_S60.mmp",
|
||||
"S60v3/ScummVM_S60v3.mmp",
|
||||
"S60v3/ScummVM_A0000658_S60v3.mmp",
|
||||
"S80/ScummVM_S80.mmp",
|
||||
"S90/ScummVM_S90.mmp",
|
||||
"UIQ2/ScummVM_UIQ2.mmp",
|
||||
"UIQ3/ScummVM_UIQ3.mmp",
|
||||
"UIQ3/ScummVM_A0000658_UIQ3.mmp"
|
||||
|
||||
);
|
||||
|
||||
# do this first to set all *.mmp & *.inf files to *.*.in states
|
||||
ResetProjectFiles();
|
||||
|
||||
print "
|
||||
=======================================================================================
|
||||
Updating slave MACRO settings in MMP files from master 'scummvm_base.mmp'
|
||||
=======================================================================================
|
||||
|
||||
";
|
||||
|
||||
# do this first so we have @EnabledDefines and @DisabledDefines for correct inclusion of SOURCE files later
|
||||
UpdateSlaveMacros();
|
||||
|
||||
print "
|
||||
=======================================================================================
|
||||
Preparing to update all the Symbian MMP project files with objects from module.mk files
|
||||
=======================================================================================
|
||||
|
||||
";
|
||||
|
||||
|
||||
# some modules.mk files have #ifndef ENABLE_XXXX blocks:
|
||||
my @section_empty = (""); # section standard: no #ifdef's in module.mk files
|
||||
my @sections_agos = ("", "ENABLE_AGOS2"); # special sections for engine AGOS
|
||||
my @sections_groovie = ("", "ENABLE_GROOVIE2"); # special sections for engine GROOVIE
|
||||
my @sections_kyra = ("", "ENABLE_LOL","ENABLE_EOB"); # special sections for engine KYRA
|
||||
my @sections_mohawk = ("", "ENABLE_CSTIME", "ENABLE_MYST", "ENABLE_RIVEN"); # special sections for engine MOHAWK
|
||||
my @sections_saga = ("", "ENABLE_IHNM", "ENABLE_SAGA2"); # special sections for engine SAGA
|
||||
my @sections_sci = ("", "ENABLE_SCI32"); # special sections for engine SCI
|
||||
my @sections_scumm = ("", "ENABLE_SCUMM_7_8", "ENABLE_HE"); # special sections for engine SCUMM
|
||||
|
||||
# files excluded from build, case insensitive, will be matched in filename string only
|
||||
my @excludes_snd = (
|
||||
"mt32.*",
|
||||
"Analog.cpp",
|
||||
"fluidsynth.cpp",
|
||||
"i386.cpp",
|
||||
"part.*",
|
||||
"tables.cpp",
|
||||
"freeverb.cpp",
|
||||
"synth.cpp",
|
||||
"aReverbmodel.cpp",
|
||||
"bReverbmodel.cpp",
|
||||
"DelayReverb.cpp",
|
||||
"LA32WaveGenerator.cpp",
|
||||
"LegacyWaveGenerator.cpp",
|
||||
"ROMInfo.cpp",
|
||||
"FreeVerb.cpp",
|
||||
"FreeVerbModel.cpp",
|
||||
"La32Ramp.cpp",
|
||||
"Poly.cpp",
|
||||
"TVA.cpp",
|
||||
"TVF.cpp",
|
||||
"TVP.cpp"
|
||||
);
|
||||
|
||||
my @excludes_graphics = (
|
||||
);
|
||||
|
||||
my @excludes_gui = (
|
||||
);
|
||||
|
||||
# the USE_ARM_* defines not parsed correctly, exclude manually:
|
||||
my @excludes_scumm = (
|
||||
".*ARM.*", # the *ARM.s files are added in .mmp files based on WINS/ARM build!
|
||||
# USE_ARM_SMUSH_ASM codec47ARM.s
|
||||
# USE_ARM_GFX_ASM gfxARM.s
|
||||
# USE_ARM_COSTUME_ASM proc3ARM.s compiled, linked?, but *not* used :P (portdefs.h)
|
||||
);
|
||||
|
||||
|
||||
#ParseModule(mmpStr, dirStr, ifdefArray, [exclusionsArray])
|
||||
ParseModule("_base", "base", \@section_empty); # now in ./TRG/ScummVM_TRG.mmp, these never change anyways...
|
||||
ParseModule("_base", "common", \@section_empty);
|
||||
ParseModule("_base", "gui", \@section_empty, \@excludes_gui);
|
||||
ParseModule("_base", "graphics", \@section_empty, \@excludes_graphics);
|
||||
ParseModule("_base", "image", \@section_empty);
|
||||
ParseModule("_base", "audio", \@section_empty, \@excludes_snd);
|
||||
ParseModule("_base", "video", \@section_empty);
|
||||
|
||||
chdir("engines/");
|
||||
ParseModule("_scumm", "scumm", \@sections_scumm, \@excludes_scumm );
|
||||
ParseModule("_agi", "agi", \@section_empty);
|
||||
ParseModule("_agos", "agos", \@sections_agos);
|
||||
ParseModule("_cine", "cine", \@section_empty);
|
||||
ParseModule("_composer","composer", \@section_empty);
|
||||
ParseModule("_cruise", "cruise", \@section_empty);
|
||||
ParseModule("_cge", "cge", \@section_empty);
|
||||
ParseModule("_draci", "draci", \@section_empty);
|
||||
ParseModule("_drascula","drascula", \@section_empty);
|
||||
ParseModule("_dreamweb" ,"dreamweb", \@section_empty);
|
||||
ParseModule("_gob", "gob", \@section_empty);
|
||||
ParseModule("_groovie", "groovie", \@sections_groovie);
|
||||
ParseModule("_hopkins","hopkins", \@section_empty);
|
||||
ParseModule("_hugo" ,"hugo", \@section_empty);
|
||||
ParseModule("_kyra", "kyra", \@sections_kyra);
|
||||
ParseModule("_lure", "lure", \@section_empty);
|
||||
ParseModule("_made", "made", \@section_empty);
|
||||
ParseModule("_mohawk" ,"mohawk", \@sections_mohawk);
|
||||
ParseModule("_mortevielle" ,"mortevielle", \@section_empty);
|
||||
ParseModule("_neverhood" ,"neverhood", \@section_empty);
|
||||
ParseModule("_parallaction","parallaction",\@section_empty);
|
||||
ParseModule("_pegasus","pegasus", \@section_empty);
|
||||
ParseModule("_queen", "queen", \@section_empty);
|
||||
ParseModule("_saga", "saga", \@sections_saga);
|
||||
ParseModule("_sci", "sci", \@sections_sci);
|
||||
ParseModule("_sky", "sky", \@section_empty);
|
||||
ParseModule("_sword1", "sword1", \@section_empty);
|
||||
ParseModule("_sword2", "sword2", \@section_empty);
|
||||
ParseModule("_teenagent","teenagent", \@section_empty);
|
||||
ParseModule("_tinsel", "tinsel", \@section_empty);
|
||||
ParseModule("_toltecs","toltecs", \@section_empty);
|
||||
ParseModule("_tony", "tony", \@section_empty);
|
||||
ParseModule("_toon" ,"toon", \@section_empty);
|
||||
ParseModule("_touche", "touche", \@section_empty);
|
||||
ParseModule("_tsage", "tsage", \@section_empty);
|
||||
ParseModule("_tucker", "tucker", \@section_empty);
|
||||
ParseModule("_voyeur" ,"voyeur", \@section_empty);
|
||||
ParseModule("_wintermute","wintermute", \@section_empty);
|
||||
##### new engines
|
||||
ParseModule("_access" ,"access", \@section_empty);
|
||||
ParseModule("_avalanche" ,"avalanche", \@section_empty);
|
||||
ParseModule("_bbvs" ,"bbvs", \@section_empty);
|
||||
ParseModule("_cge2" ,"cge2", \@section_empty);
|
||||
ParseModule("_fullpipe" ,"fullpipe", \@section_empty);
|
||||
ParseModule("_lastexpress","lastexpress", \@section_empty);
|
||||
ParseModule("_m4", "m4", \@section_empty);
|
||||
ParseModule("_mads" ,"mads", \@section_empty);
|
||||
ParseModule("_prince" ,"prince", \@section_empty);
|
||||
ParseModule("_sherlock" ,"sherlock", \@section_empty);
|
||||
ParseModule("_sword25" ,"sword25", \@section_empty);
|
||||
ParseModule("_testbed" ,"testbed", \@section_empty);
|
||||
ParseModule("_zvision" ,"zvision", \@section_empty);
|
||||
print "
|
||||
=======================================================================================
|
||||
Done. Enjoy :P
|
||||
=======================================================================================
|
||||
";
|
||||
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
|
||||
# parses multiple sections per mmp/module
|
||||
sub ParseModule
|
||||
{
|
||||
my ($mmp,$module,$sections,$exclusions) = @_;
|
||||
my @sections = @{$sections};
|
||||
my @exclusions = @{$exclusions};
|
||||
|
||||
foreach $section (@sections)
|
||||
{
|
||||
CheckForModuleMK($module, $section, @exclusions);
|
||||
UpdateProjectFile($mmp, $module, $section);
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
# parses all module.mk files in a dir and its subdirs
|
||||
sub CheckForModuleMK
|
||||
{
|
||||
my ($item,$section,@exclusions) = @_;
|
||||
|
||||
# if dir: check subdirs too
|
||||
if (-d $item)
|
||||
{
|
||||
#print "$item\n";
|
||||
|
||||
opendir DIR, $item;
|
||||
#my @Files = readdir DIR;
|
||||
my @Files = grep s/^([^\.].*)$/$1/, readdir DIR;
|
||||
closedir DIR;
|
||||
|
||||
foreach $entry (@Files)
|
||||
{
|
||||
CheckForModuleMK("$item/$entry", $section, @exclusions);
|
||||
}
|
||||
}
|
||||
|
||||
# if this is a module.mk file
|
||||
if (-f $item and $item =~ /.*\/module.mk$/)
|
||||
{
|
||||
my $sec = "";
|
||||
my $isenable;
|
||||
my $ObjectsSelected = 0;
|
||||
my $ObjectsTotal = 0;
|
||||
|
||||
print "$item for section '$section' ... ";
|
||||
|
||||
open FILE, $item;
|
||||
my @lines = <FILE>;
|
||||
close FILE;
|
||||
|
||||
my $count = @lines;
|
||||
print "$count lines";
|
||||
|
||||
A: foreach $line (@lines)
|
||||
{
|
||||
# all things we need are inside #ifdef sections,
|
||||
# there is nothing we need in #ifndef sections: so ignore these for now
|
||||
|
||||
# found a section? reset
|
||||
if ($line =~ /^ifdef (.*)/)
|
||||
{
|
||||
$sec = $1;
|
||||
$isenable = 1;
|
||||
}
|
||||
if ($line =~ /^ifndef (.*)/)
|
||||
{
|
||||
$sec = $1;
|
||||
$isenable = 0;
|
||||
}
|
||||
|
||||
# found an object? Not uncommented!
|
||||
if (!($line =~ /^#/) && $line =~ s/\.o/.cpp/)
|
||||
{
|
||||
# handle this section?
|
||||
if ($sec eq $section)
|
||||
{
|
||||
$ObjectsTotal++;
|
||||
|
||||
$line =~ s/^\s*//g; # remove possible leading whitespace
|
||||
$line =~ s/ \\//; # remove possible trailing ' \'
|
||||
$line =~ s/\//\\/g; # replace / with \
|
||||
chop($line); # remove \n
|
||||
|
||||
# do we need to skip this file? According to our own @exclusions array
|
||||
foreach $exclusion (@exclusions)
|
||||
{
|
||||
if ($line =~ /$exclusion/i)
|
||||
{
|
||||
my $reason = "excluded, \@exclusions[$exclusion]";
|
||||
print "\n ! $line ($reason)";
|
||||
$output .= "//SOURCE $line ($reason)\n";
|
||||
next A;
|
||||
}
|
||||
}
|
||||
|
||||
# do we need to do this file? According to MACROs in .MMPs
|
||||
my $found = 0;
|
||||
foreach $EnableDefine (@EnabledDefines)
|
||||
{
|
||||
if (($EnableDefine eq $section) && ($section ne ''))
|
||||
{
|
||||
$found = 1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
foreach $DisableDefine (@DisabledDefines)
|
||||
{
|
||||
if (($DisableDefine eq $section) && ($section ne ''))
|
||||
{
|
||||
$found = 0;
|
||||
last;
|
||||
}
|
||||
}
|
||||
# always allow non-sections
|
||||
$found = 1 if ($section eq '');
|
||||
if (!$found)
|
||||
{
|
||||
my $reason = "excluded, MACRO $section";
|
||||
print "\n !$line ($reason)";
|
||||
$output .= "//SOURCE $line ($reason)\n";
|
||||
next A;
|
||||
}
|
||||
|
||||
$ObjectsSelected++;
|
||||
#print "\n $line";
|
||||
$output .= "SOURCE $line\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
print " -- $ObjectsSelected/$ObjectsTotal objects selected\n";
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
# update an MMP project file with the new objects
|
||||
sub UpdateProjectFile
|
||||
{
|
||||
my ($mmp,$module,$section) = @_;
|
||||
my $n = "AUTO_OBJECTS_".uc($module)."_$section";
|
||||
my $a = "\/\/START_$n\/\/";
|
||||
my $b = "\/\/STOP_$n\/\/";
|
||||
my $updated = " Updated @ ".localtime();
|
||||
my $name;
|
||||
my @mmp_files_plus_one = @mmp_files;
|
||||
unshift @mmp_files_plus_one, "mmp/scummvm_base.mmp";
|
||||
|
||||
foreach $name (@mmp_files_plus_one)
|
||||
{
|
||||
my $file = "$buildDir/$name";
|
||||
|
||||
open FILE, "$file";
|
||||
my @lines = <FILE>;
|
||||
close FILE;
|
||||
|
||||
my $onestr = join("",@lines);
|
||||
|
||||
if ($onestr =~ /$n/)
|
||||
{
|
||||
|
||||
print " - $name @ $n updating ... ";
|
||||
|
||||
$onestr =~ s/$a.*$b/$a$updated\n$output$b/s;
|
||||
open FILE, ">$file";
|
||||
print FILE $onestr;
|
||||
close FILE;
|
||||
|
||||
print "done.\n";
|
||||
}
|
||||
}
|
||||
|
||||
$output = "";
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub UpdateSlaveMacros
|
||||
{
|
||||
my $updated = " Updated @ ".localtime();
|
||||
|
||||
my $name = "mmp/scummvm_base.mmp";
|
||||
my $file = "$buildDir/$name";
|
||||
print "Reading master MACROS from backends/symbian/$name ... ";
|
||||
|
||||
open FILE, "$file";
|
||||
my @lines = <FILE>;
|
||||
close FILE;
|
||||
my $onestr = join("",@lines);
|
||||
|
||||
my $n = "AUTO_MACROS_MASTER";
|
||||
my $a = "\/\/START_$n\/\/";
|
||||
my $b = "\/\/STOP_$n\/\/";
|
||||
$onestr =~ /$a(.*)$b/s;
|
||||
my $macros = $1;
|
||||
|
||||
my $libs_first = "\n// automagically enabled static libs from macros above\n";
|
||||
my $libs_second = "STATICLIBRARY scummvm_base.lib // must be above USE_* .libs\n";
|
||||
my $macro_counter = 0;
|
||||
my $macros2 = "\n"; # output for in *.mmp MACROS section
|
||||
my $projects = "\n..\\mmp\\scummvm_base.mmp\n"; # output for in BLD.INF projects section
|
||||
|
||||
foreach $line (split("\n", $macros))
|
||||
{
|
||||
# do we need to add a static .lib?
|
||||
if ($line =~ /^.*MACRO\s*([0-9A-Z_]*)\s*\/\/\s*LIB\:(.*)$/)
|
||||
{
|
||||
my $macro = $1; my $lib = $2;
|
||||
|
||||
# this macro enabled? then also add the .lib
|
||||
if ($line =~ /^\s*MACRO\s*$macro/m)
|
||||
{
|
||||
# add an USE_ lib? (these need to be added @ the beginning, before _base)
|
||||
$libs_second .= "STATICLIBRARY $lib\n" if ($macro =~ /^USE_/);
|
||||
|
||||
# add an ENABLE_ lib? (these need to be added @ the end, after _base)
|
||||
if ($macro =~ /^ENABLE_/)
|
||||
{
|
||||
$libs_first .= "STATICLIBRARY $lib\n";
|
||||
|
||||
# add projects for BLD.INF's
|
||||
my $projectname = substr("$lib",0,-4);
|
||||
$projects .= "..\\mmp\\$projectname.mmp\n";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
# skip lines not beginning with "MACRO" (like "//MACRO")
|
||||
}
|
||||
$macro_counter++;
|
||||
}
|
||||
|
||||
# not commented out? then add the macro to output string
|
||||
if ($line =~ /^\s*MACRO\s*([0-9A-Z_]*)\s*/)
|
||||
{
|
||||
my $macro = $1;
|
||||
$macros2 .= "$line\n";
|
||||
if ($macro =~ /^ENABLE_/)
|
||||
{
|
||||
push @EnabledDefines, $macro; # used in CheckForModuleMK()!!
|
||||
}
|
||||
elsif ($macro =~ /^DISABLE_/)
|
||||
{
|
||||
push @DisabledDefines, $macro; # used in CheckForModuleMK()!!
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
print "$macro_counter macro lines.\n";
|
||||
|
||||
$n = "AUTO_MACROS_SLAVE";
|
||||
$a = "\/\/START_$n\/\/";
|
||||
$b = "\/\/STOP_$n\/\/";
|
||||
|
||||
$m = "AUTO_PROJECTS";
|
||||
$p = "\/\/START_$m\/\/";
|
||||
$q = "\/\/STOP_$m\/\/";
|
||||
|
||||
foreach $name (@mmp_files)
|
||||
{
|
||||
$file = "$buildDir/$name";
|
||||
$fileBLDINF = $buildDir .'/'. substr($name, 0, rindex($name, "/")) . "/BLD.INF";
|
||||
print "Updating macros in $file ... ";
|
||||
#print "Updating macros in backends/symbian/$name ... ";
|
||||
|
||||
open FILE, "$file"; @lines = <FILE>; close FILE;
|
||||
$onestr = join("",@lines);
|
||||
|
||||
my $extralibs = ""; # output
|
||||
# slash in name means it's a phone specific build file: add LIBs
|
||||
$extralibs .= "$libs_first$libs_second" if (-e $fileBLDINF);
|
||||
|
||||
$onestr =~ s/$a.*$b/$a$updated$macros2$extralibs$b/s;
|
||||
|
||||
open FILE, ">$file"; print FILE $onestr; close FILE;
|
||||
|
||||
my $count = @lines;
|
||||
print "wrote $count lines.\n";
|
||||
|
||||
if (-e $fileBLDINF)
|
||||
{
|
||||
# slash in name means it's a phone specific build file:
|
||||
# this also means we need to update a BLD.INF file here!
|
||||
print "Updating projects in $fileBLDINF ... \n";
|
||||
|
||||
open FILE, "$fileBLDINF"; @lines = <FILE>; close FILE;
|
||||
$onestr = join("",@lines);
|
||||
|
||||
$onestr =~ s/$p.*$q/$p$updated$projects$q/s;
|
||||
|
||||
open FILE, ">$fileBLDINF"; print FILE $onestr; close FILE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub ResetProjectFiles()
|
||||
{
|
||||
my $onestr, @lines;
|
||||
my @mmp_files_plus_one = @mmp_files;
|
||||
# unshift @mmp_files_plus_one, "mmp/scummvm_base.mmp";
|
||||
|
||||
print "Resetting project files: ";
|
||||
|
||||
# we don't need to do mmp/scummvm_base.mmp", it was done in BuildPackageUpload.pl before the call to this script
|
||||
foreach $name (@mmp_files_plus_one)
|
||||
{
|
||||
my $file = "$buildDir/$name";
|
||||
|
||||
print "$name ";
|
||||
open FILE, "$file.in"; @lines = <FILE>; close FILE;
|
||||
$onestr = join("",@lines);
|
||||
open FILE, ">$file"; print FILE $onestr; close FILE;
|
||||
|
||||
# also do BLD.INF if it is there...
|
||||
my $fileBLDINF = $buildDir .'/'. substr($name, 0, rindex($name, "/")) . "/BLD.INF";
|
||||
if (-e "$fileBLDINF.in")
|
||||
{
|
||||
print substr($name, 0, rindex($name, "/")) . "/BLD.INF ";
|
||||
open FILE, "$fileBLDINF.in"; @lines = <FILE>; close FILE;
|
||||
$onestr = join("",@lines);
|
||||
open FILE, ">$fileBLDINF"; print FILE $onestr; close FILE;
|
||||
}
|
||||
}
|
||||
|
||||
print "... done.\n";
|
||||
}
|
||||
|
||||
##################################################################################################################
|
@ -1,804 +0,0 @@
|
||||
|
||||
use Cwd;
|
||||
use Switch;
|
||||
#use feature "switch";
|
||||
|
||||
system("cls");
|
||||
require "BuildPackageUpload_LocalSettings.pl";
|
||||
|
||||
##################################################################################################################
|
||||
# prep some vars
|
||||
|
||||
# the dir containing the build files: '.\backends\platforms\symbian\$SDK_BuildDir\'
|
||||
$SDK_BuildDirs{'UIQ2'} = "UIQ2";
|
||||
$SDK_BuildDirs{'UIQ3'} = "UIQ3";
|
||||
$SDK_BuildDirs{'S60v1'} = "S60";
|
||||
$SDK_BuildDirs{'S60v2'} = "S60";
|
||||
$SDK_BuildDirs{'S60v3'} = "S60v3";
|
||||
$SDK_BuildDirs{'S80'} = "S80";
|
||||
$SDK_BuildDirs{'S90'} = "S90";
|
||||
|
||||
# the target name inserted here: 'abld BUILD $SDK_TargetName UREL'
|
||||
$SDK_TargetName{'UIQ2'} = "armi";
|
||||
$SDK_TargetName{'UIQ3'} = "gcce";
|
||||
$SDK_TargetName{'S60v1'}= "armi";
|
||||
$SDK_TargetName{'S60v2'}= "armi";
|
||||
$SDK_TargetName{'S60v3'}= "gcce";
|
||||
$SDK_TargetName{'S80'} = "armi";
|
||||
$SDK_TargetName{'S90'} = "armi";
|
||||
|
||||
# Binaries are installed here: '$SDK_RootDirs\epoc32\release\$SDK_TargetDir\urel\'
|
||||
$SDK_TargetDir{'UIQ2'} = "armi";
|
||||
$SDK_TargetDir{'UIQ3'} = "armv5";
|
||||
$SDK_TargetDir{'S60v1'} = "armi";
|
||||
$SDK_TargetDir{'S60v2'} = "armi";
|
||||
$SDK_TargetDir{'S60v3'} = "armv5";
|
||||
$SDK_TargetDir{'S80'} = "armi";
|
||||
$SDK_TargetDir{'S90'} = "armi";
|
||||
|
||||
$build_dir = getcwd();
|
||||
$output_dir = "$build_dir/Packages";
|
||||
chdir("../../../");
|
||||
$base_dir = getcwd();
|
||||
chdir($build_dir);
|
||||
$build_log_out = "$build_dir/out.build.out.log"; # don't start these files with "Build"
|
||||
$build_log_err = "$build_dir/out.build.err.log"; # so "B"+TAB completion works in 1 go :P
|
||||
|
||||
$initial_path = $ENV{'PATH'}; # so we can start with a fresh PATH for each Build
|
||||
|
||||
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
|
||||
$date = sprintf("%02d%02d%02d", $year-100, $mon+=1, $mday);
|
||||
$file_tpl_pkg = "scummvm-CVS-Symbian%s.pkg";
|
||||
$file_tpl_sis = "scummvm-%s-Symbian%s%s.sis";
|
||||
$version_tpl_sis = "$date"; # "CVS$date"
|
||||
|
||||
$PackagesQueued = 0;
|
||||
$PackagesCreated = 0;
|
||||
$PackagesUploaded = 0;
|
||||
@ErrorMessages = ();
|
||||
$ftp_url = "FTP://$FTP_User\@$FTP_Host/$FTP_Dir/";
|
||||
|
||||
# these macros are always defined:
|
||||
$ExtraMacros = "MACRO NONSTANDARD_PORT\n";
|
||||
$ExtraMacros .= "MACRO ENABLE_VKEYBD\n";
|
||||
$ExtraMacros .= "MACRO DISABLE_FANCY_THEMES\n";
|
||||
$ExtraMacros .= "MACRO USE_TRANSLATION\n";
|
||||
$ExtraMacros .= "MACRO USE_BINK\n";
|
||||
# $ExtraMacros .= "MACRO \n";
|
||||
# candidates are : USE_TIMIDITY
|
||||
|
||||
# prep nice list of SDKs
|
||||
#while( ($SDK, $RootDir) = each(%SDK_RootDirs) )
|
||||
foreach $SDK (sort keys(%SDK_RootDirs))
|
||||
{
|
||||
# see if it exists!
|
||||
if (-d $SDK_RootDirs{$SDK})
|
||||
{
|
||||
$SDKs .= "$SDK\t$SDK_RootDirs{$SDK}\n\t\t\t";
|
||||
}
|
||||
else # missing?
|
||||
{
|
||||
$SDKs .= "$SDK\t$SDK_RootDirs{$SDK}\t[MISSING: Skipping!]\n\t\t\t";
|
||||
# remove it from array, to prevent building!
|
||||
delete $SDK_RootDirs{$SDK};
|
||||
}
|
||||
}
|
||||
|
||||
# prep nice list of Libraries
|
||||
while( ($SDK, $Value) = each(%SDK_LibraryDirs) )
|
||||
{
|
||||
while( ($Library, $Path) = each(%{$SDK_LibraryDirs{$SDK}}) )
|
||||
{
|
||||
# maybe it's already been built?
|
||||
if (-e $SDK_RootDirs{$SDK}."\\epoc32\\release\\$SDK_TargetDir{$SDK}\\urel\\$Library")
|
||||
{
|
||||
$PresentLibs{$Library} = "$Path [EXISTS: Skipping!]";
|
||||
delete $SDK_LibraryDirs{$SDK}{$Library};
|
||||
}
|
||||
else # make it!
|
||||
{
|
||||
$PresentLibs{$Library} = "$Path";
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach $Library (sort keys(%PresentLibs))
|
||||
{
|
||||
$LIBs .= "$Library\t$PresentLibs{$Library}\n\t\t\t";
|
||||
}
|
||||
|
||||
# prep nice list of Variations
|
||||
#while( ($SDK, $Value) = each(%SDK_Variations) )
|
||||
#{
|
||||
# while( ($Variation, $Value2) = each(%{$SDK_Variations{$SDK}}) )
|
||||
# {
|
||||
# $Extra = ($Variation ne '' ? "_$Variation" : "");
|
||||
# if ($SDK eq "ALL")
|
||||
# {
|
||||
# while( ($SDK2, $RootDir) = each(%SDK_RootDirs) )
|
||||
# {
|
||||
# if ($SDK_RootDirs{$SDK2} ne '') # is this SDK listed as installed? (fails silently)
|
||||
# {
|
||||
# push @Packages, sprintf($file_tpl_sis, $version_tpl_sis, $SDK2, $Extra);
|
||||
# $PackagesQueued++;
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
# else
|
||||
# {
|
||||
# if ($SDK_RootDirs{$SDK} ne '') # is this SDK listed as installed? (fails silently)
|
||||
# {
|
||||
# push @Packages, sprintf($file_tpl_sis, $version_tpl_sis, $SDK, $Extra);
|
||||
# $PackagesQueued++;
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
#}
|
||||
while( ($SDK, $Value) = each(%VariationSets) )
|
||||
{
|
||||
while( ($Variation, $FeaturesBlock) = each(%{$VariationSets{$SDK}}) )
|
||||
{
|
||||
#my $MacroBlock = &MakeMppMacroDefs($FeaturesBlock);
|
||||
$Extra = ($Variation ne '' ? "_$Variation" : "");
|
||||
if ($SDK eq "ALL")
|
||||
{
|
||||
while( ($SDK2, $RootDir) = each(%SDK_RootDirs) )
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK2} ne '') # is this SDK listed as installed? (fails silently)
|
||||
{
|
||||
push @Packages, sprintf($file_tpl_sis, $version_tpl_sis, $SDK2, $Extra);
|
||||
$PackagesQueued++;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK} ne '') # is this SDK listed as installed? (fails silently)
|
||||
{
|
||||
push @Packages, sprintf($file_tpl_sis, $version_tpl_sis, $SDK, $Extra);
|
||||
$PackagesQueued++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach $Package (sort @Packages)
|
||||
{
|
||||
$PackagesStr .= "$Package\n\t\t\t";
|
||||
}
|
||||
|
||||
print "
|
||||
=======================================================================================
|
||||
Preparing to Build, Package & Upload $PackagesQueued SymbianOS ScummVM variations
|
||||
=======================================================================================
|
||||
|
||||
Producer \t$Producer (RedirE:$RedirectSTDERR HaltE:$HaltOnError Skip:$SkipExistingPackages Quiet:$ReallyQuiet)
|
||||
|
||||
SDKs inst'd \t$SDKs ".( %SDK_LibraryDirs ? "
|
||||
LIBs inst'd \t$LIBs " : "" )."
|
||||
$PackagesQueued Variations \t$PackagesStr
|
||||
DIR base \t$base_dir
|
||||
build \t$build_dir
|
||||
output \t$output_dir
|
||||
".( $FTP_Host ne '' ? "
|
||||
FTP host \t$FTP_Host
|
||||
user \t$FTP_User
|
||||
pass \t"."*" x length($FTP_Pass)."
|
||||
dir \t$FTP_Dir
|
||||
" : "" )."
|
||||
=======================================================================================
|
||||
Press Ctrl-C to abort or enter to continue Build, Package & Upload $PackagesQueued Variations...
|
||||
=======================================================================================
|
||||
";
|
||||
|
||||
$line = <STDIN>;
|
||||
|
||||
# make sure the output dir exists!
|
||||
mkdir($output_dir, 0755) if (! -d $output_dir);
|
||||
|
||||
unlink($build_log_out);
|
||||
unlink($build_log_err);
|
||||
|
||||
# init _base.mmp now, so we can start changing it without affecting the CVS version _base.mmp.in!
|
||||
my $name = "mmp/scummvm_base.mmp";
|
||||
my $file = "$build_dir/$name";
|
||||
open FILE, "$file.in"; @lines = <FILE>; close FILE;
|
||||
my $onestr = join("",@lines);
|
||||
open FILE, ">$file"; print FILE $onestr; close FILE;
|
||||
|
||||
##################################################################################################################
|
||||
# do the actual deeds for all present libs
|
||||
|
||||
while( ($SDK, $Value) = each(%SDK_LibraryDirs) )
|
||||
{
|
||||
while( ($Library, $Path) = each(%{$SDK_LibraryDirs{$SDK}}) )
|
||||
{
|
||||
if ($SDK eq "ALL")
|
||||
{
|
||||
while( ($SDK2, $RootDir) = each(%SDK_RootDirs) )
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK2} ne '') # is this SDK listed as installed? (fails silently)
|
||||
{
|
||||
# do we already have this one?
|
||||
next if (-e $SDK_RootDirs{$SDK2}."\\epoc32\\release\\$SDK_TargetDir{$SDK2}\\urel\\$Library");
|
||||
|
||||
$LibrariesQueued++;
|
||||
DoLibrary($SDK2, $Library, $Path);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK} ne '') # is this SDK listed as installed? (fails silently)
|
||||
{
|
||||
# do we already have this one?
|
||||
next if (-e $SDK_RootDirs{$SDK}."\\epoc32\\release\\$SDK_TargetDir{$SDK}\\urel\\$Library");
|
||||
|
||||
$LibrariesQueued++;
|
||||
DoLibrary($SDK, $Library, $Path);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#system('pause');
|
||||
|
||||
##################################################################################################################
|
||||
# do the actual deeds for all configured variations
|
||||
|
||||
while( ($SDK, $VariationsHash) = each(%SDK_Variations) )
|
||||
{
|
||||
while( ($Variation, $MacroBlock) = each(%{$SDK_Variations{$SDK}}) )
|
||||
{
|
||||
if ($SDK eq "ALL")
|
||||
{
|
||||
while( ($SDK2, $RootDir) = each(%SDK_RootDirs) )
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK2} ne '')
|
||||
{
|
||||
DoVariation($SDK2, $Variation, $MacroBlock);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK} ne '')
|
||||
{
|
||||
DoVariation($SDK, $Variation, $MacroBlock);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
while( ($SDK, $VariationsHash) = each(%VariationSets) )
|
||||
{
|
||||
while( ($Variation, $FeaturesBlock) = each(%{$VariationSets{$SDK}}) )
|
||||
{
|
||||
my $MacroBlock = &MakeMppMacroDefs($FeaturesBlock);
|
||||
if ($SDK eq "ALL")
|
||||
{
|
||||
while( ($SDK2, $RootDir) = each(%SDK_RootDirs) )
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK2} ne '')
|
||||
{
|
||||
DoVariation($SDK2, $Variation, $MacroBlock);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK} ne '')
|
||||
{
|
||||
DoVariation($SDK, $Variation, $MacroBlock);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
# give report
|
||||
|
||||
chdir($build_dir);
|
||||
|
||||
print "
|
||||
=======================================================================================".( %SDK_LibraryDirs ? "
|
||||
Libraries selected: \t$LibrariesQueued
|
||||
built: \t$LibrariesSucceeded " : "" )."
|
||||
Packages selected: \t$PackagesQueued $base_dir ".( $PackagesExisted ? "
|
||||
existed: \t$PackagesExisted $output_dir " : "" )."
|
||||
created: \t$PackagesCreated $output_dir ".( $FTP_Host ne '' ? "
|
||||
uploaded: \t$PackagesUploaded $ftp_url " : "" )."
|
||||
=======================================================================================
|
||||
";
|
||||
|
||||
my $count = @ErrorMessages;
|
||||
if ($count)
|
||||
{
|
||||
print "Hmm, unfortunately some ERRORs have occurred during the process:\n";
|
||||
foreach $Error (@ErrorMessages)
|
||||
{
|
||||
print "> $Error\n";
|
||||
}
|
||||
print "=======================================================================================\n";
|
||||
print "\007\007";
|
||||
}
|
||||
|
||||
# first clean up 'initial path' by removing possible old entries (in case of aborted builds)
|
||||
#$initial_path_system_cleaned = CleanupPath($initial_path_system);
|
||||
|
||||
# show them we cleaned up?
|
||||
#if ($initial_path_system_cleaned ne $initial_path_system)
|
||||
#{
|
||||
# PrintMessage("PATH cleaned up from:\n$initial_path_system\n\nto:\n$initial_path_system_cleaned");
|
||||
#}
|
||||
|
||||
print " SumthinWicked wishes you a ridiculously good and optimally happy day :P\n=======================================================================================";
|
||||
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
|
||||
# create a set of "MACRO xxx" definitions for use in the scummvm_base.mpp file
|
||||
sub MakeMppMacroDefs
|
||||
{
|
||||
my ($features) = @_;
|
||||
|
||||
my %EnabledFeatures = ();
|
||||
foreach (split(/\W|\r|\n/, $features))
|
||||
{
|
||||
if ($_ ne "")
|
||||
{
|
||||
#print "FEATURE: $_\n";
|
||||
$EnabledFeatures{$_} = 1;
|
||||
}
|
||||
}
|
||||
|
||||
my $MacroDefs = "";
|
||||
|
||||
$MacroDefs .= " // Features //\n";
|
||||
foreach my $e (sort keys %UseableFeatures)
|
||||
{
|
||||
my $E = uc($e);
|
||||
if ($EnabledFeatures{$e})
|
||||
{
|
||||
$MacroDefs .= "MACRO USE_$E // LIB:$UseableFeatures{$e}\n";
|
||||
# this one is used: remove it now
|
||||
delete $EnabledFeatures{$e};
|
||||
# this will leave us with a list of unparsed options!
|
||||
}
|
||||
else
|
||||
{
|
||||
$MacroDefs .= "//MACRO USE_$E\n";
|
||||
}
|
||||
}
|
||||
|
||||
$MacroDefs .= " // Engines //\n";
|
||||
foreach my $e (sort @EnablableEngines)
|
||||
{
|
||||
my $E = uc($e);
|
||||
if ($EnabledFeatures{$e})
|
||||
{
|
||||
$MacroDefs .= "MACRO ENABLE_$E // LIB:scummvm_$e.lib\n";
|
||||
# this one is used: remove it now
|
||||
delete $EnabledFeatures{$e};
|
||||
# this will leave us with a list of unparsed options!
|
||||
}
|
||||
else
|
||||
{
|
||||
$MacroDefs .= "//MACRO ENABLE_$E\n";
|
||||
}
|
||||
}
|
||||
|
||||
$MacroDefs .= " // SubEngines //\n";
|
||||
foreach my $e (sort @EnablableSubEngines)
|
||||
{
|
||||
my $E = uc($e);
|
||||
if ($EnabledFeatures{$e})
|
||||
{
|
||||
$MacroDefs .= "MACRO ENABLE_$E\n";
|
||||
# this one is used: remove it now
|
||||
delete $EnabledFeatures{$e};
|
||||
# this will leave us with a list of unparsed options!
|
||||
}
|
||||
else
|
||||
{
|
||||
$MacroDefs .= "//MACRO ENABLE_$E\n";
|
||||
}
|
||||
}
|
||||
|
||||
#print "\n\n'$features' ==> $MacroDefs\n\n\n";
|
||||
return $MacroDefs;
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
# Build, Package & Upload a single Variation
|
||||
sub DoLibrary
|
||||
{
|
||||
my ($SDK, $Library, $Path) = @_;
|
||||
my $TargetName = $SDK_TargetName{$SDK};
|
||||
my $TargetDir = $SDK_TargetDir{$SDK};
|
||||
my $Target = "$SDK - $Library";
|
||||
my $TargetFilePath = $SDK_RootDirs{$SDK}."\\epoc32\\release\\$TargetDir\\urel\\$Library";
|
||||
#my $TargetIntermediatePath = uc($SDK_RootDirs{$SDK}."\\EPOC32\\BUILD\\".substr($Path, 3));
|
||||
# does this remove too much?
|
||||
my $TargetIntermediatePath = uc($SDK_RootDirs{$SDK}."\\EPOC32\\BUILD\\");
|
||||
|
||||
my $header = "
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
Preparing to build library $Target
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
";
|
||||
print $header if (!$ReallyQuiet);
|
||||
open FILE, ">>$build_log_out"; print FILE $header; close FILE;
|
||||
open FILE, ">>$build_log_err"; print FILE $header; close FILE;
|
||||
|
||||
# easy for error-handling:
|
||||
$CurrentTarget = $Target;
|
||||
my $OK = 1;
|
||||
|
||||
PrepSdkPaths($SDK);
|
||||
|
||||
chdir($Path) or $OK=0;
|
||||
PrintErrorMessage("Changing to $Path failed!") if (!$OK);
|
||||
return 0 if (!$OK);
|
||||
|
||||
PrintMessage("Cleaning for $Target") if (!$ReallyQuiet);
|
||||
system("bldmake bldfiles > NUL 2> NUL");
|
||||
PrintErrorMessage("'bldmake bldfiles' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
|
||||
system("abld MAKEFILE $TargetName > NUL 2> NUL");
|
||||
PrintErrorMessage("'abld MAKEFILE $TargetName' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
|
||||
system("abld CLEAN $TargetName UREL > NUL 2> NUL");
|
||||
PrintErrorMessage("'abld CLEAN $TargetName urel' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
# remove file so we are sure that after .lib generation we have a fresh copy!
|
||||
if (-e $TargetFilePath) { unlink($TargetFilePath) or PrintErrorMessage("Removing $TargetFilePath"); }
|
||||
|
||||
my $Redirection = "OUT:file, ERR:".($RedirectSTDERR ? "file" : "screen");
|
||||
my $Message = "Building $Target ($Redirection)";
|
||||
PrintMessage($Message) if (!$ReallyQuiet);
|
||||
print(" $Message\n") if ($ReallyQuiet);
|
||||
|
||||
my $OldSize = (-s $build_log_err);
|
||||
$Redirection = ($RedirectSTDERR ? "2>> $build_log_err" : "");
|
||||
system("abld TARGET $TargetName UREL $Redirection >> $build_log_out");
|
||||
$OK = 0 if ($? >> 8);
|
||||
# print " STDERR: ".((-s $build_log_err)-$OldSize)." bytes output written to $build_log_err\n+--------------------------------------------------------------------------------------\n" if ($OldSize != (-s $build_log_err));
|
||||
PrintErrorMessage("'abld TARGET $TargetName UREL' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
return 0 if (!$OK); # ABLD always returns ok :( grr
|
||||
PrintMessage("Done.") if (!$ReallyQuiet);
|
||||
|
||||
# did it work? :)
|
||||
if (-e $TargetFilePath)
|
||||
{
|
||||
$LibrariesSucceeded++;
|
||||
|
||||
if ($TargetIntermediatePath ne '' && $TargetIntermediatePath =~ /\\EPOC32\\BUILD\\/i) # make really sure it's a valid path!
|
||||
{
|
||||
system("del /S /Q $TargetIntermediatePath > NUL");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
PrintErrorMessage("'abld TARGET $TargetName UREL' apparently failed.");
|
||||
if ($HaltOnError)
|
||||
{
|
||||
PrintErrorMessage("Halting on error as requested!");
|
||||
exit 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
# Build, Package & Upload a single Variation
|
||||
sub DoVariation
|
||||
{
|
||||
my ($SDK, $Variation, $MacroBlock) = @_;
|
||||
my $Extra = ($Variation ne '' ? "_$Variation" : "");
|
||||
my $Package = sprintf($file_tpl_sis, $version_tpl_sis, $SDK, $Extra);
|
||||
|
||||
if ($SkipExistingPackages && -f "$output_dir/$Package")
|
||||
{
|
||||
PrintMessage("Skipping $Package (already exists!)");
|
||||
$PackagesExisted++;
|
||||
return;
|
||||
}
|
||||
|
||||
my $header = "
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
Preparing to build $Package
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
=======================================================================================
|
||||
";
|
||||
print $header if (!$ReallyQuiet);
|
||||
open FILE, ">>$build_log_out"; print FILE $header; close FILE;
|
||||
open FILE, ">>$build_log_err"; print FILE $header; close FILE;
|
||||
|
||||
# easy for error-handling:
|
||||
$CurrentTarget = $Package;
|
||||
my $OK;
|
||||
|
||||
$OK = PrepVariation($SDK, $Variation, $Package, $MacroBlock);
|
||||
|
||||
if ($OK)
|
||||
{
|
||||
$OK = BuildVariation($SDK, $Variation, $Package, $MacroBlock);
|
||||
|
||||
if ($OK && $FTP_Host ne '')
|
||||
{
|
||||
UploadVariation($SDK, $Variation, $Package);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub PrepVariation()
|
||||
{
|
||||
my ($SDK, $Variation, $Package, $MacroBlock) = @_;
|
||||
my $OK = 1;
|
||||
|
||||
PrepSdkPaths($SDK);
|
||||
|
||||
chdir($build_dir) or $OK=0;
|
||||
PrintErrorMessage("Changing to $build_dir failed!") if (!$OK);
|
||||
return 0 if (!$OK);
|
||||
|
||||
# insert $MacroBlock into AUTO_MACRO_MASTER in scummvm_base.mmp
|
||||
PrintMessage("Setting new AUTO_MACROS_MASTER in scummvm_base.mmp for '$Variation'") if (!$ReallyQuiet);
|
||||
my $n = "AUTO_MACROS_MASTER";
|
||||
my $a = "\/\/START_$n\/\/";
|
||||
my $b = "\/\/STOP_$n\/\/";
|
||||
my $name = "scummvm_base.mmp";
|
||||
my $file = "$build_dir/mmp/$name";
|
||||
my $updated = " Updated @ ".localtime();
|
||||
|
||||
open FILE, "$file" or $OK=0;
|
||||
PrintErrorMessage("Reading file '$file'") if (!$OK);
|
||||
return 0 if (!$OK);
|
||||
my @lines = <FILE>;
|
||||
close FILE;
|
||||
|
||||
my $onestr = join("",@lines);
|
||||
$MacroBlock =~ s/^\s*//gm;
|
||||
$onestr =~ s/$a(.*)$b/$a$updated\n$ExtraMacros$MacroBlock$b/s;
|
||||
|
||||
open FILE, ">$file" or $OK=0;
|
||||
PrintErrorMessage("Writing file '$file'") if (!$OK);
|
||||
return 0 if (!$OK);
|
||||
print FILE $onestr;
|
||||
close FILE;
|
||||
|
||||
# running AdaptAllMMPs.pl to propagate changes
|
||||
PrintMessage("Running AdaptAllMMPs.pl to propagate MACRO changes") if (!$ReallyQuiet);
|
||||
system("perl AdaptAllMMPs.pl > NUL");
|
||||
$OK = 0 if ($? >> 8);
|
||||
PrintErrorMessage("'AdaptAllMMPs.pl' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
return 0 if (!$OK);
|
||||
|
||||
# we are here: so all is ok :)
|
||||
return 1;
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub BuildVariation()
|
||||
{
|
||||
my ($SDK, $Variation, $Package, $MacroBlock) = @_;
|
||||
my $TargetName = $SDK_TargetName{$SDK};
|
||||
my $TargetDir = $SDK_TargetDir{$SDK};
|
||||
my $OK = 1;
|
||||
|
||||
my $dir = $build_dir."/".$SDK_BuildDirs{$SDK};
|
||||
$dir =~ s#/#\\#g;
|
||||
chdir($dir);
|
||||
|
||||
#my $TargetIntermediatePath = uc($SDK_RootDirs{$SDK}."\\EPOC32\\BUILD\\".substr($dir, 3));
|
||||
# does this remove too much?
|
||||
my $TargetIntermediatePath = uc($SDK_RootDirs{$SDK}."\\EPOC32\\BUILD\\");
|
||||
|
||||
PrintMessage("Cleaning for $Package") if (!$ReallyQuiet);
|
||||
|
||||
# remove some files so we are sure that after .sis package generation we have a fresh copy!
|
||||
my $UnlinkFile = "$output_dir/$Package";
|
||||
if (-e $UnlinkFile) { unlink($UnlinkFile) or PrintErrorMessage("Removing $UnlinkFile"); }
|
||||
$UnlinkFile = $SDK_RootDirs{$SDK}."/epoc32/release/$TargetDir/urel/ScummVM.app";
|
||||
if (-e $UnlinkFile) { unlink($UnlinkFile) or PrintErrorMessage("Removing $UnlinkFile"); }
|
||||
$UnlinkFile = $SDK_RootDirs{$SDK}."/epoc32/release/$TargetDir/urel/ScummVM.exe";
|
||||
if (-e $UnlinkFile) { unlink($UnlinkFile) or PrintErrorMessage("Removing $UnlinkFile"); }
|
||||
# remove all libs here, note they are in another dir!
|
||||
system("del ".$SDK_RootDirs{$SDK}."/epoc32/release/$TargetName/urel/scummvm_*.lib");
|
||||
|
||||
system("bldmake bldfiles 2> NUL > NUL");
|
||||
PrintErrorMessage("'bldmake bldfiles' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
|
||||
system("abld CLEAN $TargetName UREL 2> NUL > NUL");
|
||||
PrintErrorMessage("'abld CLEAN $TargetName UREL' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
|
||||
my $Redirection = "OUT:file, ERR:".($RedirectSTDERR ? "file" : "screen");
|
||||
my $Message = "Building $Package ($Redirection)";
|
||||
PrintMessage($Message) if (!$ReallyQuiet);
|
||||
print(" $Message\n") if ($ReallyQuiet);
|
||||
|
||||
my $OldSize = (-s $build_log_err);
|
||||
$Redirection = ($RedirectSTDERR ? "2>> $build_log_err" : "");
|
||||
system("abld BUILD $TargetName UREL $Redirection >> $build_log_out");
|
||||
$OK = 0 if ($? >> 8);
|
||||
print " STDERR: ".((-s $build_log_err)-$OldSize)." bytes output written to $build_log_err\n+--------------------------------------------------------------------------------------\n" if ($OldSize != (-s $build_log_err) && !$ReallyQuiet);
|
||||
PrintErrorMessage("'abld BUILD $TargetName UREL' exited with value " . ($? >> 8)) if ($? >> 8);
|
||||
return 0 if (!$OK); # ABLD always returns ok :( grr
|
||||
PrintMessage("Done.") if (!$ReallyQuiet);
|
||||
|
||||
# do we have an override suffix for the package name?
|
||||
$MacroBlock =~ /^\s*\/\/\s*PKG_SUFFIX:\s*(\w+)\s*/gm; # using '@' as delimiter here instead of '/' for clarity
|
||||
my $PkgSuffix = $1; # can be ""
|
||||
my $PkgFile = sprintf($file_tpl_pkg, $SDK.$PkgSuffix);
|
||||
|
||||
PrintMessage("Creating package $Package") if (!$ReallyQuiet);
|
||||
## fix if (!$ReallyQuiet) for next:
|
||||
system("makesis -d\"".$SDK_RootDirs{$SDK}."\" $PkgFile \"$output_dir/$Package\" $Redirection >> $build_log_out");
|
||||
$OK = 0 if ($? >> 8);
|
||||
PrintErrorMessage("'makesis' $PkgFile exited with value " . ($? >> 8)) if (!$OK);
|
||||
if ($HaltOnError && !$OK)
|
||||
{
|
||||
PrintErrorMessage("Halting on error as requested!");
|
||||
exit 1;
|
||||
}
|
||||
return 0 if (!$OK);
|
||||
|
||||
# did it work? :)
|
||||
if (-e "$output_dir/$Package")
|
||||
{
|
||||
$PackagesCreated++;
|
||||
|
||||
if ($TargetIntermediatePath ne '' && $TargetIntermediatePath =~ /\\EPOC32\\BUILD\\/i) # make really sure it's a valid path!
|
||||
{
|
||||
#PrintMessage("Cleaning $TargetIntermediatePath");
|
||||
system("del /S /Q $TargetIntermediatePath > NUL");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
PrintErrorMessage("'makesis' apparently failed. (?)");
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub UploadVariation()
|
||||
{
|
||||
my ($SDK, $Variation, $Package) = @_;
|
||||
|
||||
use Net::FTP;
|
||||
my $newerr;
|
||||
|
||||
PrintMessage("Connecting to FTP $FTP_Host") if (!$ReallyQuiet);
|
||||
|
||||
$ftp = Net::FTP->new($FTP_Host,Timeout=>240) or $newerr=1;
|
||||
PrintErrorMessage("Connecting to FTP $FTP_Host! Aborting!") if $newerr;
|
||||
if (!$newerr)
|
||||
{
|
||||
$ftp->login($FTP_User, $FTP_Pass) or $newerr=1;
|
||||
PrintErrorMessage("Logging in with $FTP_User to $FTP_Host! Aborting!") if $newerr;
|
||||
if (!$newerr)
|
||||
{
|
||||
if ($FTP_Dir ne '') # do we need to change dir?
|
||||
{
|
||||
PrintMessage("Changing to dir $FTP_Dir");
|
||||
$ftp->cwd($FTP_Dir) or $newerr=1;
|
||||
|
||||
if ($newerr)
|
||||
{
|
||||
PrintErrorMessage("Changing to dir $FTP_Dir! Aborting!");
|
||||
$ftp->quit;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
# leave this for possible auto-deletion of old files?
|
||||
# @files = $ftp->dir or $newerr=1;
|
||||
# push @ERRORS, "Can't get file list $!\n" if $newerr;
|
||||
# print "Got file list\n";
|
||||
# foreach(@files) {
|
||||
# print "$_\n";
|
||||
# }
|
||||
|
||||
PrintMessage("Uploading $Package (".(-s "$output_dir/$Package")." bytes)");
|
||||
|
||||
$ftp->binary;
|
||||
$ftp->put("$output_dir/$Package") or $newerr=1;
|
||||
PrintErrorMessage("Uploading package! Aborting!") if $newerr;
|
||||
$PackagesUploaded++ if (!$newerr);
|
||||
}
|
||||
|
||||
$ftp->quit;
|
||||
}
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub PrepSdkPaths()
|
||||
{
|
||||
my ($SDK) = @_;
|
||||
my $EPOCROOT = $SDK_RootDirs{$SDK};
|
||||
my $EPOC32RT = "$EPOCROOT\\epoc32";
|
||||
my $AdditionalPathEntries = "";
|
||||
my $OK = 1;
|
||||
|
||||
# do the directories exist?
|
||||
if (! -d $EPOCROOT) { PrintErrorMessage("$SDK Directory does not exist: '$EPOCROOT'"); return 0; }
|
||||
if (! -d $EPOC32RT) { PrintErrorMessage("$SDK Directory does not exist: '$EPOC32RT'"); return 0; }
|
||||
|
||||
# set env stuff
|
||||
PrintMessage("Prepending $SDK specific paths to %PATH%") if (!$ReallyQuiet);
|
||||
$AdditionalPathEntries .= "$SDK_ToolchainDirs{$SDK};" if ($SDK_ToolchainDirs{$SDK} ne '');
|
||||
$AdditionalPathEntries .= "$ECompXL_BinDir;" if ($ECompXL_BinDir ne '' && $SDK eq 'UIQ2');
|
||||
$AdditionalPathEntries .= "$EPOC32RT\\include;";
|
||||
$AdditionalPathEntries .= "$EPOC32RT\\tools;";
|
||||
$AdditionalPathEntries .= "$EPOC32RT\\gcc\\bin;";
|
||||
$ENV{'EPOCROOT'} = substr($EPOCROOT,2)."\\"; # strips drive letter, needs to end with backslash!
|
||||
$ENV{'PATH'} = "$AdditionalPathEntries$initial_path";
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub CleanupPath()
|
||||
{
|
||||
my ($path) = @_;
|
||||
|
||||
if ($ECompXL_BinDir ne '')
|
||||
{
|
||||
$path =~ s/\"\Q$ECompXL_BinDir\E\";//g;
|
||||
}
|
||||
|
||||
while( ($SDK, $RootDir) = each(%SDK_RootDirs) )
|
||||
{
|
||||
if ($SDK_RootDirs{$SDK} ne '')
|
||||
{
|
||||
my $path_component = "\"".$SDK_RootDirs{$SDK}."\\epoc32\\";
|
||||
$path =~ s/\Q$path_component\E.*?\";//g;
|
||||
}
|
||||
}
|
||||
|
||||
return $path;
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
sub PrintErrorMessage()
|
||||
{
|
||||
my ($msg) = @_;
|
||||
|
||||
# add to array, so we can print it @ the end!
|
||||
push @ErrorMessages, "$CurrentTarget: $msg";
|
||||
|
||||
print "+--------------------------------------------------------------------------------------\n";
|
||||
PrintMessage("ERROR: $CurrentTarget: $msg");
|
||||
print "\007" if (!$HaltOnError);
|
||||
print "\007\007" if ($HaltOnError); # make more noise if halt-on-error
|
||||
}
|
||||
|
||||
sub PrintMessage()
|
||||
{
|
||||
my ($msg) = @_;
|
||||
|
||||
print "| $msg\n";
|
||||
print "+--------------------------------------------------------------------------------------\n";
|
||||
#$line = <STDIN>;
|
||||
|
||||
#print "\e[1,31m> $msg\e[0m\n";
|
||||
}
|
||||
|
||||
##################################################################################################################
|
@ -1,367 +0,0 @@
|
||||
|
||||
##################################################################################################################
|
||||
#### sword25 ignored because of incompatible resolution 800*600
|
||||
|
||||
@WorkingEngines = qw(
|
||||
access agi agos avalanche bbvs cge cge2
|
||||
cine composer cruise draci drascula
|
||||
dreamweb fullpipe gob groovie hopkins
|
||||
hugo kyra lastexpress lure made mads
|
||||
mohawk mortevielle neverhood parallaction
|
||||
pegasus prince queen saga sci scumm
|
||||
sherlock sky sword1 sword2 teenagent
|
||||
testbed tinsel toltecs tony toon touche
|
||||
tsage tucker voyeur wintermute zvision
|
||||
);
|
||||
|
||||
@WorkingEngines_1st = qw(
|
||||
access agi agos cge2 cine composer cruise
|
||||
drascula gob groovie kyra lastexpress made
|
||||
neverhood parallaction queen saga scumm
|
||||
touche tucker voyeur wintermute
|
||||
);
|
||||
|
||||
@WorkingEngines_2nd = qw(
|
||||
avalanche bbvs cge draci dreamweb fullpipe
|
||||
hopkins hugo lure mads mohawk mortevielle
|
||||
pegasus prince sci sherlock sky sword1 sword2
|
||||
teenagent testbed tinsel toltecs tony toon
|
||||
tsage zvision
|
||||
);
|
||||
#### sword25 yet not added
|
||||
|
||||
@TestingEngines = qw(
|
||||
|
||||
);
|
||||
|
||||
@EnablableEngines = (@WorkingEngines, @TestingEngines);
|
||||
|
||||
@EnablableSubEngines = qw(
|
||||
scumm_7_8
|
||||
he
|
||||
ihnm
|
||||
lol
|
||||
agos2
|
||||
eob
|
||||
cstime
|
||||
myst
|
||||
riven
|
||||
saga2
|
||||
sci32
|
||||
groovie2
|
||||
);
|
||||
|
||||
#disabled subengines lol saga2 personal nightmare
|
||||
|
||||
# see configure.engines
|
||||
%UseableFeatures = (
|
||||
'freetype2' => 'freetype.lib',
|
||||
'faad' => 'libFAAD2.lib',
|
||||
'flac' => 'libflacdec.lib',
|
||||
'jpeg' => 'libjpeg.lib',
|
||||
'mad' => 'libmad.lib',
|
||||
'mpeg2' => 'libmpeg2.lib',
|
||||
'png' => 'libpng.lib',
|
||||
'tremor' => 'libtremor.lib',
|
||||
'theoradec' => 'theora.lib',
|
||||
'zlib' => 'zlib.lib'
|
||||
);
|
||||
|
||||
# these are normally enabled for each variation
|
||||
#$DefaultFeatures = qw(zlib,mad);
|
||||
#$DefaultFeatures = qw(zlib,mad,tremor,);
|
||||
$DefaultFeatures = qw(faad,flac,freetype2,jpeg,mad,mpeg2,png,theoradec,tremor,zlib,);
|
||||
|
||||
##################################################################################################################
|
||||
##
|
||||
## General system information, based on $COMPUTERNAME, so this way
|
||||
## you can use the same LocalSettings.pl file on multiple machines!
|
||||
##
|
||||
##################################################################################################################
|
||||
|
||||
if ($ENV{'COMPUTERNAME'} eq "PC-21") #########################################################################
|
||||
{
|
||||
# might use this string for file/dir naming in the future :)
|
||||
$Producer = "SumthinWicked";
|
||||
$RedirectSTDERR = 0;
|
||||
$HaltOnError = 0;
|
||||
$SkipExistingPackages = 0;
|
||||
$ReallyQuiet = 0;
|
||||
$DevBase = "D:\\Symbian";
|
||||
$Compiler = "D:\\Program/ Files\\CodeSourcery\\Sourcery/ G++ Lite";
|
||||
|
||||
# specify an optional FTP server to upload to after each Build+Package (can leave empty)
|
||||
#$FTP_Host = "host.com";
|
||||
$FTP_User = "something";
|
||||
$FTP_Pass = "password";
|
||||
$FTP_Dir = "cvsbuilds";
|
||||
|
||||
# What Platform SDKs are installed on this machine?
|
||||
# possible SDKs: ("UIQ2", UIQ3", "S60v1", "S60v2", "S60v3", "S80", "S90")
|
||||
# Note1: the \epoc32 directory needs to be in these rootdirs
|
||||
# Note2: these paths do NOT end in a backslash!
|
||||
# $SDK_RootDirs{'UIQ2'} = "$DevBase\\UIQ_21";
|
||||
# $SDK_RootDirs{'UIQ3'} = "$DevBase\\UIQ3";
|
||||
# $SDK_RootDirs{'S60v1'} = "$DevBase\\S60v1";
|
||||
# $SDK_RootDirs{'S60v2'} = "$DevBase\\S60v2";
|
||||
$SDK_RootDirs{'S60v3'} = "$DevBase\\S60v5";
|
||||
# $SDK_RootDirs{'S80'} = "$DevBase\\S80";
|
||||
# $SDK_RootDirs{'S90'} = "$DevBase\\S90";
|
||||
|
||||
$SDK_ToolchainDirs{'S60v3'} = "$Compiler\\arm-symbianelf\\bin";
|
||||
$SDK_ToolchainDirs{'UIQ2'} = "$DevBase\\ECompXL\\bin"; # only needed for UIQ2/UIQ3
|
||||
$SDK_ToolchainDirs{'UIQ3'} = "$DevBase\\ECompXL\\bin"; # only needed for UIQ2/UIQ3
|
||||
|
||||
# these supporting libraries get built first, then all the Variations
|
||||
# Note: the string {'xxx.lib'} is used in checking in build success: so needs to be accurate!
|
||||
if (0) # so we can turn them on/off easily
|
||||
{
|
||||
## Standard libraries
|
||||
$SDK_LibraryDirs{'ALL'}{'zlib.lib'} = "$DevBase\\zlib-1.2.2\\epoc";
|
||||
$SDK_LibraryDirs{'ALL'}{'libmad.lib'} = "$DevBase\\libmad-0.15.1b\\group";
|
||||
$SDK_LibraryDirs{'ALL'}{'libtremor.lib'}= "$DevBase\\tremor\\epoc";
|
||||
|
||||
## SDL 1.2.12 / AnotherGuest / Symbian version
|
||||
my $SdlBase = "$DevBase\\SDL-1.2.12-ag\\Symbian";
|
||||
#$SDK_LibraryDirs{'S60v1'}{'esdl.lib'} = "$SdlBase\\S60"; // unsupported?
|
||||
#$SDK_LibraryDirs{'S60v2'}{'esdl.lib'} = "$SdlBase\\S60v2";
|
||||
$SDK_LibraryDirs{'S60v3'}{'esdl.lib'} = "$SdlBase\\S60v5";
|
||||
#$SDK_LibraryDirs{'S80'}{'esdl.lib'} = "$SdlBase\\S80";
|
||||
#$SDK_LibraryDirs{'S90'}{'esdl.lib'} = "$SdlBase\\S90";
|
||||
#$SDK_LibraryDirs{'UIQ2'}{'esdl.lib'} = "$SdlBase\\UIQ2"
|
||||
#$SDK_LibraryDirs{'UIQ3'}{'esdl.lib'} = "$SdlBase\\UIQ3";
|
||||
}
|
||||
|
||||
# now you can add $VariationSets only built on this PC below this line :)
|
||||
|
||||
#$VariationSets{'ALL'}{'scumm'} = "$DefaultFeatures scumm scumm_7_8 he";
|
||||
#$VariationSets{'ALL'}{'all'} = "$DefaultFeatures @WorkingEngines @EnablableSubEngines";
|
||||
|
||||
}
|
||||
elsif ($ENV{'COMPUTERNAME'} eq "TSSLND0106") #################################################################
|
||||
{
|
||||
$Producer = "AnotherGuest";
|
||||
$RedirectSTDERR = 1;
|
||||
$HaltOnError = 0;
|
||||
$SkipExistingPackages = 0;
|
||||
$ReallyQuiet = 0;
|
||||
|
||||
#$FTP_Host = "host.com";
|
||||
#$FTP_User = "ag@host.com";
|
||||
#$FTP_Pass = "password";
|
||||
#$FTP_Dir = "cvsbuilds";
|
||||
|
||||
#$SDK_RootDirs{'UIQ2'}= "C:\\UIQ2";
|
||||
$SDK_RootDirs{'UIQ3'}= "C:\\UIQ3";
|
||||
#$SDK_RootDirs{'S60v1'}= "C:\\S60v1";
|
||||
$SDK_RootDirs{'S60v2'}= "C:\\S60v2";
|
||||
$SDK_RootDirs{'S60v3'}= "C:\\S60v3";
|
||||
#$SDK_RootDirs{'S80'}= "C:\\S80";
|
||||
#$SDK_RootDirs{'S90'}= "C:\\S90";
|
||||
$ECompXL_BinDir= "C:\\ECompXL\\";
|
||||
if (0) # so we can turn them on/off easily
|
||||
{
|
||||
# $SDK_LibraryDirs{'ALL'}{'zlib.lib'} = "C:\\S\\zlib-1.2.2\\epoc";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libmad.lib'} = "C:\\S\\libmad-0.15.1b\\group";
|
||||
$SDK_LibraryDirs{'ALL'}{'libtremor.lib'}= "C:\\tremor\\epoc";
|
||||
# $SDK_LibraryDirs{'UIQ2'}{'esdl.lib'} = $SDK_LibraryDirs{'UIQ3'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\UIQ";
|
||||
# $SDK_LibraryDirs{'S60v1'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v2'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v3'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S60";
|
||||
# $SDK_LibraryDirs{'S80'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S80";
|
||||
# $SDK_LibraryDirs{'S90'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S90";
|
||||
}
|
||||
|
||||
# now you can add $VariationSets only built on this PC below this line :)
|
||||
|
||||
}
|
||||
elsif ($ENV{'COMPUTERNAME'} eq "BIGMACHINE") #################################################################
|
||||
{
|
||||
$Producer = "AnotherGuest";
|
||||
$RedirectSTDERR = 1;
|
||||
$HaltOnError = 0;
|
||||
$SkipExistingPackages = 1;
|
||||
$ReallyQuiet = 1;
|
||||
|
||||
#$FTP_Host = "host.com";
|
||||
#$FTP_User = "ag@host.com";
|
||||
#$FTP_Pass = "password";
|
||||
#$FTP_Dir = "cvsbuilds";
|
||||
|
||||
#$SDK_RootDirs{'UIQ2'}= "D:\\UIQ2";
|
||||
$SDK_RootDirs{'UIQ3'}= "D:\\UIQ3";
|
||||
#$SDK_RootDirs{'S60v1'}= "D:\\S60v1";
|
||||
#$SDK_RootDirs{'S60v2'}= "D:\\S60v2";
|
||||
$SDK_RootDirs{'S60v3'}= "D:\\S60v3";
|
||||
#$SDK_RootDirs{'S80'}= "D:\\S80";
|
||||
#$SDK_RootDirs{'S90'}= "D:\\S90";
|
||||
$ECompXL_BinDir= "D:\\ECompXL\\";
|
||||
if (0) # so we can turn them on/off easily
|
||||
{
|
||||
# $SDK_LibraryDirs{'ALL'}{'zlib.lib'} = "C:\\S\\zlib-1.2.2\\epoc";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libmad.lib'} = "C:\\S\\libmad-0.15.1b\\group";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libtremor.lib'}= "C:\\tremor\\epoc";
|
||||
$SDK_LibraryDirs{'UIQ2'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\UIQ";
|
||||
$SDK_LibraryDirs{'S60v1'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v2'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S60";
|
||||
$SDK_LibraryDirs{'S80'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S80";
|
||||
$SDK_LibraryDirs{'S90'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S90";
|
||||
$SDK_LibraryDirs{'S60v3'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S60\\S60V3";
|
||||
$SDK_LibraryDirs{'UIQ3'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\UIQ\\UIQ3";
|
||||
}
|
||||
|
||||
# now you can add $VariationSets only built on this PC below this line :)
|
||||
|
||||
}
|
||||
elsif ($ENV{'COMPUTERNAME'} eq "EMBEDDEV-VAIO2") #################################################################
|
||||
{
|
||||
$Producer = "AnotherGuest";
|
||||
$RedirectSTDERR = 1;
|
||||
$HaltOnError = 0;
|
||||
$SkipExistingPackages = 1;
|
||||
$ReallyQuiet = 1;
|
||||
|
||||
#$FTP_Host = "host.com";
|
||||
#$FTP_User = "ag@host.com";
|
||||
#$FTP_Pass = "password";
|
||||
#$FTP_Dir = "cvsbuilds";
|
||||
|
||||
#$SDK_RootDirs{'UIQ2'}= "D:\\UIQ2";
|
||||
$SDK_RootDirs{'UIQ3'}= "G:\\UIQ3";
|
||||
#$SDK_RootDirs{'S60v1'}= "D:\\S60v1";
|
||||
#$SDK_RootDirs{'S60v2'}= "D:\\S60v2";
|
||||
$SDK_RootDirs{'S60v3'}= "G:\\S60v5";
|
||||
#$SDK_RootDirs{'S80'}= "D:\\S80";
|
||||
#$SDK_RootDirs{'S90'}= "D:\\S90";
|
||||
#$ECompXL_BinDir= "D:\\ECompXL\\";
|
||||
if (0) # so we can turn them on/off easily
|
||||
{
|
||||
# $SDK_LibraryDirs{'ALL'}{'zlib.lib'} = "C:\\S\\zlib-1.2.2\\epoc";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libmad.lib'} = "C:\\S\\libmad-0.15.1b\\group";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libtremor.lib'}= "C:\\tremor\\epoc";
|
||||
$SDK_LibraryDirs{'UIQ2'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\UIQ";
|
||||
$SDK_LibraryDirs{'S60v1'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v2'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S60";
|
||||
$SDK_LibraryDirs{'S80'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S80";
|
||||
$SDK_LibraryDirs{'S90'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S90";
|
||||
$SDK_LibraryDirs{'S60v3'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\S60\\S60V3";
|
||||
$SDK_LibraryDirs{'UIQ3'}{'esdl.lib'} = "E:\\WICKED\\ESDL\\epoc\\UIQ\\UIQ3";
|
||||
}
|
||||
|
||||
# now you can add $VariationSets only built on this PC below this line :)
|
||||
|
||||
}
|
||||
elsif ($ENV{'COMPUTERNAME'} eq "FEDOR4EVER") #################################################################
|
||||
{
|
||||
$Producer = "Fedor";
|
||||
$RedirectSTDERR = 1;
|
||||
$HaltOnError = 0;
|
||||
$SkipExistingPackages = 0;
|
||||
$ReallyQuiet = 0;
|
||||
$Compiler = "D:\\Program/ Files\\CodeSourcery\\Sourcery/ G++/ Lite";
|
||||
|
||||
#$FTP_Host = "host.com";
|
||||
#$FTP_User = "ag@host.com";
|
||||
#$FTP_Pass = "password";
|
||||
#$FTP_Dir = "cvsbuilds";
|
||||
|
||||
#$SDK_RootDirs{'UIQ2'}= "C:\\UIQ2";
|
||||
#$SDK_RootDirs{'UIQ3'}= "C:\\UIQ3";
|
||||
#$SDK_RootDirs{'S60v1'}= "C:\\S60v1";
|
||||
#$SDK_RootDirs{'S60v2'}= "C:\\S60v2";
|
||||
#$SDK_RootDirs{'S80'}= "C:\\S80";
|
||||
#$SDK_RootDirs{'S90'}= "C:\\S90";
|
||||
#$ECompXL_BinDir= "C:\\ECompXL\\";
|
||||
|
||||
$SDK_RootDirs{'S60v3'}= "D:\\Symbian\\S60_5th_Edition_SDK_v1.0";
|
||||
$SDK_ToolchainDirs{'S60v3'} = "$Compiler\\arm-symbianelf\\bin";
|
||||
|
||||
# these supporting libraries get built first, then all the Variations
|
||||
# Note: the string {'xxx.lib'} is used in checking in build success: so needs to be accurate!
|
||||
if (0) # so we can turn them on/off easily
|
||||
{
|
||||
# $SDK_LibraryDirs{'ALL'}{'zlib.lib'} = "C:\\S\\zlib-1.2.2\\epoc";
|
||||
$SDK_LibraryDirs{'ALL'}{'libmad.lib'} = "D:\\Symbian\\Projects\\SDL\\libs\\libmad-0.15.1b\\epoc";
|
||||
# $SDK_LibraryDirs{'ALL'}{'libtremor.lib'}= "D:\\Symbian\\Projects\\SDL\\libs\\Tremor\\epoc";
|
||||
# $SDK_LibraryDirs{'UIQ2'}{'esdl.lib'} = $SDK_LibraryDirs{'UIQ3'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\UIQ";
|
||||
# $SDK_LibraryDirs{'S60v1'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v2'}{'esdl.lib'} = $SDK_LibraryDirs{'S60v3'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S60";
|
||||
# $SDK_LibraryDirs{'S80'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S80";
|
||||
# $SDK_LibraryDirs{'S90'}{'esdl.lib'} = "C:\\S\\ESDL\\epoc\\S90";
|
||||
}
|
||||
|
||||
# now you can add $VariationSets only built on this PC below this line :)
|
||||
|
||||
}
|
||||
|
||||
else #########################################################################################################
|
||||
{
|
||||
print "ERROR: Computer name ".$ENV{'COMPUTERNAME'}." not recognized! Plz edit _LocalSettings.pl!";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
##################################################################################################################
|
||||
##
|
||||
## Variation defines:
|
||||
##
|
||||
##################################################################################################################
|
||||
|
||||
# second hash index = literal string used in .sis file created.
|
||||
# empty string also removes the trailing '_'. Some 051101 examples:
|
||||
|
||||
# $VariationSets{'UIQ2'}{''} would produce:
|
||||
# scummvm-051101-SymbianUIQ2.sis
|
||||
|
||||
# $VariationSets{'S60v2'}{'agos'} would produce:
|
||||
# scummvm-051101-SymbianS60v2_agos.sis
|
||||
|
||||
# $VariationSets{'ALL'}{'queen'} with all $SDK_RootDirs defined would produce:
|
||||
# scummvm-051101-SymbianUIQ2_queen.sis
|
||||
# scummvm-051101-SymbianUIQ3_queen.sis
|
||||
# scummvm-051101-SymbianS60v1_queen.sis
|
||||
# scummvm-051101-SymbianS60v2_queen.sis
|
||||
# scummvm-051101-SymbianS60v3_queen.sis
|
||||
# scummvm-051101-SymbianS80_queen.sis
|
||||
# scummvm-051101-SymbianS90_queen.sis
|
||||
|
||||
# NOTE: empty $VariationSets{''} string instead of 'ALL' = easy way to disable pkg!
|
||||
|
||||
if (1) # all regular combo's
|
||||
{
|
||||
# the first one includes all SDKs & release-ready engines
|
||||
|
||||
# $VariationSets{'ALL'}{'all'} = "$DefaultFeatures @WorkingEngines @EnablableSubEngines";
|
||||
$VariationSets{'ALL'}{'split'} = "$DefaultFeatures @WorkingEngines @EnablableSubEngines";
|
||||
# $VariationSets{'ALL'}{'1St'} = "$DefaultFeatures @WorkingEngines_1st @EnablableSubEngines";
|
||||
# $VariationSets{'ALL'}{'2nd'} = "$DefaultFeatures @WorkingEngines_2nd @EnablableSubEngines";
|
||||
# now one for each ready-for-release engine
|
||||
if (0)
|
||||
{
|
||||
foreach (@WorkingEngines)
|
||||
{
|
||||
$VariationSets{'ALL'}{$_} = "$DefaultFeatures $_";
|
||||
}
|
||||
# for scumm, we need to add 2 features:
|
||||
#$VariationSets{'ALL'}{'scumm'} .= " scumm_7_8 he";
|
||||
}
|
||||
|
||||
# now one for each not-ready-for-release-or-testing engine
|
||||
if (0)
|
||||
{
|
||||
foreach (@TestingEngines)
|
||||
{
|
||||
$VariationSets{'ALL'}{"test_$_"} = "$DefaultFeatures $_";
|
||||
}
|
||||
}
|
||||
# below here you could specify weird & experimental combinations, non-ready engines
|
||||
|
||||
# Separate version for the broken sword engines (1&2)
|
||||
#$VariationSets{'ALL'}{'brokensword'} = "$DefaultFeatures sword1 sword2";
|
||||
|
||||
# Separate version for Scumm games (COMI) since memory usage might be high
|
||||
#$VariationSets{'ALL'}{'scumm'} = "$DefaultFeatures scumm scumm_7_8 he";
|
||||
|
||||
# for mega-fast-testing only plz! Warning: contains to engines!
|
||||
#$VariationSets{'ALL'}{'fast_empty'} = "";
|
||||
|
||||
} # end quick-n-fast if (1|0)
|
||||
|
||||
|
||||
##################################################################################################################
|
||||
|
||||
1;
|
@ -1,202 +0,0 @@
|
||||
|
||||
ScummVM - ScummVM ported to EPOC/SymbianOS
|
||||
|
||||
|
||||
Copyright (C) 2008-2022 ScummVM Team
|
||||
Copyright (C) 2013-2021 Fiodar Stryzhniou aka zanac
|
||||
Copyright (C) 2003-2013 Lars 'AnotherGuest' Persson
|
||||
Copyright (C) 2002-2008 Jurgen 'SumthinWicked' Braam
|
||||
Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson
|
||||
|
||||
Using parts of snprintf.c by
|
||||
Mark Martinec <mark.martinec@ijs.si>, April 1999, June 2000
|
||||
Copyright <20> 1999,2000,2001,2002 Mark Martinec. All rights reserved.
|
||||
under these conditions:
|
||||
"Terms and conditions ...
|
||||
This program is free software; it is dual licensed, the terms of the "Frontier Artistic License" or
|
||||
the "GNU General Public License" can be chosen at your discretion.
|
||||
The chosen license then applies solely and in its entirety.
|
||||
Both licenses come with this Kit."
|
||||
|
||||
About ScummVM.
|
||||
--------------
|
||||
The original ports (uptil 0.7.1) were made by Andreas Karlsson and Lars Persson.
|
||||
The main transition to 0.8.0CVS and all relevant changes were done by Jurgen Braam.
|
||||
Jurgen and Lars have successfully transfered all needed changes into CVS/SVN, with additional helpful tools for Symbian OS.
|
||||
Current port maintained by Fiodar Stryzhniou.
|
||||
|
||||
Release History:
|
||||
Release version: 2.3.0
|
||||
* Symbian port now split in nine parts, ScummVM 1, ScummVM and so on to keep the exe size amd memory pressure down.
|
||||
For engines layout see ScummVM in OS help menu.
|
||||
* Git builds (not frequently updated) can be found at https://sourceforge.net/projects/scummvms60git/
|
||||
|
||||
Release version: 2.2.0.1
|
||||
* Symbian port now split in five parts, ScummVM 1, ScummVM and so on to keep the exe size down.
|
||||
For engines layout see ScummVM in OS help menu.
|
||||
|
||||
Release version: 1.7.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
|
||||
Release version: 1.6.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
|
||||
Release version: 1.5.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
|
||||
Release version: 1.4.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
* See main readme for general ScummVM improvements, major update.
|
||||
|
||||
Release version: 1.3.1
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
* See main readme for general ScummVM improvements, major update.
|
||||
|
||||
Release version: 1.3.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
* See main readme for general ScummVM improvements, major update.
|
||||
|
||||
Release version: 1.2.1
|
||||
* Symbian port now split in two parts, ScummVM 1 and ScummVM 2 to keep the exe size down.
|
||||
ScummVM 1 contains the following engines:
|
||||
scumm, queen, groovie, saga, drascula, touche,
|
||||
parallaction, cine, cruise, made, tucker.
|
||||
|
||||
ScummVM 2 contains the following engines:
|
||||
agos, sky, gob, kyra, lure, agi, tinsel, sword1, sword2, draci, sci, teenagent.
|
||||
* See main readme for general ScummVM improvements, minor update.
|
||||
|
||||
Release version: 1.2.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements (new SDL version used).
|
||||
* See main readme for general ScummVM improvements, major update.
|
||||
|
||||
Release version: 1.1.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements.
|
||||
* See main readme for general ScummVM improvements, minor update.
|
||||
|
||||
Release version: 1.0.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements.
|
||||
* See main readme for general ScummVM improvements, minor update.
|
||||
|
||||
Release version: 0.13.1
|
||||
* Nothing significant in the Symbian port, except SDL improvements.
|
||||
* See main readme for general ScummVM improvements, minor update.
|
||||
|
||||
Release version: 0.13.1
|
||||
* Nothing significant in the Symbian port, except SDL improvements.
|
||||
|
||||
Release version: 0.13.0
|
||||
* Nothing significant in the Symbian port, except SDL improvements.
|
||||
|
||||
Release version: 0.12.0
|
||||
* This version is only supported on Symbian OS 9 devices due to compiler constraints for older devices. (That means UIQ3 and S60V3 devices)
|
||||
* Updated to SDL version 1.2.13 (previous version used was 1.2.2).
|
||||
* Information about S60 devices can be found here https://wiki.scummvm.org/index.php/SymbianOS_S60.
|
||||
* Information about UIQ devices can be found here https://wiki.scummvm.org/index.php/SymbianOS_UIQ.
|
||||
* Best source of general information is the ScummVM forum, https://forums.scummvm.org.
|
||||
* SVN builds (not frequently updated) can be found at http://www.anotherguest.se.
|
||||
|
||||
|
||||
Games supported
|
||||
---------------
|
||||
The Symbian port of ScummVM supports all games. Some games might not run properly due to screenresolution or memory constraints.
|
||||
Minimum free memory requirement is about 12MB to be able to start and run ScummVM, this is enough for most older games,
|
||||
but newer more resource hungry games, might require more.
|
||||
|
||||
Building ScummVM
|
||||
---------------------
|
||||
|
||||
Nescessary components
|
||||
---------------------
|
||||
Building ScummVM yourself using the UIQ 2.1/Nokia S60 SDK/Nokia S80 SDK/Nokia S90 SDK framework is not an easy task!
|
||||
Lets just say the framework needs quite some time to set up and takes a while
|
||||
to get used to. If you choose to continue you will need the following items:
|
||||
|
||||
- GCC 5.x and above for best perfomance(UIQ 3 and S60v3). Build it by yourself.
|
||||
https://github.com/fedor4ever/GCC-4-Symbian/tree/master
|
||||
|
||||
- UIQ 3.x SDK (To build for UIQ3 devices)(Build scripts in SDK need tweaking in order to build scummvm since Symbian OS GCCE never builds as large projects as ScummVM before)
|
||||
- UIQ 2.1 SDK (To build for UIQ2 devices);
|
||||
http://www.symbian.com/developer/sdks_uiq.asp
|
||||
|
||||
- Nokia S60 1st, 2nd edition,3rd edition SDK (To build for S60 devices)
|
||||
|
||||
- Nokia S80 SDK (To build for S80 devices)
|
||||
|
||||
- Nokia 7710 SDK (To build for the 7710/S90 device)
|
||||
|
||||
- ECompXL, an EPOC application compression library
|
||||
http://www.yipton.demon.co.uk/ecompxl/latest/readme.html (To build for UIQ devices)
|
||||
|
||||
- Python 2.7
|
||||
https://www.python.org/downloads/
|
||||
|
||||
- required libraries can be found here
|
||||
https://sourceforge.net/projects/scummvms60git/files/libs/
|
||||
|
||||
- libsdl, Simple Directmedia Layer, a cross-platform multimedia library
|
||||
http://www.libsdl.org/ (see note about ESDL below)
|
||||
|
||||
- libmad, a high-quality MPEG audio decoder
|
||||
http://www.underbit.com/products/mad/
|
||||
|
||||
- zlib, a massively spiffy yet delicately unobtrusive compression library
|
||||
http://www.zlib.net/
|
||||
|
||||
- libogg, the free media file container format
|
||||
http://www.xiph.org/ogg/
|
||||
|
||||
- libvorbis, the free audio codec
|
||||
http://www.vorbis.com/
|
||||
These are probably too heavy-duty for your phone:
|
||||
|
||||
- flac, the Free Lossless Audio Codec
|
||||
https://xiph.org/flac/
|
||||
- theora
|
||||
https://www.theora.org/
|
||||
- mpeg2
|
||||
https://libmpeg2.sourceforge.io/
|
||||
|
||||
Compiling ScummVM
|
||||
-----------------
|
||||
|
||||
ECompXL (Only needed for UIQ2):
|
||||
this is a tool that will compress your executable with GZIP and glue
|
||||
it to a predefined loader app. The app will uncompress your application at
|
||||
runtime and run it without you even knowing it. A really interesting byproduct
|
||||
of this method is that the general restriction of not having any writeable
|
||||
static data (WSD) for Symbian APP executables no longer applies. This makes
|
||||
the life of an EPOC porter a lot easier! To install this tool you need to add
|
||||
its \bin path to your PATH above the sybmian epocs32\tools path, so that ECompXL's
|
||||
PETRAN.EXE will be the executable that is started.
|
||||
|
||||
ScummVM:
|
||||
In <DevRoot>\scummvm\backends\platform\symbian\ :
|
||||
run build_me.py
|
||||
|
||||
Now you should have yourself a nice ScummVM_xxx.sis installer package in the packages folder for use
|
||||
on your phone. Please note that for development it will be a lot faster if you
|
||||
transfer the SCUMMVM.APP/Scummvm.EXE file directly to your !:\system\apps\ScummVM\ dir! (pre Symbian 9 only)
|
||||
|
||||
Platforms can be one of: ARMi, ARM4, THUMB, WINS, WINSCW, GCCE. The SE P900 uses the ARMi platform,
|
||||
which is a combined ARM4/THUMB programming mode. Configurations can be one of:
|
||||
UREL or UDEB.
|
||||
|
||||
|
||||
Greetz & such
|
||||
-------------
|
||||
Kudos fly out to:
|
||||
- Sprawl for having the nerve to start & carry this puppy for so long
|
||||
- AnotherGuest for having the nerve to start & carry this puppy for so long
|
||||
- Fingolfin for taking the time to go through 1000 patch versions with me
|
||||
- Myself (SumthinWicked), for writing this entire README and adopting all sources together with Fingolfin :)
|
||||
- the entire ScummVM Dev team for making a kicka$$ program
|
||||
- the folks in #scummvm @ irc.libera.chat for their help, comfort and support
|
||||
- everybody else who wants to give me 'the look' for not including them here :P
|
||||
|
||||
|
||||
it's been swell,
|
||||
gotta go now,
|
||||
|
||||
greetz,
|
||||
SumthinWicked & Anotherguest
|
@ -1,12 +0,0 @@
|
||||
PRJ_PLATFORMS
|
||||
WINS ARMI // ARM4 THUMB
|
||||
|
||||
PRJ_MMPFILES
|
||||
//START_AUTO_PROJECTS//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
|
||||
.\ScummVM_S60.mmp
|
||||
.\ScummVM_S60_App.mmp
|
@ -1,107 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC S60 MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
#if defined(WINS)
|
||||
TARGET ScummVM.dll
|
||||
#else
|
||||
TARGET ScummVM.exe
|
||||
#endif
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE EXEDLL
|
||||
|
||||
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
|
||||
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
|
||||
|
||||
#if !defined(WINS)
|
||||
EPOCSTACKSIZE 0x00008000
|
||||
EPOCHEAPSIZE 2048000 32000000
|
||||
#endif
|
||||
|
||||
MACRO S60
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
#if !defined(WINS)
|
||||
STATICLIBRARY egcc.lib // for __fixunsdfsi
|
||||
#endif
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\common ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\sound
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\events.cpp
|
||||
SOURCE backends\platform\sdl\graphics.cpp
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Special for graphics
|
||||
source graphics\iff.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib bitgdi.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib
|
||||
library avkon.lib bafl.lib
|
@ -1,52 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// MAKEFILE.MMP S60 ScummVM Launcher
|
||||
//
|
||||
|
||||
TARGET ScummVM.app
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE app
|
||||
|
||||
UID 0x100039ce 0x101f9b57
|
||||
sourcepath ..\res
|
||||
RESOURCE SCUMMVM.rss
|
||||
|
||||
USERINCLUDE ..\src
|
||||
SYSTEMINCLUDE \epoc32\include \epoc32\include\libc
|
||||
|
||||
// app source
|
||||
sourcepath ..\src
|
||||
SOURCE ScummVMApp.cpp
|
||||
|
||||
sourcepath ..
|
||||
AIF ScummVm.Aif ..\res\ ScummVmAif.rss c16 ScummL.bmp ScummLM.bmp ScummS.bmp ScummSM.bmp
|
||||
|
||||
// libraries
|
||||
LIBRARY cone.lib EIKCORE.lib
|
||||
LIBRARY euser.lib apparc.lib
|
||||
LIBRARY efsrv.lib apgrfx.lib
|
||||
LIBRARY avkon.lib
|
@ -1,63 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
; Languages
|
||||
;&EN
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM S60v1"},(0x101f9b57),0,130,0
|
||||
|
||||
; Platform type
|
||||
(0x101F6F88), 0, 0, 0, {"Series60ProductID"}
|
||||
|
||||
; Launcher, Application, AIF & Resource file
|
||||
"\epoc32\release\armi\urel\ScummVM.app"-"!:\system\apps\ScummVM\ScummVM.app"
|
||||
"\epoc32\release\armi\urel\ScummVM.exe"-"!:\system\apps\ScummVM\ScummVM.exe"
|
||||
"\epoc32\release\armi\urel\ScummVM.aif"-"!:\system\apps\ScummVM\ScummVM.aif"
|
||||
"\epoc32\release\armi\urel\ScummVM.rsc"-"!:\system\apps\ScummVM\ScummVM.rsc"
|
||||
|
||||
"..\..\..\..\dists\pred.dic"-"c:\system\apps\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\system\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\system\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\system\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\system\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\system\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\system\apps\scummvm\NEWS"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\encoding.dat"-"!:\system\apps\scummvm\encoding.dat"
|
||||
"..\kyra.dat"-"!:\system\apps\scummvm\kyra.dat"
|
||||
"..\sky.cpt"-"!:\system\apps\scummvm\sky.cpt"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"!:\system\apps\ScummVM\scummvm.ini",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stdout.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stderr.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,64 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
; Languages
|
||||
;&EN
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM S60v2"},(0x101f9b57),0,130,0
|
||||
|
||||
; Platform type
|
||||
(0x101F6F88), 0, 0, 0, {"Series60ProductID"}
|
||||
|
||||
; Launcher, Application, AIF & Resource file
|
||||
"\epoc32\release\armi\urel\ScummVM.app"-"!:\system\apps\ScummVM\ScummVM.app"
|
||||
"\epoc32\release\armi\urel\ScummVM.exe"-"!:\system\apps\ScummVM\ScummVM.exe"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.aif"-"!:\system\apps\ScummVM\ScummVM.aif"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.rsc"-"!:\system\apps\ScummVM\ScummVM.rsc"
|
||||
"..\..\..\..\dists\pred.dic"-"c:\system\apps\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\system\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\system\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\system\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\system\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\system\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\system\apps\scummvm\NEWS"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\..\..\..\dists\engine-data\encoding.dat"-"!:\system\apps\scummvm\encoding.dat"
|
||||
"..\..\..\..\dists\engine-data\kyra.dat"-"!:\system\apps\scummvm\kyra.dat"
|
||||
"..\..\..\..\dists\engine-data\sky.cpt"-"!:\system\apps\scummvm\sky.cpt"
|
||||
"..\..\..\..\dists\engine-data\lure.dat"-"!:\system\apps\scummvm\lure.dat"
|
||||
"..\..\..\..\dists\engine-data\drascula.dat"-"!:\system\apps\scummvm\drascula.dat"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"!:\system\apps\ScummVM\scummvm.ini",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stdout.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stderr.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,109 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2020 Stryzhniou Fiodar
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
START BITMAP ScummVM.mbm
|
||||
TARGETPATH \Resource\Apps
|
||||
SOURCEPATH ..\res
|
||||
// Source Color-depth Source-bitmap-list
|
||||
// c denotes whether the bitmap is a color bitmap and the digits represent the
|
||||
// color-depth of the bitmap and the bitmap mask respectively
|
||||
SOURCE c24 ScummSmall.bmp
|
||||
SOURCE 8 ScummSmallMask.bmp
|
||||
SOURCE c24 ScummLarge.bmp
|
||||
SOURCE 8 ScummLargeMask.bmp
|
||||
SOURCE c24 ScummxLarge.bmp
|
||||
SOURCE 8 ScummxLargeMask.bmp
|
||||
END
|
||||
|
||||
CAPABILITY LocalServices ReadUserData
|
||||
|
||||
|
||||
// *** Static Libraries
|
||||
STATICLIBRARY scummvm_base.lib
|
||||
STATICLIBRARY scummvm_codecs.lib
|
||||
STATICLIBRARY scummvm_lua.lib
|
||||
STATICLIBRARY liba52.lib
|
||||
STATICLIBRARY libFAAD2.lib
|
||||
STATICLIBRARY libflacdec.lib
|
||||
STATICLIBRARY freetype.lib
|
||||
STATICLIBRARY libjpeg.lib
|
||||
STATICLIBRARY libmad.lib
|
||||
STATICLIBRARY libmpeg2.lib
|
||||
STATICLIBRARY libpng.lib
|
||||
STATICLIBRARY theora.lib
|
||||
STATICLIBRARY libtremor.lib
|
||||
STATICLIBRARY zlib.lib
|
||||
STATICLIBRARY esdl.lib
|
||||
STATICLIBRARY openlibm.lib
|
||||
STATICLIBRARY libc_missed.lib
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_// Updated @ Fri Nov 1 17:47:21 2013
|
||||
SOURCE main.cpp
|
||||
SOURCE commandLine.cpp
|
||||
SOURCE plugins.cpp
|
||||
SOURCE version.cpp
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\audiocd\sdl\sdl-audiocd.cpp
|
||||
SOURCE backends\audiocd\default\default-audiocd.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs-factory.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianMain.cpp
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Common error
|
||||
source common\error.cpp
|
||||
source common\quicktime.cpp
|
||||
|
||||
// Special for graphics
|
||||
source backends\graphics\surfacesdl\surfacesdl-graphics.cpp
|
||||
source engines\obsolete.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
LIBRARY cone.lib eikcore.lib euser.lib apparc.lib
|
||||
LIBRARY fbscli.lib estlib.lib apgrfx.lib gdi.lib
|
||||
LIBRARY hal.lib bitgdi.lib mediaclientaudiostream.lib
|
||||
LIBRARY efsrv.lib ws32.lib avkon.lib bafl.lib esock.lib
|
||||
LIBRARY remconcoreapi.lib remconinterfacebase.lib
|
||||
LIBRARY charconv.lib apmime.lib drtaeabi.lib // libcurl.dll
|
||||
|
||||
SOURCEPATH ..\..\sdl
|
||||
SOURCE sdl-window.cpp
|
||||
|
||||
//These files compiled if particular engines or features enabled.
|
||||
//So we compile them with app build.
|
||||
SOURCEPATH ..\..\..\..\video
|
||||
SOURCE coktel_decoder.cpp //GOB and SCI32 games
|
||||
|
||||
SOURCEPATH ..\..\..\..\graphics
|
||||
SOURCE sjis.cpp //KYRA, SCI, SCUMM, SAGA and AGOS
|
||||
SOURCE renderer.cpp //USE_TINYGL
|
@ -1,72 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2014-2020 Fedor Strizhniou
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// Common EPOC MMP makefiles option storage for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
|
||||
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
|
||||
// -Wno-psabi turn off "note: the mangling of 'va_list' has changed in GCC 4.4"
|
||||
OPTION GCCE -pipe -Wno-multichar -Wno-reorder -Wno-unused -Wno-format -fsigned-char -Wno-psabi
|
||||
ALWAYS_BUILD_AS_ARM
|
||||
|
||||
// *** Include paths
|
||||
|
||||
MACRO S60
|
||||
MACRO S60V3
|
||||
MACRO SDL_BACKEND
|
||||
MACRO ENABLE_VKEYBD
|
||||
MACRO USE_TRANSLATION
|
||||
MACRO NONSTANDARD_PORT
|
||||
MACRO DISABLE_FANCY_THEMES
|
||||
|
||||
MACRO USE_A52
|
||||
MACRO USE_BINK
|
||||
MACRO USE_FAAD // LIB:libFAAD2.lib
|
||||
MACRO USE_FLAC // LIB:libflacdec.lib
|
||||
MACRO USE_FREETYPE2 // LIB:freetype.lib
|
||||
MACRO USE_JPEG // LIB:libjpeg.lib
|
||||
MACRO USE_MAD // LIB:libmad.lib
|
||||
MACRO USE_MPEG2 // LIB:libmpeg2.lib
|
||||
MACRO USE_PNG // LIB:libpng.lib
|
||||
MACRO USE_THEORADEC // LIB:theora.lib
|
||||
MACRO USE_TREMOR // LIB:libtremor.lib
|
||||
MACRO USE_ZLIB // LIB:zlib.lib
|
||||
|
||||
USERINCLUDE ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\gui ..\..\..\..\audio ..\src
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\freetype
|
||||
SYSTEMINCLUDE \epoc32\include\mpeg2dec
|
||||
SYSTEMINCLUDE \epoc32\include\jpeg
|
||||
SYSTEMINCLUDE \epoc32\include\png
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include\theora
|
||||
SYSTEMINCLUDE \epoc32\include\tremor
|
||||
SYSTEMINCLUDE \epoc32\include\site
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
@ -1,142 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2021 Stryzhniou Fiodar
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
/* Warning! Carbide can silently change file.
|
||||
Set read-onle attribute after manual update!!!
|
||||
*/
|
||||
|
||||
#ifdef SCUMMVM_PT_1
|
||||
STATICLIBRARY scummvm_access.lib
|
||||
STATICLIBRARY scummvm_adl.lib
|
||||
STATICLIBRARY scummvm_agi.lib
|
||||
STATICLIBRARY scummvm_agos.lib
|
||||
STATICLIBRARY scummvm_ags.lib
|
||||
STATICLIBRARY scummvm_bbvs.lib
|
||||
STATICLIBRARY scummvm_buried.lib
|
||||
STATICLIBRARY scummvm_cge.lib
|
||||
STATICLIBRARY scummvm_cge2.lib
|
||||
STATICLIBRARY scummvm_scumm.lib
|
||||
#endif // SCUMMVM_PT_1
|
||||
|
||||
#ifdef SCUMMVM_PT_2
|
||||
STATICLIBRARY scummvm_cine.lib
|
||||
STATICLIBRARY scummvm_composer.lib
|
||||
STATICLIBRARY scummvm_cruise.lib
|
||||
STATICLIBRARY scummvm_cryomni3d.lib
|
||||
STATICLIBRARY scummvm_draci.lib
|
||||
STATICLIBRARY scummvm_dragons.lib
|
||||
STATICLIBRARY scummvm_drascula.lib
|
||||
STATICLIBRARY scummvm_dreamweb.lib
|
||||
STATICLIBRARY scummvm_glk.lib
|
||||
STATICLIBRARY scummvm_gnap.lib
|
||||
STATICLIBRARY scummvm_gob.lib
|
||||
STATICLIBRARY scummvm_griffon.lib
|
||||
STATICLIBRARY scummvm_groovie.lib
|
||||
STATICLIBRARY scummvm_hdb.lib
|
||||
#endif // SCUMMVM_PT_2
|
||||
|
||||
#ifdef SCUMMVM_PT_3
|
||||
STATICLIBRARY scummvm_grim.lib
|
||||
STATICLIBRARY scummvm_hopkins.lib
|
||||
STATICLIBRARY scummvm_hugo.lib
|
||||
STATICLIBRARY scummvm_illusions.lib
|
||||
STATICLIBRARY scummvm_kyra.lib
|
||||
STATICLIBRARY scummvm_lab.lib
|
||||
STATICLIBRARY scummvm_lure.lib
|
||||
STATICLIBRARY scummvm_made.lib
|
||||
STATICLIBRARY scummvm_mads.lib
|
||||
STATICLIBRARY scummvm_mortevielle.lib
|
||||
#endif // SCUMMVM_PT_3
|
||||
|
||||
#ifdef SCUMMVM_PT_4
|
||||
STATICLIBRARY scummvm_mohawk.lib
|
||||
STATICLIBRARY scummvm_myst3.lib
|
||||
STATICLIBRARY scummvm_neverhood.lib
|
||||
STATICLIBRARY scummvm_ngi.lib
|
||||
STATICLIBRARY scummvm_parallaction.lib
|
||||
STATICLIBRARY scummvm_pegasus.lib
|
||||
STATICLIBRARY scummvm_petka.lib
|
||||
STATICLIBRARY scummvm_plumbers.lib
|
||||
STATICLIBRARY scummvm_prince.lib
|
||||
STATICLIBRARY scummvm_private.lib
|
||||
STATICLIBRARY scummvm_queen.lib
|
||||
STATICLIBRARY scummvm_saga.lib
|
||||
STATICLIBRARY scummvm_sky.lib
|
||||
#endif // SCUMMVM_PT_4
|
||||
|
||||
#ifdef SCUMMVM_PT_5
|
||||
STATICLIBRARY scummvm_bladerunner.lib
|
||||
#endif // SCUMMVM_PT_5
|
||||
|
||||
#ifdef SCUMMVM_PT_6
|
||||
STATICLIBRARY scummvm_sci.lib
|
||||
STATICLIBRARY scummvm_sherlock.lib
|
||||
STATICLIBRARY scummvm_stark.lib
|
||||
STATICLIBRARY scummvm_supernova.lib
|
||||
STATICLIBRARY scummvm_sword1.lib
|
||||
STATICLIBRARY scummvm_sword2.lib
|
||||
STATICLIBRARY scummvm_teenagent.lib
|
||||
STATICLIBRARY scummvm_tinsel.lib
|
||||
STATICLIBRARY scummvm_titanic.lib
|
||||
#endif // SCUMMVM_PT_6
|
||||
|
||||
#ifdef SCUMMVM_PT_7
|
||||
STATICLIBRARY scummvm_toltecs.lib
|
||||
STATICLIBRARY scummvm_tony.lib
|
||||
STATICLIBRARY scummvm_toon.lib
|
||||
STATICLIBRARY scummvm_touche.lib
|
||||
STATICLIBRARY scummvm_tsage.lib
|
||||
STATICLIBRARY scummvm_tucker.lib
|
||||
STATICLIBRARY scummvm_voyeur.lib
|
||||
STATICLIBRARY scummvm_wintermute.lib
|
||||
STATICLIBRARY scummvm_zvision.lib
|
||||
STATICLIBRARY scummvm_xeen.lib
|
||||
STATICLIBRARY scummvm_asylum.lib
|
||||
STATICLIBRARY scummvm_avalanche.lib
|
||||
#endif // SCUMMVM_PT_7
|
||||
|
||||
#ifdef SCUMMVM_PT_8
|
||||
STATICLIBRARY scummvm_ultima.lib
|
||||
STATICLIBRARY scummvm_chewy.lib
|
||||
STATICLIBRARY scummvm_cryo.lib
|
||||
STATICLIBRARY scummvm_director.lib
|
||||
STATICLIBRARY scummvm_dm.lib
|
||||
STATICLIBRARY scummvm_hadesch.lib
|
||||
STATICLIBRARY scummvm_icb.lib
|
||||
STATICLIBRARY scummvm_kingdom.lib
|
||||
STATICLIBRARY scummvm_lilliput.lib
|
||||
STATICLIBRARY scummvm_macventure.lib
|
||||
#endif // SCUMMVM_PT_8
|
||||
|
||||
#ifdef SCUMMVM_PT_9
|
||||
STATICLIBRARY scummvm_lastexpress.lib
|
||||
STATICLIBRARY scummvm_mutationofjb.lib
|
||||
STATICLIBRARY scummvm_nancy.lib
|
||||
STATICLIBRARY scummvm_pink.lib
|
||||
STATICLIBRARY scummvm_saga2.lib
|
||||
STATICLIBRARY scummvm_sludge.lib
|
||||
STATICLIBRARY scummvm_startrek.lib
|
||||
STATICLIBRARY scummvm_trecision.lib
|
||||
STATICLIBRARY scummvm_twine.lib
|
||||
STATICLIBRARY scummvm_wage.lib
|
||||
#endif // SCUMMVM_PT_9
|
||||
|
@ -1,34 +0,0 @@
|
||||
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
||||
ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\Z
|
||||
else
|
||||
ZDIR=$(EPOCROOT)epoc32\data\z
|
||||
endif
|
||||
|
||||
TARGETDIR=$(ZDIR)\RESOURCE\APPS
|
||||
ICONTARGETFILENAME=$(TARGETDIR)\scummvm.mif
|
||||
|
||||
do_nothing :
|
||||
@rem do_nothing
|
||||
|
||||
MAKMAKE : do_nothing
|
||||
|
||||
BLD : do_nothing
|
||||
|
||||
CLEAN : do_nothing
|
||||
|
||||
LIB : do_nothing
|
||||
|
||||
CLEANLIB : do_nothing
|
||||
|
||||
RESOURCE :
|
||||
mifconv $(ICONTARGETFILENAME) \
|
||||
/c32 ..\..\..\..\icons\scummvm.svg
|
||||
|
||||
FREEZE : do_nothing
|
||||
|
||||
SAVESPACE : do_nothing
|
||||
|
||||
RELEASABLES :
|
||||
@echo $(ICONTARGETFILENAME)
|
||||
|
||||
FINAL : do_nothing
|
@ -1,139 +0,0 @@
|
||||
|
||||
// This is autogenerated file.
|
||||
|
||||
|
||||
/* Warning! Carbide can silently change file.
|
||||
Set read-onle attribute after manual update!!! */
|
||||
#ifdef SCUMMVM_PT_1
|
||||
MACRO ENABLE_ACCESS // LIB:scummvm_access.lib
|
||||
MACRO ENABLE_ADL // LIB:scummvm_adl.lib
|
||||
MACRO ENABLE_AGI // LIB:scummvm_agi.lib
|
||||
MACRO ENABLE_AGOS // LIB:scummvm_agos.lib
|
||||
MACRO ENABLE_AGOS2 // Subengine
|
||||
MACRO ENABLE_AGS // LIB:scummvm_ags.lib
|
||||
MACRO ENABLE_BBVS // LIB:scummvm_bbvs.lib
|
||||
MACRO ENABLE_BURIED // LIB:scummvm_buried.lib
|
||||
MACRO ENABLE_CGE // LIB:scummvm_cge.lib
|
||||
MACRO ENABLE_CGE2 // LIB:scummvm_cge2.lib
|
||||
MACRO ENABLE_SCUMM // LIB:scummvm_scumm.lib
|
||||
MACRO ENABLE_SCUMM_7_8 // Subengine
|
||||
MACRO ENABLE_HE // Subengine
|
||||
#endif // SCUMMVM_PT_1
|
||||
|
||||
#ifdef SCUMMVM_PT_2
|
||||
MACRO ENABLE_CINE // LIB:scummvm_cine.lib
|
||||
MACRO ENABLE_COMPOSER // LIB:scummvm_composer.lib
|
||||
MACRO ENABLE_CRUISE // LIB:scummvm_cruise.lib
|
||||
MACRO ENABLE_CRYOMNI3D // LIB:scummvm_cryomni3d.lib
|
||||
MACRO ENABLE_VERSAILLES // Subengine
|
||||
MACRO ENABLE_DRACI // LIB:scummvm_draci.lib
|
||||
MACRO ENABLE_DRAGONS // LIB:scummvm_dragons.lib
|
||||
MACRO ENABLE_DRASCULA // LIB:scummvm_drascula.lib
|
||||
MACRO ENABLE_DREAMWEB // LIB:scummvm_dreamweb.lib
|
||||
MACRO ENABLE_GLK // LIB:scummvm_glk.lib
|
||||
MACRO ENABLE_GNAP // LIB:scummvm_gnap.lib
|
||||
MACRO ENABLE_GOB // LIB:scummvm_gob.lib
|
||||
MACRO ENABLE_GRIFFON // LIB:scummvm_griffon.lib
|
||||
MACRO ENABLE_GROOVIE // LIB:scummvm_groovie.lib
|
||||
MACRO ENABLE_GROOVIE2 // Subengine
|
||||
MACRO ENABLE_HDB // LIB:scummvm_hdb.lib
|
||||
#endif // SCUMMVM_PT_2
|
||||
|
||||
#ifdef SCUMMVM_PT_3
|
||||
MACRO ENABLE_GRIM // LIB:scummvm_grim.lib
|
||||
MACRO ENABLE_MONKEY4 // Subengine
|
||||
MACRO ENABLE_HOPKINS // LIB:scummvm_hopkins.lib
|
||||
MACRO ENABLE_HUGO // LIB:scummvm_hugo.lib
|
||||
MACRO ENABLE_ILLUSIONS // LIB:scummvm_illusions.lib
|
||||
MACRO ENABLE_KYRA // LIB:scummvm_kyra.lib
|
||||
MACRO ENABLE_LOL // Subengine
|
||||
MACRO ENABLE_EOB // Subengine
|
||||
MACRO ENABLE_LAB // LIB:scummvm_lab.lib
|
||||
MACRO ENABLE_LURE // LIB:scummvm_lure.lib
|
||||
MACRO ENABLE_MADE // LIB:scummvm_made.lib
|
||||
MACRO ENABLE_MADS // LIB:scummvm_mads.lib
|
||||
MACRO ENABLE_MADSV2 // Subengine
|
||||
MACRO ENABLE_MORTEVIELLE // LIB:scummvm_mortevielle.lib
|
||||
#endif // SCUMMVM_PT_3
|
||||
|
||||
#ifdef SCUMMVM_PT_4
|
||||
MACRO ENABLE_MOHAWK // LIB:scummvm_mohawk.lib
|
||||
MACRO ENABLE_CSTIME // Subengine
|
||||
MACRO ENABLE_RIVEN // Subengine
|
||||
MACRO ENABLE_MYST // Subengine
|
||||
MACRO ENABLE_MYSTME // Subengine
|
||||
MACRO ENABLE_MYST3 // LIB:scummvm_myst3.lib
|
||||
MACRO ENABLE_NEVERHOOD // LIB:scummvm_neverhood.lib
|
||||
MACRO ENABLE_NGI // LIB:scummvm_ngi.lib
|
||||
MACRO ENABLE_PARALLACTION // LIB:scummvm_parallaction.lib
|
||||
MACRO ENABLE_PEGASUS // LIB:scummvm_pegasus.lib
|
||||
MACRO ENABLE_PETKA // LIB:scummvm_petka.lib
|
||||
MACRO ENABLE_PLUMBERS // LIB:scummvm_plumbers.lib
|
||||
MACRO ENABLE_PRINCE // LIB:scummvm_prince.lib
|
||||
MACRO ENABLE_PRIVATE // LIB:scummvm_private.lib
|
||||
MACRO ENABLE_QUEEN // LIB:scummvm_queen.lib
|
||||
MACRO ENABLE_SAGA // LIB:scummvm_saga.lib
|
||||
MACRO ENABLE_IHNM // Subengine
|
||||
MACRO ENABLE_SKY // LIB:scummvm_sky.lib
|
||||
#endif // SCUMMVM_PT_4
|
||||
|
||||
#ifdef SCUMMVM_PT_5
|
||||
MACRO ENABLE_BLADERUNNER // LIB:scummvm_bladerunner.lib
|
||||
#endif // SCUMMVM_PT_5
|
||||
|
||||
#ifdef SCUMMVM_PT_6
|
||||
MACRO ENABLE_SCI // LIB:scummvm_sci.lib
|
||||
MACRO ENABLE_SCI32 // Subengine
|
||||
MACRO ENABLE_SHERLOCK // LIB:scummvm_sherlock.lib
|
||||
MACRO ENABLE_STARK // LIB:scummvm_stark.lib
|
||||
MACRO ENABLE_SUPERNOVA // LIB:scummvm_supernova.lib
|
||||
MACRO ENABLE_SWORD1 // LIB:scummvm_sword1.lib
|
||||
MACRO ENABLE_SWORD2 // LIB:scummvm_sword2.lib
|
||||
MACRO ENABLE_TEENAGENT // LIB:scummvm_teenagent.lib
|
||||
MACRO ENABLE_TINSEL // LIB:scummvm_tinsel.lib
|
||||
MACRO ENABLE_TITANIC // LIB:scummvm_titanic.lib
|
||||
#endif // SCUMMVM_PT_6
|
||||
|
||||
#ifdef SCUMMVM_PT_7
|
||||
MACRO ENABLE_TOLTECS // LIB:scummvm_toltecs.lib
|
||||
MACRO ENABLE_TONY // LIB:scummvm_tony.lib
|
||||
MACRO ENABLE_TOON // LIB:scummvm_toon.lib
|
||||
MACRO ENABLE_TOUCHE // LIB:scummvm_touche.lib
|
||||
MACRO ENABLE_TSAGE // LIB:scummvm_tsage.lib
|
||||
MACRO ENABLE_TUCKER // LIB:scummvm_tucker.lib
|
||||
MACRO ENABLE_VOYEUR // LIB:scummvm_voyeur.lib
|
||||
MACRO ENABLE_WINTERMUTE // LIB:scummvm_wintermute.lib
|
||||
MACRO ENABLE_WME3D // Subengine
|
||||
MACRO ENABLE_FOXTAIL // Subengine
|
||||
MACRO ENABLE_HEROCRAFT // Subengine
|
||||
MACRO ENABLE_ZVISION // LIB:scummvm_zvision.lib
|
||||
MACRO ENABLE_XEEN // LIB:scummvm_xeen.lib
|
||||
MACRO ENABLE_ASYLUM // LIB:scummvm_asylum.lib
|
||||
MACRO ENABLE_AVALANCHE // LIB:scummvm_avalanche.lib
|
||||
#endif // SCUMMVM_PT_7
|
||||
|
||||
#ifdef SCUMMVM_PT_8
|
||||
MACRO ENABLE_ULTIMA // LIB:scummvm_ultima.lib
|
||||
MACRO ENABLE_CHEWY // LIB:scummvm_chewy.lib
|
||||
MACRO ENABLE_CRYO // LIB:scummvm_cryo.lib
|
||||
MACRO ENABLE_DIRECTOR // LIB:scummvm_director.lib
|
||||
MACRO ENABLE_DM // LIB:scummvm_dm.lib
|
||||
MACRO ENABLE_HADESCH // LIB:scummvm_hadesch.lib
|
||||
MACRO ENABLE_ICB // LIB:scummvm_icb.lib
|
||||
MACRO ENABLE_KINGDOM // LIB:scummvm_kingdom.lib
|
||||
MACRO ENABLE_LILLIPUT // LIB:scummvm_lilliput.lib
|
||||
MACRO ENABLE_MACVENTURE // LIB:scummvm_macventure.lib
|
||||
#endif // SCUMMVM_PT_8
|
||||
|
||||
#ifdef SCUMMVM_PT_9
|
||||
MACRO ENABLE_LASTEXPRESS // LIB:scummvm_lastexpress.lib
|
||||
MACRO ENABLE_MUTATIONOFJB // LIB:scummvm_mutationofjb.lib
|
||||
MACRO ENABLE_NANCY // LIB:scummvm_nancy.lib
|
||||
MACRO ENABLE_PINK // LIB:scummvm_pink.lib
|
||||
MACRO ENABLE_SAGA2 // LIB:scummvm_saga2.lib
|
||||
MACRO ENABLE_SLUDGE // LIB:scummvm_sludge.lib
|
||||
MACRO ENABLE_STARTREK // LIB:scummvm_startrek.lib
|
||||
MACRO ENABLE_TWINE // LIB:scummvm_twine.lib
|
||||
MACRO ENABLE_TRECISION // LIB:scummvm_trecision.lib
|
||||
MACRO ENABLE_WAGE // LIB:scummvm_wage.lib
|
||||
#endif // SCUMMVM_PT_9
|
@ -1,12 +0,0 @@
|
||||
PRJ_PLATFORMS
|
||||
WINS ARMI // ARM4 THUMB
|
||||
|
||||
PRJ_MMPFILES
|
||||
//START_AUTO_PROJECTS//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
|
||||
.\ScummVM_S80.mmp
|
||||
.\ScummVM_S80_App.mmp
|
@ -1,104 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC S80 MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
#if defined(WINS)
|
||||
TARGET ScummVM.dll
|
||||
#else
|
||||
TARGET ScummVM.exe
|
||||
#endif
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE EXEDLL
|
||||
|
||||
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
|
||||
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
|
||||
|
||||
EPOCSTACKSIZE 0x00008000
|
||||
EPOCHEAPSIZE 3024000 16192000
|
||||
|
||||
MACRO S80
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
#if !defined(WINS)
|
||||
STATICLIBRARY egcc.lib // for __fixunsdfsi
|
||||
#endif
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\common ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\sound
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\events.cpp
|
||||
SOURCE backends\platform\sdl\graphics.cpp
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Special for graphics
|
||||
source graphics\iff.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib bitgdi.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib bafl.lib
|
@ -1,52 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// MAKEFILE.MMP S80 ScummVM Launcher
|
||||
//
|
||||
|
||||
TARGET ScummVM.app
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE app
|
||||
|
||||
UID 0x100039ce 0x101f9b57
|
||||
sourcepath ..\res
|
||||
RESOURCE SCUMMVM.rss
|
||||
|
||||
SOURCEPATH .
|
||||
USERINCLUDE ..\src
|
||||
SYSTEMINCLUDE \epoc32\include \epoc32\include\libc
|
||||
|
||||
// app source
|
||||
sourcepath ..\src
|
||||
SOURCE ScummVMApp.cpp
|
||||
|
||||
sourcepath ..
|
||||
AIF ScummVm.Aif ..\res\ ScummVmAif.rss c16 ScummL.bmp ScummLM.bmp ScummS.bmp ScummSM.bmp
|
||||
|
||||
// libraries
|
||||
LIBRARY cone.lib EIKCORE.lib
|
||||
LIBRARY euser.lib apparc.lib
|
||||
LIBRARY efsrv.lib apgrfx.lib
|
@ -1,64 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
; Languages
|
||||
;&EN
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM S80"},(0x101f9b57),0,130,0
|
||||
|
||||
; Platform type -- disabled: seems to be causing trouble
|
||||
;(0x101F8ED2), 0, 0, 0, {"Series80ProductID"}
|
||||
|
||||
; Launcher, Application, AIF & Resource file
|
||||
"\epoc32\release\armi\urel\ScummVM.app"-"!:\system\apps\ScummVM\ScummVM.app"
|
||||
"\epoc32\release\armi\urel\ScummVM.exe"-"!:\system\apps\ScummVM\ScummVM.exe"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.aif"-"!:\system\apps\ScummVM\ScummVM.aif"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.rsc"-"!:\system\apps\ScummVM\ScummVM.rsc"
|
||||
"..\..\..\..\dists\pred.dic"-"c:\system\apps\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\system\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\system\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\system\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\system\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\system\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\system\apps\scummvm\NEWS"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\..\..\..\dists\engine-data\encoding.dat"-"!:\system\apps\scummvm\encoding.dat"
|
||||
"..\..\..\..\dists\engine-data\kyra.dat"-"!:\system\apps\scummvm\kyra.dat"
|
||||
"..\..\..\..\dists\engine-data\sky.cpt"-"!:\system\apps\scummvm\sky.cpt"
|
||||
"..\..\..\..\dists\engine-data\lure.dat"-"!:\system\apps\scummvm\lure.dat"
|
||||
"..\..\..\..\dists\engine-data\drascula.dat"-"!:\system\apps\scummvm\drascula.dat"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"!:\system\apps\ScummVM\scummvm.ini",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stdout.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stderr.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,12 +0,0 @@
|
||||
PRJ_PLATFORMS
|
||||
WINS ARMI // ARM4 THUMB
|
||||
|
||||
PRJ_MMPFILES
|
||||
//START_AUTO_PROJECTS//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
|
||||
.\ScummVM_S90.mmp
|
||||
.\ScummVM_S90_App.mmp
|
@ -1,105 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC S90 MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
#if defined(WINS)
|
||||
TARGET ScummVM.dll
|
||||
#else
|
||||
TARGET ScummVM.exe
|
||||
#endif
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE EXEDLL
|
||||
|
||||
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
|
||||
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
|
||||
|
||||
EPOCSTACKSIZE 0x00008000
|
||||
EPOCHEAPSIZE 1024 161920000
|
||||
|
||||
MACRO S90
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
#if !defined(WINS)
|
||||
STATICLIBRARY egcc.lib // for __fixunsdfsi
|
||||
#endif
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\common ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\sound
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\events.cpp
|
||||
SOURCE backends\platform\sdl\graphics.cpp
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Special for graphics
|
||||
source graphics\iff.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib bitgdi.lib bafl.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib
|
@ -1,52 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// MAKEFILE.MMP S90 ScummVM Launcher
|
||||
//
|
||||
|
||||
TARGET ScummVM.app
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE app
|
||||
|
||||
UID 0x100039ce 0x101f9b57
|
||||
sourcepath ..\res
|
||||
RESOURCE SCUMMVM.rss
|
||||
|
||||
SOURCEPATH .
|
||||
USERINCLUDE .
|
||||
SYSTEMINCLUDE \epoc32\include \epoc32\include\libc
|
||||
|
||||
// app source
|
||||
sourcepath ..\src
|
||||
SOURCE ScummVMApp.cpp
|
||||
|
||||
sourcepath ..
|
||||
AIF ScummVm.Aif ..\res\ ScummVmAif.rss c16 ScummL.bmp ScummLM.bmp ScummS.bmp ScummSM.bmp
|
||||
|
||||
// libraries
|
||||
LIBRARY cone.lib EIKCORE.lib
|
||||
LIBRARY euser.lib apparc.lib
|
||||
LIBRARY efsrv.lib apgrfx.lib
|
@ -1,64 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
; Languages
|
||||
;&EN
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM S90"},(0x101f9b57),0,130,0
|
||||
|
||||
; Platform type -- disabled: seems to be causing trouble
|
||||
;(0x101FBE04), 0, 0, 0, {"Series90ProductID"}
|
||||
|
||||
; Launcher, Application, AIF & Resource file
|
||||
"\epoc32\release\armi\urel\ScummVM.app"-"!:\system\apps\ScummVM\ScummVM.app"
|
||||
"\epoc32\release\armi\urel\ScummVM.exe"-"!:\system\apps\ScummVM\ScummVM.exe"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.aif"-"!:\system\apps\ScummVM\ScummVM.aif"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.rsc"-"!:\system\apps\ScummVM\ScummVM.rsc"
|
||||
"..\..\..\..\dists\pred.dic"-"c:\system\apps\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\system\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\system\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\system\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\system\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\system\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\system\apps\scummvm\NEWS"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\..\..\..\dists\engine-data\encoding.dat"-"!:\system\apps\scummvm\encoding.dat"
|
||||
"..\..\..\..\dists\engine-data\kyra.dat"-"!:\system\apps\scummvm\kyra.dat"
|
||||
"..\..\..\..\dists\engine-data\sky.cpt"-"!:\system\apps\scummvm\sky.cpt"
|
||||
"..\..\..\..\dists\engine-data\lure.dat"-"!:\system\apps\scummvm\lure.dat"
|
||||
"..\..\..\..\dists\engine-data\drascula.dat"-"!:\system\apps\scummvm\drascula.dat"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"!:\system\apps\ScummVM\scummvm.ini",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stdout.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stderr.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,11 +0,0 @@
|
||||
PRJ_PLATFORMS
|
||||
WINS ARMI // ARM4 THUMB
|
||||
|
||||
PRJ_MMPFILES
|
||||
//START_AUTO_PROJECTS//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
|
||||
.\ScummVM_UIQ2.mmp
|
@ -1,42 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
// ScummVM.RSS
|
||||
|
||||
NAME SCUM
|
||||
|
||||
// Include definitions of resource STRUCTS used by this
|
||||
// resource script
|
||||
#include <eikon.rh>
|
||||
#include "..\src\Scummvm.hrh"
|
||||
// Include the standard Eikon resource ids
|
||||
#include <eikon.rsg>
|
||||
|
||||
|
||||
RESOURCE RSS_SIGNATURE
|
||||
{
|
||||
}
|
||||
|
||||
RESOURCE TBUF16 { buf=""; }
|
||||
|
||||
RESOURCE EIK_APP_INFO
|
||||
{
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2006 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC UIQ MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
TARGET SCUMMVM.APP
|
||||
TARGETPATH system\apps\ScummVM
|
||||
TARGETTYPE app
|
||||
|
||||
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
|
||||
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
|
||||
|
||||
RESOURCE ScummVM.rss
|
||||
EPOCSTACKSIZE 0x80008000 // this enables ECompXL app compression
|
||||
AIF ScummVm.Aif ..\res\ ScummVmAif.rss c16 ScummL.bmp ScummLM.bmp ScummS.bmp ScummSM.bmp
|
||||
UID 0x100039ce 0x101f9b57
|
||||
|
||||
MACRO UIQ
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
#if !defined(WINS)
|
||||
STATICLIBRARY egcc.lib // for __fixunsdfsi
|
||||
#endif
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\common ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\sound
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\events.cpp
|
||||
SOURCE backends\platform\sdl\graphics.cpp
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Special for graphics
|
||||
source graphics\iff.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib
|
||||
LIBRARY qikctl.lib bafl.lib
|
||||
|
||||
START WINS
|
||||
WIN32_LIBRARY lldiv.obj llmul.obj llshl.obj
|
||||
END
|
@ -1,61 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
; Languages
|
||||
;&EN
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM UIQ2"},(0x101f9b57),0,130,0
|
||||
|
||||
; Platform type
|
||||
(0x101F617B), 2, 0, 0, {"UIQ20ProductID"}
|
||||
|
||||
; Application, AIF & Resource file
|
||||
"\epoc32\release\armi\urel\ScummVM.app"-"!:\system\apps\ScummVM\ScummVM.app"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.aif"-"!:\system\apps\ScummVM\ScummVM.aif"
|
||||
"\epoc32\data\z\system\apps\ScummVM\ScummVM.rsc"-"!:\system\apps\ScummVM\ScummVM.rsc"
|
||||
"..\..\..\..\dists\pred.dic"-"c:\system\apps\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\system\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\system\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\system\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\system\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\system\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\system\apps\scummvm\NEWS"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\encoding.dat"-"!:\system\apps\scummvm\encoding.dat"
|
||||
"..\kyra.dat"-"!:\system\apps\scummvm\kyra.dat"
|
||||
"..\sky.cpt"-"!:\system\apps\scummvm\sky.cpt"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"!:\system\apps\ScummVM\scummvm.ini",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stdout.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\scummvm.stderr.txt",FILENULL
|
||||
""-"!:\system\apps\ScummVM\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,12 +0,0 @@
|
||||
PRJ_PLATFORMS
|
||||
GCCE WINSCW
|
||||
|
||||
PRJ_MMPFILES
|
||||
//START_AUTO_PROJECTS//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_PROJECTS//
|
||||
gnumakefile ..\help\build_help.mk
|
||||
.\ScummVM_A0000658_UIQ3.mmp
|
||||
.\ScummVM_UIQ3.mmp
|
@ -1,49 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
// ScummVM.RSS
|
||||
|
||||
NAME SCUM
|
||||
|
||||
// Include definitions of resource STRUCTS used by this
|
||||
// resource script
|
||||
#include <eikon.rh>
|
||||
#include <qikon.rh>
|
||||
#include "..\src\Scummvm.hrh"
|
||||
// Include the standard Eikon resource ids
|
||||
#include <eikon.rsg>
|
||||
|
||||
|
||||
RESOURCE RSS_SIGNATURE
|
||||
{
|
||||
}
|
||||
|
||||
RESOURCE TBUF16 { buf=""; }
|
||||
|
||||
RESOURCE EIK_APP_INFO
|
||||
{
|
||||
}
|
||||
|
||||
#include <sdl.ra>
|
@ -1,49 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
// ScummVM.RSS
|
||||
|
||||
NAME SCUM
|
||||
|
||||
// Include definitions of resource STRUCTS used by this
|
||||
// resource script
|
||||
#include <eikon.rh>
|
||||
#include <qikon.rh>
|
||||
#include "..\src\Scummvm.hrh"
|
||||
// Include the standard Eikon resource ids
|
||||
#include <eikon.rsg>
|
||||
|
||||
|
||||
RESOURCE RSS_SIGNATURE
|
||||
{
|
||||
}
|
||||
|
||||
RESOURCE TBUF16 { buf=""; }
|
||||
|
||||
RESOURCE EIK_APP_INFO
|
||||
{
|
||||
}
|
||||
|
||||
#include <sdl.ra>
|
@ -1,148 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2009 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2009 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC UIQ MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
TARGET ScummVM_A0000658.exe
|
||||
TARGETPATH sys\bin
|
||||
TARGETTYPE exe
|
||||
|
||||
OPTION GCCE -Wno-multichar -Wno-reorder -Wno-unused -Wno-format -fsigned-char
|
||||
// fixes error "section .data loaded at [...] overlaps section .text loaded at [...]"
|
||||
// in future simple add 'a'
|
||||
LINKEROPTION GCCE -Tdata 0xAA00000
|
||||
|
||||
UID 0x100039ce 0xA0000658
|
||||
|
||||
START RESOURCE ScummVM_A0000658_reg.rss
|
||||
TARGETPATH \private\10003a3f\apps
|
||||
END
|
||||
|
||||
START RESOURCE ScummVM_A0000658_loc.rss
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
SOURCEPATH .
|
||||
START RESOURCE ScummVM_A0000658.rss
|
||||
HEADER
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
EPOCSTACKSIZE 80000
|
||||
EPOCHEAPSIZE 5000000 128000000
|
||||
|
||||
START BITMAP ScummVM.mbm
|
||||
TARGETPATH \Resource\Apps
|
||||
SOURCEPATH ..\res
|
||||
// Source Color-depth Source-bitmap-list
|
||||
// c denotes whether the bitmap is a color bitmap and the digits represent the
|
||||
// color-depth of the bitmap and the bitmap mask respectively
|
||||
SOURCE c24 ScummSmall.bmp
|
||||
SOURCE 8 ScummSmallMask.bmp
|
||||
SOURCE c24 ScummLarge.bmp
|
||||
SOURCE 8 ScummLargeMask.bmp
|
||||
SOURCE c24 ScummxLarge.bmp
|
||||
SOURCE 8 ScummxLargeMask.bmp
|
||||
END
|
||||
|
||||
MACRO UIQ
|
||||
MACRO UIQ3
|
||||
|
||||
ALWAYS_BUILD_AS_ARM
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\audio
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\freetype
|
||||
SYSTEMINCLUDE \epoc32\include\mpeg2dec
|
||||
SYSTEMINCLUDE \epoc32\include\jpeg
|
||||
SYSTEMINCLUDE \epoc32\include\png
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include\theora
|
||||
SYSTEMINCLUDE \epoc32\include\tremor
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\audiocd\sdl\sdl-audiocd.cpp
|
||||
SOURCE backends\audiocd\default\default-audiocd.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs-factory.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianMain.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Common error
|
||||
source common\error.cpp
|
||||
source common\quicktime.cpp
|
||||
|
||||
// Special for graphics
|
||||
source backends\graphics\surfacesdl\surfacesdl-graphics.cpp
|
||||
source engines\obsolete.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib bitgdi.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib
|
||||
LIBRARY qikctl.lib
|
||||
library qikcore.lib bafl.lib eikcoctl.lib
|
||||
MACRO SDL_BACKEND
|
@ -1,148 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC UIQ MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
TARGET ScummVM.exe
|
||||
TARGETPATH sys\bin
|
||||
TARGETTYPE exe
|
||||
|
||||
OPTION GCCE -Wno-multichar -Wno-reorder -Wno-unused -Wno-format -fsigned-char
|
||||
// fixes error "section .data loaded at [...] overlaps section .text loaded at [...]"
|
||||
// in future simple add 'a'
|
||||
LINKEROPTION GCCE -Tdata 0xAA00000
|
||||
|
||||
UID 0x100039ce 0xA0000657
|
||||
|
||||
START RESOURCE ScummVM_reg.rss
|
||||
TARGETPATH \private\10003a3f\apps
|
||||
END
|
||||
|
||||
START RESOURCE ScummVM_loc.rss
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
SOURCEPATH .
|
||||
START RESOURCE ScummVM.rss
|
||||
HEADER
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
EPOCSTACKSIZE 80000
|
||||
EPOCHEAPSIZE 5000000 128000000
|
||||
|
||||
START BITMAP ScummVM.mbm
|
||||
TARGETPATH \Resource\Apps
|
||||
SOURCEPATH ..\res
|
||||
// Source Color-depth Source-bitmap-list
|
||||
// c denotes whether the bitmap is a color bitmap and the digits represent the
|
||||
// color-depth of the bitmap and the bitmap mask respectively
|
||||
SOURCE c24 ScummSmall.bmp
|
||||
SOURCE 8 ScummSmallMask.bmp
|
||||
SOURCE c24 ScummLarge.bmp
|
||||
SOURCE 8 ScummLargeMask.bmp
|
||||
SOURCE c24 ScummxLarge.bmp
|
||||
SOURCE 8 ScummxLargeMask.bmp
|
||||
END
|
||||
|
||||
MACRO UIQ
|
||||
MACRO UIQ3
|
||||
|
||||
ALWAYS_BUILD_AS_ARM
|
||||
|
||||
//START_AUTO_MACROS_SLAVE//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_MACROS_SLAVE//
|
||||
|
||||
// *** Static Libraries
|
||||
|
||||
STATICLIBRARY esdl.lib
|
||||
|
||||
// *** Include paths
|
||||
|
||||
USERINCLUDE ..\..\..\.. ..\..\..\..\gui ..\..\..\..\engines
|
||||
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl ..\..\..\..\audio
|
||||
|
||||
SYSTEMINCLUDE \epoc32\include\freetype
|
||||
SYSTEMINCLUDE \epoc32\include\mpeg2dec
|
||||
SYSTEMINCLUDE \epoc32\include\jpeg
|
||||
SYSTEMINCLUDE \epoc32\include\png
|
||||
SYSTEMINCLUDE \epoc32\include\ESDL
|
||||
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
|
||||
SYSTEMINCLUDE \epoc32\include\libc
|
||||
SYSTEMINCLUDE \epoc32\include\theora
|
||||
SYSTEMINCLUDE \epoc32\include\tremor
|
||||
SYSTEMINCLUDE \epoc32\include
|
||||
SYSTEMINCLUDE ..\src // for portdefs.h
|
||||
|
||||
// *** SOURCE files
|
||||
|
||||
SOURCEPATH ..\..\..\..\base
|
||||
|
||||
//START_AUTO_OBJECTS_BASE_//
|
||||
|
||||
// empty base file, will be updated by Perl build scripts
|
||||
|
||||
//STOP_AUTO_OBJECTS_BASE_//
|
||||
|
||||
SOURCEPATH ..\..\..\..
|
||||
|
||||
// backend EPOC/SDL/ESDL specific includes
|
||||
SOURCE backends\platform\sdl\sdl.cpp
|
||||
SOURCE backends\audiocd\sdl\sdl-audiocd.cpp
|
||||
SOURCE backends\audiocd\default\default-audiocd.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs.cpp
|
||||
SOURCE backends\fs\symbian\symbian-fs-factory.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianOS.cpp
|
||||
SOURCE backends\platform\symbian\src\ScummApp.cpp
|
||||
SOURCE backends\platform\symbian\src\SymbianMain.cpp
|
||||
|
||||
SOURCE gui\Dialog.cpp
|
||||
|
||||
// Common error
|
||||
source common\error.cpp
|
||||
source common\quicktime.cpp
|
||||
|
||||
// Special for graphics
|
||||
source backends\graphics\surfacesdl\surfacesdl-graphics.cpp
|
||||
source engines\obsolete.cpp
|
||||
|
||||
// *** Dynamic Libraries
|
||||
LIBRARY cone.lib eikcore.lib
|
||||
LIBRARY euser.lib apparc.lib fbscli.lib
|
||||
LIBRARY estlib.lib apgrfx.lib
|
||||
LIBRARY gdi.lib hal.lib bitgdi.lib
|
||||
LIBRARY mediaclientaudiostream.lib efsrv.lib ws32.lib
|
||||
LIBRARY qikctl.lib
|
||||
library qikcore.lib bafl.lib eikcoctl.lib
|
||||
MACRO SDL_BACKEND
|
@ -1,89 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
|
||||
; List of localised vendor names - one per language. At least one must be provided (English [EN]).
|
||||
; List must correspond to list of languages specified elsewhere in the .pkg
|
||||
%{"ScummVM"}
|
||||
; The non-localised, globally unique vendor name (mandatory)
|
||||
:"ScummVM"
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM UIQ3"},(0xA0000657),1,80,0
|
||||
|
||||
; ProductID for UIQ 3.0
|
||||
; Product/platform version UID, Major, Minor, Build, Product ID
|
||||
(0x101F6300), 3, 0, 0, {"UIQ30ProductID"}
|
||||
|
||||
; Application, AIF & Resource file
|
||||
"\epoc32\release\gcce\urel\ScummVM.exe"- "!:\sys\bin\ScummVM.exe"
|
||||
"\epoc32\data\z\resource\apps\ScummVM.rsc"- "!:\resource\apps\ScummVM.rsc"
|
||||
"\epoc32\Data\Z\resource\apps\scummvm_loc.rsc"- "!:\resource\apps\scummvm_loc.rsc"
|
||||
"\epoc32\data\Z\resource\APPS\scummvm.MBM"- "!:\resource\apps\scummvm.MBM"
|
||||
"\epoc32\data\z\private\10003a3f\apps\scummvm_reg.rsc"-"!:\private\10003a3f\import\apps\scummvm_reg.rsc"
|
||||
|
||||
"..\..\..\..\dists\pred.dic"-"c:\shared\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\resource\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\resource\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\resource\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\resource\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\resource\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\resource\apps\scummvm\NEWS"
|
||||
|
||||
; Scummvm help
|
||||
"..\help\ScummVM.hlp"-"!:\resource\help\ScummVM.hlp"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\..\..\..\dists\engine-data\drascula.dat"-"c:\shared\scummvm\drascula.dat"
|
||||
"..\..\..\..\dists\engine-data\encoding.dat"-"c:\shared\scummvm\encoding.dat"
|
||||
"..\..\..\..\dists\engine-data\fonts.dat"-"c:\shared\scummvm\fonts.dat"
|
||||
"..\..\..\..\dists\engine-data\hadesch_translations.dat"-"c:\shared\scummvm\hadesch_translations.dat"
|
||||
"..\..\..\..\dists\engine-data\hugo.dat"-"c:\shared\scummvm\hugo.dat"
|
||||
"..\..\..\..\dists\engine-data\kyra.dat"-"c:\shared\scummvm\kyra.dat"
|
||||
"..\..\..\..\dists\engine-data\lure.dat"-"c:\shared\scummvm\lure.dat"
|
||||
"..\..\..\..\dists\engine-data\mort.dat"-"c:\shared\scummvm\mort.dat"
|
||||
"..\..\..\..\dists\engine-data\neverhood.dat"-"c:\shared\scummvm\neverhood.dat"
|
||||
"..\..\..\..\dists\engine-data\queen.tbl"-"c:\shared\scummvm\queen.tbl"
|
||||
"..\..\..\..\dists\engine-data\sky.cpt"-"c:\shared\scummvm\sky.cpt"
|
||||
"..\..\..\..\dists\engine-data\teenagent.dat"-"c:\shared\scummvm\teenagent.dat"
|
||||
"..\..\..\..\dists\engine-data\tony.dat"-"c:\shared\scummvm\tony.dat"
|
||||
"..\..\..\..\dists\engine-data\toon.dat"-"c:\shared\scummvm\toon.dat"
|
||||
"..\..\..\..\dists\engine-data\wintermute.zip"-"c:\shared\scummvm\wintermute.zip"
|
||||
"..\..\..\vkeybd\packs\vkeybd_default.zip"-"c:\shared\scummvm\vkeybd_default.zip"
|
||||
"..\..\..\vkeybd\packs\vkeybd_small.zip"-"c:\shared\scummvm\vkeybd_small.zip"
|
||||
"..\..\..\..\gui\themes\translations.dat"-"c:\shared\scummvm\translations.dat"
|
||||
"..\..\..\..\gui\themes\scummmodern.zip"-"c:\shared\scummvm\scummmodern.zip"
|
||||
"..\..\..\..\gui\themes\scummremastered.zip"-"c:\shared\scummvm\scummremastered.zip"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"c:\shared\scummvm\scummvm.ini",FILENULL
|
||||
""-"c:\shared\scummvm\scummvm.stdout.txt",FILENULL
|
||||
""-"c:\shared\scummvm\scummvm.stderr.txt",FILENULL
|
||||
""-"c:\shared\scummvm\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,97 +0,0 @@
|
||||
; 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/>.
|
||||
;
|
||||
; $URL$
|
||||
; $Id$
|
||||
;
|
||||
;
|
||||
|
||||
;;;
|
||||
;;; ScummVM .PKG file for .SIS gegeration
|
||||
;;;
|
||||
|
||||
|
||||
; List of localised vendor names - one per language. At least one must be provided (English [EN]).
|
||||
; List must correspond to list of languages specified elsewhere in the .pkg
|
||||
%{"ScummVM"}
|
||||
; The non-localised, globally unique vendor name (mandatory)
|
||||
:"ScummVM"
|
||||
|
||||
; UID is the app's UID
|
||||
#{"ScummVM UIQ3"},(0xA0000657),1,80,0
|
||||
|
||||
; ProductID for UIQ 3.0
|
||||
; Product/platform version UID, Major, Minor, Build, Product ID
|
||||
(0x101F6300), 3, 0, 0, {"UIQ30ProductID"}
|
||||
|
||||
; Application, AIF & Resource file
|
||||
"\epoc32\release\gcce\urel\ScummVM.exe"- "!:\sys\bin\ScummVM.exe"
|
||||
"\epoc32\data\z\resource\apps\ScummVM.rsc"- "!:\resource\apps\ScummVM.rsc"
|
||||
"\epoc32\Data\Z\resource\apps\scummvm_loc.rsc"- "!:\resource\apps\scummvm_loc.rsc"
|
||||
"\epoc32\data\Z\resource\APPS\scummvm.MBM"- "!:\resource\apps\scummvm.MBM"
|
||||
"\epoc32\data\z\private\10003a3f\apps\scummvm_reg.rsc"-"!:\private\10003a3f\import\apps\scummvm_reg.rsc"
|
||||
|
||||
"\epoc32\release\gcce\urel\ScummVM_A0000658.exe"- "!:\sys\bin\ScummVM_A0000658.exe"
|
||||
"\epoc32\data\z\resource\apps\ScummVM_A0000658.rsc"- "!:\resource\apps\ScummVM_A0000658.rsc"
|
||||
"\epoc32\Data\Z\resource\apps\ScummVM_A0000658_loc.rsc"- "!:\resource\apps\ScummVM_A0000658_loc.rsc"
|
||||
"\epoc32\data\z\private\10003a3f\apps\scummvm_A0000658_reg.rsc"-"!:\private\10003a3f\import\apps\scummvm_A0000658_reg.rsc"
|
||||
|
||||
"..\..\..\..\dists\pred.dic"-"c:\shared\scummvm\pred.dic"
|
||||
|
||||
; Scummvm Documentation
|
||||
"..\..\..\..\COPYRIGHT"-"!:\resource\apps\scummvm\COPYRIGHT", FT, TC
|
||||
"..\..\..\..\COPYING"-"!:\resource\apps\scummvm\COPYING", FT, TC
|
||||
"..\README"-"!:\resource\apps\scummvm\SYMBIAN_README", FT, TC
|
||||
"..\..\..\..\AUTHORS"-"!:\resource\apps\scummvm\AUTHORS"
|
||||
"..\..\..\..\README"-"!:\resource\apps\scummvm\README"
|
||||
"..\..\..\..\NEWS"-"!:\resource\apps\scummvm\NEWS"
|
||||
|
||||
; Scummvm help
|
||||
"..\help\ScummVM.hlp"-"!:\resource\help\ScummVM.hlp"
|
||||
|
||||
; Common datafiles needed for some games
|
||||
"..\..\..\..\dists\engine-data\drascula.dat"-"c:\shared\scummvm\drascula.dat"
|
||||
"..\..\..\..\dists\engine-data\encoding.dat"-"c:\shared\scummvm\encoding.dat"
|
||||
"..\..\..\..\dists\engine-data\fonts.dat"-"c:\shared\scummvm\fonts.dat"
|
||||
"..\..\..\..\dists\engine-data\hadesch_translations.dat"-"c:\shared\scummvm\hadesch_translations.dat"
|
||||
"..\..\..\..\dists\engine-data\hugo.dat"-"c:\shared\scummvm\hugo.dat"
|
||||
"..\..\..\..\dists\engine-data\kyra.dat"-"c:\shared\scummvm\kyra.dat"
|
||||
"..\..\..\..\dists\engine-data\lure.dat"-"c:\shared\scummvm\lure.dat"
|
||||
"..\..\..\..\dists\engine-data\mort.dat"-"c:\shared\scummvm\mort.dat"
|
||||
"..\..\..\..\dists\engine-data\neverhood.dat"-"c:\shared\scummvm\neverhood.dat"
|
||||
"..\..\..\..\dists\engine-data\queen.tbl"-"c:\shared\scummvm\queen.tbl"
|
||||
"..\..\..\..\dists\engine-data\sky.cpt"-"c:\shared\scummvm\sky.cpt"
|
||||
"..\..\..\..\dists\engine-data\teenagent.dat"-"c:\shared\scummvm\teenagent.dat"
|
||||
"..\..\..\..\dists\engine-data\tony.dat"-"c:\shared\scummvm\tony.dat"
|
||||
"..\..\..\..\dists\engine-data\toon.dat"-"c:\shared\scummvm\toon.dat"
|
||||
"..\..\..\..\dists\engine-data\wintermute.zip"-"c:\shared\scummvm\wintermute.zip"
|
||||
"..\..\..\vkeybd\packs\vkeybd_default.zip"-"c:\shared\scummvm\vkeybd_default.zip"
|
||||
"..\..\..\vkeybd\packs\vkeybd_small.zip"-"c:\shared\scummvm\vkeybd_small.zip"
|
||||
"..\..\..\..\gui\themes\translations.dat"-"c:\shared\scummvm\translations.dat"
|
||||
"..\..\..\..\gui\themes\scummmodern.zip"-"c:\shared\scummvm\scummmodern.zip"
|
||||
"..\..\..\..\gui\themes\scummremastered.zip"-"c:\shared\scummvm\scummremastered.zip"
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall
|
||||
""-"c:\shared\scummvm\scummvm.ini",FILENULL
|
||||
""-"c:\shared\scummvm\scummvm.stdout.txt",FILENULL
|
||||
""-"c:\shared\scummvm\scummvm.stderr.txt",FILENULL
|
||||
""-"c:\shared\scummvm\sdl.ini",FILENULL
|
||||
|
||||
; This install layout will let you upgrade to newer versions wihout loss of scummvm.ini.
|
||||
; It will remove the config file, std***.txt files & dirs on uninstall.
|
@ -1,83 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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 <AppInfo.rh>
|
||||
#include <Qikon.hrh>
|
||||
|
||||
// This file localise the applications icons and caption
|
||||
RESOURCE LOCALISABLE_APP_INFO
|
||||
{
|
||||
caption_and_icon =
|
||||
{
|
||||
CAPTION_AND_ICON_INFO
|
||||
{
|
||||
// The caption text is defined in the rls file
|
||||
caption = "ScummVM 2";
|
||||
// Icons are used to represent applications in the
|
||||
// application launcher and application title bar.
|
||||
// The number_of_icons value identifies how many icons
|
||||
// that exist in the icon_file.
|
||||
number_of_icons = 3;
|
||||
// Using the application icons.
|
||||
icon_file = "\\Resource\\Apps\\ScummVM.mbm";
|
||||
}
|
||||
};
|
||||
|
||||
view_list =
|
||||
{
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = 0;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeLandscape;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeSmallPortrait;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeSmallPortrait;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
// All registration files need to #include appinfo.rh.
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// All registration files must define UID2, which is always
|
||||
// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
|
||||
UID2 KUidAppRegistrationResourceFile
|
||||
UID3 0xA0000658 // application UID
|
||||
|
||||
// Registration file need to containo an APP_REGISTRATION_INFO resource that
|
||||
// minimally needs to provide the name of the application binary (using the
|
||||
// app_file statement).
|
||||
RESOURCE APP_REGISTRATION_INFO
|
||||
{
|
||||
app_file = "scummVM_A0000658"; // filename of application binary (minus extension)
|
||||
// Specify the location of the localisable icon/caption definition file
|
||||
localisable_resource_file = "\\Resource\\Apps\\ScummVM_A0000658_loc";
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
#include <AppInfo.rh>
|
||||
#include <Qikon.hrh>
|
||||
|
||||
// This file localise the applications icons and caption
|
||||
RESOURCE LOCALISABLE_APP_INFO
|
||||
{
|
||||
caption_and_icon =
|
||||
{
|
||||
CAPTION_AND_ICON_INFO
|
||||
{
|
||||
// The caption text is defined in the rls file
|
||||
caption = "ScummVM";
|
||||
// Icons are used to represent applications in the
|
||||
// application launcher and application title bar.
|
||||
// The number_of_icons value identifies how many icons
|
||||
// that exist in the icon_file.
|
||||
number_of_icons = 3;
|
||||
// Using the application icons.
|
||||
icon_file = "\\Resource\\Apps\\ScummVM.mbm";
|
||||
}
|
||||
};
|
||||
|
||||
view_list =
|
||||
{
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = 0;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeLandscape;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeSmallPortrait;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
},
|
||||
VIEW_DATA
|
||||
{
|
||||
uid = 0x10000001;
|
||||
screen_mode = EQikScreenModeSmallPortrait;
|
||||
caption_and_icon = CAPTION_AND_ICON_INFO
|
||||
{
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
// All registration files need to #include appinfo.rh.
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// All registration files must define UID2, which is always
|
||||
// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
|
||||
UID2 KUidAppRegistrationResourceFile
|
||||
UID3 0xA0000657 // application UID
|
||||
|
||||
// Registration file need to containo an APP_REGISTRATION_INFO resource that
|
||||
// minimally needs to provide the name of the application binary (using the
|
||||
// app_file statement).
|
||||
RESOURCE APP_REGISTRATION_INFO
|
||||
{
|
||||
app_file = "ScummVM"; // filename of application binary (minus extension)
|
||||
// Specify the location of the localisable icon/caption definition file
|
||||
localisable_resource_file = "\\Resource\\Apps\\ScummVM_loc";
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
import symbian_builder
|
||||
|
||||
|
||||
build = 'full'
|
||||
# build = 'release'
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
symbian_builder.run(build, "S60v3")
|
||||
|
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE cshcust SYSTEM "/cshlpcmp/dtd/CSHcust.dtd">
|
||||
<?xml:stylesheet href="/cshlpcmp/xsl/cshcust.xsl" title="CS-Help customization" type="text/xsl"?>
|
||||
<cshcust>
|
||||
<parastyle name="body" font="sansserif" size="10"/>
|
||||
<parastyle name="tip" font="sansserif" size="10" left="20"></parastyle>
|
||||
<parastyle name="note" font="sansserif" size="10" left="20"></parastyle>
|
||||
<parastyle name="important" font="sansserif" size="10" left="20"></parastyle>
|
||||
<body style="body"/>
|
||||
<titlestyle fontstyle="sansserif" size="10"/>
|
||||
<listbullet1style bulletchar="8226"/>
|
||||
<listbullet2style bulletchar="8226"/>
|
||||
<lists leftindent="20"/>
|
||||
</cshcust>
|
||||
|
||||
|
||||
|
||||
|
@ -1,436 +0,0 @@
|
||||
{\rtf1\ansi\ansicpg1251\uc1 \deff1\deflang1049\deflangfe1049{\fonttbl{\f0\froman\fcharset204\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1\fswiss\fcharset204\fprq2{\*\panose 020b0604020202020204}Arial;}
|
||||
{\f2\fmodern\fcharset204\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f8\froman\fcharset0\fprq2{\*\panose 00000000000000000000}Tms Rmn;}
|
||||
{\f14\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}Wingdings;}{\f28\fswiss\fcharset204\fprq2{\*\panose 020b0604020202020204}Arial CYR;}{\f29\froman\fcharset2\fprq2{\*\panose 05030102010509060703}Webdings;}
|
||||
{\f30\fswiss\fcharset204\fprq2{\*\panose 020b0506020202030204}Arial Narrow;}{\f41\froman\fcharset0\fprq2 Times New Roman;}{\f39\froman\fcharset238\fprq2 Times New Roman CE;}{\f42\froman\fcharset161\fprq2 Times New Roman Greek;}
|
||||
{\f43\froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f45\froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\froman\fcharset186\fprq2 Times New Roman Baltic;}
|
||||
{\f49\fswiss\fcharset0\fprq2 Arial;}{\f47\fswiss\fcharset238\fprq2 Arial CE;}{\f50\fswiss\fcharset161\fprq2 Arial Greek;}{\f51\fswiss\fcharset162\fprq2 Arial Tur;}{\f52\fswiss\fcharset177\fprq2 Arial (Hebrew);}
|
||||
{\f53\fswiss\fcharset178\fprq2 Arial (Arabic);}{\f54\fswiss\fcharset186\fprq2 Arial Baltic;}{\f57\fmodern\fcharset0\fprq1 Courier New;}{\f55\fmodern\fcharset238\fprq1 Courier New CE;}{\f58\fmodern\fcharset161\fprq1 Courier New Greek;}
|
||||
{\f59\fmodern\fcharset162\fprq1 Courier New Tur;}{\f60\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f61\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f62\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f265\fswiss\fcharset0\fprq2 Arial CYR;}
|
||||
{\f263\fswiss\fcharset238\fprq2 Arial CYR CE;}{\f266\fswiss\fcharset161\fprq2 Arial CYR Greek;}{\f267\fswiss\fcharset162\fprq2 Arial CYR Tur;}{\f268\fswiss\fcharset177\fprq2 Arial CYR (Hebrew);}{\f269\fswiss\fcharset178\fprq2 Arial CYR (Arabic);}
|
||||
{\f270\fswiss\fcharset186\fprq2 Arial CYR Baltic;}{\f281\fswiss\fcharset0\fprq2 Arial Narrow;}{\f279\fswiss\fcharset238\fprq2 Arial Narrow CE;}{\f282\fswiss\fcharset161\fprq2 Arial Narrow Greek;}{\f283\fswiss\fcharset162\fprq2 Arial Narrow Tur;}
|
||||
{\f286\fswiss\fcharset186\fprq2 Arial Narrow Baltic;}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;
|
||||
\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
|
||||
\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \snext0 Normal;}{\s1\ql \li0\ri0\sb360\sa240\keepn\widctlpar\nooverflow\faroman\rin0\lin0\itap0
|
||||
\b\f1\fs32\lang2057\langfe1033\kerning28\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 1;}{\s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072\nooverflow\faroman\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 2;}{\s3\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \tqr\tx9072\nooverflow\faroman\rin0\lin0\itap0
|
||||
\b\f1\fs28\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 3;}{\s4\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw15\brsp20 \tqr\tx9072\nooverflow\faroman\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 4;}{\s5\ql \li0\ri0\sa120\keepn\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \b\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0
|
||||
heading 5;}{\s6\ql \li0\ri0\sb240\sa60\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \i\f1\fs22\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 6;}{\s7\ql \li0\ri0\sb240\sa60\widctlpar\nooverflow\faroman\rin0\lin0\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 7;}{\s8\ql \li0\ri0\sb240\sa60\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \i\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 8;}{
|
||||
\s9\ql \li0\ri0\sb240\sa60\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \i\f1\fs18\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext0 heading 9;}{\*\cs10 \additive Default Paragraph Font;}{\*\cs15 \additive \b\f1\fs20 \sbasedon10
|
||||
App Text;}{\s16\ql \li0\ri0\sb360\sa240\keepn\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \b\f1\fs32\cf9\lang2057\langfe1033\kerning28\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext16 Category UID;}{
|
||||
\s17\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \i\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext17 Comment;}{\s18\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn
|
||||
\pnlvlblt\ilvl10\ls2047\pnrnot0\pnf29\pnstart1\pnindent283\pnhang{\pntxtb \'a2}}\nooverflow\faroman\ls2047\ilvl10\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext18 Context;}{\*\cs19 \additive
|
||||
\i\f1\fs20\ulnone\cf0\nosupersub \sbasedon10 Context Comment;}{\s20\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\cf11\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext20 Definition Term;}{
|
||||
\s21\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\cf11\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon20 \snext21 Definition Definition;}{\*\cs22 \additive \scaps\f30\fs20\cf13 \sbasedon10 Graphic Link;}{
|
||||
\s23\ql \fi-283\li283\ri0\sa120\widctlpar{\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0\pnf14\pnstart1\pnindent283\pnhang{\pntxtb F}}\nooverflow\faroman\ls2047\ilvl10\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033
|
||||
\sbasedon0 \snext23 Tip;}{\s24\ql \fi-283\li283\ri0\sa120\widctlpar{\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0\pnf14\pnstart1\pnindent283\pnhang{\pntxtb ?}}\nooverflow\faroman\ls2047\ilvl10\rin0\lin283\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon23 \snext24 Note;}{\s25\ql \fi-283\li283\ri0\sa120\widctlpar{\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0\pnf29\pnstart1\pnindent283\pnhang{\pntxtb ~}}
|
||||
\nooverflow\faroman\ls2047\ilvl10\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon24 \snext25 Important;}{\s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls2047\ilvl10\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext26 Index;}{\*\cs27 \additive \b\f2\fs20 \sbasedon10 Key Name;}{
|
||||
\s28\ql \fi-284\li284\ri0\sa120\widctlpar{\*\pn \pnlvlbody\ilvl11\ls2047\pnrnot0\pndec\pnstart1\pnindent283\pnhang{\pntxta .}}\nooverflow\faroman\ls2047\ilvl11\rin0\lin284\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033
|
||||
\sbasedon0 \snext28 List Number;}{\s29\ql \fi-284\li284\ri0\sa120\widctlpar\tx284{\*\pn \pnlvlbody\ilvl0\ls2047\pnrnot0\pndec\pnf8 }\nooverflow\faroman\ls2047\rin0\lin284\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033
|
||||
\sbasedon28 \snext29 List Manual;}{\s30\ql \fi-284\li568\ri0\sa120\widctlpar{\*\pn \pnlvlbody\ilvl11\ls2047\pnrnot0\pndec\pnstart1\pnindent283\pnhang{\pntxta .}}\nooverflow\faroman\ls2047\ilvl11\rin0\lin568\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext30 List Number 2;}{\s31\ql \fi-284\li568\ri0\sa120\widctlpar\tx284{\*\pn \pnlvlbody\ilvl0\ls2047\pnrnot0\pndec\pnf8 }\nooverflow\faroman\ls2047\rin0\lin568\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon30 \snext31 List Manual 2;}{\s32\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\cf13\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext32
|
||||
Synonyms;}{\*\cs33 \additive \super \sbasedon10 endnote reference;}{\s34\ql \fi-284\li284\ri0\sa120\widctlpar\tx284{\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0\pnf3\pnstart1\pnindent283\pnhang{\pntxtb \'b7}}\nooverflow\faroman\ls2047\ilvl10\rin0\lin284\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext34 \sautoupd List Bullet;}{\s35\ql \fi-284\li568\ri0\sa120\widctlpar{\*\pn \pnlvlblt\ilvl10\ls2047\pnrnot0\pnf3\pnstart1\pnindent283\pnhang{\pntxtb \'b7}}
|
||||
\nooverflow\faroman\ls2047\ilvl10\rin0\lin568\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext35 \sautoupd List Bullet 2;}{\s36\ql \li0\ri0\sa120\widctlpar\tqc\tx4153\tqr\tx8306\nooverflow\faroman\rin0\lin0\itap0
|
||||
\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext36 footer;}{\s37\ql \li284\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin284\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext37 List Continue;}{
|
||||
\s38\ql \li566\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin566\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 \sbasedon0 \snext38 List Continue 2;}}{\*\listtable{\list\listtemplateid-737142542\listsimple{\listlevel\levelnfc0
|
||||
\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1 \fi-360\li643\jclisttab\tx643 }{\listname ;}\listid-129}
|
||||
{\list\listtemplateid1907811784\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0
|
||||
\fi-360\li643\jclisttab\tx643 }{\listname ;}\listid-125}{\list\listtemplateid1912741052\listsimple{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\chbrdr
|
||||
\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1 \fi-360\li360\jclisttab\tx360 }{\listname ;}\listid-120}{\list\listtemplateid-51363132\listsimple{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
|
||||
{\leveltext\'01\u-3913 ?;}{\levelnumbers;}\f3\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-360\li360\jclisttab\tx360 }{\listname ;}\listid-119}{\list\listtemplateid947971744\listsimple{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0
|
||||
\levelfollow0\levelstartat0\levelspace0\levelindent0{\leveltext\'01*;}{\levelnumbers;}\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1 }{\listname ;}\listid-2}}{\*\listoverridetable{\listoverride\listid-120\listoverridecount0\ls1}
|
||||
{\listoverride\listid-129\listoverridecount0\ls2}{\listoverride\listid-119\listoverridecount0\ls3}{\listoverride\listid-125\listoverridecount0\ls4}{\listoverride\listid-120\listoverridecount0\ls5}{\listoverride\listid-129\listoverridecount0\ls6}
|
||||
{\listoverride\listid-119\listoverridecount0\ls7}{\listoverride\listid-125\listoverridecount0\ls8}{\listoverride\listid-120\listoverridecount0\ls9}{\listoverride\listid-129\listoverridecount0\ls10}{\listoverride\listid-119\listoverridecount0\ls11}
|
||||
{\listoverride\listid-125\listoverridecount0\ls12}{\listoverride\listid-120\listoverridecount0\ls13}{\listoverride\listid-129\listoverridecount0\ls14}{\listoverride\listid-119\listoverridecount0\ls15}{\listoverride\listid-125\listoverridecount0\ls16}
|
||||
{\listoverride\listid-120\listoverridecount0\ls17}{\listoverride\listid-129\listoverridecount0\ls18}{\listoverride\listid-119\listoverridecount0\ls19}{\listoverride\listid-125\listoverridecount0\ls20}{\listoverride\listid-120\listoverridecount0\ls21}
|
||||
{\listoverride\listid-129\listoverridecount0\ls22}{\listoverride\listid-119\listoverridecount0\ls23}{\listoverride\listid-125\listoverridecount0\ls24}{\listoverride\listid-120\listoverridecount0\ls25}{\listoverride\listid-129\listoverridecount0\ls26}
|
||||
{\listoverride\listid-119\listoverridecount0\ls27}{\listoverride\listid-125\listoverridecount0\ls28}{\listoverride\listid-120\listoverridecount0\ls29}{\listoverride\listid-129\listoverridecount0\ls30}{\listoverride\listid-119\listoverridecount0\ls31}
|
||||
{\listoverride\listid-125\listoverridecount0\ls32}{\listoverride\listid-120\listoverridecount0\ls33}{\listoverride\listid-129\listoverridecount0\ls34}{\listoverride\listid-119\listoverridecount0\ls35}{\listoverride\listid-125\listoverridecount0\ls36}
|
||||
{\listoverride\listid-120\listoverridecount0\ls37}{\listoverride\listid-129\listoverridecount0\ls38}{\listoverride\listid-119\listoverridecount0\ls39}{\listoverride\listid-125\listoverridecount0\ls40}{\listoverride\listid-120\listoverridecount0\ls41}
|
||||
{\listoverride\listid-129\listoverridecount0\ls42}{\listoverride\listid-119\listoverridecount0\ls43}{\listoverride\listid-125\listoverridecount0\ls44}{\listoverride\listid-120\listoverridecount0\ls45}{\listoverride\listid-129\listoverridecount0\ls46}
|
||||
{\listoverride\listid-119\listoverridecount0\ls47}{\listoverride\listid-125\listoverridecount0\ls48}{\listoverride\listid-120\listoverridecount0\ls49}{\listoverride\listid-129\listoverridecount0\ls50}{\listoverride\listid-119\listoverridecount0\ls51}
|
||||
{\listoverride\listid-125\listoverridecount0\ls52}{\listoverride\listid-120\listoverridecount0\ls53}{\listoverride\listid-129\listoverridecount0\ls54}{\listoverride\listid-119\listoverridecount0\ls55}{\listoverride\listid-125\listoverridecount0\ls56}
|
||||
{\listoverride\listid-120\listoverridecount0\ls57}{\listoverride\listid-129\listoverridecount0\ls58}{\listoverride\listid-119\listoverridecount0\ls59}{\listoverride\listid-125\listoverridecount0\ls60}{\listoverride\listid-120\listoverridecount0\ls61}
|
||||
{\listoverride\listid-129\listoverridecount0\ls62}{\listoverride\listid-119\listoverridecount0\ls63}{\listoverride\listid-125\listoverridecount0\ls64}{\listoverride\listid-120\listoverridecount0\ls65}{\listoverride\listid-129\listoverridecount0\ls66}
|
||||
{\listoverride\listid-119\listoverridecount0\ls67}{\listoverride\listid-125\listoverridecount0\ls68}{\listoverride\listid-120\listoverridecount0\ls69}{\listoverride\listid-129\listoverridecount0\ls70}{\listoverride\listid-119\listoverridecount0\ls71}
|
||||
{\listoverride\listid-125\listoverridecount0\ls72}{\listoverride\listid-120\listoverridecount0\ls73}{\listoverride\listid-129\listoverridecount0\ls74}{\listoverride\listid-119\listoverridecount0\ls75}{\listoverride\listid-125\listoverridecount0\ls76}
|
||||
{\listoverride\listid-120\listoverridecount0\ls77}{\listoverride\listid-129\listoverridecount0\ls78}{\listoverride\listid-119\listoverridecount0\ls79}{\listoverride\listid-125\listoverridecount0\ls80}{\listoverride\listid-120\listoverridecount0\ls81}
|
||||
{\listoverride\listid-129\listoverridecount0\ls82}{\listoverride\listid-119\listoverridecount0\ls83}{\listoverride\listid-125\listoverridecount0\ls84}{\listoverride\listid-120\listoverridecount0\ls85}{\listoverride\listid-129\listoverridecount0\ls86}
|
||||
{\listoverride\listid-119\listoverridecount0\ls87}{\listoverride\listid-125\listoverridecount0\ls88}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1
|
||||
\levelold\levelspace0\levelindent283{\leveltext\'01\u-3991 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls89}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel
|
||||
\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0\levelindent283{\leveltext\'01\u-3991 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls90}
|
||||
{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0\levelindent283{\leveltext\'01\u-4026 ?;}{\levelnumbers;}\f14\chbrdr
|
||||
\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls91}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0
|
||||
\levelindent283{\leveltext\'01\u-3934 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls92}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23
|
||||
\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0\levelindent283{\leveltext\'01\u-4033 ?;}{\levelnumbers;}\f14\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls93}{\listoverride\listid-2
|
||||
\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0\levelindent283{\leveltext\'01\u-3991 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1
|
||||
\chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls94}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelold\levelspace0\levelindent283{\leveltext
|
||||
\'01\u-3991 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls95}{\listoverride\listid-2\listoverridecount1{\lfolevel\listoverrideformat{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
|
||||
\levelstartat1\levelold\levelspace0\levelindent283{\leveltext\'01\u-3991 ?;}{\levelnumbers;}\f29\chbrdr\brdrnone\brdrcf1 \chshdng0\chcfpat1\chcbpat1\fbias0 \fi-283\li283 }}\ls96}}{\info{\author Fedor}{\operator Fedor}{\creatim\yr2013\mo11\dy30\hr23\min4}
|
||||
{\revtim\yr2021\mo7\dy19\hr4\min46}{\version276}{\edmins5529}{\nofpages10}{\nofwords1589}{\nofchars9062}{\*\company DEV}{\nofcharsws11128}{\vern8249}}\margl1701\margr850\margt1134\margb1134
|
||||
\deftab708\widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\horzdoc\dghspace120\dgvspace120\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind4\viewscale100\nolnhtadjtbl \fet0{\*\template
|
||||
E:\\Documents and Settings\\Administrator\\Application Data\\Microsoft\\\'d8\'e0\'e1\'eb\'ee\'ed\'fb\\cshelp2000.dot}\sectd \linex0\sectdefaultcl {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang{\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang
|
||||
{\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang{\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang{\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang
|
||||
{\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang{\pntxtb (}{\pntxta )}}\pard\plain
|
||||
\s17\ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \i\f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1033\langfe1033\langnp1033 Author: Fedor Strizhniou.}{\f28
|
||||
\par }{\lang1033\langfe1033\langnp1033 Date: June 2021}{\f28\lang1059\langfe1033\langnp1059
|
||||
\par }{\lang1033\langfe1033\langnp1033 Version: 2.3.0
|
||||
\par }\pard\plain \s1\ql \li0\ri0\sb360\sa240\keepn\widctlpar\nooverflow\faroman\outlinelevel0\rin0\lin0\itap0 \b\f1\fs32\lang2057\langfe1033\kerning28\cgrid\langnp2057\langfenp1033 {ScummVM Help
|
||||
\par }\pard\plain \s16\ql \li0\ri0\sb360\sa240\keepn\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \b\f1\fs32\cf9\lang2057\langfe1033\kerning28\cgrid\langnp2057\langfenp1033 {\lang1033\langfe1033\langnp1033 0x100039ce}{\lang1059\langfe1033\langnp1059
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0 \b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 { About ScummVM Help
|
||||
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls89\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls89\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {About ScummVM Help
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28
|
||||
\par }{
|
||||
This help file based on ScummVM forum thread with some elaborations(in Anotherguest section) and text correction. If you wish add some text or translate you may download and modify source document from https://sourceforge.net/projects/scummvms60git/ and t
|
||||
hen send me to fedor_qd@mail.ru
|
||||
\par Feel free to replace, merge or write you own instead 1st, 2nd and 3rd guides. Other sections require strict translations. And don\rquote t forget add your name :-)
|
||||
\par First guide contain help by Anotherguest, second - VincentJ, third - murgo. This doc created by Fedor Strizhniou.
|
||||
\par Enjoys, cheers! Always yours =)}{\lang1059\langfe1033\langnp1059
|
||||
\par }{
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {1st guide
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls89\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls89\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Controls, Virtual keyboard, Shortcuts, ScummVM, Tips, S60, UIQ, UIQ3, S80, s80, S90, s90
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28
|
||||
\par }{UIQ3 devices: To the top right (holding the phone portrait) you four icons, from the top they are
|
||||
\par
|
||||
\par * Toggle control mode, in control mode you can change text input , screen orientation and screen scaling
|
||||
\par * Mouse button, toggles between left, right and no button when tapping the screen. If no button is selected, 7 & Space works as left mouse button and 9 & Enter works as the right mouse button.
|
||||
\par * Esc, tap this to simulate ESC key being pressed. Same functionally on devices with 'C' key.
|
||||
\par * Virtual keyboard toggle, toggles the virtual keyboard, if not enabled when selecting '1'/'7' in control mode.
|
||||
\par * When Virtual keyboard is enabled you have more onscreen keys available
|
||||
\par * Enter key
|
||||
\par * Backspace
|
||||
\par * Arrow Up/Down to scroll the keys available
|
||||
\par * Virtual keyboard, tap letters to simulate key presses.
|
||||
\par
|
||||
\par S60 and UIQ3 devices: (Control Key = Green Phone key, to activate/deactivate control mode in SDL)
|
||||
\par
|
||||
\par * 1 = change Input Mode: Joystick | Keyboard | Cursor
|
||||
\par * 2,'p' = change Video Mode: Landscape | Portrait
|
||||
\par * 3,'f' = change Orientation Mode for Landscape: 90\'b0 Left | 90\'b0 Right
|
||||
\par * 4,'s' = Toggle between stretched and non-stretched modes
|
||||
\par * 5 = Toggle between interpolating stretch or not
|
||||
\par * 7,'t' = Text/Multitap input
|
||||
\par * 8,'c' = Cursor input
|
||||
\par * 9,'j' = Joystick input
|
||||
\par * 0,'m' = Mouse input
|
||||
\par * Up/Down = Alter global volume when not in 1-1 VGA mode. Pan around in VGA 1-1 Mode
|
||||
\par * # = On/Off screen keyboard transparency in some games
|
||||
\par
|
||||
\par S80 devices:
|
||||
\par
|
||||
\par * Side key 1 = Fire Joystick 1 button (JoyMode)
|
||||
\par * Side key 2 = Fire Joystick 2 button (JoyMode) or change Video Mode: Upscaled | Normal (CursorMode)
|
||||
\par * Side key 3 = change Input Mode: Joystick | Cursor
|
||||
\par
|
||||
\par S90 devices: (Control Key = OK, pressed simultaneously with other keys to activate the mode changes in SDL)
|
||||
\par
|
||||
\par * OK+1 = change Input Mode: Joystick | Cursor
|
||||
\par * OK+2 = change Video Mode: Upscaled | Normal
|
||||
\par
|
||||
\par What are these Joystick, Keyboard and Cursor modes anyway?
|
||||
\par }{\f28
|
||||
\par }{Joystick mode sends SDL joystick events to ScummVM which acts as a mouse control in ScummVM. Cursor mode sends keyboard arrows instead, so for example it can be used to navigate
|
||||
through directorylist (one hand use perhaps!?) or save games etc. Keyboard mode is only available for S60 and enables multi-tap to enter text characters in save dialogs. These modes are implemented at the underlying SDL level, so this determines the types
|
||||
of events that ScummVM receives from SDL.
|
||||
\par What are these Shrinked, Zoomed and Upscaled modes anyway?
|
||||
\par
|
||||
\par Shrink displays the game on your screen but in a shrinked way, either in Portrait or Lands
|
||||
cape mode, so not all the pixels can be seen. Zoom mode uses the maximum resolution of your phone displaying a smaller part of the game zoomed at 1:1 pixels. For scrolling in S60 Zoom mode: 0+Cursor keys to scroll around, 0+Ok button to center view. Upsca
|
||||
le tries to fill the larger screens on S80/S90 devices in a better way for low resolution games. Currently it uses a pixel interpolation upscaling routine.
|
||||
\par
|
||||
\par You can also use a bluetooth mouse with S60v3 devices to control your game. You need the bluetooth hid library from Hinkka http://koti.mbnet.fi/hinkka/Download.html to get it to work properly.
|
||||
\par
|
||||
\par
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {2nd guide
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls89\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls89\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Controls, Virtual keyboard, Shortcuts, ScummVM, Tips, S60, s60
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28
|
||||
\par
|
||||
\par }{More user-friendly guide for Nokia phones (based on N96 but should apply to most phones)
|
||||
\par
|
||||
\par Left Soft Key - Left Click
|
||||
\par }{\f28
|
||||
\par }{Right Soft Key - Right Click
|
||||
\par }{\f28
|
||||
\par }{Navigation buttons - Move pointer on screen
|
||||
\par }{\f28
|
||||
\par }{"C" or "Delete Key" - Space Bar (i.e. skip dialogue/cutscene)
|
||||
\par }{\f28
|
||||
\par }{* - Bring up Menu (to Save, Load and change the game's options e.g. enable subtitles, speech etc. Varies from game to game)
|
||||
\par
|
||||
\par The <> is a toggling left right mode. I.e. first click is left, next is right, next is left etc.
|
||||
\par
|
||||
\par Call Button - Enter/Exit Configuration Mode
|
||||
\par }{\f28
|
||||
\par }{Configuration Mode, when activated, shows the word "CTRL" in green in the upper right corner of the screen. It allows to quickly switch between various functions of ScummVM. The following buttons on your keypad are activated when "CTRL" is displayed :
|
||||
|
||||
\par
|
||||
\par 1 - Change Input.
|
||||
\par This is the option you'll probably use the most. There are three settings; A,C and J.
|
||||
\par
|
||||
\par A - This is the "Text Input" mode. It allows you to type directly into ScummVM as if you were using a keyboard. Type the same way you would when sending a text message off of your phon
|
||||
e. Please note that the pointer is disabled when in this mode. Don't forget to exit Configuration Mode before typing!
|
||||
\par
|
||||
\par C - This is the "Cursor" mode. This emulates the arrow keys of the keyboard. Some games require using this instead of the mouse (e.g. the destruction derby section towards the end of Full Throttle).
|
||||
\par
|
||||
\par J - This is the "Joystick/Mouse" mode. Simply put, it allows you to use the navigation buttons to move the pointer around the screen. The left and right mouse buttons are used by the left and right Soft keys.
|
||||
\par
|
||||
\par The "C" button emulates the space bar, i.e. skip line of dialogue, skip cutscene or pause game (depending on the game, some games simply use the left mouse button to skip dialogue in which case it will pause the game instead)
|
||||
\par
|
||||
\par 2 - Toggle Landscape and Portrait
|
||||
\par Switches the screen output between having the phone held normally (Portrait) or on its side (Landscape). You'll probably never take it off Landscape mode as it offers the better display area.
|
||||
\par
|
||||
\par 3 - Change Landscape Orientation
|
||||
\par Only applies to Landscape mode, simply swaps the screen output between having the phone tilted on its left side or on its right side.
|
||||
\par
|
||||
\par 4 - Toggle Zoom On and Off
|
||||
\par Zooms in on a portion of the screen. Handy for when you are looking through a screen for items or havi
|
||||
ng trouble reading subtitles. Use the navigation buttons for panning around the play area. Don't forget you'll have to exit out of Configuration Mode before you can move the pointer again. Exiting Configuration Mode does not reset the zoom level.
|
||||
\par
|
||||
\par 5 & 6 - Unused
|
||||
\par
|
||||
\par 7 - "Text Input" mode. Shortcut for entering "Text Input" mode directly instead of cycling through the other input types using the "1" key.
|
||||
\par
|
||||
\par 8 - "Cursor" mode. Shortcut for entering "Cursor" mode directly instead of cycling through the other input types using the "1" key.
|
||||
\par
|
||||
\par 9 - "Joystick/Mouse" mode. Shortcut for entering "Joystick/Mouse" mode directly instead of cycling through the other input types using the key "1".
|
||||
\par
|
||||
\par 0 & * - Unused (The "*" Menu is disabled in Configuration Mode")
|
||||
\par
|
||||
\par Up Navigation Button - Increase ScummVM sound volume. Note that the game itself may have its own independent sound settings (usually found under the * menu)
|
||||
\par
|
||||
\par Down Navigation Button - Decrease ScummVM sound volume. Note that the game itself may have its own independent sound settings (usually found under the * menu)
|
||||
\par
|
||||
\par
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28 3rd guide
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls89\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls89\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Controls, Virtual keyboard, Shortcuts, ScummVM, Tips, S60, s60
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\f28
|
||||
\par
|
||||
\par }{ScummVM keys on Nokia e71 (most likely on any other qwerty-device, too), tested on version 0.14.0svn (Feb. 18 2009
|
||||
05:56:07). Number keys are inserted by first pressing fn-key (leftmost key at bottom row on E71) and then pressing correct key (e.g. 5 is fn+g). You don't have to press both keys simultaneously.
|
||||
\par
|
||||
\par Basic keys:
|
||||
\par
|
||||
\par Joystick -- Move cursor (in joystick mode) / arrow keys (in keyboard / cursor mode)
|
||||
\par Joystick button -- Skip text
|
||||
\par Left soft key -- Left mouse button
|
||||
\par Right soft key -- Right mouse button (context sensitive actions in Lucas Arts' games, something else in others)
|
||||
\par Backspace -- Esc / Skips demos / Removes selected action
|
||||
\par * (fn+u) -- Menu
|
||||
\par Space -- Pause
|
||||
\par Enter -- Enter (usually same as left soft key)
|
||||
\par
|
||||
\par In main menu:
|
||||
\par Shift -- Shift (can be used to mass-add games)
|
||||
\par You can press the first letter of the game name to jump there in the games list.
|
||||
\par
|
||||
\par CTRL-keys:
|
||||
\par To use these, first click on green answer key once, so that text CTRL shows up in the northwest corner of the screen, then click the key.
|
||||
\par
|
||||
\par p / 2 -- Screen orientation
|
||||
\par s / 5 -- Screen size
|
||||
\par k / 7 -- Input mode: keyboard
|
||||
\par c / 8 -- Input mode: cursor
|
||||
\par j / 9 -- Input mode: joystick
|
||||
\par joystick up -- Volume up
|
||||
\par joystick down -- Volume down
|
||||
\par 1 -- Toggle input mode
|
||||
\par
|
||||
\par Game specific:
|
||||
\par Most games have some specific keys (the same as in desktop model of ScummVM?) which can freely reassigned. For instance in Day of the Tentacle:
|
||||
\par
|
||||
\par w -- Walk to
|
||||
\par l -- Look at
|
||||
\par p -- Pick up
|
||||
\par c -- Close
|
||||
\par o -- Open
|
||||
\par g -- Give
|
||||
\par t -- Talk to
|
||||
\par s -- Push
|
||||
\par y -- Pull
|
||||
\par
|
||||
\par and in Full Throttle (from the top of my head):
|
||||
\par
|
||||
\par k -- kick (foot)
|
||||
\par t -- talk (mouth)
|
||||
\par l -- look (eyes)
|
||||
\par p -- punch (hand)
|
||||
\par
|
||||
\par AGI games (King's Quest, Police Quest etc.):
|
||||
\par The games work beautifully on the E71, but there's some stupid bugs (in input). I recall finding some debug keys and "last sentence" / "inventory" -keys in earlier version, but I can't find them any more. Also y
|
||||
ou can't turn on sirens in Police Quest, which kinda makes it unplayable.
|
||||
\par
|
||||
\par There's good side and bad side to each input mode:
|
||||
\par Keyboard (I use this primarily)
|
||||
\par
|
||||
\par * goes to menu
|
||||
\par + you can erase text
|
||||
\par + moving is relatively easy
|
||||
\par - you can't type in UPPER CASE
|
||||
\par - you can't type numbers
|
||||
\par - worthless 'current key' -display on left top corner
|
||||
\par
|
||||
\par Joystick / Cursor:
|
||||
\par
|
||||
\par + you can access menus
|
||||
\par + you can type numbers (just make sure f-letter in left top corner is red before clicking "numbers". It works kinda funnily, but you'll get hang of it.)
|
||||
\par - you move mouse cursor which makes walking harder (joystick mode)
|
||||
\par - you can't erase text
|
||||
\par }{\f28
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {ScummVM1 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls90\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls90\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {access
|
||||
\par adl
|
||||
\par agi
|
||||
\par agos
|
||||
\par \tab AGOS2
|
||||
\par ags
|
||||
\par bbvs}{\lang1049\langfe1033\langnp1049
|
||||
\par }{buried
|
||||
\par cge
|
||||
\par cge2
|
||||
\par scumm
|
||||
\par \tab HE
|
||||
\par \tab SCUMM_7_8
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {ScummVM2 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls90\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls90\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {cine
|
||||
\par composer
|
||||
\par cruise
|
||||
\par cryomni3d
|
||||
\par \tab VERSAILLES
|
||||
\par draci
|
||||
\par dragons
|
||||
\par drascula
|
||||
\par dreamweb
|
||||
\par glk}{\lang1059\langfe1033\langnp1059
|
||||
\par }{gnap}{\lang1049\langfe1033\langnp1049
|
||||
\par }{gob}{\lang1059\langfe1033\langnp1059
|
||||
\par }{griffon}{\lang1033\langfe1033\langnp1033
|
||||
\par }{groovie}{\lang1049\langfe1033\langnp1049
|
||||
\par }{hdb}{\lang1049\langfe1033\langnp1049
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {ScummVM3 engines list}{\lang1059\langfe1033\langnp1059
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang2057\langfe1033\langnp2057\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls94\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls94\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Supported engines}{\lang1059\langfe1033\langnp1059
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 grim}{\lang1033\langfe1033\langnp1033
|
||||
|
||||
\par \tab MONKEY4}{
|
||||
\par hopkins
|
||||
\par hugo}{\lang1049\langfe1033\langnp1049
|
||||
\par }{illusions}{\lang1049\langfe1033\langnp1049
|
||||
\par }{kyra
|
||||
\par \tab LOL
|
||||
\par \tab EOB
|
||||
\par lab
|
||||
\par lure
|
||||
\par made}{\lang1049\langfe1033\langnp1049
|
||||
\par }{mads}{\lang1049\langfe1033\langnp1049
|
||||
\par \tab MADSV2
|
||||
\par }{mortevielle}{\lang1059\langfe1033\langnp1059
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM4 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls95\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls95\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {Mohawk}{\lang1049\langfe1033\langnp1049
|
||||
\par \tab CSTIME
|
||||
\par }{\tab MYST
|
||||
\par \tab MYSTME
|
||||
\par \tab RIVEN
|
||||
\par }{\lang1059\langfe1033\langnp1059 myst3
|
||||
\par }{neverhood}{\lang1049\langfe1033\langnp1049
|
||||
\par }{\lang1059\langfe1033\langnp1059 ngi
|
||||
\par }{parallaction}{\lang1059\langfe1033\langnp1059
|
||||
\par pegasus
|
||||
\par petka
|
||||
\par }{plumbers
|
||||
\par prince}{\lang1059\langfe1033\langnp1059
|
||||
\par private}{\lang1049\langfe1033\langnp1049
|
||||
\par }{queen}{\lang1059\langfe1033\langnp1059
|
||||
\par saga
|
||||
\par \tab IHNM}{
|
||||
\par sky}{\lang1059\langfe1033\langnp1059
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM5 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls95\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls95\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {bladerunner}{\lang1033\langfe1033\langnp1033
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM6 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls96\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls96\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {sci
|
||||
\par \tab SCI32
|
||||
\par sherlock}{\lang1049\langfe1033\langnp1049
|
||||
\par stark
|
||||
\par }{\lang1059\langfe1033\langnp1059 supernova
|
||||
\par }{sword1
|
||||
\par sword2
|
||||
\par teenagent
|
||||
\par tinsel
|
||||
\par }{\lang1059\langfe1033\langnp1059 titanic
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM7 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls96\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls96\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {toltecs
|
||||
\par tony
|
||||
\par toon}{\lang1059\langfe1033\langnp1059
|
||||
\par touche
|
||||
\par }{tsage}{\lang1059\langfe1033\langnp1059
|
||||
\par tucker
|
||||
\par voyeur
|
||||
\par wintermute}{\lang1033\langfe1033\langnp1033
|
||||
\par \tab HEROCRAFT
|
||||
\par \tab FOXTAIL
|
||||
\par \tab WME3D
|
||||
\par zvision}{\lang1059\langfe1033\langnp1059
|
||||
\par }{\lang1049\langfe1033\langnp1049 xeen
|
||||
\par }{asylum
|
||||
\par }{\lang1059\langfe1033\langnp1059 avalanche}{\lang1049\langfe1033\langnp1049
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM8 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls96\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls96\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ultima
|
||||
\par chewy
|
||||
\par cryo
|
||||
\par }{\lang1033\langfe1033\langnp1033 d}{\lang1059\langfe1033\langnp1059 irector
|
||||
\par dm}{\lang1033\langfe1033\langnp1033
|
||||
\par hadesch
|
||||
\par icb
|
||||
\par kingdom
|
||||
\par lilliput
|
||||
\par macventure}{\lang1049\langfe1033\langnp1049
|
||||
\par }\pard\plain \s2\ql \li0\ri0\sb120\sa120\keepn\widctlpar\brdrt\brdrs\brdrw30\brsp20 \brdrb\brdrs\brdrw30\brsp20 \tqr\tx9072{\*\pn \pnlvlcont\ilvl0\ls0\pnrnot0\pndec }\nooverflow\faroman\outlinelevel1\rin0\lin0\itap0
|
||||
\b\f1\fs24\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 ScummVM8 engines list
|
||||
\par {\pntext\pard\plain\s26 \f29\fs20\lang1059\langfe1033\langnp1059\langfenp1033 \loch\af29\dbch\af0\hich\f29 \'69\tab}}\pard\plain \s26\ql \fi-283\li283\ri0\sa120\widctlpar\brdrb\brdrs\brdrw15\brsp20 {\*\pn \pnlvlblt\ilvl0\ls96\pnrnot0
|
||||
\pnf29\pnstart1\pnindent283\pnhang{\pntxtb i}}\nooverflow\faroman\ls96\rin0\lin283\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1059\langfe1033\langnp1059 Supported engines
|
||||
\par }\pard\plain \ql \li0\ri0\sa120\widctlpar\nooverflow\faroman\rin0\lin0\itap0 \f1\fs20\lang2057\langfe1033\cgrid\langnp2057\langfenp1033 {\lang1033\langfe1033\langnp1033 lastexpress
|
||||
\par mutationofjb
|
||||
\par }{\lang1049\langfe1033\langnp1049 nancy
|
||||
\par }{\lang1033\langfe1033\langnp1033 pink
|
||||
\par saga2
|
||||
\par sludge
|
||||
\par startrek}{\lang1059\langfe1033\langnp1059
|
||||
\par trecision}{\lang1033\langfe1033\langnp1033
|
||||
\par twine}{\lang1059\langfe1033\langnp1059 }{\lang1033\langfe1033\langnp1033
|
||||
\par wage}{\lang1059\langfe1033\langnp1059
|
||||
\par }}
|
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml:stylesheet href="\epoc32\tools\cshlpcmp\xsl\CSHproj.xsl" title="CS Help project" type="text/xsl"?>
|
||||
<!DOCTYPE cshproj SYSTEM "\epoc32\tools\cshlpcmp\dtd\CSHproj.dtd">
|
||||
|
||||
<cshproj>
|
||||
<helpfileUID>0x100039ce</helpfileUID> <!-- From help file -->
|
||||
<directories>
|
||||
<input></input>
|
||||
<output></output>
|
||||
<working></working>
|
||||
</directories>
|
||||
<files>
|
||||
<source>
|
||||
<file>ScummVM.rtf</file>
|
||||
</source>
|
||||
<destination>ScummVM.hlp</destination>
|
||||
<customization>custom.xml</customization>
|
||||
</files>
|
||||
</cshproj>
|
@ -1,26 +0,0 @@
|
||||
# ============================================================================
|
||||
# Name : help.mk
|
||||
# Part of : ScummVM
|
||||
#
|
||||
# Description: This is file for creating .hlp file
|
||||
#
|
||||
# ============================================================================
|
||||
|
||||
|
||||
makmake :
|
||||
cshlpcmp ScummVM.xml
|
||||
|
||||
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
||||
copy ScummVM.hlp $(EPOCROOT)epoc32\$(PLATFORM)\c\resource\help
|
||||
endif
|
||||
|
||||
clean :
|
||||
del ScummVM.hlp
|
||||
del ScummVM.hlp.hrh
|
||||
|
||||
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
||||
copy ScummVM.hlp $(EPOCROOT)epoc32\$(PLATFORM)\c\resource\help
|
||||
endif
|
||||
|
||||
bld freeze lib cleanlib final resource savespace releasables :
|
||||
|
Before Width: | Height: | Size: 822 B |
Before Width: | Height: | Size: 1.0 KiB |
@ -1,43 +0,0 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
|
||||
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
|
||||
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
|
||||
* Copyright (C) 2005-2017 The ScummVM Team
|
||||
*
|
||||
* 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 <aiftool.rh>
|
||||
|
||||
|
||||
RESOURCE AIF_DATA
|
||||
{
|
||||
app_uid= 0x101f9b57;
|
||||
//
|
||||
hidden=KAppNotHidden;
|
||||
embeddability=KAppNotEmbeddable;
|
||||
caption_list=
|
||||
{
|
||||
CAPTION { code=ELangEnglish; caption="ScummVM"; },
|
||||
CAPTION { code=ELangAmerican; caption="ScummVM"; },
|
||||
CAPTION { code=ELangOther; caption="ScummVM"; }
|
||||
};
|
||||
//
|
||||
num_icons=2;
|
||||
}
|
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 918 B |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 334 B |
@ -1,20 +0,0 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDPTCCAqagAwIBAgIJANnRNFREswq9MA0GCSqGSIb3DQEBBQUAMHMxCzAJBgNV
|
||||
BAYTAlNFMQwwCgYDVQQIEwNOL0ExDDAKBgNVBAcTA04vQTEQMA4GA1UEChMHU2N1
|
||||
bW1WTTEQMA4GA1UECxMHU2N1bW1WTTEQMA4GA1UEAxMHU2N1bW1WTTESMBAGCSqG
|
||||
SIb3DQEJARYDTi9BMB4XDTA3MDkyNjA5MjAzOFoXDTM3MDkxODA5MjAzOFowczEL
|
||||
MAkGA1UEBhMCU0UxDDAKBgNVBAgTA04vQTEMMAoGA1UEBxMDTi9BMRAwDgYDVQQK
|
||||
EwdTY3VtbVZNMRAwDgYDVQQLEwdTY3VtbVZNMRAwDgYDVQQDEwdTY3VtbVZNMRIw
|
||||
EAYJKoZIhvcNAQkBFgNOL0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJ5v
|
||||
LDuE1xRwFJzIomJnuHSWJgHANrw/++LJPzYLxozOdXvU3vzkT96sRIIP2NickBRy
|
||||
Iye2GEJRdpKJ3o7V9ssgydmrzSiMPKt0WaEvhmuYMMv8GSyhrmltalDXYOTuDCET
|
||||
UAVVQ2DrTcx2akFJZcpaNJsQ4WPlBxdYgOD+VL7jAgMBAAGjgdgwgdUwHQYDVR0O
|
||||
BBYEFDzKWKv11OGtpc1jL0gRAUvAv8YqMIGlBgNVHSMEgZ0wgZqAFDzKWKv11OGt
|
||||
pc1jL0gRAUvAv8YqoXekdTBzMQswCQYDVQQGEwJTRTEMMAoGA1UECBMDTi9BMQww
|
||||
CgYDVQQHEwNOL0ExEDAOBgNVBAoTB1NjdW1tVk0xEDAOBgNVBAsTB1NjdW1tVk0x
|
||||
EDAOBgNVBAMTB1NjdW1tVk0xEjAQBgkqhkiG9w0BCQEWA04vQYIJANnRNFREswq9
|
||||
MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADgYEATjjyLCC1sb7F8xS7NEQU
|
||||
y2tqgvpxoNAE23CDUsLp9Lzo3nPPUUZXvbz2Fy08yiXq5WGBxJWOwCSk3VLyhCze
|
||||
v9lUCkWEA0XoB6uStUOJrwJzpn1FaFgY6Z6N0dKXvQLk+M20QWIXGU1c55JybkR1
|
||||
Le2lskEQUJFDgGrGEJm2tMg=
|
||||
-----END CERTIFICATE-----
|
@ -1,15 +0,0 @@
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
MIICWwIBAAKBgQCebyw7hNcUcBScyKJiZ7h0liYBwDa8P/viyT82C8aMznV71N78
|
||||
5E/erESCD9jYnJAUciMnthhCUXaSid6O1fbLIMnZq80ojDyrdFmhL4ZrmDDL/Bks
|
||||
oa5pbWpQ12Dk7gwhE1AFVUNg603MdmpBSWXKWjSbEOFj5QcXWIDg/lS+4wIDAQAB
|
||||
AoGANd5g8L/DDWzqZUCGjeTsP5/JvnCna6xprXt1pZ+tW7TbF0aSpvPOAE0cYgiX
|
||||
V1csWfdQ4rC0YOAn67060eAIMBGlfyIBAdjB281tDNny1Hy1GPANCBZojqwHFj+v
|
||||
Abiy5qDeQ7rl8e+Zecyx8r8iC4zwNdGM8wr7pZkuKr7oIukCQQDQnGatT2BDz4ZH
|
||||
7FvhlW7Wf6jp8yU5ZbXuIWVR4Vc6Ij5q+41TQ+fDBHy3xxj/m/dfUopk6hjdqnSJ
|
||||
vTVq28sXAkEAwmzJy8pmwlLUdoelMxuSC2VcxrzlNljjPK1FAjcf957B/4eNNr7o
|
||||
zBAVEg8Nk4wlRdw7UfGz65YGtt7sBrFaFQJAUzdAojv6u7Ip78Dyeg9hMoGkQQb0
|
||||
P2w6Ya7CuyH36MHGQmjsXF3HMv00Px9V8okl6cmEWXMkzi/z4wouJ91bqwJAB2tp
|
||||
ZAqMU1wf2YohpsqljyPGH5tzz9gii9085fG+mY+Ibbz5iZ5NegQfGbpTVU8i2QCn
|
||||
jt//cr0d8nqdXUAFZQJAIScokPvhkMstK3bMCWC1sW7bxV6+IFNWcPS6WxKZaxKt
|
||||
uvSYjAB1oZDhIAPmQVLeAW7DInDQFaxET/0pQxXfqw==
|
||||
-----END RSA PRIVATE KEY-----
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 2.1 KiB |
@ -1,121 +0,0 @@
|
||||
/* 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 "backends/platform/symbian/src/ScummApp.h"
|
||||
#include "backends/platform/symbian/src/ScummVM.hrh"
|
||||
|
||||
#define _PAGESIZE_ 0x1000
|
||||
|
||||
#if defined(__WINS__) && !defined(S60V3) && !defined(UIQ3)
|
||||
extern "C" int _chkstk(int /*a*/) {
|
||||
_asm {
|
||||
push ecx
|
||||
cmp eax,_PAGESIZE_
|
||||
lea ecx,[esp] + 8
|
||||
jb short lastpage
|
||||
|
||||
probepages:
|
||||
sub ecx,_PAGESIZE_
|
||||
sub eax,_PAGESIZE_
|
||||
|
||||
test dword ptr [ecx],eax
|
||||
|
||||
cmp eax,_PAGESIZE_
|
||||
jae short probepages
|
||||
|
||||
lastpage:
|
||||
sub ecx,eax
|
||||
mov eax,esp
|
||||
|
||||
test dword ptr [ecx],eax
|
||||
|
||||
mov esp,ecx
|
||||
|
||||
mov ecx,dword ptr [eax]
|
||||
mov eax,dword ptr [eax + 4]
|
||||
|
||||
push eax
|
||||
ret
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef EPOC_AS_APP
|
||||
|
||||
// this function is called automatically by the SymbianOS to deliver the new CApaApplication object
|
||||
#if !defined(UIQ3) && !defined(S60V3)
|
||||
EXPORT_C
|
||||
#endif
|
||||
CApaApplication* NewApplication() {
|
||||
// Return pointer to newly created CQMApp
|
||||
return new CScummApp;
|
||||
}
|
||||
|
||||
#if defined(UIQ3) || defined(S60V3)
|
||||
#include <eikstart.h>
|
||||
// E32Main() contains the program's start up code, the entry point for an EXE.
|
||||
GLDEF_C TInt E32Main() {
|
||||
__UHEAP_MARK;
|
||||
TInt i = EikStart::RunApplication(NewApplication);
|
||||
__UHEAP_MARKEND;
|
||||
return i;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // EPOC_AS_APP
|
||||
|
||||
#if !defined(UIQ3) && !defined(S60V3)
|
||||
GLDEF_C TInt E32Dll(TDllReason) {
|
||||
return KErrNone;
|
||||
}
|
||||
#endif
|
||||
|
||||
CScummApp::CScummApp() {
|
||||
}
|
||||
|
||||
CScummApp::~CScummApp() {
|
||||
}
|
||||
|
||||
#if defined(UIQ3)
|
||||
#include <scummvm.rsg>
|
||||
/**
|
||||
* Returns the resource id to be used to declare the views supported by this UIQ3 app
|
||||
* @return TInt, resource id
|
||||
*/
|
||||
TInt CScummApp::ViewResourceId() {
|
||||
return R_SDL_VIEW_UI_CONFIGURATIONS;
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Responsible for returning the unique UID of this application
|
||||
* @return unique UID for this application in a TUid
|
||||
**/
|
||||
TUid CScummApp::AppDllUid() const {
|
||||
return TUid::Uid(ScummUid);
|
||||
}
|
||||
|
||||
void CScummApp::GetDataFolder(TDes& aDataFolder)
|
||||
{
|
||||
aDataFolder = _L("ScummVM");
|
||||
}
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////
|
@ -1,50 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SCUMMAPP_H
|
||||
#define SCUMMAPP_H
|
||||
|
||||
#include <eikapp.h>
|
||||
#include <e32base.h>
|
||||
#include <sdlapp.h>
|
||||
|
||||
#if defined(EPOC_AS_APP) && !defined(UIQ3) && !defined(S60V3)
|
||||
#include "ECompXL.h"
|
||||
#endif
|
||||
|
||||
class CScummApp : public CSDLApp {
|
||||
public:
|
||||
CScummApp();
|
||||
~CScummApp();
|
||||
#if defined(UIQ3)
|
||||
/**
|
||||
* Returns the resource id to be used to declare the views supported by this UIQ3 app
|
||||
* @return TInt, resource id
|
||||
*/
|
||||
TInt ViewResourceId();
|
||||
#endif
|
||||
TUid AppDllUid() const;
|
||||
void GetDataFolder(TDes& aDataFolder);
|
||||
#if defined(EPOC_AS_APP) && !defined(UIQ3) && !defined(S60V3)
|
||||
TECompXL iECompXL;
|
||||
#endif
|
||||
};
|
||||
#endif
|
@ -1,169 +0,0 @@
|
||||
/* 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 "ScummVMapp.h"
|
||||
#include <scummvm.rsg>
|
||||
#include <apgcli.h>
|
||||
#include <eikdll.h>
|
||||
#include <apgtask.h>
|
||||
|
||||
EXPORT_C CApaApplication *NewApplication() {
|
||||
return (new CScummVM);
|
||||
}
|
||||
|
||||
CScummVM::CScummVM() {
|
||||
}
|
||||
|
||||
CScummVM::~CScummVM() {
|
||||
}
|
||||
|
||||
CApaDocument *CScummVM::CreateDocumentL() {
|
||||
return new (ELeave)CScummVMDoc(*this);
|
||||
}
|
||||
|
||||
TUid CScummVM::AppDllUid() const {
|
||||
return TUid::Uid(0x101f9b57);
|
||||
}
|
||||
|
||||
CScummVMDoc::CScummVMDoc(CEikApplication &aApp) : CEikDocument(aApp) {
|
||||
}
|
||||
|
||||
CScummVMDoc::~CScummVMDoc() {
|
||||
}
|
||||
|
||||
CEikAppUi *CScummVMDoc::CreateAppUiL() {
|
||||
return new (ELeave)CScummVMUi;
|
||||
}
|
||||
|
||||
void CScummVMUi::HandleForegroundEventL(TBool aForeground) {
|
||||
if (aForeground) {
|
||||
BringUpEmulatorL();
|
||||
}
|
||||
}
|
||||
|
||||
CScummVMUi::CScummVMUi() {
|
||||
}
|
||||
|
||||
CScummVMUi::~CScummVMUi() {
|
||||
if (iWatcher) {
|
||||
iThreadWatch.LogonCancel(iWatcher->iStatus);
|
||||
iWatcher->Cancel();
|
||||
}
|
||||
|
||||
delete iWatcher;
|
||||
|
||||
iThreadWatch.Close();
|
||||
}
|
||||
|
||||
void CScummVMUi::ConstructL() {
|
||||
BaseConstructL();
|
||||
TBuf<128> startFile;
|
||||
startFile = iEikonEnv->EikAppUi()->Application()->AppFullName();
|
||||
TParse parser;
|
||||
parser.Set(startFile,NULL,NULL);
|
||||
|
||||
startFile = parser.DriveAndPath();
|
||||
#ifndef __WINS__
|
||||
startFile.Append( _L("ScummVM.exe"));
|
||||
#else
|
||||
startFile.Append( _L("ScummVM.dll"));
|
||||
#endif
|
||||
CApaCommandLine *cmdLine = CApaCommandLine::NewLC(startFile);
|
||||
RApaLsSession lsSession;
|
||||
|
||||
lsSession.Connect();
|
||||
CleanupClosePushL(lsSession);
|
||||
lsSession.StartApp(*cmdLine, iThreadId);
|
||||
|
||||
CleanupStack::PopAndDestroy();//close lsSession
|
||||
CleanupStack::PopAndDestroy(cmdLine);
|
||||
|
||||
User::After(500000);// Let the application start
|
||||
|
||||
TApaTaskList taskList(iEikonEnv->WsSession());
|
||||
|
||||
TApaTask myTask = taskList.FindApp(TUid::Uid(0x101f9b57));
|
||||
myTask.SendToBackground();
|
||||
|
||||
TApaTask exeTask = taskList.FindByPos(0);
|
||||
|
||||
iExeWgId=exeTask.WgId();
|
||||
exeTask.BringToForeground();
|
||||
|
||||
if (iExeWgId == myTask.WgId()) { // Should n't be the same
|
||||
Exit();
|
||||
}
|
||||
if (iThreadWatch.Open(iThreadId) == KErrNone) {
|
||||
iWatcher = new (ELeave)CScummWatcher;
|
||||
iWatcher->iAppUi = this;
|
||||
iThreadWatch.Logon(iWatcher->iStatus);
|
||||
}
|
||||
}
|
||||
|
||||
CScummWatcher::CScummWatcher() : CActive(EPriorityStandard) {
|
||||
CActiveScheduler::Add(this);
|
||||
|
||||
iStatus = KRequestPending;
|
||||
SetActive();
|
||||
}
|
||||
|
||||
CScummWatcher::~CScummWatcher() {
|
||||
}
|
||||
|
||||
void CScummWatcher::DoCancel() {
|
||||
}
|
||||
|
||||
void CScummWatcher::RunL() {
|
||||
iAppUi->HandleCommandL(EEikCmdExit);
|
||||
}
|
||||
|
||||
void CScummVMUi::BringUpEmulatorL() {
|
||||
RThread thread;
|
||||
|
||||
if (thread.Open(iThreadId) == KErrNone) {
|
||||
thread.Close();
|
||||
TApaTask apaTask(iEikonEnv->WsSession());
|
||||
apaTask.SetWgId(iExeWgId);
|
||||
apaTask.BringToForeground();
|
||||
} else {
|
||||
iExeWgId = -1;
|
||||
Exit();
|
||||
}
|
||||
}
|
||||
|
||||
void CScummVMUi::HandleCommandL(TInt aCommand) {
|
||||
switch (aCommand) {
|
||||
case EEikCmdExit:
|
||||
{
|
||||
RThread thread;
|
||||
if (thread.Open(iThreadId) == KErrNone) {
|
||||
thread.Terminate(0);
|
||||
thread.Close();
|
||||
}
|
||||
Exit();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
GLDEF_C TInt E32Dll(TDllReason) {
|
||||
return KErrNone;
|
||||
}
|
@ -1,81 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SCUMMVMAPP_H
|
||||
#define SCUMMVMAPP_H
|
||||
|
||||
#include <eikapp.h>
|
||||
#include <e32base.h>
|
||||
#include <coecntrl.h>
|
||||
#include <eikenv.h>
|
||||
#include <coeview.h>
|
||||
#include <eikappui.h>
|
||||
|
||||
class CScummVM : public CEikApplication {
|
||||
public:
|
||||
CScummVM();
|
||||
~CScummVM();
|
||||
|
||||
CApaDocument *CreateDocumentL();
|
||||
TUid AppDllUid() const;
|
||||
};
|
||||
|
||||
|
||||
#include <eikdoc.h>
|
||||
|
||||
class CScummVMDoc : public CEikDocument {
|
||||
public:
|
||||
CScummVMDoc(CEikApplication &aApplicaiton);
|
||||
~CScummVMDoc();
|
||||
|
||||
CEikAppUi *CreateAppUiL();
|
||||
void ConstructL();
|
||||
};
|
||||
|
||||
#include <eikappui.h>
|
||||
class CScummVMUi;
|
||||
class CScummWatcher : public CActive {
|
||||
public:
|
||||
CScummWatcher();
|
||||
~CScummWatcher();
|
||||
|
||||
void DoCancel();
|
||||
void RunL();
|
||||
CScummVMUi *iAppUi;
|
||||
};
|
||||
|
||||
class CScummVMUi : public CEikAppUi {
|
||||
public:
|
||||
CScummVMUi();
|
||||
~CScummVMUi();
|
||||
|
||||
void ConstructL();
|
||||
void HandleCommandL(TInt aCommand);
|
||||
void HandleForegroundEventL(TBool aForeground);
|
||||
void BringUpEmulatorL();
|
||||
|
||||
private:
|
||||
TThreadId iThreadId;
|
||||
TInt iExeWgId;
|
||||
RThread iThreadWatch;
|
||||
CScummWatcher *iWatcher;
|
||||
};
|
||||
#endif
|
@ -1,131 +0,0 @@
|
||||
/* 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 <bacline.h> // CCommandLineArguments
|
||||
|
||||
#include "backends/platform/symbian/src/portdefs.h"
|
||||
#include "base/main.h"
|
||||
#include "backends/platform/symbian/src/SymbianOS.h"
|
||||
|
||||
extern "C"
|
||||
{
|
||||
// Include the snprintf and vsnprintf implementations as 'C' code.
|
||||
#include "vsnprintf.h"
|
||||
}
|
||||
|
||||
// Symbian SDL_Main implementation.
|
||||
// Redirects standard io, creates Symbian specific SDL backend (inherited from main SDL).
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
// Set up redirects for stdout/stderr under Symbian.
|
||||
// Code copied from SDL_main.
|
||||
|
||||
// Symbian does not like any output to the console through any *print* function.
|
||||
char STDOUT_FILE[256], STDERR_FILE[256]; // Shhh, don't tell anybody :)
|
||||
strcpy(STDOUT_FILE, Symbian::GetExecutablePath());
|
||||
strcpy(STDERR_FILE, Symbian::GetExecutablePath());
|
||||
strcat(STDOUT_FILE, "scummvm.stdout.txt");
|
||||
strcat(STDERR_FILE, "scummvm.stderr.txt");
|
||||
|
||||
// Flush the output in case anything is queued.
|
||||
fclose(stdout);
|
||||
fclose(stderr);
|
||||
|
||||
// Redirect standard input and standard output.
|
||||
FILE *newfp = freopen(STDOUT_FILE, "w", stdout);
|
||||
if (newfp == NULL) { // This happens on NT.
|
||||
#if !defined(stdout)
|
||||
stdout = fopen(STDOUT_FILE, "w");
|
||||
#else
|
||||
newfp = fopen(STDOUT_FILE, "w");
|
||||
if (newfp) {
|
||||
*stdout = *newfp;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
newfp = freopen(STDERR_FILE, "w", stderr);
|
||||
if (newfp == NULL) { // This happens on NT.
|
||||
#if !defined(stderr)
|
||||
stderr = fopen(STDERR_FILE, "w");
|
||||
#else
|
||||
newfp = fopen(STDERR_FILE, "w");
|
||||
if (newfp) {
|
||||
*stderr = *newfp;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
setbuf(stderr, NULL); // No buffering.
|
||||
|
||||
// Create our OSystem instance.
|
||||
g_system = new OSystem_SDL_Symbian();
|
||||
assert(g_system);
|
||||
|
||||
// Pre initialize the backend.
|
||||
g_system->init();
|
||||
|
||||
#ifdef DYNAMIC_MODULES
|
||||
PluginManager::instance().addPluginProvider(new SDLPluginProvider());
|
||||
#endif
|
||||
|
||||
// Catch input params and pass to argv/argc.
|
||||
CCommandLineArguments *cmdline = CCommandLineArguments::NewL();
|
||||
if (!cmdline) {
|
||||
error("Failure to alloc CCommandLineArguments!");
|
||||
return -1;
|
||||
}
|
||||
|
||||
argc = cmdline->Count();
|
||||
if (argc > 1) {
|
||||
debug("console arg count by CCommandLineArguments: %d", argc);
|
||||
argv = new char* [argc];
|
||||
HBufC8 *buf = HBufC8::NewMax(20); // This should suffice for most cases.
|
||||
for (TInt i = 0; i < argc; ++i) {
|
||||
TPtrC arg = cmdline->Arg(i);
|
||||
argv[i] = new char[arg.Length() + 1](); // Hold zero terminated string.
|
||||
if (arg.Length() > buf->Length())
|
||||
buf->ReAlloc(arg.Length());
|
||||
|
||||
TPtr arg2((TUint16 *)arg.Ptr(), arg.Length(), arg.Length());
|
||||
TPtr8 pbuf2(buf->Des());
|
||||
pbuf2 = arg2.Collapse();
|
||||
pbuf2.Copy((TUint8 *)argv[i], arg.Length());
|
||||
debug("argv[%d]: %s", i, argv[i]);
|
||||
}
|
||||
delete buf;
|
||||
}
|
||||
// Invoke the actual ScummVM main entry point:
|
||||
int res = scummvm_main(argc, argv);
|
||||
|
||||
// Clear argv.
|
||||
if (argc > 1) { //avoid multiple User 42 panics at exit
|
||||
for (TInt i = 0; i < argc; ++i) {
|
||||
delete[] argv[i];
|
||||
}
|
||||
delete[] argv;
|
||||
}
|
||||
delete cmdline;
|
||||
|
||||
// Free OSystem.
|
||||
g_system->destroy();
|
||||
|
||||
return res;
|
||||
}
|
@ -1,266 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
#pragma GCC diagnostic ignored "-Wreturn-local-addr"
|
||||
#pragma GCC diagnostic ignored "-Wnarrowing"
|
||||
#pragma GCC diagnostic ignored "-Wc++14-compat"
|
||||
#endif
|
||||
|
||||
#include <utf.h>
|
||||
#include <apgcli.h>
|
||||
#include <eikenv.h> // for CEikonEnv::Static()
|
||||
#include <sdlapp.h> // for CSDLApp::GetExecutablePathCStr() @ Symbian::GetExecutablePath()
|
||||
#include <bautils.h>
|
||||
#include <e32base.h>
|
||||
#include <symbian_helper.h>
|
||||
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
// If a pop has no matching push, the command-line options are restored.
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_fclose
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_fopen
|
||||
|
||||
#include "backends/platform/symbian/src/SymbianOS.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "common/scummsys.h"
|
||||
|
||||
#include "gui/message.h"
|
||||
|
||||
#include "backends/fs/symbian/symbian-fs-factory.h"
|
||||
#include "backends/saves/default/default-saves.h"
|
||||
#include "backends/mixer/symbiansdl/symbiansdl-mixer.h"
|
||||
|
||||
#include "backends/keymapper/keymapper.h"
|
||||
#include "backends/keymapper/keymapper-defaults.h"
|
||||
|
||||
#define DEFAULT_CONFIG_FILE "scummvm.ini"
|
||||
#define DEFAULT_SAVE_PATH "Savegames"
|
||||
|
||||
////////// extern "C" ///////////////////////////////////////////////////
|
||||
namespace Symbian {
|
||||
|
||||
// Make this easily available everywhere.
|
||||
char *GetExecutablePath() {
|
||||
return CSDLApp::GetExecutablePathCStr();
|
||||
}
|
||||
|
||||
} // namespace Symbian.
|
||||
|
||||
////////// OSystem_SDL_Symbian //////////////////////////////////////////
|
||||
|
||||
OSystem_SDL_Symbian::OSystem_SDL_Symbian() {}
|
||||
|
||||
void OSystem_SDL_Symbian::init() {
|
||||
// Use iconless window: it uses the EScummVM.aif file for the icon.
|
||||
initSDL();
|
||||
_window = new SdlIconlessWindow();
|
||||
_fsFactory = new SymbianFilesystemFactory();
|
||||
OSystem_SDL::init();
|
||||
}
|
||||
|
||||
void OSystem_SDL_Symbian::initBackend() {
|
||||
// Calculate the default savepath.
|
||||
Common::String savePath;
|
||||
savePath = Symbian::GetExecutablePath();
|
||||
savePath += DEFAULT_SAVE_PATH "\\";
|
||||
_savefileManager = new DefaultSaveFileManager(savePath);
|
||||
|
||||
// If savepath has not already been set then set it.
|
||||
if (!ConfMan.hasKey("savepath")) {
|
||||
ConfMan.set("savepath", savePath);
|
||||
}
|
||||
|
||||
#if _DEBUG
|
||||
#warning "set debuglevel = 20"
|
||||
ConfMan.set("debuglevel", "20");
|
||||
if (!ConfMan.hasKey("debuglevel"))
|
||||
warning("debuglevel not set!\n");
|
||||
#endif
|
||||
// Ensure that the current set path (might have been altered by the user) exists.
|
||||
Common::String currentPath = ConfMan.get("savepath");
|
||||
TFileName fname;
|
||||
TPtrC8 ptr((const unsigned char*)currentPath.c_str(), currentPath.size());
|
||||
fname.Copy(ptr);
|
||||
BaflUtils::EnsurePathExistsL(FsSession(), fname);
|
||||
|
||||
ConfMan.setBool("FM_high_quality", false);
|
||||
#if !defined(S60) || defined(S60V3) // S60 has low quality as default.
|
||||
ConfMan.setBool("FM_medium_quality", true);
|
||||
#else
|
||||
ConfMan.setBool("FM_medium_quality", false);
|
||||
#endif
|
||||
// Symbian OS should have joystick_num set to 0 in the ini file,
|
||||
// but uiq devices might refuse opening the joystick.
|
||||
ConfMan.setInt("joystick_num", 0);
|
||||
ConfMan.setBool("fullscreen", true);
|
||||
ConfMan.flushToDisk();
|
||||
|
||||
if (_mixerManager == nullptr) {
|
||||
_mixerManager = new SymbianSdlMixerManager();
|
||||
|
||||
// Setup and start mixer.
|
||||
_mixerManager->init();
|
||||
}
|
||||
|
||||
// Call parent implementation of this method.
|
||||
OSystem_SDL::initBackend();
|
||||
}
|
||||
|
||||
void OSystem_SDL_Symbian::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) {
|
||||
RFs rfs = FsSession();
|
||||
TChar driveLetter;
|
||||
TFileName extraPath;
|
||||
|
||||
#if !RELEASE_BUILD
|
||||
_LIT(KDefaultBetaExtraPath,"!:\\DATA\\ScummVM\\BETA\\");
|
||||
extraPath = KDefaultBetaExtraPath;
|
||||
#else
|
||||
_LIT(KDefaultExtraPath,"!:\\DATA\\ScummVM\\");
|
||||
extraPath = KDefaultExtraPath;
|
||||
Common::FSNode pluginsNode(Symbian::GetExecutablePath());
|
||||
if (pluginsNode.exists() && pluginsNode.isDirectory()) {
|
||||
s.add("SYMBIAN_DATAFOLDER", new Common::FSDirectory(Symbian::GetExecutablePath()), priority);
|
||||
}
|
||||
#endif
|
||||
|
||||
for (TInt i = EDriveA; i <= EDriveZ; i++) {
|
||||
if (rfs.DriveToChar(i, driveLetter) != KErrNone)
|
||||
continue;
|
||||
extraPath[0] = driveLetter;
|
||||
if(BaflUtils::FolderExists(rfs, extraPath)){
|
||||
TBuf8<KMaxFileName> fileName8 = extraPath.Collapse();
|
||||
s.add("SYMBIAN_DATAFOLDER" + driveLetter, new Common::FSDirectory((char *)fileName8.PtrZ()), priority);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void OSystem_SDL_Symbian::quitWithErrorMsg(const char * /*aMsg*/) {
|
||||
CEikonEnv::Static()->AlertWin(_L("quitWithErrorMsg()")) ;
|
||||
|
||||
if (g_system)
|
||||
g_system->quit();
|
||||
}
|
||||
|
||||
Common::String OSystem_SDL_Symbian::getDefaultConfigFileName() {
|
||||
char configFile[MAXPATHLEN];
|
||||
strcpy(configFile, Symbian::GetExecutablePath());
|
||||
strcat(configFile, DEFAULT_CONFIG_FILE);
|
||||
return configFile;
|
||||
}
|
||||
|
||||
bool OSystem_SDL_Symbian::hasFeature(Feature f) {
|
||||
if (f == kFeatureFullscreenMode)
|
||||
return false;
|
||||
if (f == kFeatureOpenUrl) return true;
|
||||
|
||||
return OSystem_SDL::hasFeature(f);
|
||||
}
|
||||
|
||||
Common::KeymapperDefaultBindings *OSystem_SDL_Symbian::getKeymapperDefaultBindings(){
|
||||
Common::KeymapperDefaultBindings *keymapperDefaultBindings = new Common::KeymapperDefaultBindings();
|
||||
keymapperDefaultBindings->setDefaultBinding(Common::kGlobalKeymapName, "MENU", "ASTERISK");
|
||||
return keymapperDefaultBindings;
|
||||
}
|
||||
|
||||
_LIT8(KHTMLMimeType, "text/html");
|
||||
_LIT(KOperaName,"OperaMobile.exe");
|
||||
const size_t kOpera10500_UID = 537056398;
|
||||
const char kFailMsg[] = "RApaLsSession failed: error = %d";
|
||||
|
||||
bool OSystem_SDL_Symbian::openUrl(const Common::String &url) {
|
||||
TAutoClose2<RApaLsSession> appArcSession;
|
||||
TInt error = appArcSession->Connect();
|
||||
if (error != KErrNone) {
|
||||
warning(kFailMsg, error);
|
||||
return false;
|
||||
}
|
||||
appArcSession->GetAllApps(); // inits RApaLsSession
|
||||
|
||||
TUid browserUID;
|
||||
TDataType html = TDataType(KHTMLMimeType);
|
||||
error = appArcSession->AppForDataType(html, browserUID);
|
||||
if (browserUID == KNullUid) {
|
||||
warning("Can't find any browser. Try to install Opera.");
|
||||
return false;
|
||||
}
|
||||
|
||||
TApaAppInfo info;
|
||||
error = appArcSession->GetAppInfo(info, browserUID);
|
||||
|
||||
// Give more time to obtain app list
|
||||
while (error == RApaLsSession::EAppListInvalid) {
|
||||
error = appArcSession->GetAppInfo(info, browserUID);
|
||||
User::After(TTimeIntervalMicroSeconds32(100000)); // 0.1 secs
|
||||
}
|
||||
|
||||
// HACK: We should run Opera 10 itself, not launcher, because
|
||||
// Opera's launcher doesn't recognize commandline args.
|
||||
if (browserUID.iUid == kOpera10500_UID) {
|
||||
TParse pth;
|
||||
pth.Set(info.iFullName, NULL , NULL);
|
||||
TPtrC name = pth.NameAndExt();
|
||||
info.iFullName.SetLength(info.iFullName.Length() - name.Length());
|
||||
info.iFullName.Append(KOperaName);
|
||||
}
|
||||
|
||||
HBufC *addr = CnvUtfConverter::ConvertToUnicodeFromUtf8L(TPtrC8((TUint8 *)url.c_str(), url.size()));
|
||||
CleanupStack::PushL(addr);
|
||||
|
||||
TAutoClose2<RProcess> proc;
|
||||
error = proc->Create(info.iFullName, *addr);
|
||||
if (error == KErrNone)
|
||||
proc->Resume();
|
||||
else
|
||||
warning("Failure while browser starts = %d", error);
|
||||
|
||||
CleanupStack::PopAndDestroy(addr);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Symbian bsearch implementation is flawed.
|
||||
void* scumm_bsearch(const void *key, const void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {
|
||||
// Perform binary search.
|
||||
size_t lo = 0;
|
||||
size_t hi = nmemb;
|
||||
while (lo < hi) {
|
||||
size_t mid = (lo + hi) / 2;
|
||||
const void *p = ((const char *)base) + mid * size;
|
||||
int tmp = (*compar)(key, p);
|
||||
if (tmp < 0)
|
||||
hi = mid;
|
||||
else if (tmp > 0)
|
||||
lo = mid + 1;
|
||||
else
|
||||
return (void *)p;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/** Provide access to file server session. Lifetime managed by UI framework. */
|
||||
RFs &FsSession() {
|
||||
return CEikonEnv::Static()->FsSession();
|
||||
}
|
||||
|
||||
extern "C" void __sync_synchronize(){}
|
@ -1,52 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef PLATFORM_SDL_SYMBIAN_H
|
||||
#define PLATFORM_SDL_SYMBIAN_H
|
||||
|
||||
#include "backends/platform/sdl/sdl.h"
|
||||
|
||||
class RFs;
|
||||
|
||||
class OSystem_SDL_Symbian : public OSystem_SDL {
|
||||
public:
|
||||
OSystem_SDL_Symbian();
|
||||
|
||||
// Override from OSystem_SDL
|
||||
void init() override;
|
||||
void initBackend() override;
|
||||
Common::String getDefaultConfigFileName() override;
|
||||
bool hasFeature(Feature f) override;
|
||||
|
||||
void quitWithErrorMsg(const char *msg);
|
||||
|
||||
void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0);
|
||||
|
||||
Common::KeymapperDefaultBindings *getKeymapperDefaultBindings() override;
|
||||
|
||||
bool openUrl(const Common::String &url) override;
|
||||
protected:
|
||||
TFileName _localpath;
|
||||
};
|
||||
|
||||
RFs &FsSession();
|
||||
|
||||
#endif
|
@ -1,250 +0,0 @@
|
||||
/* 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/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SYMBIAN_PORTDEFS_H
|
||||
#define SYMBIAN_PORTDEFS_H
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wparentheses"
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wreturn-local-addr"
|
||||
#pragma GCC diagnostic ignored "-Wnarrowing"
|
||||
#endif
|
||||
#include <e32def.h>
|
||||
#if !defined(__IGNORE__E32STD_H__) // TKey type from system header
|
||||
#include <e32std.h> // doesn't meets with lua ones.
|
||||
#endif
|
||||
#if (__GNUC__ && __cplusplus)
|
||||
#pragma GCC diagnostic pop
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
|
||||
#include <libc\math.h>
|
||||
|
||||
/* define pi */
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.14159265358979323846
|
||||
#endif /* M_PI */
|
||||
|
||||
|
||||
// Enable Symbians own datatypes
|
||||
// This is done for two reasons
|
||||
// a) uint is already defined by Symbians libc component
|
||||
// b) Symbian is using its "own" datatyping, and the Scummvm port
|
||||
// should follow this to ensure the best compability possible.
|
||||
typedef unsigned char byte;
|
||||
typedef unsigned char uint8;
|
||||
typedef signed char int8;
|
||||
typedef unsigned short int uint16;
|
||||
typedef signed short int int16;
|
||||
typedef unsigned long int uint32;
|
||||
typedef signed long int int32;
|
||||
typedef signed long long int64;
|
||||
typedef unsigned long long uint64;
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace std
|
||||
{
|
||||
|
||||
using ::size_t;
|
||||
|
||||
} // namespace std
|
||||
#endif
|
||||
|
||||
// Define SCUMMVM_DONT_DEFINE_TYPES to prevent scummsys.h from trying to
|
||||
// re-define those data types.
|
||||
#define SCUMMVM_DONT_DEFINE_TYPES
|
||||
|
||||
// Hide the macro "remove" defined in unistd.h from anywere except where
|
||||
// we explicitly require it. This lets us use the name "remove" in engines.
|
||||
// Must be after including unistd.h .
|
||||
#ifndef SYMBIAN_USE_SYSTEM_REMOVE
|
||||
#undef remove
|
||||
#endif
|
||||
|
||||
#if __cplusplus >= 201103L
|
||||
#define USE_CXX11
|
||||
#define NO_CXX11_INITIALIZER_LIST
|
||||
#define NO_CXX11_NULLPTR_T
|
||||
#endif //USE_CXX11
|
||||
|
||||
#define DISABLE_COMMAND_LINE
|
||||
#define USE_RGB_COLOR
|
||||
#define USE_TINYGL
|
||||
|
||||
#ifndef SYMBIAN_DYNAMIC_PLUGIN
|
||||
#define DETECTION_STATIC
|
||||
#endif //DETECTION_STATIC
|
||||
|
||||
// hack in some tricks to work around not having these fcns for Symbian
|
||||
// and we _really_ don't wanna link with any other windows LIBC library!
|
||||
#if defined(__GCC32__)
|
||||
// taken from public domain http://www.opensource.apple.com/darwinsource/WWDC2004/gcc_legacy-939/gcc/floatlib.c
|
||||
#define SIGNBIT 0x80000000
|
||||
#define HIDDEN (1 << 23)
|
||||
#define EXCESSD 1022
|
||||
#define EXPD(fp) (((fp.l.upper) >> 20) & 0x7FF)
|
||||
#define SIGND(fp) ((fp.l.upper) & SIGNBIT)
|
||||
#define HIDDEND_LL ((long long)1 << 52)
|
||||
#define MANTD_LL(fp) ((fp.ll & (HIDDEND_LL-1)) | HIDDEND_LL)
|
||||
|
||||
union double_long {
|
||||
double d;
|
||||
struct {
|
||||
long upper;
|
||||
unsigned long lower;
|
||||
} l;
|
||||
long long ll;
|
||||
};
|
||||
|
||||
/* convert double float to double int (dfdi) */
|
||||
long long inline
|
||||
scumm_fixdfdi (double a1) { // __fixdfdi (double a1)
|
||||
union double_long dl1;
|
||||
int exp;
|
||||
long long l;
|
||||
|
||||
dl1.d = a1;
|
||||
|
||||
if (!dl1.l.upper && !dl1.l.lower)
|
||||
return (0);
|
||||
|
||||
exp = EXPD (dl1) - EXCESSD - 64;
|
||||
l = MANTD_LL(dl1);
|
||||
|
||||
if (exp > 0) {
|
||||
l = (long long)1<<63;
|
||||
if (!SIGND(dl1))
|
||||
l--;
|
||||
return l;
|
||||
}
|
||||
|
||||
/* shift down until exp = 0 or l = 0 */
|
||||
if (exp < 0 && exp > -64 && l)
|
||||
l >>= -exp;
|
||||
else
|
||||
return (0);
|
||||
|
||||
return (SIGND (dl1) ? -l : l);
|
||||
}
|
||||
|
||||
/* okay, okay: I admit it: I absolutely have _NO_ idea why __fixdfdi does not get linked in by gcc from libgcc.a
|
||||
because I know it's in there: I checked with `ar x _fixdfdi.o libgcc.a` and the symbol is in there, so I'm lost
|
||||
and had to fix it this way. I tried all gcc and ld options I could find: no hope :( If someone can enlighten me:
|
||||
feel free to let me know at sumthinwicked@users.sf.net! Much obliged.
|
||||
PS1. I think for __fixunsdfdi they have made a circumvention by having to add STATICLIBRARY EGCC.LIB
|
||||
PS2. http://gcc.gnu.org/ml/gcc-bugs/2004-01/msg01596.html might have found out the same problem there
|
||||
*/
|
||||
|
||||
#elif defined(__WINS__) // WINS
|
||||
extern "C" int symbian_snprintf(char *text, size_t maxlen, const char *fmt, ...);
|
||||
extern "C" int symbian_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
|
||||
#define snprintf(buf,len,args...) symbian_snprintf(buf,len,args)
|
||||
#define vsnprintf(buf,len,format,valist) symbian_vsnprintf(buf,len,format,valist)
|
||||
|
||||
void* symbian_malloc (size_t _size);
|
||||
|
||||
#define malloc symbian_malloc
|
||||
#else // GCCE and the rest
|
||||
extern "C" int symbian_snprintf(char *text, size_t maxlen, const char *fmt, ...);
|
||||
extern "C" int symbian_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
|
||||
#define snprintf(buf,len,args...) symbian_snprintf(buf,len,args)
|
||||
#define vsnprintf(buf,len,format,valist) symbian_vsnprintf(buf,len,format,valist)
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef signbit
|
||||
#define signbit(x) \
|
||||
((sizeof (x) == sizeof (float)) ? __signbitf(x) \
|
||||
: (sizeof (x) == sizeof (double)) ? __signbit(x) \
|
||||
: __signbitl(x))
|
||||
#endif
|
||||
|
||||
// Functions from openlibm not declared in Symbian math.h
|
||||
extern "C"{
|
||||
float roundf (float x);
|
||||
double nearbyint(double x);
|
||||
double round(double x);
|
||||
long lround(double);
|
||||
int __signbit(double);
|
||||
int __signbitf(float);
|
||||
int __signbitl(long double);
|
||||
float truncf(float);
|
||||
float fminf(float x, float y);
|
||||
float fmaxf(float x, float y);
|
||||
double fmax (double x, double y);
|
||||
long long int strtoll(const char* start, char** end, int radix);
|
||||
}
|
||||
|
||||
|
||||
#ifndef __WINS__
|
||||
// yuv2rgb functions from theorarm
|
||||
extern "C"{
|
||||
#ifdef COMMON_INTTYPES_H // That header has own inttypes declaration.
|
||||
#define HAVE_INTTYPES_H // So we switch off it to avoid conflict declarations.
|
||||
#endif
|
||||
#include <theora/yuv2rgb.h>
|
||||
|
||||
#ifndef COMMON_INTTYPES_H // No conflict.
|
||||
#define COMMON_INTTYPES_H
|
||||
#endif
|
||||
}
|
||||
#define USE_ARM_YUV2RGB_ASM
|
||||
#define USE_ARM_GFX_ASM
|
||||
#define USE_ARM_SMUSH_ASM
|
||||
#define USE_ARM_COSTUME_ASM
|
||||
#endif
|
||||
|
||||
// Symbian bsearch implementation is flawed
|
||||
void *scumm_bsearch(const void *key, const void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));
|
||||
#define bsearch scumm_bsearch
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_FILE
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_fclose
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_fopen
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_unlink
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_getcwd
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_stdout
|
||||
#define FORBIDDEN_SYMBOL_EXCEPTION_stderr
|
||||
|
||||
#if defined(__GNUC__)
|
||||
# define va_copy(dst, src) __builtin_va_copy(dst, src)
|
||||
#endif
|
||||
|
||||
// we cannot include SymbianOS.h everywhere, but this works too (functions code is in SymbianOS.cpp)
|
||||
namespace Symbian {
|
||||
extern char* GetExecutablePath();
|
||||
}
|
||||
#endif
|
@ -1,727 +0,0 @@
|
||||
/*
|
||||
* This is the vsnprintf for scummvm/symbian implementation from the original
|
||||
* snprintf.c, all support functions has been removed and vsnprintf renamed to
|
||||
* symbian_vsnprintf
|
||||
* According to the homepage this function may be licensed under either the
|
||||
* Frontier Artistic License or the GPL.
|
||||
*
|
||||
* snprintf.c - a portable implementation of snprintf
|
||||
*
|
||||
* AUTHOR
|
||||
* Mark Martinec <mark.martinec@ijs.si>, April 1999.
|
||||
*
|
||||
* Copyright 1999, Mark Martinec. All rights reserved.
|
||||
*
|
||||
* TERMS AND CONDITIONS
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the "Frontier Artistic License" which comes
|
||||
* with this Kit.
|
||||
*
|
||||
* 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 Frontier Artistic License for more details.
|
||||
*
|
||||
* You should have received a copy of the Frontier Artistic License
|
||||
* with this Kit in the file named LICENSE.txt .
|
||||
* If not, I'll be glad to provide one.
|
||||
*
|
||||
* FEATURES
|
||||
* - careful adherence to specs regarding flags, field width and precision;
|
||||
* - good performance for large string handling (large format, large
|
||||
* argument or large paddings). Performance is similar to system's sprintf
|
||||
* and in several cases significantly better (make sure you compile with
|
||||
* optimizations turned on, tell the compiler the code is strict ANSI
|
||||
* if necessary to give it more freedom for optimizations);
|
||||
* - return value semantics per ISO/IEC 9899:1999 ("ISO C99");
|
||||
* - written in standard ISO/ANSI C - requires an ANSI C compiler.
|
||||
*
|
||||
* SUPPORTED CONVERSION SPECIFIERS AND DATA TYPES
|
||||
*
|
||||
* This snprintf only supports the following conversion specifiers:
|
||||
* s, c, d, u, o, x, X, p (and synonyms: i, D, U, O - see below)
|
||||
* with flags: '-', '+', ' ', '0' and '#'.
|
||||
* An asterisk is supported for field width as well as precision.
|
||||
*
|
||||
* Length modifiers 'h' (short int), 'l' (long int),
|
||||
* and 'll' (long long int) are supported.
|
||||
* NOTE:
|
||||
* If macro SNPRINTF_LONGLONG_SUPPORT is not defined (default) the
|
||||
* length modifier 'll' is recognized but treated the same as 'l',
|
||||
* which may cause argument value truncation! Defining
|
||||
* SNPRINTF_LONGLONG_SUPPORT requires that your system's sprintf also
|
||||
* handles length modifier 'll'. long long int is a language extension
|
||||
* which may not be portable.
|
||||
*
|
||||
* Conversion of numeric data (conversion specifiers d, u, o, x, X, p)
|
||||
* with length modifiers (none or h, l, ll) is left to the system routine
|
||||
* sprintf, but all handling of flags, field width and precision as well as
|
||||
* c and s conversions is done very carefully by this portable routine.
|
||||
* If a string precision (truncation) is specified (e.g. %.8s) it is
|
||||
* guaranteed the string beyond the specified precision will not be referenced.
|
||||
*
|
||||
* Length modifiers h, l and ll are ignored for c and s conversions (data
|
||||
* types wint_t and wchar_t are not supported).
|
||||
*
|
||||
* The following common synonyms for conversion characters are supported:
|
||||
* - i is a synonym for d
|
||||
* - D is a synonym for ld, explicit length modifiers are ignored
|
||||
* - U is a synonym for lu, explicit length modifiers are ignored
|
||||
* - O is a synonym for lo, explicit length modifiers are ignored
|
||||
* The D, O and U conversion characters are nonstandard, they are supported
|
||||
* for backward compatibility only, and should not be used for new code.
|
||||
*
|
||||
* The following is specifically NOT supported:
|
||||
* - flag ' (thousands' grouping character) is recognized but ignored
|
||||
* - numeric conversion specifiers: f, e, E, g, G and synonym F,
|
||||
* as well as the new a and A conversion specifiers
|
||||
* - length modifier 'L' (long double) and 'q' (quad - use 'll' instead)
|
||||
* - wide character/string conversions: lc, ls, and nonstandard
|
||||
* synonyms C and S
|
||||
* - writeback of converted string length: conversion character n
|
||||
* - the n$ specification for direct reference to n-th argument
|
||||
* - locales
|
||||
*
|
||||
* It is permitted for str_m to be zero, and it is permitted to specify NULL
|
||||
* pointer for resulting string argument if str_m is zero (as per ISO C99).
|
||||
*
|
||||
* The return value is the number of characters which would be generated
|
||||
* for the given input, excluding the trailing null. If this value
|
||||
* is greater or equal to str_m, not all characters from the result
|
||||
* have been stored in str, output bytes beyond the (str_m-1) -th character
|
||||
* are discarded. If str_m is greater than zero it is guaranteed
|
||||
* the resulting string will be null-terminated.
|
||||
*
|
||||
* NOTE that this matches the ISO C99, OpenBSD, and GNU C library 2.1,
|
||||
* but is different from some older and vendor implementations,
|
||||
* and is also different from XPG, XSH5, SUSv2 specifications.
|
||||
* For historical discussion on changes in the semantics and standards
|
||||
* of snprintf see printf(3) man page in the Linux programmers manual.
|
||||
*
|
||||
* Routines asprintf and vasprintf return a pointer (in the ptr argument)
|
||||
* to a buffer sufficiently large to hold the resulting string. This pointer
|
||||
* should be passed to free(3) to release the allocated storage when it is
|
||||
* no longer needed. If sufficient space cannot be allocated, these functions
|
||||
* will return -1 and set ptr to be a NULL pointer. These two routines are a
|
||||
* GNU C library extensions (glibc).
|
||||
*
|
||||
* Routines asnprintf and vasnprintf are similar to asprintf and vasprintf,
|
||||
* yet, like snprintf and vsnprintf counterparts, will write at most str_m-1
|
||||
* characters into the allocated output string, the last character in the
|
||||
* allocated buffer then gets the terminating null. If the formatted string
|
||||
* length (the return value) is greater than or equal to the str_m argument,
|
||||
* the resulting string was truncated and some of the formatted characters
|
||||
* were discarded. These routines present a handy way to limit the amount
|
||||
* of allocated memory to some sane value.
|
||||
*
|
||||
* AVAILABILITY
|
||||
* http://www.ijs.si/software/snprintf/
|
||||
*
|
||||
* REVISION HISTORY
|
||||
* 1999-04 V0.9 Mark Martinec
|
||||
* - initial version, some modifications after comparing printf
|
||||
* man pages for Digital Unix 4.0, Solaris 2.6 and HPUX 10,
|
||||
* and checking how Perl handles sprintf (differently!);
|
||||
* 1999-04-09 V1.0 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - added main test program, fixed remaining inconsistencies,
|
||||
* added optional (long long int) support;
|
||||
* 1999-04-12 V1.1 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - support the 'p' conversion (pointer to void);
|
||||
* - if a string precision is specified
|
||||
* make sure the string beyond the specified precision
|
||||
* will not be referenced (e.g. by strlen);
|
||||
* 1999-04-13 V1.2 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - support synonyms %D=%ld, %U=%lu, %O=%lo;
|
||||
* - speed up the case of long format string with few conversions;
|
||||
* 1999-06-30 V1.3 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - fixed runaway loop (eventually crashing when str_l wraps
|
||||
* beyond 2^31) while copying format string without
|
||||
* conversion specifiers to a buffer that is too short
|
||||
* (thanks to Edwin Young <edwiny@autonomy.com> for
|
||||
* spotting the problem);
|
||||
* - added macros PORTABLE_SNPRINTF_VERSION_(MAJOR|MINOR)
|
||||
* to snprintf.h
|
||||
* 2000-02-14 V2.0 (never released) Mark Martinec <mark.martinec@ijs.si>
|
||||
* - relaxed license terms: The Artistic License now applies.
|
||||
* You may still apply the GNU GENERAL PUBLIC LICENSE
|
||||
* as was distributed with previous versions, if you prefer;
|
||||
* - changed REVISION HISTORY dates to use ISO 8601 date format;
|
||||
* - added vsnprintf (patch also independently proposed by
|
||||
* Caolan McNamara 2000-05-04, and Keith M Willenson 2000-06-01)
|
||||
* 2000-06-27 V2.1 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - removed POSIX check for str_m<1; value 0 for str_m is
|
||||
* allowed by ISO C99 (and GNU C library 2.1) - (pointed out
|
||||
* on 2000-05-04 by Caolan McNamara, caolan@ csn dot ul dot ie).
|
||||
* Besides relaxed license this change in standards adherence
|
||||
* is the main reason to bump up the major version number;
|
||||
* - added nonstandard routines asnprintf, vasnprintf, asprintf,
|
||||
* vasprintf that dynamically allocate storage for the
|
||||
* resulting string; these routines are not compiled by default,
|
||||
* see comments where NEED_V?ASN?PRINTF macros are defined;
|
||||
* - autoconf contributed by Caolan McNamara
|
||||
* 2000-10-06 V2.2 Mark Martinec <mark.martinec@ijs.si>
|
||||
* - BUG FIX: the %c conversion used a temporary variable
|
||||
* that was no longer in scope when referenced,
|
||||
* possibly causing incorrect resulting character;
|
||||
* - BUG FIX: make precision and minimal field width unsigned
|
||||
* to handle huge values (2^31 <= n < 2^32) correctly;
|
||||
* also be more careful in the use of signed/unsigned/size_t
|
||||
* internal variables - probably more careful than many
|
||||
* vendor implementations, but there may still be a case
|
||||
* where huge values of str_m, precision or minimal field
|
||||
* could cause incorrect behaviour;
|
||||
* - use separate variables for signed/unsigned arguments,
|
||||
* and for short/int, long, and long long argument lengths
|
||||
* to avoid possible incompatibilities on certain
|
||||
* computer architectures. Also use separate variable
|
||||
* arg_sign to hold sign of a numeric argument,
|
||||
* to make code more transparent;
|
||||
* - some fiddling with zero padding and "0x" to make it
|
||||
* Linux compatible;
|
||||
* - systematically use macros fast_memcpy and fast_memset
|
||||
* instead of case-by-case hand optimization; determine some
|
||||
* breakeven string lengths for different architectures;
|
||||
* - terminology change: 'format' -> 'conversion specifier',
|
||||
* 'C9x' -> 'ISO/IEC 9899:1999 ("ISO C99")',
|
||||
* 'alternative form' -> 'alternate form',
|
||||
* 'data type modifier' -> 'length modifier';
|
||||
* - several comments rephrased and new ones added;
|
||||
* - make compiler not complain about 'credits' defined but
|
||||
* not used;
|
||||
*/
|
||||
/* ============================================= */
|
||||
/* NO USER SERVICABLE PARTS FOLLOWING THIS POINT */
|
||||
/* ============================================= */
|
||||
|
||||
#define PORTABLE_SNPRINTF_VERSION_MAJOR 2
|
||||
#define PORTABLE_SNPRINTF_VERSION_MINOR 2
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#ifdef isdigit
|
||||
#undef isdigit
|
||||
#endif
|
||||
#define isdigit(c) ((c) >= '0' && (c) <= '9')
|
||||
|
||||
#ifndef breakeven_point
|
||||
# define breakeven_point 6 /* some reasonable one-size-fits-all value */
|
||||
#endif
|
||||
|
||||
#define fast_memcpy(d,s,n) \
|
||||
{ size_t nn = (size_t)(n); \
|
||||
if (nn >= breakeven_point) memcpy((d), (s), nn); \
|
||||
else if (nn > 0) { /* proc call overhead is worth only for large strings*/\
|
||||
char *dd; const char *ss; \
|
||||
for (ss=(s), dd=(d); nn>0; nn--) *dd++ = *ss++; } }
|
||||
|
||||
#define fast_memset(d,c,n) \
|
||||
{ size_t nn = (size_t)(n); \
|
||||
if (nn >= breakeven_point) memset((d), (int)(c), nn); \
|
||||
else if (nn > 0) { /* proc call overhead is worth only for large strings*/\
|
||||
char *dd; const int cc=(int)(c); \
|
||||
for (dd=(d); nn>0; nn--) *dd++ = cc; } }
|
||||
|
||||
|
||||
/* declarations */
|
||||
|
||||
static char credits[] = "\n\
|
||||
@(#)snprintf.c, v2.2: Mark Martinec, <mark.martinec@ijs.si>\n\
|
||||
@(#)snprintf.c, v2.2: Copyright 1999, Mark Martinec. Frontier Artistic License applies.\n\
|
||||
@(#)snprintf.c, v2.2: http://www.ijs.si/software/snprintf/\n";
|
||||
int symbian_vsnprintf(char *str, size_t str_m, const char *fmt, va_list ap) {
|
||||
|
||||
size_t str_l = 0;
|
||||
const char *p = fmt;
|
||||
|
||||
/* In contrast with POSIX, the ISO C99 now says
|
||||
* that str can be NULL and str_m can be 0.
|
||||
* This is more useful than the old: if (str_m < 1) return -1; */
|
||||
|
||||
if (!p) p = "";
|
||||
while (*p) {
|
||||
if (*p != '%') {
|
||||
/* if (str_l < str_m) str[str_l++] = *p++; -- this would be sufficient */
|
||||
/* but the following code achieves better performance for cases
|
||||
* where format string is long and contains few conversions */
|
||||
const char *q = strchr(p + 1, '%');
|
||||
size_t n = !q ? strlen(p) : (q - p);
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memcpy(str + str_l, p, (n > avail ? avail : n));
|
||||
}
|
||||
p += n;
|
||||
str_l += n;
|
||||
} else {
|
||||
const char *starting_p;
|
||||
size_t min_field_width = 0, precision = 0;
|
||||
int zero_padding = 0, precision_specified = 0, justify_left = 0;
|
||||
int alternate_form = 0, force_sign = 0;
|
||||
int space_for_positive = 1; /* If both the ' ' and '+' flags appear,
|
||||
the ' ' flag should be ignored. */
|
||||
char length_modifier = '\0'; /* allowed values: \0, h, l, L */
|
||||
char tmp[32];/* temporary buffer for simple numeric->string conversion */
|
||||
|
||||
const char *str_arg; /* string address in case of string argument */
|
||||
size_t str_arg_l; /* natural field width of arg without padding
|
||||
and sign */
|
||||
unsigned char uchar_arg;
|
||||
/* unsigned char argument value - only defined for c conversion.
|
||||
N.B. standard explicitly states the char argument for
|
||||
the c conversion is unsigned */
|
||||
|
||||
size_t number_of_zeros_to_pad = 0;
|
||||
/* number of zeros to be inserted for numeric conversions
|
||||
as required by the precision or minimal field width */
|
||||
|
||||
size_t zero_padding_insertion_ind = 0;
|
||||
/* index into tmp where zero padding is to be inserted */
|
||||
|
||||
char fmt_spec = '\0';
|
||||
/* current conversion specifier character */
|
||||
|
||||
str_arg = credits;/* just to make compiler happy (defined but not used)*/
|
||||
str_arg = NULL;
|
||||
starting_p = p;
|
||||
p++; /* skip '%' */
|
||||
/* parse flags */
|
||||
while (*p == '0' || *p == '-' || *p == '+' ||
|
||||
*p == ' ' || *p == '#' || *p == '\'') {
|
||||
switch (*p) {
|
||||
case '0':
|
||||
zero_padding = 1;
|
||||
break;
|
||||
case '-':
|
||||
justify_left = 1;
|
||||
break;
|
||||
case '+':
|
||||
force_sign = 1;
|
||||
space_for_positive = 0;
|
||||
break;
|
||||
case ' ':
|
||||
force_sign = 1;
|
||||
/* If both the ' ' and '+' flags appear, the ' ' flag should be ignored */
|
||||
break;
|
||||
case '#':
|
||||
alternate_form = 1;
|
||||
break;
|
||||
case '\'':
|
||||
break;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
/* If the '0' and '-' flags both appear, the '0' flag should be ignored. */
|
||||
|
||||
/* parse field width */
|
||||
if (*p == '*') {
|
||||
int j;
|
||||
p++;
|
||||
j = va_arg(ap, int);
|
||||
if (j >= 0) min_field_width = j;
|
||||
else { min_field_width = -j; justify_left = 1; }
|
||||
} else if (isdigit((int)(*p))) {
|
||||
/* size_t could be wider than unsigned int;
|
||||
make sure we treat argument like common implementations do */
|
||||
unsigned int uj = *p++ - '0';
|
||||
while (isdigit((int)(*p))) uj = 10 * uj + (unsigned int)(*p++ - '0');
|
||||
min_field_width = uj;
|
||||
}
|
||||
/* parse precision */
|
||||
if (*p == '.') {
|
||||
p++;
|
||||
precision_specified = 1;
|
||||
if (*p == '*') {
|
||||
int j = va_arg(ap, int);
|
||||
p++;
|
||||
if (j >= 0) precision = j;
|
||||
else {
|
||||
precision_specified = 0;
|
||||
precision = 0;
|
||||
/* NOTE:
|
||||
* Solaris 2.6 man page claims that in this case the precision
|
||||
* should be set to 0. Digital Unix 4.0, HPUX 10 and BSD man page
|
||||
* claim that this case should be treated as unspecified precision,
|
||||
* which is what we do here.
|
||||
*/
|
||||
}
|
||||
} else if (isdigit((int)(*p))) {
|
||||
/* size_t could be wider than unsigned int;
|
||||
make sure we treat argument like common implementations do */
|
||||
unsigned int uj = *p++ - '0';
|
||||
while (isdigit((int)(*p))) uj = 10 * uj + (unsigned int)(*p++ - '0');
|
||||
precision = uj;
|
||||
}
|
||||
}
|
||||
/* parse 'h', 'l' and 'll' length modifiers */
|
||||
if (*p == 'h' || *p == 'l') {
|
||||
length_modifier = *p;
|
||||
p++;
|
||||
if (length_modifier == 'l' && *p == 'l') { /* double l = long long */
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
length_modifier = '2'; /* double l encoded as '2' */
|
||||
#else
|
||||
length_modifier = 'l'; /* treat it as a single 'l' */
|
||||
#endif
|
||||
p++;
|
||||
}
|
||||
}
|
||||
fmt_spec = *p;
|
||||
/* common synonyms: */
|
||||
switch (fmt_spec) {
|
||||
case 'i':
|
||||
fmt_spec = 'd';
|
||||
break;
|
||||
case 'D':
|
||||
fmt_spec = 'd';
|
||||
length_modifier = 'l';
|
||||
break;
|
||||
case 'U':
|
||||
fmt_spec = 'u';
|
||||
length_modifier = 'l';
|
||||
break;
|
||||
case 'O':
|
||||
fmt_spec = 'o';
|
||||
length_modifier = 'l';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
/* get parameter value, do initial processing */
|
||||
switch (fmt_spec) {
|
||||
case '%': /* % behaves similar to 's' regarding flags and field widths */
|
||||
case 'c': /* c behaves similar to 's' regarding flags and field widths */
|
||||
case 's':
|
||||
length_modifier = '\0'; /* wint_t and wchar_t not supported */
|
||||
/* the result of zero padding flag with non-numeric conversion specifier*/
|
||||
/* is undefined. Solaris and HPUX 10 does zero padding in this case, */
|
||||
/* Digital Unix and Linux does not. */
|
||||
zero_padding = 0; /* turn zero padding off for string conversions */
|
||||
str_arg_l = 1;
|
||||
switch (fmt_spec) {
|
||||
case '%':
|
||||
str_arg = p;
|
||||
break;
|
||||
case 'c': {
|
||||
int j = va_arg(ap, int);
|
||||
uchar_arg = (unsigned char) j; /* standard demands unsigned char */
|
||||
str_arg = (const char *) & uchar_arg;
|
||||
break;
|
||||
}
|
||||
case 's':
|
||||
str_arg = va_arg(ap, const char *);
|
||||
if (!str_arg) str_arg_l = 0;
|
||||
/* make sure not to address string beyond the specified precision !!! */
|
||||
else if (!precision_specified) str_arg_l = strlen(str_arg);
|
||||
/* truncate string if necessary as requested by precision */
|
||||
else if (precision == 0) str_arg_l = 0;
|
||||
else {
|
||||
/* memchr on HP does not like n > 2^31 !!! */
|
||||
const char *q = (const char*) memchr(str_arg, '\0',
|
||||
precision <= 0x7fffffff ? precision : 0x7fffffff);
|
||||
str_arg_l = !q ? precision : (q - str_arg);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 'd':
|
||||
case 'u':
|
||||
case 'o':
|
||||
case 'x':
|
||||
case 'X':
|
||||
case 'p': {
|
||||
/* NOTE: the u, o, x, X and p conversion specifiers imply
|
||||
the value is unsigned; d implies a signed value */
|
||||
|
||||
int arg_sign = 0;
|
||||
/* 0 if numeric argument is zero (or if pointer is NULL for 'p'),
|
||||
+1 if greater than zero (or nonzero for unsigned arguments),
|
||||
-1 if negative (unsigned argument is never negative) */
|
||||
|
||||
int int_arg = 0;
|
||||
unsigned int uint_arg = 0;
|
||||
/* only defined for length modifier h, or for no length modifiers */
|
||||
|
||||
long int long_arg = 0;
|
||||
unsigned long int ulong_arg = 0;
|
||||
/* only defined for length modifier l */
|
||||
|
||||
void *ptr_arg = NULL;
|
||||
/* pointer argument value -only defined for p conversion */
|
||||
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
long long int long_long_arg = 0;
|
||||
unsigned long long int ulong_long_arg = 0;
|
||||
/* only defined for length modifier ll */
|
||||
#endif
|
||||
if (fmt_spec == 'p') {
|
||||
/* HPUX 10: An l, h, ll or L before any other conversion character
|
||||
* (other than d, i, u, o, x, or X) is ignored.
|
||||
* Digital Unix:
|
||||
* not specified, but seems to behave as HPUX does.
|
||||
* Solaris: If an h, l, or L appears before any other conversion
|
||||
* specifier (other than d, i, u, o, x, or X), the behavior
|
||||
* is undefined. (Actually %hp converts only 16-bits of address
|
||||
* and %llp treats address as 64-bit data which is incompatible
|
||||
* with (void *) argument on a 32-bit system).
|
||||
*/
|
||||
length_modifier = '\0';
|
||||
ptr_arg = va_arg(ap, void *);
|
||||
if (ptr_arg != NULL) arg_sign = 1;
|
||||
} else if (fmt_spec == 'd') { /* signed */
|
||||
switch (length_modifier) {
|
||||
case '\0':
|
||||
case 'h':
|
||||
/* It is non-portable to specify a second argument of char or short
|
||||
* to va_arg, because arguments seen by the called function
|
||||
* are not char or short. C converts char and short arguments
|
||||
* to int before passing them to a function.
|
||||
*/
|
||||
int_arg = va_arg(ap, int);
|
||||
if (int_arg > 0) arg_sign = 1;
|
||||
else if (int_arg < 0) arg_sign = -1;
|
||||
break;
|
||||
case 'l':
|
||||
long_arg = va_arg(ap, long int);
|
||||
if (long_arg > 0) arg_sign = 1;
|
||||
else if (long_arg < 0) arg_sign = -1;
|
||||
break;
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
case '2':
|
||||
long_long_arg = va_arg(ap, long long int);
|
||||
if (long_long_arg > 0) arg_sign = 1;
|
||||
else if (long_long_arg < 0) arg_sign = -1;
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
} else { /* unsigned */
|
||||
switch (length_modifier) {
|
||||
case '\0':
|
||||
case 'h':
|
||||
uint_arg = va_arg(ap, unsigned int);
|
||||
if (uint_arg) arg_sign = 1;
|
||||
break;
|
||||
case 'l':
|
||||
ulong_arg = va_arg(ap, unsigned long int);
|
||||
if (ulong_arg) arg_sign = 1;
|
||||
break;
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
case '2':
|
||||
ulong_long_arg = va_arg(ap, unsigned long long int);
|
||||
if (ulong_long_arg) arg_sign = 1;
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
str_arg = tmp;
|
||||
str_arg_l = 0;
|
||||
/* NOTE:
|
||||
* For d, i, u, o, x, and X conversions, if precision is specified,
|
||||
* the '0' flag should be ignored. This is so with Solaris 2.6,
|
||||
* Digital UNIX 4.0, HPUX 10, Linux, FreeBSD, NetBSD; but not with Perl.
|
||||
*/
|
||||
if (precision_specified) zero_padding = 0;
|
||||
if (fmt_spec == 'd') {
|
||||
if (force_sign && arg_sign >= 0)
|
||||
tmp[str_arg_l++] = space_for_positive ? ' ' : '+';
|
||||
/* leave negative numbers for sprintf to handle,
|
||||
to avoid handling tricky cases like (short int)(-32768) */
|
||||
} else if (alternate_form) {
|
||||
if (arg_sign != 0 && (fmt_spec == 'x' || fmt_spec == 'X'))
|
||||
{ tmp[str_arg_l++] = '0'; tmp[str_arg_l++] = fmt_spec; }
|
||||
/* alternate form should have no effect for p conversion, but ... */
|
||||
}
|
||||
zero_padding_insertion_ind = str_arg_l;
|
||||
if (!precision_specified) precision = 1; /* default precision is 1 */
|
||||
if (precision == 0 && arg_sign == 0
|
||||
) {
|
||||
/* converted to null string */
|
||||
/* When zero value is formatted with an explicit precision 0,
|
||||
the resulting formatted string is empty (d, i, u, o, x, X, p). */
|
||||
} else {
|
||||
char f[5];
|
||||
int f_l = 0;
|
||||
f[f_l++] = '%'; /* construct a simple format string for sprintf */
|
||||
if (!length_modifier) { } else if (length_modifier == '2') { f[f_l++] = 'l'; f[f_l++] = 'l'; } else f[f_l++] = length_modifier;
|
||||
f[f_l++] = fmt_spec;
|
||||
f[f_l++] = '\0';
|
||||
if (fmt_spec == 'p') str_arg_l += sprintf(tmp + str_arg_l, f, ptr_arg);
|
||||
else if (fmt_spec == 'd') { /* signed */
|
||||
switch (length_modifier) {
|
||||
case '\0':
|
||||
case 'h':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, int_arg);
|
||||
break;
|
||||
case 'l':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, long_arg);
|
||||
break;
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
case '2':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, long_long_arg);
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
} else { /* unsigned */
|
||||
switch (length_modifier) {
|
||||
case '\0':
|
||||
case 'h':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, uint_arg);
|
||||
break;
|
||||
case 'l':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, ulong_arg);
|
||||
break;
|
||||
#ifdef SNPRINTF_LONGLONG_SUPPORT
|
||||
case '2':
|
||||
str_arg_l += sprintf(tmp + str_arg_l, f, ulong_long_arg);
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
/* include the optional minus sign and possible "0x"
|
||||
in the region before the zero padding insertion point */
|
||||
if (zero_padding_insertion_ind < str_arg_l &&
|
||||
tmp[zero_padding_insertion_ind] == '-') {
|
||||
zero_padding_insertion_ind++;
|
||||
}
|
||||
if (zero_padding_insertion_ind + 1 < str_arg_l &&
|
||||
tmp[zero_padding_insertion_ind] == '0' &&
|
||||
(tmp[zero_padding_insertion_ind+1] == 'x' ||
|
||||
tmp[zero_padding_insertion_ind+1] == 'X')) {
|
||||
zero_padding_insertion_ind += 2;
|
||||
}
|
||||
}
|
||||
{
|
||||
size_t num_of_digits = str_arg_l - zero_padding_insertion_ind;
|
||||
if (alternate_form && fmt_spec == 'o'
|
||||
/* unless zero is already the first character */
|
||||
&& !(zero_padding_insertion_ind < str_arg_l
|
||||
&& tmp[zero_padding_insertion_ind] == '0')
|
||||
) { /* assure leading zero for alternate-form octal numbers */
|
||||
if (!precision_specified || precision < num_of_digits + 1) {
|
||||
/* precision is increased to force the first character to be zero,
|
||||
except if a zero value is formatted with an explicit precision
|
||||
of zero */
|
||||
precision = num_of_digits + 1;
|
||||
precision_specified = 1;
|
||||
}
|
||||
}
|
||||
/* zero padding to specified precision? */
|
||||
if (num_of_digits < precision)
|
||||
number_of_zeros_to_pad = precision - num_of_digits;
|
||||
}
|
||||
/* zero padding to specified minimal field width? */
|
||||
if (!justify_left && zero_padding) {
|
||||
int n = min_field_width - (str_arg_l + number_of_zeros_to_pad);
|
||||
if (n > 0) number_of_zeros_to_pad += n;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default: /* unrecognized conversion specifier, keep format string as-is*/
|
||||
zero_padding = 0; /* turn zero padding off for non-numeric convers. */
|
||||
justify_left = 1;
|
||||
min_field_width = 0; /* reset flags */
|
||||
/* discard the unrecognized conversion, just keep *
|
||||
* the unrecognized conversion character */
|
||||
str_arg = p;
|
||||
str_arg_l = 0;
|
||||
if (*p) str_arg_l++; /* include invalid conversion specifier unchanged
|
||||
if not at end-of-string */
|
||||
break;
|
||||
}
|
||||
if (*p) p++; /* step over the just processed conversion specifier */
|
||||
/* insert padding to the left as requested by min_field_width;
|
||||
this does not include the zero padding in case of numerical conversions*/
|
||||
if (!justify_left) { /* left padding with blank or zero */
|
||||
int n = min_field_width - (str_arg_l + number_of_zeros_to_pad);
|
||||
if (n > 0) {
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memset(str + str_l, (zero_padding ? '0' : ' '), (n > avail ? avail : n));
|
||||
}
|
||||
str_l += n;
|
||||
}
|
||||
}
|
||||
/* zero padding as requested by the precision or by the minimal field width
|
||||
* for numeric conversions required? */
|
||||
if (number_of_zeros_to_pad <= 0) {
|
||||
/* will not copy first part of numeric right now, *
|
||||
* force it to be copied later in its entirety */
|
||||
zero_padding_insertion_ind = 0;
|
||||
} else {
|
||||
/* insert first part of numerics (sign or '0x') before zero padding */
|
||||
int n = zero_padding_insertion_ind;
|
||||
if (n > 0) {
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memcpy(str + str_l, str_arg, (n > avail ? avail : n));
|
||||
}
|
||||
str_l += n;
|
||||
}
|
||||
/* insert zero padding as requested by the precision or min field width */
|
||||
n = number_of_zeros_to_pad;
|
||||
if (n > 0) {
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memset(str + str_l, '0', (n > avail ? avail : n));
|
||||
}
|
||||
str_l += n;
|
||||
}
|
||||
}
|
||||
/* insert formatted string
|
||||
* (or as-is conversion specifier for unknown conversions) */
|
||||
{
|
||||
int n = str_arg_l - zero_padding_insertion_ind;
|
||||
if (n > 0) {
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memcpy(str + str_l, str_arg + zero_padding_insertion_ind,
|
||||
(n > avail ? avail : n));
|
||||
}
|
||||
str_l += n;
|
||||
}
|
||||
}
|
||||
/* insert right padding */
|
||||
if (justify_left) { /* right blank padding to the field width */
|
||||
int n = min_field_width - (str_arg_l + number_of_zeros_to_pad);
|
||||
if (n > 0) {
|
||||
if (str_l < str_m) {
|
||||
size_t avail = str_m - str_l;
|
||||
fast_memset(str + str_l, ' ', (n > avail ? avail : n));
|
||||
}
|
||||
str_l += n;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (str_m > 0) { /* make sure the string is null-terminated
|
||||
even at the expense of overwriting the last character
|
||||
(shouldn't happen, but just in case) */
|
||||
str[str_l <= str_m-1 ? str_l : str_m-1] = '\0';
|
||||
}
|
||||
/* Return the number of characters formatted (excluding trailing null
|
||||
* character), that is, the number of characters that would have been
|
||||
* written to the buffer if it were large enough.
|
||||
*
|
||||
* The value of str_l should be returned, but str_l is of unsigned type
|
||||
* size_t, and snprintf is int, possibly leading to an undetected
|
||||
* integer overflow, resulting in a negative return value, which is illegal.
|
||||
* Both XSH5 and ISO C99 (at least the draft) are silent on this issue.
|
||||
* Should errno be set to EOVERFLOW and EOF returned in this case???
|
||||
*/
|
||||
return (int) str_l;
|
||||
}
|
||||
|
||||
int symbian_snprintf(char *text, size_t maxlen, const char *fmt, ...) {
|
||||
va_list ap;
|
||||
int retval;
|
||||
|
||||
va_start(ap, fmt);
|
||||
retval = symbian_vsnprintf(text, maxlen, fmt, ap);
|
||||
va_end(ap);
|
||||
|
||||
return retval;
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from prj_generator import create_mmps
|
||||
from mmp_gen import create_engine_mmps
|
||||
from build_apps import build_apps
|
||||
from create_installers import create_installers
|
||||
from datetime import datetime
|
||||
import time
|
||||
|
||||
from piper import build_mmp
|
||||
from parse_codecs import parse_codecs
|
||||
from parse_base import parse_base
|
||||
from common_names import *
|
||||
from scummvm_hrh import Generate_ScummVm_hrh
|
||||
from parse_lua import parse_lua
|
||||
from parse_gamedata import parse_gamedata
|
||||
from pkg_generator import create_pkgs
|
||||
from source_patcher import fix_src
|
||||
|
||||
def minimal_whitelist(engine):
|
||||
data = "#ifdef SCUMMVM_PT_1\nscummvm_base.mmp\nscummvm_codecs.mmp\n%s\n#endif // SCUMMVM_PT_%s\n" %engine
|
||||
SafeWriteFile(os.path.join(mmps, whitelist), data)
|
||||
|
||||
def run(build, pkgs, only_begotten_engine = None):
|
||||
log = "Build started at: %s\n" %time.ctime()
|
||||
SafeWriteFile(build_log, log)
|
||||
SafeWriteFile(build_err, '')
|
||||
Generate_ScummVm_hrh(build)
|
||||
create_mmps(build, pkgs)
|
||||
create_engine_mmps(build)
|
||||
parse_codecs(pkgs)
|
||||
parse_base()
|
||||
parse_lua()
|
||||
parse_gamedata(build, pkgs)
|
||||
create_pkgs(build, pkgs)
|
||||
fix_src()
|
||||
|
||||
SafeWriteFile(build_log, log, 'a')
|
||||
if only_begotten_engine:
|
||||
minimal_whitelist(build_log)
|
||||
build_mmp(only_begotten_engine)
|
||||
log = "Build engines ended at: %s\n" %time.ctime()
|
||||
SafeWriteFile(build_log, log, 'a')
|
||||
|
||||
build_apps(pkgs)
|
||||
create_installers(pkgs)
|
||||
|
@ -1,103 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020-2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os, subprocess, Queue, threading, errno, time
|
||||
import multiprocessing as mp
|
||||
|
||||
from common_names import *
|
||||
|
||||
# Workaround for "threading bug in strptime"
|
||||
# See - https://stackoverflow.com/questions/32245560/module-object-has-no-attribute-strptime-with-several-threads-python/46401422
|
||||
import _strptime
|
||||
|
||||
prj_template = "PRJ_MMPFILES\n%s"
|
||||
prj_path = "paralell_build"
|
||||
|
||||
def thread_func(q, plats):
|
||||
while True:
|
||||
fileName = q.get()
|
||||
if fileName is None: # EOF?
|
||||
return
|
||||
pth = os.path.join(prj_path, plats)
|
||||
pth = os.path.join(pth, fileName)
|
||||
try:
|
||||
os.makedirs(pth)
|
||||
except OSError as e:
|
||||
if e.errno == errno.EEXIST:
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
fname = os.path.join(plats, fileName)
|
||||
fname = os.path.join("..", fname)
|
||||
fname = os.path.join("..", fname)
|
||||
fname = os.path.join("..", fname) # Point to mmp file in port specific folder.
|
||||
tmp = os.path.join(pth, "bld.inf")
|
||||
SafeWriteFile(tmp, prj_template %fname)
|
||||
|
||||
cmd = subprocess.Popen('bldmake bldfiles', stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=pth, shell=True)
|
||||
out, err = cmd.communicate()
|
||||
# Clean build directory from previous build.
|
||||
cmd = subprocess.Popen('abld reallyclean gcce urel', cwd=pth, shell=True)
|
||||
cmd.communicate()
|
||||
|
||||
# Needed because datetime.now() returns the same time for every call.
|
||||
start = time.strftime("%H:%M:%S")
|
||||
cmd1 = subprocess.Popen('abld build gcce urel', stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=pth, shell=True)
|
||||
out1, err1 = cmd1.communicate()
|
||||
|
||||
end = time.strftime("%H:%M:%S" )
|
||||
start_dt = datetime.strptime(start, '%H:%M:%S')
|
||||
end_dt = datetime.strptime(end, '%H:%M:%S')
|
||||
diff = (end_dt - start_dt)
|
||||
|
||||
out = out + out1
|
||||
err = err + err1
|
||||
# I hope it correctly stores logs in parallel tasks.
|
||||
# After cmd.communicate() we have ugly 'crcrlf' line endings.
|
||||
AppendToFile(build_log, out.replace(u"\r", u""))
|
||||
AppendToFile(build_err, err.replace(u"\r", u""))
|
||||
AppendToFile(build_time, "Target %s build time: %s.\n" %(fileName, str(diff)) )
|
||||
print "Target %s done!" %fileName
|
||||
|
||||
def build_apps(plats):
|
||||
fileNames = os.listdir(plats)
|
||||
fileNames = [x for x in fileNames if ".mmp" in x]
|
||||
|
||||
q = Queue.Queue()
|
||||
for fileName in fileNames:
|
||||
q.put(fileName)
|
||||
|
||||
t_count = mp.cpu_count() + 2
|
||||
if t_count > q.qsize():
|
||||
t_count = q.qsize()
|
||||
|
||||
print "Queue size: %s" %q.qsize()
|
||||
print "Thread count: %s" %t_count
|
||||
threads = [threading.Thread(target=thread_func, args=(q, plats)) for i in range(t_count)]
|
||||
for thread in threads:
|
||||
thread.start()
|
||||
q.put(None) # One EOF marker for each thread.
|
||||
for thread in threads:
|
||||
thread.join()
|
||||
|
||||
if __name__ == "__main__":
|
||||
build_apps(plats = "S60v3")
|
@ -1,73 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
from datetime import datetime
|
||||
|
||||
mmps = "mmp"
|
||||
pipe = "pipe"
|
||||
|
||||
timestamp = datetime.now().strftime('_%H_%M_%d_%m_%Y')
|
||||
|
||||
build_log = "ScummVM_build%s.log" %timestamp
|
||||
build_err = "ScummVM_build%s.err" %timestamp
|
||||
build_time = "ScummVM_build_time%s.log" %timestamp
|
||||
|
||||
whitelist = 'whitelist.txt'
|
||||
|
||||
build = 'full'
|
||||
# build = 'release'
|
||||
|
||||
#sis package version
|
||||
sis_major_version, sis_minor_version, sis_build_number = 2, '03', 0
|
||||
|
||||
|
||||
uids = ("0xA0000657", "0xA0000658", "0x2006FE7C", "0x2006FE7D", "0x2006FE7E", "0x2006FE7F", "0x2006FE80", "0x2006FE81", "0x2006FE82")
|
||||
# Test uids 3
|
||||
uids_tests = ("0xAA000657", "0xAA000658", "0xA006FE7C", "0xA006FE7D", "0xA006FE7E", "0xA006FE7F", "0xA006FE80", "0xA006FE81", "0xA006FE82")
|
||||
|
||||
def get_UIDs(build):
|
||||
if build == 'full':
|
||||
return uids_tests
|
||||
return uids
|
||||
|
||||
def SafeWriteFile(path, data, mode = 'w'):
|
||||
"""Save list elements as strings. Save strings as is"""
|
||||
with open(path, mode) as f:
|
||||
if type(data) is list:
|
||||
for s in data:
|
||||
f.write(s + '\n')
|
||||
else:
|
||||
f.write(data)
|
||||
|
||||
def AppendToFile(path, data):
|
||||
SafeWriteFile(path, data, mode = 'a')
|
||||
|
||||
active_config = ("DISABLE_NUKED_OPL", "USE_A52", "USE_MPEG2", "USE_BINK", "USE_THEORADEC", "USE_TINYGL",
|
||||
"ENABLE_VKEYBD")
|
||||
#activate USE_SCALERS USE_ARM_SCALER_ASM USE_TTS USE_SPEECH_DISPATCHER USE_CLOUD USE_LIBCURL
|
||||
# USE_SDL_NET USE_DISCORD USE_UPDATES
|
||||
#LUA disabled by default due to conflicting declaration of struct TKey in lobject.h and system header e32std.h
|
||||
disabled_config = ("USE_ALSA", "ENABLE_OPL2LPT", "USE_SCALERS", "USE_ARM_SCALER_ASM",
|
||||
"USE_HQ_SCALERS", "USE_NASM", "USE_ELF_LOADER", "USE_SDL2", "USE_FLUIDSYNTH", "USE_TTS", "USE_SPEECH_DISPATCHER",
|
||||
"USE_CLOUD", "USE_LIBCURL", "USE_SDL_NET", "USE_OPENGL", "USE_DISCORD", "USE_LINUXCD", "ENABLE_EVENTRECORDER",
|
||||
"USE_UPDATES", "USE_LUA")
|
||||
|
||||
if __name__ == "__main__":
|
||||
print "This script holds together data used multiple modules."
|
@ -1,40 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020-2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os, subprocess
|
||||
from common_names import *
|
||||
|
||||
|
||||
def makesis(pkg, path):
|
||||
print "pkg: %s" %pkg
|
||||
cmd = subprocess.Popen("makesis -v %s" %pkg, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=path, shell=True)
|
||||
out, err = cmd.communicate()
|
||||
#After cmd.communicate() we have ugly 'crcrlf' line endings
|
||||
AppendToFile(build_log, out.replace(u"\r", u""))
|
||||
AppendToFile(build_err, err.replace(u"\r", u""))
|
||||
|
||||
def create_installers(path):
|
||||
t = os.listdir(path)
|
||||
[makesis(pkg, path) for pkg in t if ".pkg" in pkg]
|
||||
|
||||
if __name__ == "__main__":
|
||||
create_installers(path = "S60v3")
|
@ -1,348 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os, shutil
|
||||
from collections import defaultdict as defdict
|
||||
from common_names import *
|
||||
|
||||
|
||||
#ignore unfinished engines in release build
|
||||
def CheckForRelease(line_):
|
||||
if 'no' in line_:
|
||||
return build != 'release'
|
||||
else:
|
||||
return True
|
||||
|
||||
|
||||
# This function is frozen! Don't edit!
|
||||
def processengine(path):
|
||||
with open(os.path.join(path, "configure.engine")) as f:
|
||||
ff = f.readlines()
|
||||
ff = [n for n in ff if not n.startswith('# ')] #exclude comments
|
||||
ff = [n for n in ff if len(n) > 2]
|
||||
ff = [n.split('"', 2) for n in ff]
|
||||
try:
|
||||
tt = [n[0] + n[2] for n in ff]
|
||||
ff = tt
|
||||
except IndexError:
|
||||
print "Something wrong here:"
|
||||
print ff
|
||||
return None
|
||||
f = [n.split() for n in ff]
|
||||
|
||||
if f[0][2] == 'no' and build == "release":
|
||||
return None
|
||||
# print "MACRO ENABLE_%s // LIB:scummvm_%s.lib" %(f[0][1].upper(), f[0][1])
|
||||
buildparam = ["MACRO ENABLE_%s // LIB:scummvm_%s.lib" %(f[0][1].upper(), f[0][1])]
|
||||
libname = ["STATICLIBRARY scummvm_%s.lib" %f[0][1]]
|
||||
|
||||
if len(f) == 1:
|
||||
return [buildparam, libname]
|
||||
|
||||
if len(f[0]) > 3:
|
||||
f = f[1:]
|
||||
|
||||
for i in f:
|
||||
if CheckForRelease(i[2]):
|
||||
# print " MACRO ENABLE_%s // Subengine" %i[1].upper()
|
||||
buildparam += [" MACRO ENABLE_%s // Subengine" %i[1].upper()]
|
||||
|
||||
return [buildparam, libname]
|
||||
|
||||
|
||||
# This function is frozen! Don't edit!
|
||||
def processModule_mk(path, buildparams):
|
||||
with open(os.path.join(path, "module.mk")) as ff:
|
||||
f = ff.readlines()
|
||||
|
||||
src = []
|
||||
addsrc = None
|
||||
|
||||
for i in f:
|
||||
#add engine base source code first
|
||||
if "MODULE_OBJS" in i:
|
||||
if addsrc is None:
|
||||
addsrc = True
|
||||
elif "ifdef ENABLE_" in i:
|
||||
for x in buildparams:
|
||||
if "MACRO %s"%i.strip()[6:] in x:
|
||||
addsrc = True
|
||||
src += ["// Subengine %s" %x[18:]]
|
||||
elif "KYRARPG_COMMON_OBJ" in i: #special case for kyra engine
|
||||
addsrc = True
|
||||
elif "DETECT_OBJS" in i:
|
||||
cpp = i.rstrip()
|
||||
cpp = cpp.rsplit('$')[-1]
|
||||
cpp = cpp[9:-2]
|
||||
src += ["SOURCE %s.cpp" %cpp]
|
||||
elif addsrc is True:
|
||||
# if i.endswith(".o \\"): # this dont work, why?
|
||||
if ".o \\" in i[-5:]:
|
||||
src += ["SOURCE %s.cpp" %i[1:-5]]
|
||||
elif ".o" in i[-3:]:
|
||||
src += ["SOURCE %s.cpp" %i[1:-3]]
|
||||
elif len(i) == 1:
|
||||
addsrc = False
|
||||
return src
|
||||
|
||||
|
||||
# Add per engine fixes
|
||||
libc_engines = ("ags", "bladerunner", "glk", "illusions", "nancy", "stark", "titanic", "ultima")
|
||||
def CheckEngine(lst, game):
|
||||
if game == "sword25":
|
||||
return None
|
||||
if game == "testbed":
|
||||
return None
|
||||
if game in libc_engines:
|
||||
lst = lst + "\nOPTION GCCE -I'/Symbian/S60_5th_Edition_SDK_v1.0/epoc32/include/libc'\n"
|
||||
if game == "zvision":
|
||||
lst = lst + "\nMACRO USE_A52\n"
|
||||
return lst
|
||||
|
||||
|
||||
def ProcessDup(src):
|
||||
"""Function saves file duplicates with new name, origin remains as is."""
|
||||
ourDict = defdict(list)
|
||||
destDict = {}
|
||||
for item in src:
|
||||
if "SOURCE" in item:
|
||||
t = item.split()[1]
|
||||
destDict[t] = t
|
||||
m = os.path.split(t)
|
||||
ourDict.setdefault(m[1], []).append(m[0])
|
||||
|
||||
ourDict = dict((k, v) for k, v in ourDict.iteritems() if len(v) > 1)
|
||||
|
||||
result = src
|
||||
if( len(ourDict.values()) > 0):
|
||||
result = []
|
||||
fixed = FindDup(ourDict)
|
||||
for item in src:
|
||||
if "SOURCE" in item:
|
||||
dst = item.split()[1]
|
||||
if dst in fixed:
|
||||
d = item.replace(dst, fixed[dst])
|
||||
result.append(d)
|
||||
else:
|
||||
result.append(item)
|
||||
ourDict.clear()
|
||||
return result
|
||||
|
||||
|
||||
def FindDup(files):
|
||||
val = {}
|
||||
# print "File duplicates found:\n %s" %files
|
||||
keys = files.keys()
|
||||
# print "for keys: %s" %keys
|
||||
for k in keys:
|
||||
for v in files[k]:
|
||||
if len(v) > 0:
|
||||
t = MakeRenamePair(v, k)
|
||||
src = os.path.join(currentEngine, t[0])
|
||||
dst = os.path.join(currentEngine, t[1])
|
||||
val[t[0]] = t[1]
|
||||
# if(os.path.exists(dst)): # todo: fix possible file duplicates
|
||||
# dst = str(hash(dst)) + dst
|
||||
# print "Rename file %s to %s" %(src, dst)
|
||||
shutil.copyfile(src, dst)
|
||||
t = open(dst) # Fail if file not exist
|
||||
t.close()
|
||||
return val
|
||||
|
||||
|
||||
def MakeRenamePair(val, key):
|
||||
# nuvie/core + events.cpp -> nuvie_core + events.cpp -> nuvie/core + nuvie_core_events.cpp -> nuvie/core/nuvie_core_events.cpp
|
||||
v = val.replace("/", "_")
|
||||
k = v + "_" + key # nuvie_core_events.cpp
|
||||
newFile = val + "/" + k #nuvie/core/nuvie_core_events.cpp
|
||||
oldFile = val + "/" + key
|
||||
#if newFile exists: nuvie_core_events.cpp -> (hash)_nuvie_core_events.cpp
|
||||
return [oldFile, newFile]
|
||||
|
||||
|
||||
# This function is frozen! Don't edit!
|
||||
def SafeWriteFile(path, mode, data):
|
||||
"""Save list elments as strings. Save strings as is"""
|
||||
with open(path, mode) as f:
|
||||
if type(data) is list:
|
||||
for s in data:
|
||||
f.write(s + '\n')
|
||||
else:
|
||||
f.write(data)
|
||||
|
||||
|
||||
def FilterUltima(src):
|
||||
src = [x for x in src if "nuvie" not in x] #Ultima VI
|
||||
src = [x for x in src if "ultima4" not in x]
|
||||
print "Exclude nuvie and ultima4 engines from detection_tables.h and detection.cpp!"
|
||||
return src
|
||||
|
||||
|
||||
def FilterGrim(src):
|
||||
src += ["#if !defined(WINS)"]
|
||||
src += ["SOURCE movie/codecs/blocky8ARM.s"]
|
||||
src += ["#endif"]
|
||||
return src
|
||||
|
||||
|
||||
def FilterScumm(src):
|
||||
src += ["#if !defined(WINS)"]
|
||||
src += ["SOURCE proc3ARM.s"]
|
||||
src += ["SOURCE gfxARM.s"]
|
||||
src += ["SOURCE smush/codec47ARM.s"]
|
||||
src += ["#endif"]
|
||||
return src
|
||||
|
||||
|
||||
def FilterSrcs(src, engine):
|
||||
if "grim" in engine:
|
||||
return FilterGrim(src)
|
||||
if "ultima" in engine:
|
||||
return FilterUltima(src)
|
||||
if "scumm" in engine:
|
||||
return FilterScumm(src)
|
||||
# if "" in engine:
|
||||
# return Filter(src)
|
||||
return src
|
||||
|
||||
|
||||
guard_macro = "#ifdef SCUMMVM_PT_%s\n#endif // SCUMMVM_PT_%s\n"
|
||||
ro_warning = """
|
||||
// This is autogenerated file.\n\n
|
||||
/* Warning! Carbide can silently change file.
|
||||
Set read-onle attribute after manual update!!! */
|
||||
"""
|
||||
|
||||
def MakeMMP(engine):
|
||||
global firstRun, currentEngine
|
||||
print "Start processing engine: %s" %engine
|
||||
|
||||
pth = os.path.join(pt, engine)
|
||||
currentEngine = pth
|
||||
tt = processengine(pth)
|
||||
if tt is None:
|
||||
return
|
||||
|
||||
macrolist = tt[0]
|
||||
staticlib = tt[1]
|
||||
|
||||
src = processModule_mk(pth, macrolist)
|
||||
src = ProcessDup(src)
|
||||
src = FilterSrcs(src, engine)
|
||||
|
||||
mmp = """TARGET scummvm_%s.lib
|
||||
TARGETTYPE lib\n
|
||||
#include "../S60v3/build_config.mmh"
|
||||
|
||||
#include "build_parts.mmh"
|
||||
#include "../S60v3/macros.mmh"\n
|
||||
USERINCLUDE ..\..\..\..\engines\%s\n
|
||||
// *** SOURCE files
|
||||
SOURCEPATH ..\..\..\..\engines\%s\n
|
||||
""" %(engine, engine, engine)
|
||||
|
||||
print "TARGET scummvm_%s.lib" %engine
|
||||
mmp = CheckEngine(mmp, engine)
|
||||
if mmp is None:
|
||||
return
|
||||
|
||||
plugins_table = """
|
||||
#if PLUGIN_ENABLED_STATIC(%s)
|
||||
LINK_PLUGIN(%s)
|
||||
#endif
|
||||
""" %(engine.upper(), engine.upper())
|
||||
|
||||
detection_table = """
|
||||
#if defined(ENABLE_%s) || defined(DETECTION_FULL)
|
||||
LINK_PLUGIN(%s_DETECTION)
|
||||
#endif
|
||||
""" %(engine.upper(), engine.upper())
|
||||
|
||||
bldinf = os.path.join(local, "bld.inf")
|
||||
mmpfile = os.path.join(local, "%s.mmp" %engine)
|
||||
ptable = os.path.join(pt, "plugins_table.h")
|
||||
dtable = os.path.join(pt, "detection_table.h")
|
||||
macros = os.path.join(local, "macros.mmh")
|
||||
engines = os.path.join(local, "engines.mmh")
|
||||
#create files and add bld.inf header
|
||||
if firstRun is True:
|
||||
SafeWriteFile(bldinf, 'w', "PRJ_MMPFILES\n")
|
||||
if(build == 'release'):
|
||||
SafeWriteFile(macros, 'w', "MACRO RELEASE_BUILD\n")
|
||||
guard_macros = [guard_macro %(i + 1, i + 1) for i in range(len(uids))]
|
||||
SafeWriteFile(macros, 'w', ro_warning)
|
||||
SafeWriteFile(macros, 'a', guard_macros)
|
||||
SafeWriteFile(ptable, 'w', "// This is autogenerated file.\n")
|
||||
SafeWriteFile(dtable, 'w', "// This is autogenerated file.\n")
|
||||
SafeWriteFile(engines, 'w', ro_warning)
|
||||
SafeWriteFile(engines, 'a', guard_macros)
|
||||
firstRun = False
|
||||
|
||||
SafeWriteFile(mmpfile, 'w', mmp)
|
||||
SafeWriteFile(mmpfile, 'a', src)
|
||||
|
||||
SafeWriteFile(bldinf, 'a', "%s.mmp\n" %engine)
|
||||
SafeWriteFile(macros, 'a', macrolist)
|
||||
SafeWriteFile(engines, 'a', staticlib)
|
||||
SafeWriteFile(ptable, 'a', plugins_table)
|
||||
SafeWriteFile(dtable, 'a', detection_table)
|
||||
currentEngine = None
|
||||
print "End processing\n"
|
||||
|
||||
firstRun = True
|
||||
currentEngine = None
|
||||
pt = '..\..\..\engines'
|
||||
local = mmps
|
||||
|
||||
# pt = 'e:\Scu\engines'
|
||||
# local = pt
|
||||
|
||||
def count_sc_parts():
|
||||
t = []
|
||||
for i in range(len(uids)):
|
||||
d = "#define SCUMMVM_PT_%d" %(i+1)
|
||||
t.append(d)
|
||||
pth = os.path.join(local, "build_parts.mmh")
|
||||
SafeWriteFile(pth, 'w', ro_warning)
|
||||
SafeWriteFile(pth, 'a', t)
|
||||
|
||||
def create_engine_mmps(arg = 'full'):
|
||||
global build
|
||||
build = arg
|
||||
if not os.path.exists(local):
|
||||
os.mkdir(local)
|
||||
if(os.path.isfile(local)):
|
||||
raise TypeError("Expected dir but file found %s" %pt)
|
||||
if(local != pt):
|
||||
if(os.path.isdir(local)):
|
||||
try:
|
||||
shutil.rmtree(local)
|
||||
os.mkdir(local)
|
||||
except: pass
|
||||
t = os.listdir(pt)
|
||||
[MakeMMP(m) for m in t if os.path.isdir(os.path.join(pt, m))]
|
||||
count_sc_parts()
|
||||
|
||||
if __name__ == "__main__":
|
||||
create_engine_mmps()
|
||||
|
||||
|
@ -1,108 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
excluded = ("", "")
|
||||
|
||||
def exclude_special_cpp(tmp):
|
||||
d = "%s.cpp" %tmp[:-2]
|
||||
if d in excluded:
|
||||
print "excluded: %s" %d
|
||||
return ""
|
||||
return tmp
|
||||
|
||||
src_dirs = ("backends", "common", "engines", "gui", "math")
|
||||
mmp_name = "scummvm_base.mmp"
|
||||
|
||||
mmp_template = """
|
||||
TARGET scummvm_base.lib
|
||||
TARGETTYPE lib
|
||||
#include "../%s/build_config.mmh"
|
||||
|
||||
// compiler must use png.h from libpng.lib instead ScummVM's
|
||||
OPTION GCCE -I'/Symbian/S60_5th_Edition_SDK_v1.0/epoc32/include/png'
|
||||
|
||||
// added and managed by porter
|
||||
SOURCEPATH ..\..\..\..\\backends
|
||||
SOURCE audiocd\sdl\sdl-audiocd.cpp
|
||||
SOURCE fs\symbian\symbianstream.cpp
|
||||
SOURCE mixer\symbiansdl\symbiansdl-mixer.cpp
|
||||
// end porter job\n
|
||||
#include "build_parts.mmh"
|
||||
\n#include \"../%s/macros.mmh\"\n
|
||||
"""
|
||||
|
||||
|
||||
def checkMacro(macro, active_conf = active_config):
|
||||
t = macro.split()[-1]
|
||||
if t in active_conf:
|
||||
return True
|
||||
else:
|
||||
if t not in disabled_config:
|
||||
print "New macro found: %s" %t
|
||||
return False
|
||||
|
||||
def processModule_mk(folder, mmp_file, active_conf = active_config):
|
||||
pth = os.path.join('..\..\..', folder)
|
||||
try:
|
||||
with open(os.path.join(pth, "module.mk")) as ff:
|
||||
f = ff.readlines()
|
||||
except IOError: #folder added in newer version
|
||||
return
|
||||
pth = os.path.join('..\..\..\..', folder)
|
||||
SafeWriteFile(mmp_file, "\nSOURCEPATH %s\n" %pth, 'a')
|
||||
|
||||
src = []
|
||||
addsrc = None
|
||||
|
||||
for i in f:
|
||||
if "MODULE_OBJS :=" in i:
|
||||
addsrc = True
|
||||
elif "endif" in i:
|
||||
addsrc = False
|
||||
elif "SDL_BACKEND" in i:
|
||||
addsrc = True
|
||||
elif "ENABLE_" in i:
|
||||
addsrc = checkMacro(i, active_conf)
|
||||
elif "USE_" in i:
|
||||
addsrc = checkMacro(i, active_conf)
|
||||
elif "DISABLE_" in i:
|
||||
addsrc = checkMacro(i, active_conf)
|
||||
elif addsrc is True:
|
||||
tmp = i.strip()
|
||||
tmp = tmp.rstrip("\\")
|
||||
tmp = tmp.strip()
|
||||
tmp = exclude_special_cpp(tmp)
|
||||
if tmp.endswith(".o"):
|
||||
src += ["SOURCE %s.cpp" %tmp[:-2]]
|
||||
SafeWriteFile(mmp_file, src, 'a')
|
||||
|
||||
|
||||
def parse_base(platform = "S60v3"):
|
||||
uids = get_UIDs(build)
|
||||
mmp_file = os.path.join(mmps, mmp_name)
|
||||
SafeWriteFile(mmp_file, mmp_template %(platform, platform) )
|
||||
[processModule_mk(i, mmp_file) for i in src_dirs]
|
||||
|
||||
if __name__ == "__main__":
|
||||
parse_base()
|
@ -1,115 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
excluded = ("renderer.cpp", "sjis.cpp", "coktel_decoder.cpp")
|
||||
|
||||
def exclude_special_cpp(tmp):
|
||||
d = "%s.cpp" %tmp[:-2]
|
||||
if d in excluded:
|
||||
print "excluded: %s" %d
|
||||
return ""
|
||||
return tmp
|
||||
|
||||
src_dirs = ("audio", "graphics", "image", "video")
|
||||
|
||||
mmp_name = "scummvm_codecs.mmp"
|
||||
|
||||
mmp_template = """
|
||||
TARGET scummvm_codecs.lib
|
||||
TARGETTYPE lib
|
||||
#include "../%s/build_config.mmh"
|
||||
|
||||
// compiler must use png.h from libpng.lib instead ScummVM's
|
||||
OPTION GCCE -I'/Symbian/S60_5th_Edition_SDK_v1.0/epoc32/include/png'
|
||||
|
||||
"""
|
||||
|
||||
def processModule_mk(dir, mmp_file):
|
||||
pth = os.path.join('..\..\..', dir)
|
||||
with open(os.path.join(pth, "module.mk")) as ff:
|
||||
f = ff.readlines()
|
||||
pth = os.path.join('..\..\..\..', dir)
|
||||
SafeWriteFile(mmp_file, "\nSOURCEPATH %s\n" %pth, 'a')
|
||||
|
||||
src = []
|
||||
addsrc = None
|
||||
|
||||
for i in f:
|
||||
if "MODULE_OBJS :=" in i:
|
||||
print i
|
||||
addsrc = True
|
||||
if addsrc is None:
|
||||
addsrc = True
|
||||
elif len(i) == 1:
|
||||
addsrc = False
|
||||
elif "endif" in i:
|
||||
addsrc = False
|
||||
elif "ENABLE_" in i:
|
||||
t = i.split()[-1]
|
||||
if t in active_config:
|
||||
addsrc = True
|
||||
elif t in disabled_config:
|
||||
addsrc = False
|
||||
elif t not in disabled_config:
|
||||
SafeWriteFile(build_log, "New macro found: %s" %t)
|
||||
elif "USE_" in i:
|
||||
t = i.split()[-1]
|
||||
print "%s %s" %(dir, t)
|
||||
if t in active_config:
|
||||
print "active_config %s %s" %(dir, t)
|
||||
addsrc = True
|
||||
else:
|
||||
print "disabled_config %s %s" %(dir, t)
|
||||
addsrc = False
|
||||
if t not in disabled_config:
|
||||
SafeWriteFile(build_log, "New macro found: %s" %t)
|
||||
elif "DISABLE_" in i:
|
||||
t = i.split()[-1]
|
||||
if t in active_config:
|
||||
addsrc = True
|
||||
elif t not in disabled_config:
|
||||
SafeWriteFile(build_log, "New macro found: %s" %t)
|
||||
else:
|
||||
addsrc = False
|
||||
elif addsrc is True:
|
||||
tmp = i.strip()
|
||||
tmp = tmp.rstrip("\\")
|
||||
tmp = tmp.strip()
|
||||
tmp = exclude_special_cpp(tmp)
|
||||
if tmp.endswith(".o"):
|
||||
src += ["SOURCE %s.cpp" %tmp[:-2]]
|
||||
SafeWriteFile(mmp_file, src, 'a')
|
||||
|
||||
def parse_codecs(platform):
|
||||
uids = get_UIDs(build)
|
||||
codecs_mmp = os.path.join(mmps, mmp_name)
|
||||
SafeWriteFile(codecs_mmp, mmp_template %platform)
|
||||
for i in range(len(uids)):
|
||||
idx = i+1
|
||||
SafeWriteFile(codecs_mmp, "#define SCUMMVM_PT_%d\n" %idx, 'a')
|
||||
SafeWriteFile(codecs_mmp, "\n#include \"../%s/macros.mmh\"\n" %platform, 'a')
|
||||
[processModule_mk(i, codecs_mmp) for i in src_dirs]
|
||||
|
||||
if __name__ == "__main__":
|
||||
parse_codecs(platform = "S60v3")
|
@ -1,98 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
pkg_file = "ScummVM_gamedata.pkg"
|
||||
component_name = "ScummVM gamedata package"
|
||||
component_name_test = "ScummVM teting gamedata package"
|
||||
data_path = "..\\..\\..\\dists\\engine-data"
|
||||
theme_path = "..\\..\\..\\gui\\themes"
|
||||
|
||||
# Install_path has trailing '\\'.
|
||||
install_path = "!:\\data\\scummvm\\"
|
||||
|
||||
# Template args = (Component name, UID, major version, minor version, build number).
|
||||
pkg_template = """;;;
|
||||
;;; ScummVM .PKG file for .SIS generation.
|
||||
;;;
|
||||
|
||||
; Language - standard language definitions.
|
||||
&EN
|
||||
|
||||
; List of localised vendor names - one per language. At least one must be provided (English [EN]).
|
||||
; List must correspond to list of languages specified elsewhere in the .pkg
|
||||
%%{"ScummVM"}
|
||||
; The non-localised, globally unique vendor name (mandatory).
|
||||
:"ScummVM"
|
||||
|
||||
; UID is the app's UID.
|
||||
#{"%s"},(%s),%s,%s,%s, TYPE=SISPATCH
|
||||
|
||||
;Supports Series 60 v 3.0.
|
||||
[0x101F7961], 0, 0, 0, {"Series60ProductID"}
|
||||
;Supports Series 60 v 5.0.
|
||||
[0x1028315F], 0, 0, 0, {"Series60ProductID"}
|
||||
; Scummvm documentation.
|
||||
"..\\..\\..\\..\\COPYRIGHT" - "", FT, TC
|
||||
"..\\..\\..\\..\\COPYING.FREEFONT" - "!:\\data\\scummvm\\COPYING.FREEFONT"
|
||||
"..\\..\\..\\..\\AUTHORS" - "", FT, TC
|
||||
|
||||
; Scummvm help.
|
||||
"..\\help\\ScummVM.hlp"-"!:\\resource\\help\\ScummVM.hlp"
|
||||
|
||||
; Common datafiles needed for some games.
|
||||
"""
|
||||
|
||||
pkg_string_template = "\"%s\" - \"!:\\data\\scummvm\\%s\""
|
||||
pkg_string_template_beta = "\"%s\" - \"!:\\data\\scummvm\\beta\\%s\""
|
||||
|
||||
|
||||
def make_install_path(x, data_pth, build):
|
||||
data_pth = os.path.join("..", data_pth)
|
||||
if build == 'full':
|
||||
return pkg_string_template_beta %(os.path.join(data_pth, x),x)
|
||||
return pkg_string_template %(os.path.join(data_pth, x),x)
|
||||
|
||||
def get_gamedata(data_pth, build):
|
||||
files = os.listdir(data_pth)
|
||||
files = [make_install_path(x, data_pth, build) for x in files if os.path.isfile(os.path.join(data_pth, x))]
|
||||
return files
|
||||
|
||||
def parse_gamedata(build, platform = "S60v3"):
|
||||
uids = get_UIDs(build)
|
||||
comp_name = component_name
|
||||
if build == 'full':
|
||||
comp_name = component_name_test
|
||||
t = get_gamedata(data_path, build)
|
||||
t += get_gamedata(theme_path, build)
|
||||
pkg = os.path.join(platform, pkg_file)
|
||||
p_template = pkg_template %(comp_name, uids[0], sis_major_version, sis_minor_version, sis_build_number)
|
||||
if build == 'full':
|
||||
p_template = p_template.replace("resource\\help\\ScummVM.hlp", "resource\\help\\ScummVM_test.hlp")
|
||||
SafeWriteFile(pkg, p_template)
|
||||
SafeWriteFile(pkg, t, mode = 'a')
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parse_gamedata(build = 'full', platform = "S60v3")
|
@ -1,74 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
|
||||
active_config = ("USE_LUA", )
|
||||
src_dirs = ("common", )
|
||||
mmp_name = "scummvm_lua.mmp"
|
||||
|
||||
|
||||
mmp_template = """
|
||||
TARGET scummvm_lua.lib
|
||||
TARGETTYPE lib
|
||||
|
||||
MACRO __IGNORE__E32STD_H__
|
||||
|
||||
#include "../%s/build_config.mmh"
|
||||
"""
|
||||
|
||||
|
||||
def processModule_mk(folder, mmp_file, active_conf = active_config):
|
||||
pth = os.path.join('..\..\..', folder)
|
||||
with open(os.path.join(pth, "module.mk")) as ff:
|
||||
f = ff.readlines()
|
||||
pth = os.path.join('..\..\..\..', folder)
|
||||
SafeWriteFile(mmp_file, "\nSOURCEPATH %s\n" %pth, 'a')
|
||||
|
||||
src = []
|
||||
addsrc = None
|
||||
|
||||
for i in f:
|
||||
if "MODULE_OBJS :=" in i:
|
||||
continue
|
||||
elif "endif" in i:
|
||||
addsrc = False
|
||||
elif "USE_LUA" in i:
|
||||
addsrc = True
|
||||
elif addsrc is True:
|
||||
tmp = i.strip()
|
||||
tmp = tmp.rstrip("\\")
|
||||
tmp = tmp.strip()
|
||||
if tmp.endswith(".o"):
|
||||
src += ["SOURCE %s.cpp" %tmp[:-2]]
|
||||
SafeWriteFile(mmp_file, src, 'a')
|
||||
|
||||
|
||||
def parse_lua(platform = "S60v3"):
|
||||
mmp_file = os.path.join(mmps, mmp_name)
|
||||
SafeWriteFile(mmp_file, mmp_template %platform)
|
||||
[processModule_mk(i, mmp_file, active_config) for i in src_dirs]
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parse_lua()
|
@ -1,110 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 - 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os, subprocess, Queue, threading, errno, time
|
||||
import multiprocessing as mp
|
||||
|
||||
from common_names import *
|
||||
|
||||
# Workaround for "threading bug in strptime"
|
||||
#see - https://stackoverflow.com/questions/32245560/module-object-has-no-attribute-strptime-with-several-threads-python/46401422
|
||||
import _strptime
|
||||
|
||||
prj_template = "PRJ_MMPFILES\n%s"
|
||||
prj_path = "paralell_build"
|
||||
|
||||
|
||||
def thread_func(q):
|
||||
while True:
|
||||
fileName = q.get()
|
||||
if fileName is None: # EOF?
|
||||
return
|
||||
pth = os.path.join(prj_path, fileName)
|
||||
try:
|
||||
os.makedirs(pth)
|
||||
except OSError as e:
|
||||
if e.errno == errno.EEXIST:
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
|
||||
fname = os.path.join(mmps, fileName)
|
||||
fname = os.path.join("..", fname)
|
||||
fname = os.path.join("..", fname) # Point to mmp file in port specific folder.
|
||||
tmp = os.path.join(pth, "bld.inf")
|
||||
SafeWriteFile(tmp, prj_template %fname)
|
||||
|
||||
cmd = subprocess.Popen('bldmake bldfiles', stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=pth, shell=True)
|
||||
out, err = cmd.communicate()
|
||||
if len(err) > 0:
|
||||
print "err: %s\n\n" %err
|
||||
# Clean build directory from previous build.
|
||||
cmd = subprocess.Popen('abld reallyclean gcce urel', stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=pth, shell=True)
|
||||
cmd.communicate()
|
||||
|
||||
# Needed because datetime.now() returns the same time for every call.
|
||||
start = time.strftime("%H:%M:%S")
|
||||
cmd = subprocess.Popen('abld build gcce urel', stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=pth, shell=True)
|
||||
out1, err1 = cmd.communicate()
|
||||
|
||||
end = time.strftime("%H:%M:%S" )
|
||||
start_dt = datetime.strptime(start, '%H:%M:%S')
|
||||
end_dt = datetime.strptime(end, '%H:%M:%S')
|
||||
diff = (end_dt - start_dt)
|
||||
|
||||
out = out + out1
|
||||
err = err + err1
|
||||
# After cmd.communicate() we have ugly 'crcrlf' line endings.
|
||||
AppendToFile(build_log, out.replace(u"\r", u""))
|
||||
AppendToFile(build_err, err.replace(u"\r", u""))
|
||||
AppendToFile(build_time, "Engine %s build time: %s.\n" %(fileName, str(diff)) )
|
||||
print "Engine %s done!" %fileName
|
||||
|
||||
def build_mmp(try_fix = False):
|
||||
fileNames = os.listdir(mmps)
|
||||
fileNames = [x for x in fileNames if ".mmp" in x]
|
||||
if try_fix:
|
||||
with open(os.path.join(mmps, whitelist)) as ff:
|
||||
fileNames = ff.readlines()
|
||||
else:
|
||||
SafeWriteFile(os.path.join(mmps, whitelist), fileNames)
|
||||
|
||||
q = Queue.Queue()
|
||||
for fileName in fileNames:
|
||||
q.put(fileName)
|
||||
|
||||
t_count = mp.cpu_count() + 2
|
||||
if t_count > q.qsize():
|
||||
t_count = q.qsize()
|
||||
|
||||
print "Queue size: %s" %q.qsize()
|
||||
print "Thread count: %s" %t_count
|
||||
threads = [threading.Thread(target=thread_func, args=(q, )) for i in range(t_count)]
|
||||
for thread in threads:
|
||||
thread.start()
|
||||
q.put(None) # one EOF marker for each thread
|
||||
for thread in threads:
|
||||
thread.join()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
build_mmp()
|
@ -1,226 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020-2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
# Template args = (Package Name = filename + platform, Component name, UID, major version, minor version, build number).
|
||||
pkg_template = """
|
||||
;
|
||||
; Warning: autogenerated file.
|
||||
;
|
||||
|
||||
; Language - standard language definitions.
|
||||
&EN
|
||||
|
||||
; List of localised vendor names - one per language. At least one must be provided (English [EN]).
|
||||
; List must correspond to list of languages specified elsewhere in the .pkg
|
||||
%%{"ScummVM"}
|
||||
; The non-localised, globally unique vendor name (mandatory)
|
||||
:"ScummVM"
|
||||
|
||||
; UID is the app's UID.
|
||||
#{"%s"},(%s),%s,%s,%s
|
||||
|
||||
; Supports Series 60 v 3.0.
|
||||
[0x101F7961], 0, 0, 0, {"Series60ProductID"}
|
||||
; Supports Series 60 v 5.0.
|
||||
[0x1028315F], 0, 0, 0, {"Series60ProductID"}
|
||||
"""
|
||||
|
||||
# Template args = (UID from 1st package, major version, minor version, build number,
|
||||
# major version, minor version, build number, 1st package name).
|
||||
dependency = """
|
||||
|
||||
; ScummVM1 dependency.
|
||||
(%s), %s,%s,%s ~ %s,%s,%s, {"%s"}
|
||||
"""
|
||||
|
||||
pkg_licenses_install = """
|
||||
|
||||
; Scummvm Documentation, licences.
|
||||
"..\\THANKS" - "!:\\data\\scummvm\\THANKS", FT, TC
|
||||
"..\\..\\..\\..\\COPYRIGHT" - "!:\\data\\scummvm\\COPYRIGHT", FT, TC
|
||||
"..\\..\\..\\..\\COPYING.BSD" - "!:\\data\\scummvm\\COPYING.BSD"
|
||||
"..\\..\\..\\..\\COPYING.ISC" - "!:\\data\\scummvm\\COPYING.ISC"
|
||||
"..\\..\\..\\..\\COPYING.LGPL" - "!:\\data\\scummvm\\COPYING.LGPL"
|
||||
"..\\..\\..\\..\\COPYING.LUA" - "!:\\data\\scummvm\\COPYING.LUA"
|
||||
"..\\..\\..\\..\\COPYING.MIT" - "!:\\data\\scummvm\\COPYING.MIT"
|
||||
"..\\..\\..\\..\\COPYING.OFL" - "!:\\data\\scummvm\\COPYING.OFL"
|
||||
"..\\..\\..\\..\\COPYING.TINYGL" - "!:\\data\\scummvm\\COPYING.TINYGL"
|
||||
"..\\..\\..\\..\\COPYING.GLAD" - "!:\\data\\scummvm\\COPYING.GLAD"
|
||||
"..\\..\\..\\..\\COPYING" - "!:\\data\\scummvm\\COPYING"
|
||||
"..\\..\\..\\..\\AUTHORS" - "!:\\data\\scummvm\\AUTHORS", FT, TC
|
||||
"..\\..\\..\\..\\README.md" - "!:\\data\\scummvm\\README.md"
|
||||
"..\\..\\..\\..\\NEWS.md" - "!:\\data\\scummvm\\NEWS.md"
|
||||
"..\\README" - "!:\\data\\scummvm\\SYMBIAN_README", FT, TC
|
||||
"""
|
||||
|
||||
pkg_licenses_show = """
|
||||
|
||||
; Scummvm Documentation.
|
||||
"..\\THANKS" - "", FT, TC
|
||||
"..\\..\\..\\..\COPYRIGHT" - "", FT, TC
|
||||
"..\\..\\..\\..\COPYING" - "", FT, TC
|
||||
"..\\README" - "", FT, TC
|
||||
"""
|
||||
|
||||
# Template args = (extension, extension, extension, extension,
|
||||
# extension, extension, extension, extension ).
|
||||
# Where extension == (ordinal or (ordinal and "_test") ).
|
||||
install_data = """
|
||||
; Launcher, Application, AIF & Resource file.
|
||||
"$(EPOCROOT)epoc32\\release\\gcce\\urel\\ScummVM%s.exe" - "!:\\sys\\bin\\ScummVM%s.exe"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\resource\\apps\\ScummVM%s.rsc" - "!:\\resource\\apps\\ScummVM%s.rsc"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\resource\\apps\\ScummVM%s_loc.rsc"- "!:\\resource\\apps\\ScummVM%s_loc.rsc"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\private\\10003a3f\\apps\\ScummVM%s_reg.rsc" -
|
||||
"!:\\private\\10003a3f\\import\\apps\\ScummVM%s_reg.rsc"
|
||||
"""
|
||||
|
||||
install_eclipse_data = """
|
||||
; Launcher, Application, AIF & Resource file.
|
||||
"$(EPOCROOT)epoc32\\release\\$(PLATFORM)\\$(TARGET)\\ScummVM%s.exe" - "!:\\sys\\bin\\ScummVM%s.exe"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\resource\\apps\\ScummVM%s.rsc" - "!:\\resource\\apps\\ScummVM%s.rsc"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\resource\\apps\\ScummVM%s_loc.rsc"- "!:\\resource\\apps\\ScummVM%s_loc.rsc"
|
||||
"$(EPOCROOT)epoc32\\data\\z\\private\\10003a3f\\apps\\ScummVM%s_reg.rsc" -
|
||||
"!:\\private\\10003a3f\\import\\apps\\ScummVM%s_reg.rsc"
|
||||
"""
|
||||
|
||||
clear_uninstall = """
|
||||
|
||||
; Config/log files: 'empty' will automagically be removed on uninstall.
|
||||
""- "c:\data\scummvm\scummvm.ini",FILENULL
|
||||
""- "c:\data\scummvm\scummvm.stdout.txt",FILENULL
|
||||
""- "c:\data\scummvm\scummvm.stderr.txt",FILENULL
|
||||
""- "c:\data\scummvm\sdl.ini",FILENULL
|
||||
"""
|
||||
|
||||
mif_install = """
|
||||
\"$(EPOCROOT)epoc32\\data\\z\\resource\\apps\\ScummVM.mif\" - \"!:\\resource\\apps\\ScummVM.mif\"
|
||||
"""
|
||||
|
||||
package_name = "ScummVM%s"
|
||||
|
||||
def EPOCROOTAsPath():
|
||||
return os.path.join( os.path.splitdrive(os.getcwd())[0], os.environ['EPOCROOT'])
|
||||
|
||||
def ResolveEpocRoot(install_data):
|
||||
return install_data.replace("$(EPOCROOT)", EPOCROOTAsPath())
|
||||
|
||||
def SaveInstallData(pkg, build, ext, toResolve = True):
|
||||
if build == 'full':
|
||||
ext = str(ext) + "_test"
|
||||
install = install_eclipse_data
|
||||
if toResolve:
|
||||
install = ResolveEpocRoot(install_data)
|
||||
AppendToFile(pkg, install %(ext, ext, ext, ext, ext, ext, ext, ext) )
|
||||
|
||||
def SaveDependency(build, pkg):
|
||||
uid = get_UIDs(build)
|
||||
dep_name = "ScummVM1.sisx"
|
||||
if build == 'full':
|
||||
dep_name = "ScummVM1_test.sisx"
|
||||
AppendToFile(pkg, dependency %(uid[0], sis_major_version, sis_minor_version, sis_build_number, \
|
||||
sis_major_version, sis_minor_version, sis_build_number, dep_name))
|
||||
|
||||
def ResolvePackName(ordinal, target, build):
|
||||
tmp = package_name %(str(ordinal +1) + " " + target)
|
||||
if build == 'full':
|
||||
tmp += " test"
|
||||
return tmp
|
||||
|
||||
def CreateLastPkg(install_uid, build, path, ordinal, target):
|
||||
pkg = path %(ordinal +1)
|
||||
pkg_cmdline = path %( str(ordinal +1) + "_cmdline")
|
||||
pack_name = ResolvePackName(ordinal, target, build)
|
||||
|
||||
SafeWriteFile(pkg, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
SafeWriteFile(pkg_cmdline, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
SaveDependency(build, pkg)
|
||||
SaveDependency(build, pkg_cmdline)
|
||||
|
||||
AppendToFile(pkg, pkg_licenses_show)
|
||||
AppendToFile(pkg_cmdline, pkg_licenses_show)
|
||||
|
||||
SaveInstallData(pkg, build, ordinal*2 + 1, toResolve = False)
|
||||
SaveInstallData(pkg_cmdline, build, ordinal*2 + 1)
|
||||
|
||||
def CreatePkg(install_uid, build, path, ordinal, target):
|
||||
pkg = path %(ordinal +1)
|
||||
pkg_cmdline = path %( str(ordinal +1) + "_cmdline")
|
||||
pack_name = ResolvePackName(ordinal, target, build)
|
||||
|
||||
SafeWriteFile(pkg, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
SafeWriteFile(pkg_cmdline, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
SaveDependency(build, pkg)
|
||||
SaveDependency(build, pkg_cmdline)
|
||||
|
||||
AppendToFile(pkg, pkg_licenses_show)
|
||||
AppendToFile(pkg_cmdline, pkg_licenses_show)
|
||||
|
||||
SaveInstallData(pkg, build, ordinal*2 + 1, toResolve = False)
|
||||
SaveInstallData(pkg_cmdline, build, ordinal*2 + 1)
|
||||
SaveInstallData(pkg, build, ordinal*2 + 2, toResolve = False)
|
||||
SaveInstallData(pkg_cmdline, build, ordinal*2 + 2)
|
||||
|
||||
def CreateFirstPkg(install_uid, build, path, target):
|
||||
ext = 1
|
||||
cmd = str(ext) + "_cmdline"
|
||||
|
||||
pkg = path %ext
|
||||
pkg_cmdline = path %cmd
|
||||
pack_name = ResolvePackName(0, target, build)
|
||||
|
||||
SafeWriteFile(pkg, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
SafeWriteFile(pkg_cmdline, pkg_template %(pack_name, install_uid, sis_major_version, sis_minor_version, sis_build_number) )
|
||||
|
||||
p_license = pkg_licenses_install
|
||||
if build == 'full':
|
||||
p_license = p_license.replace("scummvm", "scummvm\\beta")
|
||||
AppendToFile(pkg, p_license)
|
||||
AppendToFile(pkg_cmdline, p_license)
|
||||
if build == 'release':
|
||||
AppendToFile(pkg, mif_install)
|
||||
AppendToFile(pkg_cmdline, ResolveEpocRoot(mif_install))
|
||||
|
||||
SaveInstallData(pkg, build, 1, toResolve = False)
|
||||
SaveInstallData(pkg_cmdline, build, 1)
|
||||
SaveInstallData(pkg, build, 2, toResolve = False)
|
||||
SaveInstallData(pkg_cmdline, build, 2)
|
||||
AppendToFile(pkg, clear_uninstall)
|
||||
AppendToFile(pkg_cmdline, clear_uninstall)
|
||||
|
||||
def create_pkgs(build, path):
|
||||
uids = get_UIDs(build)
|
||||
pairs = len(uids)/2
|
||||
pkg_name = "ScummVM%s.pkg"
|
||||
pkg_name = os.path.join(path, pkg_name)
|
||||
for i in range(pairs):
|
||||
if i == 0:
|
||||
CreateFirstPkg(uids[0], build, pkg_name, path)
|
||||
continue
|
||||
CreatePkg(uids[i*2], build, pkg_name, i, path)
|
||||
if len(uids)%2 == 1:
|
||||
CreateLastPkg(uids[-1], build, pkg_name, pairs, path)
|
||||
|
||||
if __name__ == "__main__":
|
||||
create_pkgs(build = 'full', path = "S60v3")
|
@ -1,271 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2020 - 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os, stat
|
||||
from common_names import *
|
||||
|
||||
|
||||
# ---------------------------
|
||||
# Expect: reg_rss_template %(UID3, ordnum, ordnum)
|
||||
reg_rss_template = """
|
||||
/*
|
||||
* Warning: autogenerated file
|
||||
*/
|
||||
// All registration files need to #include appinfo.rh.
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// All registration files must define UID2, which is always
|
||||
// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
|
||||
UID2 KUidAppRegistrationResourceFile
|
||||
UID3 %s // application UID
|
||||
|
||||
// Registration file need to containo an APP_REGISTRATION_INFO resource that
|
||||
// minimally needs to provide the name of the application binary (using the
|
||||
// app_file statement).
|
||||
RESOURCE APP_REGISTRATION_INFO
|
||||
{
|
||||
app_file = "ScummVM%s"; // filename of application binary (minus extension)
|
||||
// Specify the location of the localisable icon/caption definition file
|
||||
localisable_resource_file = "\\Resource\\Apps\\ScummVM%s_loc";
|
||||
}
|
||||
"""
|
||||
|
||||
# ---------------------------
|
||||
# Expect: loc_rss_template %UID3
|
||||
loc_rss_template = """
|
||||
/*
|
||||
* Warning: autogenerated file
|
||||
*/
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// This file localise the applications icons and caption
|
||||
RESOURCE LOCALISABLE_APP_INFO
|
||||
{
|
||||
caption_and_icon =
|
||||
{
|
||||
CAPTION_AND_ICON_INFO
|
||||
{
|
||||
// The caption text is defined in the rls file
|
||||
caption = "ScummVM %s";
|
||||
// Icons are used to represent applications in the
|
||||
// application launcher and application title bar.
|
||||
// The number_of_icons value identifies how many icons
|
||||
// that exist in the icon_file.
|
||||
number_of_icons = 1;
|
||||
// Using the application icons.
|
||||
icon_file = "\\Resource\\Apps\\ScummVM.mif";
|
||||
}
|
||||
};
|
||||
}
|
||||
"""
|
||||
|
||||
# ---------------------------
|
||||
# Expect: rss_template %(UID3, UID3)
|
||||
rss_template = """
|
||||
/*
|
||||
* Warning: autogenerated file
|
||||
*/
|
||||
|
||||
// ScummVM%s.rss
|
||||
|
||||
NAME SCUM
|
||||
|
||||
// Include definitions of resource STRUCTS used by this
|
||||
// resource script
|
||||
#include <eikon.rh>
|
||||
|
||||
|
||||
RESOURCE RSS_SIGNATURE
|
||||
{
|
||||
}
|
||||
|
||||
RESOURCE TBUF16 { buf=""; }
|
||||
|
||||
RESOURCE EIK_APP_INFO
|
||||
{
|
||||
menubar = r_scum_menubar;
|
||||
}
|
||||
|
||||
RESOURCE MENU_BAR r_scum_menubar // *** Menu bar
|
||||
{
|
||||
titles =
|
||||
{
|
||||
MENU_TITLE { menu_pane = r_scum_menu; txt = "ScummVM%s"; }
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE MENU_PANE r_scum_menu // *** Submenu
|
||||
{
|
||||
items =
|
||||
{
|
||||
|
||||
MENU_ITEM{command = EEikCmdExit;txt = "Exit";}
|
||||
};
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
# ---------------------------
|
||||
# Expect: mmp_template %(ordnum, UID3, ordnum, ordnum, ordnum, ordnum, ordnum)
|
||||
mmp_template = """
|
||||
/*
|
||||
* Warning: autogenerated file
|
||||
*/
|
||||
|
||||
//
|
||||
// EPOC S60 MMP makefile project for ScummVM
|
||||
//
|
||||
|
||||
// *** Definitions
|
||||
|
||||
|
||||
TARGET ScummVM%s.exe
|
||||
TARGETPATH sys\\bin
|
||||
TARGETTYPE exe
|
||||
OPTION GCCE -Wno-multichar -Wno-reorder -Wno-unused -Wno-format -fsigned-char \
|
||||
-fno-asynchronous-unwind-tables -std=c++11 // -ffreestanding -fno-sized-deallocation //--verbose //-flto -fuse-linker-plugin //-Wl, -v -fbuiltin
|
||||
// fixes error "section .data loaded at [...] overlaps section .text loaded at [...]"
|
||||
LINKEROPTION GCCE -Tdata 0xAA00000 // -v -flto -fuse-linker-plugin
|
||||
//--print-gc-sections --stats --gc-sections --strip-all// removes unused code
|
||||
|
||||
UID 0x100039ce %s
|
||||
|
||||
bytepaircompresstarget
|
||||
|
||||
START RESOURCE ScummVM%s.rss
|
||||
HEADER
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
START RESOURCE ScummVM%s_reg.rss
|
||||
TARGETPATH \private\\10003a3f\\apps
|
||||
END
|
||||
|
||||
START RESOURCE ScummVM%s_loc.rss
|
||||
TARGETPATH \Resource\Apps
|
||||
LANG SC
|
||||
END
|
||||
|
||||
EPOCSTACKSIZE 80000
|
||||
EPOCHEAPSIZE 5000000 64000000
|
||||
|
||||
MACRO SCUMMVM_PT_%s
|
||||
|
||||
#define SCUMMVM_PT_%s
|
||||
#include "macros.mmh"
|
||||
#include "build_config.mmh"
|
||||
#include "build_app_config.mmh" // must be above engines.mmh
|
||||
#include "engines.mmh"
|
||||
"""
|
||||
# ---------------------------
|
||||
bld_inf_template = """
|
||||
PRJ_PLATFORMS
|
||||
GCCE WINSCW
|
||||
|
||||
PRJ_MMPFILES
|
||||
|
||||
gnumakefile icons.mk
|
||||
gnumakefile ..\\help\\build_help.mk
|
||||
|
||||
"""
|
||||
# ---------------------------
|
||||
|
||||
|
||||
def data_dump(macros):
|
||||
with open(macros) as ff:
|
||||
f = ff.readlines()
|
||||
n = []
|
||||
for x in f:
|
||||
if x.startswith("// MACRO"):
|
||||
x = x.strip("// ")
|
||||
if x.startswith(('STATICLIBRARY', 'MACRO')):
|
||||
n.append(x.strip())
|
||||
n.sort()
|
||||
return n
|
||||
|
||||
|
||||
def data_diff(data_cached, data):
|
||||
data_cached = data_dump(data_cached)
|
||||
data = data_dump(data)
|
||||
return set(data_cached).symmetric_difference(set(data))
|
||||
|
||||
|
||||
def check_cashed(path):
|
||||
macros_cached = os.path.join(path, "macros.mmh")
|
||||
if os.path.exists(macros_cached):
|
||||
macros = os.path.join(mmps, "macros.mmh")
|
||||
engines_cached = os.path.join(path, "engines.mmh")
|
||||
engines = os.path.join(mmps, "engines.mmh")
|
||||
|
||||
try:
|
||||
macros_diff = data_diff(macros_cached, macros)
|
||||
engines_diff = data_diff(engines_cached, engines)
|
||||
except IOError:
|
||||
return
|
||||
|
||||
if macros_diff:
|
||||
os.chmod(macros_cached, stat.S_IWRITE)
|
||||
print "new macro(s) found: %s" %macros_diff
|
||||
AppendToFile(macros_cached, list(macros_diff))
|
||||
AppendToFile(build_log, "new macro found: ")
|
||||
AppendToFile(build_log, list(macros_diff))
|
||||
|
||||
if engines_diff:
|
||||
os.chmod(engines_cached, stat.S_IWRITE)
|
||||
print "new engine(s) found: %s" %engines_diff
|
||||
AppendToFile(engines_cached, list(engines_diff))
|
||||
AppendToFile(build_log, "new macro found: ")
|
||||
AppendToFile(build_log, list(engines_diff))
|
||||
|
||||
os.chmod(macros_cached, stat.S_IREAD)
|
||||
os.chmod(engines_cached, stat.S_IREAD)
|
||||
AppendToFile(build_log, '\n')
|
||||
|
||||
|
||||
def create_mmps(build, path):
|
||||
uids = get_UIDs(build)
|
||||
bld_inf = os.path.join(path, "bld.inf")
|
||||
SafeWriteFile(bld_inf, bld_inf_template)
|
||||
for i in range(len(uids)):
|
||||
UID3 = uids[i]
|
||||
idx = i + 1
|
||||
idx2 = i + 1
|
||||
if build == 'full':
|
||||
idx = "%s_test" %idx
|
||||
rss_name = "ScummVM%s.rss" %idx
|
||||
data = rss_template %(idx, idx)
|
||||
SafeWriteFile(os.path.join(path, rss_name), data)
|
||||
data = loc_rss_template %idx
|
||||
rss_loc_name = "ScummVM%s_loc.rss" %idx
|
||||
SafeWriteFile(os.path.join(path, rss_loc_name), data)
|
||||
data = reg_rss_template %(UID3, idx, idx)
|
||||
rss_reg_name = "ScummVM%s_reg.rss" %idx
|
||||
SafeWriteFile(os.path.join(path, rss_reg_name), data)
|
||||
data = mmp_template %(idx, UID3, idx, idx, idx, idx2, idx2)
|
||||
mmp_name = "ScummVM%s.mmp" %idx2
|
||||
SafeWriteFile(os.path.join(path, mmp_name), data)
|
||||
AppendToFile(bld_inf, mmp_name + "\n")
|
||||
check_cashed(path)
|
||||
|
||||
if __name__ == "__main__":
|
||||
create_mmps(build = 'release', path = "S60v3")
|
@ -1,62 +0,0 @@
|
||||
# ScummVM - Graphic Adventure Engine
|
||||
# Copyright (C) 2021 Stryzhniou Fiodar
|
||||
|
||||
# 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/>.
|
||||
|
||||
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
|
||||
hrh_template = """
|
||||
/*
|
||||
* Warning: autogenerated file
|
||||
*/
|
||||
#ifndef ScummHRH
|
||||
#define ScummHRH
|
||||
|
||||
#if defined (UIQ3) || defined (__SERIES60_3X__)
|
||||
#ifdef SCUMMVM_PT_1
|
||||
#define ScummUid %s
|
||||
%s#else
|
||||
#define ScummUid 0x2006efdb // Test app UID.
|
||||
#endif // SCUMMVM_PT_1
|
||||
|
||||
#else
|
||||
#define ScummUid 0x101f9b57
|
||||
#endif // defined (UIQ3) || defined (__SERIES60_3X__)
|
||||
|
||||
#endif
|
||||
"""
|
||||
macro_template = """#elif defined (SCUMMVM_PT_%s)
|
||||
#define ScummUid %s
|
||||
"""
|
||||
|
||||
def Generate_ScummVm_hrh(build):
|
||||
uids = get_UIDs(build)
|
||||
defines = ""
|
||||
for i in range(len(uids)):
|
||||
if i > 0:
|
||||
defines += macro_template %(i+1, uids[i])
|
||||
data = hrh_template %(uids[0], defines)
|
||||
SafeWriteFile(os.path.join("src", "scummvm.hrh"), data)
|
||||
|
||||
if __name__ == "__main__":
|
||||
Generate_ScummVm_hrh(build = "full")
|
||||
|
||||
|
@ -1,83 +0,0 @@
|
||||
from __future__ import with_statement
|
||||
import os
|
||||
from common_names import *
|
||||
from collections import defaultdict as defdict
|
||||
|
||||
|
||||
#format - engine name : list of source files
|
||||
va_macro_src = [("engines\\sci", "resource_patcher.cpp"), ("engines\\ags", "managed_object_pool.h"),
|
||||
("graphics\\macgui", "mactext.cpp")]
|
||||
|
||||
#Format: "file to edit" = "parent folder", src, dst
|
||||
oneline_patch_src = [
|
||||
("ptr.h", ["common", r'#include <cstddef>', r'//#include <cstddef>']),
|
||||
|
||||
("object.cpp", ["gui", '''error("Unable to load widget position for \'%s\'. Please check your theme files", _name.c_str());''', '''warning("Unable to load widget position for \'%s\'. Please check your theme files", _name.c_str());''']),
|
||||
# ("", ["", "", ""]),
|
||||
]
|
||||
|
||||
pt = '..\..\..'
|
||||
|
||||
def fix_va_string(file):
|
||||
print "File to process: %s" %file
|
||||
with open(file) as d:
|
||||
x = d.read()
|
||||
if "#ARGS" in x: #Already patched
|
||||
print "Already patched"
|
||||
return
|
||||
x = x.replace("...", "ARGS...")
|
||||
x = x.replace("__VA_ARGS__", "#ARGS")
|
||||
with open(file, 'w') as f:
|
||||
f.write(x)
|
||||
|
||||
def find_file(folder, files):
|
||||
result = []
|
||||
directory = os.path.join(pt, folder)
|
||||
for dirpath, dirnames, filenames in os.walk(directory):
|
||||
for filename in filenames:
|
||||
if filename in files:
|
||||
result.append(os.path.join(dirpath, filename))
|
||||
return result
|
||||
|
||||
def fix_va_macro(folder, file):
|
||||
files = find_file(folder, file)
|
||||
if not files:
|
||||
return
|
||||
[fix_va_string(x) for x in files]
|
||||
|
||||
def fix_src():
|
||||
d = defdict(list)
|
||||
for k, v in va_macro_src:
|
||||
d[k].append(v)
|
||||
[fix_va_macro(folder, file) for folder, file in d.iteritems()]
|
||||
one_line_patch()
|
||||
|
||||
def apply_patch(file, val):
|
||||
print "File to process: %s\n" %file
|
||||
with open(file) as d:
|
||||
x = d.read()
|
||||
if val[-1] in x: #Already patched
|
||||
print "Already patched"
|
||||
return
|
||||
x = x.replace(val[1], val[-1])
|
||||
with open(file, 'w') as f:
|
||||
f.write(x)
|
||||
|
||||
def patch_line(file, val):
|
||||
val = val[0] #get nested list
|
||||
folder = val[0]
|
||||
if not folder:
|
||||
raise "Prent folder for file %s not set!" %file
|
||||
files = find_file(folder, file)
|
||||
if not files:
|
||||
return
|
||||
[apply_patch(x, val) for x in files]
|
||||
|
||||
def one_line_patch():
|
||||
d = defdict(list)
|
||||
for k, v in oneline_patch_src:
|
||||
d[k].append(v)
|
||||
[patch_line(file, val) for file, val in d.iteritems()]
|
||||
|
||||
if __name__ == '__main__':
|
||||
fix_src()
|
@ -19,11 +19,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
// This define lets us use the system function remove() on Symbian, which
|
||||
// is disabled by default due to a macro conflict.
|
||||
// See backends/platform/symbian/src/portdefs.h .
|
||||
#define SYMBIAN_USE_SYSTEM_REMOVE
|
||||
|
||||
#include "common/scummsys.h"
|
||||
|
||||
#if defined(USE_CLOUD) && defined(USE_LIBCURL)
|
||||
|
@ -63,7 +63,7 @@ static const char USAGE_STRING[] =
|
||||
;
|
||||
|
||||
// DONT FIXME: DO NOT ORDER ALPHABETICALLY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :)
|
||||
#if defined(__SYMBIAN32__) || defined(ANDROID) || defined(__DS__) || defined(__3DS__)
|
||||
#if defined(ANDROID) || defined(__DS__) || defined(__3DS__)
|
||||
static const char HELP_STRING[] = "NoUsageString"; // save more data segment space
|
||||
#else
|
||||
static const char HELP_STRING[] =
|
||||
@ -94,7 +94,7 @@ static const char HELP_STRING[] =
|
||||
" --auto-detect Display a list of games from current or specified directory\n"
|
||||
" and start the first one. Use --path=PATH to specify a directory.\n"
|
||||
" --recursive In combination with --add or --detect recurse down all subdirectories\n"
|
||||
#if defined(WIN32) && !defined(__SYMBIAN32__)
|
||||
#if defined(WIN32)
|
||||
" --console Enable the console window (default:enabled)\n"
|
||||
#endif
|
||||
"\n"
|
||||
@ -245,7 +245,7 @@ static void usage(const char *s, ...) {
|
||||
vsnprintf(buf, STRINGBUFLEN, s, va);
|
||||
va_end(va);
|
||||
|
||||
#if !(defined(__SYMBIAN32__) || defined(__DS__))
|
||||
#if defined(__DS__)
|
||||
printf(USAGE_STRING, s_appName, buf, s_appName, s_appName);
|
||||
#endif
|
||||
exit(1);
|
||||
@ -903,7 +903,7 @@ Common::String parseCommandLine(Common::StringMap &settings, int argc, const cha
|
||||
END_OPTION
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) && !defined(__SYMBIAN32__)
|
||||
#if defined(WIN32)
|
||||
// Optional console window on Windows (default: enabled)
|
||||
DO_LONG_OPTION_BOOL("console")
|
||||
END_OPTION
|
||||
|