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
|
|
|
|
//#include <curses.h>
|
|
|
|
#else
|
|
|
|
#endif
|
|
|
|
|
2008-12-07 22:42:49 +00:00
|
|
|
|
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 "Common.h"
|
|
|
|
#include "ISOFile.h"
|
|
|
|
#include "CPUDetect.h"
|
2008-09-07 21:06:55 +00:00
|
|
|
#include "cmdline.h"
|
|
|
|
#include "Thread.h"
|
|
|
|
#include "PowerPC/PowerPC.h"
|
2008-09-07 20:26:38 +00:00
|
|
|
|
|
|
|
#include "BootManager.h"
|
|
|
|
void* g_pCodeWindow = NULL;
|
|
|
|
void* main_frame = NULL;
|
|
|
|
bool wxPanicAlert(const char* text, bool /*yes_no*/)
|
|
|
|
{
|
|
|
|
return(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// OK, this thread boundary is DANGEROUS on linux
|
|
|
|
// wxPostEvent / wxAddPendingEvent is the solution.
|
|
|
|
void Host_NotifyMapLoaded(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_UpdateLogDisplay(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_UpdateDisasmDialog(){}
|
|
|
|
|
|
|
|
|
2008-09-07 21:06:55 +00:00
|
|
|
Common::Event updateMainFrameEvent;
|
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
updateMainFrameEvent.Set();
|
|
|
|
}
|
2008-09-07 20:26:38 +00:00
|
|
|
|
|
|
|
void Host_UpdateBreakPointView(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_UpdateMemoryView(){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_SetDebugMode(bool){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_SetWaitCursor(bool enable){}
|
|
|
|
|
|
|
|
|
|
|
|
void Host_UpdateStatusBar(const char* _pText){}
|
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
fprintf(stderr, msg);
|
|
|
|
}
|
|
|
|
|
2008-12-09 22:08:40 +00:00
|
|
|
void Host_UpdateLeds(int led_bits)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_UpdateSpeakerStatus(int index, int speaker_bits)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_UpdateStatus()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-30 16:36:45 +00:00
|
|
|
void Host_SetWiiMoteConnectionState(int _State) {}
|
|
|
|
|
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
|
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;
|
|
|
|
|
|
|
|
if (cmdline_parser (argc, argv, &args_info) != 0)
|
|
|
|
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();
|
2008-09-07 21:02:57 +00:00
|
|
|
DetectCPU();
|
|
|
|
BootManager::BootCore(bootFile);
|
2008-09-07 21:06:55 +00:00
|
|
|
while (PowerPC::state != PowerPC::CPU_POWERDOWN)
|
|
|
|
{
|
|
|
|
updateMainFrameEvent.Wait();
|
|
|
|
}
|
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
|
|
|
}
|