|
@@ -58,16 +58,10 @@ func _ready():
|
|
|
func _unhandled_input(event):
|
|
|
if event.is_pressed():
|
|
|
if event.is_action(turn_left_action):
|
|
|
- tween.rotate_char(self, rotation_degrees - 90)
|
|
|
- tween.start()
|
|
|
-
|
|
|
- dire_delta = Side.LEFT
|
|
|
+ turn(Side.LEFT)
|
|
|
get_tree().set_input_as_handled()
|
|
|
elif event.is_action(turn_right_action):
|
|
|
- tween.rotate_char(self, rotation_degrees + 90)
|
|
|
- tween.start()
|
|
|
-
|
|
|
- dire_delta = Side.RIGHT
|
|
|
+ turn(Side.RIGHT)
|
|
|
get_tree().set_input_as_handled()
|
|
|
|
|
|
func _on_game_start():
|
|
@@ -80,11 +74,22 @@ func _on_tween_completed(_o, key):
|
|
|
func _on_crash(body):
|
|
|
die()
|
|
|
generate_wall()
|
|
|
+ # TODO : use enum for blocks
|
|
|
grid.set_cell(posix, posiy, 2)
|
|
|
|
|
|
func generate_wall():
|
|
|
+ # TODO : use enum for blocks
|
|
|
grid.set_cell(posix - dirx, posiy - diry, 1)
|
|
|
|
|
|
+func turn(left_or_right:int):
|
|
|
+ var current_angle = dire * 90
|
|
|
+ var aim_angle = current_angle + 90 * left_or_right
|
|
|
+
|
|
|
+ tween.rotate_char(self, current_angle, aim_angle)
|
|
|
+ tween.start()
|
|
|
+
|
|
|
+ dire_delta = left_or_right
|
|
|
+
|
|
|
func move():
|
|
|
if !alive:
|
|
|
return
|