home · contact · privacy
Plugin: Add fertilizer tool, and TOOL_0 variable.
[plomrogue] / plugins / server / PleaseTheIslandGod.py
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.
4
5
6 from server.io import log, strong_write
7 from server.config.world_data import world_db, symbols_passable, directions_db
8 from server.utils import mv_yx_in_dir_legal, rand, id_setter
9 from server.config.io import io_db
10 from server.new_thing import new_Thing
11
12 def make_world(seed):
13     from server.update_map_memory import update_map_memory
14     from server.config.misc import make_map_func
15     from server.utils import libpr
16
17     def free_pos(plant=False):
18         i = 0
19         while 1:
20             err = "Space to put thing on too hard to find. Map too small?"
21             while 1:
22                 y = rand.next() % world_db["MAP_LENGTH"]
23                 x = rand.next() % world_db["MAP_LENGTH"]
24                 pos = y * world_db["MAP_LENGTH"] + x;
25                 if (not plant
26                     and "." == chr(world_db["MAP"][pos])) \
27                    or ":" == chr(world_db["MAP"][pos]):
28                     break
29                 i += 1
30                 if i == 65535:
31                     raise SystemExit(err)
32             pos_clear = (0 == len([id for id in world_db["Things"]
33                                    if world_db["Things"][id]["T_LIFEPOINTS"]
34                                    if world_db["Things"][id]["T_POSY"] == y
35                                    if world_db["Things"][id]["T_POSX"] == x]))
36             if pos_clear:
37                 break
38         return (y, x)
39
40     rand.seed = seed
41     if world_db["MAP_LENGTH"] < 1:
42         print("Ignoring: No map length >= 1 defined.")
43         return
44     libpr.set_maplength(world_db["MAP_LENGTH"])
45     player_will_be_generated = False
46     playertype = world_db["PLAYER_TYPE"]
47     for ThingType in world_db["ThingTypes"]:
48         if playertype == ThingType:
49             if 0 < world_db["ThingTypes"][ThingType]["TT_START_NUMBER"]:
50                 player_will_be_generated = True
51             break
52     if not player_will_be_generated:
53         print("Ignoring: No player type with start number >0 defined.")
54         return
55     wait_action = False
56     for ThingAction in world_db["ThingActions"]:
57         if "wait" == world_db["ThingActions"][ThingAction]["TA_NAME"]:
58             wait_action = True
59     if not wait_action:
60         print("Ignoring beyond SEED_MAP: " +
61               "No thing action with name 'wait' defined.")
62         return
63     for name in world_db["specials"]:
64         if world_db[name] not in world_db["ThingTypes"]:
65             print("Ignoring: No valid " + name + " set.")
66             return
67     world_db["Things"] = {}
68     make_map()
69     world_db["WORLD_ACTIVE"] = 1
70     world_db["TURN"] = 1
71     for i in range(world_db["ThingTypes"][playertype]["TT_START_NUMBER"]):
72         id = id_setter(-1, "Things")
73         world_db["Things"][id] = new_Thing(playertype, free_pos())
74     if not world_db["Things"][0]["fovmap"]:
75         empty_fovmap = bytearray(b" " * world_db["MAP_LENGTH"] ** 2)
76         world_db["Things"][0]["fovmap"] = empty_fovmap
77     update_map_memory(world_db["Things"][0])
78     for type in world_db["ThingTypes"]:
79         for i in range(world_db["ThingTypes"][type]["TT_START_NUMBER"]):
80             if type != playertype:
81                 id = id_setter(-1, "Things")
82                 plantness = world_db["ThingTypes"][type]["TT_PROLIFERATE"]
83                 world_db["Things"][id] = new_Thing(type, free_pos(plantness))
84     strong_write(io_db["file_out"], "NEW_WORLD\n")
85
86 def thingproliferation(t, prol_map):
87     from server.new_thing import new_Thing
88     global directions_db, mv_yx_in_dir_legal
89     prolscore = world_db["ThingTypes"][t["T_TYPE"]]["TT_PROLIFERATE"]
90     if prolscore and \
91       (world_db["ThingTypes"][t["T_TYPE"]]["TT_LIFEPOINTS"] == 0 or
92        t["T_LIFEPOINTS"] >= 0.9 *
93                         world_db["ThingTypes"][t["T_TYPE"]]["TT_LIFEPOINTS"]) \
94        and \
95       (1 == prolscore or 1 == (rand.next() % prolscore)):
96         candidates = []
97         for dir in [directions_db[key] for key in directions_db]:
98             mv_result = mv_yx_in_dir_legal(dir, t["T_POSY"], t["T_POSX"])
99             pos = mv_result[1] * world_db["MAP_LENGTH"] + mv_result[2]
100             if mv_result[0] and \
101                (ord(":") == prol_map[pos]
102                 or (world_db["ThingTypes"][t["T_TYPE"]]["TT_LIFEPOINTS"]
103                     and ord(".") == prol_map[pos])):
104                 candidates.append((mv_result[1], mv_result[2]))
105         if len(candidates):
106             i = rand.next() % len(candidates)
107             id = id_setter(-1, "Things")
108             newT = new_Thing(t["T_TYPE"], (candidates[i][0], candidates[i][1]))
109             world_db["Things"][id] = newT
110             if (world_db["FAVOR_STAGE"] > 0
111                 and t["T_TYPE"] == world_db["PLANT_0"]):
112                 world_db["GOD_FAVOR"] += 5
113             elif t["T_TYPE"] == world_db["PLANT_1"]:
114                 world_db["GOD_FAVOR"] += 25
115             #elif world_db["FAVOR_STAGE"] >= 4 and \
116             #     t["T_TYPE"] == world_db["ANIMAL_1"]:
117             #    log("The Island God SMILES upon a new-born bear baby.")
118             #    world_db["GOD_FAVOR"] += 750
119
120 def make_map():
121     global rand
122
123     def is_neighbor(coordinates, type):
124         y = coordinates[0]
125         x = coordinates[1]
126         length = world_db["MAP_LENGTH"]
127         ind = y % 2
128         diag_west = x + (ind > 0)
129         diag_east = x + (ind < (length - 1))
130         pos = (y * length) + x
131         if (y > 0 and diag_east
132             and type == chr(world_db["MAP"][pos - length + ind])) \
133            or (x < (length - 1)
134                and type == chr(world_db["MAP"][pos + 1])) \
135            or (y < (length - 1) and diag_east
136                and type == chr(world_db["MAP"][pos + length + ind])) \
137            or (y > 0 and diag_west
138                and type == chr(world_db["MAP"][pos - length - (not ind)])) \
139            or (x > 0
140                and type == chr(world_db["MAP"][pos - 1])) \
141            or (y < (length - 1) and diag_west
142                and type == chr(world_db["MAP"][pos + length - (not ind)])):
143             return True
144         return False
145
146     world_db["MAP"] = bytearray(b'~' * (world_db["MAP_LENGTH"] ** 2))
147     length = world_db["MAP_LENGTH"]
148     add_half_width = (not (length % 2)) * int(length / 2)
149     world_db["MAP"][int((length ** 2) / 2) + add_half_width] = ord(".")
150     while (1):
151         y = rand.next() % length
152         x = rand.next() % length
153         pos = (y * length) + x
154         if "~" == chr(world_db["MAP"][pos]) and is_neighbor((y, x), "."):
155             if y == 0 or y == (length - 1) or x == 0 or x == (length - 1):
156                 break
157             world_db["MAP"][pos] = ord(".")
158     n_trees = int((length ** 2) / 16)
159     i_trees = 0
160     while (i_trees <= n_trees):
161         single_allowed = rand.next() % 32
162         y = rand.next() % length
163         x = rand.next() % length
164         pos = (y * length) + x
165         if "." == chr(world_db["MAP"][pos]) \
166           and ((not single_allowed) or is_neighbor((y, x), "X")):
167             world_db["MAP"][pos] = ord("X")
168             i_trees += 1
169     n_colons = int((length ** 2) / 16)
170     i_colons = 0
171     while (i_colons <= n_colons):
172         single_allowed = rand.next() % 256
173         y = rand.next() % length
174         x = rand.next() % length
175         pos = (y * length) + x
176         if ("." == chr(world_db["MAP"][pos])
177           and ((not single_allowed) or is_neighbor((y, x), ":"))):
178             world_db["MAP"][pos] = ord(":")
179             i_colons += 1
180     altar_placed = False
181     while not altar_placed:
182         y = rand.next() % length
183         x = rand.next() % length
184         pos = (y * length) + x
185         if (("." == chr(world_db["MAP"][pos]
186              or ":" == chr(world_db["MAP"][pos]))
187             and not is_neighbor((y, x), "X"))):
188             world_db["MAP"][pos] = ord("_")
189             world_db["altar"] = (y, x)
190             altar_placed = True
191
192 def ai(t):
193     from server.ai import get_dir_to_target, get_inventory_slot_to_consume, \
194         standing_on_food
195     t["T_COMMAND"] = [id for id in world_db["ThingActions"]
196                       if world_db["ThingActions"][id]["TA_NAME"] == "wait"][0]
197     eating = len([id for id in world_db["ThingActions"]
198                   if world_db["ThingActions"][id]["TA_NAME"] == "use"]) > 0
199     picking = len([id for id in world_db["ThingActions"]
200                    if world_db["ThingActions"][id]["TA_NAME"] == "pickup"]) > 0
201     if eating and picking:
202         if get_dir_to_target(t, "f"):
203             return
204         sel = get_inventory_slot_to_consume(t)
205         if -1 != sel:
206             t["T_COMMAND"] = [id for id in world_db["ThingActions"]
207                               if world_db["ThingActions"][id]["TA_NAME"]
208                                  == "use"][0]
209             t["T_ARGUMENT"] = sel
210         elif standing_on_food(t) and (len(t["T_CARRIES"]) <
211                 world_db["ThingTypes"][t["T_TYPE"]]["TT_STORAGE"]):
212                 t["T_COMMAND"] = [id for id in world_db["ThingActions"]
213                                   if world_db["ThingActions"][id]["TA_NAME"]
214                                   == "pickup"][0]
215         else:
216             going_to_known_food_spot = get_dir_to_target(t, "c")
217             if not going_to_known_food_spot:
218                 aiming_for_walking_food = get_dir_to_target(t, "a")
219                 if not aiming_for_walking_food:
220                     get_dir_to_target(t, "s")
221
222 def actor_pickup(t):
223     from server.ai import eat_vs_hunger_threshold
224     used_slots = len(t["T_CARRIES"])
225     if used_slots < world_db["ThingTypes"][t["T_TYPE"]]["TT_STORAGE"]:
226         ids = [id for id in world_db["Things"] if world_db["Things"][id] != t
227                if not world_db["Things"][id]["carried"]
228                if world_db["Things"][id]["T_POSY"] == t["T_POSY"]
229                if world_db["Things"][id]["T_POSX"] == t["T_POSX"]]
230         if len(ids):
231             lowest_tid = -1
232             eat_cost = eat_vs_hunger_threshold(t["T_TYPE"])
233             for iid in ids:
234                 tid = world_db["Things"][iid]["T_TYPE"] 
235                 if lowest_tid == -1 or tid < lowest_tid:
236                     if (t != world_db["Things"][0] and
237                         (world_db["ThingTypes"][tid]["TT_TOOL"] != "food"
238                          or (world_db["ThingTypes"][tid]["TT_TOOLPOWER"]
239                              <= eat_cost))):
240                         continue
241                     id = iid
242                     lowest_tid = tid
243             world_db["Things"][id]["carried"] = True
244             ty = world_db["Things"][id]["T_TYPE"]
245             if (t != world_db["Things"][0]
246                 and world_db["Things"][id]["T_PLAYERDROP"]
247                 and world_db["ThingTypes"][ty]["TT_TOOL"] == "food"):
248                 score = int(world_db["ThingTypes"][ty]["TT_TOOLPOWER"] / 32)
249                 world_db["GOD_FAVOR"] += score
250                 world_db["Things"][id]["T_PLAYERDROP"] = 0
251             t["T_CARRIES"].append(id)
252             if t == world_db["Things"][0]:
253                 log("You PICK UP an object.")
254     elif t == world_db["Things"][0]:
255         log("Can't pick up object: No storage room to carry more.")
256
257
258 def actor_drop(t):
259     """Make t rop Thing from inventory to ground indexed by T_ARGUMENT."""
260     if len(t["T_CARRIES"]):
261         id = t["T_CARRIES"][t["T_ARGUMENT"]]
262         t["T_CARRIES"].remove(id)
263         world_db["Things"][id]["carried"] = False
264         if t == world_db["Things"][0]:
265             log("You DROP an object.")
266             world_db["Things"][id]["T_PLAYERDROP"] = 1
267
268
269 def actor_use(t):
270     if len(t["T_CARRIES"]):
271         id = t["T_CARRIES"][t["T_ARGUMENT"]]
272         type = world_db["Things"][id]["T_TYPE"]
273         if type == world_db["SLIPPERS"]:
274             if t == world_db["Things"][0]:
275                 log("You use the " + world_db["ThingTypes"][type]["TT_NAME"]
276                     + ". It glows in wondrous colors, and emits a sound as if "
277                     + "from a dying cat. The Island God laughs.\n")
278             t["T_LIFEPOINTS"] = 1
279             from server.config.misc import decrement_lifepoints_func
280             decrement_lifepoints_func(t)
281         elif (world_db["ThingTypes"][type]["TT_TOOL"] == "carpentry"):
282             pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
283             if (world_db["MAP"][pos] == ord("X")
284                 or world_db["MAP"][pos] == ord("|")):
285                 return
286             for id in [id for id in world_db["Things"]
287                        if not world_db["Things"][id] == t
288                        if not world_db["Things"][id]["carried"]
289                        if world_db["Things"][id]["T_POSY"] == t["T_POSY"]
290                        if world_db["Things"][id]["T_POSX"] == t["T_POSX"]]:
291                  return
292             wood_id = None
293             for id in t["T_CARRIES"]:
294                 type_material = world_db["Things"][id]["T_TYPE"]
295                 if (world_db["ThingTypes"][type_material]["TT_TOOL"]
296                     == "wood"):
297                     wood_id = id
298                     break
299             if wood_id != None:
300                 t["T_CARRIES"].remove(wood_id)
301                 del world_db["Things"][wood_id]
302                 world_db["MAP"][pos] = ord("|")
303                 log("With your " + world_db["ThingTypes"][type]["TT_NAME"]
304                     + " you build a wooden barrier from your "
305                     + world_db["ThingTypes"][type_material]["TT_NAME"] + ".")
306         elif world_db["ThingTypes"][type]["TT_TOOL"] == "fertilizer":
307             pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
308             if world_db["MAP"][pos] == ord("."):
309                 log("You create SOIL.")
310                 world_db["MAP"][pos] = ord(":")
311         elif world_db["ThingTypes"][type]["TT_TOOL"] == "food":
312             t["T_CARRIES"].remove(id)
313             del world_db["Things"][id]
314             t["T_SATIATION"] += world_db["ThingTypes"][type]["TT_TOOLPOWER"]
315             if t == world_db["Things"][0]:
316                 log("You CONSUME this object.")
317         elif t == world_db["Things"][0]:
318             log("You try to use this object, but FAIL.")
319
320 def decrement_lifepoints(t):
321     t["T_LIFEPOINTS"] -= 1
322     _id = [_id for _id in world_db["Things"] if world_db["Things"][_id] == t][0]
323     if 0 == t["T_LIFEPOINTS"]:
324         sadness = world_db["ThingTypes"][t["T_TYPE"]]["TT_LIFEPOINTS"]
325         for id in t["T_CARRIES"]:
326             t["T_CARRIES"].remove(id)
327             world_db["Things"][id]["T_POSY"] = t["T_POSY"]
328             world_db["Things"][id]["T_POSX"] = t["T_POSX"]
329             world_db["Things"][id]["carried"] = False
330         t["T_TYPE"] = world_db["ThingTypes"][t["T_TYPE"]]["TT_CORPSE_ID"]
331         if world_db["Things"][0] == t:
332             t["fovmap"] = bytearray(b' ' * (world_db["MAP_LENGTH"] ** 2))
333             log("You die.")
334             log("See README on how to start over.")
335         else:
336             t["fovmap"] = False
337             t["T_MEMMAP"] = False
338             t["T_MEMDEPTHMAP"] = False
339             t["T_MEMTHING"] = []
340         return sadness
341     return 0
342
343 def actor_move(t):
344
345     def enter_altar():
346         from server.new_thing import new_Thing
347         if world_db["FAVOR_STAGE"] > 9000:
348            log("You step on a soul-less slab of stone.")
349            return
350         log("YOU ENTER SACRED GROUND.")
351         if world_db["FAVOR_STAGE"] == 0:
352             world_db["FAVOR_STAGE"] = 1
353             log("The Island God speaks to you: \"I don't trust you. You intrud"
354                  + "e on the island's affairs. I think you're a nuisance at be"
355                  + "st, and a danger to my children at worst. I will give you "
356                  + "a chance to lighten my mood, however: For a while now, I'v"
357                  + "e been trying to spread the plant "
358                  + world_db["ThingTypes"][world_db["PLANT_0"]]["TT_NAME"]
359                  + " (\""
360                  + world_db["ThingTypes"][world_db["PLANT_0"]]["TT_SYMBOL"]
361                  + "\"). I have not been very successful so far. Maybe you can"
362                  + " make yourself useful there. I will count each further "
363                  + world_db["ThingTypes"][world_db["PLANT_0"]]["TT_NAME"]
364                  + " that grows to your favor.\"")
365         elif world_db["FAVOR_STAGE"] == 1 and world_db["GOD_FAVOR"] < 100:
366             log("The Island God will talk again when it favors you to >=100 "
367                  +" points.")
368         elif world_db["FAVOR_STAGE"] == 1 and world_db["GOD_FAVOR"] >= 100:
369             world_db["FAVOR_STAGE"] = 2
370             log("The Island God speaks to you: \"You could have done worse so "
371                 + "far. Maybe you are not the worst to happen to this island "
372                 + "since the metal birds threw the great lightning ball. Maybe"
373                 + " you can help me spread another plant. It multiplies faster"
374                 + ",and it is highly nutritious: "
375                 + world_db["ThingTypes"][world_db["PLANT_1"]]["TT_NAME"]
376                 + " (\""
377                 + world_db["ThingTypes"][world_db["PLANT_1"]]["TT_SYMBOL"]
378                 + "\"). It is new. I give you the only example. Be very carefu"
379                 + "l with it! I also give you another tool that may be helpful"
380                 + ".\"")
381             id = id_setter(-1, "Things")
382             world_db["Things"][id] = new_Thing(world_db["PLANT_1"],
383                                                world_db["altar"])
384             id = id_setter(-1, "Things")
385             world_db["Things"][id] = new_Thing(world_db["TOOL_0"],
386                                                world_db["altar"])
387         elif world_db["FAVOR_STAGE"] == 2 and \
388             0 == len([id for id in world_db["Things"]
389                       if world_db["Things"][id]["T_TYPE"]
390                          == world_db["PLANT_1"]]):
391             log("The Island God speaks to you: \"I am greatly disappointed tha"
392                 + "t you lost all "
393                 + world_db["ThingTypes"][world_db["PLANT_1"]]["TT_NAME"]
394                 + " this island had. Here is another one. It cost me great wor"
395                + "k. Be more careful this time when planting it.\"")
396             id = id_setter(-1, "Things")
397             world_db["Things"][id] = new_Thing(world_db["PLANT_1"],
398                                                world_db["altar"])
399             world_db["GOD_FAVOR"] -= 250
400         elif world_db["FAVOR_STAGE"] == 2 and world_db["GOD_FAVOR"] < 500:
401             log("The Island God will talk again when it favors you to >=500 "
402                  +" points.")
403         elif world_db["GOD_FAVOR"] > 9000:
404             world_db["FAVOR_STAGE"] = 9001
405             log("The Island God speaks to you: \"You have proven yourself wort"
406                  + "hy of my respect. You were a good citizen to the island, a"
407                  + "nd sometimes a better steward to its inhabitants than me. "
408                  + "The island shall miss you when you leave. But you have ear"
409                  + "ned the right to do so. Take this "
410                  + world_db["ThingTypes"][world_db["SLIPPERS"]]["TT_NAME"]
411                  + " and USE it when you please. It will take you to where you"
412                  + " came from. (But do feel free to stay here as long as you "
413                  + "like.)\"")
414             id = id_setter(-1, "Things")
415             world_db["Things"][id] = new_Thing(world_db["SLIPPERS"],
416                                                world_db["altar"])
417
418     from server.config.world_data import symbols_passable
419     from server.build_fov_map import build_fov_map
420     from server.config.misc import decrement_lifepoints_func
421     from server.new_thing import new_Thing
422     passable = False
423     move_result = mv_yx_in_dir_legal(chr(t["T_ARGUMENT"]),
424                                      t["T_POSY"], t["T_POSX"])
425     if 1 == move_result[0]:
426         pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
427         hitted = [id for id in world_db["Things"]
428                   if world_db["Things"][id] != t
429                   if world_db["Things"][id]["T_LIFEPOINTS"]
430                   if world_db["Things"][id]["T_POSY"] == move_result[1]
431                   if world_db["Things"][id]["T_POSX"] == move_result[2]]
432         if len(hitted):
433             hit_id = hitted[0]
434             if t == world_db["Things"][0]:
435                 hitted_type = world_db["Things"][hit_id]["T_TYPE"]
436                 hitted_name = world_db["ThingTypes"][hitted_type]["TT_NAME"]
437                 log("You WOUND " + hitted_name + ".")
438                 world_db["GOD_FAVOR"] -= 1
439             elif 0 == hit_id:
440                 hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"]
441                 log(hitter_name +" WOUNDS you.")
442             test = decrement_lifepoints_func(world_db["Things"][hit_id])
443             if test and t == world_db["Things"][0]:
444                 world_db["GOD_FAVOR"] -= test 
445             return
446         if (ord("X") == world_db["MAP"][pos]
447             or ord("|") == world_db["MAP"][pos]):
448             carries_axe = False
449             for id in t["T_CARRIES"]:
450                 type = world_db["Things"][id]["T_TYPE"]
451                 if world_db["ThingTypes"][type]["TT_TOOL"] == "axe":
452                     carries_axe = True
453                     break
454             if carries_axe:
455                 axe_name = world_db["ThingTypes"][type]["TT_NAME"]
456                 if t == world_db["Things"][0]:
457                     log("With your " + axe_name + ", you chop!")
458                     if ord("X") == world_db["MAP"][pos]:
459                         world_db["GOD_FAVOR"] -= 1
460                 chop_power = world_db["ThingTypes"][type]["TT_TOOLPOWER"]
461
462                 case_X = world_db["MAP"][pos] == ord("X")
463                 if (chop_power > 0
464                     and ((case_X and
465                           0 == int(rand.next() / chop_power))
466                     or (not case_X and
467                              0 == int(rand.next() / (3 * chop_power))))):
468                     if t == world_db["Things"][0]:
469                         log("You chop it DOWN.")
470                         if ord("X") == world_db["MAP"][pos]:
471                             world_db["GOD_FAVOR"] -= 10
472                     world_db["MAP"][pos] = ord(".")
473                     i = 3 if case_X else 1
474                     for i in range(i):
475                         id = id_setter(-1, "Things")
476                         world_db["Things"][id] = \
477                           new_Thing(world_db["LUMBER"],
478                                     (move_result[1], move_result[2]))
479                     build_fov_map(t)
480                 return
481         passable = chr(world_db["MAP"][pos]) in symbols_passable
482     dir = [dir for dir in directions_db
483            if directions_db[dir] == chr(t["T_ARGUMENT"])][0]
484     if passable:
485         t["T_POSY"] = move_result[1]
486         t["T_POSX"] = move_result[2]
487         for id in t["T_CARRIES"]:
488             world_db["Things"][id]["T_POSY"] = move_result[1]
489             world_db["Things"][id]["T_POSX"] = move_result[2]
490         build_fov_map(t)
491         if t == world_db["Things"][0]:
492             log("You MOVE " + dir + ".")
493             if (move_result[1] == world_db["altar"][0] and
494                 move_result[2] == world_db["altar"][1]):
495                 enter_altar()
496
497 def command_ttid(id_string):
498     id = id_setter(id_string, "ThingTypes", command_ttid)
499     if None != id:
500         world_db["ThingTypes"][id] = {
501             "TT_NAME": "(none)",
502             "TT_TOOLPOWER": 0,
503             "TT_LIFEPOINTS": 0,
504             "TT_PROLIFERATE": 0,
505             "TT_START_NUMBER": 0,
506             "TT_STORAGE": 0,
507             "TT_SYMBOL": "?",
508             "TT_CORPSE_ID": id,
509             "TT_TOOL": ""
510         }
511
512 def command_worldactive(worldactive_string):
513     val = integer_test(worldactive_string, 0, 1)
514     if None != val:
515         if 0 != world_db["WORLD_ACTIVE"]:
516             if 0 == val:
517                 set_world_inactive()
518             else:
519                 print("World already active.")
520         elif 0 == world_db["WORLD_ACTIVE"]:
521             wait_exists = False
522             for ThingAction in world_db["ThingActions"]:
523                 if "wait" == world_db["ThingActions"][ThingAction]["TA_NAME"]:
524                     wait_exists = True
525                     break
526             player_exists = False
527             for Thing in world_db["Things"]:
528                 if 0 == Thing:
529                     player_exists = True
530                     break
531             altar_found = False
532             if world_db["MAP"]:
533                 pos = world_db["MAP"].find(b'_')
534                 if pos > 0:
535                     y = int(pos / world_db["MAP_LENGTH"])
536                     x = pos % world_db["MAP_LENGTH"]
537                     world_db["altar"] = (y, x)
538                     altar_found = True
539             specials_set = True
540             for name in world_db["specials"]:
541                 if world_db[name] not in world_db["ThingTypes"]:
542                     specials_set = False
543             if altar_found and wait_exists and player_exists and \
544                     world_db["MAP"] and specials_set:
545                 for id in world_db["Things"]:
546                     if world_db["Things"][id]["T_LIFEPOINTS"]:
547                         build_fov_map(world_db["Things"][id])
548                         if 0 == id:
549                             update_map_memory(world_db["Things"][id], False)
550                 if not world_db["Things"][0]["T_LIFEPOINTS"]:
551                     empty_fovmap = bytearray(b" " * world_db["MAP_LENGTH"] ** 2)
552                     world_db["Things"][0]["fovmap"] = empty_fovmap
553                 world_db["WORLD_ACTIVE"] = 1
554             else:
555                 print("Ignoring: Not all conditions for world activation met.")
556
557 def play_move(str_arg):
558     if action_exists("move"):
559         from server.config.world_data import directions_db, symbols_passable
560         t = world_db["Things"][0]
561         if not str_arg in directions_db:
562             print("Illegal move direction string.")
563             return
564         dir = ord(directions_db[str_arg])
565         from server.utils import mv_yx_in_dir_legal
566         move_result = mv_yx_in_dir_legal(chr(dir), t["T_POSY"], t["T_POSX"])
567         if 1 == move_result[0]:
568             pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2]
569             if ord("~") == world_db["MAP"][pos]:
570                 log("You can't SWIM.")
571                 return
572             if (ord("X") == world_db["MAP"][pos]
573                 or ord("|") == world_db["MAP"][pos]):
574                 carries_axe = False
575                 for id in t["T_CARRIES"]:
576                     type = world_db["Things"][id]["T_TYPE"]
577                     if world_db["ThingTypes"][type]["TT_TOOL"] == "axe":
578                         world_db["Things"][0]["T_ARGUMENT"] = dir
579                         set_command("move")
580                         return
581             if chr(world_db["MAP"][pos]) in symbols_passable:
582                 world_db["Things"][0]["T_ARGUMENT"] = dir
583                 set_command("move")
584                 return
585         log("You CAN'T move there.")
586
587 def play_use(str_arg):
588     if action_exists("use"):
589         t = world_db["Things"][0]
590         if 0 == len(t["T_CARRIES"]):
591             log("You have NOTHING to use in your inventory.")
592         else:
593             val = integer_test(str_arg, 0, 255)
594             if None != val and val < len(t["T_CARRIES"]):
595                 id = t["T_CARRIES"][val]
596                 type = world_db["Things"][id]["T_TYPE"]
597                 if (world_db["ThingTypes"][type]["TT_TOOL"] == "axe"
598                       and t == world_db["Things"][0]):
599                     log("To use this item for chopping, move towards a tree "
600                          + "while carrying it in your inventory.")
601                     return
602                 elif (world_db["ThingTypes"][type]["TT_TOOL"] == "carpentry"):
603                     pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
604                     if (world_db["MAP"][pos] == ord("X")
605                         or world_db["MAP"][pos] == ord("|")):
606                         log("Can't build when standing on barrier.")
607                         return
608                     for id in [id for id in world_db["Things"]
609                                if not world_db["Things"][id] == t
610                                if not world_db["Things"][id]["carried"]
611                                if world_db["Things"][id]["T_POSY"] == t["T_POSY"]
612                                if world_db["Things"][id]["T_POSX"] == t["T_POSX"]]:
613                          log("Can't build when standing objects.")
614                          return
615                     wood_id = None
616                     for id in t["T_CARRIES"]:
617                         type_material = world_db["Things"][id]["T_TYPE"]
618                         if (world_db["ThingTypes"][type_material]["TT_TOOL"]
619                             == "wood"):
620                             wood_id = id
621                             break
622                     if wood_id == None:
623                         log("You can't use a "
624                             + world_db["ThingTypes"][type]["TT_NAME"]
625                             + " without some wood in your inventory.")
626                         return
627                 elif world_db["ThingTypes"][type]["TT_TOOL"] == "fertilizer":
628                     pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
629                     if not world_db["MAP"][pos] == ord("."):
630                         log("Can only make soil out of NON-SOIL earth.")
631                         return
632                 elif type != world_db["SLIPPERS"] and not \
633                         world_db["ThingTypes"][type]["TT_TOOL"] == "food":
634                     log("You CAN'T consume this thing.")
635                     return
636                 world_db["Things"][0]["T_ARGUMENT"] = val
637                 set_command("use")
638             else:
639                 print("Illegal inventory index.")
640
641 def specialtypesetter(name):
642     def helper(str_int):
643         val = integer_test(str_int, 0)
644         if None != val:
645             world_db[name] = val
646             if world_db["WORLD_ACTIVE"] \
647                and world_db[name] not in world_db["ThingTypes"]:
648                 world_db["WORLD_ACTIVE"] = 0
649                 print(name + " fits no known ThingType, deactivating world.")
650     return helper
651
652 def write_metamap_A():
653     from server.worldstate_write_helpers import write_map
654     ord_v = ord("v")
655     length = world_db["MAP_LENGTH"]
656     metamapA = bytearray(b'0' * (length ** 2))
657     for id in [id for id in world_db["Things"]
658                   if not world_db["Things"][id]["carried"]
659                   if world_db["Things"][id]["T_LIFEPOINTS"]
660                   if world_db["Things"][0]["fovmap"][
661                        world_db["Things"][id]["T_POSY"] * length
662                        + world_db["Things"][id]["T_POSX"]] == ord_v]:
663         pos = (world_db["Things"][id]["T_POSY"] * length
664               + world_db["Things"][id]["T_POSX"])
665         if id == 0 or world_db["EMPATHY"]:
666             type = world_db["Things"][id]["T_TYPE"]
667             max_hp = world_db["ThingTypes"][type]["TT_LIFEPOINTS"]
668             third_of_hp = max_hp / 3
669             hp = world_db["Things"][id]["T_LIFEPOINTS"]
670             add = 0
671             if hp > 2 * third_of_hp:
672                  add = 2
673             elif hp > third_of_hp:
674                 add = 1
675             metamapA[pos] = ord('a') + add
676         else:
677             metamapA[pos] = ord('X')
678     for mt in world_db["Things"][0]["T_MEMTHING"]:
679         pos = mt[1] * length + mt[2]
680         if metamapA[pos] < ord('2'):
681             metamapA[pos] += 1
682     return write_map(metamapA, length)
683
684 def write_metamap_B():
685     from server.worldstate_write_helpers import write_map
686     ord_v = ord("v")
687     length = world_db["MAP_LENGTH"]
688     metamapB = bytearray(b' ' * (length ** 2))
689     for id in [id for id in world_db["Things"]
690                   if not world_db["Things"][id]["carried"]
691                   if world_db["Things"][id]["T_LIFEPOINTS"]
692                   if world_db["Things"][0]["fovmap"][
693                        world_db["Things"][id]["T_POSY"] * length
694                        + world_db["Things"][id]["T_POSX"]] == ord_v]:
695         pos = (world_db["Things"][id]["T_POSY"] * length
696               + world_db["Things"][id]["T_POSX"])
697         if id == 0 or world_db["EMPATHY"]:
698             action = world_db["Things"][id]["T_COMMAND"]
699             if 0 != action:
700                 name = world_db["ThingActions"][action]["TA_NAME"]
701             else:
702                 name = " "
703             metamapB[pos] = ord(name[0])
704     return write_map(metamapB, length)
705
706 def calc_effort(thing_action, thing):
707     from math import sqrt
708     effort = thing_action["TA_EFFORT"]
709     if thing_action["TA_NAME"] == "move":
710         typ = thing["T_TYPE"]
711         max_hp = (world_db["ThingTypes"][typ]["TT_LIFEPOINTS"])
712         effort = int(effort / sqrt(max_hp))
713         effort = 1 if effort == 0 else effort
714     return effort
715
716 strong_write(io_db["file_out"], "PLUGIN PleaseTheIslandGod\n")
717
718 if not "GOD_FAVOR" in world_db:
719     world_db["GOD_FAVOR"] = 0
720 if not "FAVOR_STAGE" in world_db:
721     world_db["FAVOR_STAGE"] = 0
722 if not "SLIPPERS" in world_db:
723     world_db["SLIPPERS"] = 0
724 if not "PLANT_0" in world_db:
725     world_db["PLANT_0"] = 0
726 if not "PLANT_1" in world_db:
727     world_db["PLANT_1"] = 0
728 if not "TOOL_0" in world_db:
729     world_db["TOOL_0"] = 0
730 if not "TOOL_1" in world_db:
731     world_db["TOOL_1"] = 0
732 if not "LUMBER" in world_db:
733     world_db["LUMBER"] = 0
734 if not "EMPATHY" in world_db:
735     world_db["EMPATHY"] = 0
736 world_db["terrain_names"][":"] = "SOIL"
737 world_db["terrain_names"]["|"] = "WALL"
738 world_db["terrain_names"]["_"] = "ALTAR"
739 world_db["specials"] = ["SLIPPERS", "PLANT_0", "PLANT_1", "TOOL_0", "LUMBER"]
740 io_db["worldstate_write_order"] += [["GOD_FAVOR", "world_int"]]
741 io_db["worldstate_write_order"] += [[write_metamap_A, "func"]]
742 io_db["worldstate_write_order"] += [[write_metamap_B, "func"]]
743
744 import server.config.world_data
745 server.config.world_data.symbols_passable += ":_"
746
747 from server.config.world_data import thing_defaults
748 thing_defaults["T_PLAYERDROP"] = 0
749
750 import server.config.actions
751 server.config.actions.action_db["actor_move"] = actor_move
752 server.config.actions.action_db["actor_pickup"] = actor_pickup
753 server.config.actions.action_db["actor_drop"] = actor_drop
754 server.config.actions.action_db["actor_use"] = actor_use
755 server.config.actions.ai_func = ai
756
757 from server.config.commands import commands_db
758 commands_db["TT_ID"] = (1, False, command_ttid)
759 commands_db["GOD_FAVOR"] = (1, False, setter(None, "GOD_FAVOR", -32768, 32767))
760 commands_db["TT_STORAGE"] = (1, False, setter("ThingType", "TT_STORAGE", 0, 255))
761 commands_db["T_PLAYERDROP"] = (1, False, setter("Thing", "T_PLAYERDROP", 0, 1))
762 commands_db["WORLD_ACTIVE"] = (1, False, command_worldactive)
763 commands_db["FAVOR_STAGE"] = (1, False, setter(None, "FAVOR_STAGE", 0, 1))
764 commands_db["SLIPPERS"] = (1, False, specialtypesetter("SLIPPERS"))
765 commands_db["TOOL_0"] = (1, False, specialtypesetter("TOOL_0"))
766 commands_db["TOOL_1"] = (1, False, specialtypesetter("TOOL_1"))
767 commands_db["PLANT_0"] = (1, False, specialtypesetter("PLANT_0"))
768 commands_db["PLANT_1"] = (1, False, specialtypesetter("PLANT_1"))
769 commands_db["LUMBER"] = (1, False, specialtypesetter("LUMBER"))
770 commands_db["EMPATHY"] = (1, False, setter(None, "EMPATHY", 0, 1))
771 commands_db["use"] = (1, False, play_use)
772 commands_db["move"] = (1, False, play_move)
773
774 import server.config.misc
775 server.config.misc.make_map_func = make_map
776 server.config.misc.thingproliferation_func = thingproliferation
777 server.config.misc.make_world = make_world
778 server.config.misc.decrement_lifepoints_func = decrement_lifepoints
779 server.config.misc.calc_effort_func = calc_effort