Player.gd 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 _physics_process(delta):
  43. # TODO : use action callbacks
  44. if Input.is_action_just_pressed(turn_left_action):
  45. dire_delta = -1
  46. elif Input.is_action_just_pressed(turn_right_action):
  47. dire_delta = 1
  48. func _on_game_start():
  49. move()
  50. func _on_tween_completed():
  51. move()
  52. func _on_crash(b):
  53. die()
  54. generate_wall()
  55. grid.set_cell(posix, posiy, 2)
  56. func generate_wall():
  57. grid.set_cell(posix - dirx, posiy - diry, 1)
  58. func move():
  59. if !alive:
  60. return
  61. generate_wall()
  62. if dire_delta == -1 and !rayLeft.is_colliding():
  63. tween.rotate_char(self, rotation_degrees - 90)
  64. dire += dire_delta
  65. if dire < 0:
  66. dire = 3
  67. elif dire_delta == 1 and !rayRight.is_colliding():
  68. tween.rotate_char(self, rotation_degrees + 90)
  69. dire += dire_delta
  70. if dire > 3:
  71. dire = 0
  72. turn(dire)
  73. dire_delta = 0
  74. posix += dirx
  75. posiy += diry
  76. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  77. tween.move_char(self, target_pos)
  78. tween.start()
  79. func turn(dir:int):
  80. dirx = 0
  81. diry = 0
  82. if dir == Direction.UP:
  83. diry -= 1
  84. elif dir == Direction.RIGHT:
  85. dirx += 1
  86. elif dir == Direction.DOWN:
  87. diry += 1
  88. else:
  89. dirx -= 1
  90. func die():
  91. alive = false
  92. remove_from_group("living")
  93. func spring():
  94. alive = true
  95. add_to_group("living")
  96. func is_alive():
  97. return alive