2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:43:35 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-07-13 01:31:43 -06:00
|
|
|
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <cstddef>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <cstdio>
|
2014-02-22 15:36:30 -07:00
|
|
|
#include <cstring>
|
2011-01-15 03:33:07 -07:00
|
|
|
#include <getopt.h>
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2015-09-04 00:14:10 -06:00
|
|
|
#include <unistd.h>
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-04-13 17:15:23 -06:00
|
|
|
#include "Common/Event.h"
|
2015-09-26 15:13:07 -06:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-06-05 17:29:54 -06:00
|
|
|
#include "Common/Logging/LogManager.h"
|
2009-05-15 02:55:46 -06:00
|
|
|
|
2014-02-18 18:56:29 -07:00
|
|
|
#include "Core/BootManager.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
2014-08-02 00:21:03 -06:00
|
|
|
#include "Core/Host.h"
|
2014-08-05 22:34:31 -06:00
|
|
|
#include "Core/State.h"
|
2014-02-18 18:56:29 -07:00
|
|
|
#include "Core/HW/Wiimote.h"
|
2015-06-01 06:47:18 -06:00
|
|
|
#include "Core/IPC_HLE/WII_IPC_HLE_Device_usb.h"
|
|
|
|
#include "Core/IPC_HLE/WII_IPC_HLE_WiiMote.h"
|
2014-02-18 18:56:29 -07:00
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
|
|
|
|
2014-10-04 13:12:15 -06:00
|
|
|
#include "UICommon/UICommon.h"
|
|
|
|
|
2014-02-18 18:56:29 -07:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
2014-08-06 19:24:42 -06:00
|
|
|
static bool rendererHasFocus = true;
|
2015-01-04 09:09:56 -07:00
|
|
|
static bool rendererIsFullscreen = false;
|
2014-08-06 19:24:42 -06:00
|
|
|
static bool running = true;
|
2010-05-26 15:23:44 -06:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
class Platform
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Init() = 0;
|
2014-08-05 22:44:21 -06:00
|
|
|
virtual void SetTitle(const std::string &title) = 0;
|
2014-08-05 22:34:31 -06:00
|
|
|
virtual void MainLoop() = 0;
|
|
|
|
virtual void Shutdown() = 0;
|
|
|
|
virtual ~Platform() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
static Platform* platform;
|
|
|
|
|
2011-02-08 08:36:15 -07:00
|
|
|
void Host_NotifyMapLoaded() {}
|
|
|
|
void Host_RefreshDSPDebuggerWindow() {}
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2014-08-06 19:24:42 -06:00
|
|
|
static Common::Event updateMainFrameEvent;
|
2010-03-16 07:18:52 -06:00
|
|
|
void Host_Message(int Id)
|
|
|
|
{
|
2015-06-07 19:43:39 -06:00
|
|
|
if (Id == WM_USER_STOP)
|
2014-12-02 17:20:52 -07:00
|
|
|
running = false;
|
2010-03-16 07:18:52 -06:00
|
|
|
}
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2014-11-01 21:51:44 -06:00
|
|
|
static void* s_window_handle;
|
2011-02-12 14:25:49 -07:00
|
|
|
void* Host_GetRenderHandle()
|
|
|
|
{
|
2014-11-01 21:51:44 -06:00
|
|
|
return s_window_handle;
|
2011-02-12 14:25:49 -07:00
|
|
|
}
|
|
|
|
|
2014-08-05 22:44:21 -06:00
|
|
|
void Host_UpdateTitle(const std::string& title)
|
|
|
|
{
|
|
|
|
platform->SetTitle(title);
|
|
|
|
}
|
2010-04-18 21:06:18 -06:00
|
|
|
|
2008-09-07 14:26:38 -06:00
|
|
|
void Host_UpdateDisasmDialog(){}
|
|
|
|
|
2008-09-07 15:06:55 -06:00
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
updateMainFrameEvent.Set();
|
|
|
|
}
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2011-01-25 05:52:20 -07:00
|
|
|
void Host_RequestRenderWindowSize(int width, int height) {}
|
2014-07-16 07:53:33 -06:00
|
|
|
|
2014-07-26 04:43:49 -06:00
|
|
|
void Host_RequestFullscreen(bool enable_fullscreen) {}
|
2014-07-16 07:53:33 -06:00
|
|
|
|
2011-02-12 14:25:49 -07:00
|
|
|
void Host_SetStartupDebuggingParameters()
|
|
|
|
{
|
2015-06-12 05:56:53 -06:00
|
|
|
SConfig& StartUp = SConfig::GetInstance();
|
2011-02-12 14:25:49 -07:00
|
|
|
StartUp.bEnableDebugging = false;
|
|
|
|
StartUp.bBootToPause = false;
|
|
|
|
}
|
2011-01-08 10:35:34 -07:00
|
|
|
|
2014-07-16 08:24:40 -06:00
|
|
|
bool Host_UIHasFocus()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-04-11 19:33:10 -06:00
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return rendererHasFocus;
|
|
|
|
}
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2015-01-04 09:09:56 -07:00
|
|
|
bool Host_RendererIsFullscreen()
|
|
|
|
{
|
|
|
|
return rendererIsFullscreen;
|
|
|
|
}
|
|
|
|
|
2015-06-01 06:47:18 -06:00
|
|
|
void Host_ConnectWiimote(int wm_idx, bool connect)
|
|
|
|
{
|
2015-06-12 05:56:53 -06:00
|
|
|
if (Core::IsRunning() && SConfig::GetInstance().bWii)
|
2015-06-01 06:47:18 -06:00
|
|
|
{
|
|
|
|
bool was_unpaused = Core::PauseAndLock(true);
|
|
|
|
GetUsbPointer()->AccessWiiMote(wm_idx | 0x100)->Activate(connect);
|
|
|
|
Host_UpdateMainFrame();
|
|
|
|
Core::PauseAndLock(false, was_unpaused);
|
|
|
|
}
|
|
|
|
}
|
2011-01-08 10:35:34 -07:00
|
|
|
|
2008-10-30 10:36:45 -06:00
|
|
|
void Host_SetWiiMoteConnectionState(int _State) {}
|
|
|
|
|
2014-08-02 00:21:03 -06:00
|
|
|
void Host_ShowVideoConfig(void*, const std::string&, const std::string&) {}
|
|
|
|
|
2014-01-19 09:11:07 -07:00
|
|
|
#if HAVE_X11
|
2014-08-05 22:34:31 -06:00
|
|
|
#include <X11/keysym.h>
|
2014-11-24 18:26:33 -07:00
|
|
|
#include "DolphinWX/X11Utils.h"
|
2010-11-24 19:26:46 -07:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
class PlatformX11 : public Platform
|
|
|
|
{
|
|
|
|
Display *dpy;
|
2014-08-06 20:11:50 -06:00
|
|
|
Window win;
|
2014-08-05 22:34:31 -06:00
|
|
|
Cursor blankCursor = None;
|
2010-04-21 22:28:34 -06:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2014-08-05 22:34:31 -06:00
|
|
|
X11Utils::XRRConfiguration *XRRConfig;
|
2010-04-21 22:28:34 -06:00
|
|
|
#endif
|
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
void Init() override
|
2010-04-21 22:28:34 -06:00
|
|
|
{
|
2014-08-05 22:34:31 -06:00
|
|
|
XInitThreads();
|
2014-09-03 21:22:12 -06:00
|
|
|
dpy = XOpenDisplay(nullptr);
|
2015-04-10 11:07:11 -06:00
|
|
|
if (!dpy)
|
|
|
|
{
|
|
|
|
PanicAlert("No X11 display found");
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-04-21 22:28:34 -06:00
|
|
|
|
2014-08-06 20:11:50 -06:00
|
|
|
win = XCreateSimpleWindow(dpy, DefaultRootWindow(dpy),
|
2015-06-12 05:56:53 -06:00
|
|
|
SConfig::GetInstance().iRenderWindowXPos,
|
|
|
|
SConfig::GetInstance().iRenderWindowYPos,
|
|
|
|
SConfig::GetInstance().iRenderWindowWidth,
|
|
|
|
SConfig::GetInstance().iRenderWindowHeight,
|
2014-08-06 20:11:50 -06:00
|
|
|
0, 0, BlackPixel(dpy, 0));
|
2014-08-05 22:34:31 -06:00
|
|
|
XSelectInput(dpy, win, KeyPressMask | FocusChangeMask);
|
2014-08-06 12:58:34 -06:00
|
|
|
Atom wmProtocols[1];
|
|
|
|
wmProtocols[0] = XInternAtom(dpy, "WM_DELETE_WINDOW", True);
|
|
|
|
XSetWMProtocols(dpy, win, wmProtocols, 1);
|
2014-08-06 20:11:50 -06:00
|
|
|
XMapRaised(dpy, win);
|
|
|
|
XFlush(dpy);
|
2015-02-15 12:43:31 -07:00
|
|
|
s_window_handle = (void*)win;
|
2014-08-05 22:34:31 -06:00
|
|
|
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bDisableScreenSaver)
|
2014-08-05 22:34:31 -06:00
|
|
|
X11Utils::InhibitScreensaver(dpy, win, true);
|
|
|
|
|
2010-04-21 22:28:34 -06:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2014-08-05 22:34:31 -06:00
|
|
|
XRRConfig = new X11Utils::XRRConfiguration(dpy, win);
|
2010-04-21 22:28:34 -06:00
|
|
|
#endif
|
|
|
|
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor)
|
2010-04-21 22:28:34 -06:00
|
|
|
{
|
2014-08-05 22:34:31 -06:00
|
|
|
// make a blank cursor
|
|
|
|
Pixmap Blank;
|
|
|
|
XColor DummyColor;
|
2015-02-15 12:43:31 -07:00
|
|
|
char ZeroData[1] = { 0 };
|
|
|
|
Blank = XCreateBitmapFromData(dpy, win, ZeroData, 1, 1);
|
2014-08-05 22:34:31 -06:00
|
|
|
blankCursor = XCreatePixmapCursor(dpy, Blank, Blank, &DummyColor, &DummyColor, 0, 0);
|
2015-02-15 12:43:31 -07:00
|
|
|
XFreePixmap(dpy, Blank);
|
2014-08-05 22:34:31 -06:00
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
}
|
2014-08-06 20:11:50 -06:00
|
|
|
}
|
2014-08-05 22:34:31 -06:00
|
|
|
|
2014-08-05 22:44:21 -06:00
|
|
|
void SetTitle(const std::string &string) override
|
|
|
|
{
|
|
|
|
XStoreName(dpy, win, string.c_str());
|
|
|
|
}
|
|
|
|
|
2014-08-06 20:11:50 -06:00
|
|
|
void MainLoop() override
|
|
|
|
{
|
2015-06-12 05:56:53 -06:00
|
|
|
bool fullscreen = SConfig::GetInstance().bFullscreen;
|
2014-08-05 22:34:31 -06:00
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
{
|
2015-01-04 09:09:56 -07:00
|
|
|
rendererIsFullscreen = X11Utils::ToggleFullscreen(dpy, win);
|
2014-08-05 22:34:31 -06:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
XRRConfig->ToggleDisplayMode(True);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual loop
|
|
|
|
while (running)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
KeySym key;
|
2014-09-04 23:50:40 -06:00
|
|
|
for (int num_events = XPending(dpy); num_events > 0; num_events--)
|
2010-04-21 22:28:34 -06:00
|
|
|
{
|
2014-09-04 23:50:40 -06:00
|
|
|
XNextEvent(dpy, &event);
|
|
|
|
switch (event.type)
|
2014-08-05 22:34:31 -06:00
|
|
|
{
|
2014-09-04 23:50:40 -06:00
|
|
|
case KeyPress:
|
|
|
|
key = XLookupKeysym((XKeyEvent*)&event, 0);
|
|
|
|
if (key == XK_Escape)
|
2010-04-21 22:28:34 -06:00
|
|
|
{
|
2014-09-04 23:50:40 -06:00
|
|
|
if (Core::GetState() == Core::CORE_RUN)
|
|
|
|
{
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor)
|
2014-09-04 23:50:40 -06:00
|
|
|
XUndefineCursor(dpy, win);
|
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor)
|
2014-09-04 23:50:40 -06:00
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
|
|
|
}
|
2010-04-21 22:28:34 -06:00
|
|
|
}
|
2014-09-04 23:50:40 -06:00
|
|
|
else if ((key == XK_Return) && (event.xkey.state & Mod1Mask))
|
2010-04-21 22:28:34 -06:00
|
|
|
{
|
2014-09-04 23:50:40 -06:00
|
|
|
fullscreen = !fullscreen;
|
|
|
|
X11Utils::ToggleFullscreen(dpy, win);
|
2010-04-21 22:28:34 -06:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2014-09-04 23:50:40 -06:00
|
|
|
XRRConfig->ToggleDisplayMode(fullscreen);
|
2010-04-21 22:28:34 -06:00
|
|
|
#endif
|
2014-09-04 23:50:40 -06:00
|
|
|
}
|
|
|
|
else if (key >= XK_F1 && key <= XK_F8)
|
|
|
|
{
|
|
|
|
int slot_number = key - XK_F1 + 1;
|
|
|
|
if (event.xkey.state & ShiftMask)
|
|
|
|
State::Save(slot_number);
|
|
|
|
else
|
|
|
|
State::Load(slot_number);
|
|
|
|
}
|
|
|
|
else if (key == XK_F9)
|
|
|
|
Core::SaveScreenShot();
|
|
|
|
else if (key == XK_F11)
|
|
|
|
State::LoadLastSaved();
|
|
|
|
else if (key == XK_F12)
|
|
|
|
{
|
|
|
|
if (event.xkey.state & ShiftMask)
|
|
|
|
State::UndoLoadState();
|
|
|
|
else
|
|
|
|
State::UndoSaveState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FocusIn:
|
|
|
|
rendererHasFocus = true;
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor &&
|
2014-09-04 23:50:40 -06:00
|
|
|
Core::GetState() != Core::CORE_PAUSE)
|
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
break;
|
|
|
|
case FocusOut:
|
|
|
|
rendererHasFocus = false;
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor)
|
2014-09-04 23:50:40 -06:00
|
|
|
XUndefineCursor(dpy, win);
|
|
|
|
break;
|
|
|
|
case ClientMessage:
|
|
|
|
if ((unsigned long) event.xclient.data.l[0] == XInternAtom(dpy, "WM_DELETE_WINDOW", False))
|
|
|
|
running = false;
|
|
|
|
break;
|
2014-08-05 22:34:31 -06:00
|
|
|
}
|
2010-04-21 22:28:34 -06:00
|
|
|
}
|
2014-08-05 22:34:31 -06:00
|
|
|
if (!fullscreen)
|
|
|
|
{
|
|
|
|
Window winDummy;
|
|
|
|
unsigned int borderDummy, depthDummy;
|
|
|
|
XGetGeometry(dpy, win, &winDummy,
|
2015-06-12 05:56:53 -06:00
|
|
|
&SConfig::GetInstance().iRenderWindowXPos,
|
|
|
|
&SConfig::GetInstance().iRenderWindowYPos,
|
|
|
|
(unsigned int *)&SConfig::GetInstance().iRenderWindowWidth,
|
|
|
|
(unsigned int *)&SConfig::GetInstance().iRenderWindowHeight,
|
2014-08-05 22:34:31 -06:00
|
|
|
&borderDummy, &depthDummy);
|
2015-01-04 09:09:56 -07:00
|
|
|
rendererIsFullscreen = false;
|
2014-08-05 22:34:31 -06:00
|
|
|
}
|
2014-09-04 23:50:40 -06:00
|
|
|
usleep(100000);
|
2010-04-21 22:28:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
void Shutdown() override
|
|
|
|
{
|
2010-04-21 22:28:34 -06:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2014-08-05 22:34:31 -06:00
|
|
|
delete XRRConfig;
|
2010-04-21 22:28:34 -06:00
|
|
|
#endif
|
2010-11-24 19:26:46 -07:00
|
|
|
|
2015-06-12 05:56:53 -06:00
|
|
|
if (SConfig::GetInstance().bHideCursor)
|
2014-08-05 22:34:31 -06:00
|
|
|
XFreeCursor(dpy, blankCursor);
|
|
|
|
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
}
|
|
|
|
};
|
2010-04-21 22:28:34 -06:00
|
|
|
#endif
|
2009-01-12 13:52:45 -07:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
static Platform* GetPlatform()
|
2010-06-03 22:59:07 -06:00
|
|
|
{
|
2014-08-05 22:34:31 -06:00
|
|
|
#if HAVE_X11
|
|
|
|
return new PlatformX11();
|
2011-03-08 16:25:37 -07:00
|
|
|
#endif
|
2014-08-05 22:34:31 -06:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2011-01-15 03:33:07 -07:00
|
|
|
int ch, help = 0;
|
|
|
|
struct option longopts[] = {
|
2014-03-09 14:14:26 -06:00
|
|
|
{ "exec", no_argument, nullptr, 'e' },
|
|
|
|
{ "help", no_argument, nullptr, 'h' },
|
|
|
|
{ "version", no_argument, nullptr, 'v' },
|
|
|
|
{ nullptr, 0, nullptr, 0 }
|
2011-01-15 03:33:07 -07:00
|
|
|
};
|
|
|
|
|
2014-02-16 21:51:41 -07:00
|
|
|
while ((ch = getopt_long(argc, argv, "eh?v", longopts, 0)) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
2011-01-15 03:33:07 -07:00
|
|
|
case 'e':
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
help = 1;
|
|
|
|
break;
|
|
|
|
case 'v':
|
2011-08-21 15:30:19 -06:00
|
|
|
fprintf(stderr, "%s\n", scm_rev_str);
|
2011-01-15 03:33:07 -07:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2008-09-07 15:02:57 -06:00
|
|
|
|
2014-02-16 21:51:41 -07:00
|
|
|
if (help == 1 || argc == optind)
|
|
|
|
{
|
2011-08-21 15:30:19 -06:00
|
|
|
fprintf(stderr, "%s\n\n", scm_rev_str);
|
2014-06-06 20:30:39 -06:00
|
|
|
fprintf(stderr, "A multi-platform GameCube/Wii emulator\n\n");
|
2011-01-15 03:33:07 -07:00
|
|
|
fprintf(stderr, "Usage: %s [-e <file>] [-h] [-v]\n", argv[0]);
|
2015-04-18 07:03:42 -06:00
|
|
|
fprintf(stderr, " -e, --exec Load the specified file\n");
|
|
|
|
fprintf(stderr, " -h, --help Show this help message\n");
|
|
|
|
fprintf(stderr, " -v, --version Print version and exit\n");
|
2011-01-15 03:33:07 -07:00
|
|
|
return 1;
|
2008-09-07 15:02:57 -06:00
|
|
|
}
|
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
platform = GetPlatform();
|
|
|
|
if (!platform)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "No platform found\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-02-25 02:23:42 -07:00
|
|
|
UICommon::SetUserDirectory(""); // Auto-detect user folder
|
2014-10-04 13:12:15 -06:00
|
|
|
UICommon::Init();
|
2009-05-15 02:55:46 -06:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
platform->Init();
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
if (!BootManager::BootCore(argv[optind]))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not boot %s\n", argv[optind]);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
while (!Core::IsRunning())
|
|
|
|
updateMainFrameEvent.Wait();
|
2011-01-15 04:05:22 -07:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
platform->MainLoop();
|
|
|
|
Core::Stop();
|
|
|
|
while (PowerPC::GetState() != PowerPC::CPU_POWERDOWN)
|
|
|
|
updateMainFrameEvent.Wait();
|
2010-02-19 10:05:26 -07:00
|
|
|
|
2015-06-06 06:52:09 -06:00
|
|
|
Core::Shutdown();
|
2014-11-01 20:31:47 -06:00
|
|
|
platform->Shutdown();
|
2014-10-04 13:12:15 -06:00
|
|
|
UICommon::Shutdown();
|
2008-09-07 14:26:38 -06:00
|
|
|
|
2014-08-05 22:34:31 -06:00
|
|
|
delete platform;
|
|
|
|
|
2011-01-15 03:33:07 -07:00
|
|
|
return 0;
|
2008-09-07 14:26:38 -06:00
|
|
|
}
|