2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-07-13 07:31:43 +00:00
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2008-12-07 22:42:49 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
#ifndef _WIN32
|
2009-07-13 06:34:12 +00:00
|
|
|
#include <sys/param.h>
|
2008-09-07 20:26:38 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-12 23:59:27 +00:00
|
|
|
#include "Common.h"
|
2009-05-15 08:55:46 +00:00
|
|
|
#include "FileUtil.h"
|
|
|
|
|
2010-03-16 03:34:27 +00:00
|
|
|
#if defined HAVE_X11 && HAVE_X11
|
2010-04-12 01:33:10 +00:00
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include "State.h"
|
2010-04-22 04:28:34 +00:00
|
|
|
#include "X11Utils.h"
|
2010-03-16 03:34:27 +00:00
|
|
|
#endif
|
|
|
|
|
2010-02-05 10:52:27 +00:00
|
|
|
#include "Core.h"
|
2008-09-07 20:26:38 +00:00
|
|
|
#include "Globals.h"
|
2008-09-10 01:01:28 +00:00
|
|
|
#include "Host.h"
|
2008-09-07 20:26:38 +00:00
|
|
|
#include "ISOFile.h"
|
|
|
|
#include "CPUDetect.h"
|
2008-09-07 21:06:55 +00:00
|
|
|
#include "cmdline.h"
|
|
|
|
#include "Thread.h"
|
|
|
|
#include "PowerPC/PowerPC.h"
|
2009-01-12 20:52:45 +00:00
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "ConfigManager.h"
|
|
|
|
#include "LogManager.h"
|
2008-09-07 20:26:38 +00:00
|
|
|
#include "BootManager.h"
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
#if defined HAVE_X11 && HAVE_X11
|
|
|
|
bool running = true;
|
|
|
|
#endif
|
|
|
|
|
2010-05-26 21:23:44 +00:00
|
|
|
bool rendererHasFocus = true;
|
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
void Host_NotifyMapLoaded(){}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
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
|
|
|
#endif
|
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2010-04-19 03:06:18 +00:00
|
|
|
void Host_UpdateTitle(const char* title){};
|
|
|
|
|
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(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_UpdateMemoryView(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_SetDebugMode(bool){}
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
void Host_RequestWindowSize(int& x, int& y, int& width, int& height)
|
|
|
|
{
|
|
|
|
x = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowXPos;
|
|
|
|
y = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowYPos;
|
|
|
|
width = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowWidth;
|
|
|
|
height = SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return rendererHasFocus;
|
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
|
|
|
void Host_SetWaitCursor(bool enable){}
|
|
|
|
|
|
|
|
|
2009-02-16 09:26:47 +00:00
|
|
|
void Host_UpdateStatusBar(const char* _pText, int Filed){}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2008-09-10 01:01:28 +00:00
|
|
|
void Host_SysMessage(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list list;
|
|
|
|
char msg[512];
|
|
|
|
|
|
|
|
va_start(list, fmt);
|
|
|
|
vsprintf(msg, fmt, list);
|
|
|
|
va_end(list);
|
|
|
|
|
|
|
|
size_t len = strlen(msg);
|
|
|
|
if (msg[len - 1] != '\n') {
|
|
|
|
msg[len - 1] = '\n';
|
|
|
|
msg[len] = '\0';
|
|
|
|
}
|
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) {}
|
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
|
|
|
void X11_MainLoop()
|
|
|
|
{
|
|
|
|
bool fullscreen = SConfig::GetInstance().m_LocalCoreStartupParameter.bFullscreen;
|
|
|
|
while (Core::GetState() == Core::CORE_UNINITIALIZED)
|
|
|
|
updateMainFrameEvent.Wait();
|
|
|
|
|
|
|
|
Display *dpy = XOpenDisplay(0);
|
|
|
|
Window win = *(Window *)Core::GetXWindow();
|
|
|
|
XSelectInput(dpy, win, KeyPressMask | KeyReleaseMask | FocusChangeMask);
|
|
|
|
|
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
X11Utils::XRRConfiguration *XRRConfig = new X11Utils::XRRConfiguration(dpy, win);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Cursor blankCursor = NULL;
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
X11Utils::EWMH_Fullscreen(_NET_WM_STATE_TOGGLE);
|
|
|
|
#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);
|
|
|
|
switch(event.type)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
X11Utils::EWMH_Fullscreen(_NET_WM_STATE_TOGGLE);
|
|
|
|
#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)
|
|
|
|
State_Save(slot_number);
|
|
|
|
else
|
|
|
|
State_Load(slot_number);
|
|
|
|
}
|
|
|
|
else if (key == XK_F9)
|
|
|
|
Core::ScreenShot();
|
|
|
|
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;
|
|
|
|
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
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
XFreeCursor(dpy, blankCursor);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
Core::Stop();
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-12 20:52:45 +00:00
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
// Include SDL header so it can hijack main().
|
2008-12-07 17:09:40 +00:00
|
|
|
#if defined(USE_SDL) && USE_SDL
|
2008-09-07 20:26:38 +00:00
|
|
|
#include <SDL.h>
|
2008-10-20 17:32:15 +00:00
|
|
|
#endif
|
2010-06-04 02:58:35 +00:00
|
|
|
|
2008-09-07 20:26:38 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2008-09-07 21:02:57 +00:00
|
|
|
gengetopt_args_info args_info;
|
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
if (cmdline_parser(argc, argv, &args_info) != 0)
|
2008-09-07 21:02:57 +00:00
|
|
|
return(1);
|
|
|
|
|
|
|
|
if (args_info.inputs_num < 1)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Please supply at least one argument - the ISO to boot.\n");
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
std::string bootFile(args_info.inputs[0]);
|
|
|
|
|
2008-09-07 21:06:55 +00:00
|
|
|
updateMainFrameEvent.Init();
|
2010-02-19 17:05:26 +00:00
|
|
|
|
|
|
|
LogManager::Init();
|
2010-06-03 18:05:08 +00:00
|
|
|
EventHandler::Init();
|
2010-02-19 17:05:26 +00:00
|
|
|
SConfig::Init();
|
|
|
|
CPluginManager::Init();
|
|
|
|
|
2009-02-17 20:28:49 +00:00
|
|
|
CPluginManager::GetInstance().ScanForPlugins();
|
2009-05-15 08:55:46 +00:00
|
|
|
|
2010-03-16 03:34:27 +00:00
|
|
|
#if defined HAVE_X11 && HAVE_X11
|
|
|
|
XInitThreads();
|
|
|
|
#endif
|
|
|
|
|
2010-02-19 17:05:26 +00:00
|
|
|
if (BootManager::BootCore(bootFile)) //no use running the loop when booting fails
|
2008-09-07 21:06:55 +00:00
|
|
|
{
|
2010-03-16 13:18:52 +00:00
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
2010-04-22 04:28:34 +00:00
|
|
|
X11_MainLoop();
|
2010-03-16 13:18:52 +00:00
|
|
|
#else
|
2010-02-19 17:05:26 +00:00
|
|
|
while (PowerPC::GetState() != PowerPC::CPU_POWERDOWN)
|
|
|
|
updateMainFrameEvent.Wait();
|
2010-03-16 13:18:52 +00:00
|
|
|
#endif
|
2008-09-07 21:06:55 +00:00
|
|
|
}
|
2010-03-16 13:18:52 +00:00
|
|
|
updateMainFrameEvent.Shutdown();
|
2010-02-19 17:05:26 +00:00
|
|
|
|
|
|
|
CPluginManager::Shutdown();
|
|
|
|
SConfig::Shutdown();
|
2010-06-03 18:05:08 +00:00
|
|
|
EventHandler::Shutdown();
|
2010-02-19 17:05:26 +00:00
|
|
|
LogManager::Shutdown();
|
2008-09-07 20:26:38 +00:00
|
|
|
|
2008-09-07 21:02:57 +00:00
|
|
|
cmdline_parser_free (&args_info);
|
|
|
|
return(0);
|
2008-09-07 20:26:38 +00:00
|
|
|
}
|