Player.gd 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. extends Area2D
  2. # Nodes
  3. var grid:TileMap
  4. var tween
  5. var rayFront
  6. var rayLeft
  7. var rayRight
  8. # Misc
  9. var cell_size
  10. var cell_half_size
  11. var alive = true
  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 is_moving = false
  27. var target_pos
  28. # Controls
  29. export var turn_left_action:String
  30. export var turn_right_action:String
  31. func _ready():
  32. add_to_group("players")
  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 = $Tween
  42. tween.connect_into(self)
  43. rayFront = $RayFront
  44. rayLeft = $RayLeft
  45. rayRight = $RayRight
  46. func _physics_process(delta):
  47. if !alive:
  48. return
  49. if Input.is_action_just_pressed(turn_left_action):
  50. dire_delta = -1
  51. elif Input.is_action_just_pressed(turn_right_action):
  52. dire_delta = 1
  53. if is_moving:
  54. return
  55. grid.set_cell(posix - dirx, posiy - diry, 1)
  56. if dire_delta == -1 and !rayLeft.is_colliding():
  57. tween.rotate_char(self, rotation_degrees - 90)
  58. dire += dire_delta
  59. if dire < 0:
  60. dire = 3
  61. elif dire_delta == 1 and !rayRight.is_colliding():
  62. tween.rotate_char(self, rotation_degrees + 90)
  63. dire += dire_delta
  64. if dire > 3:
  65. dire = 0
  66. turn(dire)
  67. dire_delta = 0
  68. posix += dirx
  69. posiy += diry
  70. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  71. tween.move_char(self, target_pos)
  72. is_moving = true
  73. tween.start()
  74. func _on_tween_completed(o, k):
  75. is_moving = false
  76. func _on_crash(b):
  77. alive = false
  78. grid.set_cell(posix - dirx, posiy - diry, 1)
  79. grid.set_cell(posix, posiy, 2)
  80. func turn(dir:int):
  81. dirx = 0
  82. diry = 0
  83. if dir == Direction.UP:
  84. diry -= 1
  85. elif dir == Direction.RIGHT:
  86. dirx += 1
  87. elif dir == Direction.DOWN:
  88. diry += 1
  89. else:
  90. dirx -= 1
  91. func is_alive():
  92. return alive