hibiscus/TODO.md

53 lines
1.7 KiB
Markdown
Raw Normal View History

# Hibis Engine - Feature TODOs
2023-06-26 14:08:19 +00:00
## Core Module
2023-07-30 15:38:20 +00:00
### Base
- [ ] Base Renderer class
- [ ] Base Physics class
2023-06-26 14:08:19 +00:00
- [ ] Figure out how scenes should be handled
2023-07-30 15:38:20 +00:00
- [ ] Split other sections into seperate modules (renderers, physics)
- [ ] Application class (where the main loop is handled)
### 2D/3D
- [ ] Texture loading
- [ ] Model loading
2023-06-26 14:08:19 +00:00
## Audio Module
2023-07-30 15:38:20 +00:00
### Base
- [ ] OGG and WAV support (do first)
2023-07-30 15:38:20 +00:00
- [ ] Soundfont and Midi support (ideal)
- [ ] MP3 (later, can just ignore)
- [ ] Loop audio (with timepoints)
- [ ] Modify sound/pitch of outputted audio
### 2D/3D
- [ ] Position-based audio
2023-06-26 14:08:19 +00:00
## Hibis UI (NEEDS A NAME)
- [ ] GUI creation
2023-06-26 14:08:19 +00:00
- [ ] Text Object (rendering via FreeType2)
2023-07-30 15:38:20 +00:00
## Aethiopicus (Vulkan renderer, 2D and 3D)
### Base
- [X] Window creation (via GLFW)
- [ ] Basic deferred renderering system
- [ ] Render present
- [ ] Clear renderer
2023-07-30 15:38:20 +00:00
- [ ] Figure out how the renderer should even work
- [ ] (DO FOR A VERY LATE VERSION) Replace GLFW with a custom window creator to reduce bloat (I will not be using most of GLFW's shit)
### 2D
- [ ] Texture drawing
2023-07-30 15:38:20 +00:00
- [ ] TileMaps
- [ ] TileMap Culling
### 3D
- [ ] Model drawing
2023-07-30 15:38:20 +00:00
- [ ] Model Culling (hiding what you can't see)
- [ ] Level of Detail (3D ONLY)
## Hibis Physics (NEED A NAME)
2023-07-30 15:38:20 +00:00
### Base
- [ ] Physics Shape creation
2023-07-30 15:38:20 +00:00
- [ ] Option to *allow* for Physics Shapes to be able to be drawn (on by default, both compile time and run time, turn off at compile time via a flag (`-DNoPhysShapeDraw=1`?)) (official releases will include PhysShapeDraw capabilities)
### 2D/3D
- [ ] Raycasting
- [ ] Collision via raycasting
2023-07-30 15:38:20 +00:00
- [ ] Space type-specific shapes
## Examples
2023-06-26 14:08:19 +00:00
- [ ] Example: UI test
2023-07-30 15:38:20 +00:00
- [ ] Example Game: Megaman clone (external repo)
2023-06-26 14:08:19 +00:00
- [ ] Stress test using sprites
- [ ] Stress test using models