laby2.py

Created by julien-bernon

Created on June 22, 2022

671 Bytes


from kandinsky import *
from random import randrange,random
import time
from ion import *

largeur, hauteur = 320, 222
width, height = 16, 11
taille_x = largeur // width
taille_y = hauteur // height

def dessine_perso(x,y):
    fill_rect(x, y, int(0.6 * taille_x), int(0.6 * taille_y), (255,255,0))

def getkeys():
    return [i for i in range(53) if keydown(i)] 
    
def move_perso(x,y):
    directions=getkeys()
    new_x=x-(0 in directions)+(3 in directions)
    new_y=y-(1 in directions)+(2 in directions)
    return new_x,new_y
    
def jeu(position):
    x,y=position
    while True:
        dessine_perso(x,y)
        x,y=move_perso(x,y)

jeu((0,0))

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.