diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 18 | ||||
-rw-r--r-- | doc/image/game_rules.dia | bin | 0 -> 1535 bytes | |||
-rw-r--r-- | doc/image/network_protocol.dia | bin | 0 -> 1509 bytes | |||
-rw-r--r-- | doc/network_protocol.dia | bin | 1533 -> 0 bytes | |||
-rw-r--r-- | doc/presentation.asciidoc | 21 |
5 files changed, 39 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..b5d0c24 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,18 @@ +IMAGES!=ls image/*.dia +DELFILES!=find . \( -name '*.svg' -o -name '*.html' \) + +.PHONY: all images +all: images presentation.html + +.for f in ${IMAGES} +${f:S/.dia$/.svg/}: + @dia --export=$@ --filter=svg $f +.endfor + +images: ${IMAGES:S/.dia$/.svg/} + +presentation.html: presentation.asciidoc + asciidoc -b slidy presentation.asciidoc + +clean: + rm -f ${DELFILES} diff --git a/doc/image/game_rules.dia b/doc/image/game_rules.dia Binary files differnew file mode 100644 index 0000000..54d2f31 --- /dev/null +++ b/doc/image/game_rules.dia diff --git a/doc/image/network_protocol.dia b/doc/image/network_protocol.dia Binary files differnew file mode 100644 index 0000000..bfc529c --- /dev/null +++ b/doc/image/network_protocol.dia diff --git a/doc/network_protocol.dia b/doc/network_protocol.dia Binary files differdeleted file mode 100644 index df9693e..0000000 --- a/doc/network_protocol.dia +++ /dev/null diff --git a/doc/presentation.asciidoc b/doc/presentation.asciidoc new file mode 100644 index 0000000..3f81ac8 --- /dev/null +++ b/doc/presentation.asciidoc @@ -0,0 +1,21 @@ +DMC 2012 Praesentation TeamFK +============================= +:Author: Jan Klemkow, Benjamin Franzke + +== Gefangendilemma-Implementierung + + * Server in C + * Client in Prolog + +== Netzwerkprotokoll + + * TCP Port 8068 + * Uebertragung von einem Byte! + * 'c' fuer *Cooperation* + * 'd' fuer *Defection* + +== Netzwerkprotokoll-Ablauf + +image::image/network_protocol.svg[time] + +// vim: set syntax=asciidoc: |