Player.gd 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. extends Area2D
  2. # Nodes
  3. var grid
  4. var tween
  5. var rayFront
  6. var rayLeft
  7. var rayRight
  8. # Enum
  9. const DIR_UP = 0
  10. const DIR_RIGHT = 1
  11. const DIR_DOWN = 2
  12. const DIR_LEFT = 3
  13. # Movement
  14. var posix
  15. var posiy
  16. var dirx = 0
  17. var diry = 0
  18. export var dire = DIR_UP
  19. var is_moving = false
  20. var target_pos
  21. func _ready():
  22. grid = get_parent()
  23. posix = int (position.x / 64)
  24. posiy = int (position.y / 64)
  25. turn(dire)
  26. tween = $Tween
  27. tween.connect_into(self)
  28. rayFront = $RayFront
  29. rayLeft = $RayLeft
  30. rayRight = $RayRight
  31. func _physics_process(delta):
  32. if Input.is_action_pressed("ui_left"):
  33. if !is_moving:
  34. dire -= 1
  35. if dire < 0:
  36. dire = 3
  37. tween.rotate_char(self, rotation_degrees - 90)
  38. is_moving = true
  39. elif Input.is_action_pressed("ui_right"):
  40. if !is_moving:
  41. dire += 1
  42. if dire > 3:
  43. dire = 0
  44. tween.rotate_char(self, rotation_degrees + 90)
  45. is_moving = true
  46. if Input.is_action_pressed("ui_up"):
  47. turn(dire)
  48. if !is_moving and !rayFront.is_colliding():
  49. posix += dirx
  50. posiy += diry
  51. target_pos = Vector2(posix * 64 + 32, posiy * 64 + 32)
  52. tween.move_char(self, target_pos)
  53. is_moving = true
  54. func _on_tween_completed(o, k):
  55. is_moving = false
  56. func turn(dir:int):
  57. dirx = 0
  58. diry = 0
  59. if dir == DIR_UP:
  60. diry -= 1
  61. elif dir == DIR_RIGHT:
  62. dirx += 1
  63. elif dir == DIR_DOWN:
  64. diry += 1
  65. else:
  66. dirx -= 1