Ver código fonte

:tada: Implement fast next slide

DricomDragon 2 anos atrás
pai
commit
407272232c
3 arquivos alterados com 45 adições e 5 exclusões
  1. 22 2
      godot/projector/focus/Focus.gd
  2. 21 3
      godot/projector/show/Show.gd
  3. 2 0
      godot/run/root.tscn

+ 22 - 2
godot/projector/focus/Focus.gd

@@ -22,17 +22,29 @@ signal ended
 var tween: Tween
 var scope: Vector2 : get = get_scope, set = set_scope
 
+var target_pos: Vector2 = Vector2.ZERO
+var target_scope: Vector2 = Vector2.ONE
+
 
 func focus_on(pos: Vector2, scalar_scale: float) -> void:
+	target_pos = pos
+	target_scope = Vector2.ONE * scalar_scale
+
+
+func beam_to_focus() -> void:
+	set_position(target_pos)
+	set_scope(target_scope)
+
+
+func transit_to_focus() -> void:
 	if tween:
 		tween.kill()
 
-	var target_scope = Vector2.ONE * scalar_scale
 	var is_wider = target_scope.x > get_scope().x
 	var scope_ease = scope_wider_ease if is_wider else scope_closer_ease
 
 	tween = create_tween().set_parallel(tween_is_parallel)
-	tween.tween_property(self, "position", pos, move_duration).set_trans(move_trans).set_ease(move_ease)
+	tween.tween_property(self, "position", target_pos, move_duration).set_trans(move_trans).set_ease(move_ease)
 	tween.tween_property(self, "scope", target_scope, scope_duration).set_trans(scope_trans).set_ease(scope_ease)
 	tween.tween_callback(end)
 
@@ -57,3 +69,11 @@ func _on_show_new_focus(pos: Vector2, scalar_scale: float) -> void:
 
 func _invert_vector(vec: Vector2) -> Vector2:
 	return Vector2(1.0 / vec.x, 1.0 / vec.y)
+
+
+func _on_show_fast_move():
+	beam_to_focus()
+
+
+func _on_show_slow_move():
+	transit_to_focus()

+ 21 - 3
godot/projector/show/Show.gd

@@ -4,6 +4,8 @@ extends Node2D
 
 
 signal new_focus(pos: Vector2, scale: float)
+signal slow_move
+signal fast_move
 
 const VOID_SLIDE_ID := -1
 
@@ -17,10 +19,20 @@ var current_slide: Slide
 
 func _ready():
 	_enforce()
-	next_slide()
+	go_slowly_to_next_slide()
 
 
-func next_slide():
+func go_slowly_to_next_slide():
+	_next_slide()
+	slow_move.emit()
+
+
+func go_fast_to_next_slide():
+	_next_slide()
+	fast_move.emit()
+
+
+func _next_slide():
 	_disconnect_current_slide()
 	current_id = _next_id()
 	current_slide = focus_slide(current_id)
@@ -74,5 +86,11 @@ func _next_id() -> int:
 	return next_id
 
 
+func _unhandled_key_input(event: InputEvent):
+	if event.is_action("ui_right") and event.is_pressed():
+		get_viewport().set_input_as_handled()
+		go_fast_to_next_slide()
+
+
 func _on_current_slide_finished():
-	next_slide()
+	go_slowly_to_next_slide()

+ 2 - 0
godot/run/root.tscn

@@ -381,4 +381,6 @@ position = Vector2(17112, 7956)
 [node name="Thanks" parent="Board/Show" instance=ExtResource("78_q2k73")]
 position = Vector2(7930, 3755)
 
+[connection signal="fast_move" from="Board/Show" to="Board/Focus" method="_on_show_fast_move"]
 [connection signal="new_focus" from="Board/Show" to="Board/Focus" method="_on_show_new_focus"]
+[connection signal="slow_move" from="Board/Show" to="Board/Focus" method="_on_show_slow_move"]