Player.gd 1.5 KB

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