Player.gd 1.9 KB

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