Minor changes
This commit is contained in:
parent
0dfa11290a
commit
48d8b7bfd5
3 changed files with 3489 additions and 3489 deletions
|
@ -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):
|
def isWall(h,game):
|
||||||
if h[0]<0 or h[1]<0 or h[0] >= game.grid_width or h[1] >= game.grid_height:
|
if h[0]<0 or h[1]<0 or h[0] >= game.grid_width or h[1] >= game.grid_height:
|
||||||
|
|
6974
qtable.txt
6974
qtable.txt
File diff suppressed because it is too large
Load diff
2
snake.py
2
snake.py
|
@ -7,7 +7,7 @@ class Snake:
|
||||||
Programmable Game of Snake written in PyGame
|
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
|
# Init attributes
|
||||||
self.grid_width=grid_width
|
self.grid_width=grid_width
|
||||||
self.grid_height=grid_height
|
self.grid_height=grid_height
|
||||||
|
|
Loading…
Add table
Reference in a new issue