A web application to explore RTTI database of Cyberpunk 2077. It includes a custom tool to write / merge documentation.
You can generate RTTI dump assets yourself. You will need RTTIDumper:
- Clone it
- Build it by following its README.
- Install it like any other RED4ext plugin.
- Run the game, wait (loading will block)... and close the game.
- Copy generated files listed below from
<game>\bin\x64\dumps\nativedb\jsonto<project>\src\assets\reddump\:
- enums.json
- bitfields.json
- classes.json
- globals.json
Run pnpm run start for a dev server. Navigate to http://localhost:4200/.
The application will automatically reload if you change any of the source
files.
Run pnpm run test to run unit tests with Jest.
Run pnpm run build to build the project. The build artefacts will be stored
in the dist/browser/ directory. It will compress build files using brotli
algorithm. The biggest AST file will be around ~800KB. It should be small
enough given the usage of a Service Worker.
Run pnpm run prod after you built the project. Navigate to
http://localhost:4400. The application will run with Service Worker enabled.
You might need to disable your antivirus to serve compressed files.