Player.gd 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. assert(turn_left_action)
  34. assert(turn_right_action)
  35. tween.connect_into(self)
  36. func _unhandled_input(event):
  37. if event.is_pressed():
  38. if event.is_action(turn_left_action):
  39. prepare_turn(Side.LEFT)
  40. get_tree().set_input_as_handled()
  41. elif event.is_action(turn_right_action):
  42. prepare_turn(Side.RIGHT)
  43. get_tree().set_input_as_handled()
  44. func spawn(newGrid, newPosition, newOrientation):
  45. # Update arena
  46. grid = newGrid
  47. # Adjust spawn situation
  48. posix = int (newPosition.x / cell_size)
  49. posiy = int (newPosition.y / cell_size)
  50. dire = int((newOrientation + 45) / 90)
  51. apply_turn()
  52. # Animate spawning
  53. tween.rotate_char(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
  54. tween.move_char(self, newPosition, LEVEL_SPAWN_DURATION)
  55. tween.start()
  56. func _on_round_start():
  57. assert(grid)
  58. spring()
  59. func _on_tween_completed(_o, key):
  60. if (key == ":position"):
  61. move()
  62. func _on_crash(body):
  63. if running:
  64. die()
  65. generate_wall()
  66. # TODO : use enum for blocks
  67. grid.set_cell(posix, posiy, 2)
  68. func generate_wall():
  69. # TODO : use enum for blocks
  70. grid.set_cell(posix - dirx, posiy - diry, 1)
  71. func prepare_turn(left_or_right:int):
  72. var current_angle = (dire + dire_delta) * 90
  73. dire_delta += left_or_right
  74. if dire_delta > Side.RIGHT:
  75. dire_delta = Side.RIGHT
  76. return
  77. elif dire_delta < Side.LEFT:
  78. dire_delta = Side.LEFT
  79. return
  80. var aim_angle = current_angle + 90 * left_or_right
  81. tween.rotate_char(self, current_angle, aim_angle)
  82. tween.start()
  83. func can_turn():
  84. return dire_delta != 0 and !has_block_on(dire_delta)
  85. func apply_turn():
  86. dire += dire_delta
  87. dire_delta = 0
  88. if dire < 0:
  89. dire = 3
  90. elif dire > 3:
  91. dire = 0
  92. dirx = 0
  93. diry = 0
  94. if dire == Direction.UP:
  95. diry -= 1
  96. elif dire == Direction.RIGHT:
  97. dirx += 1
  98. elif dire == Direction.DOWN:
  99. diry += 1
  100. elif dire == Direction.LEFT:
  101. dirx -= 1
  102. else:
  103. push_error("dire out of range")
  104. func move():
  105. if !running:
  106. return
  107. generate_wall()
  108. if can_turn():
  109. apply_turn()
  110. go_forward()
  111. func go_forward():
  112. posix += dirx
  113. posiy += diry
  114. target_pos = Vector2(posix * cell_size + cell_half_size, posiy * cell_size + cell_half_size)
  115. tween.move_char(self, target_pos)
  116. tween.start()
  117. func has_block_on(left_or_right:int):
  118. var bposx:int = posix - diry * left_or_right
  119. var bposy:int = posiy + dirx * left_or_right
  120. # TODO : use enum for blocks
  121. return grid.get_cell(bposx, bposy) == 1
  122. func die():
  123. if running:
  124. remove_from_group("running")
  125. running = false
  126. func spring():
  127. running = true
  128. add_to_group("running")
  129. move()
  130. func is_running():
  131. return running