/** ****************************************************************************** * 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 #include using namespace xe; using namespace xe::cpu; using namespace xe::kernel; DEFINE_bool(abort_before_entry, false, "Abort execution right before launching the module."); class Run { public: Run(); ~Run(); int Setup(); int Launch(const xechar_t* path); private: xe_pal_ref pal_; xe_memory_ref memory_; shared_ptr processor_; shared_ptr runtime_; }; Run::Run() { } Run::~Run() { xe_memory_release(memory_); xe_pal_release(pal_); } int Run::Setup() { xe_pal_options_t pal_options; xe_zero_struct(&pal_options, sizeof(pal_options)); pal_ = xe_pal_create(pal_options); XEEXPECTNOTNULL(pal_); xe_memory_options_t memory_options; xe_zero_struct(&memory_options, sizeof(memory_options)); memory_ = xe_memory_create(pal_, memory_options); XEEXPECTNOTNULL(memory_); processor_ = shared_ptr(new Processor(pal_, memory_)); XEEXPECTZERO(processor_->Setup()); runtime_ = shared_ptr(new Runtime(pal_, processor_, XT(""))); return 0; XECLEANUP: return 1; } int Run::Launch(const xechar_t* path) { if (FLAGS_abort_before_entry) { return 0; } // TODO(benvanik): wait until the module thread exits runtime_->LaunchModule(path); return 0; } int xenia_run(int argc, xechar_t **argv) { std::string usage = "usage: "; usage += "xenia-run some.xex"; google::SetUsageMessage(usage); google::SetVersionString("1.0"); google::ParseCommandLineFlags(&argc, &argv, true); // Dummy call to keep the GPU code linking in to ensure it's working. do_gpu_stuff(); int result_code = 1; // Grab path. if (argc < 2) { google::ShowUsageWithFlags("xenia-run"); return 1; } const xechar_t *path = argv[1]; auto_ptr run = auto_ptr(new Run()); result_code = run->Setup(); XEEXPECTZERO(result_code); //xe_module_dump(run->module); run->Launch(path); result_code = 0; XECLEANUP: google::ShutDownCommandLineFlags(); return result_code; } XE_MAIN_THUNK(xenia_run);