Player.gd 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. extends Area2D
  2. signal hit
  3. export var speed = 400 # pixel / sec
  4. var screen
  5. var target = Vector2()
  6. var target_reached = true
  7. func spawn(atPos):
  8. position = atPos
  9. show()
  10. $CollisionShape2D.disabled = false
  11. func die():
  12. hide()
  13. func _ready():
  14. hide()
  15. screen = get_viewport_rect()
  16. func _process(delta):
  17. var velocity = get_velocity_from_action()
  18. if velocity == Vector2.ZERO :
  19. velocity = get_velocity_from_target(delta)
  20. if velocity.length() > 0:
  21. velocity = velocity.normalized() * speed
  22. $AnimatedSprite.play()
  23. else:
  24. $AnimatedSprite.stop()
  25. position += velocity * delta
  26. position.x = clamp(position.x, 0, screen.size.x)
  27. position.y = clamp(position.y, 0, screen.size.y)
  28. if velocity.x != 0:
  29. $AnimatedSprite.animation = "right"
  30. $AnimatedSprite.flip_v = false
  31. $AnimatedSprite.flip_h = velocity.x < 0
  32. elif velocity.y != 0:
  33. $AnimatedSprite.animation = "up"
  34. $AnimatedSprite.flip_v = velocity.y > 0
  35. func _input(event):
  36. if event is InputEventMouseButton:
  37. print("Mouse click : ", event.button_index, " at ", event.position)
  38. target = event.position
  39. target_reached = false
  40. func _on_Player_body_entered(body):
  41. die()
  42. emit_signal("hit")
  43. $CollisionShape2D.set_deferred("disabled", true)
  44. func get_velocity_from_action() -> Vector2:
  45. var velocity = Vector2()
  46. if Input.is_action_pressed("ui_right"):
  47. velocity.x += 1
  48. if Input.is_action_pressed("ui_left"):
  49. velocity.x -= 1
  50. if Input.is_action_pressed("ui_down"):
  51. velocity.y += 1
  52. if Input.is_action_pressed("ui_up"):
  53. velocity.y -= 1
  54. return velocity;
  55. func get_velocity_from_target(delta):
  56. print("Try target")
  57. if target_reached :
  58. return Vector2.ZERO
  59. var path = target - position
  60. print("Go that way : ", path)
  61. if path.length_squared() < speed * speed * delta * delta :
  62. print("Reached")
  63. target_reached = true
  64. return path