2020-03-28 03:43:12 +01:00
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
|
|
### Tangled Mind
|
|
|
|
### Author: Arthur 'Grizzly' Grisel-Davy
|
|
|
|
|
|
|
|
import pygame
|
2020-03-28 20:56:52 +01:00
|
|
|
|
2020-04-15 01:07:57 +02:00
|
|
|
from models import Game, Perso, Carte
|
2020-04-11 06:17:49 +02:00
|
|
|
|
2020-03-28 03:43:12 +01:00
|
|
|
pygame.init()
|
|
|
|
|
|
|
|
|
2020-03-28 20:56:52 +01:00
|
|
|
screen_width = 1200
|
2020-03-28 03:43:12 +01:00
|
|
|
screen_height = 800
|
2020-04-15 01:07:57 +02:00
|
|
|
center_screen = (int(screen_width/2),int(screen_height/2))
|
2020-03-28 03:43:12 +01:00
|
|
|
screen = pygame.display.set_mode((screen_width, screen_height))
|
|
|
|
done = False
|
|
|
|
|
|
|
|
|
2020-04-04 06:11:34 +02:00
|
|
|
BACKGROUND=(200,200,200)
|
2020-03-28 03:43:12 +01:00
|
|
|
WHITE=(255,255,255)
|
|
|
|
BLUE=(0,0,255)
|
2020-03-28 20:56:52 +01:00
|
|
|
RED=(255,0,0)
|
2020-03-28 03:43:12 +01:00
|
|
|
|
2020-04-14 02:43:09 +02:00
|
|
|
carte = Carte('map_1.png')
|
2020-04-21 06:51:51 +02:00
|
|
|
perso = Perso('Alice',660,1570,center_screen,pygame.K_z,pygame.K_s,pygame.K_q,pygame.K_d,323,'perso.png','canon.png','projectile1_right.png')
|
2020-04-15 01:07:57 +02:00
|
|
|
game = Game(carte,perso)
|
2020-03-28 03:43:12 +01:00
|
|
|
|
2020-04-11 06:17:49 +02:00
|
|
|
clock = pygame.time.Clock()
|
2020-03-28 03:43:12 +01:00
|
|
|
|
|
|
|
while not done:
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
done = True
|
|
|
|
|
2020-04-11 06:17:49 +02:00
|
|
|
|
2020-04-14 02:43:09 +02:00
|
|
|
keystate = pygame.key.get_pressed() + pygame.mouse.get_pressed()
|
|
|
|
|
2020-04-15 01:07:57 +02:00
|
|
|
perso.check_keys(keystate,screen_width,screen_height,carte)
|
2020-03-28 20:56:52 +01:00
|
|
|
|
2020-03-28 03:43:12 +01:00
|
|
|
|
|
|
|
screen.fill(BACKGROUND)
|
2020-04-15 01:07:57 +02:00
|
|
|
game.draw(screen)
|
2020-04-11 06:17:49 +02:00
|
|
|
pygame.display.flip()
|
|
|
|
|
|
|
|
|
2020-04-12 06:08:24 +02:00
|
|
|
clock.tick(60)
|
2020-04-11 06:17:49 +02:00
|
|
|
|