Player.gd 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. extends Area2D
  2. # Nodes
  3. var grid:TileMap
  4. onready var tween = $Tween
  5. # Signals
  6. signal crash
  7. # Misc
  8. const cell_size = 64
  9. const cell_half_size = 32
  10. # State
  11. var running = false
  12. var landed = false
  13. # Enum
  14. enum Direction {
  15. UP = 0
  16. RIGHT = 1
  17. DOWN = 2
  18. LEFT = 3
  19. }
  20. enum Side {
  21. LEFT = -1
  22. RIGHT = 1
  23. }
  24. # Movement
  25. var posix
  26. var posiy
  27. var dirx = 0
  28. var diry = 0
  29. var dire = 0
  30. var dire_delta = 0
  31. var target_pos
  32. const LEVEL_SPAWN_DURATION = 2
  33. # Controls
  34. export var turn_left_action:String
  35. export var turn_right_action:String
  36. func _ready():
  37. assert(turn_left_action)
  38. assert(turn_right_action)
  39. tween.connect_into(self)
  40. func _unhandled_input(event):
  41. if event.is_pressed():
  42. if event.is_action(turn_left_action):
  43. prepare_turn(Side.LEFT)
  44. get_tree().set_input_as_handled()
  45. elif event.is_action(turn_right_action):
  46. prepare_turn(Side.RIGHT)
  47. get_tree().set_input_as_handled()
  48. func spawn(newGrid, newPosition, newOrientation):
  49. # Update arena
  50. grid = newGrid
  51. # Adjust spawn situation
  52. dire_delta = 0
  53. posix = int (newPosition.x / cell_size)
  54. posiy = int (newPosition.y / cell_size)
  55. dire = int((newOrientation + 45) / 90)
  56. apply_turn()
  57. # Animate spawning
  58. tween.rotate_char(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
  59. tween.move_char(self, newPosition, LEVEL_SPAWN_DURATION)
  60. tween.start()
  61. func _on_round_start():
  62. assert(grid)
  63. run()
  64. func _on_round_won():
  65. stop()
  66. func _on_arena_removed():
  67. grid = null
  68. landed = false
  69. func _on_tween_completed(_o, key):
  70. if (key == ":position"):
  71. move()
  72. func _on_crash(body):
  73. if landed and running:
  74. stop()
  75. # TODO : use enum for blocks
  76. grid.set_cell(posix, posiy, 2)
  77. emit_signal("crash")
  78. func generate_wall():
  79. # TODO : use enum for blocks
  80. grid.set_cell(posix - dirx, posiy - diry, 1)
  81. func prepare_turn(left_or_right:int):
  82. if !running:
  83. return
  84. var current_angle = (dire + dire_delta) * 90
  85. dire_delta += left_or_right
  86. if dire_delta > Side.RIGHT:
  87. dire_delta = Side.RIGHT
  88. return
  89. elif dire_delta < Side.LEFT:
  90. dire_delta = Side.LEFT
  91. return
  92. var aim_angle = current_angle + 90 * left_or_right
  93. tween.rotate_char(self, current_angle, aim_angle)
  94. tween.start()
  95. func can_turn():
  96. return dire_delta != 0 and !has_block_on(dire_delta)
  97. func apply_turn():
  98. dire += dire_delta
  99. dire_delta = 0
  100. if dire < 0:
  101. dire = 3
  102. elif dire > 3:
  103. dire = 0
  104. dirx = 0
  105. diry = 0
  106. if dire == Direction.UP:
  107. diry -= 1
  108. elif dire == Direction.RIGHT:
  109. dirx += 1
  110. elif dire == Direction.DOWN:
  111. diry += 1
  112. elif dire == Direction.LEFT:
  113. dirx -= 1
  114. else:
  115. push_error("dire out of range")
  116. func move():
  117. if !running:
  118. return
  119. generate_wall()
  120. if can_turn():
  121. apply_turn()
  122. go_forward()
  123. func go_forward():
  124. posix += dirx
  125. posiy += diry
  126. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  127. tween.move_char(self, target_pos)
  128. tween.start()
  129. func has_block_on(left_or_right:int):
  130. var bposx:int = posix - diry * left_or_right
  131. var bposy:int = posiy + dirx * left_or_right
  132. # TODO : use enum for blocks
  133. return grid.get_cell(bposx, bposy) == 1
  134. func stop():
  135. if running:
  136. remove_from_group("running")
  137. generate_wall()
  138. running = false
  139. func run():
  140. landed = true # TODO : land at game signal `land`
  141. running = true
  142. add_to_group("running")
  143. move()
  144. func is_running():
  145. return running