File size: 2,015 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;

namespace Unity.VisualScripting
{
    public sealed class UnitPortDescription : IDescription
    {
        private string _label;

        private bool _isLabelVisible = true;

        internal IUnitPort portType;

        public EditorTexture icon
        {
            get
            {
                if (_icon == null || !_icon.IsValid())
                {
                    _icon = GetIcon(portType);
                }

                return _icon;
            }
            set => _icon = value;
        }

        private EditorTexture _icon;

        public string fallbackLabel { get; set; }

        public string label
        {
            get => _label ?? fallbackLabel;
            set => _label = value;
        }

        public bool showLabel
        {
            get => !BoltFlow.Configuration.hidePortLabels || _isLabelVisible;
            set => _isLabelVisible = value;
        }

        string IDescription.title => label;

        public string summary { get; set; }

        public Func<Metadata, Metadata> getMetadata { get; set; }

        public void CopyFrom(UnitPortDescription other)
        {
            _label = other._label;
            _isLabelVisible = other._isLabelVisible;
            summary = other.summary;
            portType = other.portType ?? portType;
            getMetadata = other.getMetadata ?? getMetadata;
        }

        private static EditorTexture GetIcon(IUnitPort portType)
        {
            if (portType is IUnitControlPort)
            {
                return typeof(Flow).Icon();
            }
            else if (portType is IUnitValuePort)
            {
                return Icons.Type(((IUnitValuePort)portType).type);
            }
            else if (portType is IUnitInvalidPort)
            {
                return BoltCore.Resources.icons.errorState;
            }
            else
            {
                // throw new NotSupportedException();
                return null;
            }
        }
    }
}