Skip to content

Commit

Permalink
update 'README.md'
Browse files Browse the repository at this point in the history
  • Loading branch information
nikki93 committed Nov 13, 2018
1 parent 5b059c3 commit ac47287
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README.md
@@ -1,9 +1,23 @@
# sync.lua

*sync.lua* aims to make Lua-based multiplayer games easier to write. It's meant to run in a [LÖVE](https://love2d.org/) context but could work anywhere [lua-enet](http://leafo.net/lua-enet/) and [LuaJIT's FFI library](http://luajit.org/ext_ffi.html) are available (both built-into LÖVE by default).
*sync.lua* aims to make Lua-based multiplayer games easier to write. You can write your game's code mostly as if you are writing a single-computer game and have automatic synchronization of your game state across multiple computers.

Read the [basic tutorial](./docs/tutorial_basic.md) to get started.
The library is meant to run in a [LÖVE](https://love2d.org/) context but could work anywhere [lua-enet](http://leafo.net/lua-enet/) and [LuaJIT's FFI library](http://luajit.org/ext_ffi.html) are available (both built-into LÖVE by default).

See '[example_triangle_warz.lua](./example_triangle_warz.lua)' for the code of a more involved game that uses this library.
## Tutorials

Check out the [reference manual](./docs/reference.md) for detailed information on all of *sync.lua*'s features.
Step by step guides that walk you through common *sync.lua* tasks.

- [Basic tutorial](./docs/tutorial_basic.md): This is probably what you want to read the first time you use *sync.lua*. Walks you through making a basic multiplayer game step-by-step from scratch. In the resulting game, each player that connects is given a single randomly-colored circle that they can move around on screen, and they can all see each others' circles.

## Examples

Working code for simple games that use *sync.lua*.

- [example_basic.lua](./example_basic.lua): The result of following the [basic tutorial](./docs/tutorial_basic.md).
- [example_triangle_warz.lua](./example_triangle_warz.lua): Each player is represented by a triangular ship that they can move around on screen and shoot at each other with. Demonstrates how you can keep track of multiple players, their scores, draw the user's player differently, keep track of entity-entity references (bullets need to keep track of their owners so they can increment the owner's score when they destroy a ship).
- [example_huge.lua](./example_huge.lua): The server simulates 20000 randomly positioned and sized rotating rectangles. Each client can walk around this simulation an just sees at most about 25 rectangles at a time. Demonstrates the `.isRelevant` feature. Sending updates about all 20000 rectangles would grind the game to a halt. Instead, for each client, the server only sends updates for the 25 rectangles each client can see. Uses the [shash](https://github.com/rxi/shash/blob/master/shash.lua) library to query rectangles in each client's field of view efficiently.

## Reference manual

The [reference manual](./docs/reference.md) (work in progress) contains detailed information about all of *sync.lua*'s features.

0 comments on commit ac47287

Please sign in to comment.