selfsame / smudge

Snazzy Multi-User Dungeon (Guaranteed to be Excellent)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Snazzy Multi-User Dungeon (Guaranteed to be Excellent)


Languages

Language:C 99.7%Language:Shell 0.3%