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