mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-04 04:40:48 +02:00
Complete Snake_move function
This commit is contained in:
parent
928aaff2cb
commit
aa1638cec4
@ -30,14 +30,24 @@ class List:
|
|||||||
return i
|
return i
|
||||||
|
|
||||||
def Snake_move(M, L, dir):
|
def Snake_move(M, L, dir):
|
||||||
L_save = L
|
Fruit = False
|
||||||
|
List_save = L
|
||||||
|
Save_Value = L.val
|
||||||
L.val = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1])
|
L.val = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1])
|
||||||
|
|
||||||
|
if M[L.val[0]][L.val[1]] == 2:
|
||||||
|
Fruit = True
|
||||||
|
M[L.val[0]][L.val[1]] == 0
|
||||||
|
|
||||||
L = L.next
|
L = L.next
|
||||||
L_save = L_save.next
|
|
||||||
|
|
||||||
while L is not None:
|
while L is not None:
|
||||||
|
Save_bis_Value = L.val
|
||||||
|
L.val = Save_Value
|
||||||
|
Save_Value = Save_bis_Value
|
||||||
|
L = L.next
|
||||||
|
|
||||||
|
if Fruit:
|
||||||
|
List_save = List.List_add(List_save, Save_Value)
|
||||||
|
|
||||||
L = L.next
|
return List_save
|
Loading…
x
Reference in New Issue
Block a user