Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UNUSED_SIGNAL warning if signal is only used via emit_signal() #89632

Closed
lostminds opened this issue Mar 18, 2024 · 9 comments · Fixed by #89675
Closed

UNUSED_SIGNAL warning if signal is only used via emit_signal() #89632

lostminds opened this issue Mar 18, 2024 · 9 comments · Fixed by #89675

Comments

@lostminds
Copy link

lostminds commented Mar 18, 2024

Tested versions

v4.3.dev5
not reproducable in v4.3.dev4

System information

macOS 14.4

Issue description

If you emit signals using emit_signal("signal_name") this will no longer register in 4.3dev5 as using this signal and trigger an UNUSED_SIGNAL warning for the signal.

Steps to reproduce

Write a simple script like

extends Node

signal value_changed()

var value:bool = false:
	set(new_value):
		if (new_value != value):
			value = new_value
			emit_signal("value_changed")

And observer the warning:
Line 3 (UNUSED_SIGNAL):The signal "value_changed" is declared but never explicitly used in the class.

If you instead use value_changed.emit() the warning is not shown.

If the script is used in the project you'll get a similar warning in the debug output running the game.

Minimal reproduction project (MRP)

See script lines above.

@AThousandShips
Copy link
Member

Thank you for your report, consolidating in:

@AThousandShips AThousandShips closed this as not planned Won't fix, can't repro, duplicate, stale Mar 18, 2024
@lostminds
Copy link
Author

Thank you for your report, consolidating in #40496:

I do not think this is the same bug. The linked issue seems to be for a different problem from back in 3.x where you'd get the warning if you did not explicitly use emit_signal (but emitted it in some other way). This seems more complicated since it's hard to tell in this cases if the signal is emitted or not.

The reported issue is that you now get the warning even when using emit_signal explicitly in the same class script with the signal name like in the example above. This bug is also seems new to 4.3dev5 (or a regression), it's not present in 4.3dev4 or previous 4.x versions as far as I've experienced.

@dalexeev
Copy link
Member

Yes, this is expected, which is why we added "explicitly" to the warning message. Note that you can use Signal.emit() (instead of Object.emit_signal()), which is a more recommended option.

We could add an exception for emit_signal(constant_string), however this will not work in case of dynamic expressions and something like call("emit_signal", "my_signal").

This bug is also seems new to 4.3dev5 (or a regression), it's not present in 4.3dev4 or previous 4.x versions

It's a bug fix, the UNUSED_SIGNAL warning was never produced before (in 4.x).

@dalexeev dalexeev self-assigned this Mar 19, 2024
@lostminds
Copy link
Author

I see, but then I think it could be a good idea to either add an exception for emit_signal("signal_name") for the specific signal (which I think could be seen as explicitly using the signal, even if technically it might not be) or be more clear in the warning that by explicit you mean using signal_name.emit() and that this is recommended.

Otherwise I think you might get a lot more confused bug reports like this one once 4.3 is released and more people start getting these warnings that were not they may perceptive as incorrect just like I did.

@kuligs2
Copy link

kuligs2 commented Jul 13, 2024

Uhm, yeah its still annoying even when for example you try to emit signals inside a new thread. You cant use some_signal.emit(), you need to call_deferred("emit_signal","some_signal",some_var)

Godot v4.3.beta3 - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA RTX A2000 (NVIDIA; 31.0.15.5186) - Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz (8 Threads)

For example:
Note: Replace 2 == 3 with any of your own condition to emit the signal

extends Node

signal serverlist_updated(list_var)
var g_thread :Thread
var threading:bool = true

var list_var = {}
func g_loop():
	
	while threading:
		if 2 == 3:
			call_deferred("emit_signal","serverlist_updated",list_var)
		pass	
			
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
	g_thread = Thread.new()
	g_thread.start(g_loop,Thread.PRIORITY_HIGH)
				
	pass # Replace with function body.

@dalexeev
Copy link
Member

Uhm, yeah its still annoying even when for example you try to emit signals inside a new thread. You cant use some_signal.emit(), you need to call_deferred("emit_signal","some_signal",some_var)

You can use some_signal.emit.call_deferred(some_var) instead.

@dalexeev dalexeev modified the milestones: 4.3, 4.4 Jul 24, 2024
@BrastenXBL
Copy link

This warning triggers when the Signal is connected from the Editor Signals panel. Perhaps the Project Settings default should be set to Ignore instead of Warn. Most new Godot users will be using the Editor panel, and will be confused by the warning. I'm already starting to see this show up in the community Reddit, and expect more instances once 4.3.0 is fully released.

@kuligs2
Copy link

kuligs2 commented Jul 30, 2024

This warning triggers when the Signal is connected from the Editor Signals panel. Perhaps the Project Settings default should be set to Ignore instead of Warn. Most new Godot users will be using the Editor panel, and will be confused by the warning. I'm already starting to see this show up in the community Reddit, and expect more instances once 4.3.0 is fully released.

i prefer not to use editor to connect stuff that way because later on you can forget what was connected to where, as the codebase gets more convoluted and overall it would result in a mess.. i did that with input_action bindings... never again.. spent too many hours trying to debug why it dont work when it turned out i have previously bound the button so some different action.. it was a pain to debug.. Thats why i always try to do everything in code if possible.. that way all you have to do is read through it and youll see the whole picture on how everything is connected and works..

@TranquilMarmot
Copy link

Commented on the other issue, but I'll paste it here as well.

You can explicitly ignore the warning for a specific signal if you want:

@warning_ignore("unused_signal")
signal some_signal

https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/warning_system.html

I do this in spots where I know that the signal is called from elsewhere.

If you always call signals like...

some_node.some_signal.emit()

You can find all references to the signal easily in the IDE.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants