yuzu/src/citra/citra.cpp

102 lines
2.6 KiB
C++
Raw Normal View History

2014-04-09 02:25:53 +02:00
// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
2014-04-09 02:25:53 +02:00
// Refer to the license.txt file included.
2013-08-30 05:35:09 +02:00
#include <string>
#include <thread>
#include <iostream>
// This needs to be included before getopt.h because the latter #defines symbols used by it
#include "common/microprofile.h"
#ifdef _MSC_VER
#include <getopt.h>
#else
#include <unistd.h>
#include <getopt.h>
#endif
2014-10-28 08:36:00 +01:00
2015-05-06 09:06:12 +02:00
#include "common/logging/log.h"
2014-10-28 08:36:00 +01:00
#include "common/logging/backend.h"
#include "common/logging/filter.h"
#include "common/make_unique.h"
#include "common/scope_exit.h"
2013-08-30 05:35:09 +02:00
#include "core/settings.h"
#include "core/system.h"
#include "core/core.h"
#include "core/gdbstub/gdbstub.h"
#include "core/loader/loader.h"
2013-08-30 05:35:09 +02:00
#include "citra/config.h"
#include "citra/emu_window/emu_window_sdl2.h"
2013-08-30 05:35:09 +02:00
2015-05-19 06:21:33 +02:00
#include "video_core/video_core.h"
static void PrintHelp()
{
std::cout << "Usage: citra <filename>" << std::endl;
}
2013-08-30 05:35:09 +02:00
/// Application entry point
int main(int argc, char **argv) {
int option_index = 0;
std::string boot_filename;
static struct option long_options[] = {
{ "help", no_argument, 0, 'h' },
{ 0, 0, 0, 0 }
};
while (optind < argc) {
char arg = getopt_long(argc, argv, ":h", long_options, &option_index);
if (arg != -1) {
switch (arg) {
case 'h':
PrintHelp();
return 0;
}
} else {
boot_filename = argv[optind];
optind++;
}
}
Log::Filter log_filter(Log::Level::Debug);
Log::SetFilter(&log_filter);
2013-09-18 04:57:59 +02:00
MicroProfileOnThreadCreate("EmuThread");
SCOPE_EXIT({ MicroProfileShutdown(); });
if (boot_filename.empty()) {
LOG_CRITICAL(Frontend, "Failed to load ROM: No ROM specified");
return -1;
2014-05-05 00:47:42 +02:00
}
Config config;
log_filter.ParseFilterString(Settings::values.log_filter);
2015-10-04 17:22:07 +02:00
GDBStub::ToggleServer(Settings::values.use_gdbstub);
2015-09-02 14:56:38 +02:00
GDBStub::SetServerPort(static_cast<u32>(Settings::values.gdbstub_port));
std::unique_ptr<EmuWindow_SDL2> emu_window = Common::make_unique<EmuWindow_SDL2>();
2015-05-19 06:21:33 +02:00
VideoCore::g_hw_renderer_enabled = Settings::values.use_hw_renderer;
VideoCore::g_shader_jit_enabled = Settings::values.use_shader_jit;
2015-05-19 06:21:33 +02:00
System::Init(emu_window.get());
SCOPE_EXIT({ System::Shutdown(); });
Loader::ResultStatus load_result = Loader::LoadFile(boot_filename);
if (Loader::ResultStatus::Success != load_result) {
LOG_CRITICAL(Frontend, "Failed to load ROM (Error %i)!", load_result);
return -1;
}
while (emu_window->IsOpen()) {
Core::RunLoop();
}
2013-08-30 05:35:09 +02:00
return 0;
2013-08-30 05:35:09 +02:00
}