123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- extends Area2D
- # Nodes
- export (NodePath) var gridNode
- var grid:TileMap
- var tween
- var rayFront
- var rayLeft
- var rayRight
- # Misc
- var cell_size
- var cell_half_size
- var alive = true
- # Enum
- const DIR_UP = 0
- const DIR_RIGHT = 1
- const DIR_DOWN = 2
- const DIR_LEFT = 3
- # Movement
- var posix
- var posiy
- var dirx = 0
- var diry = 0
- export var dire = DIR_UP
- var dire_delta = 0
- var is_moving = false
- var target_pos
- # Controls
- export var turn_left_action:String
- export var turn_right_action:String
- func _ready():
- grid = get_node(gridNode)
- 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 = $Tween
- tween.connect_into(self)
- rayFront = $RayFront
- rayLeft = $RayLeft
- rayRight = $RayRight
- func _physics_process(delta):
-
- if !alive:
- return
- if Input.is_action_just_pressed(turn_left_action):
- dire_delta = -1
- elif Input.is_action_just_pressed(turn_right_action):
- dire_delta = 1
-
- if is_moving:
- return
- grid.set_cell(posix - dirx, posiy - diry, 1)
- 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)
- is_moving = true
- tween.start()
- func _on_tween_completed(o, k):
- is_moving = false
- func _on_crash(b):
- alive = false
- grid.set_cell(posix - dirx, posiy - diry, 1)
- grid.set_cell(posix, posiy, 2)
- func turn(dir:int):
- dirx = 0
- diry = 0
- if dir == DIR_UP:
- diry -= 1
- elif dir == DIR_RIGHT:
- dirx += 1
- elif dir == DIR_DOWN:
- diry += 1
- else:
- dirx -= 1
|