1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
6 from server.config.world_data import world_db
10 if action_exists("drink") and world_db["WORLD_ACTIVE"]:
11 if not chr(world_db["MAP"][world_db["Things"][0]["pos"]]) == "~":
12 log("NOTHING to drink here.")
14 elif world_db["Things"][0]["T_BLADDER"] >= 32:
15 log("You're too FULL to drink more.")
17 world_db["set_command"]("drink")
21 pos = world_db["Things"][0]["pos"]
22 if chr(world_db["MAP"][pos]) == "~" and t["T_BLADDER"] < 32:
25 world_db["wetmap"][pos] -= 1
26 if world_db["wetmap"][pos] == 48:
27 world_db["MAP"][pos] = ord("_")
31 if action_exists("pee") and world_db["WORLD_ACTIVE"]:
32 if world_db["Things"][0]["T_BLADDER"] < 1:
33 log("Nothing to drop from empty bladder.")
35 world_db["set_command"]("pee")
39 if t["T_BLADDER"] < 1:
41 if t == world_db["Things"][0]:
42 log("You LOSE fluid.")
44 terrain = world_db["MAP"][t["pos"]]
45 if world_db["wetmap"][t["pos"]] == 51:
47 if t == world_db["Things"][0]:
48 t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
51 world_db["wet_ground"](t["pos"])
55 if action_exists("drop") and world_db["WORLD_ACTIVE"]:
56 if world_db["Things"][0]["T_BOWEL"] < 1:
57 log("Nothing to drop from empty bowel.")
59 world_db["set_command"]("drop")
65 if t == world_db["Things"][0]:
66 log("You DROP waste.")
67 terrain = world_db["MAP"][t["pos"]]
69 if chr(terrain) in "_~":
70 world_db["MAP"][t["pos"]] = ord(".")
71 elif terrain == ord("."):
72 world_db["MAP"][t["pos"]] = ord(":")
73 elif terrain == ord(":"):
74 world_db["MAP"][t["pos"]] = ord("%")
75 elif terrain == ord("%"):
76 world_db["MAP"][t["pos"]] = ord("#")
77 elif terrain == ord("#"):
78 world_db["MAP"][t["pos"]] = ord("X")
79 elif terrain == ord("X"):
81 if t == world_db["Things"][0]:
82 t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
86 def play_move(str_arg):
87 """Try "move" as player's T_COMMAND, str_arg as T_ARGUMENT / direction."""
88 if action_exists("move") and world_db["WORLD_ACTIVE"]:
89 from server.config.world_data import directions_db, symbols_passable
90 t = world_db["Things"][0]
91 if not str_arg in directions_db:
92 print("Illegal move direction string.")
94 d = ord(directions_db[str_arg])
95 from server.utils import mv_yx_in_dir_legal
96 move_result = mv_yx_in_dir_legal(chr(d), t["T_POSY"], t["T_POSX"])
97 if 1 == move_result[0]:
98 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
99 if chr(world_db["MAP"][pos]) in "%#":
100 if t["T_BOWEL"] >= 32:
101 if t == world_db["Things"][0]:
102 log("You're too FULL to eat.")
104 world_db["Things"][0]["T_ARGUMENT"] = d
105 world_db["set_command"]("move")
107 if chr(world_db["MAP"][pos]) in symbols_passable:
108 world_db["Things"][0]["T_ARGUMENT"] = d
109 world_db["set_command"]("move")
111 log("You CAN'T eat your way through there.")
115 from server.build_fov_map import build_fov_map
116 from server.utils import mv_yx_in_dir_legal, rand
117 from server.config.world_data import directions_db, symbols_passable
119 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
120 t["T_POSY"], t["T_POSX"])
121 if 1 == move_result[0]:
122 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
123 hitted = [tid for tid in world_db["Things"]
124 if world_db["Things"][tid] != t
125 if world_db["Things"][tid]["T_LIFEPOINTS"]
126 if world_db["Things"][tid]["T_POSY"] == move_result[1]
127 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
130 hitted_tid = world_db["Things"][hit_id]["T_TYPE"]
131 if t == world_db["Things"][0]:
132 hitted_name = world_db["ThingTypes"][hitted_tid]["TT_NAME"]
133 log("You BUMP into " + hitted_name + ".")
135 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
136 log(hitter_name +" BUMPS into you.")
138 passable = chr(world_db["MAP"][pos]) in symbols_passable
139 direction = [direction for direction in directions_db
140 if directions_db[direction] == chr(t["T_ARGUMENT"])][0]
142 t["T_POSY"] = move_result[1]
143 t["T_POSX"] = move_result[2]
144 t["pos"] = move_result[1] * world_db["MAP_LENGTH"] + move_result[2]
147 if t["T_BOWEL"] >= 32 or chr(world_db["MAP"][pos]) == "X":
150 if chr(world_db["MAP"][pos]) == "%" and 0 == int(rand.next() % 2):
153 elif chr(world_db["MAP"][pos]) in "#BEH" and 0 == int(rand.next() % 5):
158 if world_db["wetmap"][pos] == 48:
159 world_db["MAP"][pos] = ord("_")
161 world_db["MAP"][pos] = ord("~")
162 if t["T_BOWEL"] > 32:
167 from server.make_map import new_pos, is_neighbor
168 from server.utils import rand
169 world_db["MAP"] = bytearray(b'X' * (world_db["MAP_LENGTH"] ** 2))
170 length = world_db["MAP_LENGTH"]
171 add_half_width = (not (length % 2)) * int(length / 2)
172 world_db["MAP"][int((length ** 2) / 2) + add_half_width] = ord("#")
174 y, x, pos = new_pos()
175 if "X" == chr(world_db["MAP"][pos]) and is_neighbor((y, x), "#"):
176 if y == 0 or y == (length - 1) or x == 0 or x == (length - 1):
178 world_db["MAP"][pos] = ord("#")
179 n_ground = int((length ** 2) / 16)
181 while (i_ground <= n_ground):
182 single_allowed = rand.next() % 32
183 y, x, pos = new_pos()
184 if "#" == chr(world_db["MAP"][pos]) \
185 and ((not single_allowed) or is_neighbor((y, x), "_")):
186 world_db["MAP"][pos] = ord("_")
188 n_water = int((length ** 2) / 64)
190 while (i_water <= n_water):
191 single_allowed = rand.next() % 32
192 y, x, pos = new_pos()
193 if "_" == chr(world_db["MAP"][pos]) \
194 and ((not single_allowed) or is_neighbor((y, x), "~")):
195 world_db["MAP"][pos] = ord("~")
196 world_db["wetmap"][pos] = 51
200 def calc_effort(ta, t):
201 from server.utils import mv_yx_in_dir_legal
202 if ta["TA_NAME"] == "move":
203 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
204 t["T_POSY"], t["T_POSX"])
205 if 1 == move_result[0]:
206 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
207 terrain = chr(world_db["MAP"][pos])
213 world_db["calc_effort"] = calc_effort
217 from server.ai import ai
218 from server.config.actions import action_db
219 from server.update_map_memory import update_map_memory
220 from server.io import try_worldstate_update
221 from server.config.io import io_db
222 from server.utils import rand
223 while world_db["Things"][0]["T_LIFEPOINTS"]:
224 for tid in [tid for tid in world_db["Things"]]:
225 if not tid in world_db["Things"]:
227 Thing = world_db["Things"][tid]
228 if Thing["T_LIFEPOINTS"]:
229 if not Thing["T_COMMAND"]:
230 update_map_memory(Thing)
234 if Thing["T_LIFEPOINTS"]:
235 Thing["T_PROGRESS"] += 1
236 taid = [a for a in world_db["ThingActions"]
237 if a == Thing["T_COMMAND"]][0]
238 ThingAction = world_db["ThingActions"][taid]
239 effort = world_db["calc_effort"](ThingAction, Thing)
240 if Thing["T_PROGRESS"] >= effort:
241 action = action_db["actor_" + ThingAction["TA_NAME"]]
243 Thing["T_COMMAND"] = 0
244 Thing["T_PROGRESS"] = 0
245 if Thing["T_BOWEL"] > 16:
246 if 0 == (rand.next() % (33 - Thing["T_BOWEL"])):
247 action_db["actor_drop"](Thing)
248 if Thing["T_BLADDER"] > 16:
249 if 0 == (rand.next() % (33 - Thing["T_BLADDER"])):
250 action_db["actor_pee"](Thing)
252 for i in range(world_db["MAP_LENGTH"] ** 2):
253 if world_db["MAP"][i] != ord("~") and world_db["wetmap"][i] > 48 \
254 and 0 == (rand.next() % 5):
255 world_db["wetmap"][i] -= 1
258 positions_to_wet = []
259 for i in range(world_db["MAP_LENGTH"] ** 2):
260 if chr(world_db["MAP"][i]) in "_~":
261 positions_to_wet += [i]
263 select = rand.next() % len(positions_to_wet)
264 world_db["wet_ground"](positions_to_wet[select])
266 log("New water at " + str(positions_to_wet[select]))
267 world_db["TURN"] += 1
268 io_db["worldstate_updateable"] = True
269 try_worldstate_update()
270 world_db["turn_over"] = turn_over
274 """Call ai() on player Thing, then turn_over()."""
275 from server.ai import ai
276 if world_db["WORLD_ACTIVE"]:
277 ai(world_db["Things"][0])
278 world_db["turn_over"]()
281 def set_command(action):
282 """Set player's T_COMMAND, then call turn_over()."""
283 tid = [x for x in world_db["ThingActions"]
284 if world_db["ThingActions"][x]["TA_NAME"] == action][0]
285 world_db["Things"][0]["T_COMMAND"] = tid
286 world_db["turn_over"]()
287 world_db["set_command"] = set_command
291 """Try "wait" as player's T_COMMAND."""
292 if world_db["WORLD_ACTIVE"]:
293 world_db["set_command"]("wait")
297 length = world_db["MAP_LENGTH"]
299 for i in range(length):
300 line = world_db["wetmap"][i * length:(i * length) + length].decode()
301 string = string + "WETMAP" + " " + str(i) + " " + line + "\n"
305 def wetmapset(str_int, mapline):
306 def valid_map_line(str_int, mapline):
307 from server.utils import integer_test
308 val = integer_test(str_int, 0, 255)
310 if val >= world_db["MAP_LENGTH"]:
311 print("Illegal value for map line number.")
312 elif len(mapline) != world_db["MAP_LENGTH"]:
313 print("Map line length is unequal map width.")
317 val = valid_map_line(str_int, mapline)
319 length = world_db["MAP_LENGTH"]
320 if not world_db["wetmap"]:
321 m = bytearray(b' ' * (length ** 2))
323 m = world_db["wetmap"]
324 m[val * length:(val * length) + length] = mapline.encode()
325 if not world_db["wetmap"]:
326 world_db["wetmap"] = m
329 if world_db["MAP"][pos] == ord("_"):
330 world_db["MAP"][pos] = ord("~")
331 world_db["wetmap"][pos] += 1
332 world_db["wet_ground"] = wet_ground
336 from server.worldstate_write_helpers import write_map
337 length = world_db["MAP_LENGTH"]
338 visible_wetmap = bytearray(b' ' * (length ** 2))
339 for i in range(length ** 2):
340 if world_db["Things"][0]["fovmap"][i] == ord('v'):
341 visible_wetmap[i] = world_db["wetmap"][i]
342 return write_map(visible_wetmap, world_db["MAP_LENGTH"])
345 from server.config.io import io_db
346 io_db["worldstate_write_order"] += [["T_BOWEL", "player_int"]]
347 io_db["worldstate_write_order"] += [["T_BLADDER", "player_int"]]
348 io_db["worldstate_write_order"] += [[write_wetmap, "func"]]
349 import server.config.world_data
350 server.config.world_data.symbols_hide = "%#X" + "ABC" + "DEF" + "GHI"
351 server.config.world_data.symbols_passable = "_.:" + "~JK" + "LMN" + "OPQ"
352 server.config.world_data.thing_defaults["T_BOWEL"] = 0
353 server.config.world_data.thing_defaults["T_BLADDER"] = 0
354 world_db["wetmap"] = bytearray(b"0" * world_db["MAP_LENGTH"] ** 2)
355 io_db["hook_save"] = save_wetmap
356 import server.config.make_world_helpers
357 server.config.make_world_helpers.make_map = make_map
358 from server.config.commands import commands_db
359 commands_db["THINGS_HERE"] = (2, True, lambda x, y: None)
360 commands_db["ai"] = (0, False, command_ai)
361 commands_db["move"] = (1, False, play_move)
362 commands_db["wait"] = (0, False, play_wait)
363 commands_db["drop"] = (0, False, play_drop)
364 commands_db["drink"] = (0, False, play_drink)
365 commands_db["pee"] = (0, False, play_pee)
366 commands_db["use"] = (1, False, lambda x: None)
367 commands_db["pickup"] = (0, False, lambda: None)
368 commands_db["T_BOWEL"] = (1, False, setter("Thing", "T_BOWEL", 0, 255))
369 commands_db["T_BLADDER"] = (1, False, setter("Thing", "T_BLADDER", 0, 255))
370 commands_db["WETMAP"] = (2, False, wetmapset)
371 from server.actions import actor_wait
372 import server.config.actions
373 server.config.actions.action_db = {
374 "actor_wait": actor_wait,
375 "actor_move": actor_move,
376 "actor_drop": actor_drop,
377 "actor_drink": actor_drink,
378 "actor_pee": actor_pee,
381 strong_write(io_db["file_out"], "PLUGIN TheCrawlingEater\n")