forked from nkremerh/sugarscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcell.py
119 lines (100 loc) · 4 KB
/
cell.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
import math
class Cell:
def __init__(self, x, y, environment, maxSugar=0, maxSpice=0, growbackRate=0):
self.x = x
self.y = y
self.environment = environment
self.maxSugar = maxSugar
self.sugar = maxSugar
self.maxSpice = maxSpice
self.spice = maxSpice
self.pollution = 0
self.agent = None
self.hemisphere = "north" if self.x >= self.environment.equator else "south"
self.season = None
self.timestep = 0
self.neighbors = []
self.sugarLastProduced = 0
self.spiceLastProduced = 0
def doSpiceConsumptionPollution(self, spiceConsumed):
consumptionPollutionFactor = self.environment.spiceConsumptionPollutionFactor
self.pollution += consumptionPollutionFactor * spiceConsumed
def doSugarConsumptionPollution(self, sugarConsumed):
consumptionPollutionFactor = self.environment.sugarConsumptionPollutionFactor
self.pollution += consumptionPollutionFactor * sugarConsumed
def doPollutionDiffusion(self):
meanPollution = self.pollution
for neighbor in self.neighbors:
meanPollution += neighbor.pollution
meanPollution = meanPollution / (len(self.neighbors) + 1)
for neighbor in self.neighbors:
neighbor.pollution = meanPollution
self.pollution = meanPollution
def doSpiceProductionPollution(self, spiceProduced):
productionPollutionFactor = self.environment.spiceProductionPollutionFactor
self.pollution += productionPollutionFactor * spiceProduced
def doSugarProductionPollution(self, sugarProduced):
productionPollutionFactor = self.environment.sugarProductionPollutionFactor
self.pollution += productionPollutionFactor * sugarProduced
def findNeighborAgents(self):
agents = []
for neighbor in self.neighbors:
agent = neighbor.agent
if agent != None:
agents.append(agent)
return agents
def findNeighbors(self):
self.neighbors = []
self.neighbors.append(self.findNorthNeighbor())
self.neighbors.append(self.findSouthNeighbor())
self.neighbors.append(self.findEastNeighbor())
self.neighbors.append(self.findWestNeighbor())
def findNeighborWealth(self):
neighborWealth = 0
for neighbor in self.neighbors:
neighborWealth += neighbor.sugar + neighbor.spice
return neighborWealth
def findEastNeighbor(self):
eastWrapAround = self.environment.width
eastIndex = self.x + 1
if eastIndex >= eastWrapAround:
eastIndex = 0
eastNeighbor = self.environment.findCell(eastIndex, self.y)
return eastNeighbor
def findNorthNeighbor(self):
northNeighbor = self.environment.findCell(self.x, (self.y + 1 + self.environment.height) % self.environment.height)
return northNeighbor
def findSouthNeighbor(self):
southWrapAround = 0
southIndex = self.y - 1
if southIndex < southWrapAround:
southIndex = self.environment.height - 1
southNeighbor = self.environment.findCell(self.x, southIndex)
return southNeighbor
def findWestNeighbor(self):
westWrapAround = 0
westIndex = self.x - 1
if westIndex < westWrapAround:
westIndex = self.environment.width - 1
westNeighbor = self.environment.findCell(westIndex, self.y)
return westNeighbor
def isOccupied(self):
return self.agent != None
def resetAgent(self):
self.agent = None
def resetSpice(self):
self.spice = 0
def resetSugar(self):
self.sugar = 0
def updateSeason(self):
if self.season == "summer":
self.season = "winter"
else:
self.season = "summer"
def __str__(self):
string = ""
if self.agent != None:
string = "-A-"
else:
string = "{0}/{1}".format(str(self.sugar), str(self.spice))
return string