scummvm/backends/platform/symbian/src/SymbianOS.cpp
2020-08-24 14:19:30 +02:00

214 lines
6.1 KiB
C++

/* 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 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include <sdlapp.h> // for CSDLApp::GetExecutablePathCStr() @ Symbian::GetExecutablePath()
#include <bautils.h>
#include <eikenv.h> // for CEikonEnv::Static()
#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 "common/translation.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"
#ifdef GUI_ENABLE_KEYSDIALOG
#include "backends/platform/symbian/src/SymbianActions.h"
#include "backends/events/symbiansdl/symbiansdl-events.h"
#endif
#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()
:
_RFs(0) {
}
void OSystem_SDL_Symbian::init() {
_RFs = &CEikonEnv::Static()->FsSession();
// Use iconless window: it uses the EScummVM.aif file for the icon.
_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);
}
// 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(static_cast<OSystem_SDL_Symbian *>(g_system)->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();
#ifdef GUI_ENABLE_KEYSDIALOG
GUI::Actions::init();
// Creates the backend managers
if (_eventSource == 0)
_eventSource = new SymbianSdlEventSource();
#endif
if (_mixerManager == 0) {
_mixerManager = new SymbianSdlMixerManager();
// Setup and start mixer
_mixerManager->init();
}
// Call parent implementation of this method
OSystem_SDL::initBackend();
#ifdef GUI_ENABLE_KEYSDIALOG
// Initialize global key mapping for Smartphones
GUI::Actions* actions = GUI::Actions::Instance();
actions->initInstanceMain(this);
actions->loadMapping();
#endif
}
void OSystem_SDL_Symbian::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) {
Common::FSNode pluginsNode(Symbian::GetExecutablePath());
if (pluginsNode.exists() && pluginsNode.isDirectory()) {
s.add("SYMBIAN_DATAFOLDER", new Common::FSDirectory(Symbian::GetExecutablePath()), priority);
}
}
void OSystem_SDL_Symbian::quitWithErrorMsg(const char * /*aMsg*/) {
CEikonEnv::Static()->AlertWin(_L("quitWithErrorMsg()")) ;
if (g_system)
g_system->quit();
}
#ifdef GUI_ENABLE_KEYSDIALOG
void OSystem_SDL_Symbian::quit() {
delete GUI_Actions::Instance();
// Call parent implementation of this method
OSystem_SDL::quit();
}
void OSystem_SDL_Symbian::engineInit() {
// Check mappings for the engine just started
checkMappings();
}
void OSystem_SDL_Symbian::engineDone() {
// Need to reset engine to basic state after an engine has been running
GUI::Actions::Instance()->initInstanceMain(this);
}
void OSystem_SDL_Symbian::checkMappings() {
if (ConfMan.get("gameid").empty() || GUI::Actions::Instance()->initialized())
return;
GUI::Actions::Instance()->initInstanceGame();
}
#endif
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) {
#ifdef GUI_ENABLE_KEYSDIALOG
if (f == kFeatureJoystickDeadzone)
return false;
#endif
if (f == kFeatureFullscreenMode)
return false;
return OSystem_SDL::hasFeature(f);
}
RFs& OSystem_SDL_Symbian::FsSession() {
return *_RFs;
}
// 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;
}