about summary refs log tree commit diff
path: root/src/engine/docs
diff options
context:
space:
mode:
authorTeetime <TeetimeTW@yahoo.de>2012-02-17 19:31:43 +0100
committerTeetime <TeetimeTW@yahoo.de>2012-02-17 19:31:43 +0100
commitfc99167e687ba688ce9306bbec7e801450c917be (patch)
treeb440f2568a98b4b6a8db17925a299142adead7fa /src/engine/docs
parent206e9adb9140c3c8963661f534703de33f8abe05 (diff)
parent44a47d4253a829abcf50dac5586fd9a351f0c66b (diff)
downloadzcatch-fc99167e687ba688ce9306bbec7e801450c917be.tar.gz
zcatch-fc99167e687ba688ce9306bbec7e801450c917be.zip
Merge branch 'master' into zCatch-Exp
Conflicts:
	src/engine/server.h
	src/engine/server/server.cpp
	src/engine/server/server.h
	src/engine/shared/network.h
	src/engine/shared/network_server.cpp
	src/game/server/player.h
Diffstat (limited to 'src/engine/docs')
-rw-r--r--src/engine/docs/client_time.txt2
-rw-r--r--src/engine/docs/prediction.txt2
-rw-r--r--src/engine/docs/server_op.txt4
-rw-r--r--src/engine/docs/snapshots.txt2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/docs/client_time.txt b/src/engine/docs/client_time.txt
index bc76f91c..0d4dd53e 100644
--- a/src/engine/docs/client_time.txt
+++ b/src/engine/docs/client_time.txt
@@ -6,6 +6,6 @@ predtick, predintratick
  prevtick              tick                 predtick
    4                     8                    14
    |---------------------|---------------------|
-   0 <- intratick    ->  1                     
+   0 <- intratick    ->  1
    0 <- ticktime(in s)-> X
                          0 <- predintratick?-> 1
diff --git a/src/engine/docs/prediction.txt b/src/engine/docs/prediction.txt
index d5771d1a..e740b1e8 100644
--- a/src/engine/docs/prediction.txt
+++ b/src/engine/docs/prediction.txt
@@ -8,7 +8,7 @@ Predicted input sent to the server can be retrived by calling <client_get_input>
 > {
 > 	int tick;
 > 	prediction_reset();
-> 
+>
 > 	for(tick = client_tick()+1; tick <= client_predtick(); tick++)
 > 	{
 > 		MY_INPUT *input = (MY_INPUT *)client_get_input();
diff --git a/src/engine/docs/server_op.txt b/src/engine/docs/server_op.txt
index 59181e62..c0a054c4 100644
--- a/src/engine/docs/server_op.txt
+++ b/src/engine/docs/server_op.txt
@@ -25,13 +25,13 @@ while running
 			send snapshot
 		end for
 	end
-	
+
 	process new network messages
 end while
 
 unload map
 (end)
-		
+
 
 
 Section: Reinit
diff --git a/src/engine/docs/snapshots.txt b/src/engine/docs/snapshots.txt
index 647b049a..adb84863 100644
--- a/src/engine/docs/snapshots.txt
+++ b/src/engine/docs/snapshots.txt
@@ -48,7 +48,7 @@ After a snapshot have been created, compression is applyed to reduce the bandwid
 
 Topic: Interval
 
-The interval for how often a client recives a snapshot changes during the course of the connection. There are three different snapshot rates. 
+The interval for how often a client recives a snapshot changes during the course of the connection. There are three different snapshot rates.
 
 - *Init*. 5 snapshots per second. Used when a client is connecting and used until the client has acknowlaged a snapshot. This mechanism is used because the first snapshot because no delta compression can be done.