forked from nkremerh/sugarscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.py
160 lines (148 loc) · 8.22 KB
/
environment.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import math
import random
class Environment:
# Assumption: grid is always indexed by [height][width]
def __init__(self, height, width, sugarscape, configuration):
self.width = width
self.height = height
self.globalMaxSugar = configuration["globalMaxSugar"]
self.sugarRegrowRate = configuration["sugarRegrowRate"]
self.globalMaxSpice = configuration["globalMaxSpice"]
self.spiceRegrowRate = configuration["spiceRegrowRate"]
self.sugarscape = sugarscape
self.timestep = 0
self.seed = configuration["sugarscapeSeed"]
self.seasonInterval = configuration["seasonInterval"]
self.seasonalGrowbackDelay = configuration["seasonalGrowbackDelay"]
self.seasonNorth = "summer" if configuration["seasonInterval"] > 0 else None
self.seasonSouth = "winter" if configuration["seasonInterval"] > 0 else None
self.seasonalGrowbackCountdown = configuration["seasonalGrowbackDelay"]
self.pollutionDiffusionDelay = configuration["pollutionDiffusionDelay"]
self.pollutionDiffusionCountdown = configuration["pollutionDiffusionDelay"]
self.sugarConsumptionPollutionFactor = configuration["sugarConsumptionPollutionFactor"]
self.spiceConsumptionPollutionFactor = configuration["spiceConsumptionPollutionFactor"]
self.sugarProductionPollutionFactor = configuration["sugarProductionPollutionFactor"]
self.spiceProductionPollutionFactor = configuration["spiceProductionPollutionFactor"]
self.maxCombatLoot = configuration["maxCombatLoot"]
self.universalSpiceIncomeInterval = configuration["universalSpiceIncomeInterval"]
self.universalSugarIncomeInterval = configuration["universalSugarIncomeInterval"]
self.equator = math.ceil(self.height / 2)
# Populate grid with NoneType objects
self.grid = [[None for j in range(width)]for i in range(height)]
def doCellUpdate(self):
for i in range(self.height):
for j in range(self.width):
cellCurrSugar = self.grid[i][j].sugar
cellCurrSpice = self.grid[i][j].spice
cellMaxSugar = self.grid[i][j].maxSugar
cellMaxSpice = self.grid[i][j].maxSpice
cellSeason = self.grid[i][j].season
sugarRegrowth = min(cellCurrSugar + self.sugarRegrowRate, cellMaxSugar)
spiceRegrowth = min(cellCurrSpice + self.spiceRegrowRate, cellMaxSpice)
if self.seasonInterval > 0:
if self.timestep % self.seasonInterval == 0:
self.grid[i][j].updateSeason()
if (cellSeason == "summer") or (cellSeason == "winter" and self.seasonalGrowbackCountdown == self.seasonalGrowbackDelay):
if self.grid[i][j].sugar + self.sugarRegrowRate != self.grid[i][j].sugar:
self.grid[i][j].sugarLastProduced = self.sugarRegrowRate
else:
self.grid[i][j].sugarLastProduced = 0
if self.grid[i][j].spice + self.spiceRegrowRate != self.grid[i][j].spice:
self.grid[i][j].spiceLastProduced = self.spiceRegrowRate
else:
self.grid[i][j].spiceLastProduced = 0
self.grid[i][j].sugar = sugarRegrowth
self.grid[i][j].spice = spiceRegrowth
else:
if self.grid[i][j].sugar + self.sugarRegrowRate != self.grid[i][j].sugar:
self.grid[i][j].sugarLastProduced = self.sugarRegrowRate
else:
self.grid[i][j].sugarLastProduced = 0
if self.grid[i][j].spice + self.spiceRegrowRate != self.grid[i][j].spice:
self.grid[i][j].spiceLastProduced = self.spiceRegrowRate
else:
self.grid[i][j].spiceLastProduced = 0
self.grid[i][j].sugar = sugarRegrowth
self.grid[i][j].spice = spiceRegrowth
if self.pollutionDiffusionDelay > 0 and self.pollutionDiffusionCountdown == self.pollutionDiffusionDelay:
self.grid[i][j].doPollutionDiffusion()
def doTimestep(self, timestep):
self.timestep = timestep
self.updateSeasons()
self.updatePollution()
self.doCellUpdate()
def findCell(self, x, y):
return self.grid[x][y]
def findCellNeighbors(self):
for i in range(self.height):
for j in range(self.width):
self.grid[i][j].findNeighbors()
def findCellsInCardinalRange(self, startX, startY, gridRange):
cellsInRange = []
for i in range(1, gridRange + 1):
deltaNorth = (startY + i + self.height) % self.height
deltaSouth = (startY - i + self.height) % self.height
deltaEast = (startX + i + self.width) % self.width
deltaWest = (startX - i + self.width) % self.width
cellsInRange.append({"cell": self.grid[startX][deltaNorth], "distance": i})
cellsInRange.append({"cell": self.grid[startX][deltaSouth], "distance": i})
cellsInRange.append({"cell": self.grid[deltaEast][startY], "distance": i})
cellsInRange.append({"cell": self.grid[deltaWest][startY], "distance": i})
return cellsInRange
def findCellsInRadialRange(self, startX, startY, gridRange):
cellsInRange = self.findCellsInCardinalRange(startX, startY, gridRange)
# Iterate through the upper left quadrant of the circle's bounding box
for i in range(startX - gridRange, startX):
for j in range(startY - gridRange, startY):
euclideanDistance = math.sqrt(pow((i - startX), 2) + pow((j - startY), 2))
# If agent can see at least part of a cell, they should be allowed to consider it
if euclideanDistance < gridRange + 1:
deltaX = (i + self.height) % self.height
reflectedX = (2 * startX - i + self.height) % self.height
deltaY = (j + self.width) % self.width
reflectedY = (2 * startY - j + self.width) % self.width
cellsInRange.append({"cell": self.grid[deltaX][deltaY], "distance": euclideanDistance})
cellsInRange.append({"cell": self.grid[deltaX][reflectedY], "distance": euclideanDistance})
cellsInRange.append({"cell": self.grid[reflectedX][deltaY], "distance": euclideanDistance})
cellsInRange.append({"cell": self.grid[reflectedX][reflectedY], "distance": euclideanDistance})
return cellsInRange
def resetCell(self, x, y):
self.grid[x][y] = None
def setCell(self, cell, x, y):
if self.grid[x][y] == None:
if y >= self.equator:
cell.season = self.seasonNorth
else:
cell.season = self.seasonSouth
self.grid[x][y] = cell
def updatePollution(self):
if self.pollutionDiffusionDelay > 0:
self.pollutionDiffusionCountdown -= 1
# Pollution diffusion delay over
if self.pollutionDiffusionCountdown == 0:
self.pollutionDiffusionCountdown = self.pollutionDiffusionDelay
def updateSeasons(self):
if self.seasonInterval > 0:
self.seasonalGrowbackCountdown -= 1
# Seasonal growback delay over
if self.seasonalGrowbackCountdown == 0:
self.seasonalGrowbackCountdown = self.seasonalGrowbackDelay
if self.timestep % self.seasonInterval == 0:
if self.seasonNorth == "summer":
self.seasonNorth = "winter"
self.seasonSouth = "summer"
else:
self.seasonNorth = "summer"
self.seasonSouth = "winter"
def __str__(self):
string = ""
for i in range(0, self.height):
for j in range(0, self.width):
cell = self.grid[i][j]
if cell == None:
cell = '_'
else:
cell = str(cell)
string = string + ' '+ cell
string = string + '\n'
return string