forked from defnull/pixelflut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
37 lines (21 loc) · 1.16 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Pixelflut & Pixelwar: Multiplayer canvas.
=========================================
What happens if you give a bunch of hackers the ability to change pixel colors on a beamer screen? See yourself :)
p1xelflut uses a very simple (and inefficient) ASCII based network protocol. You can write a basic client in a single line of shell code if you want, but you only get to change a single pixel at a time. If you want to get rectangles, lines, text or images on the screen you have to implement that functionality yourself. That is part of the game.
Pixelflut (python)
------------------
Gevent and pygame based python implementation. easier to hack with, but a bit slow. Not recommended for more than 20 players.
sudo aptitude install python-gevent python-pygame python-cairo
cd pixelflut
mkdir save
python pixelflut.py brain.py
Pixelwar (java)
---------------
Netty based java7 implementation. Very fast but not scriptable (yet).
sudo aptitude install maven2 openjdk-7-jdk
cd pixelwar
mvn package
java -jar package/pixelwar*-jar-with-dependencies.jar
Links
-----
Pixelflut at EasterHegg 2014 in Stuttgart, Germany: http://vimeo.com/92827556