|
@@ -1,21 +1,8 @@
|
|
|
extends Area2D
|
|
|
+# Handle player logic and events
|
|
|
|
|
|
-# Nodes
|
|
|
-var grid:TileMap
|
|
|
-onready var tween = $Tween
|
|
|
-
|
|
|
-# Signals
|
|
|
signal crash
|
|
|
|
|
|
-# Misc
|
|
|
-const cell_size = 64
|
|
|
-const cell_half_size = 32
|
|
|
-
|
|
|
-# State
|
|
|
-var running = false
|
|
|
-var landed = false
|
|
|
-
|
|
|
-# Enum
|
|
|
enum Direction {
|
|
|
UP = 0
|
|
|
RIGHT = 1
|
|
@@ -28,9 +15,18 @@ enum Side {
|
|
|
RIGHT = 1
|
|
|
}
|
|
|
|
|
|
+const cell_size = 64
|
|
|
+const cell_half_size = 32
|
|
|
+const LEVEL_SPAWN_DURATION = 2
|
|
|
+
|
|
|
+# State
|
|
|
+var running = false
|
|
|
+var landed = false
|
|
|
+
|
|
|
# Movement
|
|
|
var posix
|
|
|
var posiy
|
|
|
+
|
|
|
var dirx = 0
|
|
|
var diry = 0
|
|
|
|
|
@@ -39,11 +35,14 @@ var dire_delta = 0
|
|
|
|
|
|
var target_pos
|
|
|
|
|
|
-const LEVEL_SPAWN_DURATION = 2
|
|
|
-
|
|
|
# Controls
|
|
|
-export var turn_left_action:String
|
|
|
-export var turn_right_action:String
|
|
|
+var turn_left_action:String
|
|
|
+var turn_right_action:String
|
|
|
+
|
|
|
+var grid:TileMap
|
|
|
+
|
|
|
+onready var tween = $Tween
|
|
|
+
|
|
|
|
|
|
func _ready():
|
|
|
assert(turn_left_action)
|
|
@@ -51,6 +50,7 @@ func _ready():
|
|
|
|
|
|
tween.connect_into(self)
|
|
|
|
|
|
+
|
|
|
func _unhandled_input(event):
|
|
|
if event.is_pressed():
|
|
|
if event.is_action(turn_left_action):
|
|
@@ -60,37 +60,26 @@ func _unhandled_input(event):
|
|
|
prepare_turn(Side.RIGHT)
|
|
|
get_tree().set_input_as_handled()
|
|
|
|
|
|
-func spawn(newGrid, newPosition, newOrientation):
|
|
|
- # Update arena
|
|
|
- grid = newGrid
|
|
|
-
|
|
|
- # Adjust spawn situation
|
|
|
- dire_delta = 0
|
|
|
- posix = int (newPosition.x / cell_size)
|
|
|
- posiy = int (newPosition.y / cell_size)
|
|
|
- dire = int((newOrientation + 45) / 90)
|
|
|
- apply_turn()
|
|
|
-
|
|
|
- # Animate spawning
|
|
|
- tween.rotate_char(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
|
|
|
- tween.move_char(self, newPosition, LEVEL_SPAWN_DURATION)
|
|
|
- tween.start()
|
|
|
|
|
|
func _on_round_start():
|
|
|
assert(grid)
|
|
|
run()
|
|
|
|
|
|
+
|
|
|
func _on_round_won():
|
|
|
stop()
|
|
|
|
|
|
+
|
|
|
func _on_arena_removed():
|
|
|
grid = null
|
|
|
landed = false
|
|
|
|
|
|
+
|
|
|
func _on_tween_completed(_o, key):
|
|
|
if (key == ":position"):
|
|
|
move()
|
|
|
|
|
|
+
|
|
|
func _on_crash(body):
|
|
|
if landed and running:
|
|
|
stop()
|
|
@@ -98,10 +87,29 @@ func _on_crash(body):
|
|
|
grid.set_cell(posix, posiy, 2)
|
|
|
emit_signal("crash")
|
|
|
|
|
|
+
|
|
|
+func spawn(newGrid, newPosition, newOrientation):
|
|
|
+ # Update arena
|
|
|
+ grid = newGrid
|
|
|
+
|
|
|
+ # Adjust spawn situation
|
|
|
+ dire_delta = 0
|
|
|
+ posix = int (newPosition.x / cell_size)
|
|
|
+ posiy = int (newPosition.y / cell_size)
|
|
|
+ dire = int((newOrientation + 45) / 90)
|
|
|
+ apply_turn()
|
|
|
+
|
|
|
+ # Animate spawning
|
|
|
+ tween.rotate_char(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
|
|
|
+ tween.move_char(self, newPosition, LEVEL_SPAWN_DURATION)
|
|
|
+ tween.start()
|
|
|
+
|
|
|
+
|
|
|
func generate_wall():
|
|
|
# TODO : use enum for blocks
|
|
|
grid.set_cell(posix - dirx, posiy - diry, 1)
|
|
|
|
|
|
+
|
|
|
func prepare_turn(left_or_right:int):
|
|
|
if !running:
|
|
|
return
|
|
@@ -121,9 +129,11 @@ func prepare_turn(left_or_right:int):
|
|
|
tween.rotate_char(self, current_angle, aim_angle)
|
|
|
tween.start()
|
|
|
|
|
|
+
|
|
|
func can_turn():
|
|
|
return dire_delta != 0 and !has_block_on(dire_delta)
|
|
|
|
|
|
+
|
|
|
func apply_turn():
|
|
|
dire += dire_delta
|
|
|
dire_delta = 0
|
|
@@ -146,6 +156,7 @@ func apply_turn():
|
|
|
else:
|
|
|
push_error("dire out of range")
|
|
|
|
|
|
+
|
|
|
func move():
|
|
|
if !running:
|
|
|
return
|
|
@@ -157,6 +168,7 @@ func move():
|
|
|
|
|
|
go_forward()
|
|
|
|
|
|
+
|
|
|
func go_forward():
|
|
|
posix += dirx
|
|
|
posiy += diry
|
|
@@ -165,6 +177,7 @@ func go_forward():
|
|
|
tween.move_char(self, target_pos)
|
|
|
tween.start()
|
|
|
|
|
|
+
|
|
|
func has_block_on(left_or_right:int):
|
|
|
var bposx:int = posix - diry * left_or_right
|
|
|
var bposy:int = posiy + dirx * left_or_right
|
|
@@ -172,17 +185,20 @@ func has_block_on(left_or_right:int):
|
|
|
# TODO : use enum for blocks
|
|
|
return grid.get_cell(bposx, bposy) == 1
|
|
|
|
|
|
+
|
|
|
func stop():
|
|
|
if running:
|
|
|
remove_from_group("running")
|
|
|
generate_wall()
|
|
|
running = false
|
|
|
|
|
|
+
|
|
|
func run():
|
|
|
landed = true # TODO : land at game signal `land`
|
|
|
running = true
|
|
|
add_to_group("running")
|
|
|
move()
|
|
|
|
|
|
+
|
|
|
func is_running():
|
|
|
return running
|