mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-03 12:23:22 +02:00
21 lines
416 B
Python
21 lines
416 B
Python
import numpy as np
|
|
import random
|
|
|
|
# 0 = AIR
|
|
# 1 = SNAKE
|
|
# 2 = WALL
|
|
# 3 = APPLE
|
|
|
|
def init_level(heigh, width):
|
|
return np.zeros((heigh, width))
|
|
|
|
def spawn_apple(M, heigh, width):
|
|
random.seed()
|
|
rand_heigh = random.randrange(0, heigh)
|
|
rand_width = random.randrange(0, width)
|
|
|
|
if M[rand_heigh][rand_width] == 0:
|
|
M[rand_heigh][rand_width] = 3
|
|
else:
|
|
spawn_apple(M, heigh, width)
|
|
|