forked from iodes/GSharp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGCommand.cs
164 lines (146 loc) · 4.29 KB
/
GCommand.cs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
using GSharp.Extension.Optionals;
using System;
using System.Drawing;
using System.Security.Cryptography;
using System.Text;
namespace GSharp.Extension
{
[Serializable]
public class GCommand
{
#region 속성
public GExtension Parent
{
get
{
return _Parent;
}
}
private GExtension _Parent;
public GOptional[] Optionals
{
get
{
return _Optionals;
}
}
private GOptional[] _Optionals;
public GTranslation[] Translations
{
get
{
return _Translations;
}
}
private GTranslation[] _Translations;
public Type ObjectType
{
get
{
return _ObjectType;
}
}
private Type _ObjectType;
public string MethodName
{
get
{
return _MethodName;
}
}
private string _MethodName;
public string FriendlyName
{
get
{
if (Translations?.Length > 0)
{
return GTranslationSupport.GetTranslation(Translations).FriendlyName;
}
else
{
return _FriendlyName;
}
}
}
private string _FriendlyName;
public string NamespaceName
{
get
{
return _NamespaceName;
}
}
private string _NamespaceName;
public CommandType MethodType
{
get
{
return _MethodType;
}
}
private CommandType _MethodType;
public string FullName
{
get
{
return string.Format("{0}.{1}", NamespaceName, MethodName);
}
}
public Color BlockColor
{
get
{
return _BlockColor;
}
}
private Color _BlockColor;
#endregion
#region 열거형
public enum CommandType
{
Call,
Enum,
Event,
Logic,
Property
}
#endregion
#region 생성자
public GCommand(string methodName, Type objectType, CommandType methodType, GOptional[] optionals = null, GTranslation[] translations = null)
{
_ObjectType = objectType;
_MethodName = methodName;
_MethodType = methodType;
_Optionals = optionals;
_Translations = translations;
using (MD5 md5 = MD5.Create())
{
byte[] inputBytes = Encoding.UTF8.GetBytes(FullName);
byte[] hashBytes = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hashBytes.Length; i++)
{
sb.Append(hashBytes[i].ToString("X2"));
}
_BlockColor = ColorTranslator.FromHtml("#" + sb.ToString().Substring(0, 6));
}
}
public GCommand(string namespaceName, string methodName, Type objectType, CommandType methodType, GOptional[] optionals = null, GTranslation[] translations = null)
: this(methodName, objectType, methodType, optionals, translations)
{
_NamespaceName = namespaceName;
}
public GCommand(string namespaceName, string methodName, string friendlyName, Type objectType, CommandType methodType, GOptional[] optionals = null, GTranslation[] translations = null)
: this(namespaceName, methodName, objectType, methodType, optionals, translations)
{
_FriendlyName = friendlyName;
}
public GCommand(GExtension parent, string namespaceName, string methodName, string friendlyName, Type objectType, CommandType methodType, GOptional[] optionals = null, GTranslation[] translations = null)
: this(namespaceName, methodName, friendlyName, objectType, methodType, optionals, translations)
{
_Parent = parent;
}
#endregion
}
}