An open API service indexing awesome lists of open source software.

https://github.com/kach/smudge

Snazzy Multi-User Dungeon (Guaranteed to be Excellent)
https://github.com/kach/smudge

Last synced: about 2 months ago
JSON representation

Snazzy Multi-User Dungeon (Guaranteed to be Excellent)

Awesome Lists containing this project

README

          

The WORLD is controlled by a thread that iterates state.

Each TELNET connection is controlled by a thread that negotiates terminal
stuff. It relays keypresses to the controller and echoes a rendered screen to
the socket.

To build a game, implement a world according to world.h, then link it to
mudpie.c and execute. mudpie.c is called mudpie.c because you can use a single
compiled copy to bake multiple MUDs. Obviously.

$ gcc -c mudpie.c
$ gcc -c world.c
$ gcc -pthread mudpie.o world.o -o game
$ ./game 1337