From 09b9fbfba9bb0cee15c50a95320d4b9174018e50 Mon Sep 17 00:00:00 2001 From: Tarek Soliman Date: Tue, 5 Jul 2011 00:25:56 -0500 Subject: MAEMO: Add basic platform backend with stubbed keymapper --- backends/platform/maemo/main.cpp | 52 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 backends/platform/maemo/main.cpp (limited to 'backends/platform/maemo/main.cpp') diff --git a/backends/platform/maemo/main.cpp b/backends/platform/maemo/main.cpp new file mode 100644 index 0000000000..6b69cd81d0 --- /dev/null +++ b/backends/platform/maemo/main.cpp @@ -0,0 +1,52 @@ +/* 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. + * + */ + +#if defined(MAEMO) + +#define FORBIDDEN_SYMBOL_EXCEPTION_unistd_h + +#include "backends/platform/maemo/maemo.h" +#include "backends/plugins/sdl/sdl-provider.h" +#include "base/main.h" + +#include + +int main(int argc, char* argv[]) { + g_system = new OSystem_SDL_Maemo(); + assert(g_system); + + ((OSystem_SDL_Maemo *)g_system)->init(); + +#ifdef DYNAMIC_MODULES + PluginManager::instance().addPluginProvider(new SDLPluginProvider()); +#endif + + // Invoke the actual ScummVM main entry point: + int res = scummvm_main(argc, argv); + + // Free OSystem + delete (OSystem_SDL_Maemo *)g_system; + + return res; +} + +#endif -- cgit v1.2.3 From b56e9e2ef11e8eac17c02972a237bfd5e1d6674d Mon Sep 17 00:00:00 2001 From: Tarek Soliman Date: Tue, 11 Oct 2011 18:17:30 -0500 Subject: MAEMO: Migrate OSystem_SDL_Maemo to Maemo namespace --- backends/platform/maemo/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backends/platform/maemo/main.cpp') diff --git a/backends/platform/maemo/main.cpp b/backends/platform/maemo/main.cpp index 6b69cd81d0..7e8a316eb5 100644 --- a/backends/platform/maemo/main.cpp +++ b/backends/platform/maemo/main.cpp @@ -31,10 +31,10 @@ #include int main(int argc, char* argv[]) { - g_system = new OSystem_SDL_Maemo(); + g_system = new Maemo::OSystem_SDL_Maemo(); assert(g_system); - ((OSystem_SDL_Maemo *)g_system)->init(); + ((Maemo::OSystem_SDL_Maemo *)g_system)->init(); #ifdef DYNAMIC_MODULES PluginManager::instance().addPluginProvider(new SDLPluginProvider()); @@ -44,7 +44,7 @@ int main(int argc, char* argv[]) { int res = scummvm_main(argc, argv); // Free OSystem - delete (OSystem_SDL_Maemo *)g_system; + delete (Maemo::OSystem_SDL_Maemo *)g_system; return res; } -- cgit v1.2.3