Minor changes

This commit is contained in:
Loic Guegan 2022-11-01 23:23:40 +01:00
parent 0dfa11290a
commit 48d8b7bfd5
3 changed files with 3489 additions and 3489 deletions

View file

@ -32,7 +32,7 @@ qtable=np.zeros((2**13, 4))
game=Snake(length=4,fps=200,startat=(10,10))
game=Snake(length=50,fps=200,startat=(10,10))
def isWall(h,game):
if h[0]<0 or h[1]<0 or h[0] >= game.grid_width or h[1] >= game.grid_height:

6974
qtable.txt

File diff suppressed because it is too large Load diff

View file

@ -7,7 +7,7 @@ class Snake:
Programmable Game of Snake written in PyGame
"""
def __init__(self, startat=(0,0), margin=80,length=4,grid_width=30,grid_height=30, grid_pts=30,fps=80):
def __init__(self, startat=(0,0), margin=80,length=4,grid_width=30,grid_height=30, grid_pts=30,fps=180):
# Init attributes
self.grid_width=grid_width
self.grid_height=grid_height