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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
using System;
using System.Collections.Generic;
using UILib;
using XMainClient.UI;
using XUtliPoolLib;
namespace XMainClient
{
internal class XLabelSymbolHelper
{
public static string FormatCostWithIcon(int cost, ItemEnum moneyType)
{
return string.Format("{0}{1}", XLabelSymbolHelper.FormatSmallIcon(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(moneyType)), cost);
}
public static string FormatCostWithIconLast(int cost, ItemEnum moneyType)
{
return string.Format("{0}{1}", cost, XLabelSymbolHelper.FormatSmallIcon(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(moneyType)));
}
public static string FormatCostWithIcon(string s, int cost, ItemEnum moneyType)
{
return string.Format(s, XLabelSymbolHelper.FormatSmallIcon(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(moneyType)), cost);
}
public static string FormatItemSmallIcon(string s, int itemId, int cost)
{
return string.Format(s, XLabelSymbolHelper.FormatSmallIcon(itemId), cost);
}
public static string FormatSmallIcon(int itemID)
{
string sprite;
string atlas;
XBagDocument.GetItemSmallIconAndAtlas(itemID, out sprite, out atlas, 0u);
return XStringFormatHelper.FormatImage(atlas, sprite);
}
public static string FormatImage(int itemID)
{
ItemList.RowData itemConf = XBagDocument.GetItemConf(itemID);
bool flag = itemConf == null;
string result;
if (flag)
{
result = "";
}
else
{
result = XStringFormatHelper.FormatImage(XSingleton<UiUtility>.singleton.ChooseProfString(itemConf.ItemAtlas, 0u), XSingleton<UiUtility>.singleton.ChooseProfString(itemConf.ItemIcon, 0u));
}
return result;
}
public static string FormatImage(string atlas, string sprite)
{
return XStringFormatHelper.FormatImage(atlas, sprite);
}
public static string FormatAnimation(string atlas, string sprite, int frameRate)
{
return XStringFormatHelper.FormatAnimation(atlas, sprite, frameRate);
}
public static string FormatDesignation(string atlas, string sprite, int frameRate = 16)
{
return XStringFormatHelper.FormatAnimation(atlas, sprite, frameRate);
}
public static string FormatGuild(string name, ulong uid)
{
return XStringFormatHelper.FormatGuild(name, uid);
}
public static string FormatDragonGuild(string name, string dragonguildname)
{
return XStringFormatHelper.FormatDragonGuild(name, dragonguildname);
}
public static string FormatTeam(string name, int teamid, uint expid)
{
return XStringFormatHelper.FormatTeam(name, teamid, expid);
}
public static string FormatItem(string name, XItem item)
{
return XStringFormatHelper.FormatItem(name, XSingleton<UiUtility>.singleton.GetItemQualityRGB((int)XBagDocument.GetItemConf(item.itemID).ItemQuality), item.uid);
}
public static string FormatName(string name, ulong uid, string color = "00ffff")
{
return XStringFormatHelper.FormatName(name, uid, color);
}
public static string FormatPk(string name, ulong uid)
{
return XStringFormatHelper.FormatPk(name, uid);
}
public static string FormatSpectate(string name, int liveid, int type)
{
return XStringFormatHelper.FormatSpeactate(name, liveid, type);
}
public static string FormatUI(string name, ulong uid, List<ulong> paramList)
{
return XStringFormatHelper.FormatUI(name, uid, paramList);
}
public static bool ParseGuildParam(string param, ref ulong guildid)
{
guildid = ulong.Parse(param);
return true;
}
public static bool ParseDragonGuildParam(string param, ref string dragonguildname)
{
dragonguildname = param;
return true;
}
public static bool ParseSpectateParam(string param, ref int liveid, ref int type)
{
string[] array = param.Split(XStringFormatHelper.Separator);
bool flag = array.Length != 2;
bool result;
if (flag)
{
result = false;
}
else
{
liveid = int.Parse(array[0]);
type = int.Parse(array[1]);
result = true;
}
return result;
}
public static bool ParsePkParam(string param, ref ulong roleid)
{
roleid = ulong.Parse(param);
return true;
}
public static bool ParseUIParam(string param, ref ulong sysid, ref List<ulong> sysParamList)
{
string[] array = param.Split(XStringFormatHelper.Separator);
bool flag = array.Length == 0;
bool result;
if (flag)
{
result = false;
}
else
{
sysid = ulong.Parse(array[0]);
bool flag2 = array.Length > 1;
if (flag2)
{
bool flag3 = sysParamList == null;
if (flag3)
{
sysParamList = new List<ulong>();
}
sysParamList.Clear();
for (int i = 1; i < array.Length; i++)
{
sysParamList.Add(ulong.Parse(array[i]));
}
}
else
{
bool flag4 = sysParamList != null;
if (flag4)
{
sysParamList.Clear();
}
}
result = true;
}
return result;
}
public static bool ParseNameParam(string param, ref string name, ref ulong uid)
{
string[] array = param.Split(XStringFormatHelper.Separator);
bool flag = array.Length != 2;
bool result;
if (flag)
{
result = false;
}
else
{
uid = ulong.Parse(array[0]);
name = XStringFormatHelper.UnEscape(array[1]);
result = true;
}
return result;
}
public static bool ParseTeamParam(string param, ref int teamid, ref uint expid)
{
string[] array = param.Split(XStringFormatHelper.Separator);
bool flag = array.Length != 2;
bool result;
if (flag)
{
result = false;
}
else
{
teamid = int.Parse(array[0]);
expid = uint.Parse(array[1]);
result = true;
}
return result;
}
public static void RegisterHyperLinkClicks(IXUILabelSymbol labelSymbol)
{
labelSymbol.RegisterTeamEventHandler(new HyperLinkClickEventHandler(XTeamDocument.OnTeamHyperLinkClick));
labelSymbol.RegisterPkEventHandler(new HyperLinkClickEventHandler(XQualifyingDocument.OnPkHyperLinkClick));
labelSymbol.RegisterGuildEventHandler(new HyperLinkClickEventHandler(XGuildDocument.OnGuildHyperLinkClick));
labelSymbol.RegisterDragonGuildEventHandler(new HyperLinkClickEventHandler(XDragonGuildDocument.OnDragonGuildHyperLinkClick));
labelSymbol.RegisterUIEventHandler(new HyperLinkClickEventHandler(XInvitationDocument.OnUIHyperLinkClick));
labelSymbol.RegisterSpectateEventHandler(new HyperLinkClickEventHandler(XInvitationDocument.OnSpectateClick));
}
public static string RemoveFormatInfo(string input)
{
bool flag = input.Contains("ui=");
string result;
if (flag)
{
result = input.Substring(0, input.IndexOf("ui="));
}
else
{
result = input;
}
return result;
}
}
}
|