Player.gd 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. # Movement
  17. var posix
  18. var posiy
  19. var dirx = 0
  20. var diry = 0
  21. export var dire = Direction.UP
  22. var dire_delta = 0
  23. var target_pos
  24. # Controls
  25. export var turn_left_action:String
  26. export var turn_right_action:String
  27. func _ready():
  28. add_to_group("players")
  29. spring()
  30. assert(grid)
  31. assert(turn_left_action)
  32. assert(turn_right_action)
  33. cell_size = int (grid.get_cell_size().x)
  34. cell_half_size = cell_size / 2
  35. posix = int (position.x / 64)
  36. posiy = int (position.y / 64)
  37. turn(dire)
  38. tween.connect_into(self)
  39. func _unhandled_input(event):
  40. if event.is_pressed():
  41. if event.is_action(turn_left_action):
  42. tween.rotate_char(self, rotation_degrees - 90)
  43. dire_delta = -1
  44. get_tree().set_input_as_handled()
  45. elif event.is_action(turn_right_action):
  46. tween.rotate_char(self, rotation_degrees + 90)
  47. dire_delta = 1
  48. get_tree().set_input_as_handled()
  49. func _on_game_start():
  50. move()
  51. func _on_tween_completed():
  52. move()
  53. func _on_crash(body):
  54. die()
  55. generate_wall()
  56. grid.set_cell(posix, posiy, 2)
  57. func generate_wall():
  58. grid.set_cell(posix - dirx, posiy - diry, 1)
  59. func move():
  60. if !alive:
  61. return
  62. generate_wall()
  63. if dire_delta == -1 and !has_block_on_side(dire_delta):
  64. # TODO Undo sprite turn if blocked
  65. dire += dire_delta
  66. if dire < 0:
  67. dire = 3
  68. elif dire_delta == 1 and !has_block_on_side(dire_delta):
  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 has_block_on_side(left_or_right:int):
  80. var bposx:int = posix - diry * left_or_right
  81. var bposy:int = posiy + dirx * left_or_right
  82. # TODO : use enum for blocks
  83. return grid.get_cell(bposx, bposy) == 1
  84. func turn(dir:int):
  85. dirx = 0
  86. diry = 0
  87. if dir == Direction.UP:
  88. diry -= 1
  89. elif dir == Direction.RIGHT:
  90. dirx += 1
  91. elif dir == Direction.DOWN:
  92. diry += 1
  93. else:
  94. dirx -= 1
  95. func die():
  96. alive = false
  97. remove_from_group("living")
  98. func spring():
  99. alive = true
  100. add_to_group("living")
  101. func is_alive():
  102. return alive