# -*- coding: UTF-8 -*- ### Tangled Mind ### Author: Arthur 'Grizzly' Grisel-Davy import pygame from models import Perso, Carte pygame.init() screen_width = 1200 screen_height = 800 screen = pygame.display.set_mode((screen_width, screen_height)) done = False BACKGROUND=(200,200,200) WHITE=(255,255,255) BLUE=(0,0,255) RED=(255,0,0) perso = Perso('Alice',int(screen_width/2),int(screen_height/2),pygame.K_z,pygame.K_s,pygame.K_q,pygame.K_d,323,'perso1_right.png','canon.png','projectile1_right.png') carte = Carte('map_1.png') clock = pygame.time.Clock() while not done: for event in pygame.event.get(): if event.type == pygame.QUIT: done = True keystate = pygame.key.get_pressed() + pygame.mouse.get_pressed() perso.check_keys(keystate,screen_width,screen_height) screen.fill(BACKGROUND) carte.draw(screen,(0,0),perso) perso.draw(screen) pygame.display.flip() clock.tick(60)