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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
using System;
using KKSG;
using XMainClient.UI;
using XMainClient.UI.UICommon;
using XUtliPoolLib;
namespace XMainClient
{
internal class ArtifactFuseDocument : XDocComponent
{
public override uint ID
{
get
{
return ArtifactFuseDocument.uuID;
}
}
public static ArtifactFuseDocument Doc
{
get
{
return XSingleton<XGame>.singleton.Doc.GetXComponent(ArtifactFuseDocument.uuID) as ArtifactFuseDocument;
}
}
public ulong FuseUid
{
get
{
return this.m_fuseUid;
}
}
public ulong FusedUid
{
get
{
return this.m_fusedUid;
}
}
public int FuseStoneItemId
{
get
{
bool flag = this.m_fuseStoneItemId == -1;
if (flag)
{
this.m_fuseStoneItemId = XSingleton<XGlobalConfig>.singleton.GetInt("FuseStoneItemId");
}
return this.m_fuseStoneItemId;
}
}
public ulong LastSelectUid
{
get
{
return this.m_lastSelectUid;
}
}
public new static readonly uint uuID = XSingleton<XCommon>.singleton.XHash("ArtifactFuseDocument");
public static XTableAsyncLoader AsyncLoader = new XTableAsyncLoader();
private ulong m_fuseUid = 0UL;
private ulong m_fusedUid = 0UL;
private int m_fuseStoneItemId = -1;
private ulong m_lastSelectUid = 0UL;
public bool UseFuseStone = true;
public ArtifactFuseHandler Handler;
public static void Execute(OnLoadedCallback callback = null)
{
ArtifactFuseDocument.AsyncLoader.Execute(callback);
}
public override void OnAttachToHost(XObject host)
{
base.OnAttachToHost(host);
}
protected override void EventSubscribe()
{
base.EventSubscribe();
}
public override void OnDetachFromHost()
{
base.OnDetachFromHost();
}
protected override void OnReconnected(XReconnectedEventArgs arg)
{
bool flag = this.m_fuseUid > 0UL;
if (flag)
{
XItem itemByUID = XBagDocument.BagDoc.GetItemByUID(this.m_fuseUid);
bool flag2 = itemByUID == null;
if (flag2)
{
this.m_fuseUid = 0UL;
}
}
bool flag3 = this.m_fusedUid > 0UL;
if (flag3)
{
XItem itemByUID2 = XBagDocument.BagDoc.GetItemByUID(this.m_fusedUid);
bool flag4 = itemByUID2 == null;
if (flag4)
{
this.m_fusedUid = 0UL;
}
}
this.RefreshUi(FuseEffectType.None);
}
public override void OnEnterSceneFinally()
{
base.OnEnterSceneFinally();
}
public void RefreshUi(FuseEffectType type = FuseEffectType.None)
{
bool flag = this.Handler != null && this.Handler.IsVisible();
if (flag)
{
this.Handler.RefreshUi(type);
}
ArtifactDeityStoveDocument.Doc.RefreshUi();
}
public bool IsSelectUid(ulong uid)
{
return this.m_fusedUid == uid || this.m_fuseUid == uid;
}
public void ResetSelectUid(bool isRefeshUi, FuseEffectType type = FuseEffectType.None)
{
this.m_fuseUid = 0UL;
this.m_fusedUid = 0UL;
if (isRefeshUi)
{
this.RefreshUi(type);
}
}
public void AddItem(ulong uid)
{
bool flag = this.m_fuseUid == 0UL;
if (flag)
{
this.m_fuseUid = uid;
}
else
{
XItem itemByUID = XBagDocument.BagDoc.GetItemByUID(this.m_fuseUid);
bool flag2 = itemByUID == null;
if (flag2)
{
this.m_fuseUid = uid;
}
else
{
bool flag3 = XBagDocument.BagDoc.ArtifactBag.HasItem(uid);
if (flag3)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("EquipedArtifactCannotFuse"), "fece00");
return;
}
XItem itemByUID2 = XBagDocument.BagDoc.GetItemByUID(uid);
bool flag4 = itemByUID2 == null;
if (flag4)
{
XSingleton<XDebug>.singleton.AddErrorLog(string.Format("not find this uid = {0}", uid), null, null, null, null, null);
return;
}
bool flag5 = itemByUID.itemConf == null || itemByUID2.itemConf == null;
if (flag5)
{
return;
}
bool flag6 = itemByUID.itemConf.ItemQuality != itemByUID2.itemConf.ItemQuality;
if (flag6)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("FuseNotTips"), "fece00");
return;
}
ArtifactListTable.RowData artifactListRowData = ArtifactDocument.GetArtifactListRowData((uint)itemByUID.itemID);
bool flag7 = artifactListRowData == null;
if (flag7)
{
XSingleton<XDebug>.singleton.AddErrorLog(string.Format("artifactlist not find this itemId = {0}", itemByUID.itemID), null, null, null, null, null);
return;
}
ArtifactListTable.RowData artifactListRowData2 = ArtifactDocument.GetArtifactListRowData((uint)itemByUID2.itemID);
bool flag8 = artifactListRowData2 == null;
if (flag8)
{
XSingleton<XDebug>.singleton.AddErrorLog(string.Format("artifactlist not find this itemId = {0}", itemByUID2.itemID), null, null, null, null, null);
return;
}
bool flag9 = artifactListRowData.ArtifactPos != artifactListRowData2.ArtifactPos;
if (flag9)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("FuseNotTips"), "fece00");
return;
}
bool flag10 = this.m_fusedUid > 0UL;
if (flag10)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("FuseRepleaseSuc"), "fece00");
}
this.m_fusedUid = uid;
}
}
this.RefreshUi(FuseEffectType.None);
}
public void TakeOut(ulong uid)
{
bool flag = uid == this.m_fuseUid;
if (flag)
{
this.m_fuseUid = 0UL;
}
else
{
bool flag2 = uid == this.m_fusedUid;
if (!flag2)
{
XSingleton<XDebug>.singleton.AddGreenLog("this item not put in uid = " + uid.ToString(), null, null, null, null, null);
return;
}
this.m_fusedUid = 0UL;
}
this.RefreshUi(FuseEffectType.None);
}
public void ReqFuse()
{
this.m_lastSelectUid = this.m_fuseUid;
RpcC2G_ArtifactDeityStoveOp rpcC2G_ArtifactDeityStoveOp = new RpcC2G_ArtifactDeityStoveOp();
rpcC2G_ArtifactDeityStoveOp.oArg.type = ArtifactDeityStoveOpType.ArtifactDeityStove_Fuse;
rpcC2G_ArtifactDeityStoveOp.oArg.uid1 = this.m_fuseUid;
rpcC2G_ArtifactDeityStoveOp.oArg.uid2 = this.m_fusedUid;
rpcC2G_ArtifactDeityStoveOp.oArg.isUsedStone = this.UseFuseStone;
XSingleton<XClientNetwork>.singleton.Send(rpcC2G_ArtifactDeityStoveOp);
}
public void OnReqFuseBack(ArtifactDeityStoveOpRes oRes)
{
bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
if (flag)
{
bool flag2 = oRes.errorcode == ErrorCode.ERR_ARTIFACT_FUSEFAILED;
if (flag2)
{
this.m_fusedUid = 0UL;
this.RefreshUi(FuseEffectType.Fail);
}
else
{
XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
}
}
else
{
this.ResetSelectUid(true, FuseEffectType.Sucess);
}
}
public void ResetSetting()
{
DlgBase<ModalDlg, ModalDlgBehaviour>.singleton.ForceSetTipsValue(XTempTipDefine.OD_FUSE_CONFIRM, false);
XOptionsDocument specificDocument = XDocuments.GetSpecificDocument<XOptionsDocument>(XOptionsDocument.uuID);
specificDocument.SetValue(XOptionsDefine.OD_NO_FUSE_CONFIRM, 0, true);
}
}
}
|