-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameController.py
134 lines (131 loc) · 5.13 KB
/
GameController.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
import numpy
from Building import Building
from ObstacleLocation import ObstacleLocation
from Move import Move
from UserBot import UserBot
import GameConfig
class GameController(object):
def __init__(self):
self.__initializeBuilding()
self.output = []
self.move = {}
self.gameDetails = {}
def __MarkPos(self,Path,Location):
if(Location.getObstacle() == GameConfig.ObstacleType.RADAR):
self.__MarkRow(Path,Location.getFloor())
self.__MarkColumn(Path,Location.getRoom())
self.__MarkDiagonal(Path,Location.getFloor(),Location.getRoom())
elif(Location.getObstacle() == GameConfig.ObstacleType.MISSILE):
self.__MarkDiagonal(Path,Location.getFloor(),Location.getRoom())
else:
self.__MarkRow(Path,Location.getFloor())
self.__MarkColumn(Path,Location.getRoom())
def __MarkRow(self,Path,row):
for j in range(GameConfig.constants.COLUMNS):
Path[row][j] = -1
def __MarkColumn(self,Path,column):
for i in range(GameConfig.constants.ROWS):
Path[i][column] = -1
def __MarkDiagonal(self,Path,row,column):
colInc = column + 1
rowInc = row
for i in range(row-1 , -1 , -1):
if colInc < GameConfig.constants.COLUMNS:
Path[i][colInc] = -1
colInc = colInc + 1
colInc = column - 1
for i in range(row-1 , -1 , -1):
if colInc > 0:
Path[i][colInc] = -1
colInc = colInc - 1
colInc = column + 1
for i in range(GameConfig.constants.ROWS):
if colInc < GameConfig.constants.COLUMNS:
Path[i][colInc] = -1
colInc = colInc + 1
colInc = column - 1
for i in range(GameConfig.constants.ROWS):
if colInc > 0:
Path[i][colInc] = -1
colInc = colInc - 1
def LoadObstaclePosition(self):
obstacle = []
obstacle.append(ObstacleLocation(2,2,GameConfig.ObstacleType.ENEMY_COMMANDER))
obstacle.append(ObstacleLocation(0,8,GameConfig.ObstacleType.TANK))
obstacle.append(ObstacleLocation(5,3,GameConfig.ObstacleType.MISSILE))
obstacle.append(ObstacleLocation(7,9,GameConfig.ObstacleType.HEROBOT))
obstacle.append(ObstacleLocation(8,1,GameConfig.ObstacleType.RADAR))
return obstacle
def __initializeBuilding(self):
self.locations = self.LoadObstaclePosition()
self.BuildingMap = Building(self.locations)
def Simulate(self,User):
origin = ObstacleLocation(0,0,GameConfig.ObstacleType.HEROBOT)
destination = ObstacleLocation(0,0,GameConfig.ObstacleType.ENEMY_COMMANDER)
moves = [Move(0,0) for j in range(50)]
Path = numpy.zeros((GameConfig.constants.ROWS,GameConfig.constants.COLUMNS),dtype = int)
moves = User.MakeMoves(self.BuildingMap,moves,50)
for i in range(GameConfig.constants.ROWS):
for j in range(GameConfig.constants.COLUMNS):
if(self.BuildingMap.GetObstacleType(i,j) == GameConfig.ObstacleType.HEROBOT):
location = ObstacleLocation(i,j,GameConfig.ObstacleType.HEROBOT)
origin = location
elif(self.BuildingMap.GetObstacleType(i,j) == GameConfig.ObstacleType.MISSILE):
location = ObstacleLocation(i,j,GameConfig.ObstacleType.MISSILE)
self.__MarkPos(Path,location)
elif(self.BuildingMap.GetObstacleType(i,j) == GameConfig.ObstacleType.RADAR):
location = ObstacleLocation(i,j,GameConfig.ObstacleType.RADAR)
self.__MarkPos(Path,location)
elif(self.BuildingMap.GetObstacleType(i,j) == GameConfig.ObstacleType.TANK):
location = ObstacleLocation(i,j,GameConfig.ObstacleType.TANK)
self.__MarkPos(Path,location)
elif(self.BuildingMap.GetObstacleType(i,j) == GameConfig.ObstacleType.ENEMY_COMMANDER):
location = ObstacleLocation(i,j,GameConfig.ObstacleType.ENEMY_COMMANDER)
destination = location
PrevMove = Move(origin.getFloor(),origin.getRoom())
for i in range(50):
if(moves[i].GetRow() != destination.getFloor()):
if((moves[i].GetColumn() != destination.getRoom())):
if(self.BuildingMap.isValidMove(PrevMove,moves[i]) and (moves[i].GetRow()!=-1 and moves[i].GetColumn()!=-1)):
out = {}
out['row'] = moves[i].GetRow()
out['column'] = moves[i].GetColumn()
self.output.append(out)
PrevMove = moves[i]
continue
else:
if(self.BuildingMap.isValidMove(PrevMove,moves[i])):
self.move['moves'] = self.output
self.move['IsGameValid'] = 'True'
else:
out = {}
out['IsGameValid'] = 'True'
out['GameStatus'] = 'Lose'
self.output.append(out)
return False
if(self.BuildingMap.isValidMove(PrevMove,moves[i])):
out = {}
out['row'] = moves[i].GetRow()
out['column'] = moves[i].GetColumn()
self.output.append(out)
self.output
self.move['moves'] = self.output
self.move['IsGameValid'] = 'True'
self.move['GameStatus'] = 'Win'
print('IsGameValid = True \n GameStatus = Win')
self.PrintPath(Path)
return True
else:
self.move['moves'] = self.output
self.move['IsGameValid'] = 'False'
if(((moves[i].GetRow()==dest.GetFloor()) and (moves[i].GetColumn()==dest.GetRoom())) != True):
self.moves['moves'] = self.output
self.moves['IsGameValid'] = 'False'
print('IsGameValid = True \n GameStatus = False')
self.PrintPath(Path)
return False
def PrintPath(self,Path):
print(Path)
for i in range(GameConfig.constants.ROWS):
for j in range(GameConfig.constants.COLUMNS):
print(self.BuildingMap.GetObstacleType(i,j))