Changed the readme to Emacs Org mode, and added further description.

This commit is contained in:
Barra Ó Catháin 2023-05-22 14:44:23 +01:00
parent 5f6355dee7
commit 5eb6aea8b7
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +0,0 @@
# Client-Side-Prediction-Test
An example of client-side prediction for networked games, as research and training for 'Spacewar!'

11
README.org Normal file
View File

@ -0,0 +1,11 @@
* Client-Side-Prediction-Test
An example of client-side prediction for networked games, as research and
training for 'Spacewar!'
** What is this repository for?
I realized that the current netcode of Spacewar was fine for simply running two
instances of the game on the same computer; but it would not hold up to
latencies of actual networks nor would it be able to do any structured
communication due to being entirely over UDP. I knew this when writing it, but I
needed to learn how to do it properly first. Hence, this repository. I will be
keeping notes on the techniques and a devlog as I come up against any issues.