Slide.gd 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. class_name Slide
  2. extends Node2D
  3. # Display slide content
  4. signal finished
  5. @export var always_visible: bool = false
  6. @export_group("Processing management", "processing_")
  7. @export var processing_start_when_enabled := true ## Override processing when focused
  8. @export var processing_keep_when_disabled := false ## Enable to process at startup and keep processing after transitioning to another slide
  9. var action_finish := "ui_accept"
  10. var center_offset: Vector2
  11. func _ready() -> void:
  12. center_offset = _compute_center_offset()
  13. disable()
  14. func disable() -> void:
  15. set_process_unhandled_key_input(false)
  16. if processing_keep_when_disabled:
  17. return
  18. get_children().all(disable_processing)
  19. func enable() -> void:
  20. set_visible(true)
  21. set_process_unhandled_key_input(true)
  22. if processing_start_when_enabled:
  23. get_children().all(enable_processing)
  24. func get_center() -> Vector2:
  25. return get_position() + center_offset
  26. func gently_hide() -> void:
  27. if always_visible:
  28. return
  29. set_visible(false)
  30. func set_action_finish(action_name: String) -> void:
  31. action_finish = action_name
  32. func _unhandled_key_input(event: InputEvent) -> void:
  33. if event.is_action(action_finish) and event.is_pressed():
  34. finished.emit()
  35. get_viewport().set_input_as_handled()
  36. func _compute_center_offset() -> Vector2:
  37. var w: float = ProjectSettings.get("display/window/size/viewport_width")
  38. var h: float = ProjectSettings.get("display/window/size/viewport_height")
  39. return Vector2(w * scale.x / 2, h * scale.y / 2)
  40. static func enable_processing(node: Node) -> bool:
  41. node.set_process_mode(Node.PROCESS_MODE_PAUSABLE)
  42. return true # to make it work with Array.all()
  43. static func disable_processing(node: Node) -> bool:
  44. node.set_process_mode(Node.PROCESS_MODE_DISABLED)
  45. return true # to make it work with Array.all()