2022-04-07 20:06:09 +02:00
|
|
|
from calendar import c
|
2022-04-04 11:40:18 +02:00
|
|
|
import pygame as pg
|
|
|
|
import sys
|
|
|
|
from os import path
|
2022-04-03 15:47:41 +02:00
|
|
|
from map import *
|
2022-04-04 11:40:18 +02:00
|
|
|
# from agent import trashmaster
|
|
|
|
# from house import House
|
2022-04-03 15:47:41 +02:00
|
|
|
from sprites import *
|
2022-04-04 11:40:18 +02:00
|
|
|
from settings import *
|
2022-04-08 01:34:11 +02:00
|
|
|
from map_new import map_new
|
|
|
|
from map_new import map_utils
|
2022-04-07 20:06:09 +02:00
|
|
|
import math
|
2022-03-10 15:53:41 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
class Game():
|
2022-03-10 16:16:59 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
2022-04-04 11:40:18 +02:00
|
|
|
pg.init()
|
|
|
|
self.screen = pg.display.set_mode((WIDTH, HEIGHT))
|
|
|
|
pg.display.set_caption("Trashmaster")
|
|
|
|
self.clock = pg.time.Clock()
|
|
|
|
self.load_data()
|
|
|
|
|
|
|
|
def load_data(self):
|
|
|
|
game_folder = path.dirname(__file__)
|
|
|
|
img_folder = path.join(game_folder, 'resources/textures')
|
|
|
|
map_folder = path.join(img_folder, 'map')
|
|
|
|
self.map = TiledMap(path.join(map_folder, 'roads.tmx'))
|
2022-04-03 15:47:41 +02:00
|
|
|
self.map_img = self.map.make_map()
|
|
|
|
self.map_rect = self.map_img.get_rect()
|
2022-04-04 11:40:18 +02:00
|
|
|
|
|
|
|
self.player_img = pg.image.load(path.join(img_folder,PLAYER_IMG)).convert_alpha()
|
|
|
|
self.player_img = pg.transform.scale(self.player_img, (PLAYER_WIDTH,PLAYER_HEIGHT) )
|
|
|
|
self.wall_img = pg.image.load(path.join(img_folder, WALL_IMG)).convert_alpha()
|
|
|
|
self.wall_img = pg.transform.scale(self.wall_img, (TILESIZE, TILESIZE))
|
|
|
|
|
2022-04-08 01:34:11 +02:00
|
|
|
# self.new_map = map_new.getMap()
|
|
|
|
|
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
def new(self):
|
|
|
|
# initialize all variables and do all the setup for a new game
|
|
|
|
|
2022-04-08 01:34:11 +02:00
|
|
|
self.roadTiles, self.wallTiles = map_new.getTiles()
|
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
self.all_sprites = pg.sprite.Group()
|
|
|
|
self.walls = pg.sprite.Group()
|
2022-04-03 15:47:41 +02:00
|
|
|
|
|
|
|
for tile_object in self.map.tmxdata.objects:
|
|
|
|
if tile_object.name == 'player':
|
|
|
|
self.player = Player(self, tile_object.x, tile_object.y)
|
|
|
|
if tile_object.name == 'wall':
|
|
|
|
Obstacle(self, tile_object.x, tile_object.y, tile_object.width, tile_object.height)
|
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
self.camera = Camera(self.map.width, self.map.height)
|
|
|
|
self.draw_debug = False
|
|
|
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# game loop - set self.playing = False to end the game
|
|
|
|
self.playing = True
|
|
|
|
while self.playing:
|
|
|
|
self.dt = self.clock.tick(FPS) / 1000.0
|
|
|
|
self.events()
|
|
|
|
self.update()
|
|
|
|
self.draw()
|
|
|
|
|
|
|
|
def quit(self):
|
|
|
|
pg.quit()
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
# update portion of the game loop
|
|
|
|
self.all_sprites.update()
|
|
|
|
self.camera.update(self.player)
|
|
|
|
# pygame.display.update()
|
|
|
|
|
|
|
|
def draw_grid(self):
|
|
|
|
for x in range(0, WIDTH, TILESIZE):
|
|
|
|
pg.draw.line(self.screen, LIGHTGREY, (x, 0), (x, HEIGHT))
|
|
|
|
for y in range(0, HEIGHT, TILESIZE):
|
|
|
|
pg.draw.line(self.screen, LIGHTGREY, (0, y), (WIDTH, y))
|
2022-04-03 15:47:41 +02:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
def draw(self):
|
|
|
|
pg.display.set_caption("{:.2f}".format(self.clock.get_fps()))
|
2022-04-08 01:34:11 +02:00
|
|
|
# self.screen.blit(self.new_surface, self.camera.apply_rect(self.map_rect))
|
|
|
|
map_new.renderTiles(self.roadTiles, self.screen, self.camera)
|
|
|
|
map_new.renderTiles(self.wallTiles, self.screen, self.camera, self.draw_debug)
|
2022-04-03 15:47:41 +02:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
for sprite in self.all_sprites:
|
|
|
|
self.screen.blit(sprite.image, self.camera.apply(sprite))
|
|
|
|
if self.draw_debug:
|
|
|
|
pg.draw.rect(self.screen, CYAN, self.camera.apply_rect(sprite.hit_rect), 1)
|
2022-04-08 01:34:11 +02:00
|
|
|
# if self.draw_debug:
|
|
|
|
# for wall in self.walls:
|
|
|
|
# pg.draw.rect(self.screen, CYAN, self.camera.apply_rect(wall.rect), 1)
|
2022-03-10 16:16:59 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
pg.display.flip()
|
|
|
|
|
|
|
|
def events(self):
|
|
|
|
for event in pg.event.get():
|
|
|
|
if event.type == pg.QUIT:
|
|
|
|
self.quit()
|
|
|
|
if event.type == pg.KEYDOWN:
|
|
|
|
if event.key == pg.K_ESCAPE:
|
|
|
|
self.quit()
|
|
|
|
if event.key == pg.K_h:
|
|
|
|
self.draw_debug = not self.draw_debug
|
2022-04-07 20:06:09 +02:00
|
|
|
if event.type == pygame.MOUSEBUTTONUP:
|
|
|
|
pos = pygame.mouse.get_pos()
|
|
|
|
clicked_coords = [math.floor(pos[0] / TILESIZE), math.floor(pos[1] / TILESIZE)]
|
|
|
|
print(clicked_coords)
|
2022-04-04 11:40:18 +02:00
|
|
|
|
|
|
|
def show_start_screen(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def show_go_screen(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
# def main():
|
|
|
|
# game = WalleGame()
|
|
|
|
# game.update_window()
|
2022-03-10 16:16:59 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# smieciara_object = trashmaster(16,16,"./resources/textures/garbagetruck/trashmaster_blu.png")
|
|
|
|
# game.draw_object(smieciara_object, (100, 100))
|
2022-03-24 21:20:07 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# #house_object = House(20, 20)
|
|
|
|
# # Test draw house object
|
|
|
|
# #game.draw_object(house_object, (20,20))
|
2022-03-09 22:39:34 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# game.update_window()
|
2022-03-09 21:27:57 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# running = True
|
2022-03-10 16:16:59 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# while running:
|
|
|
|
# for event in pygame.event.get():
|
|
|
|
# if event.type == pygame.QUIT:
|
|
|
|
# running = False
|
|
|
|
# if event.type == pygame.KEYDOWN:
|
|
|
|
# game.reloadMap()
|
|
|
|
# game.draw_object(smieciara_object, smieciara_object.movement(event.key, 16))
|
2022-03-24 21:20:07 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# game.update_window()
|
|
|
|
|
|
|
|
# pygame.quit()
|
|
|
|
# if __name__ == '__main__':
|
|
|
|
# main()
|
2022-03-24 21:20:07 +01:00
|
|
|
|
2022-03-09 21:27:57 +01:00
|
|
|
|
2022-04-04 11:40:18 +02:00
|
|
|
# create the game object
|
|
|
|
g = Game()
|
|
|
|
g.show_start_screen()
|
|
|
|
while True:
|
|
|
|
g.new()
|
|
|
|
g.run()
|
|
|
|
g.show_go_screen()
|
2022-03-10 16:16:59 +01:00
|
|
|
|