2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-13 07:31:43 +00:00
|
|
|
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <cstdarg>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstddef>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <cstdio>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstring>
|
2011-01-15 10:33:07 +00:00
|
|
|
#include <getopt.h>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/Common.h"
|
2014-04-13 23:15:23 +00:00
|
|
|
#include "Common/Event.h"
|
2014-06-05 23:29:54 +00:00
|
|
|
#include "Common/Logging/LogManager.h"
|
2009-05-15 08:55:46 +00:00
|
|
|
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "Core/BootManager.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/CoreParameter.h"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "Core/HW/Wiimote.h"
|
|
|
|
#include "Core/PowerPC/PowerPC.h"
|
|
|
|
|
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
2014-01-19 16:11:07 +00:00
|
|
|
#if HAVE_X11
|
2010-04-12 01:33:10 +00:00
|
|
|
#include <X11/keysym.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/State.h"
|
|
|
|
#include "DolphinWX/X11Utils.h"
|
2010-03-16 03:34:27 +00:00
|
|
|
#endif
|
|
|
|
|
2014-01-19 16:11:07 +00:00
|
|
|
#if HAVE_WAYLAND
|
|
|
|
#include <wayland-client.h>
|
2014-02-24 06:34:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_EGL
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/GLInterface/GLInterface.h"
|
2014-01-19 16:11:07 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-04 04:59:07 +00:00
|
|
|
#ifdef __APPLE__
|
2011-01-15 10:33:07 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2010-06-04 04:59:07 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-26 21:23:44 +00:00
|
|
|
bool rendererHasFocus = true;
|
2011-01-15 10:33:07 +00:00
|
|
|
bool running = true;
|
2010-05-26 21:23:44 +00:00
|
|
|
|
2011-02-08 15:36:15 +00:00
|
|
|
void Host_NotifyMapLoaded() {}
|
|
|
|
void Host_RefreshDSPDebuggerWindow() {}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2009-08-01 19:16:15 +00:00
|
|
|
void Host_ShowJitResults(unsigned int address){}
|
|
|
|
|
2010-03-16 13:18:52 +00:00
|
|
|
Common::Event updateMainFrameEvent;
|
|
|
|
void Host_Message(int Id)
|
|
|
|
{
|
2010-03-16 13:30:52 +00:00
|
|
|
switch (Id)
|
|
|
|
{
|
|
|
|
case WM_USER_STOP:
|
2010-04-12 01:33:10 +00:00
|
|
|
running = false;
|
2010-03-16 13:30:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-03-16 13:18:52 +00:00
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2011-02-12 21:25:49 +00:00
|
|
|
void* Host_GetRenderHandle()
|
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2011-02-12 21:25:49 +00:00
|
|
|
}
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
void* Host_GetInstance() { return nullptr; }
|
2011-02-12 21:25:49 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
void Host_UpdateTitle(const std::string& title){};
|
2010-04-19 03:06:18 +00:00
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
void Host_UpdateLogDisplay(){}
|
|
|
|
|
|
|
|
void Host_UpdateDisasmDialog(){}
|
|
|
|
|
2008-09-07 21:06:55 +00:00
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
updateMainFrameEvent.Set();
|
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
|
|
|
void Host_UpdateBreakPointView(){}
|
|
|
|
|
2011-01-07 04:57:59 +00:00
|
|
|
void Host_GetRenderWindowSize(int& x, int& y, int& width, int& height)
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
x = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowXPos;
|
|
|
|
y = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowYPos;
|
|
|
|
width = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowWidth;
|
|
|
|
height = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight;
|
|
|
|
}
|
|
|
|
|
2011-01-25 12:52:20 +00:00
|
|
|
void Host_RequestRenderWindowSize(int width, int height) {}
|
2011-02-12 21:25:49 +00:00
|
|
|
void Host_SetStartupDebuggingParameters()
|
|
|
|
{
|
2014-02-17 04:51:41 +00:00
|
|
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
2011-02-12 21:25:49 +00:00
|
|
|
StartUp.bEnableDebugging = false;
|
|
|
|
StartUp.bBootToPause = false;
|
|
|
|
}
|
2011-01-08 17:35:34 +00:00
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return rendererHasFocus;
|
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2011-01-08 17:35:34 +00:00
|
|
|
void Host_ConnectWiimote(int wm_idx, bool connect) {}
|
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
void Host_SetWaitCursor(bool enable){}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
void Host_UpdateStatusBar(const std::string& text, int filed){}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2011-01-15 10:33:07 +00:00
|
|
|
void Host_SysMessage(const char *fmt, ...)
|
2008-09-10 01:01:28 +00:00
|
|
|
{
|
|
|
|
va_list list;
|
|
|
|
char msg[512];
|
|
|
|
|
|
|
|
va_start(list, fmt);
|
|
|
|
vsprintf(msg, fmt, list);
|
|
|
|
va_end(list);
|
|
|
|
|
|
|
|
size_t len = strlen(msg);
|
2014-02-17 04:51:41 +00:00
|
|
|
if (msg[len - 1] != '\n')
|
|
|
|
{
|
2008-09-10 01:01:28 +00:00
|
|
|
msg[len - 1] = '\n';
|
|
|
|
msg[len] = '\0';
|
|
|
|
}
|
2014-03-29 10:05:44 +00:00
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
fprintf(stderr, "%s", msg);
|
2008-09-10 01:01:28 +00:00
|
|
|
}
|
|
|
|
|
2008-10-30 16:36:45 +00:00
|
|
|
void Host_SetWiiMoteConnectionState(int _State) {}
|
|
|
|
|
2014-01-19 16:11:07 +00:00
|
|
|
#if HAVE_X11
|
2010-04-22 04:28:34 +00:00
|
|
|
void X11_MainLoop()
|
|
|
|
{
|
|
|
|
bool fullscreen = SConfig::GetInstance().m_LocalCoreStartupParameter.bFullscreen;
|
|
|
|
while (Core::GetState() == Core::CORE_UNINITIALIZED)
|
|
|
|
updateMainFrameEvent.Wait();
|
|
|
|
|
|
|
|
Display *dpy = XOpenDisplay(0);
|
2010-07-16 14:14:57 +00:00
|
|
|
Window win = (Window)Core::GetWindowHandle();
|
2010-08-08 00:13:05 +00:00
|
|
|
XSelectInput(dpy, win, KeyPressMask | FocusChangeMask);
|
2010-04-22 04:28:34 +00:00
|
|
|
|
2011-08-25 19:44:13 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bDisableScreenSaver)
|
|
|
|
X11Utils::InhibitScreensaver(dpy, win, true);
|
2010-11-25 02:26:46 +00:00
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
X11Utils::XRRConfiguration *XRRConfig = new X11Utils::XRRConfiguration(dpy, win);
|
|
|
|
#endif
|
|
|
|
|
2010-07-23 23:51:34 +00:00
|
|
|
Cursor blankCursor = None;
|
2010-04-22 04:28:34 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
{
|
|
|
|
// make a blank cursor
|
|
|
|
Pixmap Blank;
|
|
|
|
XColor DummyColor;
|
|
|
|
char ZeroData[1] = {0};
|
|
|
|
Blank = XCreateBitmapFromData (dpy, win, ZeroData, 1, 1);
|
|
|
|
blankCursor = XCreatePixmapCursor(dpy, Blank, Blank, &DummyColor, &DummyColor, 0, 0);
|
|
|
|
XFreePixmap (dpy, Blank);
|
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
{
|
2010-07-16 14:14:57 +00:00
|
|
|
X11Utils::EWMH_Fullscreen(dpy, _NET_WM_STATE_TOGGLE);
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
XRRConfig->ToggleDisplayMode(True);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual loop
|
|
|
|
while (running)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
KeySym key;
|
|
|
|
for (int num_events = XPending(dpy); num_events > 0; num_events--)
|
|
|
|
{
|
|
|
|
XNextEvent(dpy, &event);
|
2014-03-10 11:30:55 +00:00
|
|
|
switch (event.type)
|
2010-04-22 04:28:34 +00:00
|
|
|
{
|
|
|
|
case KeyPress:
|
|
|
|
key = XLookupKeysym((XKeyEvent*)&event, 0);
|
|
|
|
if (key == XK_Escape)
|
|
|
|
{
|
|
|
|
if (Core::GetState() == Core::CORE_RUN)
|
|
|
|
{
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
XUndefineCursor(dpy, win);
|
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((key == XK_Return) && (event.xkey.state & Mod1Mask))
|
|
|
|
{
|
|
|
|
fullscreen = !fullscreen;
|
2010-07-16 14:14:57 +00:00
|
|
|
X11Utils::EWMH_Fullscreen(dpy, _NET_WM_STATE_TOGGLE);
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
XRRConfig->ToggleDisplayMode(fullscreen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (key >= XK_F1 && key <= XK_F8)
|
|
|
|
{
|
|
|
|
int slot_number = key - XK_F1 + 1;
|
|
|
|
if (event.xkey.state & ShiftMask)
|
2011-03-17 10:17:45 +00:00
|
|
|
State::Save(slot_number);
|
2010-04-22 04:28:34 +00:00
|
|
|
else
|
2011-03-17 10:17:45 +00:00
|
|
|
State::Load(slot_number);
|
2010-04-22 04:28:34 +00:00
|
|
|
}
|
|
|
|
else if (key == XK_F9)
|
2011-03-16 01:59:24 +00:00
|
|
|
Core::SaveScreenShot();
|
2010-04-22 04:28:34 +00:00
|
|
|
else if (key == XK_F11)
|
2011-03-17 10:17:45 +00:00
|
|
|
State::LoadLastSaved();
|
2010-04-22 04:28:34 +00:00
|
|
|
else if (key == XK_F12)
|
|
|
|
{
|
|
|
|
if (event.xkey.state & ShiftMask)
|
2011-03-17 10:17:45 +00:00
|
|
|
State::UndoLoadState();
|
2010-04-22 04:28:34 +00:00
|
|
|
else
|
2011-03-17 10:17:45 +00:00
|
|
|
State::UndoSaveState();
|
2010-04-22 04:28:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FocusIn:
|
|
|
|
rendererHasFocus = true;
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
|
|
|
Core::GetState() != Core::CORE_PAUSE)
|
|
|
|
XDefineCursor(dpy, win, blankCursor);
|
|
|
|
break;
|
|
|
|
case FocusOut:
|
|
|
|
rendererHasFocus = false;
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
XUndefineCursor(dpy, win);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!fullscreen)
|
|
|
|
{
|
|
|
|
Window winDummy;
|
|
|
|
unsigned int borderDummy, depthDummy;
|
|
|
|
XGetGeometry(dpy, win, &winDummy,
|
|
|
|
&SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowXPos,
|
|
|
|
&SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowYPos,
|
|
|
|
(unsigned int *)&SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowWidth,
|
|
|
|
(unsigned int *)&SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight,
|
|
|
|
&borderDummy, &depthDummy);
|
|
|
|
}
|
|
|
|
usleep(100000);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
delete XRRConfig;
|
|
|
|
#endif
|
2011-08-25 19:44:13 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bDisableScreenSaver)
|
|
|
|
X11Utils::InhibitScreensaver(dpy, win, false);
|
2010-11-25 02:26:46 +00:00
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
XFreeCursor(dpy, blankCursor);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
Core::Stop();
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-12 20:52:45 +00:00
|
|
|
|
2014-01-19 16:11:07 +00:00
|
|
|
#if HAVE_WAYLAND
|
|
|
|
void Wayland_MainLoop()
|
|
|
|
{
|
|
|
|
// Wait for display to be initialized
|
2014-03-10 11:30:55 +00:00
|
|
|
while (!GLWin.wl_display)
|
2014-01-19 16:11:07 +00:00
|
|
|
usleep(20000);
|
|
|
|
|
|
|
|
GLWin.running = 1;
|
|
|
|
|
|
|
|
while (GLWin.running)
|
|
|
|
wl_display_dispatch(GLWin.wl_display);
|
|
|
|
|
|
|
|
if (GLWin.wl_display)
|
|
|
|
wl_display_disconnect(GLWin.wl_display);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-01-15 11:05:22 +00:00
|
|
|
int main(int argc, char* argv[])
|
2010-06-04 04:59:07 +00:00
|
|
|
{
|
2011-03-08 23:25:37 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2013-10-29 05:23:17 +00:00
|
|
|
NSEvent *event = [[NSEvent alloc] init];
|
2011-03-08 23:25:37 +00:00
|
|
|
[NSApplication sharedApplication];
|
|
|
|
[NSApp activateIgnoringOtherApps: YES];
|
|
|
|
[NSApp finishLaunching];
|
|
|
|
#endif
|
2011-01-15 10:33:07 +00:00
|
|
|
int ch, help = 0;
|
|
|
|
struct option longopts[] = {
|
2014-03-09 20:14:26 +00:00
|
|
|
{ "exec", no_argument, nullptr, 'e' },
|
|
|
|
{ "help", no_argument, nullptr, 'h' },
|
|
|
|
{ "version", no_argument, nullptr, 'v' },
|
|
|
|
{ nullptr, 0, nullptr, 0 }
|
2011-01-15 10:33:07 +00:00
|
|
|
};
|
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
while ((ch = getopt_long(argc, argv, "eh?v", longopts, 0)) != -1)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
2011-01-15 10:33:07 +00:00
|
|
|
case 'e':
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
help = 1;
|
|
|
|
break;
|
|
|
|
case 'v':
|
2011-08-21 21:30:19 +00:00
|
|
|
fprintf(stderr, "%s\n", scm_rev_str);
|
2011-01-15 10:33:07 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2008-09-07 21:02:57 +00:00
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
if (help == 1 || argc == optind)
|
|
|
|
{
|
2011-08-21 21:30:19 +00:00
|
|
|
fprintf(stderr, "%s\n\n", scm_rev_str);
|
2014-06-07 02:30:39 +00:00
|
|
|
fprintf(stderr, "A multi-platform GameCube/Wii emulator\n\n");
|
2011-01-15 10:33:07 +00:00
|
|
|
fprintf(stderr, "Usage: %s [-e <file>] [-h] [-v]\n", argv[0]);
|
2014-02-17 04:51:41 +00:00
|
|
|
fprintf(stderr, " -e, --exec Load the specified file\n");
|
|
|
|
fprintf(stderr, " -h, --help Show this help message\n");
|
|
|
|
fprintf(stderr, " -v, --help Print version and exit\n");
|
2011-01-15 10:33:07 +00:00
|
|
|
return 1;
|
2008-09-07 21:02:57 +00:00
|
|
|
}
|
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
LogManager::Init();
|
|
|
|
SConfig::Init();
|
2011-01-31 03:15:14 +00:00
|
|
|
VideoBackend::PopulateList();
|
|
|
|
VideoBackend::ActivateBackend(SConfig::GetInstance().
|
2011-02-02 16:34:12 +00:00
|
|
|
m_LocalCoreStartupParameter.m_strVideoBackend);
|
2011-01-15 10:33:07 +00:00
|
|
|
WiimoteReal::LoadSettings();
|
2009-05-15 08:55:46 +00:00
|
|
|
|
2014-01-19 16:11:07 +00:00
|
|
|
#if USE_EGL
|
|
|
|
GLWin.platform = EGL_PLATFORM_NONE;
|
|
|
|
#endif
|
|
|
|
#if HAVE_WAYLAND
|
2014-03-09 20:14:26 +00:00
|
|
|
GLWin.wl_display = nullptr;
|
2014-01-19 16:11:07 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-15 10:33:07 +00:00
|
|
|
// No use running the loop when booting fails
|
|
|
|
if (BootManager::BootCore(argv[optind]))
|
2008-09-07 21:06:55 +00:00
|
|
|
{
|
2014-01-19 16:11:07 +00:00
|
|
|
#if USE_EGL
|
|
|
|
while (GLWin.platform == EGL_PLATFORM_NONE)
|
|
|
|
usleep(20000);
|
|
|
|
#endif
|
|
|
|
#if HAVE_WAYLAND
|
|
|
|
if (GLWin.platform == EGL_PLATFORM_WAYLAND)
|
|
|
|
Wayland_MainLoop();
|
|
|
|
#endif
|
|
|
|
#if HAVE_X11
|
|
|
|
#if USE_EGL
|
2014-02-17 04:51:41 +00:00
|
|
|
if (GLWin.platform == EGL_PLATFORM_X11)
|
|
|
|
{
|
2014-01-19 16:11:07 +00:00
|
|
|
#endif
|
|
|
|
XInitThreads();
|
|
|
|
X11_MainLoop();
|
|
|
|
#if USE_EGL
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-01-15 11:05:22 +00:00
|
|
|
#ifdef __APPLE__
|
2011-01-30 14:20:20 +00:00
|
|
|
while (running)
|
2011-01-15 11:05:22 +00:00
|
|
|
{
|
2011-01-30 14:20:20 +00:00
|
|
|
event = [NSApp nextEventMatchingMask: NSAnyEventMask
|
|
|
|
untilDate: [NSDate distantFuture]
|
|
|
|
inMode: NSDefaultRunLoopMode dequeue: YES];
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2011-01-30 14:20:20 +00:00
|
|
|
if ([event type] == NSKeyDown &&
|
|
|
|
[event modifierFlags] & NSCommandKeyMask &&
|
|
|
|
[[event characters] UTF8String][0] == 'q')
|
|
|
|
{
|
|
|
|
Core::Stop();
|
|
|
|
break;
|
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2011-01-30 14:20:20 +00:00
|
|
|
if ([event type] != NSKeyDown)
|
|
|
|
[NSApp sendEvent: event];
|
2013-10-29 05:23:17 +00:00
|
|
|
}
|
2011-01-15 11:05:22 +00:00
|
|
|
|
2011-01-30 14:20:20 +00:00
|
|
|
[event release];
|
|
|
|
[pool release];
|
2010-03-16 13:18:52 +00:00
|
|
|
#else
|
2014-06-13 18:27:05 +00:00
|
|
|
while (PowerPC::GetState() != PowerPC::STATE_POWERDOWN)
|
2010-02-19 17:05:26 +00:00
|
|
|
updateMainFrameEvent.Wait();
|
2010-03-16 13:18:52 +00:00
|
|
|
#endif
|
2008-09-07 21:06:55 +00:00
|
|
|
}
|
2010-02-19 17:05:26 +00:00
|
|
|
|
2010-10-12 19:42:29 +00:00
|
|
|
WiimoteReal::Shutdown();
|
2011-01-31 03:15:14 +00:00
|
|
|
VideoBackend::ClearList();
|
2010-02-19 17:05:26 +00:00
|
|
|
SConfig::Shutdown();
|
|
|
|
LogManager::Shutdown();
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2011-01-15 10:33:07 +00:00
|
|
|
return 0;
|
2008-09-07 20:26:38 +00:00
|
|
|
}
|