Playstation 4 Emulator for Windows
Go to file
2024-04-12 02:57:26 +03:00
.github/workflows Whoops 2024-04-10 01:24:25 +03:00
.vscode Implementation attempt: sceNetEpoll things 2024-04-06 09:01:20 +03:00
core ... and config_emu 2024-04-11 22:52:37 +03:00
docs videoout| handle swapchain with imageHandler 2024-03-29 16:00:25 +01:00
modules config_emu improvements 2024-04-12 02:54:50 +03:00
modules_include Implement sceKernelGettimezone 2024-04-10 15:14:41 +03:00
out/docs/uml/modules videoout| handle swapchain with imageHandler 2024-03-29 16:00:25 +01:00
testRunner Promisify testRunner fs requests + test timeout 2024-04-11 18:28:12 +03:00
tests test_bench setup 2024-04-09 21:10:51 +02:00
third_party + googletest 2024-04-09 20:49:29 +02:00
tools Missed one more profile (Whoops) 2024-04-12 02:57:26 +03:00
utility dump 2024-04-07 21:40:56 +02:00
.clang-format + eventqueue, libkernel 2024-02-29 17:00:13 +01:00
.clang-format-ignore Implementation attempt: sceNetEpoll things 2024-04-06 09:01:20 +03:00
.gitignore Cleanup 2024-03-12 09:28:44 +03:00
.gitmodules + googletest 2024-04-09 20:49:29 +02:00
CMakeLists.txt test_bench setup 2024-04-09 21:10:51 +02:00
index.html + index.html 2024-03-06 15:37:15 +01:00
LICENSE Initial commit 2024-02-27 15:05:21 +01:00
readme.md Update readme.md 2024-03-29 17:41:24 +01:00

psOff - PlayStation 4 Emulation (Windows)

In development. Does it run ...? No!

Runtime and rendering part is private currently. Target is to have a standalone framework for shader reconstruction, command buffer translation and managing the GPU memory, for others to use. This project uses it to run "Linux" binaries on windows.

tombRaiderRemaster sonic blackhole

Description

Yet another compatibility layer! I solely focused on the rendering part and recently started to implement the system functions to run some binaries.

It renders decently fast, the planned changes will make it almost perfect. Had to reverse engineer and try out a lot, before.

It currently doesn't support:

  • multiple command buffer submits
  • for loops in shader
  • missing opcodes
  • missing symbols

Im happy for any help. Just hop in, system part isn't complicated.
I don't serve spaghetti only bugs.

Getting Started

wiki: Building psoff

Dependencies

  • Vulkan SDK 1.3.268.0, minimum
  • Up to date graphic drivers

(May add the Vulkan libs in Future Releases, if needed.)

For development:

  • Ninja
  • CMake 3.24+
  • Visual Studio 2022, it's just for the build environment (uses clang-cl,c++20)
  • Windows SDK 10.0.22621.0 or newer

Installing

For testing, just download the latest release and install the Vulkan SDK.

Executing a program

.\emulator.exe --h
.\emulator.exe --file="C:/****/eboot.bin"

If no --root is defined, it uses the folder from --file
For testing/benchmark, use --vsync=0

Update (app1): --update

.\emulator.exe --file="C:/****/eboot.bin" --update="C:/FolderWithUpdate"

It expects the undecrypted Target to be in the following format:

sce_module
sce_sys
eboot.bin

Try out input_ps4 to see if the emulator and your controller work correctly

Development

Use boosts thread, mutex and conditions. The waits have to be alertable in order to receive fake signals from "kernel".

Project uses p7 for tracing -> Baical server.

  • modules: the ps4 libraries
  • core: kernel, memory etc.
  • emulator.exe: (From Releases) contains the runtime and rendering

I'm using vscode, '.vscode\tasks.json' contains the config & build tasks.