simworld/doc/TODO.gmi

38 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2024-09-30 04:20:34 +00:00
# TODO
A list of things I'd like to accomplish
## In Progress
2024-11-14 21:21:36 +00:00
* Add a lua modding API
* Load mods
* Handle mod dependencies
## Completed
2024-11-14 21:21:36 +00:00
* Specify mods directory
* Tick-based game loop
2024-10-28 05:13:05 +00:00
* Split game ticking and socket connecting logic (can only tick on connection atm)
* Client send request
* Server handle request and send response
* Client handle response
* Have client render world data (return to pre-daemonised equivalent state)
* 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
* Requests/responses for more than just the complete set of world data all at once
* 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
* 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)
* Portability to other UNIX-like operating systems (if changes are needed; I don't care about DOS-likes)
* Reduce repetitiveness of JSON (de)serialisation code