summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/AmplifyShaderEditor/Plugins/Editor/Menu/NodeWireReferencesUtils.cs
blob: f1793a249df0bb68c6c6b55863fcdd9de4702439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using UnityEngine;

namespace AmplifyShaderEditor
{
	public class NodeWireReferencesUtils
	{
		public WireReference InputPortReference = new WireReference();
		public WireReference SwitchPortReference = new WireReference();
		public WireReference OutputPortReference = new WireReference();

		public Vector2 SnapPosition = Vector2.zero;
		public bool SnapEnabled = false;
		public WireReference SnapPort = new WireReference();

		public bool ValidReferences()
		{
			return ( InputPortReference.IsValid || OutputPortReference.IsValid );
		}

		public void InvalidateReferences()
		{
			InputPortReference.Invalidate();
			OutputPortReference.Invalidate();
			SnapPort.Invalidate();
			SnapEnabled = false;
		}


		public void SetOutputReference( int nodeId, int portId, WirePortDataType dataType, bool typeLocked )
		{
			if( InputPortReference.IsValid )
				InputPortReference.Invalidate();
			OutputPortReference.SetReference( nodeId, portId, dataType, typeLocked );
		}

		public void SetInputReference( int nodeId, int portId, WirePortDataType dataType, bool typeLocked )
		{
			if( OutputPortReference.IsValid )
				OutputPortReference.Invalidate();
			InputPortReference.SetReference( nodeId, portId, dataType, typeLocked );
		}

		public void ActivateSnap( Vector2 position, WirePort port )
		{
			SnapPort.SetReference( port );
			SnapEnabled = true;
			SnapPosition = position;
		}

		public void DeactivateSnap()
		{
			SnapEnabled = false;
			SnapPort.Invalidate();
		}
	}
}