-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathentity.py
76 lines (70 loc) · 2.43 KB
/
entity.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import tcod
import ai
import glo
import random
class Entity:
"""
A generic object to represent players, enemies, items, etc.
"""
def __init__(self, x, y, char, name, color, ai_text="", blocking=True, isbot=False):
self.x = x
self.y = y
self.dir = "north"
self.char = char
self.name = name
self.color = color
self.ai_text = ai_text
self.t = 0
self.item_capacity = 0
self.items = []
self.equipments = []
self.location_capacity = 10
self.locations = []
self.log = []
self.max_energy = 3000
self.energy = 3000
self.busy = 0
self.blocking = blocking
self.isbot = isbot
if self.char == 'G':
self.item_capacity = 3
if self.char == 'b':
self.ai_text = ai.bat_text
def move(self, dx, dy):
# Move the entity by a given amount
self.x += dx
self.y += dy
if self.isbot:
glo.game_map.tiles[self.x-1][self.y-1].explored = True
glo.game_map.tiles[self.x-1][self.y].explored = True
glo.game_map.tiles[self.x-1][self.y+1].explored = True
glo.game_map.tiles[self.x][self.y-1].explored = True
glo.game_map.tiles[self.x][self.y].explored = True
glo.game_map.tiles[self.x][self.y+1].explored = True
glo.game_map.tiles[self.x+1][self.y-1].explored = True
glo.game_map.tiles[self.x+1][self.y].explored = True
glo.game_map.tiles[self.x+1][self.y+1].explored = True
def ai_step(self):
self.busy -= 1
if self.ai_text != "" and self.busy <= 0 and self.energy > 0:
self.busy = 0
exec(self.ai_text, {
"simple_sensor": ai.simple_sensor,
"sonar": ai.sonar,
"wall_sensor": ai.wall_sensor,
"simple_pick": ai.simple_pick,
"dig": ai.dig,
"move": ai.move,
"randint": random.randint,
"self": self,
})
# recolor based on battery
if self.isbot:
if self.energy <= 0:
self.color = tcod.grey
elif self.energy <= 1000:
self.color = tcod.red
elif self.energy <= 2000:
self.color = tcod.yellow
else:
self.color = tcod.green