shadPS4/src/main.cpp

50 lines
1.3 KiB
C++
Raw Normal View History

2023-10-13 06:40:59 +00:00
#include <SDL3/SDL.h>
2023-10-26 20:15:11 +00:00
#include <cstdio>
#include <fmt/core.h>
2023-11-05 11:41:10 +00:00
#include "common/discord.h"
#include "common/types.h"
#include "common/log.h"
#include "common/singleton.h"
2023-10-31 06:47:58 +00:00
#include <core/PS4/HLE/Graphics/video_out.h>
2023-10-13 06:40:59 +00:00
#include <Util/config.h>
#include <Zydis/Zydis.h>
2023-10-13 06:40:59 +00:00
#include <emulator.h>
2023-10-26 20:15:11 +00:00
#include <cinttypes>
#include <thread>
2023-10-31 06:47:58 +00:00
#include "core/PS4/HLE/Libs.h"
#include "core/PS4/Linker.h"
2023-10-30 06:48:52 +00:00
#include "emuTimer.h"
2023-08-22 20:59:59 +00:00
2023-10-13 06:40:59 +00:00
int main(int argc, char* argv[]) {
2023-08-03 10:06:23 +00:00
if (argc == 1) {
fmt::print("Usage: {} <elf or eboot.bin path>\n", argv[0]);
2023-07-07 10:54:44 +00:00
return -1;
2023-08-03 10:06:23 +00:00
}
2023-08-14 17:17:01 +00:00
Config::load("config.toml");
Common::Log::Init(true);
2023-08-22 20:59:59 +00:00
auto width = Config::getScreenWidth();
auto height = Config::getScreenHeight();
2023-10-13 06:40:59 +00:00
Emu::emuInit(width, height);
2023-08-22 20:59:59 +00:00
HLE::Libs::Graphics::VideoOut::videoOutInit(width, height);
2023-10-30 06:48:52 +00:00
Emulator::emuTimer::start();
2023-08-22 20:59:59 +00:00
// Argument 1 is the path of self file to boot
const char* const path = argv[1];
2023-09-12 16:39:08 +00:00
auto linker = Common::Singleton<Linker>::Instance();
2023-10-26 20:13:07 +00:00
HLE::Libs::Init_HLE_Libs(&linker->getHLESymbols());
linker->LoadModule(path);
std::jthread mainthread(
[linker](std::stop_token stop_token, void*) {
2023-08-09 07:31:18 +00:00
linker->Execute();
},
nullptr);
2023-08-11 17:22:26 +00:00
Discord::RPC discordRPC;
discordRPC.init();
discordRPC.update(Discord::RPCStatus::Idling, "");
2023-10-13 06:40:59 +00:00
Emu::emuRun();
2023-08-11 22:02:42 +00:00
2023-08-11 17:22:26 +00:00
discordRPC.stop();
2023-04-27 16:13:19 +00:00
return 0;
}