scummvm/backends/platform/sdl/main.cpp

67 lines
2 KiB
C++
Raw Normal View History

2011-04-16 14:08:33 +02:00
/* ScummVM - Graphic Adventure Engine
*
2011-04-16 14:08:33 +02:00
* 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 "common/scummsys.h"
2010-01-21 19:25:03 +00:00
// Several SDL based ports use a custom main, and hence do not want to compile
// of this file. The following "#if" ensures that.
2011-06-09 11:17:15 +02:00
#if !defined(POSIX) && \
2011-04-14 12:41:26 +02:00
!defined(WIN32) && \
2012-01-06 22:56:21 +01:00
!defined(MAEMO) && \
2011-04-14 12:41:26 +02:00
!defined(__SYMBIAN32__) && \
!defined(_WIN32_WCE) && \
!defined(__amigaos4__) && \
!defined(DINGUX) && \
!defined(CAANOO) && \
!defined(LINUXMOTO) && \
2011-06-09 11:17:15 +02:00
!defined(SAMSUNGTV) && \
2011-07-20 06:58:19 +02:00
!defined(PLAYSTATION3) && \
2011-04-14 12:41:26 +02:00
!defined(OPENPANDORA)
2010-01-21 19:25:03 +00:00
#include "backends/platform/sdl/sdl.h"
#include "backends/plugins/sdl/sdl-provider.h"
#include "base/main.h"
int main(int argc, char *argv[]) {
// Create our OSystem instance
g_system = new OSystem_SDL();
assert(g_system);
2011-04-14 12:41:26 +02:00
// Pre initialize the backend
((OSystem_SDL *)g_system)->init();
#ifdef DYNAMIC_MODULES
PluginManager::instance().addPluginProvider(new SDLPluginProvider());
#endif
2012-02-10 07:51:41 +01:00
// Invoke the actual ScummVM main entry point:
2012-01-06 11:37:57 +01:00
int res = residualvm_main(argc, argv);
2011-04-14 12:41:26 +02:00
// Free OSystem
delete (OSystem_SDL *)g_system;
return res;
}
#endif