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 pos = world_db["Things"][0]["pos"]
12 if not (chr(world_db["MAP"][pos]) == "0"
13 and world_db["wetmap"][pos] > ord("0")):
14 log("NOTHING to drink here.")
16 elif world_db["Things"][0]["T_KIDNEY"] >= 32:
17 log("You're too FULL to drink more.")
19 world_db["set_command"]("drink")
24 if chr(world_db["MAP"][pos]) == "0" and \
25 world_db["wetmap"][pos] > ord("0") and t["T_KIDNEY"] < 32:
26 if world_db["Things"][0] == t:
29 world_db["wetmap"][pos] -= 1
30 if world_db["wetmap"][pos] == ord("0"):
31 world_db["MAP"][pos] = ord("0")
32 elif t == world_db["Things"][0]:
33 log("YOU FAIL TO DRINK " + str(world_db["MAP"][pos] - ord("0")))
37 if action_exists("pee") and world_db["WORLD_ACTIVE"]:
38 if world_db["Things"][0]["T_BLADDER"] < 1:
39 log("Nothing to drop from empty bladder.")
41 world_db["set_command"]("pee")
45 if t["T_BLADDER"] < 1:
47 if t == world_db["Things"][0]:
48 log("You LOSE fluid.")
49 if not world_db["test_air"](t):
52 world_db["wetmap"][t["pos"]] += 1
56 if action_exists("drop") and world_db["WORLD_ACTIVE"]:
57 if world_db["Things"][0]["T_BOWEL"] < 1:
58 log("Nothing to drop from empty bowel.")
60 world_db["set_command"]("drop")
66 if t == world_db["Things"][0]:
67 log("You DROP waste.")
68 if not world_db["test_air"](t):
70 world_db["MAP"][t["pos"]] += 1
74 def play_move(str_arg):
75 """Try "move" as player's T_COMMAND, str_arg as T_ARGUMENT / direction."""
76 if action_exists("move") and world_db["WORLD_ACTIVE"]:
77 from server.config.world_data import directions_db, symbols_passable
78 t = world_db["Things"][0]
79 if not str_arg in directions_db:
80 print("Illegal move direction string.")
82 d = ord(directions_db[str_arg])
83 from server.utils import mv_yx_in_dir_legal
84 move_result = mv_yx_in_dir_legal(chr(d), t["T_POSY"], t["T_POSX"])
85 if 1 == move_result[0]:
86 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
87 hitted = [tid for tid in world_db["Things"]
88 if world_db["Things"][tid]["T_POSY"] == move_result[1]
89 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
91 if t["T_STOMACH"] >= 32 and t["T_KIDNEY"] >= 32:
92 if t == world_db["Things"][0]:
93 log("You're too FULL to suck from another creature.")
95 world_db["Things"][0]["T_ARGUMENT"] = d
96 world_db["set_command"]("eat")
98 if chr(world_db["MAP"][pos]) in "34":
99 if t["T_STOMACH"] >= 32:
100 if t == world_db["Things"][0]:
101 log("You're too FULL to eat.")
103 world_db["Things"][0]["T_ARGUMENT"] = d
104 world_db["set_command"]("eat")
106 if chr(world_db["MAP"][pos]) in symbols_passable:
107 world_db["Things"][0]["T_ARGUMENT"] = d
108 world_db["set_command"]("move")
110 log("You CAN'T eat your way through there.")
114 from server.utils import mv_yx_in_dir_legal, rand
115 from server.config.world_data import symbols_passable
117 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
118 t["T_POSY"], t["T_POSX"])
119 if 1 == move_result[0]:
120 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
121 hitted = [tid for tid in world_db["Things"]
122 if world_db["Things"][tid]["T_POSY"] == move_result[1]
123 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
126 hitted_tid = world_db["Things"][hit_id]["T_TYPE"]
127 if t == world_db["Things"][0]:
128 hitted_name = world_db["ThingTypes"][hitted_tid]["TT_NAME"]
129 log("You SUCK from " + hitted_name + ".")
131 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
132 log(hitter_name +" SUCKS from you.")
133 hitted = world_db["Things"][hit_id]
134 if t["T_STOMACH"] < 32:
135 t["T_STOMACH"] = t["T_STOMACH"] + 1
136 hitted["T_STOMACH"] -= 1
137 if t["T_KIDNEY"] < 32:
138 t["T_KIDNEY"] = t["T_KIDNEY"] + 1
139 hitted["T_KIDNEY"] -= 1
141 passable = chr(world_db["MAP"][pos]) in symbols_passable
142 if passable and t == world_db["Things"][0]:
143 log("You try to EAT, but fail.")
145 height = world_db["MAP"][pos] - ord("0")
146 if t["T_STOMACH"] >= 32 or height == 5:
149 if t == world_db["Things"][0]:
151 eaten = (height == 3 and 0 == int(rand.next() % 2)) or \
152 (height == 4 and 0 == int(rand.next() % 5))
154 world_db["MAP"][pos] = ord("0")
155 if t["T_STOMACH"] > 32:
160 from server.build_fov_map import build_fov_map
161 from server.utils import mv_yx_in_dir_legal, rand
162 from server.config.world_data import symbols_passable
164 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
165 t["T_POSY"], t["T_POSX"])
166 if 1 == move_result[0]:
167 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
168 hitted = [tid for tid in world_db["Things"]
169 if world_db["Things"][tid]["T_POSY"] == move_result[1]
170 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
173 hitted_tid = world_db["Things"][hit_id]["T_TYPE"]
174 if t == world_db["Things"][0]:
175 hitted_name = world_db["ThingTypes"][hitted_tid]["TT_NAME"]
176 log("You BUMP into " + hitted_name + ".")
178 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
179 log(hitter_name +" BUMPS into you.")
181 passable = chr(world_db["MAP"][pos]) in symbols_passable
183 t["T_POSY"] = move_result[1]
184 t["T_POSX"] = move_result[2]
185 t["pos"] = move_result[1] * world_db["MAP_LENGTH"] + move_result[2]
187 #if t != world_db["Things"][0]:
188 # world_db["Things"][0]["T_MEMMAP"][t["pos"]] = ord("?")
189 elif t == world_db["Things"][0]:
190 log("You try to MOVE there, but fail.")
194 if world_db["MAP"][t["pos"]] == ord("-"):
195 world_db["die"](t, "You FALL in a hole, and die.")
198 world_db["test_hole"] = test_hole
202 if world_db["terrain_fullness"](t["pos"]) > 5:
203 world_db["die"](t, "You SUFFOCATE")
206 world_db["test_air"] = test_air
210 t["T_LIFEPOINTS"] = 0
211 if t == world_db["Things"][0]:
212 t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
213 t["T_MEMMAP"][t["pos"]] = ord("@")
216 world_db["MAP"][t["pos"]] = ord("5")
217 world_db["HUMILITY"] = t["T_KIDNEY"] + t["T_BLADDER"] + \
218 (world_db["wetmap"][t["pos"]] - ord("0"))
219 world_db["wetmap"][t["pos"]] = 0
220 tid = next(tid for tid in world_db["Things"]
221 if world_db["Things"][tid] == t)
222 del world_db["Things"][tid]
223 world_db["die"] = die
227 from server.make_map import new_pos, is_neighbor
228 from server.utils import rand
229 world_db["MAP"] = bytearray(b'5' * (world_db["MAP_LENGTH"] ** 2))
230 length = world_db["MAP_LENGTH"]
231 add_half_width = (not (length % 2)) * int(length / 2)
232 world_db["MAP"][int((length ** 2) / 2) + add_half_width] = ord("4")
234 y, x, pos = new_pos()
235 if "5" == chr(world_db["MAP"][pos]) and is_neighbor((y, x), "4"):
236 if y == 0 or y == (length - 1) or x == 0 or x == (length - 1):
238 world_db["MAP"][pos] = ord("4")
239 n_ground = int((length ** 2) / 16)
241 while (i_ground <= n_ground):
242 single_allowed = rand.next() % 32
243 y, x, pos = new_pos()
244 if "4" == chr(world_db["MAP"][pos]) \
245 and ((not single_allowed) or is_neighbor((y, x), "0")):
246 world_db["MAP"][pos] = ord("0")
248 n_water = int((length ** 2) / 32)
250 while (i_water <= n_water):
251 y, x, pos = new_pos()
252 if ord("0") == world_db["MAP"][pos] and \
253 ord("0") == world_db["wetmap"][pos]:
254 world_db["wetmap"][pos] = ord("3")
258 def calc_effort(ta, t):
259 from server.utils import mv_yx_in_dir_legal
260 if ta["TA_NAME"] == "move":
261 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
262 t["T_POSY"], t["T_POSX"])
263 if 1 == move_result[0]:
264 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
265 narrowness = world_db["MAP"][pos] - ord("0")
266 return 2 ** narrowness
268 world_db["calc_effort"] = calc_effort
272 from server.ai import ai
273 from server.config.actions import action_db
274 from server.update_map_memory import update_map_memory
275 from server.io import try_worldstate_update
276 from server.config.io import io_db
277 from server.utils import rand
278 while world_db["Things"][0]["T_LIFEPOINTS"]:
279 for tid in [tid for tid in world_db["Things"]]:
280 if not tid in world_db["Things"]:
282 t = world_db["Things"][tid]
283 if t["T_LIFEPOINTS"]:
284 if not (world_db["test_air"](t) and world_db["test_hole"](t)):
286 if not t["T_COMMAND"]:
291 if t["T_LIFEPOINTS"]:
293 taid = [a for a in world_db["ThingActions"]
294 if a == t["T_COMMAND"]][0]
295 ThingAction = world_db["ThingActions"][taid]
296 effort = world_db["calc_effort"](ThingAction, t)
297 if t["T_PROGRESS"] >= effort:
298 action = action_db["actor_" + ThingAction["TA_NAME"]]
302 if t["T_BOWEL"] > 16:
303 if 0 == (rand.next() % (33 - t["T_BOWEL"])):
304 action_db["actor_drop"](t)
305 if t["T_BLADDER"] > 16:
306 if 0 == (rand.next() % (33 - t["T_BLADDER"])):
307 action_db["actor_pee"](t)
308 if 0 == world_db["TURN"] % 5:
313 if t["T_STOMACH"] <= 0:
314 world_db["die"](t, "You DIE of hunger.")
315 elif t["T_KIDNEY"] <= 0:
316 world_db["die"](t, "You DIE of dehydration.")
317 for pos in range(world_db["MAP_LENGTH"] ** 2):
318 wetness = world_db["wetmap"][pos] - ord("0")
319 height = world_db["MAP"][pos] - ord("0")
320 if height == 0 and wetness > 0 \
321 and 0 == rand.next() % ((2 ** 13) / (2 ** wetness)):
322 world_db["MAP"][pos] = ord("-")
323 if ((wetness > 0 and height != 0) or wetness > 1) \
324 and 0 == rand.next() % 5:
325 world_db["wetmap"][pos] -= 1
326 world_db["HUMIDITY"] += 1
327 if world_db["HUMIDITY"] > 0:
328 if world_db["HUMIDITY"] > 2 and 0 == rand.next() % 2:
329 world_db["NEW_SPAWN"] += 1
330 world_db["HUMIDITY"] -= 1
331 if world_db["NEW_SPAWN"] >= 16:
332 world_db["NEW_SPAWN"] -= 16
333 from server.new_thing import new_Thing
335 y = rand.next() % world_db["MAP_LENGTH"]
336 x = rand.next() % world_db["MAP_LENGTH"]
337 if chr(world_db["MAP"][y * world_db["MAP_LENGTH"] + x]) !=\
339 from server.utils import id_setter
340 tid = id_setter(-1, "Things")
341 world_db["Things"][tid] = new_Thing(
342 world_db["PLAYER_TYPE"], (y, x))
343 pos = y * world_db["MAP_LENGTH"] + x
345 positions_to_wet = []
346 for pos in range(world_db["MAP_LENGTH"] ** 2):
347 if world_db["MAP"][pos] == ord("0") \
348 and world_db["wetmap"][pos] < ord("5"):
349 positions_to_wet += [pos]
350 while world_db["HUMIDITY"] > 0 and len(positions_to_wet) > 0:
351 select = rand.next() % len(positions_to_wet)
352 pos = positions_to_wet[select]
353 world_db["wetmap"][pos] += 1
354 positions_to_wet.remove(pos)
355 world_db["HUMIDITY"] -= 1
356 world_db["TURN"] += 1
357 io_db["worldstate_updateable"] = True
358 try_worldstate_update()
359 world_db["turn_over"] = turn_over
363 """Call ai() on player Thing, then turn_over()."""
364 from server.ai import ai
365 if world_db["WORLD_ACTIVE"]:
366 ai(world_db["Things"][0])
367 world_db["turn_over"]()
370 def set_command(action):
371 """Set player's T_COMMAND, then call turn_over()."""
372 tid = [x for x in world_db["ThingActions"]
373 if world_db["ThingActions"][x]["TA_NAME"] == action][0]
374 world_db["Things"][0]["T_COMMAND"] = tid
375 world_db["turn_over"]()
376 world_db["set_command"] = set_command
380 """Try "wait" as player's T_COMMAND."""
381 if world_db["WORLD_ACTIVE"]:
382 world_db["set_command"]("wait")
386 length = world_db["MAP_LENGTH"]
388 for i in range(length):
389 line = world_db["wetmap"][i * length:(i * length) + length].decode()
390 string = string + "WETMAP" + " " + str(i) + " " + line + "\n"
394 def wetmapset(str_int, mapline):
395 def valid_map_line(str_int, mapline):
396 from server.utils import integer_test
397 val = integer_test(str_int, 0, 255)
399 if val >= world_db["MAP_LENGTH"]:
400 print("Illegal value for map line number.")
401 elif len(mapline) != world_db["MAP_LENGTH"]:
402 print("Map line length is unequal map width.")
406 val = valid_map_line(str_int, mapline)
408 length = world_db["MAP_LENGTH"]
409 if not world_db["wetmap"]:
410 m = bytearray(b' ' * (length ** 2))
412 m = world_db["wetmap"]
413 m[val * length:(val * length) + length] = mapline.encode()
414 if not world_db["wetmap"]:
415 world_db["wetmap"] = m
418 from server.worldstate_write_helpers import write_map
419 length = world_db["MAP_LENGTH"]
420 visible_wetmap = bytearray(b' ' * (length ** 2))
421 for i in range(length ** 2):
422 if world_db["Things"][0]["fovmap"][i] == ord('v'):
423 visible_wetmap[i] = world_db["wetmap"][i]
424 return write_map(visible_wetmap, world_db["MAP_LENGTH"])
428 if world_db["WORLD_ACTIVE"]:
429 world_db["ai"](world_db["Things"][0])
430 world_db["turn_over"]()
433 def get_dir_to_target(t, target):
435 from server.utils import rand, libpr, c_pointer_to_bytearray
436 from server.config.world_data import symbols_passable
438 def zero_score_map_where_char_on_memdepthmap(c):
439 map = c_pointer_to_bytearray(t["T_MEMDEPTHMAP"])
440 if libpr.zero_score_map_where_char_on_memdepthmap(c, map):
441 raise RuntimeError("No score map allocated for "
442 "zero_score_map_where_char_on_memdepthmap().")
444 def set_map_score(pos, score):
445 test = libpr.set_map_score(pos, score)
447 raise RuntimeError("No score map allocated for set_map_score().")
449 def set_movement_cost_map():
450 memmap = c_pointer_to_bytearray(t["T_MEMMAP"])
451 if libpr.TCE_set_movement_cost_map(memmap):
452 raise RuntimeError("No movement cost map allocated for "
453 "set_movement_cost_map().")
459 except StopIteration:
462 mapsize = world_db["MAP_LENGTH"] ** 2
463 if target == "food" and t["T_MEMMAP"]:
464 return exists(pos for pos in range(mapsize)
465 if ord("2") < t["T_MEMMAP"][pos] < ord("5"))
466 elif target == "fluid_certain" and t["fovmap"]:
467 return exists(pos for pos in range(mapsize)
468 if t["fovmap"] == ord("v")
469 if world_db["MAP"][pos] == ord("0")
470 if world_db["wetmap"][pos] > ord("0"))
471 elif target == "fluid_potential" and t["T_MEMMAP"] and t["fovmap"]:
472 return exists(pos for pos in range(mapsize)
473 if t["T_MEMMAP"][pos] == ord("0")
474 if t["fovmap"] != ord("v"))
475 elif target == "space" and t["T_MEMMAP"] and t["fovmap"]:
476 return exists(pos for pos in range(mapsize)
477 if ord("0") <= t["T_MEMMAP"][pos] <= ord("2")
478 if (t["fovmap"] != ord("v")
479 or world_db["terrain_fullness"](pos) < 5))
482 def init_score_map():
483 test = libpr.init_score_map()
484 set_movement_cost_map()
485 mapsize = world_db["MAP_LENGTH"] ** 2
487 raise RuntimeError("Malloc error in init_score_map().")
488 if target == "food" and t["T_MEMMAP"]:
489 [set_map_score(pos, 0) for pos in range(mapsize)
490 if ord("2") < t["T_MEMMAP"][pos] < ord("5")]
491 elif target == "fluid_certain" and t["fovmap"]:
492 [set_map_score(pos, 0) for pos in range(mapsize)
493 if t["fovmap"] == ord("v")
494 if world_db["MAP"][pos] == ord("0")
495 if world_db["wetmap"][pos] > ord("0")]
496 elif target == "fluid_potential" and t["T_MEMMAP"] and t["fovmap"]:
497 [set_map_score(pos, 0) for pos in range(mapsize)
498 if t["T_MEMMAP"][pos] == ord("0")
499 if t["fovmap"] != ord("v")]
500 elif target == "space" and t["T_MEMMAP"] and t["fovmap"]:
501 [set_map_score(pos, 0) for pos in range(mapsize)
502 if ord("0") <= t["T_MEMMAP"][pos] <= ord("2")
503 if (t["fovmap"] != ord("v")
504 or world_db["terrain_fullness"](pos) < 5)]
505 elif target == "search":
506 zero_score_map_where_char_on_memdepthmap(mem_depth_c[0])
508 def rand_target_dir(neighbors, cmp, dirs):
511 for i in range(len(dirs)):
512 if cmp == neighbors[i]:
513 candidates.append(dirs[i])
515 return candidates[rand.next() % n_candidates] if n_candidates else 0
517 def get_neighbor_scores(dirs, eye_pos):
519 if libpr.ready_neighbor_scores(eye_pos):
520 raise RuntimeError("No score map allocated for " +
521 "ready_neighbor_scores.()")
522 for i in range(len(dirs)):
523 scores.append(libpr.get_neighbor_score(i))
526 def get_dir_from_neighbors():
528 dir_to_target = False
531 neighbors = get_neighbor_scores(dirs, eye_pos)
532 minmax_start = 65535 - 1
533 minmax_neighbor = minmax_start
534 for i in range(len(dirs)):
535 if minmax_neighbor > neighbors[i]:
536 minmax_neighbor = neighbors[i]
537 if minmax_neighbor != minmax_start:
538 dir_to_target = rand_target_dir(neighbors, minmax_neighbor, dirs)
539 return dir_to_target, minmax_neighbor
541 dir_to_target = False
543 run_i = 9 + 1 if "search" == target else 1
545 while run_i and not dir_to_target and \
546 ("search" == target or seeing_thing()):
549 mem_depth_c = b'9' if b' ' == mem_depth_c \
550 else bytes([mem_depth_c[0] - 1])
551 if libpr.TCE_dijkstra_map_with_movement_cost():
552 raise RuntimeError("No score map allocated for dijkstra_map().")
553 dir_to_target, minmax_neighbor = get_dir_from_neighbors()
554 libpr.free_score_map()
555 if dir_to_target and str == type(dir_to_target):
557 from server.utils import mv_yx_in_dir_legal
558 move_result = mv_yx_in_dir_legal(dir_to_target, t["T_POSY"],
560 if 1 != move_result[0]:
562 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
563 if world_db["MAP"][pos] > ord("2"):
565 t["T_COMMAND"] = [taid for taid in world_db["ThingActions"]
566 if world_db["ThingActions"][taid]["TA_NAME"]
568 t["T_ARGUMENT"] = ord(dir_to_target)
569 return dir_to_target, minmax_neighbor
570 world_db["get_dir_to_target"] = get_dir_to_target
573 def terrain_fullness(pos):
574 return (world_db["MAP"][pos] - ord("0")) + \
575 (world_db["wetmap"][pos] - ord("0"))
576 world_db["terrain_fullness"] = terrain_fullness
581 if t["T_LIFEPOINTS"] == 0:
584 def standing_on_fluid(t):
585 if world_db["MAP"][t["pos"]] == ord("0") and \
586 world_db["wetmap"][t["pos"]] > ord("0"):
591 def thing_action_id(name):
592 return [taid for taid in world_db["ThingActions"]
593 if world_db["ThingActions"][taid]
594 ["TA_NAME"] == name][0]
596 t["T_COMMAND"] = thing_action_id("wait")
598 "safe_pee": (world_db["terrain_fullness"](t["pos"]) * t["T_BLADDER"]) / 4,
599 "safe_drop": (world_db["terrain_fullness"](t["pos"]) * t["T_BOWEL"]) / 4,
600 "food": 33 - t["T_STOMACH"],
601 "fluid_certain": 33 - t["T_KIDNEY"],
602 "fluid_potential": 32 - t["T_KIDNEY"],
605 from operator import itemgetter
606 needs = sorted(needs.items(), key=itemgetter(1,0))
610 if need[0] in {"fluid_certain", "fluid_potential"}:
611 if standing_on_fluid(t):
612 t["T_COMMAND"] = thing_action_id("drink")
614 elif t["T_BLADDER"] > 0 and \
615 world_db["MAP"][t["pos"]] == ord("0"):
616 t["T_COMMAND"] = thing_action_id("pee")
618 elif need[0] in {"safe_pee", "safe_drop"}:
619 action_name = need[0][len("safe_"):]
620 if world_db["terrain_fullness"](t["pos"]) < 4:
621 t["T_COMMAND"] = thing_action_id(action_name)
624 test = world_db["get_dir_to_target"](t, "space")
626 if (not test[1] < 5) and \
627 world_db["terrain_fullness"](t["pos"]) < 5:
628 t["T_COMMAND"] = thing_action_id(action_name)
630 if t["T_STOMACH"] < 32 and \
631 world_db["get_dir_to_target"](t, "food")[0]:
634 if world_db["get_dir_to_target"](t, need[0])[0]:
636 elif t["T_STOMACH"] < 32 and \
637 need[0] in {"fluid_certain", "fluid_potential"} and \
638 world_db["get_dir_to_target"](t, "food")[0]:
643 from server.config.io import io_db
644 io_db["worldstate_write_order"] += [["T_STOMACH", "player_int"]]
645 io_db["worldstate_write_order"] += [["T_KIDNEY", "player_int"]]
646 io_db["worldstate_write_order"] += [["T_BOWEL", "player_int"]]
647 io_db["worldstate_write_order"] += [["T_BLADDER", "player_int"]]
648 io_db["worldstate_write_order"] += [[write_wetmap, "func"]]
649 import server.config.world_data
650 server.config.world_data.symbols_hide = "345"
651 server.config.world_data.symbols_passable = "012-"
652 server.config.world_data.thing_defaults["T_STOMACH"] = 16
653 server.config.world_data.thing_defaults["T_BOWEL"] = 0
654 server.config.world_data.thing_defaults["T_KIDNEY"] = 16
655 server.config.world_data.thing_defaults["T_BLADDER"] = 0
656 world_db["wetmap"] = bytearray(b"0" * world_db["MAP_LENGTH"] ** 2)
657 if not "NEW_SPAWN" in world_db:
658 world_db["NEW_SPAWN"] = 0
659 if not "HUMIDITY" in world_db:
660 world_db["HUMIDITY"] = 0
661 io_db["hook_save"] = save_wetmap
662 import server.config.make_world_helpers
663 server.config.make_world_helpers.make_map = make_map
664 from server.config.commands import commands_db
665 commands_db["THINGS_HERE"] = (2, True, lambda x, y: None)
666 commands_db["ai"] = (0, False, command_ai)
667 commands_db["move"] = (1, False, play_move)
668 commands_db["eat"] = (1, False, play_move)
669 commands_db["wait"] = (0, False, play_wait)
670 commands_db["drop"] = (0, False, play_drop)
671 commands_db["drink"] = (0, False, play_drink)
672 commands_db["pee"] = (0, False, play_pee)
673 commands_db["use"] = (1, False, lambda x: None)
674 commands_db["pickup"] = (0, False, lambda: None)
675 commands_db["NEW_SPAWN"] = (1, False, setter(None, "NEW_SPAWN", 0, 255))
676 commands_db["HUMIDITY"] = (1, False, setter(None, "HUMIDITY", 0, 65535))
677 commands_db["T_STOMACH"] = (1, False, setter("Thing", "T_STOMACH", 0, 255))
678 commands_db["T_KIDNEY"] = (1, False, setter("Thing", "T_KIDNEY", 0, 255))
679 commands_db["T_BOWEL"] = (1, False, setter("Thing", "T_BOWEL", 0, 255))
680 commands_db["T_BLADDER"] = (1, False, setter("Thing", "T_BLADDER", 0, 255))
681 commands_db["WETMAP"] = (2, False, wetmapset)
682 from server.actions import actor_wait
683 import server.config.actions
684 server.config.actions.action_db = {
685 "actor_wait": actor_wait,
686 "actor_move": actor_move,
687 "actor_drop": actor_drop,
688 "actor_drink": actor_drink,
689 "actor_pee": actor_pee,
690 "actor_eat": actor_eat,
693 strong_write(io_db["file_out"], "PLUGIN TheCrawlingEater\n")