2021-03-14 13:42:33 +01:00
|
|
|
import pygame as pg
|
2021-04-08 16:29:37 +02:00
|
|
|
import enum
|
2021-04-10 13:48:55 +02:00
|
|
|
import ctypes
|
2021-04-10 22:23:34 +02:00
|
|
|
import ast
|
2021-03-14 13:42:33 +01:00
|
|
|
from settings import *
|
2021-04-10 22:23:34 +02:00
|
|
|
from maze import *
|
2021-03-14 13:42:33 +01:00
|
|
|
|
|
|
|
class Player(pg.sprite.Sprite):
|
2021-04-08 16:29:37 +02:00
|
|
|
def __init__(self, game, x, y, direction = 'Right'):
|
2021-03-14 13:42:33 +01:00
|
|
|
self.groups = game.all_sprites
|
|
|
|
pg.sprite.Sprite.__init__(self, self.groups)
|
|
|
|
self.game = game
|
2021-03-27 19:34:41 +01:00
|
|
|
#self.image = pg.Surface((TILESIZE, TILESIZE))
|
|
|
|
self.image = pg.image.load('images/robot.bmp')
|
2021-04-08 16:29:37 +02:00
|
|
|
self.baseImage = pg.image.load('images/robot.bmp')
|
2021-03-27 19:34:41 +01:00
|
|
|
#self.image.fill(YELLOW)
|
|
|
|
self.image = pg.transform.scale(self.image, (TILESIZE, TILESIZE))
|
2021-04-08 16:29:37 +02:00
|
|
|
self.baseImage = pg.transform.scale(self.image, (TILESIZE, TILESIZE))
|
2021-03-14 13:42:33 +01:00
|
|
|
self.rect = self.image.get_rect()
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
2021-04-08 16:29:37 +02:00
|
|
|
self.direction = direction
|
2021-04-10 22:23:34 +02:00
|
|
|
self.maze = Maze()
|
|
|
|
self.moves = ''
|
2021-03-14 13:42:33 +01:00
|
|
|
|
2021-04-08 16:29:37 +02:00
|
|
|
def move(self, dx=0, dy=0, direction = ''):
|
|
|
|
if direction == self.direction:
|
|
|
|
if self.direction == Direction.Right.name:
|
|
|
|
if dx > 0:
|
2021-04-10 12:44:54 +02:00
|
|
|
if self.check_border(dx):
|
2021-04-10 13:48:55 +02:00
|
|
|
if self.collide_with_mines(dx):
|
2021-04-10 22:23:34 +02:00
|
|
|
#ctypes.windll.user32.MessageBoxW(0, "Mine Ahead!", "Warning", 1)
|
|
|
|
print("Mine Ahead!")
|
|
|
|
self.x += dx
|
2021-04-10 13:48:55 +02:00
|
|
|
else:
|
|
|
|
self.x += dx
|
2021-04-08 16:29:37 +02:00
|
|
|
|
|
|
|
if self.direction == Direction.Up.name:
|
|
|
|
if dy < 0:
|
2021-04-10 12:44:54 +02:00
|
|
|
if self.check_border(0, dy):
|
2021-04-10 13:48:55 +02:00
|
|
|
if self.collide_with_mines(0, dy):
|
2021-04-10 22:23:34 +02:00
|
|
|
#ctypes.windll.user32.MessageBoxW(0, "Mine Ahead!", "Warning", 1)
|
|
|
|
print("Mine Ahead!")
|
|
|
|
self.y += dy
|
2021-04-10 13:48:55 +02:00
|
|
|
else:
|
|
|
|
self.y += dy
|
|
|
|
|
2021-04-08 16:29:37 +02:00
|
|
|
if self.direction == Direction.Down.name:
|
|
|
|
if dy > 0:
|
2021-04-10 12:44:54 +02:00
|
|
|
if self.check_border(0, dy):
|
2021-04-10 13:48:55 +02:00
|
|
|
if self.collide_with_mines(0, dy):
|
2021-04-10 22:23:34 +02:00
|
|
|
#ctypes.windll.user32.MessageBoxW(0, "Mine Ahead!", "Warning", 1)
|
|
|
|
print("Mine Ahead!")
|
|
|
|
self.y += dy
|
2021-04-10 13:48:55 +02:00
|
|
|
else:
|
|
|
|
self.y += dy
|
2021-04-08 16:29:37 +02:00
|
|
|
|
|
|
|
if self.direction == Direction.Left.name:
|
|
|
|
if dx < 0:
|
2021-04-10 12:44:54 +02:00
|
|
|
if self.check_border(dx):
|
2021-04-10 13:48:55 +02:00
|
|
|
if self.collide_with_mines(dx):
|
2021-04-10 22:23:34 +02:00
|
|
|
#ctypes.windll.user32.MessageBoxW(0, "Mine Ahead!", "Warning", 1)
|
|
|
|
print("Mine Ahead!")
|
|
|
|
self.x += dx
|
2021-04-10 13:48:55 +02:00
|
|
|
else:
|
|
|
|
self.x += dx
|
2021-04-08 16:29:37 +02:00
|
|
|
|
|
|
|
elif direction != self.direction:
|
|
|
|
self.direction = direction
|
|
|
|
print(self.direction)
|
|
|
|
"""if self.direction == Direction.Up.name:
|
|
|
|
self.image = pg.transform.rotate(self.baseImage, 90)
|
|
|
|
if self.direction == Direction.Right.name:
|
|
|
|
self.image == pg.transform.rotate(self.baseImage, 360)
|
|
|
|
if self.direction == Direction.Down.name:
|
|
|
|
self.image == pg.transform.rotate(self.baseImage, -90)
|
|
|
|
if self.direction == Direction.Left.name:
|
|
|
|
self.image == pg.transform.rotate(self.baseImage, -180)"""
|
2021-04-10 12:44:54 +02:00
|
|
|
|
|
|
|
def check_border(self, dx=0, dy=0):
|
|
|
|
if (self.x + dx) < 0 or (self.y + dy) < 0 or (self.x + dx) >= MAP_SIZE or (self.y + dy) >= MAP_SIZE :
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2021-04-10 13:48:55 +02:00
|
|
|
def collide_with_mines(self, dx=0, dy=0):
|
|
|
|
for mine in self.game.mines:
|
|
|
|
if mine.x == self.x + dx and mine.y == self.y + dy:
|
|
|
|
return True
|
|
|
|
return False
|
2021-03-14 13:42:33 +01:00
|
|
|
|
2021-04-10 22:23:34 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
right = 1
|
|
|
|
left = -1
|
|
|
|
if self.self.moves[n+1] != 'R':
|
|
|
|
if self.moves[n+1] == 'U':
|
|
|
|
module.insert(n, 'Turn Up')
|
|
|
|
if self.moves[n+1] == 'L':
|
|
|
|
module.insert(n, 'Turn Left')
|
|
|
|
if self.moves[n+1] == 'D':
|
|
|
|
module.insert(n, 'Turn Down')
|
|
|
|
"""
|
|
|
|
|
|
|
|
def parse_maze_moves(self):
|
|
|
|
self.moves = [char for char in self.maze.moves]
|
|
|
|
for n, i in enumerate(self.moves):
|
|
|
|
if i == 'R':
|
|
|
|
self.moves[n] = 'Right'
|
|
|
|
if n != len(self.moves)-1:
|
|
|
|
if i != self.moves[n+1]:
|
|
|
|
if self.moves[n+1] == 'D':
|
|
|
|
self.moves.insert(n+1, 'Turn Down')
|
|
|
|
if self.moves[n+1] == 'U':
|
|
|
|
self.moves.insert(n+1, 'Turn Up')
|
|
|
|
if self.moves[n+1] == 'L':
|
|
|
|
self.moves.insert(n+1, 'Turn Left')
|
|
|
|
else:
|
|
|
|
self.move(dx=-1, direction='Right')
|
|
|
|
if i == 'L':
|
|
|
|
self.moves[n] = 'Left'
|
|
|
|
if n != len(self.moves)-1:
|
|
|
|
if i != self.moves[n+1]:
|
|
|
|
if self.moves[n+1] == 'D':
|
|
|
|
self.moves.insert(n+1, 'Turn Down')
|
|
|
|
if self.moves[n+1] == 'U':
|
|
|
|
self.moves.insert(n+1, 'Turn Up')
|
|
|
|
if self.moves[n+1] == 'R':
|
|
|
|
self.moves.insert(n+1, 'Turn Right')
|
|
|
|
if i == 'D':
|
|
|
|
self.moves[n] = 'Down'
|
|
|
|
if n != len(self.moves)-1:
|
|
|
|
if i != self.moves[n+1]:
|
|
|
|
if self.moves[n+1] == 'R':
|
|
|
|
self.moves.insert(n+1, 'Turn Right')
|
|
|
|
if self.moves[n+1] == 'U':
|
|
|
|
self.moves.insert(n+1, 'Turn Up')
|
|
|
|
if self.moves[n+1] == 'L':
|
|
|
|
self.moves.insert(n+1, 'Turn Left')
|
|
|
|
if i == 'U':
|
|
|
|
self.moves[n] = 'Up'
|
|
|
|
if n != len(self.moves)-1:
|
|
|
|
if i != self.moves[n+1]:
|
|
|
|
if self.moves[n+1] == 'D':
|
|
|
|
self.moves.insert(n+1, 'Turn Down')
|
|
|
|
if self.moves[n+1] == 'R':
|
|
|
|
self.moves.insert(n+1, 'Turn Right')
|
|
|
|
if self.moves[n+1] == 'L':
|
|
|
|
self.moves.insert(n+1, 'Turn Left')
|
|
|
|
print(self.moves)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-03-14 13:42:33 +01:00
|
|
|
def update(self):
|
2021-04-10 23:26:13 +02:00
|
|
|
#sleep(0.25)
|
2021-03-14 13:42:33 +01:00
|
|
|
self.rect.x = self.x * TILESIZE
|
|
|
|
self.rect.y = self.y * TILESIZE
|
|
|
|
|
2021-03-27 19:34:41 +01:00
|
|
|
|
2021-04-08 16:29:37 +02:00
|
|
|
class Direction(enum.Enum):
|
|
|
|
Up = 1;
|
|
|
|
Left = 2;
|
|
|
|
Down = 3;
|
|
|
|
Right = 4;
|
2021-03-27 19:34:41 +01:00
|
|
|
|
2021-04-10 12:44:54 +02:00
|
|
|
|
2021-03-27 19:34:41 +01:00
|
|
|
class Mine(pg.sprite.Sprite):
|
|
|
|
def __init__(self, game, x, y):
|
2021-04-10 13:48:55 +02:00
|
|
|
self.groups = game.all_sprites, game.mines
|
2021-03-27 19:34:41 +01:00
|
|
|
pg.sprite.Sprite.__init__(self, self.groups)
|
|
|
|
self.game = game
|
|
|
|
#self.image = pg.Surface((TILESIZE, TILESIZE))
|
|
|
|
self.image = pg.image.load('images/mine.bmp')
|
|
|
|
#self.image.fill(YELLOW)
|
|
|
|
self.image = pg.transform.scale(self.image, (TILESIZE, TILESIZE))
|
|
|
|
self.rect = self.image.get_rect()
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
self.rect.x = self.x * TILESIZE
|
|
|
|
self.rect.y = self.y * TILESIZE
|
|
|
|
|
|
|
|
|
|
|
|
class Bomb(pg.sprite.Sprite):
|
|
|
|
def __init__(self, game, x, y):
|
2021-04-10 13:48:55 +02:00
|
|
|
self.groups = game.all_sprites, game.mines
|
2021-03-27 19:34:41 +01:00
|
|
|
pg.sprite.Sprite.__init__(self, self.groups)
|
|
|
|
self.game = game
|
|
|
|
#self.image = pg.Surface((TILESIZE, TILESIZE))
|
|
|
|
self.image = pg.image.load('images/bomb.bmp')
|
|
|
|
#self.image.fill(YELLOW)
|
|
|
|
self.image = pg.transform.scale(self.image, (TILESIZE, TILESIZE))
|
|
|
|
self.rect = self.image.get_rect()
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
self.rect.x = self.x * TILESIZE
|
|
|
|
self.rect.y = self.y * TILESIZE
|
|
|
|
|
|
|
|
|
|
|
|
class Grenade(pg.sprite.Sprite):
|
|
|
|
def __init__(self, game, x, y):
|
2021-04-10 13:48:55 +02:00
|
|
|
self.groups = game.all_sprites, game.mines
|
2021-03-27 19:34:41 +01:00
|
|
|
pg.sprite.Sprite.__init__(self, self.groups)
|
|
|
|
self.game = game
|
|
|
|
#self.image = pg.Surface((TILESIZE, TILESIZE))
|
|
|
|
self.image = pg.image.load('images/grenade.bmp')
|
|
|
|
#self.image.fill(YELLOW)
|
|
|
|
self.image = pg.transform.scale(self.image, (TILESIZE, TILESIZE))
|
|
|
|
self.rect = self.image.get_rect()
|
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
self.rect.x = self.x * TILESIZE
|
|
|
|
self.rect.y = self.y * TILESIZE
|
|
|
|
|
|
|
|
|