123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- extends Area2D
- # Nodes
- var grid:TileMap
- onready var tween = $Tween
- onready var rayFront = $RayFront
- onready var rayLeft = $RayLeft
- onready var rayRight = $RayRight
- # Misc
- var cell_size
- var cell_half_size
- var alive = false
- # Enum
- enum Direction {
- UP = 0
- RIGHT = 1
- DOWN = 2
- LEFT = 3
- }
- # Movement
- var posix
- var posiy
- var dirx = 0
- var diry = 0
- export var dire = Direction.UP
- var dire_delta = 0
- var target_pos
- # Controls
- export var turn_left_action:String
- export var turn_right_action:String
- func _ready():
- add_to_group("players")
- spring()
- assert(grid)
- assert(turn_left_action)
- assert(turn_right_action)
- cell_size = int (grid.get_cell_size().x)
- cell_half_size = cell_size / 2
- posix = int (position.x / 64)
- posiy = int (position.y / 64)
- turn(dire)
- tween.connect_into(self)
- func _unhandled_input(event):
- if event.is_pressed():
- if event.is_action(turn_left_action):
- dire_delta = -1
- get_tree().set_input_as_handled()
- elif event.is_action(turn_right_action):
- dire_delta = 1
- get_tree().set_input_as_handled()
- func _on_game_start():
- move()
- func _on_tween_completed():
- move()
- func _on_crash(body):
- die()
- generate_wall()
- grid.set_cell(posix, posiy, 2)
- func generate_wall():
- grid.set_cell(posix - dirx, posiy - diry, 1)
- func move():
- if !alive:
- return
- generate_wall()
- if dire_delta == -1 and !rayLeft.is_colliding():
- tween.rotate_char(self, rotation_degrees - 90)
- dire += dire_delta
- if dire < 0:
- dire = 3
- elif dire_delta == 1 and !rayRight.is_colliding():
- tween.rotate_char(self, rotation_degrees + 90)
- dire += dire_delta
- if dire > 3:
- dire = 0
- turn(dire)
- dire_delta = 0
- posix += dirx
- posiy += diry
- target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
- tween.move_char(self, target_pos)
- tween.start()
- func turn(dir:int):
- dirx = 0
- diry = 0
- if dir == Direction.UP:
- diry -= 1
- elif dir == Direction.RIGHT:
- dirx += 1
- elif dir == Direction.DOWN:
- diry += 1
- else:
- dirx -= 1
- func die():
- alive = false
- remove_from_group("living")
- func spring():
- alive = true
- add_to_group("living")
- func is_alive():
- return alive
|