Projekt_AI-Automatyczny_saper/Engine/Game.py

104 lines
3.1 KiB
Python
Raw Normal View History

2021-03-27 22:07:55 +01:00
import random
2021-03-13 21:16:35 +01:00
import pygame
2021-03-30 21:01:54 +02:00
from Constants import SQUARE_SIZE, GREEN, RIGHT, LEFT, UP, DOWN, COLS, ROWS, DECOY, ATOMIC_BOMB, CHEMICAL_BOMB, \
CLAYMORE, LAND_MINE
2021-03-16 18:53:26 +01:00
from Engine.Board import Board
from Engine.Agent import Agent
2021-03-27 22:07:55 +01:00
from Engine.BombFactory import BombFactory
from Engine.Point import Point
2021-03-27 22:16:28 +01:00
from Engine.Stone import Stone
2021-04-12 22:54:33 +02:00
from Engine.PathFinder import PathFinder
2021-03-27 22:07:55 +01:00
2021-03-13 21:16:35 +01:00
class Game:
def __init__(self, win):
2021-03-27 22:07:55 +01:00
self._init(win)
2021-03-13 21:16:35 +01:00
self.win = win
2021-03-27 22:07:55 +01:00
self.randomizeObject()
pygame.display.update()
2021-03-13 21:16:35 +01:00
2021-03-30 21:01:54 +02:00
def _init(self, win):
2021-03-27 22:07:55 +01:00
self.board = Board(win)
2021-03-30 21:01:54 +02:00
self.agent = Agent(Point(0, 0))
2021-03-13 21:16:35 +01:00
self.turn = GREEN
2021-03-16 18:53:26 +01:00
self.goingDown = True
2021-03-13 21:16:35 +01:00
def update(self):
2021-03-30 23:10:20 +02:00
self.agent.defuse(self.board.getBomb(self.agent.getPoint()))
2021-03-15 19:58:20 +01:00
self.board.drawSquares(self.win)
2021-03-27 22:07:55 +01:00
self.board.drawBombs()
2021-04-12 22:54:33 +02:00
self.board.drawStones()
2021-03-30 21:01:54 +02:00
self.board.drawAgent(self.win, self.agent)
2021-03-13 21:16:35 +01:00
pygame.display.update()
2021-03-16 18:53:26 +01:00
def move(self):
2021-04-13 19:32:08 +02:00
point = self.agent.getPoint()
if self.goingDown:
if point.getY() + 1 < ROWS:
point.y += 1
elif point.getX() + 1 < COLS:
point.x += 1
self.goingDown = not self.goingDown
else:
if point.getY() - 1 >= 0:
point.y -= 1
elif point.getX() + 1 < COLS:
point.x += 1
self.goingDown = not self.goingDown
self.agent.rotateImage(point)
self.agent.point = point
#self.moveSequence()
2021-04-12 22:54:33 +02:00
def moveSequence(self):
pathfinder = PathFinder(self.board)
for point in pathfinder.findPath(Point(0,0), Point(5,5)):
self.agent.point = point
self.update()
2021-03-27 22:07:55 +01:00
def randomizeObject(self):
2021-03-30 23:10:20 +02:00
i = 0
2021-04-12 22:54:33 +02:00
while i < 5:
point = Point(random.randint(0, 9), random.randint(0, 9))
2021-03-30 23:10:20 +02:00
if(point.getX() == 0 and point.getY() == 0):
continue;
2021-03-27 22:07:55 +01:00
if point not in self.board.bombMap:
2021-03-27 22:16:28 +01:00
object = self.pickObject(random.randint(0, 4))
self.board.bombMap[point] = object
2021-03-30 23:10:20 +02:00
i += 1
2021-04-13 19:32:08 +02:00
r = 5
2021-04-12 22:54:33 +02:00
j = 0
while j < r:
point = Point(random.randint(0, 9), random.randint(0, 9))
if (point.getX() == 0 and point.getY() == 0):
continue;
if point not in self.board.bombMap and point not in self.board.stoneMap:
object = Stone()
self.board.stoneMap[point] = object
j += 1
2021-03-27 22:07:55 +01:00
2021-03-27 22:16:28 +01:00
def pickObject(self, rand):
2021-03-30 21:01:54 +02:00
if rand == 0:
2021-03-27 22:07:55 +01:00
return BombFactory.create(DECOY)
2021-03-30 21:01:54 +02:00
elif rand == 1:
2021-03-27 22:07:55 +01:00
return BombFactory.create(CHEMICAL_BOMB)
2021-03-30 21:01:54 +02:00
elif rand == 2:
2021-03-27 22:07:55 +01:00
return BombFactory.create(ATOMIC_BOMB)
2021-03-30 21:01:54 +02:00
elif rand == 3:
2021-03-27 22:07:55 +01:00
return BombFactory.create(CLAYMORE)
2021-03-30 21:01:54 +02:00
elif rand == 4:
2021-03-27 22:07:55 +01:00
return BombFactory.create(LAND_MINE)
2021-04-12 22:54:33 +02:00
2021-04-13 19:32:08 +02:00
def findBomb(self):
pass
2021-04-12 22:54:33 +02:00
def finalState(self):
j = 0
for key in self.board.bombMap:
bomb = self.board.bombMap[key]
if not bomb.isDefused:
j += 1
return j == 0