Player.gd 2.7 KB

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