Moving xenia-run to just be xenia.
This commit is contained in:
@@ -12,8 +12,8 @@
|
||||
},
|
||||
|
||||
'dependencies': [
|
||||
'alloy',
|
||||
'xenia',
|
||||
'liballoy',
|
||||
'libxenia',
|
||||
],
|
||||
|
||||
'include_dirs': [
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
},
|
||||
|
||||
'dependencies': [
|
||||
'alloy',
|
||||
'xenia',
|
||||
'liballoy',
|
||||
'libxenia',
|
||||
],
|
||||
|
||||
'include_dirs': [
|
||||
@@ -38,8 +38,8 @@
|
||||
},
|
||||
|
||||
'dependencies': [
|
||||
'alloy',
|
||||
'xenia',
|
||||
'liballoy',
|
||||
'libxenia',
|
||||
],
|
||||
|
||||
'include_dirs': [
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
'profiling.cc',
|
||||
'profiling.h',
|
||||
'xbox.h',
|
||||
# xenia_main.cc is purposefully omitted as it's used in another target.
|
||||
],
|
||||
|
||||
'includes': [
|
||||
|
||||
74
src/xenia/xenia_main.cc
Normal file
74
src/xenia/xenia_main.cc
Normal file
@@ -0,0 +1,74 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* Xenia : Xbox 360 Emulator Research Project *
|
||||
******************************************************************************
|
||||
* Copyright 2013 Ben Vanik. All rights reserved. *
|
||||
* Released under the BSD license - see LICENSE in the root for more details. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <gflags/gflags.h>
|
||||
#include <poly/main.h>
|
||||
#include <xenia/emulator.h>
|
||||
#include <xenia/kernel/kernel.h>
|
||||
|
||||
using namespace xe;
|
||||
|
||||
DEFINE_string(target, "", "Specifies the target .xex or .iso to execute.");
|
||||
|
||||
int xenia_main(std::vector<std::wstring>& args) {
|
||||
Profiler::Initialize();
|
||||
Profiler::ThreadEnter("main");
|
||||
|
||||
// Grab path from the flag or unnamed argument.
|
||||
if (!FLAGS_target.size() && args.size() < 2) {
|
||||
google::ShowUsageWithFlags("xenia");
|
||||
PFATAL("Pass a file to launch.");
|
||||
return 1;
|
||||
}
|
||||
std::wstring path;
|
||||
if (FLAGS_target.size()) {
|
||||
// Passed as a named argument.
|
||||
// TODO(benvanik): find something better than gflags that supports unicode.
|
||||
path = poly::to_wstring(FLAGS_target);
|
||||
} else {
|
||||
// Passed as an unnamed argument.
|
||||
path = args[1];
|
||||
}
|
||||
// Normalize the path and make absolute.
|
||||
std::wstring abs_path = poly::to_absolute_path(path);
|
||||
|
||||
// Create the emulator.
|
||||
auto emulator = std::make_unique<Emulator>(L"");
|
||||
X_STATUS result = emulator->Setup();
|
||||
if (XFAILED(result)) {
|
||||
XELOGE("Failed to setup emulator: %.8X", result);
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Launch based on file type.
|
||||
// This is a silly guess based on file extension.
|
||||
auto file_system_type = emulator->file_system()->InferType(abs_path);
|
||||
switch (file_system_type) {
|
||||
case kernel::fs::FileSystemType::STFS_TITLE:
|
||||
result = emulator->LaunchSTFSTitle(abs_path);
|
||||
break;
|
||||
case kernel::fs::FileSystemType::XEX_FILE:
|
||||
result = emulator->LaunchXexFile(abs_path);
|
||||
break;
|
||||
case kernel::fs::FileSystemType::DISC_IMAGE:
|
||||
result = emulator->LaunchDiscImage(abs_path);
|
||||
break;
|
||||
}
|
||||
if (XFAILED(result)) {
|
||||
XELOGE("Failed to launch target: %.8X", result);
|
||||
return 1;
|
||||
}
|
||||
|
||||
emulator.reset();
|
||||
Profiler::Dump();
|
||||
Profiler::Shutdown();
|
||||
return 0;
|
||||
}
|
||||
|
||||
DEFINE_ENTRY_POINT(L"xenia", L"xenia some.xex", xenia_main);
|
||||
Reference in New Issue
Block a user