https://github.com/computermouth/doomguy
https://github.com/computermouth/doomguy
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/computermouth/doomguy
- Owner: computermouth
- Created: 2022-03-22T07:27:28.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-24T00:30:29.000Z (about 4 years ago)
- Last Synced: 2025-02-05T11:32:36.728Z (over 1 year ago)
- Language: C
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## TODO
- pathing (busted)
- bun's walking shudder on random/zoom
- on sub_pos reset, set all other sub_pos to halfway??
- increase slime death animation timer
- non-battle event -- find weapon, find xp, find bed, story
- battle assist
- music
- https://levelmusicmaxo.bandcamp.com/album/level-music-d (Lotus Pond loop for sleeping)
- https://chipmusic.org/forums/topic/10093/game-dev-looking-for-music-read-this/
- music from memory in regards to SDL (RWFromMem, Mix_LoadMUS_RW)
- https://stackoverflow.com/questions/52500743/c-sdl2-mixer-play-wav-from-pointer
- non-60fps
```
while (delta > (16.7 * 2)) {
ww_set_draw(0)
process_state()
delta -= 16.7
}
ww_set_draw(1)
process_state()
```