Player.gd 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 = 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 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. spring()
  34. assert(grid)
  35. assert(turn_left_action)
  36. assert(turn_right_action)
  37. cell_size = int (grid.get_cell_size().x)
  38. cell_half_size = cell_size / 2
  39. posix = int (position.x / 64)
  40. posiy = int (position.y / 64)
  41. turn(dire)
  42. tween = $Tween
  43. tween.connect_into(self)
  44. rayFront = $RayFront
  45. rayLeft = $RayLeft
  46. rayRight = $RayRight
  47. func _physics_process(delta):
  48. if !alive:
  49. return
  50. if Input.is_action_just_pressed(turn_left_action):
  51. dire_delta = -1
  52. elif Input.is_action_just_pressed(turn_right_action):
  53. dire_delta = 1
  54. if is_moving:
  55. return
  56. grid.set_cell(posix - dirx, posiy - diry, 1)
  57. if dire_delta == -1 and !rayLeft.is_colliding():
  58. tween.rotate_char(self, rotation_degrees - 90)
  59. dire += dire_delta
  60. if dire < 0:
  61. dire = 3
  62. elif dire_delta == 1 and !rayRight.is_colliding():
  63. tween.rotate_char(self, rotation_degrees + 90)
  64. dire += dire_delta
  65. if dire > 3:
  66. dire = 0
  67. turn(dire)
  68. dire_delta = 0
  69. posix += dirx
  70. posiy += diry
  71. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  72. tween.move_char(self, target_pos)
  73. is_moving = true
  74. tween.start()
  75. func _on_tween_completed(o, k):
  76. is_moving = false
  77. func _on_crash(b):
  78. die()
  79. grid.set_cell(posix - dirx, posiy - diry, 1)
  80. grid.set_cell(posix, posiy, 2)
  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