Epple-II/src/main.cpp

102 lines
2.2 KiB
C++
Raw Normal View History

2012-04-21 00:04:34 +00:00
/*
epple2
Copyright (C) 2008, 2022 by Christopher A. Mosher <cmosher01@gmail.com>
2012-04-21 00:04:34 +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, either version 3 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, see <http://www.gnu.org/licenses/>.
*/
2012-04-21 00:04:34 +00:00
#include "e2const.h"
2022-12-05 21:11:25 +00:00
#include "emulator.h"
#include "configep2.h"
#include "gui.h"
2022-12-05 21:11:25 +00:00
#include "e2const.h"
#include "E2wxApp.h"
2012-04-21 00:04:34 +00:00
#include <wx/app.h>
2022-12-05 21:11:25 +00:00
#include <thread>
2012-04-21 00:04:34 +00:00
#include <iostream>
#include <ostream>
#include <stdexcept>
2022-12-05 21:11:25 +00:00
#include <string>
#include <cstdio>
#include <cstddef>
2012-04-21 00:04:34 +00:00
2022-12-05 21:11:25 +00:00
static std::string parse_args(int argc, char* argv[]) {
if (argc > 2) {
throw std::runtime_error("usage: epple2 [config-file]" );
}
if (argc <= 1) {
return std::string();
}
return std::string(argv[1]);
}
static int fake_argc(0);
static char fake_prog[] = "epple2";
static char *fake_argv[] { fake_prog };
static int runWx() {
return wxEntry(fake_argc, fake_argv);
}
static int runSdl(const std::string config_file) {
GUI gui;
std::thread thread_wx(runWx);
std::unique_ptr<Emulator> emu(new Emulator());
Config cfg(config_file);
emu->config(cfg);
emu->init();
const int ret = emu->run();
if (wxApp::GetInstance() != nullptr) {
wxApp::GetInstance()->ExitMainLoop();
}
thread_wx.join();
return ret;
}
2013-12-16 05:21:19 +00:00
#ifdef __cplusplus
extern "C"
#endif
int main(int argc, char *argv[]) {
::setbuf(::stdout, nullptr);
::setbuf(::stderr, nullptr);
2012-04-21 00:04:34 +00:00
const int x = E2Const::test();
if (x != -1) {
2019-04-13 04:34:25 +00:00
std::cerr << x << std::endl;
throw std::runtime_error("bad constant in e2const.h" );
}
2012-04-21 00:04:34 +00:00
2022-12-05 21:11:25 +00:00
const std::string config_file = parse_args(argc, argv);
2022-12-05 21:11:25 +00:00
const int ret = runSdl(config_file);
2012-04-21 00:04:34 +00:00
2022-12-05 21:11:25 +00:00
return ret;
2012-04-21 00:04:34 +00:00
}