Player.gd 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. $AnimatedSprite.play()
  17. func _process(delta):
  18. var velocity = get_velocity_from_action()
  19. if velocity == Vector2.ZERO :
  20. velocity = get_velocity_from_target(delta)
  21. if velocity.length_squared() > 0:
  22. velocity = velocity.normalized() * speed
  23. position += velocity * delta
  24. position.x = clamp(position.x, 0, screen.size.x)
  25. position.y = clamp(position.y, 0, screen.size.y)
  26. $AnimatedSprite.animation = "move"
  27. $AnimatedSprite.flip_h = velocity.x < 0
  28. else:
  29. $AnimatedSprite.animation = "idle"
  30. func _input(event):
  31. if event is InputEventMouseButton or event is InputEventMouseMotion :
  32. target = event.position
  33. target_reached = false
  34. func _on_Player_body_entered(_body):
  35. die()
  36. emit_signal("hit")
  37. $CollisionShape2D.set_deferred("disabled", true)
  38. func get_velocity_from_action() -> Vector2:
  39. var velocity = Vector2()
  40. if Input.is_action_pressed("ui_right"):
  41. velocity.x += 1
  42. if Input.is_action_pressed("ui_left"):
  43. velocity.x -= 1
  44. if Input.is_action_pressed("ui_down"):
  45. velocity.y += 1
  46. if Input.is_action_pressed("ui_up"):
  47. velocity.y -= 1
  48. return velocity;
  49. func get_velocity_from_target(delta):
  50. if target_reached :
  51. return Vector2.ZERO
  52. var path = target - position
  53. if path.length_squared() < speed * speed * delta * delta :
  54. target_reached = true
  55. return Vector2.ZERO
  56. return path