Player.gd 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. extends Area2D
  2. # Nodes
  3. export (NodePath) var gridNode
  4. var grid:TileMap
  5. var tween
  6. var rayFront
  7. var rayLeft
  8. var rayRight
  9. # Misc
  10. var cell_size
  11. var cell_half_size
  12. var alive = true
  13. # Enum
  14. const DIR_UP = 0
  15. const DIR_RIGHT = 1
  16. const DIR_DOWN = 2
  17. const DIR_LEFT = 3
  18. # Movement
  19. var posix
  20. var posiy
  21. var dirx = 0
  22. var diry = 0
  23. export var dire = DIR_UP
  24. var dire_delta = 0
  25. var is_moving = false
  26. var target_pos
  27. # Controls
  28. export var turn_left_action:String
  29. export var turn_right_action:String
  30. func _ready():
  31. grid = get_node(gridNode)
  32. cell_size = int (grid.get_cell_size().x)
  33. cell_half_size = cell_size / 2
  34. posix = int (position.x / 64)
  35. posiy = int (position.y / 64)
  36. turn(dire)
  37. tween = $Tween
  38. tween.connect_into(self)
  39. rayFront = $RayFront
  40. rayLeft = $RayLeft
  41. rayRight = $RayRight
  42. func _physics_process(delta):
  43. if !alive:
  44. return
  45. if Input.is_action_just_pressed(turn_left_action):
  46. dire_delta = -1
  47. elif Input.is_action_just_pressed(turn_right_action):
  48. dire_delta = 1
  49. if is_moving:
  50. return
  51. grid.set_cell(posix - dirx, posiy - diry, 1)
  52. if dire_delta == -1 and !rayLeft.is_colliding():
  53. tween.rotate_char(self, rotation_degrees - 90)
  54. dire += dire_delta
  55. if dire < 0:
  56. dire = 3
  57. elif dire_delta == 1 and !rayRight.is_colliding():
  58. tween.rotate_char(self, rotation_degrees + 90)
  59. dire += dire_delta
  60. if dire > 3:
  61. dire = 0
  62. turn(dire)
  63. dire_delta = 0
  64. posix += dirx
  65. posiy += diry
  66. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  67. tween.move_char(self, target_pos)
  68. is_moving = true
  69. tween.start()
  70. func _on_tween_completed(o, k):
  71. is_moving = false
  72. func _on_crash(b):
  73. alive = false
  74. grid.set_cell(posix - dirx, posiy - diry, 1)
  75. grid.set_cell(posix, posiy, 2)
  76. func turn(dir:int):
  77. dirx = 0
  78. diry = 0
  79. if dir == DIR_UP:
  80. diry -= 1
  81. elif dir == DIR_RIGHT:
  82. dirx += 1
  83. elif dir == DIR_DOWN:
  84. diry += 1
  85. else:
  86. dirx -= 1