simworld/doc/TODO.gmi

30 lines
863 B
Plaintext
Raw Normal View History

2024-09-30 04:20:34 +00:00
# TODO
A list of things I'd like to accomplish
## In Progress
* Have client render world data (return to pre-daemonised equivalent state)
## Completed
* Serialise data to JSON for socket data transmission
* Send world data to client
* Initialise a world again
* Expose a socket or pipe on the daemon for the client
* Create client to connect to daemon
2024-10-04 05:05:43 +00:00
* Daemonise the serverside
* Parse command line arguments
2024-10-03 00:42:30 +00:00
* Split into client, server, and common library
* Write Makefile to automate compilation
## Planned
* Game loop
* Create and load worlds
2024-09-30 04:20:34 +00:00
* Display environment and pan camera
* Time controls (play/pause/speed up)
* See creature stats
* Add a lua modding API
* Load mods
* Handle mod dependencies
* Remove rendering from serverside
* Client-side resource files for each mod
* Real error handling (right now I just pass up to main and immediately exit)