Player.gd 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. extends Area2D
  2. # Nodes
  3. var grid:TileMap
  4. onready var tween = $Tween
  5. onready var rayFront = $RayFront
  6. onready var rayLeft = $RayLeft
  7. onready var rayRight = $RayRight
  8. # Misc
  9. var cell_size
  10. var cell_half_size
  11. var alive = false
  12. # Enum
  13. enum Direction {
  14. UP = 0
  15. RIGHT = 1
  16. DOWN = 2
  17. LEFT = 3
  18. }
  19. # Movement
  20. var posix
  21. var posiy
  22. var dirx = 0
  23. var diry = 0
  24. export var dire = Direction.UP
  25. var dire_delta = 0
  26. var target_pos
  27. # Controls
  28. export var turn_left_action:String
  29. export var turn_right_action:String
  30. func _ready():
  31. add_to_group("players")
  32. spring()
  33. assert(grid)
  34. assert(turn_left_action)
  35. assert(turn_right_action)
  36. cell_size = int (grid.get_cell_size().x)
  37. cell_half_size = cell_size / 2
  38. posix = int (position.x / 64)
  39. posiy = int (position.y / 64)
  40. turn(dire)
  41. tween.connect_into(self)
  42. func _unhandled_input(event):
  43. if event.is_pressed():
  44. if event.is_action(turn_left_action):
  45. dire_delta = -1
  46. get_tree().set_input_as_handled()
  47. elif event.is_action(turn_right_action):
  48. dire_delta = 1
  49. get_tree().set_input_as_handled()
  50. func _on_game_start():
  51. move()
  52. func _on_tween_completed():
  53. move()
  54. func _on_crash(body):
  55. die()
  56. generate_wall()
  57. grid.set_cell(posix, posiy, 2)
  58. func generate_wall():
  59. grid.set_cell(posix - dirx, posiy - diry, 1)
  60. func move():
  61. if !alive:
  62. return
  63. generate_wall()
  64. if dire_delta == -1 and !rayLeft.is_colliding():
  65. tween.rotate_char(self, rotation_degrees - 90)
  66. dire += dire_delta
  67. if dire < 0:
  68. dire = 3
  69. elif dire_delta == 1 and !rayRight.is_colliding():
  70. tween.rotate_char(self, rotation_degrees + 90)
  71. dire += dire_delta
  72. if dire > 3:
  73. dire = 0
  74. turn(dire)
  75. dire_delta = 0
  76. posix += dirx
  77. posiy += diry
  78. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  79. tween.move_char(self, target_pos)
  80. tween.start()
  81. func turn(dir:int):
  82. dirx = 0
  83. diry = 0
  84. if dir == Direction.UP:
  85. diry -= 1
  86. elif dir == Direction.RIGHT:
  87. dirx += 1
  88. elif dir == Direction.DOWN:
  89. diry += 1
  90. else:
  91. dirx -= 1
  92. func die():
  93. alive = false
  94. remove_from_group("living")
  95. func spring():
  96. alive = true
  97. add_to_group("living")
  98. func is_alive():
  99. return alive