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
9 def command_help(str_int):
10 val = integer_test(str_int, 0, 4)
16 if not (world_db["WORLD_ACTIVE"]
17 and world_db["Things"][0]["T_LIFEPOINTS"] > 0):
19 world_db["ai"](world_db["Things"][0])
20 world_db["turn_over"]()
24 if not (action_exists("drink") and world_db["WORLD_ACTIVE"]
25 and world_db["Things"][0]["T_LIFEPOINTS"] > 0):
27 pos = world_db["Things"][0]["pos"]
28 if not (chr(world_db["MAP"][pos]) in "0-+"
29 and world_db["wetmap"][pos] > ord("0")):
30 log("NOTHING to drink here.")
32 elif world_db["Things"][0]["T_KIDNEY"] >= 32:
33 log("You're too FULL to drink more.")
35 world_db["set_command"]("drink")
40 if chr(world_db["MAP"][pos]) in "0-+" and \
41 world_db["wetmap"][pos] > ord("0") and t["T_KIDNEY"] < 32:
42 if world_db["Things"][0] == t:
45 world_db["wetmap"][pos] -= 1
49 if not (action_exists("pee") and world_db["WORLD_ACTIVE"]
50 and world_db["Things"][0]["T_LIFEPOINTS"] > 0):
52 if world_db["Things"][0]["T_BLADDER"] < 1:
53 log("Nothing to drop from empty bladder.")
55 world_db["set_command"]("pee")
59 if t["T_BLADDER"] < 1:
61 if t == world_db["Things"][0]:
62 log("You LOSE fluid.")
63 if not world_db["test_air"](t):
66 world_db["wetmap"][t["pos"]] += 1
70 if not (action_exists("drop") and world_db["WORLD_ACTIVE"]
71 and world_db["Things"][0]["T_LIFEPOINTS"] > 0):
73 if world_db["Things"][0]["T_BOWEL"] < 1:
74 log("Nothing to drop from empty bowel.")
76 world_db["set_command"]("drop")
82 if t == world_db["Things"][0]:
83 log("You DROP waste.")
84 if not world_db["test_air"](t):
86 if world_db["MAP"][t["pos"]] == ord("+"):
87 world_db["MAP"][t["pos"]] = ord("-")
88 elif world_db["MAP"][t["pos"]] == ord("-"):
89 world_db["MAP"][t["pos"]] = ord("0")
91 world_db["MAP"][t["pos"]] += 1
95 def play_move(str_arg):
96 if not (action_exists("move") and world_db["WORLD_ACTIVE"]
97 and world_db["Things"][0]["T_LIFEPOINTS"] > 0):
99 from server.config.world_data import directions_db, symbols_passable
100 t = world_db["Things"][0]
101 if not str_arg in directions_db:
102 print("Illegal move direction string.")
104 d = ord(directions_db[str_arg])
105 from server.utils import mv_yx_in_dir_legal
106 move_result = mv_yx_in_dir_legal(chr(d), t["T_POSY"], t["T_POSX"])
107 if 1 == move_result[0]:
108 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
109 hitted = [tid for tid in world_db["Things"]
110 if world_db["Things"][tid]["T_POSY"] == move_result[1]
111 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
113 if t["T_STOMACH"] >= 32 and t["T_KIDNEY"] >= 32:
114 if t == world_db["Things"][0]:
115 log("You're too FULL to suck from another creature.")
117 world_db["Things"][0]["T_ARGUMENT"] = d
118 world_db["set_command"]("eat")
120 if chr(world_db["MAP"][pos]) in "34":
121 if t["T_STOMACH"] >= 32:
122 if t == world_db["Things"][0]:
123 log("You're too FULL to eat.")
125 world_db["Things"][0]["T_ARGUMENT"] = d
126 world_db["set_command"]("eat")
128 if chr(world_db["MAP"][pos]) in symbols_passable:
129 world_db["Things"][0]["T_ARGUMENT"] = d
130 world_db["set_command"]("move")
132 log("You CAN'T eat your way through there.")
136 from server.utils import mv_yx_in_dir_legal, rand
137 from server.config.world_data import symbols_passable
139 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
140 t["T_POSY"], t["T_POSX"])
141 if 1 == move_result[0]:
142 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
143 hitted = [tid for tid in world_db["Things"]
144 if world_db["Things"][tid]["T_POSY"] == move_result[1]
145 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
148 hitted_tid = world_db["Things"][hit_id]["T_TYPE"]
149 if t == world_db["Things"][0]:
150 hitted_name = world_db["ThingTypes"][hitted_tid]["TT_NAME"]
151 log("You SUCK from " + hitted_name + ".")
153 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
154 log(hitter_name +" SUCKS from you.")
155 hitted = world_db["Things"][hit_id]
156 if t["T_STOMACH"] < 32:
157 t["T_STOMACH"] = t["T_STOMACH"] + 1
158 hitted["T_STOMACH"] -= 1
159 if t["T_KIDNEY"] < 32:
160 t["T_KIDNEY"] = t["T_KIDNEY"] + 1
161 hitted["T_KIDNEY"] -= 1
163 passable = chr(world_db["MAP"][pos]) in symbols_passable
164 if passable and t == world_db["Things"][0]:
165 log("You try to EAT, but fail.")
167 height = world_db["MAP"][pos] - ord("0")
168 if t["T_STOMACH"] >= 32 or height == 5:
171 if t == world_db["Things"][0]:
173 eaten = (height == 3 and 0 == int(rand.next() % 2)) or \
174 (height == 4 and 0 == int(rand.next() % 5))
176 world_db["MAP"][pos] = ord("0")
177 if t["T_STOMACH"] > 32:
182 from server.build_fov_map import build_fov_map
183 from server.utils import mv_yx_in_dir_legal, rand
184 from server.config.world_data import symbols_passable
186 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
187 t["T_POSY"], t["T_POSX"])
188 if 1 == move_result[0]:
189 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
190 hitted = [tid for tid in world_db["Things"]
191 if world_db["Things"][tid]["T_POSY"] == move_result[1]
192 if world_db["Things"][tid]["T_POSX"] == move_result[2]]
195 hitted_tid = world_db["Things"][hit_id]["T_TYPE"]
196 if t == world_db["Things"][0]:
197 hitted_name = world_db["ThingTypes"][hitted_tid]["TT_NAME"]
198 log("You BUMP into " + hitted_name + ".")
200 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
201 log(hitter_name +" BUMPS into you.")
203 passable = chr(world_db["MAP"][pos]) in symbols_passable
205 t["T_POSY"] = move_result[1]
206 t["T_POSX"] = move_result[2]
207 t["pos"] = move_result[1] * world_db["MAP_LENGTH"] + move_result[2]
208 world_db["soundmap"][t["pos"]] = ord("9")
209 elif t == world_db["Things"][0]:
210 log("You try to MOVE there, but fail.")
214 if world_db["MAP"][t["pos"]] == ord("&"):
215 world_db["die"](t, "YOU WIN, CONGRATULATIONS.")
217 if chr(world_db["MAP"][t["pos"]]) in "*&":
218 world_db["die"](t, "You FALL in a hole, and die.")
221 world_db["test_hole"] = test_hole
225 if world_db["terrain_fullness"](t["pos"]) > 5:
226 world_db["die"](t, "You SUFFOCATE")
229 world_db["test_air"] = test_air
233 t["T_LIFEPOINTS"] = 0
234 if t == world_db["Things"][0]:
235 t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
236 t["T_MEMMAP"][t["pos"]] = ord("@")
239 world_db["MAP"][t["pos"]] = ord("5")
240 world_db["HUMILITY"] = t["T_KIDNEY"] + t["T_BLADDER"] + \
241 (world_db["wetmap"][t["pos"]] - ord("0"))
242 world_db["wetmap"][t["pos"]] = 0
243 tid = next(tid for tid in world_db["Things"]
244 if world_db["Things"][tid] == t)
245 del world_db["Things"][tid]
246 world_db["die"] = die
250 from server.make_map import new_pos, is_neighbor
251 from server.utils import rand
252 world_db["MAP"] = bytearray(b'5' * (world_db["MAP_LENGTH"] ** 2))
253 length = world_db["MAP_LENGTH"]
254 add_half_width = (not (length % 2)) * int(length / 2)
255 world_db["MAP"][int((length ** 2) / 2) + add_half_width] = ord("4")
257 y, x, pos = new_pos()
258 if "5" == chr(world_db["MAP"][pos]) and is_neighbor((y, x), "4"):
259 if y == 0 or y == (length - 1) or x == 0 or x == (length - 1):
261 world_db["MAP"][pos] = ord("4")
262 n_ground = int((length ** 2) / 16)
264 while (i_ground <= n_ground):
265 single_allowed = rand.next() % 32
266 y, x, pos = new_pos()
267 if "4" == chr(world_db["MAP"][pos]) \
268 and ((not single_allowed) or is_neighbor((y, x), "0")):
269 world_db["MAP"][pos] = ord("0")
271 n_water = int((length ** 2) / 32)
273 while (i_water <= n_water):
274 y, x, pos = new_pos()
275 if ord("0") == world_db["MAP"][pos] and \
276 ord("0") == world_db["wetmap"][pos]:
277 world_db["wetmap"][pos] = ord("3")
281 def calc_effort(ta, t):
282 from server.utils import mv_yx_in_dir_legal
283 if ta["TA_NAME"] == "move":
284 move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
285 t["T_POSY"], t["T_POSX"])
286 if 1 == move_result[0]:
287 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
288 narrowness = world_db["MAP"][pos] - ord("0")
289 return 2 ** narrowness
291 world_db["calc_effort"] = calc_effort
295 from server.ai import ai
296 from server.config.actions import action_db
297 from server.update_map_memory import update_map_memory
298 from server.io import try_worldstate_update
299 from server.config.io import io_db
300 from server.utils import rand
301 from server.build_fov_map import build_fov_map
302 while world_db["Things"][0]["T_LIFEPOINTS"]:
303 for tid in [tid for tid in world_db["Things"]]:
304 if not tid in world_db["Things"]:
306 t = world_db["Things"][tid]
307 if t["T_LIFEPOINTS"]:
308 if not (world_db["test_air"](t) and world_db["test_hole"](t)):
310 if not t["T_COMMAND"]:
316 if t["T_LIFEPOINTS"]:
318 taid = [a for a in world_db["ThingActions"]
319 if a == t["T_COMMAND"]][0]
320 ThingAction = world_db["ThingActions"][taid]
321 effort = world_db["calc_effort"](ThingAction, t)
322 if t["T_PROGRESS"] >= effort:
323 action = action_db["actor_" + ThingAction["TA_NAME"]]
327 if t["T_BOWEL"] > 16:
328 if 0 == (rand.next() % (33 - t["T_BOWEL"])):
329 action_db["actor_drop"](t)
330 if t["T_BLADDER"] > 16:
331 if 0 == (rand.next() % (33 - t["T_BLADDER"])):
332 action_db["actor_pee"](t)
333 if 0 == world_db["TURN"] % 5:
338 if t["T_STOMACH"] <= 0:
339 world_db["die"](t, "You DIE of hunger.")
340 elif t["T_KIDNEY"] <= 0:
341 world_db["die"](t, "You DIE of dehydration.")
342 mapsize = world_db["MAP_LENGTH"] ** 2
343 for pos in range(mapsize):
344 wetness = world_db["wetmap"][pos] - ord("0")
345 height = world_db["MAP"][pos] - ord("0")
346 if world_db["MAP"][pos] == ord("-"):
348 elif world_db["MAP"][pos] == ord("+"):
350 if height == -2 and wetness > 1 \
351 and 0 == rand.next() % ((2 ** 11) / (2 ** wetness)):
352 world_db["MAP"][pos] = ord("*")
353 world_db["HUMIDITY"] += wetness
354 if height == -1 and wetness > 1 \
355 and 0 == rand.next() % ((2 ** 10) / (2 ** wetness)):
356 world_db["MAP"][pos] = ord("+")
357 if height == 0 and wetness > 1 \
358 and 0 == rand.next() % ((2 ** 9) / (2 ** wetness)):
359 world_db["MAP"][pos] = ord("-")
360 if ((wetness > 0 and height > 0) or wetness > 1) \
361 and 0 == rand.next() % 5:
362 world_db["wetmap"][pos] -= 1
363 world_db["HUMIDITY"] += 1
364 if world_db["HUMIDITY"] > 0:
365 if world_db["HUMIDITY"] > 2 and 0 == rand.next() % 2:
366 world_db["NEW_SPAWN"] += 1
367 world_db["HUMIDITY"] -= 1
368 if world_db["NEW_SPAWN"] >= 16:
369 world_db["NEW_SPAWN"] -= 16
370 from server.new_thing import new_Thing
372 y = rand.next() % world_db["MAP_LENGTH"]
373 x = rand.next() % world_db["MAP_LENGTH"]
374 if chr(world_db["MAP"][y * world_db["MAP_LENGTH"] + x]) !=\
376 from server.utils import id_setter
377 tid = id_setter(-1, "Things")
378 world_db["Things"][tid] = new_Thing(
379 world_db["PLAYER_TYPE"], (y, x))
380 pos = y * world_db["MAP_LENGTH"] + x
382 positions_to_wet = []
383 for pos in range(mapsize):
384 if chr(world_db["MAP"][pos]) in "0-+" \
385 and world_db["wetmap"][pos] < ord("5"):
386 positions_to_wet += [pos]
387 while world_db["HUMIDITY"] > 0 and len(positions_to_wet) > 0:
388 select = rand.next() % len(positions_to_wet)
389 pos = positions_to_wet[select]
390 world_db["wetmap"][pos] += 1
391 positions_to_wet.remove(pos)
392 world_db["HUMIDITY"] -= 1
393 for pos in range(mapsize):
394 if world_db["soundmap"][pos] > ord("0"):
395 world_db["soundmap"][pos] -= 1
396 from server.utils import libpr
397 libpr.init_score_map()
398 def set_map_score(pos, score):
399 test = libpr.set_map_score(pos, score)
401 raise RuntimeError("No score map allocated for set_map_score().")
402 [set_map_score(pos, 1) for pos in range(mapsize)
403 if world_db["MAP"][pos] == ord("*")]
404 for pos in range(mapsize):
405 if world_db["MAP"][pos] == ord("*"):
406 if libpr.ready_neighbor_scores(pos):
407 raise RuntimeError("No score map allocated for " +
408 "ready_neighbor_scores.()")
411 for i in range(len(dirs)):
412 score += libpr.get_neighbor_score(i)
413 if score == 5 or score == 6:
414 world_db["MAP"][pos] = ord("&")
415 libpr.free_score_map()
416 world_db["TURN"] += 1
417 io_db["worldstate_updateable"] = True
418 try_worldstate_update()
419 world_db["turn_over"] = turn_over
422 def set_command(action):
423 """Set player's T_COMMAND, then call turn_over()."""
424 tid = [x for x in world_db["ThingActions"]
425 if world_db["ThingActions"][x]["TA_NAME"] == action][0]
426 world_db["Things"][0]["T_COMMAND"] = tid
427 world_db["turn_over"]()
428 world_db["set_command"] = set_command
432 """Try "wait" as player's T_COMMAND."""
433 if world_db["WORLD_ACTIVE"]:
434 world_db["set_command"]("wait")
438 length = world_db["MAP_LENGTH"]
440 for i in range(length):
441 line = world_db["wetmap"][i * length:(i * length) + length].decode()
442 string = string + "WETMAP" + " " + str(i) + " " + line + "\n"
443 for i in range(length):
444 line = world_db["soundmap"][i * length:(i * length) + length].decode()
445 string = string + "SOUNDMAP" + " " + str(i) + " " + line + "\n"
449 def soundmapset(str_int, mapline):
450 def valid_map_line(str_int, mapline):
451 from server.utils import integer_test
452 val = integer_test(str_int, 0, 255)
454 if val >= world_db["MAP_LENGTH"]:
455 print("Illegal value for map line number.")
456 elif len(mapline) != world_db["MAP_LENGTH"]:
457 print("Map line length is unequal map width.")
461 val = valid_map_line(str_int, mapline)
463 length = world_db["MAP_LENGTH"]
464 if not world_db["soundmap"]:
465 m = bytearray(b' ' * (length ** 2))
467 m = world_db["soundmap"]
468 m[val * length:(val * length) + length] = mapline.encode()
469 if not world_db["soundmap"]:
470 world_db["soundmap"] = m
473 def wetmapset(str_int, mapline):
474 def valid_map_line(str_int, mapline):
475 from server.utils import integer_test
476 val = integer_test(str_int, 0, 255)
478 if val >= world_db["MAP_LENGTH"]:
479 print("Illegal value for map line number.")
480 elif len(mapline) != world_db["MAP_LENGTH"]:
481 print("Map line length is unequal map width.")
485 val = valid_map_line(str_int, mapline)
487 length = world_db["MAP_LENGTH"]
488 if not world_db["wetmap"]:
489 m = bytearray(b' ' * (length ** 2))
491 m = world_db["wetmap"]
492 m[val * length:(val * length) + length] = mapline.encode()
493 if not world_db["wetmap"]:
494 world_db["wetmap"] = m
497 def write_soundmap():
498 from server.worldstate_write_helpers import write_map
499 length = world_db["MAP_LENGTH"]
500 return write_map(world_db["soundmap"], world_db["MAP_LENGTH"])
504 from server.worldstate_write_helpers import write_map
505 length = world_db["MAP_LENGTH"]
506 visible_wetmap = bytearray(b' ' * (length ** 2))
507 for i in range(length ** 2):
508 if world_db["Things"][0]["fovmap"][i] == ord('v'):
509 visible_wetmap[i] = world_db["wetmap"][i]
510 return write_map(visible_wetmap, world_db["MAP_LENGTH"])
513 def get_dir_to_target(t, target):
515 from server.utils import rand, libpr, c_pointer_to_bytearray
516 from server.config.world_data import symbols_passable
518 def get_map_score(pos):
519 result = libpr.get_map_score(pos)
521 raise RuntimeError("No score map allocated for get_map_score().")
524 def zero_score_map_where_char_on_memdepthmap(c):
525 map = c_pointer_to_bytearray(t["T_MEMDEPTHMAP"])
526 if libpr.zero_score_map_where_char_on_memdepthmap(c, map):
527 raise RuntimeError("No score map allocated for "
528 "zero_score_map_where_char_on_memdepthmap().")
530 def set_map_score(pos, score):
531 test = libpr.set_map_score(pos, score)
533 raise RuntimeError("No score map allocated for set_map_score().")
535 def set_movement_cost_map():
536 copy_memmap = t["T_MEMMAP"][:]
537 copy_memmap.replace(b' ', b'4')
538 memmap = c_pointer_to_bytearray(copy_memmap)
539 if libpr.TCE_set_movement_cost_map(memmap):
540 raise RuntimeError("No movement cost map allocated for "
541 "set_movement_cost_map().")
543 def animates_in_fov(maplength):
544 return [Thing for Thing in world_db["Things"].values()
545 if Thing["T_LIFEPOINTS"] and 118 == t["fovmap"][Thing["pos"]]
546 and (not Thing == t)]
552 except StopIteration:
555 mapsize = world_db["MAP_LENGTH"] ** 2
556 if target == "food" and t["T_MEMMAP"]:
557 return exists(pos for pos in range(mapsize)
558 if ord("2") < t["T_MEMMAP"][pos] < ord("5"))
559 elif target == "fluid_certain" and t["fovmap"]:
560 return exists(pos for pos in range(mapsize)
561 if t["fovmap"] == ord("v")
562 if world_db["MAP"][pos] == ord("0")
563 if world_db["wetmap"][pos] > ord("0"))
564 elif target == "crack" and t["T_MEMMAP"]:
565 return exists(pos for pos in range(mapsize)
566 if t["T_MEMMAP"][pos] == ord("-"))
567 elif target == "fluid_potential" and t["T_MEMMAP"] and t["fovmap"]:
568 return exists(pos for pos in range(mapsize)
569 if t["T_MEMMAP"][pos] == ord("0")
570 if t["fovmap"] != ord("v"))
571 elif target == "space" and t["T_MEMMAP"] and t["fovmap"]:
572 return exists(pos for pos in range(mapsize)
573 if ord("-") <= t["T_MEMMAP"][pos] <= ord("2")
574 if (t["fovmap"] != ord("v")
575 or world_db["terrain_fullness"](pos) < 5))
576 elif target in {"hunt", "flee"} and t["fovmap"]:
577 return exists(Thing for
578 Thing in animates_in_fov(world_db["MAP_LENGTH"])) \
579 or exists(pos for pos in range(mapsize)
580 if world_db["soundmap"][pos] > ord("0")
581 if t["fovmap"][pos] != ord("v"))
584 def init_score_map():
585 mapsize = world_db["MAP_LENGTH"] ** 2
586 test = libpr.TCE_init_score_map()
587 [set_map_score(pos, 65535) for pos in range(mapsize)
588 if chr(t["T_MEMMAP"][pos]) in "5*&"]
589 set_movement_cost_map()
591 raise RuntimeError("Malloc error in init_score_map().")
592 if target == "food" and t["T_MEMMAP"]:
593 [set_map_score(pos, 0) for pos in range(mapsize)
594 if ord("2") < t["T_MEMMAP"][pos] < ord("5")]
595 elif target == "fluid_certain" and t["fovmap"]:
596 [set_map_score(pos, 0) for pos in range(mapsize)
597 if t["fovmap"] == ord("v")
598 if world_db["MAP"][pos] == ord("0")
599 if world_db["wetmap"][pos] > ord("0")]
600 elif target == "crack" and t["T_MEMMAP"]:
601 [set_map_score(pos, 0) for pos in range(mapsize)
602 if t["T_MEMMAP"][pos] == ord("-")]
603 elif target == "fluid_potential" and t["T_MEMMAP"] and t["fovmap"]:
604 [set_map_score(pos, 0) for pos in range(mapsize)
605 if t["T_MEMMAP"][pos] == ord("0")
606 if t["fovmap"] != ord("v")]
607 elif target == "space" and t["T_MEMMAP"] and t["fovmap"]:
608 [set_map_score(pos, 0) for pos in range(mapsize)
609 if ord("-") <= t["T_MEMMAP"][pos] <= ord("2")
610 if (t["fovmap"] != ord("v")
611 or world_db["terrain_fullness"](pos) < 5)]
612 elif target == "search":
613 zero_score_map_where_char_on_memdepthmap(mem_depth_c[0])
614 elif target in {"hunt", "flee"}:
615 [set_map_score(Thing["pos"], 0) for
616 Thing in animates_in_fov(world_db["MAP_LENGTH"])]
617 [set_map_score(pos, 0) for pos in range(mapsize)
618 if world_db["soundmap"][pos] > ord("0")
619 if t["fovmap"][pos] != ord("v")]
621 def rand_target_dir(neighbors, cmp, dirs):
624 for i in range(len(dirs)):
625 if cmp == neighbors[i]:
626 candidates.append(dirs[i])
628 return candidates[rand.next() % n_candidates] if n_candidates else 0
630 def get_neighbor_scores(dirs, eye_pos):
632 if libpr.ready_neighbor_scores(eye_pos):
633 raise RuntimeError("No score map allocated for " +
634 "ready_neighbor_scores.()")
635 for i in range(len(dirs)):
636 scores.append(libpr.get_neighbor_score(i))
639 def get_dir_from_neighbors():
641 dir_to_target = False
644 neighbors = get_neighbor_scores(dirs, eye_pos)
645 minmax_start = 0 if "flee" == target else 65535 - 1
646 minmax_neighbor = minmax_start
647 for i in range(len(dirs)):
648 if ("flee" == target and get_map_score(t["pos"]) < neighbors[i] and
649 minmax_neighbor < neighbors[i] and 65535 != neighbors[i]) \
650 or ("flee" != target and minmax_neighbor > neighbors[i]):
651 minmax_neighbor = neighbors[i]
652 if minmax_neighbor != minmax_start:
653 dir_to_target = rand_target_dir(neighbors, minmax_neighbor, dirs)
655 distance = get_map_score(t["pos"])
658 if not dir_to_target:
659 if attack_distance >= distance:
660 dir_to_target = rand_target_dir(neighbors,
662 elif dir_to_target and fear_distance < distance:
664 return dir_to_target, minmax_neighbor
666 dir_to_target = False
668 run_i = 9 + 1 if "search" == target else 1
670 while run_i and not dir_to_target and \
671 ("search" == target or seeing_thing()):
674 mem_depth_c = b'9' if b' ' == mem_depth_c \
675 else bytes([mem_depth_c[0] - 1])
676 if libpr.TCE_dijkstra_map_with_movement_cost():
677 raise RuntimeError("No score map allocated for dijkstra_map().")
678 dir_to_target, minmax_neighbor = get_dir_from_neighbors()
679 libpr.free_score_map()
680 if dir_to_target and str == type(dir_to_target):
682 from server.utils import mv_yx_in_dir_legal
683 move_result = mv_yx_in_dir_legal(dir_to_target, t["T_POSY"],
685 if 1 != move_result[0]:
687 pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
688 hitted = [tid for tid in world_db["Things"]
689 if world_db["Things"][tid]["pos"] == pos]
690 if world_db["MAP"][pos] > ord("2") or len(hitted) > 0:
692 t["T_COMMAND"] = [taid for taid in world_db["ThingActions"]
693 if world_db["ThingActions"][taid]["TA_NAME"]
695 t["T_ARGUMENT"] = ord(dir_to_target)
696 return dir_to_target, minmax_neighbor
697 world_db["get_dir_to_target"] = get_dir_to_target
700 def terrain_fullness(pos):
701 wetness = world_db["wetmap"][pos] - ord("0")
702 if chr(world_db["MAP"][pos]) in "-+":
705 height = world_db["MAP"][pos] - ord("0")
706 return wetness + height
707 world_db["terrain_fullness"] = terrain_fullness
712 if t["T_LIFEPOINTS"] == 0:
715 def standing_on_fluid(t):
716 if world_db["MAP"][t["pos"]] == ord("0") and \
717 world_db["wetmap"][t["pos"]] > ord("0"):
722 def thing_action_id(name):
723 return [taid for taid in world_db["ThingActions"]
724 if world_db["ThingActions"][taid]
725 ["TA_NAME"] == name][0]
727 t["T_COMMAND"] = thing_action_id("wait")
731 "safe_pee": (world_db["terrain_fullness"](t["pos"]) * t["T_BLADDER"]) / 4,
732 "safe_drop": (world_db["terrain_fullness"](t["pos"]) * t["T_BOWEL"]) / 4,
733 "food": 33 - t["T_STOMACH"],
734 "fluid_certain": 33 - t["T_KIDNEY"],
735 "fluid_potential": 32 - t["T_KIDNEY"],
738 from operator import itemgetter
739 needs = sorted(needs.items(), key=itemgetter(1,0))
743 if need[0] == "fix_cracks":
744 if world_db["MAP"][t["pos"]] == ord("-") and \
745 t["T_BOWEL"] > 0 and \
746 world_db["terrain_fullness"](t["pos"]) <= 3:
747 t["T_COMMAND"] = thing_action_id("drop")
749 elif world_db["get_dir_to_target"](t, "crack"):
751 if need[0] in {"fluid_certain", "fluid_potential"}:
752 if standing_on_fluid(t):
753 t["T_COMMAND"] = thing_action_id("drink")
755 elif t["T_BLADDER"] > 0 and \
756 world_db["MAP"][t["pos"]] == ord("0"):
757 t["T_COMMAND"] = thing_action_id("pee")
759 elif need[0] in {"safe_pee", "safe_drop"}:
760 action_name = need[0][len("safe_"):]
761 if world_db["terrain_fullness"](t["pos"]) <= 3:
762 t["T_COMMAND"] = thing_action_id(action_name)
764 test = world_db["get_dir_to_target"](t, "space")
768 elif world_db["terrain_fullness"](t["pos"]) < 5:
769 t["T_COMMAND"] = thing_action_id(action_name)
771 if t["T_STOMACH"] < 32 and \
772 world_db["get_dir_to_target"](t, "food")[0]:
775 if need[0] in {"fluid_certain", "fluid_potential", "food"}:
776 if world_db["get_dir_to_target"](t, need[0])[0]:
778 elif world_db["get_dir_to_target"](t, "hunt")[0]:
780 elif need[0] != "food" and t["T_STOMACH"] < 32 and \
781 world_db["get_dir_to_target"](t, "food")[0]:
783 elif world_db["get_dir_to_target"](t, need[0])[0]:
788 from server.config.io import io_db
789 io_db["worldstate_write_order"] += [["T_STOMACH", "player_int"]]
790 io_db["worldstate_write_order"] += [["T_KIDNEY", "player_int"]]
791 io_db["worldstate_write_order"] += [["T_BOWEL", "player_int"]]
792 io_db["worldstate_write_order"] += [["T_BLADDER", "player_int"]]
793 io_db["worldstate_write_order"] += [[write_wetmap, "func"]]
794 io_db["worldstate_write_order"] += [[write_soundmap, "func"]]
795 import server.config.world_data
796 server.config.world_data.symbols_hide = "345"
797 server.config.world_data.symbols_passable = "012-+*&"
798 server.config.world_data.thing_defaults["T_STOMACH"] = 16
799 server.config.world_data.thing_defaults["T_BOWEL"] = 0
800 server.config.world_data.thing_defaults["T_KIDNEY"] = 16
801 server.config.world_data.thing_defaults["T_BLADDER"] = 0
802 world_db["soundmap"] = bytearray(b"0" * world_db["MAP_LENGTH"] ** 2)
803 world_db["wetmap"] = bytearray(b"0" * world_db["MAP_LENGTH"] ** 2)
804 if not "NEW_SPAWN" in world_db:
805 world_db["NEW_SPAWN"] = 0
806 if not "HUMIDITY" in world_db:
807 world_db["HUMIDITY"] = 0
808 io_db["hook_save"] = save_maps
809 import server.config.make_world_helpers
810 server.config.make_world_helpers.make_map = make_map
811 from server.config.commands import commands_db
812 commands_db["THINGS_HERE"] = (2, True, lambda x, y: None)
813 commands_db["HELP"] = (1, False, command_help)
814 commands_db["ai"] = (0, False, command_ai)
815 commands_db["move"] = (1, False, play_move)
816 commands_db["eat"] = (1, False, play_move)
817 commands_db["wait"] = (0, False, play_wait)
818 commands_db["drop"] = (0, False, play_drop)
819 commands_db["drink"] = (0, False, play_drink)
820 commands_db["pee"] = (0, False, play_pee)
821 commands_db["use"] = (1, False, lambda x: None)
822 commands_db["pickup"] = (0, False, lambda: None)
823 commands_db["NEW_SPAWN"] = (1, False, setter(None, "NEW_SPAWN", 0, 255))
824 commands_db["HUMIDITY"] = (1, False, setter(None, "HUMIDITY", 0, 65535))
825 commands_db["T_STOMACH"] = (1, False, setter("Thing", "T_STOMACH", 0, 255))
826 commands_db["T_KIDNEY"] = (1, False, setter("Thing", "T_KIDNEY", 0, 255))
827 commands_db["T_BOWEL"] = (1, False, setter("Thing", "T_BOWEL", 0, 255))
828 commands_db["T_BLADDER"] = (1, False, setter("Thing", "T_BLADDER", 0, 255))
829 commands_db["WETMAP"] = (2, False, wetmapset)
830 commands_db["SOUNDMAP"] = (2, False, soundmapset)
831 from server.actions import actor_wait
832 import server.config.actions
833 server.config.actions.action_db = {
834 "actor_wait": actor_wait,
835 "actor_move": actor_move,
836 "actor_drop": actor_drop,
837 "actor_drink": actor_drink,
838 "actor_pee": actor_pee,
839 "actor_eat": actor_eat,
842 strong_write(io_db["file_out"], "PLUGIN TheCrawlingEater\n")