|
@@ -5,6 +5,11 @@ extends Camera2D
|
|
|
|
|
|
signal ended
|
|
|
|
|
|
+enum Transit {
|
|
|
+ BEAM,
|
|
|
+ SMOOTH,
|
|
|
+}
|
|
|
+
|
|
|
@export_group("Tween caracteristics", "tween_")
|
|
|
@export var tween_is_parallel: bool = false
|
|
|
|
|
@@ -26,19 +31,40 @@ var target_pos: Vector2 = Vector2.ZERO
|
|
|
var target_scope: Vector2 = Vector2.ONE
|
|
|
|
|
|
|
|
|
-func focus_on(pos: Vector2, scalar_scale: float) -> void:
|
|
|
+func focus_on(pos: Vector2, scalar_scale: float, trans: Transit) -> void:
|
|
|
target_pos = pos
|
|
|
target_scope = Vector2.ONE * scalar_scale
|
|
|
|
|
|
+ if Transit.BEAM == trans:
|
|
|
+ _beam_to_focus()
|
|
|
+ elif Transit.SMOOTH == trans:
|
|
|
+ _smooth_transit_to_focus()
|
|
|
+ else:
|
|
|
+ assert(false, "Trans %s is not implemented." % trans)
|
|
|
+
|
|
|
+
|
|
|
+func end() -> void:
|
|
|
+ ended.emit()
|
|
|
+
|
|
|
+
|
|
|
+func get_scope() -> Vector2:
|
|
|
+ return _invert_vector(get_zoom())
|
|
|
|
|
|
-func beam_to_focus() -> void:
|
|
|
+
|
|
|
+func set_scope(new_scope: Vector2) -> void:
|
|
|
+ assert(new_scope.x > 0)
|
|
|
+ assert(new_scope.y > 0)
|
|
|
+ set_zoom(_invert_vector(new_scope))
|
|
|
+
|
|
|
+
|
|
|
+func _beam_to_focus() -> void:
|
|
|
_abort_ongoing_transit()
|
|
|
|
|
|
set_position(target_pos)
|
|
|
set_scope(target_scope)
|
|
|
|
|
|
|
|
|
-func transit_to_focus() -> void:
|
|
|
+func _smooth_transit_to_focus() -> void:
|
|
|
_abort_ongoing_transit()
|
|
|
|
|
|
var is_wider = target_scope.x > get_scope().x
|
|
@@ -50,20 +76,6 @@ func transit_to_focus() -> void:
|
|
|
tween.tween_callback(end)
|
|
|
|
|
|
|
|
|
-func end() -> void:
|
|
|
- ended.emit()
|
|
|
-
|
|
|
-
|
|
|
-func get_scope() -> Vector2:
|
|
|
- return _invert_vector(get_zoom())
|
|
|
-
|
|
|
-
|
|
|
-func set_scope(new_scope: Vector2) -> void:
|
|
|
- assert(new_scope.x > 0)
|
|
|
- assert(new_scope.y > 0)
|
|
|
- set_zoom(_invert_vector(new_scope))
|
|
|
-
|
|
|
-
|
|
|
func _abort_ongoing_transit() -> void:
|
|
|
if tween:
|
|
|
tween.kill()
|
|
@@ -73,13 +85,5 @@ func _invert_vector(vec: Vector2) -> Vector2:
|
|
|
return Vector2(1.0 / vec.x, 1.0 / vec.y)
|
|
|
|
|
|
|
|
|
-func _on_show_new_focus(pos: Vector2, scalar_scale: float) -> void:
|
|
|
- focus_on(pos, scalar_scale)
|
|
|
-
|
|
|
-
|
|
|
-func _on_show_fast_move() -> void:
|
|
|
- beam_to_focus()
|
|
|
-
|
|
|
-
|
|
|
-func _on_show_slow_move() -> void:
|
|
|
- transit_to_focus()
|
|
|
+func _on_show_new_focus(pos: Vector2, scalar_scale: float, trans: Transit) -> void:
|
|
|
+ focus_on(pos, scalar_scale, trans)
|