Mercurial > garten
annotate runtick.sh @ 8:9bd0a2100694
new weather implementation
author | meillo@marmaro.de |
---|---|
date | Mon, 26 May 2008 23:25:36 +0200 |
parents | b1e309dc0b98 |
children | ac67f688ed2e |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 # | |
3 # runs one cycle | |
4 # | |
5 | |
6 if [ $# -ne 1 ] ; then | |
7 echo "usage: runtick.sh <gamename>" | |
8 exit 1 | |
9 fi | |
10 | |
11 gamename="$1" | |
12 | |
4
32c4212f05d9
less verbosity on queries; activation of weather
meillo@marmaro.de
parents:
0
diff
changeset
|
13 echo "game '$gamename'" |
0 | 14 echo "started backend cycle at `date +%F\ %H:%M:%S`" |
15 | |
16 ./bin/clock $gamename | |
4
32c4212f05d9
less verbosity on queries; activation of weather
meillo@marmaro.de
parents:
0
diff
changeset
|
17 ./bin/weather $gamename |
6
e3679f888813
added environment module (only static code)
meillo@marmaro.de
parents:
4
diff
changeset
|
18 ./bin/environment $gamename |
0 | 19 #./bin/market $gamename |
7
b1e309dc0b98
added growth module (quite static and limited implementation)
meillo@marmaro.de
parents:
6
diff
changeset
|
20 ./bin/growth $gamename |
0 | 21 #./bin/orderexec $gamename |
22 | |
23 echo "finished backend cycle at `date +%F\ %H:%M:%S`" |