home · contact · privacy
Server/py: In SERVER_COMMANDS, mirror Python variant more precisely.
[plomrogue] / SERVER_COMMANDS
1 Command reading and writing
2 ===========================
3
4 Normal mode
5 -----------
6
7 In normal mode, the server on start up checks for the existence of ./savefile
8 and, on success, reads all commands from it. If no savefile exists, commands
9 from ./confserver/world are read instead – and written to the file ./record.
10 Afterwards, the command "MAKE_WORLD" with the current Unix time as argument is
11 interpreted (and also written to ./record).
12
13 In any case, from then on, further commands are read in from ./server/in. New
14 commands must be appended to the file – which is what the client does. All
15 commands from ./server/in except meta commands are also written to ./record.
16
17 Every fifteen seconds, if any turns have passed, ./savefile is written – with a
18 list of all god commands necessary to recreate the current world state. On each
19 world state change, ./server/worldstate is updated and a message "WORLD_UPDATED"
20 written to ./server/out.
21
22 Replay mode
23 -----------
24
25 In replay mode, commands from ./record are read. If a turn number is given as an
26 argument, the file is read until the given turn is reached, or, if the turn
27 number is higher than the last turn of the recorded play, the last turn. If no
28 turn number is given as argument, the record file is replayed until turn 1 is
29 reached. Meta commands in ./record are not understood.
30
31 From then on, ./server/in is also read. Meta commands sent by the client are
32 interpreted normally, but any player and god command merely furthers reading of
33 ./record by one line and is otherwise ignored.
34
35 Command list
36 ============
37
38 Each command is of a single line. It consists at least of one command stringe,
39 in some cases followed by an obligatory argument. Argument fields are described
40 below in square brackets. Number ranges are described by the first legal number,
41 followed by " to ", followed by the last legal number. "[string]" means any text
42 string is expected, which must be enclosed in single quotes if it contains
43 whitespaces. "[char]" means a single ASCII character is expected. If one of a
44 set of pre-defined strings is expected, the legal strings are divided by pipe
45 symbols ("|").
46
47 Meta commands
48 -------------
49
50 PING
51 Write "PONG" line to ./server/out file.
52
53 QUIT
54 Shut down server.
55
56 THINGS_HERE [0 to 255] [0 to 255]
57 If world exists, write line-by-line list of things visible or in memory at y
58 position of first argument, x position of second argument of map into
59 ./server/out file, enclosed by two lines "THINGS_HERE START" and
60 "THINGS_HERE END".
61
62 Player commands
63 ---------------
64
65 ai
66 Do what the AI would do.
67
68 wait
69 Make player character wait one turn.
70
71 move [east|south-east|south-west|west|north-west|north-east]
72 Make player character move into direction described by argument, or attack into
73 that direction if there is an enemy.
74
75 pick_up
76 Make player character pick up topmost thing it is standing on.
77
78 drop [0 to 255]
79 Make player character drop to the ground item of argument's position in the
80 player character's inventory.
81
82 use [0 to 255]
83 Make player character use item of argument's position in player character's
84 inventory.
85
86 God commands
87 ------------
88
89 TURN [0 to 65535]
90 Set world turn to argument. (Initial value: 0.)
91
92 PLAYER_TYPE [0 to 255]
93 Set to argument ID of thing type into which a new world's player character will
94 be generated. (Initial value: 0.)
95
96 SEED_RANDOMNESS [0 to 4294967295]
97 Set randomness seed to argument. (Initial value: 0.)
98
99 SEED_MAP [0 to 4294967295]
100 (Re-)generate map to seed of argument and map size.
101
102 MAKE_WORLD [0 to 4294967295]
103 Set map seed and randomness seed to argument. Remove all things. (Re-)generate
104 map. Add to map things specified in thing types table in quantity defined there
105 by START_NUMBER command, with first thing (of thing ID of 0) of type defined as
106 player type by PLAYER_TYPE command. Set world turn to 1. Activate world. Answer
107 with 'NEW_WORLD' message in ./server/out file.
108
109 MAP_LENGTH [1 to 256]
110 Deactivate world. Remove ./server/worldstate file. Remove all things. Remove
111 map. Set map edge length to argument. (Initial value: 64.)
112
113 WORLD_ACTIVE [0|1]
114 Set world activity state to argument. If 0, remove ./server/worldstate file.
115 Else, if world was so far inactive, a map exists, at least one "wait" thing
116 action is defined, and a thing of ID 0 (= a player character) that is not part
117 of any other thing's inventory, (re-)build all animate things' fields of view,
118 and activate world. (Initial value: 0.)
119
120 TA_ID [0 to 255]
121 Select thing action to manipulate by argument as ID. If argument is 0, change it
122 to the lowest unused thing action ID greater than 0. If action of ID does not
123 exist yet, create it with default name "wait" and default effort 1.
124
125 TA_EFFORT [0 to 255]
126 Set to argument the number of turns finishing the selected thing action takes.
127
128 TA_NAME [wait|move|use|drop|pick_up]
129 Set selected thing action's name (and thereby function, equal to player
130 command). Legal worlds need at least one action of name "wait", so if this
131 unsets the world's only "wait" action, the world is deactivated, and the
132 ./server/worldstate file removed.
133
134 T_ID [-32768 to 32767]
135 Select thing to manipulate by argument as ID. If argument is <0 or >255, change
136 it to the lowest unused thing ID. If thing of ID does not exist yet, create it
137 with default position of y=0/x=0, the first thing type's ID, and that type's
138 lifepoints value; if world is active and the thing is animate, build its field
139 of view.
140
141 T_TYPE [0 to 255]
142 Set selected thing's type ID to argument.
143
144 T_POSY [0 to 255]
145 Set selected thing's map row position to argument. Delete thing's field of view
146 and, if world is active, rebuild it.
147
148 T_POSX [0 to 255]
149 Set selected thing's map column position to argument. Delete thing's field of
150 view and, if world is active, rebuild it.
151
152 T_COMMAND [0 to 255]
153 Set to argument the action thing is currently performing, as identified by its
154 thing action ID, if a thing action of that ID is defined. If argument is 0, the
155 thing's command ID is set to that, implying that it is not performing any
156 action.
157
158 T_ARGUMENT [0 to 255]
159 Set selected thing's action argument value to argument.
160
161 T_PROGRESS [0 to 255]
162 Set selected thing's action progress (number of turns already invested in
163 performing the action) value to argument.
164
165 T_LIFEPOINTS [0 to 255]
166 Set selected thing's lifepoints to argument.
167
168 T_SATIATION [-32768 to 32767]
169 Set selected thing's satiation score. If above zero, and thing's lifepoints are
170 below its thing type's initial lifepoints, there is a 1/32 chance each turn of
171 waiting action that the thing's lifepoints will rise. For values affecting the
172 thing's lifepoints negatively, see note on TT_LIFEPOINTS.
173
174 T_CARRIES [0 to 255]
175 Add thing of ID in argument to inventory of selected thing, if said thing is
176 available for carrying and not the selected thing.
177
178 T_MEMMAP [0 to 255] [string]
179 Set part of selected thing's memory of the game map to string argument: the line
180 of the argument's number.
181
182 T_MEMDEPTHMAP [0 to 255] [string]
183 Set part of selected thing's game map memory depth map to string argument: the
184 line of the argument's number.
185
186 T_MEMTHING [0 to 255] [0 to 255] [0 to 255]
187 Add to selected thing's memory of things on map thing of ID of first argument,
188 y position of second argument and x position of third argument.
189
190 TT_ID [-32768 to 32767]
191 Select thing type to manipulate by argument as ID. If argument is <0 or <255,
192 change it to the lowest unused thing type ID. If thing type of ID does not exist
193 yet, create it with default name "(none)", corpse ID equal to the new thing
194 type's ID, and remaining thing type attributes to 0.
195
196 TT_CONSUMABLE [0-65535]
197 Set selected thing type's consumability value to argument – the number of
198 .satiation score points earned by consuming/using things of that type.
199
200 TT_START_NUMBER [0-255]
201 Set selected thing type's number of things of type to spawn on successful
202 MAKE_WORLD command to argument.
203
204 TT_LIFEPOINTS [0-255]
205 Set selected thing type's initial lifepoints value to argument. Things of 0
206 lifepoints are considered inanimate, otherwise animate. This value also sets the
207 degree to which the selected type's things suffer from under- or over-satiation:
208 If 0, not at all. Else, it defines a stomach size value of 32767 divided by it.
209 Each turn a thing of the given type may then suffer a lifepoint decrement to the
210 chance of the rounded down quotient of its satiation score's absolute value by
211 its stomach size value, then again divided by the latter. (This means that the
212 change is always zero when the absolute value of the satiation score is lower
213 than the stomach size value.)
214
215 TT_SYMBOL [char]
216 Set to argument symbol by which things of the selected type are represented on
217 the map.
218
219 TT_NAME [string]
220 Set selected thing type's name to argument. This name identifies things in the
221 game log and the inventory.
222
223 TT_CORPSE_ID [0-255]
224 Set to argument the ID of the thing type that things of the selected type
225 transform into when their state changes from animate to inanimate.
226
227 TT_PROLIFERATE [0-255]
228 If non-zero, there is a chance of 1 divided by the given value each turn for any
229 thing of the selected type to emit an offspring to a random neighbor cell if one
230 is available that is passable and not inhabited by a thing of the same same type
231 or, if the proliferating thing is animate, any other animate thing.