https://github.com/catwallon/psp-game
An experimental PSP game project with no specific goal for now.
https://github.com/catwallon/psp-game
c game homebrew psp pspsdk
Last synced: 9 days ago
JSON representation
An experimental PSP game project with no specific goal for now.
- Host: GitHub
- URL: https://github.com/catwallon/psp-game
- Owner: Catwallon
- Created: 2025-03-29T01:12:20.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-05-13T21:20:08.000Z (2 months ago)
- Last Synced: 2025-06-21T07:08:30.068Z (25 days ago)
- Topics: c, game, homebrew, psp, pspsdk
- Language: C
- Homepage:
- Size: 3.81 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PSP Game
An experimental PSP game project with no specific goal for now. The main objective is to explore the limits of procedural generation on such a constrained system.
## Roadmap
- Implement a hash table to cache simplex height values for better performance
- Use cached height values to smooth chunk borders by averaging edge heights
- Fix chunk display issues during reloading
- Add mipmapped textures for improved performance
- Implement procedural placement of 3D models
- Use 2D sprites for distant 3D models to optimize rendering
- Add collision detection## Dependencies
### Build Requirements:
- `make`
- `psp-toolchain`
- `psp-sdk`### Runtime Requirements:
- `PPSSPP`
## Compilation
Run the following command to compile the project:
```sh
make
```## Execution
To run the project, use:
```sh
make run
```