Skip to content

Commit 60ccfd6

Browse files
committed
Wirelib: add GameInit attribute for initializing addons
1 parent 2caa787 commit 60ccfd6

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed

CodeOld/WireboxAddon.cs

-13
This file was deleted.

wirelib/Code/BaseWireInputComponent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ public void WireTriggerInput<T>( string inputName, T value )
4646
{
4747
if ( !WirePorts.inputsInitialized )
4848
{ // these get cleared by hot reloading
49-
WireInitialize();
5049
WirePorts.inputsInitialized = true;
50+
WireInitialize();
5151
}
5252
WirePorts.inputs[inputName].value = value;
5353
WirePorts.inputHandlers[inputName]( value );

wirelib/Code/GameInitAttribute.cs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
namespace SandboxPlus;
2+
3+
// Temporarily putting this attribute here instead of in SandboxPlus, because Libraries (like WireLib) can't reference Games, only vice versa
4+
[AttributeUsage( AttributeTargets.Method, Inherited = false )]
5+
public class GameInitAttribute : Attribute
6+
{
7+
public bool HostOnly { get; }
8+
public GameInitAttribute( bool HostOnly = false )
9+
{
10+
this.HostOnly = HostOnly;
11+
}
12+
}

wirelib/Code/WireCable.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public WireCable( LegacyParticleSystem particle, GameObject ent1, GameObject ent
3131
// In 2023's engine, it was very unreliable killing the visual cables when the entities were destroyed. It might be better now?
3232
private static CancellationTokenSource cancellationTokenSource;
3333

34-
// [Event( "game.init" )]
3534
// [Event( "package.mounted" )]
3635
// [Event.Hotload]
36+
[SandboxPlus.GameInit( HostOnly: false )]
3737
public static async void InitCleanupTimer()
3838
{
3939
StopCleanupTimer();

0 commit comments

Comments
 (0)