Player.gd 3.0 KB

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