diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process')
1734 files changed, 33473 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs new file mode 100644 index 00000000..47160778 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcA2C_AudioAIDNtf
+ {
+ public static void Process(PtcA2C_AudioAIDNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs.meta new file mode 100644 index 00000000..2fccf412 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcA2C_AudioAIDNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 865403d02cc5c75479a7327239fbc9ab +timeCreated: 1611404054 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs new file mode 100644 index 00000000..ddf6e5ad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs @@ -0,0 +1,26 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AIDebugInfo
+ {
+ public static void Process(PtcG2C_AIDebugInfo roPtc)
+ {
+ string[] array = roPtc.Data.msg.Split(new char[]
+ {
+ '\n'
+ });
+ XSingleton<XDebug>.singleton.AddLog("<color=cyan>--------START--------</color>", null, null, null, null, null, XDebugColor.XDebug_None);
+ for (int i = 0; i < array.Length; i++)
+ {
+ bool flag = array[i].Length == 0;
+ if (!flag)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog(array[i], null, null, null, null, null);
+ }
+ }
+ XSingleton<XDebug>.singleton.AddLog("<color=cyan>--------END--------</color>", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs.meta new file mode 100644 index 00000000..18a11a6f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AIDebugInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3fb7f7c9ad1be9341866245f455e5e36 +timeCreated: 1611403612 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs new file mode 100644 index 00000000..7b9ed7b5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AbsPartyNtf
+ {
+ public static void Process(PtcG2C_AbsPartyNtf roPtc)
+ {
+ XAbyssPartyDocument specificDocument = XDocuments.GetSpecificDocument<XAbyssPartyDocument>(XAbyssPartyDocument.uuID);
+ specificDocument.SetAbyssIndex(roPtc.Data.aby);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs.meta new file mode 100644 index 00000000..19baa10b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AbsPartyNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7a478f2077d673847b2e117093216bf8 +timeCreated: 1611403988 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs new file mode 100644 index 00000000..f977fd6b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ActivityRoleNotify
+ {
+ public static void Process(PtcG2C_ActivityRoleNotify roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs.meta new file mode 100644 index 00000000..c37d6d53 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ActivityRoleNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 04c1ea02b60498843ab6b5bfdbdab384 +timeCreated: 1611402961 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs new file mode 100644 index 00000000..9466783b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs @@ -0,0 +1,17 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AllGiftIBItemNtf
+ {
+ public static void Process(PtcG2C_AllGiftIBItemNtf roPtc)
+ {
+ bool flag = roPtc.Data.gift != null;
+ if (flag)
+ {
+ DlgBase<GiftClaimDlg, GiftClaimBehaviour>.singleton.HanderGift(roPtc.Data.gift);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs.meta new file mode 100644 index 00000000..4c55d9cf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllGiftIBItemNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 788dc9c47c2b48e4e9973ae4cdc17945 +timeCreated: 1611403981 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs new file mode 100644 index 00000000..8ab8a972 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AllyMatchRoleIDNotify
+ {
+ public static void Process(PtcG2C_AllyMatchRoleIDNotify roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ bool bInTeam = specificDocument.bInTeam;
+ if (bInTeam)
+ {
+ specificDocument.MyTeam.OnEntityMatchingInfo(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs.meta new file mode 100644 index 00000000..f0e7cee7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AllyMatchRoleIDNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5f98e3b13605efd4d87651fa2efadd7b +timeCreated: 1611403830 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs new file mode 100644 index 00000000..ef996d79 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AntiAddictionRemindNtf
+ {
+ public static void Process(PtcG2C_AntiAddictionRemindNtf roPtc)
+ {
+ AdditionRemindDocument specificDocument = XDocuments.GetSpecificDocument<AdditionRemindDocument>(AdditionRemindDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.OnRecieveAdditionTip(roPtc.Data.remindmsg);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs.meta new file mode 100644 index 00000000..555d043b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AntiAddictionRemindNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 48a97275977f8594b927f7cbc1318467 +timeCreated: 1611403659 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs new file mode 100644 index 00000000..52c71ac1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_AttributeChangeNotify
+ {
+ public static void Process(PtcG2C_AttributeChangeNotify roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uID);
+ bool flag = entity != null;
+ if (flag)
+ {
+ entity.Net.OnAttributeChangedNotify(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs.meta new file mode 100644 index 00000000..3fe31844 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_AttributeChangeNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ed2dd86887677e147bf9c08c3a512534 +timeCreated: 1611404790 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs new file mode 100644 index 00000000..ba424ce6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BFFightTimeNtf
+ {
+ public static void Process(PtcG2C_BFFightTimeNtf roPtc)
+ {
+ XBattleFieldBattleDocument.Doc.SetTime(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs.meta new file mode 100644 index 00000000..98f8ed71 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BFFightTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3d5e34b6d01853848a96b9c79fe4f513 +timeCreated: 1611403604 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs new file mode 100644 index 00000000..7c3fc22c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BMFightTimeNtf
+ {
+ public static void Process(PtcG2C_BMFightTimeNtf roPtc)
+ {
+ XBigMeleeBattleDocument specificDocument = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument.SetBattleTime(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs.meta new file mode 100644 index 00000000..9ee92963 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMFightTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cc98ff5ed1511b1439fe8c5a37c89862 +timeCreated: 1611404551 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs new file mode 100644 index 00000000..a1f58e1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BMReadyTimeNtf
+ {
+ public static void Process(PtcG2C_BMReadyTimeNtf roPtc)
+ {
+ XSkyArenaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaEntranceDocument>(XSkyArenaEntranceDocument.uuID);
+ specificDocument.SetTime(roPtc.Data.time);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs.meta new file mode 100644 index 00000000..d27ed618 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMReadyTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 11db8d0efed73834d9a36b5223adca5d +timeCreated: 1611403240 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs new file mode 100644 index 00000000..587a3aed --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BMRoleSceneSyncNtf
+ {
+ public static void Process(PtcG2C_BMRoleSceneSyncNtf roPtc)
+ {
+ XBigMeleeBattleDocument specificDocument = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument.SetBattleData(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs.meta new file mode 100644 index 00000000..79e48a0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BMRoleSceneSyncNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b59d8bcc040926246b9194985a1b1604 +timeCreated: 1611404396 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs new file mode 100644 index 00000000..dad7b592 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BackFlowOpenNtf
+ {
+ public static void Process(PtcG2C_BackFlowOpenNtf roPtc)
+ {
+ XBackFlowDocument.Doc.ShowBackFlowDlg();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs.meta new file mode 100644 index 00000000..2febf7d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BackFlowOpenNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 70995ef84bedbe144ac680b86bd232db +timeCreated: 1611403932 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs new file mode 100644 index 00000000..1dbd421f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs @@ -0,0 +1,30 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleFieldReadyInfoNtf
+ {
+ public static void Process(PtcG2C_BattleFieldReadyInfoNtf roPtc)
+ {
+ bool flag = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler != null && roPtc.Data.failedSpecified && roPtc.Data.failed;
+ if (flag)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler.NextWaitStart();
+ }
+ bool flag2 = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler != null && roPtc.Data.endSpecified && roPtc.Data.end;
+ if (flag2)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler.SetWaitEnd();
+ }
+ XSkyArenaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaEntranceDocument>(XSkyArenaEntranceDocument.uuID);
+ specificDocument.SetTime(roPtc.Data.time);
+ bool flag3 = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler != null && roPtc.Data.roundSpecified;
+ if (flag3)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler.RefreshMapName((int)roPtc.Data.round);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs.meta new file mode 100644 index 00000000..e54b7913 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReadyInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ca9ee0d07c640a347b7f9cacd6409146 +timeCreated: 1611404542 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs new file mode 100644 index 00000000..c613e291 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleFieldReliveNtf
+ {
+ public static void Process(PtcG2C_BattleFieldReliveNtf roPtc)
+ {
+ XBattleFieldBattleDocument.Doc.SetReviveTime(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs.meta new file mode 100644 index 00000000..b8722dca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldReliveNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ba6da14ea0982e84eb45df5aa49219ed +timeCreated: 1611404436 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs new file mode 100644 index 00000000..7fb3cb43 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleFieldRoleAgainstNtf
+ {
+ public static void Process(PtcG2C_BattleFieldRoleAgainstNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs.meta new file mode 100644 index 00000000..88869832 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleFieldRoleAgainstNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4d730d386d3a07e459e552fcef1f5d2d +timeCreated: 1611403695 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs new file mode 100644 index 00000000..b509f387 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs @@ -0,0 +1,49 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleResultNtf
+ {
+ public static void Process(PtcG2C_BattleResultNtf roPtc)
+ {
+ bool flag = roPtc.Data == null || roPtc.Data.stageInfo == null;
+ if (!flag)
+ {
+ XLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLevelRewardDocument>(XLevelRewardDocument.uuID);
+ bool flag2 = !specificDocument.RequestServer && !XSingleton<XGame>.singleton.SyncMode;
+ if (!flag2)
+ {
+ bool haveBattleResultData = XSingleton<XLevelFinishMgr>.singleton.HaveBattleResultData;
+ if (!haveBattleResultData)
+ {
+ bool flag3 = specificDocument.CurrentScene != roPtc.Data.stageInfo.stageID;
+ if (!flag3)
+ {
+ XSingleton<XLevelFinishMgr>.singleton.HaveBattleResultData = true;
+ specificDocument.RequestServer = false;
+ XSingleton<XCutScene>.singleton.Stop(true);
+ bool isStageFailed = roPtc.Data.stageInfo.isStageFailed;
+ if (isStageFailed)
+ {
+ XSingleton<XLevelFinishMgr>.singleton.OnLevelFailed();
+ }
+ else
+ {
+ bool flag4 = !XSingleton<XScene>.singleton.bSpectator;
+ if (flag4)
+ {
+ specificDocument.SetBattleResultData(roPtc.Data);
+ }
+ XSingleton<XLevelFinishMgr>.singleton.IsCurrentLevelWin = true;
+ XSingleton<XLevelFinishMgr>.singleton.StartLevelFinish();
+ }
+ XSingleton<XOperationRecord>.singleton.DoScriptRecord(roPtc.Data.stageInfo.stageID + "after");
+ XStaticSecurityStatistics.OnEnd();
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs.meta new file mode 100644 index 00000000..b7c329e7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleResultNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5e1d8c6ce1cadde49b6223b1dd77e962 +timeCreated: 1611403810 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs new file mode 100644 index 00000000..8d308120 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleStatisticsNtf
+ {
+ public static void Process(PtcG2C_BattleStatisticsNtf roPtc)
+ {
+ XCombatStatisticsDocument specificDocument = XDocuments.GetSpecificDocument<XCombatStatisticsDocument>(XCombatStatisticsDocument.uuID);
+ specificDocument.OnGetStatistics(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs.meta new file mode 100644 index 00000000..25527539 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleStatisticsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 29d96ec0af514ba40a933b6d578c0b98 +timeCreated: 1611403478 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs new file mode 100644 index 00000000..8bae9201 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BattleWatcherNtf
+ {
+ public static void Process(PtcG2C_BattleWatcherNtf roPtc)
+ {
+ XSpectateLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateLevelRewardDocument>(XSpectateLevelRewardDocument.uuID);
+ specificDocument.SetData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs.meta new file mode 100644 index 00000000..b4273000 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BattleWatcherNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c6ff8aa23cac74b48b040349c2c852e6 +timeCreated: 1611404528 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs new file mode 100644 index 00000000..4712103f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs @@ -0,0 +1,16 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BigMeleePointNtf
+ {
+ public static void Process(PtcG2C_BigMeleePointNtf roPtc)
+ {
+ bool flag = XBigMeleeBattleDocument.Doc.battleHandler != null;
+ if (flag)
+ {
+ XBigMeleeBattleDocument.Doc.battleHandler.SetGetPointAnimation(roPtc.Data.point, roPtc.Data.posxz);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs.meta new file mode 100644 index 00000000..6674f651 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bcea023760a66df409832c3d21b30039 +timeCreated: 1611404449 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs new file mode 100644 index 00000000..f64283c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BigMeleePointOutLookNtf
+ {
+ public static void Process(PtcG2C_BigMeleePointOutLookNtf roPtc)
+ {
+ bool flag = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_BIGMELEE_FIGHT;
+ if (flag)
+ {
+ XBigMeleeBattleDocument.Doc.SetPoint(roPtc.Data.roleid, roPtc.Data.point);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs.meta new file mode 100644 index 00000000..9c54c7e8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleePointOutLookNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 04daf64801124a747b2541c27c85e0fc +timeCreated: 1611402962 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs new file mode 100644 index 00000000..45ce42e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BigMeleeReliveNtf
+ {
+ public static void Process(PtcG2C_BigMeleeReliveNtf roPtc)
+ {
+ XBigMeleeBattleDocument specificDocument = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument.SetReviveTime(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs.meta new file mode 100644 index 00000000..4eed6a1e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BigMeleeReliveNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 47218d776ec2b9e4999aa82dbc2d3350 +timeCreated: 1611403652 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs new file mode 100644 index 00000000..a56eb7cb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs @@ -0,0 +1,32 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BossRushOneFinishNtf
+ {
+ public static void Process(PtcG2C_BossRushOneFinishNtf roPtc)
+ {
+ XBossBushDocument specificDocument = XDocuments.GetSpecificDocument<XBossBushDocument>(XBossBushDocument.uuID);
+ bool win = roPtc.Data.win;
+ if (win)
+ {
+ bool flag = specificDocument.respData.currank < 5;
+ if (flag)
+ {
+ DlgBase<BattleContinueDlg, BattleContinueDlgBehaviour>.singleton.ShowBossrushResult();
+ }
+ }
+ else
+ {
+ bool flag2 = specificDocument.respData.currank <= 1;
+ if (flag2)
+ {
+ XSingleton<XLevelFinishMgr>.singleton.ForceLevelFinish(false);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs.meta new file mode 100644 index 00000000..20bcdb5e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BossRushOneFinishNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1e7420a3452d3d940a43298acd27c8f7 +timeCreated: 1611403364 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs new file mode 100644 index 00000000..7bfae4b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs @@ -0,0 +1,45 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_BuffNotify
+ {
+ public static void Process(PtcG2C_BuffNotify roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uid);
+ bool flag = entity != null && !entity.Deprecated && entity.Buffs != null;
+ if (flag)
+ {
+ bool flag2 = roPtc.Data.removebuff != null;
+ if (flag2)
+ {
+ entity.Buffs.RemoveBuffByServer(roPtc.Data.removebuff);
+ BuffInfo buffInfo = roPtc.Data.removebuff;
+ }
+ bool flag3 = roPtc.Data.allbuffsinfo != null;
+ if (flag3)
+ {
+ entity.Buffs.SetServerAllBuffsInfo(roPtc.Data.allbuffsinfo);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("All buff data is missing, UID = ", roPtc.Data.uid.ToString(), null, null, null, null);
+ }
+ bool flag4 = roPtc.Data.addbuff != null;
+ if (flag4)
+ {
+ entity.Buffs.AddBuffByServer(roPtc.Data.addbuff);
+ BuffInfo buffInfo = roPtc.Data.addbuff;
+ }
+ bool flag5 = roPtc.Data.updatebuff != null;
+ if (flag5)
+ {
+ entity.Buffs.UpdateBuffByServer(roPtc.Data.updatebuff);
+ BuffInfo buffInfo = roPtc.Data.updatebuff;
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs.meta new file mode 100644 index 00000000..6ab6a5d9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_BuffNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a95c060161ce8a64988cb9655f628dcf +timeCreated: 1611404298 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs new file mode 100644 index 00000000..d5ea5fb9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs @@ -0,0 +1,23 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CdCall
+ {
+ public static void Process(PtcG2C_CdCall roPtc)
+ {
+ bool flag = XSingleton<XEntityMgr>.singleton.Player != null;
+ if (flag)
+ {
+ XSkillCore skill = XSingleton<XEntityMgr>.singleton.Player.SkillMgr.GetSkill(roPtc.Data.skillid);
+ bool flag2 = skill != null;
+ if (flag2)
+ {
+ skill.OnCdCall(roPtc.Data.leftrunningtimeSpecified ? roPtc.Data.leftrunningtime : 0, roPtc.Data.onsyntonicSpecified);
+ XSingleton<XEntityMgr>.singleton.Player.Net.LastReqSkill = skill.ID;
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs.meta new file mode 100644 index 00000000..8d6ba883 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CdCall.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2024766d71db2f0458f06df085f46b45 +timeCreated: 1611403404 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs new file mode 100644 index 00000000..be123f28 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs @@ -0,0 +1,22 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChangeFashionNotify
+ {
+ public static void Process(PtcG2C_ChangeFashionNotify roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.roleID);
+ bool flag = entity != null;
+ if (flag)
+ {
+ XEquipChangeEventArgs @event = XEventPool<XEquipChangeEventArgs>.GetEvent();
+ @event.ItemID = roPtc.Data.newItemID;
+ @event.EquipPart = roPtc.Data.position;
+ @event.Firer = entity;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs.meta new file mode 100644 index 00000000..01279c7b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeFashionNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1b53e583000d14d43921b9313d075106 +timeCreated: 1611403315 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs new file mode 100644 index 00000000..796f0ec1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChangeNameCountNtf
+ {
+ public static void Process(PtcG2C_ChangeNameCountNtf roPtc)
+ {
+ XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
+ specificDocument.SetPlayerRenameTimes(roPtc.Data.count);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs.meta new file mode 100644 index 00000000..0e555a53 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeNameCountNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 620f273a306f8a24abf3f5fc63470ebb +timeCreated: 1611403840 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs new file mode 100644 index 00000000..387eaabe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChangeSupplementNtf
+ {
+ public static void Process(PtcG2C_ChangeSupplementNtf roPtc)
+ {
+ bool flag = roPtc.Data.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.errorcode, "fece00");
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs.meta new file mode 100644 index 00000000..49efd2b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 317e0b5c05c462649848174575388a30 +timeCreated: 1611403545 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs new file mode 100644 index 00000000..912b0c8d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChatNotifyG2C
+ {
+ public static void Process(PtcG2C_ChatNotifyG2C roPtc)
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ bool flag = (ulong)roPtc.Data.chatinfo.channel == (ulong)((long)XFastEnumIntEqualityComparer<ChatChannelType>.ToInt(ChatChannelType.Battle)) || (ulong)roPtc.Data.chatinfo.channel == (ulong)((long)XFastEnumIntEqualityComparer<ChatChannelType>.ToInt(ChatChannelType.Spectate)) || (ulong)roPtc.Data.chatinfo.channel == (ulong)((long)XFastEnumIntEqualityComparer<ChatChannelType>.ToInt(ChatChannelType.Curr));
+ if (flag)
+ {
+ specificDocument.OnReceiveChatInfo(roPtc.Data.chatinfo);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs.meta new file mode 100644 index 00000000..9c361c60 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatNotifyG2C.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09ee3d0480f99ee4e8fa62b2c517b9ec +timeCreated: 1611403160 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs new file mode 100644 index 00000000..adfff64a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChatOfflineNotify
+ {
+ public static void Process(PtcM2C_MCChatOffLineNotify roPtc)
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.ReceiveOfflineMsg(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs.meta new file mode 100644 index 00000000..d6ae651f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChatOfflineNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 33d555c28b4f6344db02e5830ce0d176 +timeCreated: 1611403553 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs new file mode 100644 index 00000000..fd96886f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CheckinInfoNotify
+ {
+ public static void Process(PtcG2C_CheckinInfoNotify roPtc)
+ {
+ XLoginRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLoginRewardDocument>(XLoginRewardDocument.uuID);
+ specificDocument.OnCheckinInfoNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs.meta new file mode 100644 index 00000000..0f1dd357 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CheckinInfoNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 805bb5a98e3690e4a9b32dbdad90290e +timeCreated: 1611404033 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs new file mode 100644 index 00000000..7204ce9f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs @@ -0,0 +1,38 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ClientOnlyBuffNotify
+ {
+ public static void Process(PtcG2C_ClientOnlyBuffNotify roPtc)
+ {
+ XRole xrole = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.roleid) as XRole;
+ bool flag = !XEntity.ValideEntity(xrole);
+ if (!flag)
+ {
+ for (int i = 0; i < roPtc.Data.buffs.Count; i++)
+ {
+ XBuffAddEventArgs @event = XEventPool<XBuffAddEventArgs>.GetEvent();
+ Buff buff = roPtc.Data.buffs[i];
+ @event.xBuffDesc.BuffID = buff.buffID;
+ @event.xBuffDesc.BuffLevel = buff.buffLevel;
+ @event.Firer = xrole;
+ @event.xBuffDesc.CasterID = roPtc.Data.casterid;
+ bool skillIDSpecified = buff.skillIDSpecified;
+ if (skillIDSpecified)
+ {
+ @event.xBuffDesc.SkillID = buff.skillID;
+ }
+ bool effecttimeSpecified = buff.effecttimeSpecified;
+ if (effecttimeSpecified)
+ {
+ @event.xBuffDesc.EffectTime = buff.effecttime;
+ }
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs.meta new file mode 100644 index 00000000..f9d6d8c8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ClientOnlyBuffNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1a36ff3da13111146b7f089357c901cf +timeCreated: 1611403308 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs new file mode 100644 index 00000000..326aa42e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CloseChooseHeroNtf
+ {
+ public static void Process(PtcG2C_CloseChooseHeroNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetUIDeathGoState(false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs.meta new file mode 100644 index 00000000..dad10377 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CloseChooseHeroNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 37977bfd56abe46459182e4e1c06f58d +timeCreated: 1611403566 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs new file mode 100644 index 00000000..a757fb3b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs @@ -0,0 +1,17 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CompleteAchivement
+ {
+ public static void Process(PtcG2C_CompleteAchivement roPtc)
+ {
+ XAchievementDocument specificDocument = XDocuments.GetSpecificDocument<XAchievementDocument>(XAchievementDocument.uuID);
+ specificDocument.SetAchivementState(roPtc.Data.achivementID, roPtc.Data.state);
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(XSysDefine.XSys_Reward_Achivement, true);
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(XSysDefine.XSys_ServerActivity, true);
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(XSysDefine.XSys_LevelReward, true);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs.meta new file mode 100644 index 00000000..2ba05c7e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CompleteAchivement.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 81e9c6addc8017c4d96c710d6970667d +timeCreated: 1611404038 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs new file mode 100644 index 00000000..65bb8bda --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs @@ -0,0 +1,22 @@ +using System;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CorrectPosition
+ {
+ public static void Process(PtcG2C_CorrectPosition roPtc)
+ {
+ XEntity entityConsiderDeath = XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(roPtc.Data.uid);
+ bool flag = entityConsiderDeath != null;
+ if (flag)
+ {
+ Vector3 pos;
+ pos = new Vector3((float)roPtc.Data.pos_x / 100f, (float)roPtc.Data.pos_y / 100f, (float)roPtc.Data.pos_z / 100f);
+ Vector3 face = XSingleton<XCommon>.singleton.FloatToAngle((float)roPtc.Data.face / 10f);
+ entityConsiderDeath.CorrectMe(pos, face, false, roPtc.Data.bTransfer);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs.meta new file mode 100644 index 00000000..587d22ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CorrectPosition.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ddd7b2488f907e446aec46f91d6ae34c +timeCreated: 1611404684 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs new file mode 100644 index 00000000..72e30810 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CountDownNtf
+ {
+ public static void Process(PtcG2C_CountDownNtf roPtc)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.LeaveSceneCountDown(roPtc.Data.time);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs.meta new file mode 100644 index 00000000..57e254fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CountDownNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6c13bcc0e9bb33a4fadfe18dff29378c +timeCreated: 1611403894 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs new file mode 100644 index 00000000..5773c4d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CoverDesignationNtf
+ {
+ public static void Process(PtcG2C_CoverDesignationNtf roPtc)
+ {
+ XDesignationDocument xdesignationDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XDesignationDocument.uuID) as XDesignationDocument;
+ xdesignationDocument.SetCoverDesignationID(roPtc.Data.designationID, roPtc.Data.desname);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs.meta new file mode 100644 index 00000000..dffdf744 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CoverDesignationNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4bdf572ffb25b654780263dd52c794cb +timeCreated: 1611403688 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs new file mode 100644 index 00000000..67e13ab9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_CustomBattleLoadingNtf
+ {
+ public static void Process(PtcG2C_CustomBattleLoadingNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs.meta new file mode 100644 index 00000000..b30b532d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_CustomBattleLoadingNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 505480c98801943439a9d1643de591d7 +timeCreated: 1611403703 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs new file mode 100644 index 00000000..54310dfe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DPSNotify
+ {
+ public static void Process(PtcG2C_DPSNotify roPtc)
+ {
+ XCombatStatisticsDocument specificDocument = XDocuments.GetSpecificDocument<XCombatStatisticsDocument>(XCombatStatisticsDocument.uuID);
+ specificDocument.OnGetDps((double)roPtc.Data.dps);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs.meta new file mode 100644 index 00000000..570f6e3e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DPSNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5b1d3d5e436cee545900a0c2fac199fb +timeCreated: 1611403797 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs new file mode 100644 index 00000000..85996ec1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs @@ -0,0 +1,29 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DeathNotify
+ {
+ public static void Process(PtcG2C_DeathNotify roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uID);
+ bool flag = entity != null;
+ if (flag)
+ {
+ bool isPlayer = entity.IsPlayer;
+ if (isPlayer)
+ {
+ XReviveDocument specificDocument = XDocuments.GetSpecificDocument<XReviveDocument>(XReviveDocument.uuID);
+ specificDocument.SetReviveData((int)roPtc.Data.revivecount, (int)roPtc.Data.costrevivecount, roPtc.Data.type);
+ }
+ bool flag2 = entity.Machine != null && !entity.Machine.Enabled;
+ if (flag2)
+ {
+ entity.Machine.Enabled = true;
+ }
+ entity.Net.OnDeathNotify(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs.meta new file mode 100644 index 00000000..0f115872 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DeathNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6c58c242e834fe9468a3dfea3208f7ce +timeCreated: 1611403895 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs new file mode 100644 index 00000000..736b8088 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DisplayAddItem
+ {
+ public static void Process(PtcG2C_DisplayAddItem roPtc)
+ {
+ XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument.ItemUpdate(roPtc.Data.add_item_id, roPtc.Data.del_item_id);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs.meta new file mode 100644 index 00000000..431573cb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DisplayAddItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0869b8c4b6ed56d45be9558cef7e1463 +timeCreated: 1611402970 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs new file mode 100644 index 00000000..5be1690b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DoodadItemAddNtf
+ {
+ public static void Process(PtcG2C_DoodadItemAddNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs.meta new file mode 100644 index 00000000..faa742f6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemAddNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 609bedf64380710488830c29bb36e0e5 +timeCreated: 1611403835 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs new file mode 100644 index 00000000..d1fc6723 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs @@ -0,0 +1,16 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DoodadItemSkillsNtf
+ {
+ public static void Process(PtcG2C_DoodadItemSkillsNtf roPtc)
+ {
+ bool flag = XRaceDocument.Doc.RaceHandler != null;
+ if (flag)
+ {
+ XRaceDocument.Doc.RaceHandler.RefreshDoodad(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs.meta new file mode 100644 index 00000000..93826066 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemSkillsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9553c527441ce0c4ba927a91d4cfad2a +timeCreated: 1611404181 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs new file mode 100644 index 00000000..8fbf3070 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_DoodadItemUseNtf
+ {
+ public static void Process(PtcG2C_DoodadItemUseNtf roPtc)
+ {
+ XRaceDocument.Doc.AddInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs.meta new file mode 100644 index 00000000..a1ddecbb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_DoodadItemUseNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e00053117ad5f524a978cfe98c601f94 +timeCreated: 1611404695 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs new file mode 100644 index 00000000..8f118593 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs @@ -0,0 +1,16 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_EnemyDorpDoodadNtf
+ {
+ public static void Process(PtcG2C_EnemyDorpDoodadNtf roPtc)
+ {
+ for (int i = 0; i < roPtc.Data.doodadInfo.Count; i++)
+ {
+ XSingleton<XLevelDoodadMgr>.singleton.ReceiveDoodadServerInfo(roPtc.Data.doodadInfo[i]);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs.meta new file mode 100644 index 00000000..8f5b216e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnemyDorpDoodadNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9ef15b9843d702646a222a81f072507b +timeCreated: 1611404243 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs new file mode 100644 index 00000000..0f7bd14d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs @@ -0,0 +1,14 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_EnterSceneCoolDownNotify
+ {
+ public static void Process(PtcG2C_EnterSceneCoolDownNotify roPtc)
+ {
+ for (int i = 0; i < roPtc.Data.groupid.Count; i++)
+ {
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs.meta new file mode 100644 index 00000000..ad8ece1b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneCoolDownNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cc831638fbb113a4b8cb07c95e054683 +timeCreated: 1611404550 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs new file mode 100644 index 00000000..c16d06c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs @@ -0,0 +1,23 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_EnterSceneNtf
+ {
+ public static void Process(PtcG2C_EnterSceneNtf roPtc)
+ {
+ XSingleton<XClientNetwork>.singleton.XLoginStep = XLoginStep.Playing;
+ XHeroBattleDocument.LoadSkillHandler = roPtc.Data.canMorph;
+ bool sceneReady = XSingleton<XScene>.singleton.SceneReady;
+ if (sceneReady)
+ {
+ XSingleton<XScene>.singleton.SceneEnterTo(roPtc.Data, true);
+ }
+ else
+ {
+ XSingleton<XScene>.singleton.StoreSceneConfig(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs.meta new file mode 100644 index 00000000..d7e307f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EnterSceneNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 572300cc9d0cfc042bedbf9207f36e1e +timeCreated: 1611403748 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs new file mode 100644 index 00000000..07aaec21 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_EntityTargetChangeNtf
+ {
+ public static void Process(PtcG2C_EntityTargetChangeNtf roPtc)
+ {
+ bool flag = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_MOBA;
+ if (flag)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.OnEntityTargetChange(roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs.meta new file mode 100644 index 00000000..9611d20d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_EntityTargetChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 067fad68c02f7d141a3f43fdc0e5a917 +timeCreated: 1611402965 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs new file mode 100644 index 00000000..c969f33d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs @@ -0,0 +1,13 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ExecuteLevelScriptNtf
+ {
+ public static void Process(PtcG2C_ExecuteLevelScriptNtf roPtc)
+ {
+ XSingleton<XLevelScriptMgr>.singleton.RunScript(roPtc.Data.script);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs.meta new file mode 100644 index 00000000..41487ce0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExecuteLevelScriptNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 159e130db37142c42ac6de9c257f32b1 +timeCreated: 1611403264 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs new file mode 100644 index 00000000..c1e78c1c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ExpFindBackNtf
+ {
+ public static void Process(PtcG2C_ExpFindBackNtf roPtc)
+ {
+ XFindExpDocument.Doc.OnGetExpInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs.meta new file mode 100644 index 00000000..c600c711 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ExpFindBackNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 38c49959231d00941ae715f29e94f109 +timeCreated: 1611403590 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs new file mode 100644 index 00000000..3ef7bd13 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FashoinChangedNtf
+ {
+ public static void Process(PtcG2C_FashoinChangedNtf roPtc)
+ {
+ XFashionDocument specificDocument = XDocuments.GetSpecificDocument<XFashionDocument>(XFashionDocument.uuID);
+ specificDocument.UpdateFashionData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs.meta new file mode 100644 index 00000000..a7193376 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FashoinChangedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 06638783d65b3bd4c829ad93e49571a6 +timeCreated: 1611402965 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs new file mode 100644 index 00000000..642b57c6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FastMBConfirmNtf
+ {
+ public static void Process(PtcG2C_FastMBConfirmNtf roPtc)
+ {
+ DlgBase<XTeamBattleQuickConfirmView, XTeamBattleQuickConfirmBehaviour>.singleton.SetVisibleWithAnimation(true, null);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs.meta new file mode 100644 index 00000000..f472fbb1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FastMBConfirmNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f4baf2db943eb314b95c02835101f8fe +timeCreated: 1611404856 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs new file mode 100644 index 00000000..a557c4a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs @@ -0,0 +1,13 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FatigueRecoverTimeNotify
+ {
+ public static void Process(PtcG2C_FatigueRecoverTimeNotify roPtc)
+ {
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.ReceiveFatigueTime(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs.meta new file mode 100644 index 00000000..c8326c4c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FatigueRecoverTimeNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9228d82d8fff8794ea7e8d9de20857e4 +timeCreated: 1611404145 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs new file mode 100644 index 00000000..df1d1a5c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs @@ -0,0 +1,49 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FetchEnemyDoodadNtf
+ {
+ public static void Process(PtcG2C_FetchEnemyDoodadNtf roPtc)
+ {
+ Vector3 posid;
+ posid = new Vector3(roPtc.Data.doodadInfo.pos.x, roPtc.Data.doodadInfo.pos.y, roPtc.Data.doodadInfo.pos.z);
+ uint num = 0u;
+ XEntity p = null;
+ uint playerroll = 0u;
+ for (int i = 0; i < roPtc.Data.rollInfos.Count; i++)
+ {
+ bool flag = roPtc.Data.rollInfos[i].rollValue > num;
+ if (flag)
+ {
+ num = roPtc.Data.rollInfos[i].rollValue;
+ p = XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(roPtc.Data.rollInfos[i].roleID);
+ }
+ bool flag2 = roPtc.Data.rollInfos[i].roleID == XSingleton<XEntityMgr>.singleton.Player.ID;
+ if (flag2)
+ {
+ playerroll = roPtc.Data.rollInfos[i].rollValue;
+ }
+ bool flag3 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_PVP;
+ if (flag3)
+ {
+ XBattleCaptainPVPDocument specificDocument = XDocuments.GetSpecificDocument<XBattleCaptainPVPDocument>(XBattleCaptainPVPDocument.uuID);
+ specificDocument.AddGameInfo(roPtc.Data.rollInfos[i].roleID, roPtc.Data.doodadInfo.id);
+ }
+ else
+ {
+ bool flag4 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_CASTLE_FIGHT;
+ if (flag4)
+ {
+ XGuildTerritoryDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument2.OnAddBuff(roPtc.Data.rollInfos[i].roleID, roPtc.Data.doodadInfo.id);
+ }
+ }
+ }
+ XSingleton<XLevelDoodadMgr>.singleton.OnDoodadPickedSyncSucc(roPtc.Data.doodadInfo.index, roPtc.Data.doodadInfo.waveid, posid, p, num, playerroll);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs.meta new file mode 100644 index 00000000..2c8f9d72 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FetchEnemyDoodadNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ab27984ca9b1fe34099245ede26fb51e +timeCreated: 1611404306 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs new file mode 100644 index 00000000..c6ccb9c6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FightGroupChangeNtf
+ {
+ public static void Process(PtcG2C_FightGroupChangeNtf roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uid);
+ bool flag = entity != null;
+ if (flag)
+ {
+ entity.Attributes.OnFightGroupChange(roPtc.Data.fightgroup);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs.meta new file mode 100644 index 00000000..8adce1e9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FightGroupChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3f4cd2f07a7443c4b9aa42b844c94258 +timeCreated: 1611403610 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs new file mode 100644 index 00000000..9f411fd8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FirstPassRewardNtf
+ {
+ public static void Process(PtcG2C_FirstPassRewardNtf roPtc)
+ {
+ FirstPassDocument.Doc.RefreshOutRedDot(roPtc.Data.hasCommendReward, roPtc.Data.hasFirstPassReward);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs.meta new file mode 100644 index 00000000..7e4a7b35 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FirstPassRewardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7dd8a507ed9a35048bc91aef83fb16dd +timeCreated: 1611404003 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs new file mode 100644 index 00000000..9d381569 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FiveDayRewardNTF
+ {
+ public static void Process(PtcG2C_FiveDayRewardNTF roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs.meta new file mode 100644 index 00000000..42602c33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FiveDayRewardNTF.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e55402bd8fdf09f41a0f2c8a3770463f +timeCreated: 1611404742 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs new file mode 100644 index 00000000..2b67ffb5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FlowerRainNtf
+ {
+ public static void Process(PtcG2C_FlowerRainNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs.meta new file mode 100644 index 00000000..d87e056c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRainNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e2cb1e61642604d41914931c4fa47dc1 +timeCreated: 1611404729 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs new file mode 100644 index 00000000..944ffbee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_FlowerRankRewardNtf
+ {
+ public static void Process(PtcG2C_FlowerRankRewardNtf roPtc)
+ {
+ XFlowerRankDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument.CanGetAwardNtf();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs.meta new file mode 100644 index 00000000..2310206c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_FlowerRankRewardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bfb758eaba15b7d42aab564c6347b4b4 +timeCreated: 1611404484 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs new file mode 100644 index 00000000..59458439 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GCFSynG2CNtf
+ {
+ public static void Process(PtcG2C_GCFSynG2CNtf roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.OnGCFSynG2CNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs.meta new file mode 100644 index 00000000..014b9936 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFSynG2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0ecc59adc08f55e479ad5005ef557957 +timeCreated: 1611403206 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs new file mode 100644 index 00000000..b413e13d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GCFZhanLingNotify
+ {
+ public static void Process(PtcG2C_GCFZhanLingNotify roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.OnZhanLingNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs.meta new file mode 100644 index 00000000..d49b8f05 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GCFZhanLingNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 33538dfda844d4b41865a09ec032fa32 +timeCreated: 1611403552 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs new file mode 100644 index 00000000..df082bcd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs @@ -0,0 +1,52 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GSErrorNotify
+ {
+ public static void Process(PtcG2C_GSErrorNotify roPtc)
+ {
+ int @int = XSingleton<XGlobalConfig>.singleton.GetInt("WorldBossSceneID");
+ int int2 = XSingleton<XGlobalConfig>.singleton.GetInt("GuildBossSceneID");
+ ErrorCode errorno = (ErrorCode)roPtc.Data.errorno;
+ if (errorno != ErrorCode.ERR_SCENE_COOLDOWN)
+ {
+ bool istip = roPtc.Data.istip;
+ if (istip)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip((ErrorCode)roPtc.Data.errorno, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode((ErrorCode)roPtc.Data.errorno);
+ }
+ }
+ else
+ {
+ bool flag = roPtc.Data.param.Count >= 2 && roPtc.Data.param[1] == (uint)@int;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("WorldBoss_CoolDown_Tips"), (int)roPtc.Data.param[0]), "fece00");
+ }
+ else
+ {
+ bool flag2 = roPtc.Data.param.Count >= 2 && roPtc.Data.param[1] == (uint)int2;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("GuildBoss_CoolDown_Tips"), (int)roPtc.Data.param[0]), "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowModalDialog(XStringDefineProxy.GetString("SCENE_COOLDOWM_TIME", new object[]
+ {
+ (roPtc.Data.param.Count == 0) ? "" : XSingleton<UiUtility>.singleton.TimeDuarationFormatString((int)roPtc.Data.param[0], 5)
+ }), XStringDefineProxy.GetString(XStringDefine.COMMON_OK));
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs.meta new file mode 100644 index 00000000..c88c6505 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GSErrorNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 78e5ce008dfe8e6449ae660c0f1c35ac +timeCreated: 1611403982 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs new file mode 100644 index 00000000..787a1b15 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GardenBanquetNotice
+ {
+ public static void Process(PtcG2C_GardenBanquetNotice roPtc)
+ {
+ XHomeCookAndPartyDocument.Doc.OnGardenFeastPhase(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs.meta new file mode 100644 index 00000000..40d0c2e8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNotice.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aa22d96fea979c1489e549db4bc3849c +timeCreated: 1611404302 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs new file mode 100644 index 00000000..f9b4575c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GardenBanquetNtf
+ {
+ public static void Process(PtcG2C_GardenBanquetNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs.meta new file mode 100644 index 00000000..5123ad2b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenBanquetNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 98fb8926197ccd343acbd3838ee89899 +timeCreated: 1611404193 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs new file mode 100644 index 00000000..3ebf3273 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GardenPlantEventNotice
+ {
+ public static void Process(PtcG2C_GardenPlantEventNotice roPtc)
+ {
+ HomePlantDocument.Doc.OnGetHomeEventBack(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs.meta new file mode 100644 index 00000000..a8c19f93 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GardenPlantEventNotice.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7b16a780b2c8a374889a008579c9fdfb +timeCreated: 1611403992 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs new file mode 100644 index 00000000..93bdcc5b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GiftIBBackInfoNtf
+ {
+ public static void Process(PtcG2C_GiftIBBackInfoNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs.meta new file mode 100644 index 00000000..dec1b5ca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GiftIBBackInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 79a7309e89fcc954bbd7237361126088 +timeCreated: 1611403986 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs new file mode 100644 index 00000000..5c1cefb7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfAllFightEndNtf
+ {
+ public static void Process(PtcG2C_GmfAllFightEndNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnAllFightEnd(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs.meta new file mode 100644 index 00000000..f7ace25c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfAllFightEndNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 60557aaddaf59154a9c1539d1719016f +timeCreated: 1611403833 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs new file mode 100644 index 00000000..d1cbeb92 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfBaseDataNtf
+ {
+ public static void Process(PtcG2C_GmfBaseDataNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnUpdateGuildArenaBattle(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs.meta new file mode 100644 index 00000000..24f9f041 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBaseDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4c02e347dda4b5e42bfb141000a72758 +timeCreated: 1611403689 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs new file mode 100644 index 00000000..ac876fa7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfBattleStateNtf
+ {
+ public static void Process(PtcG2C_GmfBattleStateNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnBattleState(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs.meta new file mode 100644 index 00000000..2a167f91 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfBattleStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2e69aef6f72c5644f8d14b8b625f8526 +timeCreated: 1611403510 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs new file mode 100644 index 00000000..786c6f49 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfGuildCombatNtf
+ {
+ public static void Process(PtcG2C_GmfGuildCombatNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.ReceiveGuildCombatNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs.meta new file mode 100644 index 00000000..77e6f3d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfGuildCombatNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 436ffa81d2fa6784ebc9830c36a9e13a +timeCreated: 1611403642 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs new file mode 100644 index 00000000..1f27268d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfJoinBattleReq
+ {
+ public static void Process(PtcG2C_GmfJoinBattleReq roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs.meta new file mode 100644 index 00000000..5a3187a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfJoinBattleReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 262c892a3082a1c4e88e2bc664022277 +timeCreated: 1611403467 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs new file mode 100644 index 00000000..cd781999 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfKickNty
+ {
+ public static void Process(PtcG2C_GmfKickNty roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnBekicked(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs.meta new file mode 100644 index 00000000..a868b58f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfKickNty.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0f82f247992f4bc46ab3cdedcedf4043 +timeCreated: 1611403209 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs new file mode 100644 index 00000000..0318a5bc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfOneBattleEndNtf
+ {
+ public static void Process(PtcG2C_GmfOneBattleEndNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnUpdateBattleEnd(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs.meta new file mode 100644 index 00000000..b0303bd3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfOneBattleEndNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d7b5f91c2c7603b4488d26eb9fb0d756 +timeCreated: 1611404636 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs new file mode 100644 index 00000000..d65e5ad0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfWaitFightBegin
+ {
+ public static void Process(PtcG2C_GmfWaitFightBegin roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnWaitFightBegin(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs.meta new file mode 100644 index 00000000..ae9c5693 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitFightBegin.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcf6014e2e8a5d347ad801ceac27ba9c +timeCreated: 1611404936 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs new file mode 100644 index 00000000..f9d25d89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GmfWaitOtherLoad
+ {
+ public static void Process(PtcG2C_GmfWaitOtherLoad roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnWaitOtherLoad(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs.meta new file mode 100644 index 00000000..6a78e1ac --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GmfWaitOtherLoad.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dbcd2247576690742bd78fff5f7a29b9 +timeCreated: 1611404655 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs new file mode 100644 index 00000000..86cceb64 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GprAllFightEndNtf
+ {
+ public static void Process(PtcG2C_GprAllFightEndNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.ReceiveDuelFinalResult(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs.meta new file mode 100644 index 00000000..4aa52caa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprAllFightEndNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3e106abc7ad0dcc4ea1e98e9029c2381 +timeCreated: 1611403606 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs new file mode 100644 index 00000000..b1a9074e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GprOneBattleEndNtf
+ {
+ public static void Process(PtcG2C_GprOneBattleEndNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.ReceiveDuelRoundResult(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs.meta new file mode 100644 index 00000000..814e9944 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GprOneBattleEndNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2455e2d1e4a823c4895a4268dc2d1320 +timeCreated: 1611403460 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs new file mode 100644 index 00000000..a92ecb63 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildBestCardsNtf
+ {
+ public static void Process(PtcG2C_GuildBestCardsNtf roPtc)
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.SetBestCard(roPtc.Data.bestcards, roPtc.Data.bestrole);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs.meta new file mode 100644 index 00000000..65802b82 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBestCardsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: adce219eee499ed4e8d273c6ffac8566 +timeCreated: 1611404336 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs new file mode 100644 index 00000000..18e02a4f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildBossTimeOut
+ {
+ public static void Process(PtcG2C_GuildBossTimeOut roPtc)
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.GuildBossTimeOut();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs.meta new file mode 100644 index 00000000..a141361d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildBossTimeOut.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 465c63ec06ffb2d4d83fc2008add9a10 +timeCreated: 1611403649 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs new file mode 100644 index 00000000..8a9cbc27 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildCampPartyTradeNotify
+ {
+ public static void Process(PtcG2C_GuildCampPartyTradeNotify roPtc)
+ {
+ bool flag = roPtc.Data.notify_type == GuildCampPartyTradeType.TRADE_INVITATION;
+ if (flag)
+ {
+ XRequestDocument specificDocument = XDocuments.GetSpecificDocument<XRequestDocument>(XRequestDocument.uuID);
+ specificDocument.SetMainInterfaceNum((int)roPtc.Data.lauch_count);
+ }
+ else
+ {
+ bool flag2 = roPtc.Data.notify_type == GuildCampPartyTradeType.UPDATA_TRADE_STATUS;
+ if (flag2)
+ {
+ XExchangeItemDocument specificDocument2 = XDocuments.GetSpecificDocument<XExchangeItemDocument>(XExchangeItemDocument.uuID);
+ specificDocument2.OnServerDataGet(roPtc.Data);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs.meta new file mode 100644 index 00000000..79bd4842 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCampPartyTradeNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 84562fdf21217e144b3fb50a23bb9909 +timeCreated: 1611404047 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs new file mode 100644 index 00000000..22024a58 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildCheckinBoxNtf
+ {
+ public static void Process(PtcG2C_GuildCheckinBoxNtf roPtc)
+ {
+ XGuildSignInDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument.SetChestStateAndProgress(roPtc.Data.processbar, roPtc.Data.boxmask);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs.meta new file mode 100644 index 00000000..1f660566 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildCheckinBoxNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 36a0595a1dd92f14d8a7323e23af3a0b +timeCreated: 1611403563 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs new file mode 100644 index 00000000..d504c9d1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs @@ -0,0 +1,17 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildGoblinKillNtf
+ {
+ public static void Process(PtcG2C_GuildGoblinKillNtf roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded() && DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs.meta new file mode 100644 index 00000000..537166bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildGoblinKillNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7e6fb52c360022d4c8f300bf5b1af5c2 +timeCreated: 1611404005 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs new file mode 100644 index 00000000..f088d872 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildNotifyMemberChanged
+ {
+ public static void Process(PtcG2C_GuildNotifyMemberChanged roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs.meta new file mode 100644 index 00000000..f8b203c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildNotifyMemberChanged.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 03d832584c5eb694d90c78a568a8225d +timeCreated: 1611402959 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs new file mode 100644 index 00000000..90de4176 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs @@ -0,0 +1,24 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_GuildSettingChangedNotify
+ {
+ public static void Process(PtcG2C_GuildSettingChangedNotify roPtc)
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ bool flag = roPtc.Data.annoucement != null;
+ if (flag)
+ {
+ specificDocument.OnAnnounceChanged(roPtc.Data.annoucement);
+ }
+ specificDocument.OnPortraitChanged(roPtc.Data.Icon);
+ XGuildApproveDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildApproveDocument>(XGuildApproveDocument.uuID);
+ specificDocument2.OnSetApprove(new GuildApproveSetting
+ {
+ autoApprove = (roPtc.Data.needApproval == 0),
+ PPT = roPtc.Data.RecuitPPT
+ });
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs.meta new file mode 100644 index 00000000..f319fcbb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_GuildSettingChangedNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6a32f434c88383a4da80c80f947b30bc +timeCreated: 1611403888 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs new file mode 100644 index 00000000..03ea7c15 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HallIconSNtf
+ {
+ public static void Process(PtcG2C_HallIconSNtf roPtc)
+ {
+ XMainInterfaceDocument specificDocument = XDocuments.GetSpecificDocument<XMainInterfaceDocument>(XMainInterfaceDocument.uuID);
+ specificDocument.OnHallIconNtfGet(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs.meta new file mode 100644 index 00000000..a0c3728a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HallIconSNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8c53207bd0495e34f89f00801a86cc93 +timeCreated: 1611404099 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs new file mode 100644 index 00000000..fa3cf5f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs @@ -0,0 +1,27 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleAncientPower
+ {
+ public static void Process(PtcG2C_HeroBattleAncientPower roPtc)
+ {
+ bool flag = XSingleton<XAttributeMgr>.singleton.XPlayerData == null;
+ if (!flag)
+ {
+ ulong roleID = XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID;
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ for (int i = 0; i < roPtc.Data.roleids.Count; i++)
+ {
+ bool flag2 = roPtc.Data.roleids[i] == roleID;
+ if (flag2)
+ {
+ specificDocument.OnAncientPercentGet((float)roPtc.Data.ancientpower[i]);
+ break;
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs.meta new file mode 100644 index 00000000..ce9bc34d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleAncientPower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7da594514079b55479e74f5315dcd604 +timeCreated: 1611404002 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs new file mode 100644 index 00000000..2d9f064d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleCanUseHero
+ {
+ public static void Process(PtcG2C_HeroBattleCanUseHero roPtc)
+ {
+ XHeroBattleSkillDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleSkillDocument>(XHeroBattleSkillDocument.uuID);
+ specificDocument.SetHeroBattleCanUseHero(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs.meta new file mode 100644 index 00000000..b93dc1ff --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleCanUseHero.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 86e2c7f2495472148bb84e082aa1a012 +timeCreated: 1611404056 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs new file mode 100644 index 00000000..914c11f8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleDataNtf
+ {
+ public static void Process(PtcG2C_HeroBattleDataNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs.meta new file mode 100644 index 00000000..a8d93373 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 621b11ef839bd4b49b22027c833c99f0 +timeCreated: 1611403840 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs new file mode 100644 index 00000000..89f4725d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleInCircleNtf
+ {
+ public static void Process(PtcG2C_HeroBattleInCircleNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetHeroBattleInCircleData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs.meta new file mode 100644 index 00000000..76de8fa9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleInCircleNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b1b1753aaddfc6147a306c00e0ec1d6d +timeCreated: 1611404357 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs new file mode 100644 index 00000000..faa8945b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleOverTime
+ {
+ public static void Process(PtcG2C_HeroBattleOverTime roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.StartHeroBattleAddTime((int)roPtc.Data.millisecond);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs.meta new file mode 100644 index 00000000..1f7c74d6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleOverTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c5ac6ad381e948a4cb48f84d3331d2ca +timeCreated: 1611404507 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs new file mode 100644 index 00000000..08a40338 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleSyncNtf
+ {
+ public static void Process(PtcG2C_HeroBattleSyncNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetHeroBattleProgressData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs.meta new file mode 100644 index 00000000..b781a59d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleSyncNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 07905f83ae7178f458addae59e11d0cb +timeCreated: 1611402968 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs new file mode 100644 index 00000000..67fd528c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleTeamMsgNtf
+ {
+ public static void Process(PtcG2C_HeroBattleTeamMsgNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetHeroBattleTeamData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs.meta new file mode 100644 index 00000000..7486b052 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamMsgNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7741ac30193f5c04f9188cfb1ade0980 +timeCreated: 1611403952 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs new file mode 100644 index 00000000..624c8910 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleTeamRoleNtf
+ {
+ public static void Process(PtcG2C_HeroBattleTeamRoleNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetHeroBattleMyTeam(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs.meta new file mode 100644 index 00000000..cbc4f6ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTeamRoleNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1cf9595461cf247408e2729531b13a70 +timeCreated: 1611403350 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs new file mode 100644 index 00000000..6bdd9be9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroBattleTipsNtf
+ {
+ public static void Process(PtcG2C_HeroBattleTipsNtf roPtc)
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.GetBattleTips(roPtc.Data.id);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs.meta new file mode 100644 index 00000000..b9e52920 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroBattleTipsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 17e1764fd846f3549b695f65f5f4ebb7 +timeCreated: 1611403295 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs new file mode 100644 index 00000000..8ae8138c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HeroKillNotify
+ {
+ public static void Process(PtcG2C_HeroKillNotify roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.MobaKillerNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs.meta new file mode 100644 index 00000000..19499187 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HeroKillNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ca85f29ee406e6a4dba9b5a6d46f4cec +timeCreated: 1611404542 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs new file mode 100644 index 00000000..78affe72 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs @@ -0,0 +1,206 @@ +using System;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HintNotify
+ {
+ public static void Process(PtcG2C_HintNotify roPtc)
+ {
+ int i = 0;
+ while (i < roPtc.Data.systemid.Count)
+ {
+ XSysDefine xsysDefine = (XSysDefine)roPtc.Data.systemid[i];
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ bool flag = specificDocument.IsShop(xsysDefine);
+ if (flag)
+ {
+ XGameMallDocument specificDocument2 = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument2.RefreshShopRedPoint(xsysDefine, !roPtc.Data.isremove);
+ }
+ XSysDefine xsysDefine2 = xsysDefine;
+ if (xsysDefine2 <= XSysDefine.XSys_Welfare_YyMall)
+ {
+ if (xsysDefine2 <= XSysDefine.XSys_CustomBattle_BountyMode)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Qualifying)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_GuildDragon)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_CustomBattle_BountyMode)
+ {
+ goto IL_47F;
+ }
+ XCustomBattleDocument specificDocument3 = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
+ specificDocument3.BountyModeRedPoint = !roPtc.Data.isremove;
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument4 = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument4.bCanFight = !roPtc.Data.isremove;
+ }
+ }
+ else
+ {
+ XQualifyingDocument specificDocument5 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument5.RedPoint = true;
+ }
+ }
+ else if (xsysDefine2 <= XSysDefine.XSys_Reward_Activity)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_CustomBattle_CustomMode)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Reward_Activity)
+ {
+ goto IL_47F;
+ }
+ XDailyActivitiesDocument specificDocument6 = XDocuments.GetSpecificDocument<XDailyActivitiesDocument>(XDailyActivitiesDocument.uuID);
+ specificDocument6.SeverRedPointNotify = (roPtc.Data.isremove ? -1 : 1);
+ }
+ else
+ {
+ XCustomBattleDocument specificDocument7 = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
+ specificDocument7.CustomModeRedPoint = !roPtc.Data.isremove;
+ }
+ }
+ else if (xsysDefine2 != XSysDefine.XSys_Flower_Rank_Activity)
+ {
+ switch (xsysDefine2)
+ {
+ case XSysDefine.XSys_Welfare_GiftBag:
+ {
+ XWelfareDocument specificDocument8 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument8.RegisterRedPoint(XSysDefine.XSys_Welfare_GiftBag, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_StarFund:
+ {
+ XWelfareDocument specificDocument9 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument9.RegisterRedPoint(XSysDefine.XSys_Welfare_StarFund, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_FirstRechange:
+ {
+ XWelfareDocument specificDocument10 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument10.RegisterRedPoint(XSysDefine.XSys_Welfare_FirstRechange, true, true);
+ break;
+ }
+ case XSysDefine.XSyS_Welfare_RewardBack:
+ case XSysDefine.XSys_Welfare_KingdomPrivilege:
+ goto IL_47F;
+ case XSysDefine.XSys_Welfare_MoneyTree:
+ {
+ XWelfareDocument specificDocument11 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument11.ServerPushMoneyTree = true;
+ specificDocument11.RegisterRedPoint(XSysDefine.XSys_Welfare_MoneyTree, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_KingdomPrivilege_Court:
+ {
+ XWelfareDocument specificDocument12 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument12.RegisterRedPoint(XSysDefine.XSys_Welfare_KingdomPrivilege_Court, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_KingdomPrivilege_Adventurer:
+ {
+ XWelfareDocument specificDocument13 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument13.RegisterRedPoint(XSysDefine.XSys_Welfare_KingdomPrivilege_Adventurer, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_KingdomPrivilege_Commerce:
+ {
+ XWelfareDocument specificDocument14 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument14.RegisterRedPoint(XSysDefine.XSys_Welfare_KingdomPrivilege_Commerce, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_NiceGirl:
+ {
+ XWelfareDocument specificDocument15 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument15.RegisterRedPoint(XSysDefine.XSys_Welfare_NiceGirl, true, true);
+ break;
+ }
+ case XSysDefine.XSys_Welfare_YyMall:
+ {
+ XWelfareDocument specificDocument16 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument16.RegisterRedPoint(XSysDefine.XSys_Welfare_YyMall, true, true);
+ break;
+ }
+ default:
+ goto IL_47F;
+ }
+ }
+ else
+ {
+ XFlowerRankDocument specificDocument17 = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument17.CanGetActivityAward = !roPtc.Data.isremove;
+ }
+ }
+ else if (xsysDefine2 <= XSysDefine.XSys_GuildHall_SignIn)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Parner_Liveness)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Wedding)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_GuildHall_SignIn)
+ {
+ goto IL_47F;
+ }
+ XGuildSignInDocument specificDocument18 = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument18.SignInSelection = 0u;
+ }
+ else
+ {
+ XWeddingDocument.Doc.IsHadLivenessRedPoint = !roPtc.Data.isremove;
+ }
+ }
+ else
+ {
+ XPartnerDocument.Doc.IsHadLivenessRedPoint = !roPtc.Data.isremove;
+ }
+ }
+ else if (xsysDefine2 <= XSysDefine.XSys_QQVIP)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_SpriteSystem_Shop)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_QQVIP)
+ {
+ goto IL_47F;
+ }
+ XPlatformAbilityDocument specificDocument19 = XDocuments.GetSpecificDocument<XPlatformAbilityDocument>(XPlatformAbilityDocument.uuID);
+ specificDocument19.QQVipRedPoint = !roPtc.Data.isremove;
+ }
+ else
+ {
+ XSpriteSystemDocument specificDocument20 = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument20.QueryBuyEggCD();
+ }
+ }
+ else if (xsysDefine2 != XSysDefine.XSys_DragonGuildLiveness)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_DragonGuildTask)
+ {
+ goto IL_47F;
+ }
+ XDragonGuildDocument.Doc.IsHadRecordRedPoint = !roPtc.Data.isremove;
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.IsHadLivenessRedPoint = !roPtc.Data.isremove;
+ }
+ IL_49B:
+ bool flag2 = xsysDefine == XSysDefine.XSys_Mail;
+ if (flag2)
+ {
+ DlgBase<XChatView, XChatBehaviour>.singleton.ShowMailRedpoint();
+ }
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(xsysDefine, true);
+ i++;
+ continue;
+ IL_47F:
+ XSingleton<XGameSysMgr>.singleton.SetSysRedPointState(xsysDefine, !roPtc.Data.isremove);
+ goto IL_49B;
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs.meta new file mode 100644 index 00000000..2cac5460 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HintNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4707f85de9b8f6a47841afe97b80173e +timeCreated: 1611403651 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs new file mode 100644 index 00000000..ee1cb27b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseAnimationNtf
+ {
+ public static void Process(PtcG2C_HorseAnimationNtf roPtc)
+ {
+ XRaceDocument specificDocument = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ specificDocument.RaceEndLeftTime(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs.meta new file mode 100644 index 00000000..aabe5e81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAnimationNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 77506b6be950d2246aeb1a1b4931690e +timeCreated: 1611403953 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs new file mode 100644 index 00000000..1f839509 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseAwardAllNtf
+ {
+ public static void Process(PtcG2C_HorseAwardAllNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs.meta new file mode 100644 index 00000000..f49fcd0b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseAwardAllNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 59e77ad11db1a6a4ba0785765081e8e5 +timeCreated: 1611403788 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs new file mode 100644 index 00000000..a9a6e35b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseCountDownTimeNtf
+ {
+ public static void Process(PtcG2C_HorseCountDownTimeNtf roPtc)
+ {
+ XRaceDocument specificDocument = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ specificDocument.RefreshTime(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs.meta new file mode 100644 index 00000000..6e8aec01 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseCountDownTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f421aefb0a1b39046a6924effa96b2bb +timeCreated: 1611404851 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs new file mode 100644 index 00000000..3a328951 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseFailTipsNtf
+ {
+ public static void Process(PtcG2C_HorseFailTipsNtf roPtc)
+ {
+ bool flag = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler != null;
+ if (flag)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton._WaitHandler.SetWaitEnd();
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs.meta new file mode 100644 index 00000000..432d2841 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFailTipsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 559f58aaa5117304e9d60845411a6b3a +timeCreated: 1611403738 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs new file mode 100644 index 00000000..bfd8f54a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseFinalNtf
+ {
+ public static void Process(PtcG2C_HorseFinalNtf roPtc)
+ {
+ XRaceDocument specificDocument = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ specificDocument.RaceComplete(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs.meta new file mode 100644 index 00000000..f39b1795 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseFinalNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7fd399a3cea313d4caa906a092b76b82 +timeCreated: 1611404032 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs new file mode 100644 index 00000000..24520d73 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseRankNtf
+ {
+ public static void Process(PtcG2C_HorseRankNtf roPtc)
+ {
+ XRaceDocument specificDocument = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ specificDocument.RefreshRank(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs.meta new file mode 100644 index 00000000..1103cd94 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseRankNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d51cffbcad1664141af3efdfad596b50 +timeCreated: 1611404626 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs new file mode 100644 index 00000000..15e87bf3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_HorseWaitTimeNtf
+ {
+ public static void Process(PtcG2C_HorseWaitTimeNtf roPtc)
+ {
+ XSkyArenaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaEntranceDocument>(XSkyArenaEntranceDocument.uuID);
+ specificDocument.SetTime(roPtc.Data.time);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs.meta new file mode 100644 index 00000000..49288236 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_HorseWaitTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 87b2fef00a117294a9b23638923cc4f0 +timeCreated: 1611404081 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs new file mode 100644 index 00000000..337ae4e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_IBShopHasBuyNtf
+ {
+ public static void Process(PtcG2C_IBShopHasBuyNtf roPtc)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument.UpdateItemBuyCnt(roPtc.Data.goodsid, roPtc.Data.count);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs.meta new file mode 100644 index 00000000..9b7a1a6f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopHasBuyNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d0e13d4d767391d4e862290e8c6a5600 +timeCreated: 1611404589 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs new file mode 100644 index 00000000..0b7032fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs @@ -0,0 +1,22 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_IBShopIcon
+ {
+ public static void Process(PtcG2C_IBShopIcon roPtc)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.isNewWeekly = roPtc.Data.limittag;
+ specificDocument.hotGoods = roPtc.Data.viptag;
+ bool bState = specificDocument.isNewWeekly || specificDocument.isNewVIP;
+ XSingleton<XGameSysMgr>.singleton.SetSysRedPointState(XSysDefine.XSys_GameMall, bState);
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(XSysDefine.XSys_GameMall, true);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs.meta new file mode 100644 index 00000000..8d81ae57 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IBShopIcon.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b1aba98b6a45e714889649b44af50173 +timeCreated: 1611404356 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs new file mode 100644 index 00000000..a607057a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_IdipPunishInfoNtf
+ {
+ public static void Process(PtcG2C_IdipPunishInfoNtf roPtc)
+ {
+ XIDIPDocument specificDocument = XDocuments.GetSpecificDocument<XIDIPDocument>(XIDIPDocument.uuID);
+ specificDocument.DealWithIDIPTips(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs.meta new file mode 100644 index 00000000..02265edf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_IdipPunishInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a95c84794dcbffd4e9b180033c8b8130 +timeCreated: 1611404298 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs new file mode 100644 index 00000000..a69a0be7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_InvFightBefEnterSceneNtf
+ {
+ public static void Process(PtcG2C_InvFightBefEnterSceneNtf roPtc)
+ {
+ XPKInvitationDocument specificDocument = XDocuments.GetSpecificDocument<XPKInvitationDocument>(XPKInvitationDocument.uuID);
+ specificDocument.EnterFightScene(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs.meta new file mode 100644 index 00000000..fa7b3701 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_InvFightBefEnterSceneNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c73828d410a64b4ead96ad513af0352 +timeCreated: 1611403502 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs new file mode 100644 index 00000000..7f7dc15c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs @@ -0,0 +1,36 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ItemChangedNtf
+ {
+ public static void Process(PtcG2C_ItemChangedNtf roPtc)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.AddNewItem(roPtc.Data.NewItems, !roPtc.Data.IsRearrange);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.AddNewItem(roPtc.Data.recyleadditems, false);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.RemoveItem(roPtc.Data.RemoveItems);
+ for (int i = 0; i < roPtc.Data.ChangeItems.Count; i += 2)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.ChangeItemCount(roPtc.Data.ChangeItems[i], (int)roPtc.Data.ChangeItems[i + 1], !roPtc.Data.IsRearrange);
+ }
+ for (int i = 0; i < roPtc.Data.recylechangeitems.Count; i += 2)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.ChangeItemCount(roPtc.Data.recylechangeitems[i], (int)roPtc.Data.recylechangeitems[i + 1], false);
+ }
+ for (int i = 0; i < roPtc.Data.SwapItems.Count; i += 2)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SwapItem(roPtc.Data.SwapItems[i], roPtc.Data.SwapItems[i + 1]);
+ }
+ for (int i = 0; i < roPtc.Data.AttrChangeItems.Count; i++)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.UpdateItem(roPtc.Data.AttrChangeItems[i]);
+ }
+ for (int i = 0; i < roPtc.Data.VirtualItemID.Count; i++)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(roPtc.Data.VirtualItemID[i], (ulong)roPtc.Data.VirtualItemCount[i]);
+ }
+ XSingleton<XGame>.singleton.Doc.XBagDoc.FinishItemChange();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs.meta new file mode 100644 index 00000000..1be3782b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemChangedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4f1c99b8549e90a4188c40c6d8796bd0 +timeCreated: 1611403700 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs new file mode 100644 index 00000000..fa8af202 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ItemCircleDrawResult
+ {
+ public static void Process(PtcG2C_ItemCircleDrawResult roPtc)
+ {
+ XCharacterItemDocument specificDocument = XDocuments.GetSpecificDocument<XCharacterItemDocument>(XCharacterItemDocument.uuID);
+ specificDocument.ShowLotteryResult((int)roPtc.Data.index);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs.meta new file mode 100644 index 00000000..b856041e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemCircleDrawResult.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9a7eb4f557776ff45b0af0690cb925be +timeCreated: 1611404200 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs new file mode 100644 index 00000000..6936453c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs @@ -0,0 +1,14 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ItemFindBackNtf
+ {
+ public static void Process(PtcG2C_ItemFindBackNtf roPtc)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnPtcFindItemBack();
+ specificDocument.OnPtcFirstNotify(roPtc.Data.isDayFirstNofity);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs.meta new file mode 100644 index 00000000..74a738e8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ItemFindBackNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aa41b4321af781f41bface9f824aa035 +timeCreated: 1611404302 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs new file mode 100644 index 00000000..f9257623 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_JadeSlotInfoNtf
+ {
+ public static void Process(PtcG2C_JadeSlotInfoNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs.meta new file mode 100644 index 00000000..b6128faa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JadeSlotInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0fd40f16c6dffcc47b8c3bf30209e507 +timeCreated: 1611403214 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs new file mode 100644 index 00000000..005e4719 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_JoinRoomReply
+ {
+ public static void Process(PtcG2C_JoinRoomReply roPtc)
+ {
+ XApolloDocument specificDocument = XDocuments.GetSpecificDocument<XApolloDocument>(XApolloDocument.uuID);
+ specificDocument.JoinRoom(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs.meta new file mode 100644 index 00000000..0b15966d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_JoinRoomReply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f7533b7fc60efa34d96e071205b030c8 +timeCreated: 1611404887 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs new file mode 100644 index 00000000..5c621650 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs @@ -0,0 +1,16 @@ +using System;
+using UILib;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_KickAccountJkydNtf
+ {
+ public static void Process(PtcG2C_KickAccountJkydNtf roPtc)
+ {
+ XSingleton<UiUtility>.singleton.ShowModalDialog(roPtc.Data.msg, XStringDefineProxy.GetString("COMMON_OK"), new ButtonClickEventHandler(XSingleton<XLoginDocument>.singleton.OnLoginForbidClick), 50);
+ XSingleton<XClientNetwork>.singleton.Close(NetErrCode.Net_NoError);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs.meta new file mode 100644 index 00000000..0b2ca311 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KickAccountJkydNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a3edd571e8d17574bb0f427b6fb232bc +timeCreated: 1611404281 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs new file mode 100644 index 00000000..eae611d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_KillEnemyScoreNtf
+ {
+ public static void Process(PtcG2C_KillEnemyScoreNtf roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded() && DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.UpdateKill(roPtc.Data.score);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs.meta new file mode 100644 index 00000000..8d8d0386 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_KillEnemyScoreNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 950586cacac005a49bea32f7caa8335c +timeCreated: 1611404157 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs new file mode 100644 index 00000000..bc143fdc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeagueBattleBaseDataNtf
+ {
+ public static void Process(PtcG2C_LeagueBattleBaseDataNtf roPtc)
+ {
+ XTeamLeagueBattleDocument specificDocument = XDocuments.GetSpecificDocument<XTeamLeagueBattleDocument>(XTeamLeagueBattleDocument.uuID);
+ specificDocument.UpdateBattleBaseData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs.meta new file mode 100644 index 00000000..38a7b65f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleBaseDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: af4050653ac556d43a2d79255129f25e +timeCreated: 1611404343 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs new file mode 100644 index 00000000..b8b6b6c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeagueBattleLoadInfoNtf
+ {
+ public static void Process(PtcG2C_LeagueBattleLoadInfoNtf roPtc)
+ {
+ XTeamLeagueBattleDocument specificDocument = XDocuments.GetSpecificDocument<XTeamLeagueBattleDocument>(XTeamLeagueBattleDocument.uuID);
+ specificDocument.SetBattlePKInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs.meta new file mode 100644 index 00000000..7a55c400 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleLoadInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c5d9f508409797f4ba0193108486e030 +timeCreated: 1611404507 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs new file mode 100644 index 00000000..7b5af40c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeagueBattleOneResultNft
+ {
+ public static void Process(PtcG2C_LeagueBattleOneResultNft roPtc)
+ {
+ XTeamLeagueBattleDocument specificDocument = XDocuments.GetSpecificDocument<XTeamLeagueBattleDocument>(XTeamLeagueBattleDocument.uuID);
+ specificDocument.OnSmallReward(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs.meta new file mode 100644 index 00000000..74776f79 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleOneResultNft.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 499f3069d7cc58d44a99187a28d38522 +timeCreated: 1611403662 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs new file mode 100644 index 00000000..98461dda --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeagueBattleResultNtf
+ {
+ public static void Process(PtcG2C_LeagueBattleResultNtf roPtc)
+ {
+ XTeamLeagueBattleDocument specificDocument = XDocuments.GetSpecificDocument<XTeamLeagueBattleDocument>(XTeamLeagueBattleDocument.uuID);
+ specificDocument.OnBigReward(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs.meta new file mode 100644 index 00000000..102ca72f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleResultNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5b44e19995f5d154da8d80ce127b140d +timeCreated: 1611403797 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs new file mode 100644 index 00000000..5865ce6f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeagueBattleStateNtf
+ {
+ public static void Process(PtcG2C_LeagueBattleStateNtf roPtc)
+ {
+ XTeamLeagueBattleDocument specificDocument = XDocuments.GetSpecificDocument<XTeamLeagueBattleDocument>(XTeamLeagueBattleDocument.uuID);
+ specificDocument.OnLeagueBattleStateNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs.meta new file mode 100644 index 00000000..4b995b7a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeagueBattleStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9bd9f166a7e125f479714f5e1843dc6d +timeCreated: 1611404207 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs new file mode 100644 index 00000000..f8992708 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeaveSceneNtf
+ {
+ public static void Process(PtcG2C_LeaveSceneNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs.meta new file mode 100644 index 00000000..3e20d60c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveSceneNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1079bfb2d31fc5446b6d6c593177ddb7 +timeCreated: 1611403218 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs new file mode 100644 index 00000000..91fbf051 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs @@ -0,0 +1,14 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LeaveTeam
+ {
+ public static void Process(PtcG2C_LeaveTeam roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnLeaveTeam((LeaveTeamType)roPtc.Data.errorno);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs.meta new file mode 100644 index 00000000..4c5c6282 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LeaveTeam.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0cdf5cb8503235043bd6d5a471b96737 +timeCreated: 1611403175 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs new file mode 100644 index 00000000..5b1325a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs @@ -0,0 +1,38 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LevelChangeNtf
+ {
+ public static void Process(PtcG2C_LevelChangeNtf roPtc)
+ {
+ XRole player = XSingleton<XEntityMgr>.singleton.Player;
+ bool flag = player == null;
+ if (!flag)
+ {
+ uint level = player.Attributes.Level;
+ XLevelUpStatusDocument specificDocument = XDocuments.GetSpecificDocument<XLevelUpStatusDocument>(XLevelUpStatusDocument.uuID);
+ specificDocument.CurLevel = roPtc.Data.level;
+ specificDocument.PreLevel = level;
+ specificDocument.Exp = roPtc.Data.exp;
+ specificDocument.MaxExp = roPtc.Data.maxexp;
+ bool flag2 = specificDocument.CurLevel > level;
+ if (flag2)
+ {
+ specificDocument.AttrID.Clear();
+ specificDocument.AttrNewValue.Clear();
+ specificDocument.AttrOldValue.Clear();
+ for (int i = 0; i < roPtc.Data.attrid.Count; i++)
+ {
+ specificDocument.AttrID.Add(roPtc.Data.attrid[i]);
+ specificDocument.AttrOldValue.Add(roPtc.Data.attroldvalue[i]);
+ specificDocument.AttrNewValue.Add(roPtc.Data.attrnewvalue[i]);
+ }
+ }
+ XSingleton<XDebug>.singleton.AddLog("player levelup to ", roPtc.Data.level.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ specificDocument.CheckLevelUp();
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs.meta new file mode 100644 index 00000000..c2170ab9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 53086dab7f27a3c4a816d03c9b9df387 +timeCreated: 1611403709 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs new file mode 100644 index 00000000..07dc3c0e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs @@ -0,0 +1,16 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LevelScriptStateNtf
+ {
+ public static void Process(PtcG2C_LevelScriptStateNtf roPtc)
+ {
+ for (int i = 0; i < roPtc.Data.doorStates.Count; i++)
+ {
+ XSingleton<XLevelScriptMgr>.singleton.SyncWallState(roPtc.Data.doorStates[i].name, roPtc.Data.doorStates[i].isOn);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs.meta new file mode 100644 index 00000000..137bab4f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelScriptStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f34310c8a55b9c647b1ddd42e20c095f +timeCreated: 1611404847 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs new file mode 100644 index 00000000..20aa32ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LevelSealNtf
+ {
+ public static void Process(PtcG2C_LevelSealNtf roPtc)
+ {
+ XLevelSealDocument specificDocument = XDocuments.GetSpecificDocument<XLevelSealDocument>(XLevelSealDocument.uuID);
+ specificDocument.UseLevelSealInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs.meta new file mode 100644 index 00000000..81dd8298 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LevelSealNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6956fdcb276c9684da3d54c6f78b4101 +timeCreated: 1611403885 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs new file mode 100644 index 00000000..541d2fff --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LoginActivityStatusNtf
+ {
+ public static void Process(PtcG2C_LoginActivityStatusNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs.meta new file mode 100644 index 00000000..dd89bf59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginActivityStatusNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6fd067596f382c428445671e90d2a09 +timeCreated: 1611404633 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs new file mode 100644 index 00000000..4019b391 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_LoginReward2CNtf
+ {
+ public static void Process(PtcG2C_LoginReward2CNtf roPtc)
+ {
+ XSevenLoginDocument specificDocument = XDocuments.GetSpecificDocument<XSevenLoginDocument>(XSevenLoginDocument.uuID);
+ specificDocument.OnSevenLoginReward(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs.meta new file mode 100644 index 00000000..d7c143db --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_LoginReward2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0e02bdcc5b5114e48853bfb8d638395a +timeCreated: 1611403199 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs new file mode 100644 index 00000000..5e854b3c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MilitaryrankNtf
+ {
+ public static void Process(PtcG2C_MilitaryrankNtf roPtc)
+ {
+ XMilitaryRankDocument specificDocument = XDocuments.GetSpecificDocument<XMilitaryRankDocument>(XMilitaryRankDocument.uuID);
+ specificDocument.SetMyMilitaryRecord(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs.meta new file mode 100644 index 00000000..50f86603 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MilitaryrankNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b0682a2a81d8a4e4daaaba2a8844bea0 +timeCreated: 1611404350 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs new file mode 100644 index 00000000..1a10b37c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaAddExpNtf
+ {
+ public static void Process(PtcG2C_MobaAddExpNtf roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.m_MobaBattleHandler != null;
+ if (flag)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.m_MobaBattleHandler.SetGetExpAnimation((uint)roPtc.Data.addexp, roPtc.Data.posxz);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs.meta new file mode 100644 index 00000000..e1d38390 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaAddExpNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 74c14dd846ac66e47b93dd9272672dc0 +timeCreated: 1611403944 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs new file mode 100644 index 00000000..9285fefb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaBattleTeamMsgNtf
+ {
+ public static void Process(PtcG2C_MobaBattleTeamMsgNtf roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.SetBattleMsg(roPtc.Data.teamdata);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs.meta new file mode 100644 index 00000000..e0e8093b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamMsgNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56dbbea5bef83144eb683c4b11d66c69 +timeCreated: 1611403745 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs new file mode 100644 index 00000000..1eb2cfcc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaBattleTeamRoleNtf
+ {
+ public static void Process(PtcG2C_MobaBattleTeamRoleNtf roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.SetAllData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs.meta new file mode 100644 index 00000000..a850761f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaBattleTeamRoleNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7da0fdadf85c47648bbcf28893ca7ba8 +timeCreated: 1611404001 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs new file mode 100644 index 00000000..7b6152ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaHintNtf
+ {
+ public static void Process(PtcG2C_MobaHintNtf roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.MobaHintNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs.meta new file mode 100644 index 00000000..08fb150e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaHintNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f6fc9ff33db2f6f4d8e4022e4d694be4 +timeCreated: 1611404885 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs new file mode 100644 index 00000000..4f156804 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaMiniMapNtf
+ {
+ public static void Process(PtcG2C_MobaMiniMapNtf roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.SetMiniMapIcon(roPtc.Data.canSeePosIndex);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs.meta new file mode 100644 index 00000000..5e06f8d4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaMiniMapNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bace05ccba6a5a84487fccca95e938b7 +timeCreated: 1611404438 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs new file mode 100644 index 00000000..541ae8b5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaRoleChangeNtf
+ {
+ public static void Process(PtcG2C_MobaRoleChangeNtf roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ specificDocument.OnDataChange(roPtc.Data.changeRole);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs.meta new file mode 100644 index 00000000..215a2370 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaRoleChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9773cb05ffd43bf4b9373057da0f9908 +timeCreated: 1611404188 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs new file mode 100644 index 00000000..7b779bb6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs @@ -0,0 +1,16 @@ +using System;
+using UnityEngine;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MobaSignalBroadcast
+ {
+ public static void Process(PtcG2C_MobaSignalBroadcast roPtc)
+ {
+ XMobaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XMobaBattleDocument>(XMobaBattleDocument.uuID);
+ Vector3 pos;
+ pos = new Vector3((roPtc.Data.posxz >> 16) / 100f, 0f, (roPtc.Data.posxz & 65535u) / 100f);
+ specificDocument.OnSignalGet(roPtc.Data.uid, roPtc.Data.type, pos);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs.meta new file mode 100644 index 00000000..26e0bdf8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MobaSignalBroadcast.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 06beaf053dac0864685980caa769ce37 +timeCreated: 1611402966 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs new file mode 100644 index 00000000..4653a67a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_MulActivityStateChange
+ {
+ public static void Process(PtcG2C_MulActivityStateChange roPtc)
+ {
+ XActivityDocument.Doc.ChangeActivityState(roPtc.Data.changeInfo);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs.meta new file mode 100644 index 00000000..589164f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_MulActivityStateChange.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b0c49efd7bd83cf49bbf6591d168db15 +timeCreated: 1611404353 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs new file mode 100644 index 00000000..be3a96c7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs @@ -0,0 +1,14 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NewGuildBonusNtf
+ {
+ public static void Process(PtcG2C_NewGuildBonusNtf roPtc)
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.bHasAvailableRedPacket = true;
+ specificDocument.SendGuildBonuesLeft();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs.meta new file mode 100644 index 00000000..0cc86fbf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NewGuildBonusNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ec1af1760583417418677bc21323748a +timeCreated: 1611404786 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs new file mode 100644 index 00000000..08f22112 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NextDayRewardNtf
+ {
+ public static void Process(PtcG2C_NextDayRewardNtf roPtc)
+ {
+ XNextDayRewardDocument specificDocument = XDocuments.GetSpecificDocument<XNextDayRewardDocument>(XNextDayRewardDocument.uuID);
+ specificDocument.RefreshStatus(roPtc.Data.state, roPtc.Data.timeleft);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs.meta new file mode 100644 index 00000000..45443960 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NextDayRewardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 946c1e4c78c6162489e7ed26f8f8f524 +timeCreated: 1611404154 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs new file mode 100644 index 00000000..1a4d3033 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NoticeDoingGuildInherit
+ {
+ public static void Process(PtcG2C_NoticeDoingGuildInherit roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs.meta new file mode 100644 index 00000000..7fa80a81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeDoingGuildInherit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 65e4714432b7af44ba538f94b8b8cf46 +timeCreated: 1611403852 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs new file mode 100644 index 00000000..6424072e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NoticeGuildArenaBegin
+ {
+ public static void Process(PtcG2C_NoticeGuildArenaBegin roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.bHasAvailableArenaIcon = roPtc.Data.isstart;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs.meta new file mode 100644 index 00000000..925422a0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildArenaBegin.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 59e0f573feae37c4ba44bb087fe5d606 +timeCreated: 1611403788 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs new file mode 100644 index 00000000..f65bb62b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NoticeGuildBossEnd
+ {
+ public static void Process(PtcG2C_NoticeGuildBossEnd roPtc)
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.DragonChallengeResult(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs.meta new file mode 100644 index 00000000..322ccacb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeGuildBossEnd.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2a495fcd0c39b7049940d152ff916843 +timeCreated: 1611403494 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs new file mode 100644 index 00000000..16c191d1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NoticeHungryDown
+ {
+ public static void Process(PtcG2C_NoticeHungryDown roPtc)
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument.OnFightPetHungry(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs.meta new file mode 100644 index 00000000..bee60be4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NoticeHungryDown.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 40b0e36b2b71d62409a5167ec5a8f0e7 +timeCreated: 1611403614 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs new file mode 100644 index 00000000..555e3984 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyAccountData
+ {
+ public static void Process(PtcG2C_NotifyAccountData roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddLog("Receive PtcG2C_NotifyAccountData", null, null, null, null, null, XDebugColor.XDebug_None);
+ XSingleton<XAttributeMgr>.singleton.ProcessAccountData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs.meta new file mode 100644 index 00000000..8a333a11 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyAccountData.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a3f65445479a9284c9e444bde5d14d95 +timeCreated: 1611404281 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs new file mode 100644 index 00000000..7e796aaa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs @@ -0,0 +1,29 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyClientEnterFight
+ {
+ public static void Process(PtcG2C_NotifyClientEnterFight roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.enemyid);
+ bool flag = entity != null;
+ if (flag)
+ {
+ entity.IsServerFighting = roPtc.Data.enterfight;
+ bool flag2 = XSingleton<XEntityMgr>.singleton.Player != null && XSingleton<XEntityMgr>.singleton.Player.AI != null;
+ if (flag2)
+ {
+ XAIEventArgs @event = XEventPool<XAIEventArgs>.GetEvent();
+ @event.DepracatedPass = true;
+ @event.Firer = XSingleton<XEntityMgr>.singleton.Player;
+ @event.EventType = 1;
+ @event.EventArg = "SpawnMonster";
+ uint item = XSingleton<XEventMgr>.singleton.FireEvent(@event, 0.05f);
+ XSingleton<XEntityMgr>.singleton.Player.AI.TimerToken.Add(item);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs.meta new file mode 100644 index 00000000..34d6a1f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyClientEnterFight.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7ae6ce88befbb4c40bef10387dd55e07 +timeCreated: 1611403992 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs new file mode 100644 index 00000000..1799eb2e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyEnhanceSuit
+ {
+ public static void Process(PtcG2C_NotifyEnhanceSuit roPtc)
+ {
+ XEnhanceDocument.Doc.GetTotalEnhanceLevelBack(roPtc.Data.enhanceSuit);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs.meta new file mode 100644 index 00000000..a50c907c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyEnhanceSuit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 387a8ea9f1c76884699bcfa3d6743476 +timeCreated: 1611403590 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs new file mode 100644 index 00000000..d8112de0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyGuildBossAddAttr
+ {
+ public static void Process(PtcG2C_NotifyGuildBossAddAttr roPtc)
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.OnNotifyEncourage(roPtc.Data.count);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs.meta new file mode 100644 index 00000000..ea89f67f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyGuildBossAddAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 15de281d557e09148ac9ccbd042d0c61 +timeCreated: 1611403266 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs new file mode 100644 index 00000000..065b51a2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyIdipMessageGs
+ {
+ public static void Process(PtcG2C_NotifyIdipMessageGs roPtc)
+ {
+ XIDIPDocument specificDocument = XDocuments.GetSpecificDocument<XIDIPDocument>(XIDIPDocument.uuID);
+ specificDocument.DealWithIDIPMessage(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs.meta new file mode 100644 index 00000000..7d1a4f37 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyIdipMessageGs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5f1ffc55fb961f42b55b4e2947abc8e +timeCreated: 1611404629 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs new file mode 100644 index 00000000..0988bd99 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs @@ -0,0 +1,31 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyRoleEmpty2Watcher
+ {
+ public static void Process(PtcG2C_NotifyRoleEmpty2Watcher roPtc)
+ {
+ bool flag = XSingleton<XScene>.singleton.bSpectator && !DlgBase<SpectateLevelRewardView, SpectateLevelRewardBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ bool flag2 = DlgBase<GuildArenaDefeatDlg, GuildArenaDefeatBehaviour>.singleton.IsVisible();
+ if (!flag2)
+ {
+ bool flag3 = DlgBase<SpectateView, SpectateBehaviour>.singleton.IsVisible();
+ if (!flag3)
+ {
+ bool flag4 = DlgBase<XTeamLeagueBattlePrepareView, XTeamLeagueBattlePrepareBehaviour>.singleton.BigRewardHandler != null && DlgBase<XTeamLeagueBattlePrepareView, XTeamLeagueBattlePrepareBehaviour>.singleton.BigRewardHandler.IsVisible();
+ if (!flag4)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.ShowBackToMainCityTips();
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs.meta new file mode 100644 index 00000000..075ec659 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyRoleEmpty2Watcher.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d8941c2630459d1438d88b95170a19e9 +timeCreated: 1611404639 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs new file mode 100644 index 00000000..5e08fb54 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs @@ -0,0 +1,13 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyStartUpTypeToClient
+ {
+ public static void Process(PtcG2C_NotifyStartUpTypeToClient roPtc)
+ {
+ XSingleton<XLoginDocument>.singleton.SetLaunchTypeServerInfo(roPtc.Data.type);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs.meta new file mode 100644 index 00000000..29f8502e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyStartUpTypeToClient.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2f7195d1ff02890449d082aec4bd244a +timeCreated: 1611403516 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs new file mode 100644 index 00000000..e53955be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyWatchData
+ {
+ public static void Process(PtcG2C_NotifyWatchData roPtc)
+ {
+ XSpectateSceneDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateSceneDocument>(XSpectateSceneDocument.uuID);
+ specificDocument.DealWithTeamMessage(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs.meta new file mode 100644 index 00000000..6c70828e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchData.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ec449ebbd8c061a4b9f7efa732cd35c5 +timeCreated: 1611404787 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs new file mode 100644 index 00000000..561ea904 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NotifyWatchIconNum2Client
+ {
+ public static void Process(PtcG2C_NotifyWatchIconNum2Client roPtc)
+ {
+ XSpectateDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateDocument>(XSpectateDocument.uuID);
+ specificDocument.SetLiveCount(roPtc.Data.num);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs.meta new file mode 100644 index 00000000..b8eeada5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NotifyWatchIconNum2Client.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4bd8dd71d9a11c4f89177684d031c4a +timeCreated: 1611404739 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs new file mode 100644 index 00000000..2fffc47b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_NpcFlNtf
+ {
+ public static void Process(PtcG2C_NpcFlNtf roPtc)
+ {
+ XNPCFavorDocument specificDocument = XDocuments.GetSpecificDocument<XNPCFavorDocument>(XNPCFavorDocument.uuID);
+ specificDocument.OnNpcFeelingChange(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs.meta new file mode 100644 index 00000000..c9819ca6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_NpcFlNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a341e56ae6519b9439b98a2829b77e2e +timeCreated: 1611404260 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs new file mode 100644 index 00000000..c39c4d36 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_OnTransferWall
+ {
+ public static void Process(PtcG2C_OnTransferWall roPtc)
+ {
+ XOnEntityTransferEventArgs @event = XEventPool<XOnEntityTransferEventArgs>.GetEvent();
+ @event.Firer = XSingleton<XEntityMgr>.singleton.Player;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs.meta new file mode 100644 index 00000000..0af2650e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnTransferWall.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5723b382e4ad1df439c561613b6edf22 +timeCreated: 1611403748 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs new file mode 100644 index 00000000..0f846415 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_OnlineRewardNtf
+ {
+ public static void Process(PtcG2C_OnlineRewardNtf roPtc)
+ {
+ XOnlineRewardDocument specificDocument = XDocuments.GetSpecificDocument<XOnlineRewardDocument>(XOnlineRewardDocument.uuID);
+ specificDocument.RefreshStatus(roPtc.Data.state, roPtc.Data.timeleft);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs.meta new file mode 100644 index 00000000..a2afe685 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OnlineRewardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4c0ccb4dc3b129a439dd946631d941e4 +timeCreated: 1611403689 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs new file mode 100644 index 00000000..879ea557 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs @@ -0,0 +1,43 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_OpenSystemNtf
+ {
+ public static void Process(PtcG2C_OpenSystemNtf roPtc)
+ {
+ XPlayerAttributes xplayerData = XSingleton<XAttributeMgr>.singleton.XPlayerData;
+ bool flag = xplayerData == null;
+ if (flag)
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("XPlayerData == null", null, null, null, null, null);
+ }
+ else
+ {
+ int i = 0;
+ int count = roPtc.Data.sysIDs.Count;
+ while (i < count)
+ {
+ xplayerData.CacheOpenSystem(roPtc.Data.sysIDs[i]);
+ i++;
+ }
+ i = 0;
+ count = roPtc.Data.closeSysIDs.Count;
+ while (i < count)
+ {
+ xplayerData.CloseSystem(roPtc.Data.closeSysIDs[i]);
+ i++;
+ }
+ XOperatingActivityDocument.Doc.OnSystemChanged(roPtc.Data.sysIDs, roPtc.Data.closeSysIDs);
+ XActivityDocument.Doc.OnSystemChanged(roPtc.Data.sysIDs, roPtc.Data.closeSysIDs);
+ WeekEndNestDocument.Doc.OnSystemChanged(roPtc.Data.sysIDs, roPtc.Data.closeSysIDs);
+ XThemeActivityDocument specificDocument = XDocuments.GetSpecificDocument<XThemeActivityDocument>(XThemeActivityDocument.uuID);
+ specificDocument.OnSystemChanged(roPtc.Data.sysIDs, roPtc.Data.closeSysIDs);
+ XFPStrengthenDocument specificDocument2 = XDocuments.GetSpecificDocument<XFPStrengthenDocument>(XFPStrengthenDocument.uuID);
+ specificDocument2.SetNew(roPtc.Data.sysIDs);
+ XWelfareDocument.Doc.SetBackFlowOpenSystem(roPtc.Data.sysIDs, roPtc.Data.closeSysIDs);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs.meta new file mode 100644 index 00000000..2bec3626 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OpenSystemNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6819063c8dcd8e4cbd956aecca680fa +timeCreated: 1611404631 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs new file mode 100644 index 00000000..813407f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_OutLookChangeNtf
+ {
+ public static void Process(PtcG2C_OutLookChangeNtf roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.roleid);
+ bool flag = entity == null;
+ if (!flag)
+ {
+ XOutlookHelper.SetOutLookReplace(entity.Attributes, entity, roPtc.Data.outlook);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs.meta new file mode 100644 index 00000000..979913a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_OutLookChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 019ae07cd4c714a4e88571569ba740c1 +timeCreated: 1611402953 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs new file mode 100644 index 00000000..cb8933a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PayAllInfoNtf
+ {
+ public static void Process(PtcG2C_PayAllInfoNtf roPtc)
+ {
+ XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument.PayAllInfoNtf(roPtc.Data);
+ XWelfareDocument specificDocument2 = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument2.PayAllInfoNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs.meta new file mode 100644 index 00000000..de1027e5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayAllInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f82994a3dab6e7a4187b4c6cdb5ee577 +timeCreated: 1611404891 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs new file mode 100644 index 00000000..4745bedf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PayGiftNtf
+ {
+ public static void Process(PtcG2C_PayGiftNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs.meta new file mode 100644 index 00000000..85b4add2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayGiftNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 08e5587b9d7b1d54fbd8c8fc0a2f0811 +timeCreated: 1611402971 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs new file mode 100644 index 00000000..ab307f5a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PayMemberPrivilegeNtf
+ {
+ public static void Process(PtcG2C_PayMemberPrivilegeNtf roPtc)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetPayMemberPrivilege(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs.meta new file mode 100644 index 00000000..f2e86b35 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayMemberPrivilegeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 454b6d1b869766b4586ef149642c1ceb +timeCreated: 1611403647 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs new file mode 100644 index 00000000..54c8317a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PayScoreNtf
+ {
+ public static void Process(PtcG2C_PayScoreNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs.meta new file mode 100644 index 00000000..11b464d5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PayScoreNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 89baba298ff5bfb4ca6c6c27f81280b0 +timeCreated: 1611404089 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs new file mode 100644 index 00000000..614262d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PetChangeNotfiy
+ {
+ public static void Process(PtcG2C_PetChangeNotfiy roPtc)
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument.OnPetChange(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs.meta new file mode 100644 index 00000000..bc67876f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetChangeNotfiy.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 268691d4848166649b6ecced543e10a7 +timeCreated: 1611403468 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs new file mode 100644 index 00000000..61b1c1d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PetInviteNtf
+ {
+ public static void Process(PtcG2C_PetInviteNtf roPtc)
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument.OnPetInviteNtfPtc(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs.meta new file mode 100644 index 00000000..55cc1611 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PetInviteNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dd136116b2b2fd14c96046e49c559122 +timeCreated: 1611404681 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs new file mode 100644 index 00000000..0a8eacd3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs @@ -0,0 +1,118 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PkPrepareNtf
+ {
+ public static void Process(PtcG2C_PkPrepareNtf roPtc)
+ {
+ bool flag = roPtc.Data.beginorend == 0u;
+ if (flag)
+ {
+ XSingleton<XDebug>.singleton.AddLog("PK Prepare Begin at ", Time.frameCount.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ bool flag2 = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsLoaded();
+ if (flag2)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.ShowCountDownFrame(true);
+ }
+ bool flag3 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag3)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.ShowCountDownFrame(true);
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.HideLeftTime();
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.uiBehaviour.m_PromptFrame.gameObject.SetActive(false);
+ }
+ bool flag4 = XSingleton<XScene>.singleton.SceneType == SceneType.SKYCITY_FIGHTING;
+ if (flag4)
+ {
+ XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
+ specificDocument.HideVSInfo();
+ specificDocument.HideTime();
+ XSingleton<UiUtility>.singleton.SetMiniMapOpponentStatus(false);
+ }
+ bool flag5 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_RESWAR_PVP;
+ if (flag5)
+ {
+ XGuildMineBattleDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildMineBattleDocument>(XGuildMineBattleDocument.uuID);
+ specificDocument2.HideVSInfo();
+ }
+ bool flag6 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_BIGMELEE_FIGHT;
+ if (flag6)
+ {
+ XBigMeleeBattleDocument specificDocument3 = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument3.HideInfo();
+ }
+ }
+ else
+ {
+ bool flag7 = 1u == roPtc.Data.beginorend;
+ if (flag7)
+ {
+ XSingleton<XDebug>.singleton.AddLog("PK Prepare End at ", Time.frameCount.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ bool flag8 = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsLoaded();
+ if (flag8)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.ShowCountDownFrame(false);
+ }
+ bool flag9 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag9)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.ShowCountDownFrame(false);
+ }
+ bool flag10 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_PVP;
+ if (flag10)
+ {
+ bool flag11 = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsLoaded();
+ if (flag11)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.SetLeftTime((uint)XSingleton<XGlobalConfig>.singleton.GetInt("PVPGameTime"));
+ }
+ bool flag12 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag12)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SetLeftTime((uint)XSingleton<XGlobalConfig>.singleton.GetInt("PVPGameTime"), -1);
+ }
+ }
+ bool flag13 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_PK;
+ if (flag13)
+ {
+ bool flag14 = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsLoaded();
+ if (flag14)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.SetLeftTime((uint)XSingleton<XGlobalConfig>.singleton.GetInt("PkUpdateTime"));
+ }
+ bool flag15 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag15)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SetLeftTime((uint)XSingleton<XGlobalConfig>.singleton.GetInt("PkUpdateTime"), -1);
+ }
+ }
+ bool flag16 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_INVFIGHT;
+ if (flag16)
+ {
+ bool flag17 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag17)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SetLeftTime((uint)XSingleton<XGlobalConfig>.singleton.GetInt("InvFightFightTime"), -1);
+ }
+ }
+ bool flag18 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_HORSE_RACE || XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_WEEKEND4V4_HORSERACING;
+ if (flag18)
+ {
+ XRaceDocument specificDocument4 = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ bool flag19 = specificDocument4.RaceHandler != null;
+ if (flag19)
+ {
+ specificDocument4.RaceHandler.RefreshTime(0f);
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs.meta new file mode 100644 index 00000000..7c4bc384 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkPrepareNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c79d8cf21ab61ea4caa7e8f7abb3005a +timeCreated: 1611404531 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs new file mode 100644 index 00000000..567aeb2c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PkRoleInfoNtf
+ {
+ public static void Process(PtcG2C_PkRoleInfoNtf roPtc)
+ {
+ XQualifyingDocument specificDocument = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ bool flag = roPtc.Data.pkroleinfo.Count > 0;
+ if (flag)
+ {
+ specificDocument.SetPkRoleInfo(roPtc.Data.pkroleinfo);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs.meta new file mode 100644 index 00000000..a94d4906 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkRoleInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c95b86391c467cd4da5448482419c8e5 +timeCreated: 1611404538 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs new file mode 100644 index 00000000..2c4a9248 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PkTimeoutNtf
+ {
+ public static void Process(PtcG2C_PkTimeoutNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs.meta new file mode 100644 index 00000000..5309379c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PkTimeoutNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aaa930dbf67d9704a9da163bc746b577 +timeCreated: 1611404304 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs new file mode 100644 index 00000000..dcc65f94 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PlatformShareAwardNtf
+ {
+ public static void Process(PtcG2C_PlatformShareAwardNtf roPtc)
+ {
+ XAchievementDocument specificDocument = XDocuments.GetSpecificDocument<XAchievementDocument>(XAchievementDocument.uuID);
+ specificDocument.UpdateShareRewardsInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs.meta new file mode 100644 index 00000000..a53bbe2e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlatformShareAwardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56cb9e1f56470494ab60f60de8ae24d9 +timeCreated: 1611403745 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs new file mode 100644 index 00000000..81fba093 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PlayDiceNtf
+ {
+ public static void Process(PtcG2C_PlayDiceNtf roPtc)
+ {
+ XSuperRiskDocument.Doc.PlayDiceNtfBack(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs.meta new file mode 100644 index 00000000..4503f53e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PlayDiceNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e47ac31e80da82c4eb47da7bbb7083b0 +timeCreated: 1611404738 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs new file mode 100644 index 00000000..b738675b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs @@ -0,0 +1,23 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PositionDebug
+ {
+ public static void Process(PtcG2C_PositionDebug roPtc)
+ {
+ for (int i = 0; i < roPtc.Data.positions.Count; i++)
+ {
+ PositionCheck positionCheck = roPtc.Data.positions[i];
+ Vector3 pos;
+ pos = new Vector3(positionCheck.position.x, positionCheck.position.y, positionCheck.position.z);
+ Quaternion face = XSingleton<XCommon>.singleton.FloatToQuaternion(positionCheck.face);
+ ulong uid = positionCheck.uid;
+ XSyncDebug.DrawDebug(positionCheck.uid, pos, face);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs.meta new file mode 100644 index 00000000..a0b522c8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PositionDebug.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5164e421b1f0dc349b177878ab6a24e9 +timeCreated: 1611403705 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs new file mode 100644 index 00000000..a18f817f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs @@ -0,0 +1,53 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PushPraiseNtf
+ {
+ public static void Process(PtcG2C_PushPraiseNtf roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddLog("Process_PtcG2C_PushPraiseNtf: ", roPtc.Data.type.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ bool flag = XScreenShotShareDocument.ShareIndex == CommentType.COMMENT_NEST || XScreenShotShareDocument.ShareIndex == CommentType.COMMENT_DRAGON;
+ if (!flag)
+ {
+ XScreenShotShareDocument.ShareIndex = roPtc.Data.type;
+ bool flag2 = XScreenShotShareDocument.ShareIndex == CommentType.COMMENT_PANDORA || XScreenShotShareDocument.ShareIndex == CommentType.COMMENT_SPRITE;
+ if (flag2)
+ {
+ bool flag3 = XSingleton<XGame>.singleton.CurrentStage.Stage == EXStage.Hall;
+ if (flag3)
+ {
+ XScreenShotShareDocument specificDocument = XDocuments.GetSpecificDocument<XScreenShotShareDocument>(XScreenShotShareDocument.uuID);
+ specificDocument.CurShareBgType = ((XScreenShotShareDocument.ShareIndex == CommentType.COMMENT_PANDORA) ? ShareBgType.LuckyPandora : ShareBgType.LuckySpriteType);
+ specificDocument.SpriteID = roPtc.Data.spriteid;
+ XSingleton<XDebug>.singleton.AddLog(string.Concat(new object[]
+ {
+ " ",
+ specificDocument.CurShareBgType,
+ " ",
+ specificDocument.SpriteID
+ }), null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+ else
+ {
+ bool flag4 = !XSingleton<XGameSysMgr>.singleton.IsSystemOpened(XSysDefine.XSys_Link_Share);
+ if (!flag4)
+ {
+ bool flag5 = XSingleton<XSceneMgr>.singleton.IsPVPScene() || XSingleton<XSceneMgr>.singleton.IsPVEScene();
+ if (flag5)
+ {
+ XSingleton<XUICacheMgr>.singleton.CacheUI(XSysDefine.XSys_Link_Share, EXStage.Hall);
+ }
+ else
+ {
+ XScreenShotShareDocument.DoShowShare();
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs.meta new file mode 100644 index 00000000..25914981 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PushPraiseNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bf3623e061b0e5246a3c143ce9e445da +timeCreated: 1611404482 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs new file mode 100644 index 00000000..0c3493ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PvpBattleBeginNtf
+ {
+ public static void Process(PtcG2C_PvpBattleBeginNtf roPtc)
+ {
+ XBattleCaptainPVPDocument specificDocument = XDocuments.GetSpecificDocument<XBattleCaptainPVPDocument>(XBattleCaptainPVPDocument.uuID);
+ specificDocument.SetBattleBegin(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs.meta new file mode 100644 index 00000000..ee30bd06 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleBeginNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 88095c0b5ded6e94c9fe5168a3ac0637 +timeCreated: 1611404082 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs new file mode 100644 index 00000000..01b123a2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PvpBattleEndNtf
+ {
+ public static void Process(PtcG2C_PvpBattleEndNtf roPtc)
+ {
+ XBattleCaptainPVPDocument specificDocument = XDocuments.GetSpecificDocument<XBattleCaptainPVPDocument>(XBattleCaptainPVPDocument.uuID);
+ specificDocument.SetBattleEnd(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs.meta new file mode 100644 index 00000000..8b3c2920 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleEndNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c34db2fbb29ce81409cb683d986a1b3a +timeCreated: 1611404497 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs new file mode 100644 index 00000000..3438fde6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs @@ -0,0 +1,52 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_PvpBattleKill
+ {
+ public static void Process(PtcG2C_PvpBattleKill roPtc)
+ {
+ SceneType sceneType = XSingleton<XSceneMgr>.singleton.GetSceneType(XSingleton<XScene>.singleton.SceneID);
+ SceneType sceneType2 = sceneType;
+ if (sceneType2 <= SceneType.SCENE_HEROBATTLE)
+ {
+ if (sceneType2 == SceneType.SCENE_GPR)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.ReceiveBattleSkill(roPtc.Data);
+ return;
+ }
+ if (sceneType2 == SceneType.SCENE_HEROBATTLE)
+ {
+ XHeroBattleDocument specificDocument2 = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument2.ReceiveBattleSkill(roPtc.Data);
+ return;
+ }
+ }
+ else
+ {
+ if (sceneType2 == SceneType.SCENE_CASTLE_FIGHT)
+ {
+ XGuildTerritoryDocument specificDocument3 = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument3.ReceiveBattleSkill(roPtc.Data);
+ return;
+ }
+ if (sceneType2 == SceneType.SCENE_BIGMELEE_FIGHT)
+ {
+ XBigMeleeBattleDocument specificDocument4 = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument4.ReceiveBattleKillInfo(roPtc.Data);
+ return;
+ }
+ if (sceneType2 == SceneType.SCENE_BATTLEFIELD_FIGHT)
+ {
+ XBattleFieldBattleDocument.Doc.ReceiveBattleKillInfo(roPtc.Data);
+ return;
+ }
+ }
+ XBattleCaptainPVPDocument specificDocument5 = XDocuments.GetSpecificDocument<XBattleCaptainPVPDocument>(XBattleCaptainPVPDocument.uuID);
+ specificDocument5.SetBattleKill(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs.meta new file mode 100644 index 00000000..f6fff918 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_PvpBattleKill.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3bc171577b7de4c449c3759e8c6f2cf4 +timeCreated: 1611403600 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs new file mode 100644 index 00000000..c3f366f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs @@ -0,0 +1,42 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_QANotify
+ {
+ public static void Process(PtcG2C_QANotify roPtc)
+ {
+ bool flag = roPtc.Data.type == 0u;
+ if (!flag)
+ {
+ XMainInterfaceDocument specificDocument = XDocuments.GetSpecificDocument<XMainInterfaceDocument>(XMainInterfaceDocument.uuID);
+ XVoiceQADocument specificDocument2 = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ bool is_over = roPtc.Data.is_over;
+ if (is_over)
+ {
+ specificDocument2.TempType = 0u;
+ specificDocument2.IsVoiceQAIng = false;
+ specificDocument2.MainInterFaceBtnState = false;
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.RefreshH5ButtonState(XSysDefine.XSys_GuildRelax_VoiceQA, true);
+ }
+ else
+ {
+ bool is_playing = roPtc.Data.is_playing;
+ if (is_playing)
+ {
+ specificDocument2.IsVoiceQAIng = true;
+ specificDocument.SetVoiceBtnAppear(0u);
+ specificDocument2.VoiceQAInit(roPtc.Data.type);
+ }
+ else
+ {
+ specificDocument2.TempType = roPtc.Data.type;
+ specificDocument.SetVoiceBtnAppear(roPtc.Data.type);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs.meta new file mode 100644 index 00000000..db1439be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QANotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 40a3a227a2c95594bbad2d7dabed8eb1 +timeCreated: 1611403614 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs new file mode 100644 index 00000000..6cd8bc08 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs @@ -0,0 +1,37 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_QueryRoleStateAck
+ {
+ public static void Process(PtcG2C_QueryRoleStateAck roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible() && DlgBase<BattleMain, BattleMainBehaviour>.singleton.TeamMonitor != null;
+ if (flag)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.TeamMonitor.OnQueryRoleStates(roPtc.Data);
+ }
+ bool flag2 = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ XSpectateTeamMonitorHandler spectateTeamMonitor = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.SpectateTeamMonitor;
+ bool flag3 = spectateTeamMonitor != null;
+ if (flag3)
+ {
+ bool flag4 = spectateTeamMonitor.m_TeamMonitor_Left.IsVisible();
+ if (flag4)
+ {
+ spectateTeamMonitor.m_TeamMonitor_Left.OnQueryRoleStates(roPtc.Data);
+ }
+ bool flag5 = spectateTeamMonitor.m_TeamMonitor_Right.IsVisible();
+ if (flag5)
+ {
+ spectateTeamMonitor.m_TeamMonitor_Right.OnQueryRoleStates(roPtc.Data);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs.meta new file mode 100644 index 00000000..d23e3d26 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_QueryRoleStateAck.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c1e80406f9c99e5459bd80b5dbb483e5 +timeCreated: 1611404492 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs new file mode 100644 index 00000000..1a394b0f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReachAchieveNtf
+ {
+ public static void Process(PtcG2C_ReachAchieveNtf roPtc)
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.OnReachAhieveNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs.meta new file mode 100644 index 00000000..d9a3dfef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachAchieveNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 20f9ceabb03e46e488258f883a8ecae7 +timeCreated: 1611403410 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs new file mode 100644 index 00000000..1dbdd293 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReachDesignationNtf
+ {
+ public static void Process(PtcG2C_ReachDesignationNtf roPtc)
+ {
+ XDesignationDocument xdesignationDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XDesignationDocument.uuID) as XDesignationDocument;
+ xdesignationDocument.OnReachDesignationNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs.meta new file mode 100644 index 00000000..5bf376e5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReachDesignationNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9c91629bf4e0f3f499508b530c8f7d20 +timeCreated: 1611404233 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs new file mode 100644 index 00000000..fb6bc6e6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReceiveFlowerNtf
+ {
+ public static void Process(PtcG2C_ReceiveFlowerNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs.meta new file mode 100644 index 00000000..796625a4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReceiveFlowerNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 603a92d3d55dcb543a45a69c3539c757 +timeCreated: 1611403832 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs new file mode 100644 index 00000000..cd6597ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReconnectSyncNotify
+ {
+ public static void Process(PtcG2C_ReconnectSyncNotify roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("Got reconnected data!", null, null, null, null, null);
+ XSingleton<XReconnection>.singleton.GetReconnectData(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs.meta new file mode 100644 index 00000000..8bab1d32 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 285b019e29e22d74387e2acc57c1a09c +timeCreated: 1611403474 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs new file mode 100644 index 00000000..1050abec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ResWarBattleDataNtf
+ {
+ public static void Process(PtcG2C_ResWarBattleDataNtf roPtc)
+ {
+ XGuildMineBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineBattleDocument>(XGuildMineBattleDocument.uuID);
+ specificDocument.SetBattleInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs.meta new file mode 100644 index 00000000..632a2201 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarBattleDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7e0ac990aebe6d4daa069421117cddd +timeCreated: 1611404403 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs new file mode 100644 index 00000000..2450c507 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ResWarTeamResOne
+ {
+ public static void Process(PtcG2C_ResWarTeamResOne roPtc)
+ {
+ XGuildMineBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineBattleDocument>(XGuildMineBattleDocument.uuID);
+ specificDocument.SetBattleTeamInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs.meta new file mode 100644 index 00000000..ad3c7d5b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ResWarTeamResOne.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7798c4d2801cdbe4681180492f476fa8 +timeCreated: 1611403955 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs new file mode 100644 index 00000000..aeee0a8c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReviveCountdown
+ {
+ public static void Process(PtcG2C_ReviveCountdown roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded() && DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.ShowAutoReviveFrame(roPtc.Data.countdownTime, roPtc.Data.revivecost, roPtc.Data.revivecosttype);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs.meta new file mode 100644 index 00000000..fb248832 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveCountdown.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7db6652b14dccc24d9dc9f059ed2eec9 +timeCreated: 1611404002 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs new file mode 100644 index 00000000..7e823d07 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs @@ -0,0 +1,47 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReviveNotify
+ {
+ public static void Process(PtcG2C_ReviveNotify roPtc)
+ {
+ XEntity entityConsiderDeath = XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(roPtc.Data.roleID);
+ bool flag = entityConsiderDeath == null;
+ if (!flag)
+ {
+ bool isPlayer = entityConsiderDeath.IsPlayer;
+ if (isPlayer)
+ {
+ XPlayer xplayer = entityConsiderDeath as XPlayer;
+ xplayer.Revive();
+ }
+ else
+ {
+ XRole xrole = entityConsiderDeath as XRole;
+ xrole.Revive();
+ }
+ XSingleton<XDebug>.singleton.AddGreenLog(string.Format("Revive type: {0}", roPtc.Data.type.ToString()), null, null, null, null, null);
+ bool flag2 = roPtc.Data.type == ReviveType.ReviveSprite;
+ if (flag2)
+ {
+ XAffiliate xaffiliate = null;
+ bool flag3 = entityConsiderDeath.Equipment != null;
+ if (flag3)
+ {
+ xaffiliate = entityConsiderDeath.Equipment.Sprite;
+ }
+ bool flag4 = xaffiliate != null;
+ if (flag4)
+ {
+ string value = XSingleton<XGlobalConfig>.singleton.GetValue("SpriteReviveFx");
+ XSingleton<XFxMgr>.singleton.CreateAndPlay(value, xaffiliate.EngineObject, Vector3.zero, Vector3.one, 1f, true, 5f, true);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs.meta new file mode 100644 index 00000000..50880ee1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReviveNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ce558d8b444e1624b8331334798a2be9 +timeCreated: 1611404578 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs new file mode 100644 index 00000000..0e746d1d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_RewardChangedNtf
+ {
+ public static void Process(PtcG2C_RewardChangedNtf roPtc)
+ {
+ XSystemRewardDocument specificDocument = XDocuments.GetSpecificDocument<XSystemRewardDocument>(XSystemRewardDocument.uuID);
+ specificDocument.OnRewardChanged(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs.meta new file mode 100644 index 00000000..ef821a40 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RewardChangedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c8f9e3d639eb0a54bacdb589820ac600 +timeCreated: 1611404536 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs new file mode 100644 index 00000000..2cab6d81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_RiftSceneInfoNtf
+ {
+ public static void Process(PtcG2C_RiftSceneInfoNtf roPtc)
+ {
+ XRiftDocument specificDocument = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ specificDocument.OnRiftSceneInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs.meta new file mode 100644 index 00000000..f335cbb3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiftSceneInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1063ce7c37e3c4e4da0b3d479d4397b2 +timeCreated: 1611403217 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs new file mode 100644 index 00000000..4a0db731 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_RiskBuyNtf
+ {
+ public static void Process(PtcG2C_RiskBuyNtf roPtc)
+ {
+ XSuperRiskDocument.Doc.RiskBuyNtfBack(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs.meta new file mode 100644 index 00000000..bf7519da --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskBuyNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f5b4382a692cbe7419da7912aa1c2ad7 +timeCreated: 1611404877 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs new file mode 100644 index 00000000..2eabcb63 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_RiskRecoverDiceNtf
+ {
+ public static void Process(PtcG2C_RiskRecoverDiceNtf roPtc)
+ {
+ XSuperRiskDocument xsuperRiskDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XSuperRiskDocument.uuID) as XSuperRiskDocument;
+ xsuperRiskDocument.SetDiceLeftTime(roPtc.Data.diceNum, roPtc.Data.leftDiceTime);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs.meta new file mode 100644 index 00000000..13bd2f0b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_RiskRecoverDiceNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a11d3de1f3f2ecd4e8466784c8fdda52 +timeCreated: 1611404252 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs new file mode 100644 index 00000000..97fa3edc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SceneDamageRankNtf
+ {
+ public static void Process(PtcG2C_SceneDamageRankNtf roPtc)
+ {
+ XSceneDamageRankDocument xsceneDamageRankDoc = XSingleton<XGame>.singleton.Doc.XSceneDamageRankDoc;
+ xsceneDamageRankDoc.OnGetRank(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs.meta new file mode 100644 index 00000000..5f9c8de0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneDamageRankNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 85367b762cb326b40ad10ec1a73358a7 +timeCreated: 1611404051 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs new file mode 100644 index 00000000..8b74c1b9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SceneFinishStateChanged
+ {
+ public static void Process(PtcG2C_SceneFinishStateChanged roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs.meta new file mode 100644 index 00000000..dba1b52c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneFinishStateChanged.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 41fac0822f14053428a4a5410581a5ab +timeCreated: 1611403638 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs new file mode 100644 index 00000000..91a3cff9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SceneLeftDoodad
+ {
+ public static void Process(PtcG2C_SceneLeftDoodad roPtc)
+ {
+ XLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLevelRewardDocument>(XLevelRewardDocument.uuID);
+ specificDocument.SetPickItemList(roPtc.Data.items);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs.meta new file mode 100644 index 00000000..ba35186e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneLeftDoodad.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 34e5134bb0e6a9d448bc7e7b72bef910 +timeCreated: 1611403557 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs new file mode 100644 index 00000000..2afaeeb8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs @@ -0,0 +1,36 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ScenePrepareInfoNtf
+ {
+ public static void Process(PtcG2C_ScenePrepareInfoNtf roPtc)
+ {
+ bool flag = XSingleton<XGame>.singleton.CurrentStage.Stage != EXStage.World;
+ if (!flag)
+ {
+ bool isPVPScene = XSingleton<XScene>.singleton.IsPVPScene;
+ if (isPVPScene)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SetLoadingPrompt(roPtc.Data.unreadyroles, true);
+ }
+ else
+ {
+ DlgBase<LoadingDlg, LoadingDlgBehaviour>.singleton.SetLoadingPrompt(roPtc.Data.unreadyroles);
+ }
+ for (int i = 0; i < roPtc.Data.unreadyroles.Count; i++)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("roles: ", roPtc.Data.unreadyroles[i], " not ready yet.", null, null, null);
+ }
+ bool flag2 = roPtc.Data.unreadyroles.Count > 0;
+ if (flag2)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("still has ", roPtc.Data.unreadyroles.Count.ToString(), " unready.", null, null, null);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs.meta new file mode 100644 index 00000000..49362231 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ScenePrepareInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3238cb542c543884090e1d3a1ea4607a +timeCreated: 1611403548 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs new file mode 100644 index 00000000..32ec8fdd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SceneStateNtf
+ {
+ public static void Process(PtcG2C_SceneStateNtf roPtc)
+ {
+ XSingleton<XScene>.singleton.SceneStarted = roPtc.Data.state.isready;
+ bool flag = XSingleton<XEntityMgr>.singleton.Player != null;
+ if (flag)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.UpdateSpecialStateFromServer(roPtc.Data.rolespecialstate, uint.MaxValue);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs.meta new file mode 100644 index 00000000..3afde81b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SceneStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 57966d6e52693e74cb2051db2cea12cd +timeCreated: 1611403750 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs new file mode 100644 index 00000000..f3b99512 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs @@ -0,0 +1,115 @@ +using System;
+using System.Collections.Generic;
+using KKSG;
+using XUpdater;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SelectRoleNtf
+ {
+ public static void Process(PtcG2C_SelectRoleNtf roPtc)
+ {
+ XSingleton<XGame>.singleton.PlayerID = roPtc.Data.roleData.Brief.roleID;
+ List<SkillInfo> skills = null;
+ List<uint> skillSlot = null;
+ uint skillPageIndex = 0u;
+ bool flag = roPtc.Data.roleData.skill != null;
+ if (flag)
+ {
+ skills = ((roPtc.Data.roleData.skill.index == 0u) ? roPtc.Data.roleData.skill.Skills : roPtc.Data.roleData.skill.SkillsTwo);
+ skillSlot = ((roPtc.Data.roleData.skill.index == 0u) ? roPtc.Data.roleData.skill.SkillSlot : roPtc.Data.roleData.skill.SkillSlotTwo);
+ skillPageIndex = roPtc.Data.roleData.skill.index;
+ }
+ XSingleton<XAttributeMgr>.singleton.InitPlayerAttr(roPtc.Data.roleData.Brief, roPtc.Data.roleData.Attributes, skills, skillSlot, skillPageIndex, roPtc.Data.roleData.system, roPtc.Data.roleData.military);
+ XOptionsDocument specificDocument = XDocuments.GetSpecificDocument<XOptionsDocument>(XOptionsDocument.uuID);
+ specificDocument.InitServerConfig(roPtc.Data.roleData.config);
+ XSingleton<XItemDrawerMgr>.singleton.Init((uint)roPtc.Data.roleData.Brief.type);
+ XSingleton<XGameSysMgr>.singleton.InitWhenSelectRole(roPtc.Data.roleData.Brief.level);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.Init(roPtc.Data.roleData.Bag);
+ XSingleton<XStageProgress>.singleton.Init(roPtc.Data.roleData.Stages);
+ XMainInterfaceDocument specificDocument2 = XDocuments.GetSpecificDocument<XMainInterfaceDocument>(XMainInterfaceDocument.uuID);
+ specificDocument2.BackFlow = roPtc.Data.backflow_firstenter;
+ XSingleton<XTutorialMgr>.singleton.Reset(roPtc.Data.roleData.Brief.tutorialBitsArray);
+ XTaskDocument specificDocument3 = XDocuments.GetSpecificDocument<XTaskDocument>(XTaskDocument.uuID);
+ specificDocument3.TaskRecord.InitFromServerData(roPtc.Data.roleData.task_record);
+ XGuildDailyTaskDocument specificDocument4 = XDocuments.GetSpecificDocument<XGuildDailyTaskDocument>(XGuildDailyTaskDocument.uuID);
+ specificDocument4.InitFromServerData(roPtc.Data.roleData.task_record);
+ XTempActivityDocument specificDocument5 = XDocuments.GetSpecificDocument<XTempActivityDocument>(XTempActivityDocument.uuID);
+ specificDocument5.InitActivityRecordFromServerData(roPtc.Data.roleData.spActivityRecord);
+ WeekEndNestDocument.Doc.OfflineOpenSetTaskId();
+ XEmblemDocument specificDocument6 = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ specificDocument6.InitWhenCreateRole(roPtc.Data.roleData.Brief.level);
+ XCharacterEquipDocument specificDocument7 = XDocuments.GetSpecificDocument<XCharacterEquipDocument>(XCharacterEquipDocument.uuID);
+ specificDocument7.UpdateRedPoints(roPtc.Data.roleData.Brief.level);
+ ArtifactBagDocument.Doc.UpdateRedPoints(roPtc.Data.roleData.Brief.level);
+ XCharacterItemDocument specificDocument8 = XDocuments.GetSpecificDocument<XCharacterItemDocument>(XCharacterItemDocument.uuID);
+ specificDocument8.UpdateRedPoints(roPtc.Data.roleData.Brief.level);
+ XAchievementDocument specificDocument9 = XDocuments.GetSpecificDocument<XAchievementDocument>(XAchievementDocument.uuID);
+ specificDocument9.InitAchivement((roPtc.Data.roleData.achieve == null) ? null : roPtc.Data.roleData.achieve.oldachievement);
+ XPurchaseDocument specificDocument10 = XDocuments.GetSpecificDocument<XPurchaseDocument>(XPurchaseDocument.uuID);
+ specificDocument10.InitPurchaseInfo(roPtc.Data.roleData.BuyInfo);
+ XFashionDocument specificDocument11 = XDocuments.GetSpecificDocument<XFashionDocument>(XFashionDocument.uuID);
+ specificDocument11.Init(roPtc.Data.roleData.fashionrecord.bagfashion, roPtc.Data.roleData.fashionrecord.bodyfashion, roPtc.Data.roleData.fashionrecord.collected);
+ XFashionStorageDocument specificDocument12 = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument12.Init(roPtc.Data.roleData.fashionrecord);
+ XPrerogativeDocument specificDocument13 = XDocuments.GetSpecificDocument<XPrerogativeDocument>(XPrerogativeDocument.uuID);
+ specificDocument13.Initialize(roPtc.Data.roleData.payv2.consume.setid, roPtc.Data.roleData.payv2.consume.activateid);
+ XSingleton<XUICacheMgr>.singleton.Init();
+ XPetDocument specificDocument14 = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument14.OnPetAllNotify(roPtc.Data.roleData.petsys);
+ XCardCollectDocument specificDocument15 = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument15.InitCardData(roPtc.Data.roleData.atlas);
+ XAbyssPartyDocument specificDocument16 = XDocuments.GetSpecificDocument<XAbyssPartyDocument>(XAbyssPartyDocument.uuID);
+ bool flag2 = roPtc.Data.roleData.Stages.absparty != null;
+ if (flag2)
+ {
+ specificDocument16.SetAbyssIndex(roPtc.Data.roleData.Stages.absparty.aby);
+ }
+ XTitleDocument specificDocument17 = XDocuments.GetSpecificDocument<XTitleDocument>(XTitleDocument.uuID);
+ specificDocument17.RefreshTitleLevelUp();
+ XPartnerDocument.Doc.ReqPartnerInfo();
+ XNPCFavorDocument specificDocument18 = XDocuments.GetSpecificDocument<XNPCFavorDocument>(XNPCFavorDocument.uuID);
+ specificDocument18.ReqNPCFavorUnionInfo();
+ XSpriteSystemDocument specificDocument19 = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument19.SetAllInfo(roPtc.Data.roleData.SpriteRecord);
+ XHeroBattleDocument specificDocument20 = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument20.SetHeroBattleInfo(roPtc.Data.roleData.herobattle);
+ XQualifyingDocument specificDocument21 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument21.SetQulifyingRewardCount(roPtc.Data.roleData.pkrecord);
+ bool flag3 = !string.IsNullOrEmpty(XSingleton<XLoginDocument>.singleton.OpenID);
+ if (flag3)
+ {
+ XSingleton<XUpdater.XUpdater>.singleton.XTssSdk.OnLogin((int)XSingleton<XLoginDocument>.singleton.Channel, XSingleton<XLoginDocument>.singleton.OpenID, XSingleton<XClientNetwork>.singleton.ServerID, roPtc.Data.roleData.Brief.roleID.ToString());
+ }
+ XSingleton<XUpdater.XUpdater>.singleton.XApolloManager.Init((int)XSingleton<XLoginDocument>.singleton.Channel, XSingleton<XLoginDocument>.singleton.OpenID);
+ XSingleton<XUpdater.XUpdater>.singleton.XPlatform.SendUserInfo(XSingleton<XClientNetwork>.singleton.ServerID, roPtc.Data.roleData.Brief.roleID);
+ XSingleton<XUpdater.XUpdater>.singleton.XBroadCast.SetAccount((int)XSingleton<XLoginDocument>.singleton.Channel, XSingleton<XLoginDocument>.singleton.OpenID, XSingleton<XLoginDocument>.singleton.TokenCache);
+ XSingleton<XUpdater.XUpdater>.singleton.XApolloManager.SetRealtimeMode();
+ XSingleton<XPandoraSDKDocument>.singleton.PandoraLogin();
+ XSmeltDocument.Doc.InitEquipAndEmblemRedDot();
+ XSmeltDocument.Doc.ResetSetting();
+ ArtifactInscriptionDocument.Doc.ResetSetting();
+ ArtifactFuseDocument.Doc.ResetSetting();
+ ArtifactRecastDocument.Doc.ResetSetting();
+ ArtifactRefinedDocument.Doc.ResetSetting();
+ XFileLog.RoleName = roPtc.Data.roleData.Brief.name;
+ XPlatformAbilityDocument.Doc.QueryQQVipInfo();
+ XRechargeDocument specificDocument22 = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument22.GetPayMarketingInfo();
+ XRechargeDocument specificDocument23 = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument23.PayParameterNtf();
+ XMilitaryRankDocument specificDocument24 = XDocuments.GetSpecificDocument<XMilitaryRankDocument>(XMilitaryRankDocument.uuID);
+ specificDocument24.SetMyMilitaryRecord(roPtc.Data.roleData.military);
+ XFPStrengthenDocument specificDocument25 = XDocuments.GetSpecificDocument<XFPStrengthenDocument>(XFPStrengthenDocument.uuID);
+ specificDocument25.RequsetFightNum();
+ AdditionRemindDocument specificDocument26 = XDocuments.GetSpecificDocument<AdditionRemindDocument>(AdditionRemindDocument.uuID);
+ bool flag4 = roPtc.Data.roleData.misc != null;
+ if (flag4)
+ {
+ specificDocument26.SetFreeflowTime(roPtc.Data.roleData.misc.freeflow_hinttime);
+ }
+ XSingleton<XReconnection>.singleton.SetPlayerInfo(roPtc.Data.roleData);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs.meta new file mode 100644 index 00000000..62176bae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SelectRoleNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b95965e4d9e950e4ba4fdec9a9a7f9c3 +timeCreated: 1611404410 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs new file mode 100644 index 00000000..2312ee38 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs @@ -0,0 +1,23 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ServerOpenDayNtf
+ {
+ public static void Process(PtcG2C_ServerOpenDayNtf roPtc)
+ {
+ XActivityDocument specificDocument = XDocuments.GetSpecificDocument<XActivityDocument>(XActivityDocument.uuID);
+ specificDocument.ServerOpenDay = roPtc.Data.openday;
+ specificDocument.ServerOpenWeek = (int)roPtc.Data.week;
+ specificDocument.SeverOpenSecond = roPtc.Data.daybeginsecdiff;
+ specificDocument.ServerTimeSince1970 = roPtc.Data.nowTime;
+ bool flag = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.SetActivityEffect(true);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs.meta new file mode 100644 index 00000000..8f915131 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ServerOpenDayNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3cbd3e266149d6c4f9ff64e36c6e20c9 +timeCreated: 1611403602 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs new file mode 100644 index 00000000..8609d1eb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs @@ -0,0 +1,16 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ShareRandomGiftNtf
+ {
+ public static void Process(PtcG2C_ShareRandomGiftNtf roPtc)
+ {
+ RpcC2G_GetPlatformShareChest rpcC2G_GetPlatformShareChest = new RpcC2G_GetPlatformShareChest();
+ rpcC2G_GetPlatformShareChest.oArg.box_id = roPtc.Data.id;
+ rpcC2G_GetPlatformShareChest.oArg.open_key = XSingleton<XClientNetwork>.singleton.OpenKey;
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2G_GetPlatformShareChest);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs.meta new file mode 100644 index 00000000..8006d5d9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ShareRandomGiftNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9e5435e7bef26e649a8d7276fd8ca0bf +timeCreated: 1611404241 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs new file mode 100644 index 00000000..33318a89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs @@ -0,0 +1,82 @@ +using System;
+using System.Collections.Generic;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkillChangedNtf
+ {
+ public static void Process(PtcG2C_SkillChangedNtf roPtc)
+ {
+ XPlayerAttributes xplayerData = XSingleton<XAttributeMgr>.singleton.XPlayerData;
+ for (int i = 0; i < roPtc.Data.newSkill.Count; i++)
+ {
+ xplayerData.SkillLevelInfo.SetSkillLevel(roPtc.Data.newSkill[i], roPtc.Data.newSkillLevel[i]);
+ }
+ for (int i = 0; i < roPtc.Data.changedSkillHash.Count; i++)
+ {
+ xplayerData.SkillLevelInfo.SetSkillLevel(roPtc.Data.changedSkillHash[i], roPtc.Data.changedSkillLevel[i]);
+ }
+ for (int i = 0; i < roPtc.Data.removeSkill.Count; i++)
+ {
+ xplayerData.SkillLevelInfo.RemoveSkill(roPtc.Data.removeSkill[i]);
+ }
+ xplayerData.SkillLevelInfo.RefreshSkillFlags();
+ xplayerData.SkillLevelInfo.RefreshSelfLinkedLevels(XSingleton<XEntityMgr>.singleton.Player);
+ bool flag = roPtc.Data.skillType == 0;
+ if (flag)
+ {
+ bool flag2 = XSingleton<XAttributeMgr>.singleton.XPlayerData.SkillPageIndex == 0u;
+ if (flag2)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.SKILL_POINT), (ulong)((long)roPtc.Data.skillpoint));
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.SKILL_POINT_TWO), (ulong)roPtc.Data.skillpointtwo);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.AWAKE_SKILL_POINT), (ulong)roPtc.Data.awakepoint);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.AWAKE_SKILL_POINT_TWO), (ulong)roPtc.Data.awakepointtwo);
+ }
+ else
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.SKILL_POINT_TWO), (ulong)((long)roPtc.Data.skillpoint));
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.SKILL_POINT), (ulong)roPtc.Data.skillpointtwo);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.AWAKE_SKILL_POINT), (ulong)roPtc.Data.awakepointtwo);
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.AWAKE_SKILL_POINT_TWO), (ulong)roPtc.Data.awakepoint);
+ }
+ }
+ else
+ {
+ bool flag3 = roPtc.Data.skillType == 1;
+ if (flag3)
+ {
+ XSingleton<XGame>.singleton.Doc.XBagDoc.SetVirtualItemCount(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.GUILD_CONTRIBUTE), (ulong)((long)roPtc.Data.skillpoint));
+ }
+ }
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ bool flag4 = roPtc.Data.skillSlot != null && roPtc.Data.skillSlot.Count > 0;
+ if (flag4)
+ {
+ List<int> list = new List<int>();
+ for (int i = 0; i < roPtc.Data.skillSlot.Count; i++)
+ {
+ bool flag5 = roPtc.Data.skillSlot[i] == 0u && xplayerData.skillSlot[i] > 0u;
+ if (flag5)
+ {
+ list.Add(i);
+ }
+ }
+ specificDocument.ShowEmblemTips(list);
+ }
+ for (int i = 0; i < roPtc.Data.skillSlot.Count; i++)
+ {
+ xplayerData.skillSlot[i] = roPtc.Data.skillSlot[i];
+ }
+ bool flag6 = roPtc.Data.skillSlot != null && roPtc.Data.skillSlot.Count > 0;
+ if (flag6)
+ {
+ XEmblemDocument specificDocument2 = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ specificDocument2.UpdateRedPoints();
+ }
+ specificDocument.SkillRefresh(false, false);
+ XSingleton<XTutorialHelper>.singleton.SkillLevelup = true;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs.meta new file mode 100644 index 00000000..cfdad0b9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillChangedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 76047b4ac1a4e8c478d89a4b67f58124 +timeCreated: 1611403948 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs new file mode 100644 index 00000000..7c833fc8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkillCoolNtf
+ {
+ public static void Process(PtcG2C_SkillCoolNtf roPtc)
+ {
+ XCoolDownAllSkillsArgs @event = XEventPool<XCoolDownAllSkillsArgs>.GetEvent();
+ @event.Firer = XSingleton<XGame>.singleton.Doc;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs.meta new file mode 100644 index 00000000..41d1eef3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0d583d27d1b916e4191f152864eb56b5 +timeCreated: 1611403195 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs new file mode 100644 index 00000000..4c85bd5f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkillInitCoolNtf
+ {
+ public static void Process(PtcG2C_SkillInitCoolNtf roPtc)
+ {
+ XInitCoolDownAllSkillsArgs @event = XEventPool<XInitCoolDownAllSkillsArgs>.GetEvent();
+ @event.Firer = XSingleton<XGame>.singleton.Doc;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs.meta new file mode 100644 index 00000000..6f8ee0e9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 78c56202be73a584f991e429f749dd9d +timeCreated: 1611403982 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs new file mode 100644 index 00000000..a1f344e5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs @@ -0,0 +1,71 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkillResult
+ {
+ public static void Process(PtcG2C_SkillResult roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.FirerID);
+ bool flag = entity == null;
+ if (!flag)
+ {
+ bool bulletIDSpecified = roPtc.Data.BulletIDSpecified;
+ if (bulletIDSpecified)
+ {
+ XBulletMgr.KeyOfBullet id = new XBulletMgr.KeyOfBullet(entity.ID, roPtc.Data.BulletID, roPtc.Data.BulletExtraIDSpecified ? roPtc.Data.BulletExtraID : 0UL);
+ XBullet bullet = XSingleton<XBulletMgr>.singleton.GetBullet(id);
+ bool flag2 = bullet == null;
+ if (flag2)
+ {
+ XSingleton<XBulletMgr>.singleton.Cache(id);
+ }
+ else
+ {
+ bullet.OnResult(null);
+ }
+ }
+ for (int i = 0; i < roPtc.Data.TargetList.Count; i++)
+ {
+ XEntity entity2 = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.TargetList[i].UnitID);
+ bool flag3 = !XEntity.ValideEntity(entity2);
+ if (!flag3)
+ {
+ TargetHurtInfo targetHurtInfo = roPtc.Data.TargetList[i];
+ ProjectDamageResult data = XDataPool<ProjectDamageResult>.GetData();
+ data.Accept = true;
+ data.Result = (ProjectResultType)targetHurtInfo.Result.Result;
+ data.Value = targetHurtInfo.Result.Value;
+ data.Flag = targetHurtInfo.Result.Flag;
+ data.Type = (DamageType)targetHurtInfo.Result.DamageType;
+ data.ElementType = (DamageElement)targetHurtInfo.Result.ElementType;
+ data.IsTargetDead = targetHurtInfo.Result.IsTargetDead;
+ data.Caster = roPtc.Data.FirerID;
+ data.ComboCount = targetHurtInfo.Result.ComboCount;
+ XSkillCore skill = entity.SkillMgr.GetSkill(roPtc.Data.SkillID);
+ bool flag4 = skill == null || skill.Soul.Hit.Count <= (int)roPtc.Data.PIndex;
+ if (flag4)
+ {
+ bool flag5 = skill == null;
+ if (flag5)
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("skill ", roPtc.Data.SkillID.ToString(), " is not found by ", entity.Name, null, null);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("skill ", skill.Soul.Name, "'s hit point is not matched by ", entity.Name, null, null);
+ }
+ }
+ else
+ {
+ XSkill.SkillResult_TakeEffect(entity, entity2, data, skill.Soul.Hit[(int)roPtc.Data.PIndex], Vector3.forward, XStrickenResponse.Cease, true, 1f, Vector3.zero);
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs.meta new file mode 100644 index 00000000..fdb09ee5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillResult.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b8a0c0f80369044c8f8660a91984a14 +timeCreated: 1611404096 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs new file mode 100644 index 00000000..4635e422 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkyCityBattleDataNtf
+ {
+ public static void Process(PtcG2C_SkyCityBattleDataNtf roPtc)
+ {
+ XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
+ specificDocument.SetBattleInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs.meta new file mode 100644 index 00000000..13b273a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityBattleDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6026b33a4ac3174cb4d14d9dc5f66c9 +timeCreated: 1611404630 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs new file mode 100644 index 00000000..0e4d776f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkyCityEstimateRes
+ {
+ public static void Process(PtcG2C_SkyCityEstimateRes roPtc)
+ {
+ XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
+ specificDocument.SetBattleEndInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs.meta new file mode 100644 index 00000000..6e2de22e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityEstimateRes.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 03ece861e2919294cab893ce83fa0300 +timeCreated: 1611402960 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs new file mode 100644 index 00000000..4257eeeb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkyCityTeamRes
+ {
+ public static void Process(PtcG2C_SkyCityTeamRes roPtc)
+ {
+ XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
+ specificDocument.SetBattleTeamInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs.meta new file mode 100644 index 00000000..9381dce9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTeamRes.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4e2c1fa0ad078fa428de2971baace987 +timeCreated: 1611403697 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs new file mode 100644 index 00000000..bc340744 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SkyCityTimeRes
+ {
+ public static void Process(PtcG2C_SkyCityTimeRes roPtc)
+ {
+ bool flag = roPtc.Data.type == SkyCityTimeType.Waiting;
+ if (flag)
+ {
+ XSkyArenaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaEntranceDocument>(XSkyArenaEntranceDocument.uuID);
+ specificDocument.SetTime(roPtc.Data.time);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs.meta new file mode 100644 index 00000000..ba01a2e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkyCityTimeRes.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b5bcfb04ab4d6c4388e3d617f5f6ce9 +timeCreated: 1611404095 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs new file mode 100644 index 00000000..54ca11ee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SpActivityChangeNtf
+ {
+ public static void Process(PtcG2C_SpActivityChangeNtf roPtc)
+ {
+ XTempActivityDocument.Doc.UpdateActivityTaskState(roPtc.Data.actid, roPtc.Data.taskid, roPtc.Data.state, roPtc.Data.progress);
+ XCarnivalDocument specificDocument = XDocuments.GetSpecificDocument<XCarnivalDocument>(XCarnivalDocument.uuID);
+ specificDocument.OnSpActivityChange(roPtc.Data);
+ WeekEndNestDocument.Doc.TaskChangePtc(roPtc.Data.actid, roPtc.Data.taskid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs.meta new file mode 100644 index 00000000..3e6e1e2e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fb45f388fb95a1646aa47e9e178c96be +timeCreated: 1611404930 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs new file mode 100644 index 00000000..000696b6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs @@ -0,0 +1,21 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SpActivityOffsetDayNtf
+ {
+ public static void Process(PtcG2C_SpActivityOffsetDayNtf roPtc)
+ {
+ XTempActivityDocument.Doc.InitOffsetDayInfos(roPtc.Data);
+ for (int i = 0; i < roPtc.Data.actid.Count; i++)
+ {
+ bool flag = roPtc.Data.actid[i] == 1u;
+ if (flag)
+ {
+ XCarnivalDocument specificDocument = XDocuments.GetSpecificDocument<XCarnivalDocument>(XCarnivalDocument.uuID);
+ specificDocument.RespInfo(roPtc.Data.offsetday[i]);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs.meta new file mode 100644 index 00000000..1943daf5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpActivityOffsetDayNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 90c004c74f55af34c94ddab886b4f206 +timeCreated: 1611404140 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs new file mode 100644 index 00000000..e1339b0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs @@ -0,0 +1,19 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SpecialStateNtf
+ {
+ public static void Process(PtcG2C_SpecialStateNtf roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddLog(roPtc.Data.uid.ToString(), " got specialStateNtf state ", roPtc.Data.state.ToString(), " mask ", roPtc.Data.effectmask.ToString(), null, XDebugColor.XDebug_None);
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uid);
+ bool flag = entity != null;
+ if (flag)
+ {
+ entity.UpdateSpecialStateFromServer(roPtc.Data.state, roPtc.Data.effectmask);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs.meta new file mode 100644 index 00000000..9581121a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpecialStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8404bd8aff0f437439d52be730ddd8f0 +timeCreated: 1611404047 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs new file mode 100644 index 00000000..71e59672 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SpriteChangedNtf
+ {
+ public static void Process(PtcG2C_SpriteChangedNtf roPtc)
+ {
+ XSpriteSystemDocument specificDocument = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument.OnSpriteChange(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs.meta new file mode 100644 index 00000000..7f79ecad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SpriteChangedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1c7bad8d1f6186243be70db0acf6cb13 +timeCreated: 1611403344 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs new file mode 100644 index 00000000..3a87b6d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_StartBattleFailedNtf
+ {
+ public static void Process(PtcG2C_StartBattleFailedNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.ProcessTeamOPErrorCode(roPtc.Data.reason, roPtc.Data.proUserID);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs.meta new file mode 100644 index 00000000..facead05 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartBattleFailedNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 91ea4125fa0012c4399c0f573f9aa573 +timeCreated: 1611404144 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs new file mode 100644 index 00000000..3462503a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_StartRollNtf
+ {
+ public static void Process(PtcG2C_StartRollNtf roPtc)
+ {
+ XRollDocument specificDocument = XDocuments.GetSpecificDocument<XRollDocument>(XRollDocument.uuID);
+ specificDocument.SetRollItem(roPtc.Data.info);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs.meta new file mode 100644 index 00000000..e8f925a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_StartRollNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: df2163209e246ce4b90d46ab54d68884 +timeCreated: 1611404691 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs new file mode 100644 index 00000000..d4f31500 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SynAtlasAttr
+ {
+ public static void Process(PtcG2C_SynAtlasAttr roPtc)
+ {
+ XCardCollectDocument specificDocument = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument.OnRefreshAttr(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs.meta new file mode 100644 index 00000000..2c9db434 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynAtlasAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 66ff655b708c02a47bb5c24ca3f1a240 +timeCreated: 1611403856 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs new file mode 100644 index 00000000..fe67b0d8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SynGuildArenaBattleInfo
+ {
+ public static void Process(PtcG2C_SynGuildArenaBattleInfo roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.OnSynGuildArenaBattleInfos(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs.meta new file mode 100644 index 00000000..313a61fd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaBattleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b96fead09eb39f47bc04998266b376e +timeCreated: 1611404096 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs new file mode 100644 index 00000000..3e6df111 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SynGuildArenaFightUnit
+ {
+ public static void Process(PtcG2C_SynGuildArenaFightUnit roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs.meta new file mode 100644 index 00000000..daadd74f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaFightUnit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8025df4b7e0dc7d45b35cea7604b2dcc +timeCreated: 1611404033 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs new file mode 100644 index 00000000..32e8b16f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SynGuildArenaRoleOnline
+ {
+ public static void Process(PtcG2C_SynGuildArenaRoleOnline roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs.meta new file mode 100644 index 00000000..79e2c055 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildArenaRoleOnline.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: efe2eaba68636034fbda9dd29e812ce0 +timeCreated: 1611404806 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs new file mode 100644 index 00000000..c0aa8da9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SynGuildInheritNumInfo
+ {
+ public static void Process(PtcG2C_SynGuildInheritNumInfo roPtc)
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.SynInheritBaseInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs.meta new file mode 100644 index 00000000..c8eb1301 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SynGuildInheritNumInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c7f201ce279489548901a1b4eea097c9 +timeCreated: 1611404532 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs new file mode 100644 index 00000000..4a990473 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs @@ -0,0 +1,18 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SyncMoveNotify
+ {
+ public static void Process(PtcG2C_SyncMoveNotify roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.EntityID);
+ bool flag = entity == null;
+ if (!flag)
+ {
+ XSingleton<XActionReceiver>.singleton.OnMoveReceived(entity, roPtc.Data);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs.meta new file mode 100644 index 00000000..87f606fd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncMoveNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ea0c881ad0878b540b6c0f2b331aa4c5 +timeCreated: 1611404776 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs new file mode 100644 index 00000000..478afdf9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs @@ -0,0 +1,21 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_SyncStepNotify
+ {
+ public static void Process(PtcG2C_SyncStepNotify roPtc)
+ {
+ for (int i = 0; i < roPtc.Data.DataList.Count; i++)
+ {
+ XEntity entityConsiderDeath = XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(roPtc.Data.DataList[i].EntityID);
+ bool flag = entityConsiderDeath == null;
+ if (!flag)
+ {
+ XSingleton<XActionReceiver>.singleton.OnActionReceived(entityConsiderDeath, roPtc.Data.DataList[i]);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs.meta new file mode 100644 index 00000000..91b4deaf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SyncStepNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7720fd5f1296c07448ae3d8daea0a06a +timeCreated: 1611403952 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs new file mode 100644 index 00000000..58e5e56a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TajieHelpNotify
+ {
+ public static void Process(PtcG2C_TajieHelpNotify roPtc)
+ {
+ TaJieHelpDocument.Doc.OnGetPtcMes(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs.meta new file mode 100644 index 00000000..cbaa8858 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TajieHelpNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5443fdbaf2070074bb0b8c2a9a6a01b5 +timeCreated: 1611403714 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs new file mode 100644 index 00000000..9d2dee2f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TakeRandomTask
+ {
+ public static void Process(PtcG2C_TakeRandomTask roPtc)
+ {
+ XLevelDocument specificDocument = XDocuments.GetSpecificDocument<XLevelDocument>(XLevelDocument.uuID);
+ specificDocument.OnTaskRandomTask(roPtc.Data.taskid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs.meta new file mode 100644 index 00000000..d5f0c2fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TakeRandomTask.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7244369a24a6bbf44887e7f7695e50fa +timeCreated: 1611403937 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs new file mode 100644 index 00000000..b8648c6d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TeamFullDataNtf
+ {
+ public static void Process(PtcG2C_TeamFullDataNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnTeamFullDataNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs.meta new file mode 100644 index 00000000..6e7fe7a1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamFullDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2b232793340bc2b49b25c0c52c85ddfa +timeCreated: 1611403498 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs new file mode 100644 index 00000000..e7dc224e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TeamInviteNotify
+ {
+ public static void Process(PtcG2C_TeamInviteNotify roPtc)
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ specificDocument.OnInviteComing(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs.meta new file mode 100644 index 00000000..dccdf678 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamInviteNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 290169167bc5c114684b3d3a917d6f35 +timeCreated: 1611403475 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs new file mode 100644 index 00000000..25aaeab9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TeamSelectNotify
+ {
+ public static void Process(PtcG2C_TeamSelectNotify roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs.meta new file mode 100644 index 00000000..d2f1f68c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeamSelectNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1cebbbff767484b48b5f88ce15b02ef9 +timeCreated: 1611403349 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs new file mode 100644 index 00000000..ff97bf44 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs @@ -0,0 +1,26 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TeleportNotice
+ {
+ public static void Process(PtcG2C_TeleportNotice roPtc)
+ {
+ bool flag = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded();
+ if (flag)
+ {
+ bool onnotice = roPtc.Data.onnotice;
+ if (onnotice)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.ShowNotice(XStringDefineProxy.GetString("LEVEL_ALL_TRANSPORT"), 5f, 1f);
+ }
+ else
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.StopNotice();
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs.meta new file mode 100644 index 00000000..73bfcdaf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TeleportNotice.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2070dd297f9a154b882b9e1f9920b3b +timeCreated: 1611404256 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs new file mode 100644 index 00000000..c11b062f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ThemeActivityChangeNtf
+ {
+ public static void Process(PtcG2C_ThemeActivityChangeNtf roPtc)
+ {
+ XThemeActivityDocument.Doc.SetActivityChange(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs.meta new file mode 100644 index 00000000..cec64ad3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ThemeActivityChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b8b0bf9a038c0b04db594b9f10a66bb2 +timeCreated: 1611404406 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs new file mode 100644 index 00000000..8a5477e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TitleChangeNotify
+ {
+ public static void Process(PtcG2C_TitleChangeNotify roPtc)
+ {
+ XTitleDocument specificDocument = XDocuments.GetSpecificDocument<XTitleDocument>(XTitleDocument.uuID);
+ specificDocument.TitleLevelChange(roPtc.Data.titleID);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs.meta new file mode 100644 index 00000000..e98b3f57 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TitleChangeNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 154843b4e794f85469ad72e69e089c33 +timeCreated: 1611403262 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs new file mode 100644 index 00000000..ba997414 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TowerFirstPassRewardNtf
+ {
+ public static void Process(PtcG2C_TowerFirstPassRewardNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs.meta new file mode 100644 index 00000000..c649f407 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerFirstPassRewardNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3f68d36f8f67ae54e959d368ec4311f5 +timeCreated: 1611403610 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs new file mode 100644 index 00000000..d145b28a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TowerSceneInfoNtf
+ {
+ public static void Process(PtcG2C_TowerSceneInfoNtf roPtc)
+ {
+ XBattleDocument specificDocument = XDocuments.GetSpecificDocument<XBattleDocument>(XBattleDocument.uuID);
+ specificDocument.RefreshTowerSceneInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs.meta new file mode 100644 index 00000000..0b9f141a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TowerSceneInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6a003c010348ccf448def4af07801f55 +timeCreated: 1611403887 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs new file mode 100644 index 00000000..fbf6e25a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TransNotify
+ {
+ public static void Process(PtcG2C_TransNotify roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs.meta new file mode 100644 index 00000000..983d79ab --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8773e51c615dce94aa61460ea44ea81e +timeCreated: 1611404079 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs new file mode 100644 index 00000000..51c77b3a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs @@ -0,0 +1,39 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TransSkillNotfiy
+ {
+ public static void Process(PtcG2C_TransSkillNotfiy roPtc)
+ {
+ bool flag = XSingleton<XEntityMgr>.singleton.Player == null || XSingleton<XEntityMgr>.singleton.Player.SkillMgr == null;
+ if (!flag)
+ {
+ XBattleSkillDocument specificDocument = XDocuments.GetSpecificDocument<XBattleSkillDocument>(XBattleSkillDocument.uuID);
+ for (int i = 0; i < roPtc.Data.skillhash.Count; i++)
+ {
+ bool flag2 = roPtc.Data.skilllevel[i] == 0u;
+ if (!flag2)
+ {
+ specificDocument.SetSkillLevel(roPtc.Data.skillhash[i], roPtc.Data.skilllevel[i]);
+ XSkillCore skill = XSingleton<XEntityMgr>.singleton.Player.SkillMgr.GetSkill(roPtc.Data.skillhash[i]);
+ bool flag3 = skill != null;
+ if (flag3)
+ {
+ skill.InitCoreData(false);
+ }
+ }
+ }
+ bool flag4 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_MOBA && DlgBase<BattleMain, BattleMainBehaviour>.singleton.SkillHandler != null;
+ if (flag4)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SkillHandler.DelayRefreshAddBtn();
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs.meta new file mode 100644 index 00000000..07a398c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TransSkillNotfiy.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eecae5cff844f9e4d821a7c0c26899e0 +timeCreated: 1611404799 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs new file mode 100644 index 00000000..33aa6b90 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XUpdater;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_TssSdkAntiDataNtf
+ {
+ public static void Process(PtcG2C_TssSdkAntiDataNtf roPtc)
+ {
+ XSingleton<XUpdater.XUpdater>.singleton.XTssSdk.OnRcvWhichNeedToSendClientSdk(roPtc.Data.anti_data, roPtc.Data.anti_data_len);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs.meta new file mode 100644 index 00000000..7747d220 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_TssSdkAntiDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fbce8a243ee7f2a4c82526828f12382a +timeCreated: 1611404932 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs new file mode 100644 index 00000000..714a8ab2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs @@ -0,0 +1,95 @@ +using System;
+using System.Collections.Generic;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UnitAppear
+ {
+ private static Queue<PtcG2C_UnitAppear> delayQueue = new Queue<PtcG2C_UnitAppear>();
+
+ private static XTimerMgr.ElapsedEventHandler processCb = null;
+
+ private static PtcG2C_UnitAppear currentPtc = null;
+
+ private static int currentProcessCount = 0;
+
+ private static bool processImmediate = true;
+
+ public static void Process(PtcG2C_UnitAppear roPtc)
+ {
+ bool flag = !XSingleton<XGame>.singleton.SyncMode;
+ if (!flag)
+ {
+ bool flag2 = Process_PtcG2C_UnitAppear.processImmediate;
+ if (flag2)
+ {
+ for (int i = 0; i < roPtc.Data.units.Count; i++)
+ {
+ XSingleton<XEntityMgr>.singleton.CreateEntityByUnitAppearance(roPtc.Data.units[i]);
+ }
+ }
+ else
+ {
+ Protocol.ManualReturn();
+ bool flag3 = Process_PtcG2C_UnitAppear.processCb == null;
+ if (flag3)
+ {
+ Process_PtcG2C_UnitAppear.processCb = new XTimerMgr.ElapsedEventHandler(Process_PtcG2C_UnitAppear.DelayProcess);
+ }
+ bool flag4 = Process_PtcG2C_UnitAppear.currentPtc != null;
+ if (flag4)
+ {
+ Process_PtcG2C_UnitAppear.delayQueue.Enqueue(roPtc);
+ }
+ else
+ {
+ Process_PtcG2C_UnitAppear.currentPtc = roPtc;
+ Process_PtcG2C_UnitAppear.currentProcessCount = 0;
+ }
+ XSingleton<XTimerMgr>.singleton.SetTimer(0.01f, Process_PtcG2C_UnitAppear.processCb, null);
+ }
+ }
+ }
+
+ private static void DelayProcess(object o)
+ {
+ bool flag = Process_PtcG2C_UnitAppear.currentPtc != null;
+ if (flag)
+ {
+ bool flag2 = Process_PtcG2C_UnitAppear.currentProcessCount < Process_PtcG2C_UnitAppear.currentPtc.Data.units.Count;
+ if (flag2)
+ {
+ UnitAppearance unit = Process_PtcG2C_UnitAppear.currentPtc.Data.units[Process_PtcG2C_UnitAppear.currentProcessCount];
+ XSingleton<XEntityMgr>.singleton.CreateEntityByUnitAppearance(unit);
+ Process_PtcG2C_UnitAppear.currentProcessCount++;
+ bool flag3 = Process_PtcG2C_UnitAppear.currentProcessCount < Process_PtcG2C_UnitAppear.currentPtc.Data.units.Count;
+ if (flag3)
+ {
+ XSingleton<XTimerMgr>.singleton.SetTimer(0.01f, Process_PtcG2C_UnitAppear.processCb, null);
+ }
+ else
+ {
+ bool flag4 = Process_PtcG2C_UnitAppear.delayQueue.Count > 0;
+ if (flag4)
+ {
+ Process_PtcG2C_UnitAppear.currentPtc = Process_PtcG2C_UnitAppear.delayQueue.Dequeue();
+ Process_PtcG2C_UnitAppear.currentProcessCount = 0;
+ XSingleton<XTimerMgr>.singleton.SetTimer(0.01f, Process_PtcG2C_UnitAppear.processCb, null);
+ }
+ else
+ {
+ bool flag5 = Process_PtcG2C_UnitAppear.currentPtc != null;
+ if (flag5)
+ {
+ Protocol.ReturnProtocolThread(Process_PtcG2C_UnitAppear.currentPtc);
+ Process_PtcG2C_UnitAppear.currentPtc = null;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs.meta new file mode 100644 index 00000000..b20ac953 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitAppear.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4af5f1724a8b8c141a4e99757c8fda48 +timeCreated: 1611403685 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs new file mode 100644 index 00000000..44e11026 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs @@ -0,0 +1,27 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UnitDisappear
+ {
+ public static void Process(PtcG2C_UnitDisappear roPtc)
+ {
+ XEntity xentity = XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(roPtc.Data.uID);
+ bool flag = xentity != null && xentity.IsRole;
+ if (flag)
+ {
+ XSingleton<XEntityMgr>.singleton.DestroyEntity(xentity);
+ }
+ else
+ {
+ xentity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.uID);
+ bool flag2 = xentity != null;
+ if (flag2)
+ {
+ XSingleton<XEntityMgr>.singleton.DestroyEntity(xentity);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs.meta new file mode 100644 index 00000000..c9ef5f34 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UnitDisappear.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 257e98ae54a2d9e4fb26d0c290d2b273 +timeCreated: 1611403465 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs new file mode 100644 index 00000000..d196ea28 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs @@ -0,0 +1,15 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateBuyGoldAndFatigueInfo
+ {
+ public static void Process(PtcG2C_UpdateBuyGoldAndFatigueInfo roPtc)
+ {
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.UpdatePlayerBuyInfo(roPtc.Data);
+ XPurchaseDocument specificDocument = XDocuments.GetSpecificDocument<XPurchaseDocument>(XPurchaseDocument.uuID);
+ specificDocument.InitPurchaseInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs.meta new file mode 100644 index 00000000..9666fc96 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b8ee63d869208464dac0d11a5c98b733 +timeCreated: 1611404407 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs new file mode 100644 index 00000000..cf36784b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateDisplayItems
+ {
+ public static void Process(PtcG2C_UpdateDisplayItems roPtc)
+ {
+ XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument.UpdateDisplay(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs.meta new file mode 100644 index 00000000..ceb965ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateDisplayItems.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 31581b5999e8ed54d9c3faa622b0bc66 +timeCreated: 1611403543 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs new file mode 100644 index 00000000..f893dcb2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateGuildArenaState
+ {
+ public static void Process(PtcG2C_UpdateGuildArenaState roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.OnUpdateGuildArenaState(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs.meta new file mode 100644 index 00000000..1e2deec5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateGuildArenaState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c19bc0174513ea44991931f4c6d53dd8 +timeCreated: 1611404490 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs new file mode 100644 index 00000000..9c840dd4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdatePayInfo
+ {
+ public static void Process(PtcG2C_UpdatePayInfo roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs.meta new file mode 100644 index 00000000..6161146c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdatePayInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cb2929b9fee47ed45b45af3d3bac506c +timeCreated: 1611404545 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs new file mode 100644 index 00000000..be49ac93 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs @@ -0,0 +1,19 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateStageInfoNtf
+ {
+ public static void Process(PtcG2C_UpdateStageInfoNtf roPtc)
+ {
+ XSingleton<XStageProgress>.singleton.Init(roPtc.Data.Stages);
+ XAbyssPartyDocument specificDocument = XDocuments.GetSpecificDocument<XAbyssPartyDocument>(XAbyssPartyDocument.uuID);
+ bool flag = roPtc.Data.Stages.absparty != null;
+ if (flag)
+ {
+ specificDocument.SetAbyssIndex(roPtc.Data.Stages.absparty.aby);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs.meta new file mode 100644 index 00000000..016d588e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateStageInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 10bba87d310f3c74a9f6cce40818db55 +timeCreated: 1611403219 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs new file mode 100644 index 00000000..610b1b30 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateTaskStatus
+ {
+ public static void Process(PtcG2C_UpdateTaskStatus roPtc)
+ {
+ XTaskDocument specificDocument = XDocuments.GetSpecificDocument<XTaskDocument>(XTaskDocument.uuID);
+ specificDocument.OnTaskStatusUpdate(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs.meta new file mode 100644 index 00000000..a53e853d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateTaskStatus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ec3079eb7e1084648b03aa3c6707722c +timeCreated: 1611404787 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs new file mode 100644 index 00000000..9e3927ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateVoipRoomMemberNtf
+ {
+ public static void Process(PtcG2C_UpdateVoipRoomMemberNtf roPtc)
+ {
+ XApolloDocument specificDocument = XDocuments.GetSpecificDocument<XApolloDocument>(XApolloDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.OnMembersInfoChange(roPtc.Data.dataList);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs.meta new file mode 100644 index 00000000..0b622a62 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateVoipRoomMemberNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2433484cdb49c084eb37a4d554d1456a +timeCreated: 1611403460 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs new file mode 100644 index 00000000..79946342 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_VsPayReviveNtf
+ {
+ public static void Process(PtcG2C_VsPayReviveNtf roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.NotifyVSPayRevive(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs.meta new file mode 100644 index 00000000..f54320ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_VsPayReviveNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5dc089ada3e461a4ab3fd291468de034 +timeCreated: 1611403807 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs new file mode 100644 index 00000000..4a2ef13c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs @@ -0,0 +1,23 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WarningRandomNtf
+ {
+ public static void Process(PtcG2C_WarningRandomNtf roPtc)
+ {
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(roPtc.Data.Firer);
+ bool flag = entity == null;
+ if (!flag)
+ {
+ XSkillCore skill = entity.SkillMgr.GetSkill(roPtc.Data.skill);
+ bool flag2 = skill != null;
+ if (flag2)
+ {
+ skill.BuildRandomWarningPos(roPtc.Data.WarningItems);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs.meta new file mode 100644 index 00000000..9c46412d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WarningRandomNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 42f15c03afcbd994b8a5502fb367e7dd +timeCreated: 1611403640 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs new file mode 100644 index 00000000..3eaa278a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs @@ -0,0 +1,23 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WatchBattleInfoNtf
+ {
+ public static void Process(PtcG2C_WatchBattleInfoNtf roPtc)
+ {
+ bool flag = DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.IsVisible();
+ if (flag)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.SpectateHandler.OnMessageChange(roPtc.Data.watchNum, roPtc.Data.commendNum);
+ }
+ bool flag2 = DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.OnSpectateMessageChange(roPtc.Data.watchNum, roPtc.Data.commendNum);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs.meta new file mode 100644 index 00000000..c79d214e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WatchBattleInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fec628e43f307c8488b0f5dfa40124c4 +timeCreated: 1611404943 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs new file mode 100644 index 00000000..a08d2964 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WeddingCarNtf
+ {
+ public static void Process(PtcG2C_WeddingCarNtf roPtc)
+ {
+ XWeddingDocument.Doc.OnGetWeddingCarNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs.meta new file mode 100644 index 00000000..fcf54dd9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingCarNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9eb70e51d18188341a9b03f436b7eee0 +timeCreated: 1611404242 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs new file mode 100644 index 00000000..b28d30a6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WeddingEventNtf
+ {
+ public static void Process(PtcG2C_WeddingEventNtf roPtc)
+ {
+ XWeddingDocument.Doc.WeddingSceneEventNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs.meta new file mode 100644 index 00000000..f9a5d06a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingEventNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a351f30bf853d234796080cd12a4208f +timeCreated: 1611404260 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs new file mode 100644 index 00000000..ae76e917 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WeddingLoadInfoNtf
+ {
+ public static void Process(PtcG2C_WeddingLoadInfoNtf roPtc)
+ {
+ XWeddingDocument.Doc.OnWeddingLoadingInfoNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs.meta new file mode 100644 index 00000000..d4074d96 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingLoadInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d35f09c5d76496042b0a4f43c6807047 +timeCreated: 1611404598 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs new file mode 100644 index 00000000..ad2e7747 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WeddingStateNtf
+ {
+ public static void Process(PtcG2C_WeddingStateNtf roPtc)
+ {
+ XWeddingDocument.Doc.WeddingStateNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs.meta new file mode 100644 index 00000000..b36cec82 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeddingStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ff252cd4a8007c741a59d7a9be9d7615 +timeCreated: 1611404946 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs new file mode 100644 index 00000000..5fd08c07 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WeekEnd4v4RoleDataNtf
+ {
+ public static void Process(PtcG2C_WeekEnd4v4RoleDataNtf roPtc)
+ {
+ XWeekendPartyDocument specificDocument = XDocuments.GetSpecificDocument<XWeekendPartyDocument>(XWeekendPartyDocument.uuID);
+ specificDocument.OnWeekendPartyBattleInfoNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs.meta new file mode 100644 index 00000000..443c5707 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WeekEnd4v4RoleDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b5fd93bc26131a4f846855ff5cadd66 +timeCreated: 1611404095 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs new file mode 100644 index 00000000..77d8d53a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs @@ -0,0 +1,14 @@ +using System;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WordNotify
+ {
+ public static void Process(PtcG2C_WordNotify roPtc)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.hint, "fece00");
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs.meta new file mode 100644 index 00000000..a5d47e59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WordNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9878a7461a746a149af656431b88d647 +timeCreated: 1611404190 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs new file mode 100644 index 00000000..bfd6f39e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldBossAttrNtf
+ {
+ public static void Process(PtcG2C_WorldBossAttrNtf roPtc)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetAttrCount(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs.meta new file mode 100644 index 00000000..0896d08d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossAttrNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ac1a901f6e2387842a344da8636792ef +timeCreated: 1611404328 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs new file mode 100644 index 00000000..03244993 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf
+ {
+ public static void Process(PtcG2C_WorldBossGuildAddAttrSyncClientNtf roPtc)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.ReceiveGuildAttAttrSync(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs.meta new file mode 100644 index 00000000..7bc3c5e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossGuildAddAttrSyncClientNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 41d04ff5d763e3e4cb8dba729e1640ee +timeCreated: 1611403636 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs new file mode 100644 index 00000000..72f10d29 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldBossStateNtf
+ {
+ public static void Process(PtcG2C_WorldBossStateNtf roPtc)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnWorldBossStateNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs.meta new file mode 100644 index 00000000..7918ab59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldBossStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 36112ce56e528fa42baabca289a7e6f5 +timeCreated: 1611403561 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs new file mode 100644 index 00000000..585f2739 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldChannelLeftTimesNtf
+ {
+ public static void Process(PtcG2C_WorldChannelLeftTimesNtf roPtc)
+ {
+ DlgBase<XChatView, XChatBehaviour>.singleton._worldSpeadTimes = roPtc.Data.leftTimes;
+ DlgBase<XChatView, XChatBehaviour>.singleton.RefeshWorldSpeakTimes();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs.meta new file mode 100644 index 00000000..d461deb5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a84d52893a0d20640afd1e9792444278 +timeCreated: 1611404294 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs new file mode 100644 index 00000000..fb385e76 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldLevelNtf2Client
+ {
+ public static void Process(PtcG2C_WorldLevelNtf2Client roPtc)
+ {
+ XBackFlowDocument.Doc.OnGetWorldLevelNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs.meta new file mode 100644 index 00000000..6e7ecc6e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldLevelNtf2Client.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aff157ca15aade143899d7dd2fb58426 +timeCreated: 1611404348 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs new file mode 100644 index 00000000..5d9c92f6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs @@ -0,0 +1,19 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_fastMBDismissNtf
+ {
+ public static void Process(PtcG2C_fastMBDismissNtf roPtc)
+ {
+ DlgBase<XTeamBattleQuickConfirmView, XTeamBattleQuickConfirmBehaviour>.singleton.SetVisibleWithAnimation(false, null);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("TEAM_QUICKBATTLE_DISMISS", new object[]
+ {
+ roPtc.Data.quitRoleName
+ }), "fece00");
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs.meta new file mode 100644 index 00000000..565a6498 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_fastMBDismissNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bec3a39c0ac85914bb9dbc1a416b4175 +timeCreated: 1611404481 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs new file mode 100644 index 00000000..b9b9a26d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs @@ -0,0 +1,24 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_guildcamppartyNotify
+ {
+ public static void Process(PtcG2C_guildcamppartyNotify roPtc)
+ {
+ XGuildCollectDocument specificDocument = XDocuments.GetSpecificDocument<XGuildCollectDocument>(XGuildCollectDocument.uuID);
+ bool flag = roPtc.Data.notify_type == 0u;
+ if (flag)
+ {
+ specificDocument.SetActivityState(false);
+ }
+ else
+ {
+ specificDocument.SetTime(roPtc.Data.left_time);
+ specificDocument.SetActivityState(true);
+ specificDocument.SetLotteryMachineState(roPtc.Data.lottery_list.Count != 0, false);
+ specificDocument.SyncNpcList(roPtc.Data.sprite_list);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs.meta new file mode 100644 index 00000000..28dddf52 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_guildcamppartyNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 230e8b5dbe270f449b38397fe2594a61 +timeCreated: 1611403426 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs new file mode 100644 index 00000000..0c4661ed --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_synGuildInheritExp
+ {
+ public static void Process(PtcG2C_synGuildInheritExp roPtc)
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.SynInheritExp(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs.meta new file mode 100644 index 00000000..f3116c1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synGuildInheritExp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 77518806e02300b4caeb731ab4ddc7fd +timeCreated: 1611403953 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs new file mode 100644 index 00000000..0dea9650 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_synguildarenadisplace
+ {
+ public static void Process(PtcG2C_synguildarenadisplace roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs.meta new file mode 100644 index 00000000..50815c76 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_synguildarenadisplace.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 016844719bacfef4888fe0ddbdf294c1 +timeCreated: 1611402953 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs new file mode 100644 index 00000000..08287b7f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_AnswerAckNtf
+ {
+ public static void Process(PtcM2C_AnswerAckNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.AddAnswer2List(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs.meta new file mode 100644 index 00000000..80e97491 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_AnswerAckNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b51b56d70a0b33a4ba536a742aa38d4d +timeCreated: 1611404394 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs new file mode 100644 index 00000000..fea8c9a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ArenaStarDataNtf
+ {
+ public static void Process(PtcM2C_ArenaStarDataNtf roPtc)
+ {
+ XHallFameDocument.Doc.OnGetSupportInfo(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs.meta new file mode 100644 index 00000000..ed6f3f6c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ArenaStarDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 06647384da29fd849b92b6a7b82434f6 +timeCreated: 1611402965 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs new file mode 100644 index 00000000..77575b48 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_BlackListNtfNew
+ {
+ public static void Process(PtcM2C_BlackListNtfNew roPtc)
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.RefreshBlockFriendData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs.meta new file mode 100644 index 00000000..5efbc69d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_BlackListNtfNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1fc603627192c6640aa21beadc40472d +timeCreated: 1611403403 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs new file mode 100644 index 00000000..eb853a7a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs @@ -0,0 +1,25 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_CheckQueuingNtf
+ {
+ public static void Process(PtcM2C_CheckQueuingNtf roPtc)
+ {
+ ErrorCode errorcode = roPtc.Data.errorcode;
+ if (errorcode != ErrorCode.ERR_SUCCESS)
+ {
+ if (errorcode == ErrorCode.ERR_ACCOUNT_QUEUING)
+ {
+ XSingleton<XLoginDocument>.singleton.WaitForServerQueue(roPtc.Data.rolecount, roPtc.Data.timeleft);
+ }
+ }
+ else
+ {
+ XSingleton<XLoginDocument>.singleton.EnterToSelectChar();
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs.meta new file mode 100644 index 00000000..1b685303 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CheckQueuingNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6e92fd69cee54cd4db91a53444ea7f01 +timeCreated: 1611403905 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs new file mode 100644 index 00000000..0b5badbb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_CrossGvgRoomStateNtf
+ {
+ public static void Process(PtcM2C_CrossGvgRoomStateNtf roPtc)
+ {
+ XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
+ specificDocument.NotifyCrossGVGRoomState(roPtc.Data.room, roPtc.Data.record);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs.meta new file mode 100644 index 00000000..d2c20159 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgRoomStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 59384603afafcba488e021d42fc9cb92 +timeCreated: 1611403763 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs new file mode 100644 index 00000000..25a237df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_CrossGvgStateNtf
+ {
+ public static void Process(PtcM2C_CrossGvgStateNtf roPtc)
+ {
+ XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
+ specificDocument.SynCrossGVGTimeState(roPtc.Data.state);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs.meta new file mode 100644 index 00000000..32c530c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CrossGvgStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7d3b896626871764c989ac68af9cb834 +timeCreated: 1611404000 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs new file mode 100644 index 00000000..79086f95 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_CustomBattleGMNotify
+ {
+ public static void Process(PtcM2C_CustomBattleGMNotify roPtc)
+ {
+ XCustomBattleDocument specificDocument = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
+ specificDocument.IsCreateGM = roPtc.Data.isgmcreate;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs.meta new file mode 100644 index 00000000..9864ed04 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_CustomBattleGMNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7f00378ac4d166a428eb1a3b533f1721 +timeCreated: 1611404028 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs new file mode 100644 index 00000000..6cb0b40b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_DERankChangNtf
+ {
+ public static void Process(PtcM2C_DERankChangNtf roPtc)
+ {
+ XDragonCrusadeDocument specificDocument = XDocuments.GetSpecificDocument<XDragonCrusadeDocument>(XDragonCrusadeDocument.uuID);
+ specificDocument.OnNotifyResult(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs.meta new file mode 100644 index 00000000..d24fc4d0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DERankChangNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: def9769ba68b1744aa5d4f147ac37ab7 +timeCreated: 1611404690 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs new file mode 100644 index 00000000..300301f6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_DailyTaskEventNtf
+ {
+ public static void Process(PtcM2C_DailyTaskEventNtf roPtc)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetDailyTaskEvent(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs.meta new file mode 100644 index 00000000..e39e9ab8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DailyTaskEventNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1a200a555141ad343b94d8c55f7dde8b +timeCreated: 1611403308 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs new file mode 100644 index 00000000..9c1ca24c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_DragonGuildNameNtf
+ {
+ public static void Process(PtcM2C_DragonGuildNameNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs.meta new file mode 100644 index 00000000..cc855cec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildNameNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: af6a5edaede814f4f9ef64adb81e7f3d +timeCreated: 1611404344 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs new file mode 100644 index 00000000..3f194263 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_DragonGuildSettingChanged
+ {
+ public static void Process(PtcM2C_DragonGuildSettingChanged roPtc)
+ {
+ XDragonGuildApproveDocument specificDocument = XDocuments.GetSpecificDocument<XDragonGuildApproveDocument>(XDragonGuildApproveDocument.uuID);
+ specificDocument.OnSetApprove(new DragonGuildApproveSetting
+ {
+ autoApprove = (roPtc.Data.needApproval == 0u),
+ PPT = roPtc.Data.recuitPPT
+ });
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs.meta new file mode 100644 index 00000000..4f046ef2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_DragonGuildSettingChanged.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2804567a91a83fc4c9af3782de98681a +timeCreated: 1611403473 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs new file mode 100644 index 00000000..749176dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs @@ -0,0 +1,14 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_FastMBConfirmM2CNtf
+ {
+ public static void Process(PtcM2C_FastMBConfirmM2CNtf roPtc)
+ {
+ DlgBase<XTeamBattleQuickConfirmView, XTeamBattleQuickConfirmBehaviour>.singleton.SetVisibleWithAnimation(true, null);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs.meta new file mode 100644 index 00000000..7a3fc45d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FastMBConfirmM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9e1c27f0fc972264780a56fee200c51f +timeCreated: 1611404240 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs new file mode 100644 index 00000000..b2924396 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_FriendDegreeUpNtfNew
+ {
+ public static void Process(PtcM2C_FriendDegreeUpNtfNew roPtc)
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.UpdateFriendInfo(roPtc.Data.roleid, roPtc.Data.daydegree, roPtc.Data.alldegree);
+ XTeamDocument specificDocument2 = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument2.RefreshMyTeamView();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs.meta new file mode 100644 index 00000000..6a69a3c5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendDegreeUpNtfNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2ce5fe0ddf9de8543b1bbb5d54322078 +timeCreated: 1611403504 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs new file mode 100644 index 00000000..cbe4d952 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_FriendOpNtfNew
+ {
+ public static void Process(PtcM2C_FriendOpNtfNew roPtc)
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnFriendOpNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs.meta new file mode 100644 index 00000000..30ee2765 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_FriendOpNtfNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0d46c969fe205c14fa02861662993376 +timeCreated: 1611403193 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs new file mode 100644 index 00000000..5b38a27b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GardenBanquetNtf
+ {
+ public static void Process(PtcM2C_GardenBanquetNtf roPtc)
+ {
+ XHomeCookAndPartyDocument.Doc.BeginToFeast(roPtc.Data.banquet_id);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs.meta new file mode 100644 index 00000000..97f39f92 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GardenBanquetNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5698903aeaf3c5d4f868a87d46965862 +timeCreated: 1611403744 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs new file mode 100644 index 00000000..22487c08 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_Get520FestivalRedPacket
+ {
+ public static void Process(PtcM2C_Get520FestivalRedPacket roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs.meta new file mode 100644 index 00000000..3fd5eef6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_Get520FestivalRedPacket.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d0eb650bbf97a78419a2f119e62fdcf7 +timeCreated: 1611404589 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs new file mode 100644 index 00000000..0f01d623 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs @@ -0,0 +1,13 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GiftIBSucessNtf
+ {
+ public static void Process(PtcM2C_GiftIBSucessNtf roPtc)
+ {
+ DlgBase<PresentDlg, PresentBehaviour>.singleton.OnResPresent(roPtc.Data.openid, roPtc.Data.name);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs.meta new file mode 100644 index 00000000..73119b86 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GiftIBSucessNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: de250dd41a4182b48af2d4935aaa7301 +timeCreated: 1611404685 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs new file mode 100644 index 00000000..e7e9bcee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GmfJoinBattleM2CReq
+ {
+ public static void Process(PtcM2C_GmfJoinBattleM2CReq roPtc)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnGmfJoinBattle(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs.meta new file mode 100644 index 00000000..3ffef795 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GmfJoinBattleM2CReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b6994f37e63f6d74e9da786c84133d36 +timeCreated: 1611404398 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs new file mode 100644 index 00000000..75131bbc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GoalAwardsRedPoint
+ {
+ public static void Process(PtcM2C_GoalAwardsRedPoint roPtc)
+ {
+ XTargetRewardDocument specificDocument = XDocuments.GetSpecificDocument<XTargetRewardDocument>(XTargetRewardDocument.uuID);
+ specificDocument.SetRedPointList(roPtc.Data.typelist);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs.meta new file mode 100644 index 00000000..e9fc018d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GoalAwardsRedPoint.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d0a55038503935a448a1b3cb0194d7d2 +timeCreated: 1611404588 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs new file mode 100644 index 00000000..7dbd659c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GroupChatApply
+ {
+ public static void Process(PtcM2C_GroupChatApply roPtc)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.bShowMotion = true;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs.meta new file mode 100644 index 00000000..06ec4c99 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatApply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9aaf5a55d84e67143be51e74b7cada62 +timeCreated: 1611404202 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs new file mode 100644 index 00000000..541c9a49 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GroupChatDismiss
+ {
+ public static void Process(PtcM2C_GroupChatDismiss roPtc)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResDismissGroup(roPtc.Data.groupchatID, roPtc.Data.roleid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs.meta new file mode 100644 index 00000000..c244613b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatDismiss.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6a64b6d0e8764084e95704ab8b3f0907 +timeCreated: 1611403888 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs new file mode 100644 index 00000000..06160f60 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GroupChatIssueCount
+ {
+ public static void Process(PtcM2C_GroupChatIssueCount roPtc)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.SysnGroupChatIssueCount(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs.meta new file mode 100644 index 00000000..4d6cdd3f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatIssueCount.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2b22712f11d03e04a9525c98c623c386 +timeCreated: 1611403498 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs new file mode 100644 index 00000000..c70821ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GroupChatManager
+ {
+ public static void Process(PtcM2C_GroupChatManager roPtc)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResChangePlayer(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs.meta new file mode 100644 index 00000000..e921eb1a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fbd3a230c364f0f4fb0e9127edbd1ac1 +timeCreated: 1611404933 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs new file mode 100644 index 00000000..95a8945c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GroupChatQuit
+ {
+ public static void Process(PtcM2C_GroupChatQuit roPtc)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResQuitGroup(roPtc.Data.groupchatID);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs.meta new file mode 100644 index 00000000..344640e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GroupChatQuit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8862a1d887188fa4ebaed17a77c3aeeb +timeCreated: 1611404083 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs new file mode 100644 index 00000000..442de044 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildAuctItemTimeFresh
+ {
+ public static void Process(PtcM2C_GuildAuctItemTimeFresh roPtc)
+ {
+ AuctionHouseDocument specificDocument = XDocuments.GetSpecificDocument<AuctionHouseDocument>(AuctionHouseDocument.uuID);
+ specificDocument.QueryRefreshGuildUI((int)roPtc.Data.auct_type);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs.meta new file mode 100644 index 00000000..5ba8b84b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildAuctItemTimeFresh.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 676715e8139b5474bb7ddf4ccc38210f +timeCreated: 1611403857 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs new file mode 100644 index 00000000..53a09bc5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs @@ -0,0 +1,35 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildBestCardsNtfMs
+ {
+ public static void Process(PtcM2C_GuildBestCardsNtfMs roPtc)
+ {
+ bool flag = roPtc.Data.match_type == 1u;
+ if (flag)
+ {
+ XJokerKingDocument specificDocument = XDocuments.GetSpecificDocument<XJokerKingDocument>(XJokerKingDocument.uuID);
+ specificDocument.SetBestJocker(roPtc.Data.bestcards, roPtc.Data.bestrole);
+ }
+ else
+ {
+ bool flag2 = roPtc.Data.type == 0u;
+ if (flag2)
+ {
+ XGuildJokerDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument2.SetBestCard(roPtc.Data.bestcards, roPtc.Data.bestrole);
+ }
+ else
+ {
+ bool flag3 = roPtc.Data.type == 1u;
+ if (flag3)
+ {
+ XGuildJockerMatchDocument specificDocument3 = XDocuments.GetSpecificDocument<XGuildJockerMatchDocument>(XGuildJockerMatchDocument.uuID);
+ specificDocument3.SetBestJocker(roPtc.Data.bestcards, roPtc.Data.bestrole);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs.meta new file mode 100644 index 00000000..b5b63d07 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBestCardsNtfMs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 116ac68b4e805c94a85651c82cc9ef8a +timeCreated: 1611403239 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs new file mode 100644 index 00000000..87126dfd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildBonusGetAll
+ {
+ public static void Process(PtcM2C_GuildBonusGetAll roPtc)
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.ReceiveGuildBonusGetAll(roPtc.Data.bonusID);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs.meta new file mode 100644 index 00000000..e8de9ba4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBonusGetAll.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 320a77aec9625f94181c33fa5950367a +timeCreated: 1611403548 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs new file mode 100644 index 00000000..5fa0660f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildBuffCDParamNtf
+ {
+ public static void Process(PtcM2C_GuildBuffCDParamNtf roPtc)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetGuildBuffCD(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs.meta new file mode 100644 index 00000000..2e78abdd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffCDParamNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d8c121824eda172448a738c7c7cc5742 +timeCreated: 1611404640 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs new file mode 100644 index 00000000..4d6a4dc9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildBuffSimpleInfoNtf
+ {
+ public static void Process(PtcM2C_GuildBuffSimpleInfoNtf roPtc)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetGuildBuffList(roPtc.Data.buff);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs.meta new file mode 100644 index 00000000..959ab238 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cf17b14595db4794eb5f6283c0b13198 +timeCreated: 1611404580 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs new file mode 100644 index 00000000..460503ca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildBuffSimpleItemNtf
+ {
+ public static void Process(PtcM2C_GuildBuffSimpleItemNtf roPtc)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetOwnedGuildBuffList(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs.meta new file mode 100644 index 00000000..be32e939 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildBuffSimpleItemNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 458ff94af0eea9a48990539dc2f27135 +timeCreated: 1611403647 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs new file mode 100644 index 00000000..7b8d95aa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs @@ -0,0 +1,42 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildCardMatchNtf
+ {
+ public static void Process(PtcM2C_GuildCardMatchNtf roPtc)
+ {
+ bool flag = roPtc.Data.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(roPtc.Data.errorcode);
+ }
+ else
+ {
+ bool flag2 = roPtc.Data.match_type == 1u;
+ if (flag2)
+ {
+ XJokerKingDocument specificDocument = XDocuments.GetSpecificDocument<XJokerKingDocument>(XJokerKingDocument.uuID);
+ specificDocument.ReceiveJokerKingMatchInfo(roPtc.Data);
+ }
+ else
+ {
+ XGuildJockerMatchDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildJockerMatchDocument>(XGuildJockerMatchDocument.uuID);
+ specificDocument2.ReceiveGuildJokerMatchInfo(roPtc.Data);
+ XSingleton<XDebug>.singleton.AddGreenLog(string.Format("op: {0}, state: {1}, round: {2}, result: {3}, timeleft: {4}, errorcode: {5}", new object[]
+ {
+ roPtc.Data.op.ToString(),
+ roPtc.Data.state.ToString(),
+ roPtc.Data.round.ToString(),
+ roPtc.Data.result.ToString(),
+ roPtc.Data.timeleft.ToString(),
+ roPtc.Data.errorcode.ToString()
+ }), null, null, null, null, null);
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs.meta new file mode 100644 index 00000000..8c842b11 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardMatchNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f206e73dbc5d6c34980f14ee04b5805d +timeCreated: 1611404841 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs new file mode 100644 index 00000000..e2897165 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs @@ -0,0 +1,35 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildCardRankNtf
+ {
+ public static void Process(PtcM2C_GuildCardRankNtf roPtc)
+ {
+ bool flag = roPtc.Data.type == 0u || roPtc.Data.type == 1u;
+ if (flag)
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.ReceiveJockerRank(roPtc.Data.name, roPtc.Data.point);
+ }
+ else
+ {
+ bool flag2 = roPtc.Data.type == 2u;
+ if (flag2)
+ {
+ XGuildJockerMatchDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildJockerMatchDocument>(XGuildJockerMatchDocument.uuID);
+ specificDocument2.ReceiveJokerRank(roPtc.Data.name, roPtc.Data.point);
+ }
+ else
+ {
+ bool flag3 = roPtc.Data.type == 3u;
+ if (flag3)
+ {
+ XJokerKingDocument specificDocument3 = XDocuments.GetSpecificDocument<XJokerKingDocument>(XJokerKingDocument.uuID);
+ specificDocument3.ReceiveJokerRank(roPtc.Data.name, roPtc.Data.point);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs.meta new file mode 100644 index 00000000..f74f79fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCardRankNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 25ce86be1b7014147b806bd51f9e697d +timeCreated: 1611403466 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs new file mode 100644 index 00000000..e0dac191 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildCastFeatsNtf
+ {
+ public static void Process(PtcM2C_GuildCastFeatsNtf roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.OnFeatsChange(roPtc.Data.feats);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs.meta new file mode 100644 index 00000000..529cef44 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildCastFeatsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c57f375c9f9ce7e42a0de07193dbc81a +timeCreated: 1611404506 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs new file mode 100644 index 00000000..2ec6fe12 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs @@ -0,0 +1,19 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildSchoolHallUpdatePoint
+ {
+ public static void Process(PtcM2C_GuildSchoolHallUpdatePoint roPtc)
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.SetPoint(roPtc.Data.hallpoint, roPtc.Data.schoolpoint);
+ bool flag = roPtc.Data.roleid == XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID;
+ if (flag)
+ {
+ specificDocument.CheckShowItemGet(roPtc.Data.deltahallpoint, roPtc.Data.deltaschoolpoint);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs.meta new file mode 100644 index 00000000..d7033feb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSchoolHallUpdatePoint.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3e625668b74673445b91ff44ac90e662 +timeCreated: 1611403608 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs new file mode 100644 index 00000000..36569d12 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs @@ -0,0 +1,24 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_GuildSetingNotify
+ {
+ public static void Process(PtcM2C_GuildSetingNotify roPtc)
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ bool flag = roPtc.Data.annoucement != null;
+ if (flag)
+ {
+ specificDocument.OnAnnounceChanged(roPtc.Data.annoucement);
+ }
+ specificDocument.OnPortraitChanged(roPtc.Data.Icon);
+ XGuildApproveDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildApproveDocument>(XGuildApproveDocument.uuID);
+ specificDocument2.OnSetApprove(new GuildApproveSetting
+ {
+ autoApprove = (roPtc.Data.needApproval == 0),
+ PPT = roPtc.Data.RecuitPPT
+ });
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs.meta new file mode 100644 index 00000000..37bcd4a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_GuildSetingNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e2154e40b0a3db74c96dc21b57c84616 +timeCreated: 1611404704 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs new file mode 100644 index 00000000..99f7670e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_HallIconMNtf
+ {
+ public static void Process(PtcM2C_HallIconMNtf roPtc)
+ {
+ XMainInterfaceDocument specificDocument = XDocuments.GetSpecificDocument<XMainInterfaceDocument>(XMainInterfaceDocument.uuID);
+ specificDocument.OnHallIconNtfGet(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs.meta new file mode 100644 index 00000000..39780891 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HallIconMNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 612fa01c8c211c4439145651f446d731 +timeCreated: 1611403837 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs new file mode 100644 index 00000000..0388e4dd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs @@ -0,0 +1,116 @@ +using System;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_HintNotifyMS
+ {
+ public static void Process(PtcM2C_HintNotifyMS roPtc)
+ {
+ int i = 0;
+ while (i < roPtc.Data.systemid.Count)
+ {
+ XSysDefine xsysDefine = (XSysDefine)roPtc.Data.systemid[i];
+ XSysDefine xsysDefine2 = xsysDefine;
+ if (xsysDefine2 <= XSysDefine.XSys_Flower_Rank_Activity)
+ {
+ if (xsysDefine2 <= XSysDefine.XSys_Mentorship)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Qualifying)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Mentorship)
+ {
+ goto IL_222;
+ }
+ XMentorshipDocument.Doc.HasRedPointOnTasks = true;
+ }
+ else
+ {
+ XQualifyingDocument specificDocument = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument.RedPoint = true;
+ }
+ }
+ else if (xsysDefine2 != XSysDefine.XSys_GuildDragon)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Home)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Flower_Rank_Activity)
+ {
+ goto IL_222;
+ }
+ XFlowerRankDocument specificDocument2 = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument2.CanGetActivityAward = !roPtc.Data.isremove;
+ }
+ else
+ {
+ HomeMainDocument.Doc.HomeMainRedDot = roPtc.Data.isremove;
+ }
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument3 = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument3.bCanFight = !roPtc.Data.isremove;
+ }
+ }
+ else if (xsysDefine2 <= XSysDefine.XSys_Wedding)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_WeekNest)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Announcement)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_Wedding)
+ {
+ goto IL_222;
+ }
+ XWeddingDocument.Doc.IsHadLivenessRedPoint = !roPtc.Data.isremove;
+ }
+ else
+ {
+ XAnnouncementDocument specificDocument4 = XDocuments.GetSpecificDocument<XAnnouncementDocument>(XAnnouncementDocument.uuID);
+ specificDocument4.RedPoint = !roPtc.Data.isremove;
+ }
+ }
+ else
+ {
+ XWeekNestDocument.Doc.HadRedDot = !roPtc.Data.isremove;
+ }
+ }
+ else if (xsysDefine2 != XSysDefine.XSys_GuildHall_SignIn)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_GuildRelax_JokerMatch)
+ {
+ if (xsysDefine2 != XSysDefine.XSys_JockerKing)
+ {
+ goto IL_222;
+ }
+ XJokerKingDocument specificDocument5 = XDocuments.GetSpecificDocument<XJokerKingDocument>(XJokerKingDocument.uuID);
+ specificDocument5.bAvaiableIconWhenShow = !roPtc.Data.isremove;
+ }
+ else
+ {
+ XGuildJockerMatchDocument specificDocument6 = XDocuments.GetSpecificDocument<XGuildJockerMatchDocument>(XGuildJockerMatchDocument.uuID);
+ specificDocument6.bAvaiableIconWhenShow = !roPtc.Data.isremove;
+ }
+ }
+ else
+ {
+ XGuildSignInDocument specificDocument7 = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument7.SignInSelection = 0u;
+ }
+ IL_23E:
+ bool flag = xsysDefine == XSysDefine.XSys_Mail;
+ if (flag)
+ {
+ DlgBase<XChatView, XChatBehaviour>.singleton.ShowMailRedpoint();
+ }
+ XSingleton<XGameSysMgr>.singleton.RecalculateRedPointState(xsysDefine, true);
+ i++;
+ continue;
+ IL_222:
+ XSingleton<XGameSysMgr>.singleton.SetSysRedPointState(xsysDefine, !roPtc.Data.isremove);
+ goto IL_23E;
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs.meta new file mode 100644 index 00000000..44e77aab --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_HintNotifyMS.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c30b962a82c2bd5498cfe7a8ea670a42 +timeCreated: 1611404496 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs new file mode 100644 index 00000000..80c16dbe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_IBGiftIconNtf
+ {
+ public static void Process(PtcM2C_IBGiftIconNtf roPtc)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.presentStatus = roPtc.Data.status;
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs.meta new file mode 100644 index 00000000..c491155b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IBGiftIconNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cef10cf3a7b61f946ad9dd9afcb47ebe +timeCreated: 1611404580 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs new file mode 100644 index 00000000..1e6510e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_IdipClearChatNtf
+ {
+ public static void Process(PtcM2C_IdipClearChatNtf roPtc)
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.ClearRoleMsg(roPtc.Data.roleid);
+ XVoiceQADocument specificDocument2 = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument2.IDIPClearRoleMsg(roPtc.Data.roleid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs.meta new file mode 100644 index 00000000..b20cc373 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipClearChatNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e0350266d19445447b1b13639f720cb9 +timeCreated: 1611404696 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs new file mode 100644 index 00000000..c77ef6e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_IdipPunishInfoMsNtf
+ {
+ public static void Process(PtcM2C_IdipPunishInfoMsNtf roPtc)
+ {
+ XIDIPDocument specificDocument = XDocuments.GetSpecificDocument<XIDIPDocument>(XIDIPDocument.uuID);
+ specificDocument.DealWithIDIPTips(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs.meta new file mode 100644 index 00000000..3df3c912 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_IdipPunishInfoMsNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a5ffacc0ff2e5a4e8d9ee4a1afb5188 +timeCreated: 1611404091 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs new file mode 100644 index 00000000..8f81deb9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_InvFightNotify
+ {
+ public static void Process(PtcM2C_InvFightNotify roPtc)
+ {
+ XPKInvitationDocument specificDocument = XDocuments.GetSpecificDocument<XPKInvitationDocument>(XPKInvitationDocument.uuID);
+ specificDocument.PKInvitationNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs.meta new file mode 100644 index 00000000..d741109b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvFightNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 980b46c6e6642194b8f94fec2ec3a771 +timeCreated: 1611404190 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs new file mode 100644 index 00000000..65eb6891 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_InvUnfStateM2CNtf
+ {
+ public static void Process(PtcM2C_InvUnfStateM2CNtf roPtc)
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ XTeamInviteDocument xteamInviteDocument = specificDocument;
+ int invitedCount = xteamInviteDocument.InvitedCount - 1;
+ xteamInviteDocument.InvitedCount = invitedCount;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs.meta new file mode 100644 index 00000000..577f8969 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InvUnfStateM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ef9c06ba6878c9049bf83013eb04cb70 +timeCreated: 1611404805 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs new file mode 100644 index 00000000..4bbfd8f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs @@ -0,0 +1,18 @@ +using System;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_InviteRefuseM2CNtf
+ {
+ public static void Process(PtcM2C_InviteRefuseM2CNtf roPtc)
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("TEAM_REFUSE_INVITATION", new object[]
+ {
+ roPtc.Data.name
+ }), "fece00");
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs.meta new file mode 100644 index 00000000..602d7e6d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_InviteRefuseM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 73b05f931a694b4448992429d85e191b +timeCreated: 1611403941 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs new file mode 100644 index 00000000..d11be18b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs @@ -0,0 +1,15 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_KickFMAuchor
+ {
+ public static void Process(PtcM2C_KickFMAuchor roPtc)
+ {
+ XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
+ specificDocument.QuitBigRoom();
+ DlgBase<RadioDlg, RadioBehaviour>.singleton.Refresh(false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs.meta new file mode 100644 index 00000000..5fb67cff --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_KickFMAuchor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e158f5996d545764d839b09b8965b0da +timeCreated: 1611404701 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs new file mode 100644 index 00000000..6a302abb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LargeRoomLoginParamNtf
+ {
+ public static void Process(PtcM2C_LargeRoomLoginParamNtf roPtc)
+ {
+ XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
+ specificDocument.isHost = roPtc.Data.speaker;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs.meta new file mode 100644 index 00000000..bfa2b986 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomLoginParamNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fff943da7a9c82b4b9c151975695963b +timeCreated: 1611404948 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs new file mode 100644 index 00000000..cfc022cf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LargeRoomRoleNtf
+ {
+ public static void Process(PtcM2C_LargeRoomRoleNtf roPtc)
+ {
+ XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
+ specificDocument.UpdateHost(roPtc.Data.name, roPtc.Data.roleid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs.meta new file mode 100644 index 00000000..f1f721cf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LargeRoomRoleNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: da2285dcdc755624d96c195cf43d0cda +timeCreated: 1611404647 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs new file mode 100644 index 00000000..f51fd83d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs @@ -0,0 +1,16 @@ +using System;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LeagueBattleMatchTimeoutNtf
+ {
+ public static void Process(PtcM2C_LeagueBattleMatchTimeoutNtf roPtc)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("MATCH_TIME_OUT_LEAGUE"), "fece00");
+ XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
+ specificDocument.SetTeamMatchState(false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs.meta new file mode 100644 index 00000000..7e873c64 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleMatchTimeoutNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e85e093085e700e40a07cf60e169c7a7 +timeCreated: 1611404752 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs new file mode 100644 index 00000000..b9903df8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LeagueBattleStartMatchNtf
+ {
+ public static void Process(PtcM2C_LeagueBattleStartMatchNtf roPtc)
+ {
+ XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
+ specificDocument.SetTeamMatchState(true);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs.meta new file mode 100644 index 00000000..69edd672 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStartMatchNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ebf8365f121008e4da1b1885dabbc2d0 +timeCreated: 1611404786 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs new file mode 100644 index 00000000..34abeeac --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LeagueBattleStopMatchNtf
+ {
+ public static void Process(PtcM2C_LeagueBattleStopMatchNtf roPtc)
+ {
+ XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
+ specificDocument.SetTeamMatchState(false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs.meta new file mode 100644 index 00000000..b4a6bfb5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeagueBattleStopMatchNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 95205bb1ee9d1b1418aa40e31bec9724 +timeCreated: 1611404180 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs new file mode 100644 index 00000000..5d8fc816 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs @@ -0,0 +1,14 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LeaveTeamM2CNtf
+ {
+ public static void Process(PtcM2C_LeaveTeamM2CNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnLeaveTeam((LeaveTeamType)roPtc.Data.errorno);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs.meta new file mode 100644 index 00000000..6dd52d06 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LeaveTeamM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4deaad24417c75f428ef473ce579d3e0 +timeCreated: 1611403697 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs new file mode 100644 index 00000000..44b82053 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LoginDragonGuildInfo
+ {
+ public static void Process(PtcM2C_LoginDragonGuildInfo roPtc)
+ {
+ XDragonGuildDocument.Doc.InitData(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs.meta new file mode 100644 index 00000000..7d8f2aa2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginDragonGuildInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 64dcc1509977e9d46bde309caca27056 +timeCreated: 1611403848 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs new file mode 100644 index 00000000..87863bff --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_LoginGuildInfo
+ {
+ public static void Process(PtcM2C_LoginGuildInfo roPtc)
+ {
+ XGuildDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDocument>(XGuildDocument.uuID);
+ specificDocument.InitData(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs.meta new file mode 100644 index 00000000..380a5e43 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_LoginGuildInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2602ba309b566c14a9c6ed016d1cadb0 +timeCreated: 1611403466 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs new file mode 100644 index 00000000..3d376226 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MCChatOffLineNotify
+ {
+ public static void Process(PtcM2C_MCChatOffLineNotify roPtc)
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.ReceiveOfflineMsg(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs.meta new file mode 100644 index 00000000..947944da --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MCChatOffLineNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0ea6ba85edf968d40a9387ada636cde2 +timeCreated: 1611403204 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs new file mode 100644 index 00000000..48635efb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs @@ -0,0 +1,43 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MSErrorNotify
+ {
+ public static void Process(PtcM2C_MSErrorNotify roPtc)
+ {
+ ErrorCode errorno = (ErrorCode)roPtc.Data.errorno;
+ if (errorno != ErrorCode.ERR_VERSION_FAILED)
+ {
+ if (errorno != ErrorCode.ERR_TEAM_LEADER_NOTHELPER)
+ {
+ if (errorno != ErrorCode.ERR_AUCT_AUCTOVER)
+ {
+ bool istip = roPtc.Data.istip;
+ if (istip)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip((ErrorCode)roPtc.Data.errorno, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode((ErrorCode)roPtc.Data.errorno);
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip((ErrorCode)roPtc.Data.errorno, "fece00");
+ AuctionHouseDocument specificDocument = XDocuments.GetSpecificDocument<AuctionHouseDocument>(AuctionHouseDocument.uuID);
+ specificDocument.QueryRefreshUI();
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip((ErrorCode)roPtc.Data.errorno, "fece00");
+ }
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs.meta new file mode 100644 index 00000000..983908a2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSErrorNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 718362b75960f1741bf36f77f2a4fd44 +timeCreated: 1611403934 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs new file mode 100644 index 00000000..589a1053 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs @@ -0,0 +1,14 @@ +using System;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MSEventNotify
+ {
+ public static void Process(PtcM2C_MSEventNotify roPtc)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.notify, "fece00");
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs.meta new file mode 100644 index 00000000..86d00ea4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSEventNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b2fbf466f9b8944395a5b5fbbaa28b2 +timeCreated: 1611403891 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs new file mode 100644 index 00000000..226a84ad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MSFlowerRainNtf
+ {
+ public static void Process(PtcM2C_MSFlowerRainNtf roPtc)
+ {
+ XFlowerReplyDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerReplyDocument>(XFlowerReplyDocument.uuID);
+ specificDocument.OnShowFlowerRain(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs.meta new file mode 100644 index 00000000..f257925f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSFlowerRainNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e29aed8805de2b241a339e6df697f733 +timeCreated: 1611404728 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs new file mode 100644 index 00000000..49461aa6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MSReceiveFlowerNtf
+ {
+ public static void Process(PtcM2C_MSReceiveFlowerNtf roPtc)
+ {
+ XFlowerReplyDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerReplyDocument>(XFlowerReplyDocument.uuID);
+ specificDocument.OnReceiveFlower(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs.meta new file mode 100644 index 00000000..f099f7fe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MSReceiveFlowerNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: be31303ad9ad14e4e8ed206c63fb72c5 +timeCreated: 1611404459 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs new file mode 100644 index 00000000..08b0b650 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MakePartnerResultNtf
+ {
+ public static void Process(PtcM2C_MakePartnerResultNtf roPtc)
+ {
+ XPartnerDocument.Doc.MakePartnerResult(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs.meta new file mode 100644 index 00000000..303cc19b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MakePartnerResultNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8f84c212cac77964ba3856cc011da67d +timeCreated: 1611404134 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs new file mode 100644 index 00000000..25011599 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MarriageLevelValueNtf
+ {
+ public static void Process(PtcM2C_MarriageLevelValueNtf roPtc)
+ {
+ XWeddingDocument specificDocument = XDocuments.GetSpecificDocument<XWeddingDocument>(XWeddingDocument.uuID);
+ specificDocument.OnMarriageLevelValueChangeNtf(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs.meta new file mode 100644 index 00000000..8e1777a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageLevelValueNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d641b4ed54ffb004da20cbba50b641fb +timeCreated: 1611404630 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs new file mode 100644 index 00000000..d8fe6bb4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MarriageNewPrivilegeNtf
+ {
+ public static void Process(PtcM2C_MarriageNewPrivilegeNtf roPtc)
+ {
+ XWeddingDocument specificDocument = XDocuments.GetSpecificDocument<XWeddingDocument>(XWeddingDocument.uuID);
+ specificDocument.OnMarriageNewPrivilegeNtf(roPtc.Data.marriageLevel);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs.meta new file mode 100644 index 00000000..cade38bb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MarriageNewPrivilegeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 55cfc6e0f0684704295f036c28394207 +timeCreated: 1611403738 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs new file mode 100644 index 00000000..2f087788 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_MidasExceptionNtf
+ {
+ public static void Process(PtcM2C_MidasExceptionNtf roPtc)
+ {
+ bool flag = roPtc.Data.result > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.result, "fece00");
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs.meta new file mode 100644 index 00000000..c42ea735 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_MidasExceptionNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56530198b43d750458cd161350756d7b +timeCreated: 1611403743 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs new file mode 100644 index 00000000..42229f79 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ModifyGuildNameNtf
+ {
+ public static void Process(PtcM2C_ModifyGuildNameNtf roPtc)
+ {
+ XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
+ specificDocument.NotifyGuildNewName(roPtc.Data.name);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs.meta new file mode 100644 index 00000000..09fd1583 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ModifyGuildNameNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ba9e37a29747a94419f8164ccb2a80d6 +timeCreated: 1611404437 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs new file mode 100644 index 00000000..b7b2e386 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildArenaBeginNew
+ {
+ public static void Process(PtcM2C_NoticeGuildArenaBeginNew roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("NoticeGuildArenaBeginNew : ", roPtc.Data.isstart.ToString(), null, null, null, null);
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.bHasAvailableArenaIcon = roPtc.Data.isstart;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs.meta new file mode 100644 index 00000000..4f87a8be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 827ad18ae4732904f8c381e572b46518 +timeCreated: 1611404040 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs new file mode 100644 index 00000000..d6993cb7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildArenaNextTime
+ {
+ public static void Process(PtcM2C_NoticeGuildArenaNextTime roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveGuildArenaNextTime(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs.meta new file mode 100644 index 00000000..725367c5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaNextTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 11a9d35d268870441bdd1e045574cc63 +timeCreated: 1611403240 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs new file mode 100644 index 00000000..3183ed31 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildLadderStart
+ {
+ public static void Process(PtcM2C_NoticeGuildLadderStart roPtc)
+ {
+ XGuildQualifierDocument specificDocument = XDocuments.GetSpecificDocument<XGuildQualifierDocument>(XGuildQualifierDocument.uuID);
+ specificDocument.bHasAvailableLadderIcon = roPtc.Data.isstart;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs.meta new file mode 100644 index 00000000..89e309bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildLadderStart.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5863eb23226e8c48a3f34984641e324 +timeCreated: 1611404627 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs new file mode 100644 index 00000000..b7c8f6b3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildTerrBattleWin
+ {
+ public static void Process(PtcM2C_NoticeGuildTerrBattleWin roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.SetGuildTerritoryCityInfo(roPtc.Data.id, roPtc.Data.guildid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs.meta new file mode 100644 index 00000000..ae819b0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBattleWin.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 44201b54144cfab4dafc6cfd0e0efbc4 +timeCreated: 1611403643 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs new file mode 100644 index 00000000..21d9d965 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildTerrBigIcon
+ {
+ public static void Process(PtcM2C_NoticeGuildTerrBigIcon roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.TerritoryStyle = (roPtc.Data.isnow ? XGuildTerritoryDocument.GuildTerritoryStyle.INFORM : XGuildTerritoryDocument.GuildTerritoryStyle.NONE);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs.meta new file mode 100644 index 00000000..0127e53f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrBigIcon.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7f3f92c11c455bb47a88a6ab6ebe914f +timeCreated: 1611404029 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs new file mode 100644 index 00000000..37d6771a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildTerrEnd
+ {
+ public static void Process(PtcM2C_NoticeGuildTerrEnd roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.bHavaShowMessageIcon = true;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs.meta new file mode 100644 index 00000000..faed2a12 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrEnd.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e74f314259828374a8659c5e77e6c634 +timeCreated: 1611404748 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs new file mode 100644 index 00000000..3bb93ef0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs @@ -0,0 +1,14 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildTerrWar
+ {
+ public static void Process(PtcM2C_NoticeGuildTerrWar roPtc)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.bHavaTerritoryRecCount = 0u;
+ specificDocument.TerritoryStyle = (roPtc.Data.isbegin ? XGuildTerritoryDocument.GuildTerritoryStyle.ACTIVITY : XGuildTerritoryDocument.GuildTerritoryStyle.NONE);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs.meta new file mode 100644 index 00000000..57339a34 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrWar.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 267c2c14eecff5c4380cf5751676a878 +timeCreated: 1611403468 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs new file mode 100644 index 00000000..1e423a58 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildTerrall
+ {
+ public static void Process(PtcM2C_NoticeGuildTerrall roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("PtcM2C_NoticeGuildTerrall:", roPtc.Data.num.ToString(), null, null, null, null);
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.bHavaTerritoryRecCount = roPtc.Data.num;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs.meta new file mode 100644 index 00000000..a0118d80 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildTerrall.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9935b939fa383fe4794747e6fb53358d +timeCreated: 1611404194 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs new file mode 100644 index 00000000..93ae3db7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildWageReward
+ {
+ public static void Process(PtcM2C_NoticeGuildWageReward roPtc)
+ {
+ XGuildSalaryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSalaryDocument>(XGuildSalaryDocument.uuID);
+ specificDocument.HasRedPoint = true;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs.meta new file mode 100644 index 00000000..4941c492 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildWageReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f7e05c12d55719944a92a4e8b97818d5 +timeCreated: 1611404889 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs new file mode 100644 index 00000000..71395c32 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyGuildSkillData
+ {
+ public static void Process(PtcM2C_NotifyGuildSkillData roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs.meta new file mode 100644 index 00000000..f333ab9e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyGuildSkillData.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aaa1d0180bd2275428cae7632859c6fb +timeCreated: 1611404304 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs new file mode 100644 index 00000000..2e213958 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyIdipMessageMs
+ {
+ public static void Process(PtcM2C_NotifyIdipMessageMs roPtc)
+ {
+ XIDIPDocument specificDocument = XDocuments.GetSpecificDocument<XIDIPDocument>(XIDIPDocument.uuID);
+ specificDocument.DealWithIDIPMessage(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs.meta new file mode 100644 index 00000000..f914d6c1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyIdipMessageMs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2cdcaa47b03ab2d4ab12634123ee0de2 +timeCreated: 1611403504 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs new file mode 100644 index 00000000..a0130539 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyLeagueTeamCreate
+ {
+ public static void Process(PtcM2C_NotifyLeagueTeamCreate roPtc)
+ {
+ XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
+ specificDocument.OnTeamLeagueCreateNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs.meta new file mode 100644 index 00000000..64e9b118 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamCreate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 676ebaa8779ebb340ad5c2a542aaee6c +timeCreated: 1611403857 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs new file mode 100644 index 00000000..54e096c2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyLeagueTeamDissolve
+ {
+ public static void Process(PtcM2C_NotifyLeagueTeamDissolve roPtc)
+ {
+ XFreeTeamVersusLeagueDocument specificDocument = XDocuments.GetSpecificDocument<XFreeTeamVersusLeagueDocument>(XFreeTeamVersusLeagueDocument.uuID);
+ specificDocument.OnTeamLeagueDissolveNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs.meta new file mode 100644 index 00000000..f729f972 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyLeagueTeamDissolve.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ceefc99fb00bb4b439f8974d6fd6cac1 +timeCreated: 1611404579 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs new file mode 100644 index 00000000..4d63c257 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyMarriageApply
+ {
+ public static void Process(PtcM2C_NotifyMarriageApply roPtc)
+ {
+ XWeddingDocument.Doc.OnGetMarriageApplyNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs.meta new file mode 100644 index 00000000..f0751417 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageApply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ea468658ae432bc44b2aba574a0d3d1d +timeCreated: 1611404778 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs new file mode 100644 index 00000000..ced830e8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyMarriageDivorceApply
+ {
+ public static void Process(PtcM2C_NotifyMarriageDivorceApply roPtc)
+ {
+ XWeddingDocument.Doc.OnGetMarriageDivorceNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs.meta new file mode 100644 index 00000000..c6ffc6b0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMarriageDivorceApply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 84f27beb688760a4899330faf893e6d8 +timeCreated: 1611404050 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs new file mode 100644 index 00000000..e4dacc95 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifyMentorApply
+ {
+ public static void Process(PtcM2C_NotifyMentorApply roPtc)
+ {
+ XMentorshipDocument.Doc.OnGetMentorshipNotify(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs.meta new file mode 100644 index 00000000..7ff6133f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifyMentorApply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fc6313cb92e2fcd44badbce183a6fdfe +timeCreated: 1611404934 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs new file mode 100644 index 00000000..a271f5ca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NotifySkyTeamCreate
+ {
+ public static void Process(PtcM2C_NotifySkyTeamCreate roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs.meta new file mode 100644 index 00000000..114ea716 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NotifySkyTeamCreate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 48c4f6b46c83ac64a8bb8ac05ec943f5 +timeCreated: 1611403659 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs new file mode 100644 index 00000000..f7066197 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_PayParameterInfoInvalidNtf
+ {
+ public static void Process(PtcM2C_PayParameterInfoInvalidNtf roPtc)
+ {
+ XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument.PayParameterNtf();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs.meta new file mode 100644 index 00000000..0e2f0123 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PayParameterInfoInvalidNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9f1dcb5e86b556e4384089263dbc70b3 +timeCreated: 1611404244 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs new file mode 100644 index 00000000..28fda69f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs @@ -0,0 +1,16 @@ +using System;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_PkTimeoutM2CNtf
+ {
+ public static void Process(PtcM2C_PkTimeoutM2CNtf roPtc)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("MATCH_TIME_OUT"), "fece00");
+ XQualifyingDocument specificDocument = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument.SetMatchTime(0u, false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs.meta new file mode 100644 index 00000000..0030e95e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PkTimeoutM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aa40fdeb7d43d2d499d29e6f4602075f +timeCreated: 1611404302 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs new file mode 100644 index 00000000..71aa93c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_PokerTournamentEndReFund
+ {
+ public static void Process(PtcM2C_PokerTournamentEndReFund roPtc)
+ {
+ XJokerKingDocument specificDocument = XDocuments.GetSpecificDocument<XJokerKingDocument>(XJokerKingDocument.uuID);
+ specificDocument.JokerKingGameOver();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs.meta new file mode 100644 index 00000000..dc90d345 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PokerTournamentEndReFund.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f82832b1240848d48a27c69ac65343af +timeCreated: 1611404891 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs new file mode 100644 index 00000000..79ff2bb3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_PushQuestionNtf
+ {
+ public static void Process(PtcM2C_PushQuestionNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.SetQuestion((int)roPtc.Data.serialNum, roPtc.Data.qid);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs.meta new file mode 100644 index 00000000..1aac6744 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_PushQuestionNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f638ec4abfc72004cb6b49da49729b3b +timeCreated: 1611404880 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs new file mode 100644 index 00000000..80615509 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_QAEnterRoomNtf
+ {
+ public static void Process(PtcM2C_QAEnterRoomNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.AddEnterRoomInfo2List(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs.meta new file mode 100644 index 00000000..e909e504 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAEnterRoomNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 713bec32f75f6ff4598699a52ae9e373 +timeCreated: 1611403933 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs new file mode 100644 index 00000000..defc7b6a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_QAIDNameNtf
+ {
+ public static void Process(PtcM2C_QAIDNameNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.DealWithNameIndex(roPtc.Data.idname);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs.meta new file mode 100644 index 00000000..52255705 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAIDNameNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 06b4ee29719d024439303c9b49a8f0fb +timeCreated: 1611402966 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs new file mode 100644 index 00000000..67a2d6e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_QAOverNtf
+ {
+ public static void Process(PtcM2C_QAOverNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.VoiceQAStatement(roPtc.Data.total, roPtc.Data.correct, roPtc.Data.dataList);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs.meta new file mode 100644 index 00000000..9b6ef787 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QAOverNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: af8fc97f46d8d924580db1172dabaf3e +timeCreated: 1611404345 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs new file mode 100644 index 00000000..5f7187e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_QARoomRankNtf
+ {
+ public static void Process(PtcM2C_QARoomRankNtf roPtc)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ specificDocument.SetRankList(roPtc.Data.dataList, roPtc.Data.myscore);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs.meta new file mode 100644 index 00000000..fd5f2c49 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_QARoomRankNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8f3204b2edaeea84da171be50864776a +timeCreated: 1611404133 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs new file mode 100644 index 00000000..7b03e48d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs @@ -0,0 +1,29 @@ +using System;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarEnemyTimeNtf
+ {
+ public static void Process(PtcM2C_ResWarEnemyTimeNtf roPtc)
+ {
+ bool flag = XSingleton<XGame>.singleton.CurrentStage.Stage == EXStage.Hall;
+ if (flag)
+ {
+ DlgBase<GuildMineMainView, GuildMineMainBehaviour>.singleton.CurExploreLeftTime = 0f;
+ bool flag2 = DlgBase<GuildMineMainView, GuildMineMainBehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ DlgBase<GuildMineMainView, GuildMineMainBehaviour>.singleton.RefreshExploreTime();
+ }
+ bool flag3 = DlgBase<GuildMineMainView, GuildMineMainBehaviour>.singleton.IsVisible();
+ if (flag3)
+ {
+ DlgBase<GuildMineMainView, GuildMineMainBehaviour>.singleton.RefreshButton();
+ }
+ DlgBase<GuildMinePVPBeginView, GuildMinePVPBeginBehaviour>.singleton.SetVisibleWithAnimation(true, null);
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs.meta new file mode 100644 index 00000000..802bf75f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarEnemyTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 594631210e238a6429248f62f9ae080e +timeCreated: 1611403783 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs new file mode 100644 index 00000000..6b8f41d4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarGuildBriefNtf
+ {
+ public static void Process(PtcM2C_ResWarGuildBriefNtf roPtc)
+ {
+ XGuildMineMainDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineMainDocument>(XGuildMineMainDocument.uuID);
+ specificDocument.SetNewInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs.meta new file mode 100644 index 00000000..64023f3d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarGuildBriefNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9b354b5fc575a2843be9cca29e659501 +timeCreated: 1611404204 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs new file mode 100644 index 00000000..3a440bd4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarMineDataNtf
+ {
+ public static void Process(PtcM2C_ResWarMineDataNtf roPtc)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetGuildResUpdate(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs.meta new file mode 100644 index 00000000..dd77cccd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarMineDataNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a44cd05618b54664fa76cb52ee505e65 +timeCreated: 1611404282 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs new file mode 100644 index 00000000..81f96fbc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarRankSimpleInfoNtf
+ {
+ public static void Process(PtcM2C_ResWarRankSimpleInfoNtf roPtc)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetGuildInfoList(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs.meta new file mode 100644 index 00000000..6d87c335 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarRankSimpleInfoNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5985b546e42347542bad6aa2a805f57d +timeCreated: 1611403785 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs new file mode 100644 index 00000000..2b001983 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarStateNtf
+ {
+ public static void Process(PtcM2C_ResWarStateNtf roPtc)
+ {
+ XGuildMineMainDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineMainDocument>(XGuildMineMainDocument.uuID);
+ specificDocument.TeamLeaderOperate(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs.meta new file mode 100644 index 00000000..d8092718 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 967882ade861ab24596ec4a74da88e92 +timeCreated: 1611404185 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs new file mode 100644 index 00000000..5592810a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_ResWarTimeNtf
+ {
+ public static void Process(PtcM2C_ResWarTimeNtf roPtc)
+ {
+ XGuildMineMainDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineMainDocument>(XGuildMineMainDocument.uuID);
+ specificDocument.ActivityStatusChange(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs.meta new file mode 100644 index 00000000..b3c826d0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_ResWarTimeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bb126234f39228a4eb1820e158ed4443 +timeCreated: 1611404439 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs new file mode 100644 index 00000000..173c267b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_RoleMatchStateM2CNotify
+ {
+ public static void Process(PtcM2C_RoleMatchStateM2CNotify roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnRoleMatchStateNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs.meta new file mode 100644 index 00000000..fbcad72f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleMatchStateM2CNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eead28eafe0ce0847990f43603de81e8 +timeCreated: 1611404798 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs new file mode 100644 index 00000000..8cd833d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_RoleStateNtfNew
+ {
+ public static void Process(PtcM2C_RoleStateNtfNew roPtc)
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.QueryRoleStateRes(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs.meta new file mode 100644 index 00000000..5231e3b5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_RoleStateNtfNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fa5ff61cb938b6441bba21ea38d4d9c5 +timeCreated: 1611404903 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs new file mode 100644 index 00000000..49955520 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SendGuildBonusNtf
+ {
+ public static void Process(PtcM2C_SendGuildBonusNtf roPtc)
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.bHasAvailableFixedRedPoint = roPtc.Data.hasLeftSend;
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs.meta new file mode 100644 index 00000000..c3f9d904 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildBonusNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 508c30d2871c8314088573b6a151d2da +timeCreated: 1611403703 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs new file mode 100644 index 00000000..d9dc352c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SendGuildSkillInfo
+ {
+ public static void Process(PtcM2C_SendGuildSkillInfo roPtc)
+ {
+ XGuildSkillDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSkillDocument>(XGuildSkillDocument.uuID);
+ specificDocument.OnUpdateGuildSkillData(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs.meta new file mode 100644 index 00000000..9eb5255b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SendGuildSkillInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a417e5fab32bcf4e99b555b94a86eeb +timeCreated: 1611404090 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs new file mode 100644 index 00000000..3303c10c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SkyCityFinalRes
+ {
+ public static void Process(PtcM2C_SkyCityFinalRes roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs.meta new file mode 100644 index 00000000..ca5802c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCityFinalRes.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 15f66ba645d29d14c8bada88685cbca1 +timeCreated: 1611403267 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs new file mode 100644 index 00000000..8dfd795b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SkyCraftEliRoomNtf
+ {
+ public static void Process(PtcM2C_SkyCraftEliRoomNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs.meta new file mode 100644 index 00000000..ee8de9eb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftEliRoomNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 18e80dd80a8cf2047aad1081dcb0b3a1 +timeCreated: 1611403299 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs new file mode 100644 index 00000000..802f24fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SkyCraftMatchNtf
+ {
+ public static void Process(PtcM2C_SkyCraftMatchNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs.meta new file mode 100644 index 00000000..7da974b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SkyCraftMatchNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2559e93e7a92a93418d5cfb460d253af +timeCreated: 1611403464 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs new file mode 100644 index 00000000..1b242acd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SpriteStateChangeNtf
+ {
+ public static void Process(PtcM2C_SpriteStateChangeNtf roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs.meta new file mode 100644 index 00000000..2d8cc436 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SpriteStateChangeNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9db61d31e4772b24b8023ca9868c9141 +timeCreated: 1611404237 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs new file mode 100644 index 00000000..75e0a19f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_StartBattleFailedM2CNtf
+ {
+ public static void Process(PtcM2C_StartBattleFailedM2CNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.ProcessTeamOPErrorCode(roPtc.Data.reason, roPtc.Data.proUserID);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs.meta new file mode 100644 index 00000000..ffcdf846 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_StartBattleFailedM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b038b0f4a9229374c93679ebc3d831fe +timeCreated: 1611404349 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs new file mode 100644 index 00000000..e5be23e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SynGuilIntegralState
+ {
+ public static void Process(PtcM2C_SynGuilIntegralState roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveUpdateBattleStatu(roPtc.Data.state);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs.meta new file mode 100644 index 00000000..d93e75be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuilIntegralState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 030f3fa1165479e4893d976756a95006 +timeCreated: 1611402957 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs new file mode 100644 index 00000000..5c660d4c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SynGuildArenaBattleInfoNew
+ {
+ public static void Process(PtcM2C_SynGuildArenaBattleInfoNew roPtc)
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.OnSynGuildArenaBattleInfos(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs.meta new file mode 100644 index 00000000..cc48edc1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaBattleInfoNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 33e3768b5082345438e9be59fb473a20 +timeCreated: 1611403553 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs new file mode 100644 index 00000000..a197a1c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SynGuildArenaFightUnitNew
+ {
+ public static void Process(PtcM2C_SynGuildArenaFightUnitNew roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs.meta new file mode 100644 index 00000000..68dbd9cb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaFightUnitNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7e4ccd43449b9f42b256f68c30b3c05 +timeCreated: 1611404404 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs new file mode 100644 index 00000000..054ab2fb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SynGuildArenaRoleOnlineNew
+ {
+ public static void Process(PtcM2C_SynGuildArenaRoleOnlineNew roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs.meta new file mode 100644 index 00000000..46af4f19 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildArenaRoleOnlineNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3ebd5f2e7b51b81458a1bf5196992440 +timeCreated: 1611403608 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs new file mode 100644 index 00000000..03311f3e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_SynGuildIntegralState
+ {
+ public static void Process(PtcM2C_SynGuildIntegralState roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs.meta new file mode 100644 index 00000000..cacf2074 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_SynGuildIntegralState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a4ee3b4e676bb814dae6afcef4b1eaf0 +timeCreated: 1611404284 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs new file mode 100644 index 00000000..80c023be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TarjaBriefNtf
+ {
+ public static void Process(PtcM2C_TarjaBriefNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.SetTarja(roPtc.Data.time);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs.meta new file mode 100644 index 00000000..8198d083 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TarjaBriefNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f12d131282c11c841a21837cb391b3c6 +timeCreated: 1611404836 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs new file mode 100644 index 00000000..befb71e5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TaskRefreshNtf
+ {
+ public static void Process(PtcM2C_TaskRefreshNtf roPtc)
+ {
+ XGuildDailyTaskDocument.Doc.OnTaskRefreshNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs.meta new file mode 100644 index 00000000..9bf84a85 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TaskRefreshNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 42b95b00dd9f19243a30ad163d14343e +timeCreated: 1611403640 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs new file mode 100644 index 00000000..3ac27669 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TeamChangeM2CNtf
+ {
+ public static void Process(PtcM2C_TeamChangeM2CNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnTeamInfoChanged(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs.meta new file mode 100644 index 00000000..2e89b93b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamChangeM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c885d2bf14fe800449684a5dfa39495c +timeCreated: 1611404534 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs new file mode 100644 index 00000000..007aa5d9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TeamFullDataM2CNtf
+ {
+ public static void Process(PtcM2C_TeamFullDataM2CNtf roPtc)
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnTeamFullDataNotify(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs.meta new file mode 100644 index 00000000..8c7aaf74 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamFullDataM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c5545445c00917d44907ffdb13045972 +timeCreated: 1611404506 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs new file mode 100644 index 00000000..3c70cf4b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TeamInviteM2CNotify
+ {
+ public static void Process(PtcM2C_TeamInviteM2CNotify roPtc)
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ specificDocument.OnInviteComing(roPtc.Data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs.meta new file mode 100644 index 00000000..cc1079e9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamInviteM2CNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b11cad6fe1fe4864784076ffcddf97a8 +timeCreated: 1611404354 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs new file mode 100644 index 00000000..990f16c7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs @@ -0,0 +1,13 @@ +using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_TeamRequestPlatFreind2Client
+ {
+ public static void Process(PtcM2C_TeamRequestPlatFreind2Client roPtc)
+ {
+ DlgBase<XFriendsView, XFriendsBehaviour>.singleton.NoticeFriendShare(roPtc.Data.openID, XFriendsView.ShareType.Invite);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs.meta new file mode 100644 index 00000000..3eca7f78 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_TeamRequestPlatFreind2Client.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 54b33f013ed8c814ea1d642814b3969d +timeCreated: 1611403735 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs new file mode 100644 index 00000000..183a6514 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_UpdateLeagueBattleSeasonInfo
+ {
+ public static void Process(PtcM2C_UpdateLeagueBattleSeasonInfo roPtc)
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnGetLeagueSeasonInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs.meta new file mode 100644 index 00000000..9b239a16 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueBattleSeasonInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 74aee5f3c5b46b54c9b98e8c476439ec +timeCreated: 1611403944 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs new file mode 100644 index 00000000..7a89f87d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_UpdateLeagueEleRoomStateNtf
+ {
+ public static void Process(PtcM2C_UpdateLeagueEleRoomStateNtf roPtc)
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnUpdateEliRoomInfo(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs.meta new file mode 100644 index 00000000..b0d5a5bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueEleRoomStateNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ff0ef213c02f55a408107b66562fc633 +timeCreated: 1611404945 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs new file mode 100644 index 00000000..9174f2f2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_UpdateLeagueTeamState
+ {
+ public static void Process(PtcM2C_UpdateLeagueTeamState roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs.meta new file mode 100644 index 00000000..28812375 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdateLeagueTeamState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 320d1aa7939df9b4689bc06771132d4e +timeCreated: 1611403548 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs new file mode 100644 index 00000000..f9b699b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_UpdatePartnerToClient
+ {
+ public static void Process(PtcM2C_UpdatePartnerToClient roPtc)
+ {
+ XPartnerDocument.Doc.UpdatePartnerToClient(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs.meta new file mode 100644 index 00000000..1fef1c66 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_UpdatePartnerToClient.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cd18efd17141b34499b4b90d084a48ed +timeCreated: 1611404553 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs new file mode 100644 index 00000000..d5493fe8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_WeddingInviteNtf
+ {
+ public static void Process(PtcM2C_WeddingInviteNtf roPtc)
+ {
+ XWeddingDocument.Doc.WeddingInviteNtf(roPtc);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs.meta new file mode 100644 index 00000000..b7d0b5bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_WeddingInviteNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9d247fe92d5b15f4b98c50d372c07c89 +timeCreated: 1611404235 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs new file mode 100644 index 00000000..992c0347 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs @@ -0,0 +1,19 @@ +using System;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_fastMBDismissM2CNtf
+ {
+ public static void Process(PtcM2C_fastMBDismissM2CNtf roPtc)
+ {
+ DlgBase<XTeamBattleQuickConfirmView, XTeamBattleQuickConfirmBehaviour>.singleton.SetVisibleWithAnimation(false, null);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("TEAM_QUICKBATTLE_DISMISS", new object[]
+ {
+ roPtc.Data.quitRoleName
+ }), "fece00");
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs.meta new file mode 100644 index 00000000..67801731 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_fastMBDismissM2CNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 55a3a635ff9985a4d9ce2c43c6baec11 +timeCreated: 1611403738 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs new file mode 100644 index 00000000..51bf1e35 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_synguildarenadisplaceNew
+ {
+ public static void Process(PtcM2C_synguildarenadisplaceNew roPtc)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs.meta new file mode 100644 index 00000000..ce51efaa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_synguildarenadisplaceNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7b679154a5d60ba4a9cbb83d345deeac +timeCreated: 1611403993 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs new file mode 100644 index 00000000..f26f1684 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs @@ -0,0 +1,25 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcN2C_CheckQueuingNtf
+ {
+ public static void Process(PtcN2C_CheckQueuingNtf roPtc)
+ {
+ ErrorCode errorcode = roPtc.Data.errorcode;
+ if (errorcode != ErrorCode.ERR_SUCCESS)
+ {
+ if (errorcode == ErrorCode.ERR_ACCOUNT_QUEUING)
+ {
+ XSingleton<XLoginDocument>.singleton.WaitForServerQueue(roPtc.Data.rolecount, roPtc.Data.timeleft);
+ }
+ }
+ else
+ {
+ XSingleton<XLoginDocument>.singleton.EnterToSelectChar();
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs.meta new file mode 100644 index 00000000..df4cb553 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcN2C_CheckQueuingNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9027351813e04ec42987091630add04e +timeCreated: 1611404137 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs new file mode 100644 index 00000000..f343c9a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ internal class Process_PtcT2C_ChatNotify
+ {
+ public static void Process(PtcT2C_ChatNotify roPtc)
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.OnReceiveChatInfo(roPtc.Data.chatinfo);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs.meta new file mode 100644 index 00000000..7e832ab7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ChatNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a44e5c10e8d9d94c8a3cf45f21ce6ea +timeCreated: 1611404090 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs new file mode 100644 index 00000000..8314d812 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs @@ -0,0 +1,13 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcT2C_ErrorNotify
+ {
+ public static void Process(PtcT2C_ErrorNotify roPtc)
+ {
+ XSingleton<XClientNetwork>.singleton.OnServerErrorNotify(roPtc.Data.errorno, null);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs.meta new file mode 100644 index 00000000..ab7f7e24 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_ErrorNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0af682cabbb2ad549aa18de970ec2af5 +timeCreated: 1611403165 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs new file mode 100644 index 00000000..f4daccf9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcT2C_KeepAlivePingReq
+ {
+ public static void Process(PtcT2C_KeepAlivePingReq roPtc)
+ {
+ PtcC2T_KeepAlivePingAck proto = new PtcC2T_KeepAlivePingAck();
+ XSingleton<XClientNetwork>.singleton.Send(proto);
+ XSingleton<XDebug>.singleton.AddLog("Keep alive ack", XDebugChannel.XDebug_Network.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs.meta new file mode 100644 index 00000000..0d3fb2b9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4fbf63b14620c0e46897a302250b2a88 +timeCreated: 1611403701 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs new file mode 100644 index 00000000..34bfe080 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs @@ -0,0 +1,96 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XUpdater;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcT2C_LoginChallenge
+ {
+ public static void Process(PtcT2C_LoginChallenge roPtc)
+ {
+ bool onReconnect = XSingleton<XClientNetwork>.singleton.XConnect.OnReconnect;
+ if (onReconnect)
+ {
+ RpcC2T_Reconnect rpcC2T_Reconnect = new RpcC2T_Reconnect();
+ rpcC2T_Reconnect.oArg.session = XSingleton<XClientNetwork>.singleton.Session;
+ rpcC2T_Reconnect.oArg.sceneid = XSingleton<XScene>.singleton.SceneID;
+ bool flag = XSingleton<XAttributeMgr>.singleton.XPlayerData != null;
+ if (flag)
+ {
+ rpcC2T_Reconnect.oArg.roleid = XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID;
+ }
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2T_Reconnect);
+ XSingleton<XDebug>.singleton.AddLog("send Reconnect rpc.", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("receive challenge, start sync time.", null, null, null, null, null, XDebugColor.XDebug_None);
+ bool flag2 = !string.IsNullOrEmpty(XSingleton<XClientNetwork>.singleton.XLoginToken);
+ if (flag2)
+ {
+ RpcC2T_ClientLoginRequest rpcC2T_ClientLoginRequest = new RpcC2T_ClientLoginRequest();
+ rpcC2T_ClientLoginRequest.oArg.token = Convert.FromBase64String(XSingleton<XClientNetwork>.singleton.XLoginToken);
+ rpcC2T_ClientLoginRequest.oArg.gameserverid = XSingleton<XClientNetwork>.singleton.ServerID;
+ rpcC2T_ClientLoginRequest.oArg.openid = XSingleton<XLoginDocument>.singleton.OpenID;
+ rpcC2T_ClientLoginRequest.oArg.loginzoneid = XSingleton<XLoginDocument>.singleton.LoginZoneID;
+ RuntimePlatform platform = Application.platform;
+ if ((int)platform != 8)
+ {
+ if ((int)platform != 11)
+ {
+ rpcC2T_ClientLoginRequest.oArg.pc = "0.0.0";
+ }
+ else
+ {
+ rpcC2T_ClientLoginRequest.oArg.android = XSingleton<XUpdater.XUpdater>.singleton.Version;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo = new ClientInfo();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.PlatID = XFastEnumIntEqualityComparer<PlatType>.ToInt(PlatType.PLAT_ANDROID);
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ClientVersion = XSingleton<XUpdater.XUpdater>.singleton.Version;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.LoginChannel = XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetChannelID();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.pf = "openmobile_android";
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.starttype = XSingleton<XLoginDocument>.singleton.GetLaunchType();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.logintype = XSingleton<XClientNetwork>.singleton.AccountType;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.token = XSingleton<XLoginDocument>.singleton.TokenCache;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ScreenWidth = Screen.width;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ScreenHight = Screen.height;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.DeviceId = SystemInfo.deviceUniqueIdentifier;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.SystemHardware = SystemInfo.deviceModel;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.SystemSoftware = SystemInfo.operatingSystem;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Memory = SystemInfo.systemMemorySize;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.CpuHardware = SystemInfo.processorType + "-" + SystemInfo.processorCount;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Network = Application.internetReachability.ToString();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Density = (float)XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetDensity();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.TelecomOper = XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetSim();
+ }
+ }
+ else
+ {
+ rpcC2T_ClientLoginRequest.oArg.ios = XSingleton<XUpdater.XUpdater>.singleton.Version;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo = new ClientInfo();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.PlatID = XFastEnumIntEqualityComparer<PlatType>.ToInt(PlatType.PLAT_IOS);
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ClientVersion = XSingleton<XUpdater.XUpdater>.singleton.Version;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.LoginChannel = XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetChannelID();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.pf = "openmobile_ios";
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.starttype = XSingleton<XLoginDocument>.singleton.GetLaunchType();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.logintype = XSingleton<XClientNetwork>.singleton.AccountType;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.token = XSingleton<XLoginDocument>.singleton.TokenCache;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ScreenWidth = Screen.width;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.ScreenHight = Screen.height;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.DeviceId = SystemInfo.deviceUniqueIdentifier;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.SystemHardware = SystemInfo.deviceModel;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.SystemSoftware = SystemInfo.operatingSystem;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Memory = SystemInfo.systemMemorySize;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.CpuHardware = SystemInfo.processorType + "-" + SystemInfo.processorCount;
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Network = Application.internetReachability.ToString();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.Density = (float)XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetDensity();
+ rpcC2T_ClientLoginRequest.oArg.clientInfo.TelecomOper = XSingleton<XUpdater.XUpdater>.singleton.XPlatform.GetSim();
+ }
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2T_ClientLoginRequest);
+ }
+ XSingleton<XClientNetwork>.singleton.Session = roPtc.Data.session;
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs.meta new file mode 100644 index 00000000..8a662e2b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_LoginChallenge.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 22a33bb6b67e2c143bb741c8483ec193 +timeCreated: 1611403423 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs new file mode 100644 index 00000000..ddb138a0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs @@ -0,0 +1,33 @@ +using System;
+using System.Text;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2A_AudioAuthKey
+ {
+ public static void OnReply(AudioAuthKeyArg oArg, AudioAuthKeyRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XChatDocument.m_ApolloInited = true;
+ XChatDocument.m_ApolloKey = Encoding.Default.GetBytes(oRes.szAuthKey);
+ XChatDocument.m_ApolloIPtable[0] = (int)oRes.dwMainSvrUrl1;
+ XChatDocument.m_ApolloIPtable[1] = (int)oRes.dwMainSvrUrl2;
+ XChatDocument.m_ApolloIPtable[2] = (int)oRes.dwSlaveSvrUrl1;
+ XChatDocument.m_ApolloIPtable[3] = (int)oRes.dwSlaveSvrUrl2;
+ XSingleton<XChatApolloMgr>.singleton.InitApolloEngine();
+ }
+ }
+ }
+
+ public static void OnTimeout(AudioAuthKeyArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs.meta new file mode 100644 index 00000000..02caa59f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioAuthKey.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 939d7d4c1b78ef94a945f9900379ad2d +timeCreated: 1611404152 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs new file mode 100644 index 00000000..fd07f90f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs @@ -0,0 +1,31 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2A_AudioText
+ {
+ public static void OnReply(AudioTextArg oArg, AudioTextRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XChatApolloMgr>.singleton.OnGotAudioText(oRes);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("Got file text error: ", oRes.error.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ XSingleton<XChatApolloMgr>.singleton.OnGotAudioTextError(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AudioTextArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs.meta new file mode 100644 index 00000000..da0e27e9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_AudioText.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7c69f3a740a72154989bef84e5868a6a +timeCreated: 1611403996 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs new file mode 100644 index 00000000..5ec11a40 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2A_GetAudioListReq
+ {
+ public static void OnReply(GetAudioListReq oArg, GetAudioListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<XChatIFlyMgr>.singleton.DownloadMp3Res(oRes);
+ }
+ else
+ {
+ XSingleton<XChatIFlyMgr>.singleton.DownLoadMp3Error();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetAudioListReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs.meta new file mode 100644 index 00000000..6479cb59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_GetAudioListReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f9e2d3c9d6b71b34b9e57d331c1222c7 +timeCreated: 1611404901 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs new file mode 100644 index 00000000..1a625114 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs @@ -0,0 +1,49 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2A_UpLoadAudioReq
+ {
+ public static void OnReply(UpLoadAudioReq oArg, UpLoadAudioRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ bool flag4 = oArg.srctype == 0u;
+ if (flag4)
+ {
+ XSingleton<XChatIFlyMgr>.singleton.UpLoadMp3Res(oRes);
+ }
+ else
+ {
+ bool flag5 = oArg.srctype == 1u;
+ if (flag5)
+ {
+ XSingleton<XChatApolloMgr>.singleton.UpLoadAudioRes(oRes);
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(UpLoadAudioReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs.meta new file mode 100644 index 00000000..7b167cb6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2A_UpLoadAudioReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f1dad805a0d057c4785e72ace8384ea5 +timeCreated: 1611404840 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs new file mode 100644 index 00000000..108cf065 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AbsEnterScene
+ {
+ public static void OnReply(AbsEnterSceneArg oArg, AbsEnterSceneRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(AbsEnterSceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs.meta new file mode 100644 index 00000000..27a673a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AbsEnterScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3f1090f941892d5409e77d8f970e8134 +timeCreated: 1611403609 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs new file mode 100644 index 00000000..359e28c5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ActivatAtlas
+ {
+ public static void OnReply(ActivatAtlasArg oArg, ActivatAtlasRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XCardCollectDocument specificDocument = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument.OnActive(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ActivatAtlasArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs.meta new file mode 100644 index 00000000..0dd89462 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatAtlas.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6483c82f3906ea1438cad2a982141d0b +timeCreated: 1611403848 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs new file mode 100644 index 00000000..98f057f6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ActivateFashionCharm
+ {
+ public static void OnReply(ActivateFashionArg oArg, ActivateFashionRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument.ReceiveActivateFashion(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ActivateFashionArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs.meta new file mode 100644 index 00000000..e0e0fb2f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateFashionCharm.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5afa6b2d5600442438e9904a83f8bac7 +timeCreated: 1611403796 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs new file mode 100644 index 00000000..272f4ecc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ActivateHairColor
+ {
+ public static void OnReply(ActivateHairColorArg oArg, ActivateHairColorRes oRes)
+ {
+ XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument.SetActivateHairColor(oRes);
+ }
+
+ public static void OnTimeout(ActivateHairColorArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs.meta new file mode 100644 index 00000000..6a65465f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivateHairColor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 048e8338e589590499889819db05697e +timeCreated: 1611402961 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs new file mode 100644 index 00000000..fd58091b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ActivatePreShow
+ {
+ public static void OnReply(ActivatePreShowArg oArg, ActivatePreShowRes oRes)
+ {
+ XPrerogativeDocument specificDocument = XDocuments.GetSpecificDocument<XPrerogativeDocument>(XPrerogativeDocument.uuID);
+ specificDocument.ReceiveActiveReply(oArg, oRes);
+ }
+
+ public static void OnTimeout(ActivatePreShowArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs.meta new file mode 100644 index 00000000..cfd85b16 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ActivatePreShow.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 36f0af4cafeb8074ca3cac864a65f1d3 +timeCreated: 1611403563 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs new file mode 100644 index 00000000..fb7009f8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AddTempAttr
+ {
+ public static void OnReply(AddTempAttrArg oArg, AddTempAttrRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oArg.type == 0u;
+ if (flag2)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetEncourage(oRes);
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument2.OnGetEncourage(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AddTempAttrArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs.meta new file mode 100644 index 00000000..8481698a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AddTempAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9b0c85102e8e18e49a7dfb53b58e9752 +timeCreated: 1611404204 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs new file mode 100644 index 00000000..1b4719e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs @@ -0,0 +1,55 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AgreeQAReq
+ {
+ public static void OnReply(AgreeQAReq oArg, AgreeQARes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ specificDocument.MainInterFaceBtnState = false;
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.RefreshH5ButtonState(XSysDefine.XSys_GuildRelax_VoiceQA, true);
+ }
+ else
+ {
+ specificDocument.IsVoiceQAIng = oArg.agree;
+ bool flag3 = !oArg.agree;
+ if (flag3)
+ {
+ specificDocument.MainInterFaceBtnState = false;
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.RefreshH5ButtonState(XSysDefine.XSys_GuildRelax_VoiceQA, true);
+ }
+ else
+ {
+ XMainInterfaceDocument specificDocument2 = XDocuments.GetSpecificDocument<XMainInterfaceDocument>(XMainInterfaceDocument.uuID);
+ specificDocument2.SetVoiceBtnAppear(0u);
+ specificDocument.VoiceQAInit(oArg.type);
+ specificDocument.IsFirstOpenUI = true;
+ specificDocument.OpenView();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(AgreeQAReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs.meta new file mode 100644 index 00000000..a95134ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AgreeQAReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b1561faf88b298a4fb342976c6efbaa6 +timeCreated: 1611404355 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs new file mode 100644 index 00000000..c40d3b14 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ArgentaActivity
+ {
+ public static void OnReply(ArgentaActivityArg oArg, ArgentaActivityRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XWelfareDocument.Doc.OnGetArgentaActivityInfo(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+
+ public static void OnTimeout(ArgentaActivityArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs.meta new file mode 100644 index 00000000..6d9790e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArgentaActivity.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fadf0e6e1dd0fe846b14db30caac211f +timeCreated: 1611404929 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs new file mode 100644 index 00000000..23e86881 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ArtifactCompose
+ {
+ public static void OnReply(ArtifactComposeArg oArg, ArtifactComposeRes oRes)
+ {
+ ArtifactComposeDocument.Doc.OnReqCoposeArtifactBack(oArg.type, oRes);
+ }
+
+ public static void OnTimeout(ArtifactComposeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs.meta new file mode 100644 index 00000000..b5afeb44 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactCompose.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63519f6dff7013e4b83543006edae177 +timeCreated: 1611403844 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs new file mode 100644 index 00000000..6ba76b1b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ArtifactDeityStoveOp
+ {
+ public static void OnReply(ArtifactDeityStoveOpArg oArg, ArtifactDeityStoveOpRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ switch (oArg.type)
+ {
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_Recast:
+ ArtifactRecastDocument.Doc.OnReqRecastBack(oRes);
+ break;
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_Fuse:
+ ArtifactFuseDocument.Doc.OnReqFuseBack(oRes);
+ break;
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_Inscription:
+ ArtifactInscriptionDocument.Doc.OnReqInscriptionBack(oRes);
+ break;
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_Refine:
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_RefineRetain:
+ case ArtifactDeityStoveOpType.ArtifactDeityStove_RefineReplace:
+ ArtifactRefinedDocument.Doc.OnReqRefinedBack(oArg.type, oRes);
+ break;
+ }
+ }
+ }
+
+ public static void OnTimeout(ArtifactDeityStoveOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs.meta new file mode 100644 index 00000000..b3651b71 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ArtifactDeityStoveOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 54f2fabb3a8596c46803f0ab56299aa4 +timeCreated: 1611403736 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs new file mode 100644 index 00000000..9f2f73ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AskForCheckInBonus
+ {
+ public static void OnReply(AskForCheckInBonusArg oArg, AskForCheckInBonusRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XQuickReplyDocument specificDocument = XDocuments.GetSpecificDocument<XQuickReplyDocument>(XQuickReplyDocument.uuID);
+ specificDocument.OnAskForCheckInBonus(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(AskForCheckInBonusArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs.meta new file mode 100644 index 00000000..29e201e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AskForCheckInBonus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5062400ea488bdc419ae934f760e44cb +timeCreated: 1611403703 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs new file mode 100644 index 00000000..7ae82496 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AtlasUpStar
+ {
+ public static void OnReply(AtlasUpStarArg oArg, AtlasUpStarRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XCardCollectDocument specificDocument = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument.ChangeStar((int)oRes.star, (int)oArg.groupid);
+ }
+ }
+ }
+
+ public static void OnTimeout(AtlasUpStarArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs.meta new file mode 100644 index 00000000..a84ef5f8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AtlasUpStar.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: be9b16b2348c31e46b94090b3f1593f0 +timeCreated: 1611404480 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs new file mode 100644 index 00000000..7cd1362e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_AutoBreakAtlas
+ {
+ public static void OnReply(AutoBreakAtlasArg oArg, AutoBreakAtlasRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XCardCollectDocument specificDocument = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument.OnAutoBreak(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(AutoBreakAtlasArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs.meta new file mode 100644 index 00000000..48cf5660 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_AutoBreakAtlas.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 168c750ed20bcba49bd43f16d5e7068e +timeCreated: 1611403288 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs new file mode 100644 index 00000000..5c3684ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs @@ -0,0 +1,29 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BackFlowActivityOperation
+ {
+ public static void OnReply(BackFlowActivityOperationArg oArg, BackFlowActivityOperationRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XBackFlowDocument.Doc.OnGetBackFlowOperation(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(BackFlowActivityOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs.meta new file mode 100644 index 00000000..854bb488 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowActivityOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9df347c9c24ed254d8b06d5c3fd8c791 +timeCreated: 1611404239 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs new file mode 100644 index 00000000..bfd9b2ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BackFlowBuyOp
+ {
+ public static void OnReply(BackFlowBuyOpArg oArg, BackFlowBuyOpRes oRes)
+ {
+ }
+
+ public static void OnTimeout(BackFlowBuyOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs.meta new file mode 100644 index 00000000..c800943b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BackFlowBuyOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dfdb87329b702d549bbb6e7713ee5f42 +timeCreated: 1611404695 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs new file mode 100644 index 00000000..b6241182 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BattleFieldAwardNumReq
+ {
+ public static void OnReply(BattleFieldAwardNumArg oArg, BattleFieldAwardNumRes oRes)
+ {
+ XBattleFieldEntranceDocument.Doc.SetPointRewardRemainCount(oRes);
+ }
+
+ public static void OnTimeout(BattleFieldAwardNumArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs.meta new file mode 100644 index 00000000..ea163743 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldAwardNumReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c4f50560b3563c34a926b425cad9682d +timeCreated: 1611404504 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs new file mode 100644 index 00000000..83bc9ada --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BattleFieldRankReq
+ {
+ public static void OnReply(BattleFieldRankArg oArg, BattleFieldRankRes oRes)
+ {
+ XBattleFieldBattleDocument.Doc.SetRankData(oArg, oRes);
+ }
+
+ public static void OnTimeout(BattleFieldRankArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs.meta new file mode 100644 index 00000000..89331196 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRankReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d96463c732f0f27439b01f574e2d5a7a +timeCreated: 1611404644 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs new file mode 100644 index 00000000..756a2cc2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BattleFieldRoleAgainstReq
+ {
+ public static void OnReply(BattleFieldRoleAgainstArg oArg, BattleFieldRoleAgainst oRes)
+ {
+ XBattleFieldBattleDocument.Doc.SetBattleInfo(oRes);
+ }
+
+ public static void OnTimeout(BattleFieldRoleAgainstArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs.meta new file mode 100644 index 00000000..ed9cc544 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BattleFieldRoleAgainstReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2e2312792ff041c46aeb8b9747668956 +timeCreated: 1611403509 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs new file mode 100644 index 00000000..b1193ab3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs @@ -0,0 +1,54 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BindSkill
+ {
+ public static void OnReply(BingSkillArg oArg, BindSkillRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ bool flag3 = oArg.slot < oRes.skillslot.Count;
+ if (flag3)
+ {
+ specificDocument.ShowEmblemTips((ulong)oRes.skillslot[oArg.slot], oArg.slot);
+ }
+ for (int i = 0; i < XSingleton<XAttributeMgr>.singleton.XPlayerData.skillSlot.Length; i++)
+ {
+ bool flag4 = i < oRes.skillslot.Count;
+ if (flag4)
+ {
+ XSingleton<XAttributeMgr>.singleton.XPlayerData.skillSlot[i] = oRes.skillslot[i];
+ }
+ }
+ XEmblemDocument specificDocument2 = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ specificDocument2.UpdateRedPoints();
+ specificDocument.SkillRefresh(false, true);
+ XSingleton<XTutorialHelper>.singleton.SkillBind = true;
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(BingSkillArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs.meta new file mode 100644 index 00000000..c5b74f56 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BindSkill.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8d62890e265347b418c6685ed0336d70 +timeCreated: 1611404104 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs new file mode 100644 index 00000000..fdd351ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs @@ -0,0 +1,65 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BossRushReq
+ {
+ public static void OnReply(BossRushArg oArg, BossRushRes oRes)
+ {
+ bool flag = oRes.ret == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XBossBushDocument specificDocument = XDocuments.GetSpecificDocument<XBossBushDocument>(XBossBushDocument.uuID);
+ bool flag2 = oRes.ret == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = oArg.type == BossRushReqStatus.BOSSRUSH_REQ_BASEDATA || oArg.type == BossRushReqStatus.BOSSRUSH_REQ_REFRESH;
+ if (flag3)
+ {
+ specificDocument.Resp(oArg.type, oRes.data);
+ }
+ else
+ {
+ bool flag4 = oArg.type == BossRushReqStatus.BOSSRUSH_REQ_APPEARANCE || oArg.type == BossRushReqStatus.BOSSRUSH_REQ_CONTINUE;
+ if (flag4)
+ {
+ specificDocument.unitAppearance = oRes.bossApp;
+ DlgBase<BossRushDlg, BossRushBehavior>.singleton.GoBattle();
+ }
+ else
+ {
+ bool flag5 = oArg.type == BossRushReqStatus.BOSSRUSH_REQ_LEFTCOUNT;
+ if (flag5)
+ {
+ specificDocument.leftChanllageCnt = oRes.leftcount;
+ XActivityDocument.Doc.OnGetDayCount();
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("rcv server msg!", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+ }
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("bossrush err=>", oRes.ret.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+ }
+
+ public static void OnTimeout(BossRushArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs.meta new file mode 100644 index 00000000..8b83508c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BossRushReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63580cc359b79af429d2597b9485a60e +timeCreated: 1611403844 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs new file mode 100644 index 00000000..2018dea4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyDraw
+ {
+ public static void OnReply(BuyDrawReq oArg, BuyDrawRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XOperatingActivityDocument specificDocument = XDocuments.GetSpecificDocument<XOperatingActivityDocument>(XOperatingActivityDocument.uuID);
+ specificDocument.OnReceiveBuyLuckyTurntable();
+ }
+ }
+
+ public static void OnTimeout(BuyDrawReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs.meta new file mode 100644 index 00000000..e60ca5dd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyDraw.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 689a140d055bcc44ca9b22bf52d60ea2 +timeCreated: 1611403883 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs new file mode 100644 index 00000000..a5a85023 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyExtraSkillEmblemSlot
+ {
+ public static void OnReply(BuyExtraSkillEmblemSlotArg oArg, BuyExtraSkillEmblemSlotRes oRes)
+ {
+ XEmblemDocument specificDocument = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ specificDocument.OnEmbleSlottingBack(oRes);
+ }
+
+ public static void OnTimeout(BuyExtraSkillEmblemSlotArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs.meta new file mode 100644 index 00000000..fc85462a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyExtraSkillEmblemSlot.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 933b4d6e7b32b784a8ea13e5b99ee7e3 +timeCreated: 1611404150 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs new file mode 100644 index 00000000..60c8a769 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs @@ -0,0 +1,40 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyGoldAndFatigue
+ {
+ public static void OnReply(BuyGoldAndFatigueArg oArg, BuyGoldAndFatigueRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.ShowErrorCode(oRes.result);
+ }
+ bool flag3 = oArg.type == buyextype.DRAGONCOIN_BUY_GOLD || oArg.type == buyextype.DRAGON_BUY_FATIGUE;
+ if (flag3)
+ {
+ XDailyActivitiesDocument specificDocument = XDocuments.GetSpecificDocument<XDailyActivitiesDocument>(XDailyActivitiesDocument.uuID);
+ specificDocument.DealWithBuyReply();
+ }
+ }
+ }
+
+ public static void OnTimeout(BuyGoldAndFatigueArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs.meta new file mode 100644 index 00000000..6465b090 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyGoldAndFatigue.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 72b134ff6a65a404f8011c3fcd099503 +timeCreated: 1611403938 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs new file mode 100644 index 00000000..b490cd08 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyHeroInHeroBattle
+ {
+ public static void OnReply(BuyHeroInHeroBattleArg oArg, BuyHeroInHeroBattleRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XHeroBattleSkillDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleSkillDocument>(XHeroBattleSkillDocument.uuID);
+ specificDocument.OnBuyHeroSuccess(oArg.heroid);
+ }
+ }
+ }
+
+ public static void OnTimeout(BuyHeroInHeroBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs.meta new file mode 100644 index 00000000..5fa11a78 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyHeroInHeroBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ad1210536407bb5429613cf9de395c95 +timeCreated: 1611404333 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs new file mode 100644 index 00000000..1a3b8b65 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyIBItem
+ {
+ public static void OnReply(IBBuyItemReq oArg, IBBuyItemRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument.OnResBuyItem(oArg, oRes);
+ }
+ else
+ {
+ XGameMallDocument specificDocument2 = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument2.isBuying = false;
+ string @string = XStringDefineProxy.GetString(oRes.errorcode);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(@string, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(IBBuyItemReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs.meta new file mode 100644 index 00000000..ebd8bd67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyIBItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0a84f910c42aec64ea0aa6a7c9b5ae6e +timeCreated: 1611403164 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs new file mode 100644 index 00000000..124c56fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyJadeSlot
+ {
+ public static void OnReply(BuyJadeSlotArg oArg, BuyJadeSlotRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XJadeDocument specificDocument = XDocuments.GetSpecificDocument<XJadeDocument>(XJadeDocument.uuID);
+ specificDocument.OnBuySlot(oRes);
+ }
+ }
+
+ public static void OnTimeout(BuyJadeSlotArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs.meta new file mode 100644 index 00000000..93f1bd65 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlot.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2d8af4fbda6d58740a11ba98366e7c3d +timeCreated: 1611403506 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs new file mode 100644 index 00000000..bfad3a85 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyJadeSlotNew
+ {
+ public static void OnReply(BuyJadeSlotNewArg oArg, BuyJadeSlotNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(BuyJadeSlotNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs.meta new file mode 100644 index 00000000..8dcf966a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyJadeSlotNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 613d2570a514da940afda62178319879 +timeCreated: 1611403838 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs new file mode 100644 index 00000000..205a3b26 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyShopItem
+ {
+ public static void OnReply(BuyShopItemArg oArg, BuyShopItemRes oRes)
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetBuy(oArg, oRes);
+ }
+
+ public static void OnTimeout(BuyShopItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs.meta new file mode 100644 index 00000000..81aa696d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyShopItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d149b9c8b1f9fa545a908d780e2c22df +timeCreated: 1611404591 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs new file mode 100644 index 00000000..5c8deb23 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs @@ -0,0 +1,61 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuySpriteEgg
+ {
+ public static void OnReply(BuySpriteEggArg oArg, BuySpriteEggRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_ITEM_NOT_ENOUGH;
+ if (flag2)
+ {
+ LotteryType type = (LotteryType)oArg.type;
+ if (type - LotteryType.Sprite_Draw_One > 1)
+ {
+ if (type - LotteryType.Sprite_GoldDraw_One <= 1)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SpriteLotteryGoldNotEnough"), "fece00");
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.ReqQuickCommonPurchase(ItemEnum.GOLD);
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SpriteLotteryDragonCoinNotEnough"), "fece00");
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.ShowBorad(ItemEnum.DRAGON_COIN);
+ }
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ else
+ {
+ XSpriteSystemDocument specificDocument = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument.SetBuyEggData(oRes.goldfreebuycooldown, oRes.cooldown, oRes.goldfreebuycount);
+ specificDocument.SetBuyEggItem(oRes.item);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(BuySpriteEggArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs.meta new file mode 100644 index 00000000..93c29bc3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuySpriteEgg.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09e87727859ccf1449c78a5ac3dc83b4 +timeCreated: 1611403159 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs new file mode 100644 index 00000000..f531b21a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyTeamSceneCount
+ {
+ public static void OnReply(BuyTeamSceneCountP oArg, BuyTeamSceneCountRet oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.OnBuyCount(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(BuyTeamSceneCountP oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs.meta new file mode 100644 index 00000000..067e827f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyTeamSceneCount.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7171fdf824d197c48927065122250c51 +timeCreated: 1611403934 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs new file mode 100644 index 00000000..e71f7589 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_BuyVipLevelGift
+ {
+ public static void OnReply(BuyVipLevelGiftArg oArg, BuyVipLevelGiftRes oRes)
+ {
+ bool flag = oRes.errcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errcode, "fece00");
+ }
+ else
+ {
+ XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument.OnGetVIPGift(oArg.vipLevel);
+ }
+ }
+
+ public static void OnTimeout(BuyVipLevelGiftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs.meta new file mode 100644 index 00000000..fd0faab2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_BuyVipLevelGift.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d9debbcba4838b941b79f03c79f7edfe +timeCreated: 1611404646 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs new file mode 100644 index 00000000..dcc7f0a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs @@ -0,0 +1,52 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_CampDuelActivityOperation
+ {
+ public static void OnReply(CampDuelActivityOperationArg oArg, CampDuelActivityOperationRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XCampDuelDocument.Doc.SetCampDuelData(oArg, oRes);
+ bool flag3 = oArg.type == 2u && XCampDuelDocument.Doc.handler != null;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("CAMPDUEL_JOIN_OK"), XCampDuelDocument.Doc.handler.CampName), "fece00");
+ }
+ bool flag4 = oArg.type == 3u;
+ if (flag4)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("CAMPDUEL_CONFIRM_OK"), oArg.arg), "fece00");
+ }
+ bool flag5 = oArg.type == 4u || oArg.type == 5u;
+ if (flag5)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("CAMPDUEL_COURAGE_OK"), oArg.arg), "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(CampDuelActivityOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs.meta new file mode 100644 index 00000000..cbca4352 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CampDuelActivityOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6f14013d8de32da4eb6c38ce0d4d8957 +timeCreated: 1611403908 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs new file mode 100644 index 00000000..045bc78a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeDeclaration
+ {
+ public static void OnReply(ChangeDeclarationArg oArg, ChangeDeclarationRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ bool flag3 = DlgBase<PersonalCareerView, PersonalCareerBehaviour>.singleton.HomepageHandler != null;
+ if (flag3)
+ {
+ DlgBase<PersonalCareerView, PersonalCareerBehaviour>.singleton.HomepageHandler.SetDeclaration(oRes.declaration);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeDeclarationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs.meta new file mode 100644 index 00000000..9e8864c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeDeclaration.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6a87560e33eccac4e9c79501c71e4f51 +timeCreated: 1611403888 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs new file mode 100644 index 00000000..1c0d5379 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs @@ -0,0 +1,43 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeGuildCard
+ {
+ public static void OnReply(ChangeGuildCardArg oArg, ChangeGuildCardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.WaitRpc = false;
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ specificDocument.ChangeCard(oArg.card, oRes.card, oRes.result);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode != ErrorCode.ERR_UNKNOWN;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeGuildCardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs.meta new file mode 100644 index 00000000..e7cc151d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeGuildCard.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 306c3c4e909cf684ba772373380c8585 +timeCreated: 1611403521 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs new file mode 100644 index 00000000..b62bc806 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs @@ -0,0 +1,35 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeLiveVisible
+ {
+ public static void OnReply(ChangeLiveVisibleArg oArg, ChangeLiveVisibleRes oRes)
+ {
+ bool flag = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SpectateSettingSuccess"), "fece00");
+ XSpectateDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateDocument>(XSpectateDocument.uuID);
+ specificDocument.VisibleSetting = oArg.visible;
+ bool flag2 = DlgBase<SpectateView, SpectateBehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ DlgBase<SpectateView, SpectateBehaviour>.singleton.SetVisibleSettingTextState();
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeLiveVisibleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs.meta new file mode 100644 index 00000000..7437b1c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeLiveVisible.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 74395210ae0c9e843ac586816462c944 +timeCreated: 1611403943 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs new file mode 100644 index 00000000..cb45cf00 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeOutLookOp
+ {
+ public static void OnReply(ChangeOutLookOpArg oArg, ChangeOutLookOpRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ChangeOutLookOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs.meta new file mode 100644 index 00000000..8ae42273 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeOutLookOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 89eeaa59f54c5f44884085ee4e88c926 +timeCreated: 1611404090 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs new file mode 100644 index 00000000..736efda8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeProfession
+ {
+ public static void OnReply(ChangeProfessionArg oArg, ChangeProfessionRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeProfessionArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs.meta new file mode 100644 index 00000000..f3c8741c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeProfession.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b322b442cc50a604bb0aab77ff1502e9 +timeCreated: 1611404388 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs new file mode 100644 index 00000000..b1e5f3e0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeRiskBoxState
+ {
+ public static void OnReply(ChangeRiskBoxStateArg oArg, ChangeRiskBoxStateRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSuperRiskDocument specificDocument = XDocuments.GetSpecificDocument<XSuperRiskDocument>(XSuperRiskDocument.uuID);
+ specificDocument.OnBoxStateChangeSucc(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.error);
+ }
+ }
+
+ public static void OnTimeout(ChangeRiskBoxStateArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs.meta new file mode 100644 index 00000000..c12b263c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeRiskBoxState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a9397da318d74cd478176f4567a90a04 +timeCreated: 1611404297 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs new file mode 100644 index 00000000..8e44dc4e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeSkillSet
+ {
+ public static void OnReply(ChangeSkillSetArg oArg, ChangeSkillSetRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ specificDocument.OnSwitchSkillPageSuccess(oArg.index, oRes.record);
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeSkillSetArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs.meta new file mode 100644 index 00000000..40ca2338 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeSkillSet.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ba8777aa1cf9f2340baa7181d14b9f7a +timeCreated: 1611404437 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs new file mode 100644 index 00000000..b562eb29 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChangeWatchRole
+ {
+ public static void OnReply(ChangeWatchRoleArg oArg, ChangeWatchRoleRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.WatchIt(XSingleton<XEntityMgr>.singleton.GetEntityConsiderDeath(oArg.roleID) as XRole);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("Change Spectator to ID: ", oArg.roleID.ToString(), "Failed.", null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeWatchRoleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs.meta new file mode 100644 index 00000000..9599597d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChangeWatchRole.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3199ad996556a8a4cbcbdd8b064107e8 +timeCreated: 1611403546 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs new file mode 100644 index 00000000..d8888852 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_Checkin
+ {
+ public static void OnReply(CheckinArg oArg, CheckinRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XLoginRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLoginRewardDocument>(XLoginRewardDocument.uuID);
+ specificDocument.OnCheckin(oRes);
+ }
+ }
+
+ public static void OnTimeout(CheckinArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs.meta new file mode 100644 index 00000000..9c8561ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Checkin.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7e10ad5e7226c6a40a2f513f8bc34bbf +timeCreated: 1611404003 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs new file mode 100644 index 00000000..0a463332 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs @@ -0,0 +1,54 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChooseProfession
+ {
+ public static void OnReply(ChooseProfArg oArg, ChooseProfRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XAttributeMgr>.singleton.XPlayerData.Profession = oArg.prof;
+ int num = XFastEnumIntEqualityComparer<RoleType>.ToInt(XSingleton<XAttributeMgr>.singleton.XPlayerData.Profession);
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID);
+ bool flag3 = entity != null && entity.Attributes != null;
+ if (flag3)
+ {
+ entity.Attributes.Outlook.SetProfType((uint)num);
+ entity.Attributes.Outlook.CalculateOutLookFashion();
+ XEquipChangeEventArgs @event = XEventPool<XEquipChangeEventArgs>.GetEvent();
+ @event.Firer = XSingleton<XEntityMgr>.singleton.Player;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ bool flag4 = DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.IsVisible();
+ if (flag4)
+ {
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.SetAvatar(XSingleton<XProfessionSkillMgr>.singleton.GetProfHeadIcon(num));
+ }
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ specificDocument.CreateAndPlayFxFxFirework();
+ specificDocument.SkillRefresh(true, true);
+ XSingleton<XTutorialHelper>.singleton.SwitchProf = true;
+ }
+ }
+ }
+
+ public static void OnTimeout(ChooseProfArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs.meta new file mode 100644 index 00000000..d5afa225 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseProfession.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 92b518563a1203a44a3d905672094af1 +timeCreated: 1611404148 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs new file mode 100644 index 00000000..dfbcb1b2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChooseRollReq
+ {
+ public static void OnReply(ChooseRollReqArg oArg, ChooseRollReqRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ChooseRollReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs.meta new file mode 100644 index 00000000..62f0e410 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseRollReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3da31426a6efd30469d76b529da403a7 +timeCreated: 1611403605 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs new file mode 100644 index 00000000..0e68d7c5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ChooseSpecialEffects
+ {
+ public static void OnReply(ChooseSpecialEffectsArg oArg, ChooseSpecialEffectsRes oRes)
+ {
+ XFashionStorageDocument specificDocument = XDocuments.GetSpecificDocument<XFashionStorageDocument>(XFashionStorageDocument.uuID);
+ specificDocument.SetActiveSuitEffect(oArg, oRes);
+ }
+
+ public static void OnTimeout(ChooseSpecialEffectsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs.meta new file mode 100644 index 00000000..271d716a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ChooseSpecialEffects.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 28a148d0c9df1cf4898187fd7a449639 +timeCreated: 1611403475 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs new file mode 100644 index 00000000..3239dfec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_CommendFirstPass
+ {
+ public static void OnReply(CommendFirstPassArg oArg, CommendFirstPassRes oRes)
+ {
+ FirstPassDocument.Doc.OnGetCommendFirstPass(oRes);
+ }
+
+ public static void OnTimeout(CommendFirstPassArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs.meta new file mode 100644 index 00000000..fa22a92f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendFirstPass.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 555640cdcd3c9f44db6029198114e5a4 +timeCreated: 1611403737 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs new file mode 100644 index 00000000..54aa450d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_CommendWatchBattle
+ {
+ public static void OnReply(CommendWatchBattleArg oArg, CommendWatchBattleRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("Spectate_Commend_Succeed"), "fece00");
+ XSpectateSceneDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateSceneDocument>(XSpectateSceneDocument.uuID);
+ specificDocument.CommendClickSuccess();
+ }
+ }
+ }
+
+ public static void OnTimeout(CommendWatchBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs.meta new file mode 100644 index 00000000..78f50979 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_CommendWatchBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ca8fe63f20b57a0459159b7663fb868d +timeCreated: 1611404542 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs new file mode 100644 index 00000000..20cb50cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DEProgressReq
+ {
+ public static void OnReply(DEProgressArg oArg, DEProgressRes oRes)
+ {
+ XDragonCrusadeDocument specificDocument = XDocuments.GetSpecificDocument<XDragonCrusadeDocument>(XDragonCrusadeDocument.uuID);
+ specificDocument.OnDEProgressReq(oRes);
+ XActivityDocument.Doc.OnGetDayCount();
+ }
+
+ public static void OnTimeout(DEProgressArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs.meta new file mode 100644 index 00000000..6ae09d97 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DEProgressReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 07a46b7d25303684bbe9512f46679547 +timeCreated: 1611402968 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs new file mode 100644 index 00000000..7983dd64 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DHRReqC2G
+ {
+ public static void OnReply(DHRArg oArg, DHRRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XDragonRewardDocument specificDocument = XDocuments.GetSpecificDocument<XDragonRewardDocument>(XDragonRewardDocument.uuID);
+ bool flag4 = specificDocument != null;
+ if (flag4)
+ {
+ specificDocument.OnResAchieve(oRes.rewstate, oRes.helpcount, oRes.wanthelp);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(DHRArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs.meta new file mode 100644 index 00000000..cd796f1e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DHRReqC2G.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6c789623b4c7fd49b00d0e6e6c5a806 +timeCreated: 1611404633 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs new file mode 100644 index 00000000..ea195465 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs @@ -0,0 +1,25 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DailyTaskAskHelp
+ {
+ public static void OnReply(DailyTaskAskHelpArg oArg, DailyTaskAskHelpRes oRes)
+ {
+ bool flag = oArg.task_type == PeriodTaskType.PeriodTaskType_Daily;
+ if (flag)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetDailyHelpReply(oArg, oRes);
+ }
+ else
+ {
+ XGuildWeeklyBountyDocument.Doc.OnGetWeeklyHelpReply(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(DailyTaskAskHelpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs.meta new file mode 100644 index 00000000..227030fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskAskHelp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0321d99f2a5f6f844be5e237ca61c0cd +timeCreated: 1611402958 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs new file mode 100644 index 00000000..54fa37ee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DailyTaskGiveUp
+ {
+ public static void OnReply(DailyTaskGiveUpArg oArg, DailyTaskGiveUpRes oRes)
+ {
+ XGuildDailyTaskDocument.Doc.OnGiveUpTask(oRes);
+ }
+
+ public static void OnTimeout(DailyTaskGiveUpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs.meta new file mode 100644 index 00000000..9ceee921 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DailyTaskGiveUp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ee5afb17d00be524bb930dd9738075fb +timeCreated: 1611404797 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs new file mode 100644 index 00000000..ac660a12 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DecomposeEquipment
+ {
+ public static void OnReply(DecomposeEquipmentArg oArg, DecomposeEquipmentRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XRecycleItemDocument specificDocument = XDocuments.GetSpecificDocument<XRecycleItemDocument>(XRecycleItemDocument.uuID);
+ specificDocument.OnRecycle(oRes);
+ }
+ }
+
+ public static void OnTimeout(DecomposeEquipmentArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs.meta new file mode 100644 index 00000000..73b87a81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DecomposeEquipment.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fc715d5a0ed6c974dbbba662c5595dfd +timeCreated: 1611404935 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs new file mode 100644 index 00000000..ed1ff9c1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs @@ -0,0 +1,153 @@ +using System;
+using KKSG;
+using UnityEngine;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DoEnterScene
+ {
+ public static uint runstate
+ {
+ get
+ {
+ return Process_RpcC2G_DoEnterScene._runstate;
+ }
+ }
+
+ private static uint _runstate = 0u;
+
+ public static void OnReply(DoEnterSceneArg oArg, DoEnterSceneRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("RpcC2G_DoEnterScene ERR_INVALID_REQUEST!", null, null, null, null, null);
+ }
+ else
+ {
+ bool flag2 = !XSingleton<XScene>.singleton.bSceneLoadedRpcSend;
+ if (!flag2)
+ {
+ XSingleton<XScene>.singleton.bSceneServerReady = true;
+ XSingleton<XScene>.singleton.bSceneLoadedRpcSend = false;
+ XSingleton<XDebug>.singleton.AddLog("Enter scene ", XSingleton<XScene>.singleton.SceneID.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_DOENTERSCENE_FAILED;
+ if (flag3)
+ {
+ XSingleton<XDebug>.singleton.AddLog("ERR_DOENTERSCENE_FAILED", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ else
+ {
+ Process_RpcC2G_DoEnterScene._runstate = oRes.scenestate.runstate;
+ Vector3 vector;
+ vector = new Vector3(oRes.pos.x, oRes.pos.y, oRes.pos.z);
+ Vector3 vector2 = XSingleton<XCommon>.singleton.FloatToAngle(oRes.face);
+ Vector3 face = XSingleton<XCommon>.singleton.FloatToAngle(oRes.initface);
+ XSingleton<XEntityMgr>.singleton.Player.Attributes.OnFightGroupChange((XSingleton<XGame>.singleton.SyncModeValue != 0) ? oRes.fightgroup : 1u);
+ XSingleton<XEntityMgr>.singleton.Player.Attributes.AppearAt = vector;
+ XSingleton<XEntityMgr>.singleton.Player.Net.CorrectNet(vector, face, 0u, true);
+ XBattleDocument.MiniMapSetRotation(oRes.initface);
+ GameObject gameObject = GameObject.Find("Scene/BattlePoint");
+ XSingleton<XScene>.singleton.BattleTargetPoint = ((gameObject != null) ? gameObject.transform.position : Vector3.zero);
+ gameObject = GameObject.Find("Scene/NestPoint");
+ XSingleton<XScene>.singleton.NestTargetPoint = ((gameObject != null) ? gameObject.transform.position : Vector3.zero);
+ XSingleton<XScene>.singleton.GameCamera.Root_R_Y_Default = XSingleton<XEntityMgr>.singleton.Player.EngineObject.Rotation.eulerAngles.y;
+ XSingleton<XScene>.singleton.GameCamera.Root_R_Y = XSingleton<XScene>.singleton.GameCamera.Root_R_Y_Default;
+ bool flag4 = XSingleton<XScene>.singleton.GameCamera.Wall != null;
+ if (flag4)
+ {
+ XSingleton<XScene>.singleton.GameCamera.Wall.TargetY = XSingleton<XScene>.singleton.GameCamera.Root_R_Y_Default;
+ }
+ bool bSpectator = XSingleton<XScene>.singleton.bSpectator;
+ if (bSpectator)
+ {
+ XSingleton<XEntityMgr>.singleton.Puppets(XSingleton<XEntityMgr>.singleton.Player, true, true);
+ XSingleton<XInput>.singleton.Freezed = true;
+ XSingleton<XEntityMgr>.singleton.Player.Attributes.OnFightGroupChange(2u);
+ }
+ else
+ {
+ bool flag5 = XSingleton<XEntityMgr>.singleton.Player.Nav != null;
+ if (flag5)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.Nav.Active();
+ }
+ bool flag6 = XSingleton<XEntityMgr>.singleton.Player.AI != null;
+ if (flag6)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.AI.Active();
+ }
+ bool flag7 = ((ulong)oRes.specialstate & (ulong)(1L << (XFastEnumIntEqualityComparer<UnitSpecialState>.ToInt(UnitSpecialState.Unit_Puppet) & 31))) > 0UL;
+ bool flag8 = ((ulong)oRes.specialstate & (ulong)(1L << (XFastEnumIntEqualityComparer<UnitSpecialState>.ToInt(UnitSpecialState.Unit_Invisible) & 31))) > 0UL;
+ bool flag9 = flag7 || flag8;
+ if (flag9)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.UpdateSpecialStateFromServer(oRes.specialstate, uint.MaxValue);
+ }
+ else
+ {
+ XSingleton<XEntityMgr>.singleton.Player.Present.ShowUp();
+ }
+ }
+ bool bSpectator2 = XSingleton<XScene>.singleton.bSpectator;
+ if (bSpectator2)
+ {
+ XSpectateSceneDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateSceneDocument>(XSpectateSceneDocument.uuID);
+ specificDocument.IsCrossServerBattle = oRes.is_cross;
+ }
+ else
+ {
+ XBattleDocument specificDocument2 = XDocuments.GetSpecificDocument<XBattleDocument>(XBattleDocument.uuID);
+ specificDocument2.IsCrossServerBattle = oRes.is_cross;
+ }
+ for (int i = 0; i < XSingleton<XGame>.singleton.Doc.Components.Count; i++)
+ {
+ (XSingleton<XGame>.singleton.Doc.Components[i] as XDocComponent).OnEnterSceneFinally();
+ }
+ XOutlookHelper.SetStatusState(XSingleton<XEntityMgr>.singleton.Player.Attributes, XSingleton<XEntityMgr>.singleton.Player, oRes.state, true);
+ XSingleton<XScene>.singleton.SceneStarted = oRes.scenestate.isready;
+ bool flag10 = !XSingleton<XScene>.singleton.SceneStarted && DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsLoaded() && DlgBase<BattleMain, BattleMainBehaviour>.singleton.IsVisible();
+ if (flag10)
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.uiBehaviour.m_PromptFrame.gameObject.SetActive(true);
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.SetLoadingPrompt(null, false);
+ }
+ bool flag11 = XSingleton<XScene>.singleton.bSpectator && oRes.iswatchend;
+ if (flag11)
+ {
+ DlgBase<SpectateSceneView, SpectateSceneBehaviour>.singleton.ShowBackToMainCityTips();
+ }
+ XSingleton<XLevelFinishMgr>.singleton.LevelRewardToken = oRes.battlestamp;
+ bool isViewGridScene = XSingleton<XScene>.singleton.IsViewGridScene;
+ if (isViewGridScene)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.Net.SetHallSequence();
+ }
+ bool flag12 = XSingleton<XGame>.singleton.CurrentStage.Stage == EXStage.World;
+ if (flag12)
+ {
+ XSingleton<XEntityMgr>.singleton.Player.Attributes.SecurityStatistics.OnStart();
+ }
+ XSingleton<XReconnection>.singleton.SetLoginReconnectFlag(oRes.lrdata != null);
+ bool flag13 = oRes.lrdata != null;
+ if (flag13)
+ {
+ XSingleton<XReconnection>.singleton.StartLoginReconnectSync(oRes.lrdata, oRes.otherunits);
+ }
+ else
+ {
+ XSingleton<XReconnection>.singleton.StartEnterSceneSync(oRes.otherunits);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(DoEnterSceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs.meta new file mode 100644 index 00000000..040bc75c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoEnterScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 820ad6ee7b179f84195cca120ff87f34 +timeCreated: 1611404039 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs new file mode 100644 index 00000000..2ea58cfa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs @@ -0,0 +1,21 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DoodadItemAllSkillReq
+ {
+ public static void OnReply(EmptyData oArg, DoodadItemAllSkill oRes)
+ {
+ bool flag = XRaceDocument.Doc.RaceHandler != null;
+ if (flag)
+ {
+ XRaceDocument.Doc.RaceHandler.RefreshDoodad(oRes);
+ }
+ }
+
+ public static void OnTimeout(EmptyData oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs.meta new file mode 100644 index 00000000..ca409fce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DoodadItemAllSkillReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d3f1ccaad25e7a8478b7267f4c98569b +timeCreated: 1611404600 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs new file mode 100644 index 00000000..1540a794 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DragonGroupRecord
+ {
+ public static void OnReply(DragonGroupRecordC2S oArg, DragonGroupRecordS2C oRes)
+ {
+ XDragonPartnerDocument specificDocument = XDocuments.GetSpecificDocument<XDragonPartnerDocument>(XDragonPartnerDocument.uuID);
+ specificDocument.ReceiveDragonGroupRecord(oArg, oRes);
+ }
+
+ public static void OnTimeout(DragonGroupRecordC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs.meta new file mode 100644 index 00000000..f09c37bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 53d396b4382a1f248a0361b5f71e0994 +timeCreated: 1611403713 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs new file mode 100644 index 00000000..61253eee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DragonGroupRoleList
+ {
+ public static void OnReply(DragonGroupRoleListC2S oArg, DragonGroupRoleListS2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonPartnerDocument specificDocument = XDocuments.GetSpecificDocument<XDragonPartnerDocument>(XDragonPartnerDocument.uuID);
+ bool flag3 = specificDocument != null;
+ if (flag3)
+ {
+ specificDocument.OnReqDragonGropRoleInfo(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(DragonGroupRoleListC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs.meta new file mode 100644 index 00000000..97019ad1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DragonGroupRoleList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ee2fe5628b46e344094051d11290d456 +timeCreated: 1611404795 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs new file mode 100644 index 00000000..529c4c61 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs @@ -0,0 +1,71 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_DrawLottery
+ {
+ public static void OnReply(DrawLotteryArg oArg, DrawLotteryRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SPRITE_INFIGHT_SAMETYPE;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ else
+ {
+ bool flag3 = oRes.Items.Count == 0;
+ if (flag3)
+ {
+ LotteryType type = (LotteryType)oArg.type;
+ if (type - LotteryType.Sprite_Draw_One > 1)
+ {
+ if (type - LotteryType.Sprite_GoldDraw_One <= 1)
+ {
+ string[] array = XSingleton<XGlobalConfig>.singleton.GetValue("SpriteGoldDrawCost").Split(XGlobalConfig.SequenceSeparator);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SpriteLotteryEggNotEnough"), "fece00");
+ bool flag4 = array.Length != 0;
+ if (flag4)
+ {
+ XSingleton<UiUtility>.singleton.ShowItemAccess(int.Parse(array[0]), null);
+ }
+ }
+ }
+ else
+ {
+ string[] array2 = XSingleton<XGlobalConfig>.singleton.GetValue("SpriteDrawCost").Split(XGlobalConfig.SequenceSeparator);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SpriteLotteryEggNotEnough"), "fece00");
+ bool flag5 = array2.Length != 0;
+ if (flag5)
+ {
+ XSingleton<UiUtility>.singleton.ShowItemAccess(int.Parse(array2[0]), null);
+ }
+ }
+ }
+ else
+ {
+ XSpriteSystemDocument specificDocument = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument.SetLotteryData(oRes.nextgoodcount);
+ specificDocument.SetLotteryResultData(oRes.Items, oRes.spriteppt, (LotteryType)oArg.type);
+ }
+ }
+ XSingleton<XDebug>.singleton.AddLog("recv draw lottery result!", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+
+ public static void OnTimeout(DrawLotteryArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs.meta new file mode 100644 index 00000000..2b0e3b67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_DrawLottery.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1db81c6c1b09a90448c0a79b0c767ea0 +timeCreated: 1611403358 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs new file mode 100644 index 00000000..21ed4777 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs @@ -0,0 +1,25 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EmblemLevelUp
+ {
+ public static void OnReply(EmblemLevelUpArg oArg, EmblemLevelUpRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+
+ public static void OnTimeout(EmblemLevelUpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs.meta new file mode 100644 index 00000000..6b13497a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EmblemLevelUp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aac0fc100443cb44097992e47cac7c97 +timeCreated: 1611404305 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs new file mode 100644 index 00000000..a4cd28f2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnchantActiveAttribute
+ {
+ public static void OnReply(EnchantActiveAttributeArg oArg, EnchantActiveAttributeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XEnchantDocument specificDocument = XDocuments.GetSpecificDocument<XEnchantDocument>(XEnchantDocument.uuID);
+ specificDocument.OnGetEnchantActiveAttr(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(EnchantActiveAttributeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs.meta new file mode 100644 index 00000000..cfaf7792 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantActiveAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 035b15cb733942541b20af6f21d53bad +timeCreated: 1611402958 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs new file mode 100644 index 00000000..49479047 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnchantEquip
+ {
+ public static void OnReply(EnchantEquipArg oArg, EnchantEquipRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XEnchantDocument specificDocument = XDocuments.GetSpecificDocument<XEnchantDocument>(XEnchantDocument.uuID);
+ specificDocument.OnGetEnchant(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(EnchantEquipArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs.meta new file mode 100644 index 00000000..35a68c12 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantEquip.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 885523d0e51a04b4184fe0b12282c7e1 +timeCreated: 1611404083 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs new file mode 100644 index 00000000..82def147 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnchantTransfer
+ {
+ public static void OnReply(EnchantTransferArg oArg, EnchantTransferRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(EnchantTransferArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs.meta new file mode 100644 index 00000000..5adf7746 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnchantTransfer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 57910344419a2a947a7be40ea082ea24 +timeCreated: 1611403750 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs new file mode 100644 index 00000000..2d04465b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EndGuildCard
+ {
+ public static void OnReply(EndGuildCardArg oArg, EndGuildCardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.EndCardGame(oRes.result);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(EndGuildCardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs.meta new file mode 100644 index 00000000..b302dd42 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EndGuildCard.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 347087d75ab99d847a2c6e3beea368bc +timeCreated: 1611403555 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs new file mode 100644 index 00000000..53badbcd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs @@ -0,0 +1,35 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnhanceItem
+ {
+ public static void OnReply(EnhanceItemArg oArg, EnhanceItemRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XEnhanceDocument specificDocument = XDocuments.GetSpecificDocument<XEnhanceDocument>(XEnhanceDocument.uuID);
+ specificDocument.OnEnhanceBack(oRes);
+ bool flag2 = oRes.ErrorCode == ErrorCode.ERR_ENHANCE_SUCCEED;
+ if (flag2)
+ {
+ XSingleton<XTutorialHelper>.singleton.EnhanceItem = true;
+ }
+ }
+ }
+
+ public static void OnTimeout(EnhanceItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs.meta new file mode 100644 index 00000000..b05f2344 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 67eaaf7761f2db048982ee2f1de9f003 +timeCreated: 1611403880 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs new file mode 100644 index 00000000..4109b9a6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs @@ -0,0 +1,29 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnhanceTranster
+ {
+ public static void OnReply(EnhanceTransterArg oArg, EnhanceTransterRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XEquipCreateDocument.Doc.OnReplyEnhanceTransform(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(EnhanceTransterArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs.meta new file mode 100644 index 00000000..3195aec5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnhanceTranster.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 00ffc7c65f696ca45bf55d90510d2cca +timeCreated: 1611402952 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs new file mode 100644 index 00000000..77527b56 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnterLeisureScene
+ {
+ public static void OnReply(EnterLeisureSceneArg oArg, EnterLeisureSceneRes oRes)
+ {
+ XYorozuyaDocument.Doc.OnReqBack(oRes);
+ }
+
+ public static void OnTimeout(EnterLeisureSceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs.meta new file mode 100644 index 00000000..d67f7004 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterLeisureScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5ce886f75ad041b49a10a5f81067a912 +timeCreated: 1611403803 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs new file mode 100644 index 00000000..9912f81b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_EnterWatchBattle
+ {
+ public static void OnReply(EnterWatchBattleArg oArg, EnterWatchBattleRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSpectateDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateDocument>(XSpectateDocument.uuID);
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_WATCH_LIVEISFULL || oRes.error == ErrorCode.ERR_WATCH_LIVEISOVER;
+ if (flag3)
+ {
+ specificDocument.EnterLiveError(oRes.error == ErrorCode.ERR_WATCH_LIVEISOVER);
+ }
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ specificDocument.IsLoadingSpectateScene = false;
+ }
+ else
+ {
+ XSpectateSceneDocument specificDocument2 = XDocuments.GetSpecificDocument<XSpectateSceneDocument>(XSpectateSceneDocument.uuID);
+ specificDocument2.IsBlueTeamDict.Clear();
+ }
+ }
+ }
+
+ public static void OnTimeout(EnterWatchBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs.meta new file mode 100644 index 00000000..119f59d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_EnterWatchBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 838df48a2cb0b5843bcec828ef19e15d +timeCreated: 1611404045 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs new file mode 100644 index 00000000..8b62c7d8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs @@ -0,0 +1,29 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ExpFindBack
+ {
+ public static void OnReply(ExpFindBackArg oArg, ExpFindBackRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFindExpDocument.Doc.OnReplyExpFindBack(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ExpFindBackArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs.meta new file mode 100644 index 00000000..1c38e39c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ExpFindBack.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e3a2b06651761684496e163e818e8cfd +timeCreated: 1611404734 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs new file mode 100644 index 00000000..8a573c10 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FashionCompose
+ {
+ public static void OnReply(FashionComposeArg oArg, FashionComposeRes oRes)
+ {
+ }
+
+ public static void OnTimeout(FashionComposeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs.meta new file mode 100644 index 00000000..2e1339ff --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FashionCompose.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a9ecb7cd0819c904592f7ab11ed161b2 +timeCreated: 1611404301 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs new file mode 100644 index 00000000..ff75aa54 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FetchAchivementReward
+ {
+ public static void OnReply(FetchAchiveArg oArg, FetchAchiveRes oRes)
+ {
+ bool flag = oRes.Result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.Result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.Result, "fece00");
+ }
+ else
+ {
+ XSingleton<XTutorialHelper>.singleton.GetReward = true;
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchAchiveArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs.meta new file mode 100644 index 00000000..4134724b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchAchivementReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1326606dcf46f784ca1deaec37f5eea9 +timeCreated: 1611403245 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs new file mode 100644 index 00000000..33008177 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FetchChapterChest
+ {
+ public static void OnReply(FetchChapterChestArg oArg, FetchChapterChestRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XStageProgress>.singleton.OnFetchChapterBoxSucc(oArg.chapterID, oArg.chestID);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchChapterChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs.meta new file mode 100644 index 00000000..f00e0a23 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchChapterChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1c1d604fb4395804b8cafa02252c2ed4 +timeCreated: 1611403342 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs new file mode 100644 index 00000000..1f188bb6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FetchEnemyDoodadReq
+ {
+ public static void OnReply(EnemyDoodadInfo oArg, RollInfoRes oRes)
+ {
+ }
+
+ public static void OnTimeout(EnemyDoodadInfo oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs.meta new file mode 100644 index 00000000..ad62728b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FetchEnemyDoodadReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5df8f7c3f7d9f8c48bd8652352b5688a +timeCreated: 1611403809 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs new file mode 100644 index 00000000..63e970d0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FirstPassGetTopRoleInfo
+ {
+ public static void OnReply(FirstPassGetTopRoleInfoArg oArg, FirstPassGetTopRoleInfoRes oRes)
+ {
+ FirstPassDocument.Doc.OnGetFirstPassTopRoleInfo(oRes);
+ }
+
+ public static void OnTimeout(FirstPassGetTopRoleInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs.meta new file mode 100644 index 00000000..642fb8a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassGetTopRoleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 59bf65a1fc68ffb46b9b544ae4ad8f08 +timeCreated: 1611403786 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs new file mode 100644 index 00000000..40ae0e88 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FirstPassInfoReq
+ {
+ public static void OnReply(FirstPassInfoReqArg oArg, FirstPassInfoReqRes oRes)
+ {
+ FirstPassDocument.Doc.OnGetFirstPassInfo(oRes);
+ }
+
+ public static void OnTimeout(FirstPassInfoReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs.meta new file mode 100644 index 00000000..07bf6491 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FirstPassInfoReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 59b892ac9005521418e3152a1dca05f4 +timeCreated: 1611403786 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs new file mode 100644 index 00000000..eb273e75 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs @@ -0,0 +1,25 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FiveDayRewardReq
+ {
+ public static void OnReply(FiveRewardRes oArg, FiveRewardRet oRes)
+ {
+ bool flag = oRes.ret == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+
+ public static void OnTimeout(FiveRewardRes oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs.meta new file mode 100644 index 00000000..294017c4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FiveDayRewardReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 51055e0092073e849b342b33f0e49a07 +timeCreated: 1611403705 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs new file mode 100644 index 00000000..fd6faac7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ForgeEquip
+ {
+ public static void OnReply(ForgeEquipArg oArg, ForgeEquipRes oRes)
+ {
+ XForgeDocument.Doc.OnForgeEquipBack(oArg.type, oRes);
+ }
+
+ public static void OnTimeout(ForgeEquipArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs.meta new file mode 100644 index 00000000..3236cfe1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ForgeEquip.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 05a1d1869946218418be35f4ae887d0f +timeCreated: 1611402963 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs new file mode 100644 index 00000000..3d142bb1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_FuseEquip
+ {
+ public static void OnReply(FuseEquipArg oArg, FuseEquipRes oRes)
+ {
+ EquipFusionDocument.Doc.OnGetEquipFuseInfo(oRes);
+ }
+
+ public static void OnTimeout(FuseEquipArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs.meta new file mode 100644 index 00000000..2212edb4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_FuseEquip.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c7a613b43f2345c4f8165fadaaf86733 +timeCreated: 1611404531 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs new file mode 100644 index 00000000..e8d0af42 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GMCommand
+ {
+ public static void OnReply(GMCmdArg oArg, GMCmdRes oRes)
+ {
+ DlgBase<DemoUI, DemoUIBehaviour>.singleton.AddMessage(oRes.outputMessage);
+ }
+
+ public static void OnTimeout(GMCmdArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs.meta new file mode 100644 index 00000000..4d6d742e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2ef940d0a24c36545b420ae381b3a414 +timeCreated: 1611403513 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs new file mode 100644 index 00000000..41cf5568 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetAchieveBrifInfoReq
+ {
+ public static void OnReply(GetAchieveBrifInfoReq oArg, GetAchieveBrifInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.OnResAchieveSurvey(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetAchieveBrifInfoReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs.meta new file mode 100644 index 00000000..8bf650fe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveBrifInfoReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a903496b0e6e71448bc3bc1bc28de262 +timeCreated: 1611404297 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs new file mode 100644 index 00000000..af985d35 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetAchieveClassifyInfoReq
+ {
+ public static void OnReply(GetAchieveClassifyInfoReq oArg, GetAchieveClassifyInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.OnResAchieveType(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetAchieveClassifyInfoReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs.meta new file mode 100644 index 00000000..92f34eee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveClassifyInfoReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: acdb22359eb7da0488581b0bb7f11f04 +timeCreated: 1611404332 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs new file mode 100644 index 00000000..c2b00d81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetAchievePointRewardReq
+ {
+ public static void OnReply(GetAchievePointRewardReq oArg, GetAchievePointRewardRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XDesignationDocument xdesignationDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XDesignationDocument.uuID) as XDesignationDocument;
+ xdesignationDocument.FetchAchieveSurvey();
+ }
+ }
+ }
+
+ public static void OnTimeout(GetAchievePointRewardReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs.meta new file mode 100644 index 00000000..ec5bba33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchievePointRewardReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c4ea7c720a3b0aa48a68cec8bd7c517f +timeCreated: 1611404504 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs new file mode 100644 index 00000000..058e1109 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetAchieveRewardReq
+ {
+ public static void OnReply(GetAchieveRewardReq oArg, GetAchieveRewardRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.OnClaimedAchieve(oArg.achieveID);
+ }
+ }
+
+ public static void OnTimeout(GetAchieveRewardReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs.meta new file mode 100644 index 00000000..83b0b545 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAchieveRewardReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 842d51e08e9cda74fa7e51f70890a467 +timeCreated: 1611404047 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs new file mode 100644 index 00000000..ea8203dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetActivityChest
+ {
+ public static void OnReply(GetActivityChestArg oArg, GetActivityChestRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.ErrorCode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ErrorCode, "fece00");
+ }
+ else
+ {
+ XDailyActivitiesDocument specificDocument = XDocuments.GetSpecificDocument<XDailyActivitiesDocument>(XDailyActivitiesDocument.uuID);
+ specificDocument.OnFetchChest(oArg.ChestIndex, oRes.ChestGetInfo, oRes.ItemId, oRes.ItemCount);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetActivityChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs.meta new file mode 100644 index 00000000..eb531b09 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e2c36c250bdfcd04d8e5af3e042e72a7 +timeCreated: 1611404729 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs new file mode 100644 index 00000000..9710a5c1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetActivityInfo
+ {
+ public static void OnReply(GetActivityInfoArg oArg, GetActivityInfoRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XDailyActivitiesDocument specificDocument = XDocuments.GetSpecificDocument<XDailyActivitiesDocument>(XDailyActivitiesDocument.uuID);
+ specificDocument.GetDailyActivityData(oRes.Record);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetActivityInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs.meta new file mode 100644 index 00000000..9ad472cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetActivityInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0758622a5978e8d42a1d92c4d01d8a0b +timeCreated: 1611402967 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs new file mode 100644 index 00000000..a7d2bb60 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetAncientTimesAward
+ {
+ public static void OnReply(AncientTimesArg oArg, AncientTimesRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ }
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XAncientDocument specificDocument = XDocuments.GetSpecificDocument<XAncientDocument>(XAncientDocument.uuID);
+ specificDocument.ResPoint(oRes.reward);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.error);
+ }
+ }
+ }
+
+ public static void OnTimeout(AncientTimesArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs.meta new file mode 100644 index 00000000..e6b68bda --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetAncientTimesAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 17ae60a4e8ccf7544b6852276fa24e52 +timeCreated: 1611403293 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs new file mode 100644 index 00000000..0a381006 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetClassifyDesignationReq
+ {
+ public static void OnReply(GetClassifyDesignationReq oArg, GetClassifyDesignationRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.SetDesignationListData(oRes.dataList, (int)(oArg.type - 1u));
+ }
+ }
+ }
+
+ public static void OnTimeout(GetClassifyDesignationReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs.meta new file mode 100644 index 00000000..21dec986 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetClassifyDesignationReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ab07933d1f3e18d46a2c02a64c2f324b +timeCreated: 1611404306 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs new file mode 100644 index 00000000..87a23247 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs @@ -0,0 +1,35 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetCompeteDragonInfo
+ {
+ public static void OnReply(GetCompeteDragonInfoArg oArg, GetCompeteDragonInfoRes oRes)
+ {
+ bool flag = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.error);
+ }
+ else
+ {
+ bool flag2 = oArg.opArg == CompeteDragonOpArg.CompeteDragon_GetInfo;
+ if (flag2)
+ {
+ XCompeteDocument.Doc.OnGetCompeteDragonInfo(oRes);
+ }
+ else
+ {
+ XCompeteDocument.Doc.OnFetchReward(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetCompeteDragonInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs.meta new file mode 100644 index 00000000..9d2df3fb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetCompeteDragonInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a30ee77950b942b41a72e2a33381523a +timeCreated: 1611404259 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs new file mode 100644 index 00000000..04df5587 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetDailyTaskInfo
+ {
+ public static void OnReply(GetDailyTaskInfoArg oArg, GetDailyTaskInfoRes oRes)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetDailyTasks(oRes);
+ XActivityDocument.Doc.OnGetDayCount();
+ }
+
+ public static void OnTimeout(GetDailyTaskInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs.meta new file mode 100644 index 00000000..ee835f84 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2effdaa18fe981a4680490c2d4a83f35 +timeCreated: 1611403513 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs new file mode 100644 index 00000000..a41c7a70 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetDailyTaskReward
+ {
+ public static void OnReply(GetDailyTaskRewardArg oArg, GetDailyTaskRewardRes oRes)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetDailyTaskReward(oArg, oRes);
+ }
+
+ public static void OnTimeout(GetDailyTaskRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs.meta new file mode 100644 index 00000000..b3996218 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDailyTaskReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1d92e826e2b40e24e8071c75888a822c +timeCreated: 1611403356 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs new file mode 100644 index 00000000..65e6553a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetDesignationReq
+ {
+ public static void OnReply(GetDesignationReq oArg, GetDesignationRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ specificDocument.MaxAbilityDesNum = oRes.maxPPT;
+ specificDocument.SetDesignationInfo(1u, oRes.coverDesignationID, oRes.name);
+ specificDocument.SetDesignationInfo(2u, oRes.abilityDesignationID, oRes.name);
+ specificDocument.SetTabRedPoint(oRes.dataList);
+ }
+ }
+
+ public static void OnTimeout(GetDesignationReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs.meta new file mode 100644 index 00000000..6a25a4d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDesignationReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d2625d34f53d71846999185fd24b1e86 +timeCreated: 1611404595 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs new file mode 100644 index 00000000..131bb130 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs @@ -0,0 +1,40 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetDragonGuildTaskChest
+ {
+ public static void OnReply(GetDragonGuildTaskChestArg oArg, GetDragonGuildTaskChestRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XDragonGuildTaskDocument specificDocument = XDocuments.GetSpecificDocument<XDragonGuildTaskDocument>(XDragonGuildTaskDocument.uuID);
+ bool flag2 = oArg.type == DragonGuildTaskType.TASK_ACHIVEMENT;
+ if (flag2)
+ {
+ specificDocument.OnFetchAchieve(oArg.taskid);
+ }
+ else
+ {
+ bool flag3 = oArg.type == DragonGuildTaskType.TASK_NORMAL;
+ if (flag3)
+ {
+ specificDocument.OnFetchTask(oArg.taskid);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDragonGuildTaskChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs.meta new file mode 100644 index 00000000..ed4968b2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonGuildTaskChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5535958b89724354989c31d1870198e9 +timeCreated: 1611403737 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs new file mode 100644 index 00000000..bae9c1a0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs @@ -0,0 +1,34 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetDragonTopInfo
+ {
+ public static void OnReply(GetDragonTopInfoArg oArg, GetDragonTopInfoRes oRes)
+ {
+ bool flag = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonNestDocument specificDocument = XDocuments.GetSpecificDocument<XDragonNestDocument>(XDragonNestDocument.uuID);
+ bool flag2 = oRes.errorCode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ specificDocument.SetDragonNestInfo(oRes.dragonInfo);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDragonTopInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs.meta new file mode 100644 index 00000000..982129d1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetDragonTopInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c82cc87ea942a3b4e91b8931d2ea6ecd +timeCreated: 1611404533 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs new file mode 100644 index 00000000..7dab702c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetEnhanceAttr
+ {
+ public static void OnReply(GetEnhanceAttrArg oArg, GetEnhanceAttrRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XEnhanceDocument.Doc.OnReqEnhanceAttrBack(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetEnhanceAttrArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs.meta new file mode 100644 index 00000000..3fcaa5d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cf92b0370a22afd43826dda7ba496c5e +timeCreated: 1611404581 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs new file mode 100644 index 00000000..0e91c0d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetFirstPassReward
+ {
+ public static void OnReply(GetFirstPassRewardArg oArg, GetFirstPassRewardRes oRes)
+ {
+ FirstPassDocument.Doc.OnGetFirstPassReward(oRes);
+ }
+
+ public static void OnTimeout(GetFirstPassRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs.meta new file mode 100644 index 00000000..3d205d3c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFirstPassReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d297c106fe2165c429cafaad12ec33b9 +timeCreated: 1611404596 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs new file mode 100644 index 00000000..9f615eca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetFlower
+ {
+ public static void OnReply(GetFlowerArg oArg, GetFlowerRes oRes)
+ {
+ bool flag = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.OnGetFlower(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetFlowerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs.meta new file mode 100644 index 00000000..feb3f71e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 377224247ad8c4d45bed1458077cf3d6 +timeCreated: 1611403565 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs new file mode 100644 index 00000000..dfd26ebb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetFlowerLeftTime
+ {
+ public static void OnReply(GetFlowerLeftTimeArg oArg, GetFlowerLeftTimeRes oRes)
+ {
+ bool flag = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
+ specificDocument.OnGetFlowerLeftTime(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetFlowerLeftTimeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs.meta new file mode 100644 index 00000000..ec01afeb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerLeftTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcddf3d9035cfbd4b8886f28513e3339 +timeCreated: 1611404936 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs new file mode 100644 index 00000000..7f304510 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetFlowerReward
+ {
+ public static void OnReply(GetFlowerRewardArg oArg, GetFlowerRewardRes oRes)
+ {
+ bool flag = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFlowerRankDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument.OnGetAward(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetFlowerRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs.meta new file mode 100644 index 00000000..539a57ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 89a4bbd637ff3794e8b2a08adb0d1edd +timeCreated: 1611404088 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs new file mode 100644 index 00000000..ed6eb59f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetFlowerRewardList
+ {
+ public static void OnReply(GetFlowerRewardListArg oArg, GetFlowerRewardListRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetFlowerRewardListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs.meta new file mode 100644 index 00000000..fa03a73d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetFlowerRewardList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cfc32360b7c3b2746b9b7785bccace5c +timeCreated: 1611404582 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs new file mode 100644 index 00000000..09c91c34 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs @@ -0,0 +1,34 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGoddessTrialRewards
+ {
+ public static void OnReply(GetGoddessTrialRewardsArg oArg, GetGoddessTrialRewardsRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.SetGoddessRewardsCanGetTimes(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGoddessTrialRewardsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs.meta new file mode 100644 index 00000000..f9ed6f00 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGoddessTrialRewards.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ed3b45d4d3788ec41901fda367e50bd4 +timeCreated: 1611404791 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs new file mode 100644 index 00000000..023780c8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildBonusDetailInfo
+ {
+ public static void OnReply(GetGuildBonusDetailInfoArg oArg, GetGuildBonusDetailInfoResult oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.OnGetDetail(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildBonusDetailInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs.meta new file mode 100644 index 00000000..6084ba6f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusDetailInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 27a8fa7adf41fea4f90ebc9edf8c4ed2 +timeCreated: 1611403472 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs new file mode 100644 index 00000000..f1ec16f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildBonusLeft
+ {
+ public static void OnReply(GetGuildBonusLeftArg oArg, GetGuildBonusLeftRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.ReceiveGuildBonusLeft(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildBonusLeftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs.meta new file mode 100644 index 00000000..6fe8065d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusLeft.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 23aef5f0ce66d1d42ab56459b4b76b81 +timeCreated: 1611403456 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs new file mode 100644 index 00000000..529aae4b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildBonusList
+ {
+ public static void OnReply(GetGuildBonusListArg oArg, GetGuildBonusListResult oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.OnGetList(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildBonusListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs.meta new file mode 100644 index 00000000..029c5d1a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b01bb0446d2e15044b0abdc4be8b298d +timeCreated: 1611404348 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs new file mode 100644 index 00000000..3c0bfb13 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildBonusReward
+ {
+ public static void OnReply(GetGuildBonusRewardArg oArg, GetGuildBonusRewardResult oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.OnFetch(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildBonusRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs.meta new file mode 100644 index 00000000..422df965 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildBonusReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 11e3ee207505c46448652dcbf20af1e6 +timeCreated: 1611403240 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs new file mode 100644 index 00000000..b64db461 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildCamPartyRandItem
+ {
+ public static void OnReply(GetGuildCamPartyRandItemArg oArg, GetGuildCamPartyRandItemRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildCamPartyRandItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs.meta new file mode 100644 index 00000000..49dfe543 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCamPartyRandItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b36fe3a507fca744297fedd73a24b783 +timeCreated: 1611404389 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs new file mode 100644 index 00000000..cd24beb6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildCampPartyExchangeInfo
+ {
+ public static void OnReply(GetGuildCampPartyExchangeInfoArg oArg, GetGuildCampPartyExchangeInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XRequestDocument specificDocument = XDocuments.GetSpecificDocument<XRequestDocument>(XRequestDocument.uuID);
+ specificDocument.OnRequestListGet(oRes.infos);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildCampPartyExchangeInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs.meta new file mode 100644 index 00000000..3c826941 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7c729fb9a59ec8f4ea7b3d00c79dd81c +timeCreated: 1611403997 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs new file mode 100644 index 00000000..bae99cdc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs @@ -0,0 +1,44 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildCampPartyReward
+ {
+ public static void OnReply(GetGuildCampPartyRewardArg oArg, GetGuildCampPartyRewardRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ bool flag3 = DlgBase<GuildCollectRewardDlg, GuildCollectRewardBehaviour>.singleton.IsVisible();
+ if (flag3)
+ {
+ XGuildCollectDocument specificDocument = XDocuments.GetSpecificDocument<XGuildCollectDocument>(XGuildCollectDocument.uuID);
+ specificDocument.QueryGetRewardCount();
+ DlgBase<GuildCollectRewardDlg, GuildCollectRewardBehaviour>.singleton.Refresh();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildCampPartyRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs.meta new file mode 100644 index 00000000..99bb5b50 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56a8d64372fb81742b59e57111492ec1 +timeCreated: 1611403745 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs new file mode 100644 index 00000000..e03fc222 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildCheckinBox
+ {
+ public static void OnReply(GetGuildCheckinBoxArg oArg, GetGuildCheckinBoxRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSignInDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument.OnFetchBox(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildCheckinBoxArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs.meta new file mode 100644 index 00000000..dd612499 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCheckinBox.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 75e9db13d3a64554bbe566cb2ddf5a7d +timeCreated: 1611403948 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs new file mode 100644 index 00000000..618fe1d5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildPartyReceiveInfo
+ {
+ public static void OnReply(GetGuildPartyReceiveInfoArg oArg, GetGuildPartyReceiveInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XGuildCollectDocument specificDocument = XDocuments.GetSpecificDocument<XGuildCollectDocument>(XGuildCollectDocument.uuID);
+ specificDocument.OnUseCountGet(oRes.receives);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildPartyReceiveInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs.meta new file mode 100644 index 00000000..3417187b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildPartyReceiveInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e6584bd034bfdd341843d0c4e9874329 +timeCreated: 1611404746 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs new file mode 100644 index 00000000..35c92316 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildQADataReq
+ {
+ public static void OnReply(GetGuildQADataReq oArg, GetGuildQADataRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XGuildRelaxGameDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRelaxGameDocument>(XGuildRelaxGameDocument.uuID);
+ specificDocument.SetGuildVoiceInfo(oRes.status, oRes.time);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildQADataReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs.meta new file mode 100644 index 00000000..b44f9e57 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildQADataReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1a3710509cec72548b59b7890342071a +timeCreated: 1611403308 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs new file mode 100644 index 00000000..f30e2a2e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetHeroBattleGameRecord
+ {
+ public static void OnReply(GetHeroBattleGameRecordArg oArg, GetHeroBattleGameRecordRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetBattleRecord(oRes.games);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetHeroBattleGameRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs.meta new file mode 100644 index 00000000..ad43d7e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleGameRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3c99d16dc81ad6a4dacc82aa5de62871 +timeCreated: 1611403602 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs new file mode 100644 index 00000000..59745026 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetHeroBattleInfo
+ {
+ public static void OnReply(GetHeroBattleInfoArg oArg, GetHeroBattleInfoRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.SetHeroBattleInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetHeroBattleInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs.meta new file mode 100644 index 00000000..60d66b09 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 965883668642ff34f84647cf8e56216a +timeCreated: 1611404184 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs new file mode 100644 index 00000000..40d4c644 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetHeroBattleWeekReward
+ {
+ public static void OnReply(GetHeroBattleWeekRewardArg oArg, GetHeroBattleWeekRewardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.OnGetRewardSuccess(oRes.getnextweekprize, oRes.weekprize);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetHeroBattleWeekRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs.meta new file mode 100644 index 00000000..95c385a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHeroBattleWeekReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f8bd9b38cf18dbe498f1d754fde04549 +timeCreated: 1611404895 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs new file mode 100644 index 00000000..508f2da8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetHolidayStageInfo
+ {
+ public static void OnReply(GetHolidayStageInfoArg oArg, GetHolidayStageInfoRes oRes)
+ {
+ XOperatingActivityDocument specificDocument = XDocuments.GetSpecificDocument<XOperatingActivityDocument>(XOperatingActivityDocument.uuID);
+ specificDocument.SetHolidayData(oRes);
+ }
+
+ public static void OnTimeout(GetHolidayStageInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs.meta new file mode 100644 index 00000000..09ad78dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetHolidayStageInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5a2d1b23a4a2b142b4a7e5f7951757b +timeCreated: 1611404628 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs new file mode 100644 index 00000000..a9aae512 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetJadeSealAllInfo
+ {
+ public static void OnReply(GetJadeSealAllInfoArg oArg, GetJadeSealAllInfoRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetJadeSealAllInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs.meta new file mode 100644 index 00000000..2b629584 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetJadeSealAllInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 69b2b74fc89955f4f923e45b4a9a0cd0 +timeCreated: 1611403886 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs new file mode 100644 index 00000000..7477805d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetLevelSealInfo
+ {
+ public static void OnReply(GetLevelSealInfoArg oArg, GetLevelSealInfoRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XLevelSealDocument specificDocument = XDocuments.GetSpecificDocument<XLevelSealDocument>(XLevelSealDocument.uuID);
+ specificDocument.SetShowInfo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLevelSealInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs.meta new file mode 100644 index 00000000..597b0ab8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 998650e4c7b3b484d84ff828c535ffc1 +timeCreated: 1611404196 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs new file mode 100644 index 00000000..872de25b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetLevelSealSelfGift
+ {
+ public static void OnReply(GetLevelSealSealGiftArg oArg, GetLevelSealSelfGiftRes oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errcode, "fece00");
+ }
+ else
+ {
+ XLevelSealDocument specificDocument = XDocuments.GetSpecificDocument<XLevelSealDocument>(XLevelSealDocument.uuID);
+ specificDocument.CurrentSelfCollectIndex++;
+ specificDocument.RefreshSelfGift();
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLevelSealSealGiftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs.meta new file mode 100644 index 00000000..1fc1ad80 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLevelSealSelfGift.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7ee8546813be24142aec029794f5bf5b +timeCreated: 1611404007 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs new file mode 100644 index 00000000..f2e09246 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetLuckyActivityInfo
+ {
+ public static void OnReply(GetLuckyActivityInfoArg oArg, GetLuckyActivityInfoRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XOperatingActivityDocument specificDocument = XDocuments.GetSpecificDocument<XOperatingActivityDocument>(XOperatingActivityDocument.uuID);
+ specificDocument.OnReceiveGetLuckyTurntableData(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetLuckyActivityInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs.meta new file mode 100644 index 00000000..05d16cbb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetLuckyActivityInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e39b28bfb6a08294cbd10bed2f6572e3 +timeCreated: 1611404734 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs new file mode 100644 index 00000000..a6e005b7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetMyRiftInfo
+ {
+ public static void OnReply(GetMyRiftInfoArg oArg, GetMyRiftInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XRiftDocument specificDocument = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ specificDocument.ResRiftInfo(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMyRiftInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs.meta new file mode 100644 index 00000000..e6ed2b92 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyRiftInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b6d4555dc0b3acd4284e3a909a9944c6 +timeCreated: 1611404400 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs new file mode 100644 index 00000000..cbfa1d7d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetMyWatchRecord
+ {
+ public static void OnReply(GetMyWatchRecordArg oArg, GetMyWatchRecordRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XSpectateDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateDocument>(XSpectateDocument.uuID);
+ specificDocument.SetMyLiveInfo(oRes.myWatchedNum, oRes.myCommendedNum, oRes.myMostWatchedRecord, oRes.myMostCommendedRecord, oRes.myRecentRecords, oRes.visibleSetting);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMyWatchRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs.meta new file mode 100644 index 00000000..e5c6c98b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetMyWatchRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 308000aa88af5d647aa962e53e9d81d3 +timeCreated: 1611403521 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs new file mode 100644 index 00000000..3a75697e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetNewZoneBenefit
+ {
+ public static void OnReply(GetNewZoneBenefitArg oArg, GetNewZoneBenefitRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XBackFlowDocument.Doc.OnGetNewZoneBenefit(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetNewZoneBenefitArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs.meta new file mode 100644 index 00000000..9c0f06d6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNewZoneBenefit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f6880fea48a2060418fffbc0c680693e +timeCreated: 1611404882 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs new file mode 100644 index 00000000..85bd8004 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetNextDayReward
+ {
+ public static void OnReply(GetNextDayRewardArg oArg, GetNextDayRewardRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetNextDayRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs.meta new file mode 100644 index 00000000..9482c0ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetNextDayReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d21a2ac66df6923418ed7892c78ac532 +timeCreated: 1611404594 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs new file mode 100644 index 00000000..e573a926 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetOnlineReward
+ {
+ public static void OnReply(GetOnlineRewardArg oArg, GetOnlineRewardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XOnlineRewardDocument specificDocument = XDocuments.GetSpecificDocument<XOnlineRewardDocument>(XOnlineRewardDocument.uuID);
+ specificDocument.QueryStatus();
+ }
+ }
+ }
+
+ public static void OnTimeout(GetOnlineRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs.meta new file mode 100644 index 00000000..c6b3d9ad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetOnlineReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8917a8b1dcc827749a5c41c28387363c +timeCreated: 1611404087 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs new file mode 100644 index 00000000..bcb94fed --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs @@ -0,0 +1,20 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetPayAllInfo
+ {
+ public static void OnReply(GetPayAllInfoArg oArg, GetPayAllInfoRes oRes)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetPayAllInfo(oArg, oRes);
+ XRechargeDocument specificDocument2 = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument2.OnGetPayAllInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(GetPayAllInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs.meta new file mode 100644 index 00000000..ecb7dadc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayAllInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 21da7f5412eb558448ca437de3cbc71e +timeCreated: 1611403416 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs new file mode 100644 index 00000000..8bb83928 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetPayReward
+ {
+ public static void OnReply(GetPayRewardArg oArg, GetPayRewardRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetLittleGiftBox(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetPayRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs.meta new file mode 100644 index 00000000..65284607 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPayReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5052e3ff0271eb941abf1cccb24cc446 +timeCreated: 1611403703 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs new file mode 100644 index 00000000..8aa9b993 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetPlatShareAward
+ {
+ public static void OnReply(GetPlatShareAwardArg oArg, GetPlatShareAwardRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XAchievementDocument specificDocument = XDocuments.GetSpecificDocument<XAchievementDocument>(XAchievementDocument.uuID);
+ specificDocument.OnGetPlatShareAward();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GetPlatShareAwardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs.meta new file mode 100644 index 00000000..8f16b362 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatShareAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6f22903a3a631074c989facd26344a59 +timeCreated: 1611403908 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs new file mode 100644 index 00000000..b7b7eaad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetPlatformShareChest
+ {
+ public static void OnReply(GetPlatformShareChestArg oArg, GetPlatformShareChestRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ DlgBase<RandomGiftView, RandomGiftBehaviour>.singleton.ReadyShareGift(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetPlatformShareChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs.meta new file mode 100644 index 00000000..e300c506 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetPlatformShareChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 87bbb8b9548e7be4388399072cc615c0 +timeCreated: 1611404081 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs new file mode 100644 index 00000000..224ce35b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetRiskMapInfos
+ {
+ public static void OnReply(GetRiskMapInfosArg oArg, GetRiskMapInfosRes oRes)
+ {
+ XSuperRiskDocument.Doc.OnGetMapDynamicInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(GetRiskMapInfosArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs.meta new file mode 100644 index 00000000..48fddfbe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetRiskMapInfos.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: adbf2a5e791ee234b8e2a67c7150eae2 +timeCreated: 1611404335 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs new file mode 100644 index 00000000..548103fe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetSpActivityBigPrize
+ {
+ public static void OnReply(GetSpActivityBigPrizeArg oArg, GetSpActivityBigPrizeRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XCarnivalDocument specificDocument = XDocuments.GetSpecificDocument<XCarnivalDocument>(XCarnivalDocument.uuID);
+ specificDocument.RespExchange();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ }
+
+ public static void OnTimeout(GetSpActivityBigPrizeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs.meta new file mode 100644 index 00000000..d7140304 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityBigPrize.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bbe64584dfe28454ba4a70a250863dc4 +timeCreated: 1611404443 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs new file mode 100644 index 00000000..baf5492a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs @@ -0,0 +1,58 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetSpActivityReward
+ {
+ public static void OnReply(GetSpActivityRewardArg oArg, GetSpActivityRewardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ int num = XFastEnumIntEqualityComparer<ActivityType>.ToInt(ActivityType.BigPrize);
+ bool flag2 = oArg.actid == 1u;
+ if (flag2)
+ {
+ XCarnivalDocument specificDocument = XDocuments.GetSpecificDocument<XCarnivalDocument>(XCarnivalDocument.uuID);
+ specificDocument.RespClaim(oArg.taskid);
+ }
+ else
+ {
+ bool flag3 = oArg.actid == (uint)num;
+ if (flag3)
+ {
+ XAncientDocument specificDocument2 = XDocuments.GetSpecificDocument<XAncientDocument>(XAncientDocument.uuID);
+ specificDocument2.ResClaim();
+ }
+ else
+ {
+ bool flag4 = oArg.actid == WeekEndNestDocument.Doc.m_actId;
+ if (flag4)
+ {
+ WeekEndNestDocument.Doc.OnGetReward(oRes);
+ }
+ else
+ {
+ bool flag5 = oArg.actid == 5u;
+ if (flag5)
+ {
+ XBackFlowDocument.Doc.OnGetReward(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ }
+
+ public static void OnTimeout(GetSpActivityRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs.meta new file mode 100644 index 00000000..1aa70c79 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSpActivityReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4cac5e57f81c9e54d9b812deae4dc0e4 +timeCreated: 1611403692 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs new file mode 100644 index 00000000..eac5bd02 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetSweepTowerReward
+ {
+ public static void OnReply(GetSweepTowerRewardArg oArg, GetSweepTowerRewardRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.GetSweepSingleTowerRewardRes();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+
+ public static void OnTimeout(GetSweepTowerRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs.meta new file mode 100644 index 00000000..b7a37e9d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSweepTowerReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4571f1b103f121d43bbebb2463102916 +timeCreated: 1611403647 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs new file mode 100644 index 00000000..3fa17c9c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetSystemReward
+ {
+ public static void OnReply(GetSystemRewardArg oArg, GetSystemRewardRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSystemRewardDocument specificDocument = XDocuments.GetSpecificDocument<XSystemRewardDocument>(XSystemRewardDocument.uuID);
+ specificDocument.OnFetchReward(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetSystemRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs.meta new file mode 100644 index 00000000..6aa13bfd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetSystemReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 01152f63749740f40a488eb4b64f689c +timeCreated: 1611402952 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs new file mode 100644 index 00000000..827dc293 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetTowerActivityTop
+ {
+ public static void OnReply(GetTowerActivityTopArg oArg, GetTowerActivityTopRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (!flag)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.GetSingleTowerActivityTopRes(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetTowerActivityTopArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs.meta new file mode 100644 index 00000000..71f73455 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerActivityTop.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9a06f93164c09a746bb70e5dba53ca8b +timeCreated: 1611404198 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs new file mode 100644 index 00000000..829b9523 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetTowerFirstPassReward
+ {
+ public static void OnReply(GetTowerFirstPassRewardArg oArg, GetTowerFirstPassRewardRes oRes)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.GetFirstPassRewardRes(oRes.error);
+ }
+
+ public static void OnTimeout(GetTowerFirstPassRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs.meta new file mode 100644 index 00000000..53b23fd3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetTowerFirstPassReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f039d2660c1b3094f972a77ca8bb49a8 +timeCreated: 1611404830 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs new file mode 100644 index 00000000..c74e7525 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetWatchInfoByID
+ {
+ public static void OnReply(GetWatchInfoByIDArg oArg, GetWatchInfoByIDRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XSpectateDocument specificDocument = XDocuments.GetSpecificDocument<XSpectateDocument>(XSpectateDocument.uuID);
+ specificDocument.SetSpectateInfo(oRes.curTime, oRes.liveRecords);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetWatchInfoByIDArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs.meta new file mode 100644 index 00000000..3793902c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWatchInfoByID.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7403835bdf78de4d97152eafb5c66cf +timeCreated: 1611404401 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs new file mode 100644 index 00000000..24f9b951 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetWeeklyTaskInfo
+ {
+ public static void OnReply(GetWeeklyTaskInfoArg oArg, GetWeeklyTaskInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XGuildWeeklyBountyDocument.Doc.OnGetWeeklyTaskInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+
+ public static void OnTimeout(GetWeeklyTaskInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs.meta new file mode 100644 index 00000000..53607bfe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 938097dba3c69c7479322961fe90d893 +timeCreated: 1611404151 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs new file mode 100644 index 00000000..114c423a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetWeeklyTaskReward
+ {
+ public static void OnReply(GetWeeklyTaskRewardArg oArg, GetWeeklyTaskRewardRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XGuildWeeklyBountyDocument.Doc.OnGetWeeklyTaskReward(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+
+ public static void OnTimeout(GetWeeklyTaskRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs.meta new file mode 100644 index 00000000..fd5a18dd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetWeeklyTaskReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56dd13b8ef312db46b5012bea36a9dee +timeCreated: 1611403746 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs new file mode 100644 index 00000000..7a15e3df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GmfReadyReq
+ {
+ public static void OnReply(GmfReadyArg oArg, GmfReadyRes oRes)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnReadyReq(oRes);
+ }
+
+ public static void OnTimeout(GmfReadyArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs.meta new file mode 100644 index 00000000..d39f8d32 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f0252b7107320b4408b28e0ddbcf8cf9 +timeCreated: 1611404829 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs new file mode 100644 index 00000000..ee6654e7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GoldClick
+ {
+ public static void OnReply(GoldClickArg oArg, GoldClickRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetMoneyTreeInfo(oArg.type, oArg.count, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+
+ public static void OnTimeout(GoldClickArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs.meta new file mode 100644 index 00000000..7079e931 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GoldClick.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d799be20feb059040944390e09daa3a6 +timeCreated: 1611404636 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs new file mode 100644 index 00000000..608189fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GrowthFundAward
+ {
+ public static void OnReply(GrowthFundAwardArg oArg, GrowthFundAwardRes oRes)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetGrowthFundAward(oArg, oRes);
+ }
+
+ public static void OnTimeout(GrowthFundAwardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs.meta new file mode 100644 index 00000000..e93d0803 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GrowthFundAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1990393e549b83f45a56e4cc6d290b79 +timeCreated: 1611403302 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs new file mode 100644 index 00000000..a6479393 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GuildCampExchangeOperate
+ {
+ public static void OnReply(GuildCampExchangeOperateArg oArg, GuildCampExchangeOperateRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildCampExchangeOperateArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs.meta new file mode 100644 index 00000000..3d619951 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampExchangeOperate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f7c224564bf837148b4f37caa211dffc +timeCreated: 1611404889 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs new file mode 100644 index 00000000..3c43e9e0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GuildCampPartyReqExchange
+ {
+ public static void OnReply(GuildCampPartyReqExchangeReq oArg, GuildCampPartyReqExchangeRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SendExchangeSuccess"), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildCampPartyReqExchangeReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs.meta new file mode 100644 index 00000000..f322ee25 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCampPartyReqExchange.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0e6d27348387df040a4bbd43a10db162 +timeCreated: 1611403203 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs new file mode 100644 index 00000000..182cfd78 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GuildCheckInBonusInfo
+ {
+ public static void OnReply(GuildCheckInBonusInfoArg oArg, GuildCheckInBonusInfoRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.OnGuildCheckInBonusInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GuildCheckInBonusInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs.meta new file mode 100644 index 00000000..2aa4bf0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildCheckInBonusInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b4b3f4c823ba3145ad51c5743e88917 +timeCreated: 1611403891 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs new file mode 100644 index 00000000..2382c83c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GuildGoblinInfo
+ {
+ public static void OnReply(GuildGoblinInfoArg oArg, GuildGoblinInfoRes oRes)
+ {
+ bool flag = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorCode == ErrorCode.ERR_SUCCESS;
+ if (!flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorCode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildGoblinInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs.meta new file mode 100644 index 00000000..150d3841 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildGoblinInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: afbd393831280ee4d9f1cac094d109e6 +timeCreated: 1611404346 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs new file mode 100644 index 00000000..b35e5a4c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GuildPartySummonSpirit
+ {
+ public static void OnReply(GuildPartySummonSpiritArg oArg, GuildPartySummonSpiritRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("GuildCollectSummonSuccess"), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildPartySummonSpiritArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs.meta new file mode 100644 index 00000000..d829d9b1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GuildPartySummonSpirit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 53f858f60ff01bc449f23bce6957680c +timeCreated: 1611403713 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs new file mode 100644 index 00000000..8f67fc98 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_HorseReConnect
+ {
+ public static void OnReply(HorseReConnectArg oArg, HorseReConnectRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XRaceDocument specificDocument = XDocuments.GetSpecificDocument<XRaceDocument>(XRaceDocument.uuID);
+ specificDocument.RefreshAllInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(HorseReConnectArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs.meta new file mode 100644 index 00000000..0cdcec25 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_HorseReConnect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ef68dd4c205a1114c84ec3ff0bfaecdd +timeCreated: 1611404803 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs new file mode 100644 index 00000000..45b08f47 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_IdentifyEmblem
+ {
+ public static void OnReply(IdentifyEmblemArg oArg, IdentifyEmblemRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XEmblemDocument specificDocument = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ specificDocument.ShowIdentifySucEffect();
+ specificDocument.RefreshTips(oArg.uid);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(IdentifyEmblemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs.meta new file mode 100644 index 00000000..95307d57 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_IdentifyEmblem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e6d62eb355da35543b7d7a0643986594 +timeCreated: 1611404747 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs new file mode 100644 index 00000000..cdca949e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_InlayAllJade
+ {
+ public static void OnReply(InlayAllJadeArg oArg, InlayAllJadeRes oRes)
+ {
+ }
+
+ public static void OnTimeout(InlayAllJadeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs.meta new file mode 100644 index 00000000..8fc8cdd9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InlayAllJade.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: def4800760b1c6041be2c99b75986b1c +timeCreated: 1611404690 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs new file mode 100644 index 00000000..a95c8493 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_InspireReq
+ {
+ public static void OnReply(InspireArg oArg, InspireRes oRes)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnInspireReq(oRes);
+ }
+
+ public static void OnTimeout(InspireArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs.meta new file mode 100644 index 00000000..c2aba026 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_InspireReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e9ecbe397652c764093356393a947268 +timeCreated: 1611404758 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs new file mode 100644 index 00000000..56cee2ee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ItemBuffOp
+ {
+ public static void OnReply(ItemBuffOpArg oArg, ItemBuffOpRes oRes)
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetPersonalBuffOperationResult(oArg, oRes);
+ }
+
+ public static void OnTimeout(ItemBuffOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs.meta new file mode 100644 index 00000000..9269df33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemBuffOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ae03debb065e0964fae898994d30ff64 +timeCreated: 1611404337 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs new file mode 100644 index 00000000..86ae134a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ItemCompose
+ {
+ public static void OnReply(ItemComposeArg oArg, ItemComposeRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ }
+ }
+
+ public static void OnTimeout(ItemComposeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs.meta new file mode 100644 index 00000000..fff9c804 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemCompose.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 53eb6f7ed3b170c4dba20a33bb6a43c2 +timeCreated: 1611403713 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs new file mode 100644 index 00000000..9c580187 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ItemFindBack
+ {
+ public static void OnReply(ItemFindBackArg oArg, ItemFindBackRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetRewardFindBack(oArg);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+
+ public static void OnTimeout(ItemFindBackArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs.meta new file mode 100644 index 00000000..6bd4cdc2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBack.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9606002a07c1cd941a973940e5fb67e4 +timeCreated: 1611404183 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs new file mode 100644 index 00000000..3eaab9bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ItemFindBackInfo
+ {
+ public static void OnReply(ItemFindBackInfoArg oArg, ItemFindBackInfoRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetRewardInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+
+ public static void OnTimeout(ItemFindBackInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs.meta new file mode 100644 index 00000000..21a3801c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemFindBackInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b6d21ce491e589145ae0d6065ee602b6 +timeCreated: 1611404400 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs new file mode 100644 index 00000000..5ee36af9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ItemSell
+ {
+ public static void OnReply(ItemSellArg oArg, ItemSellRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("SELL_SUCCESS"), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ItemSellArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs.meta new file mode 100644 index 00000000..48fb8a49 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ItemSell.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8c1a5aba99fc8a64a8e2716e81adbc42 +timeCreated: 1611404098 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs new file mode 100644 index 00000000..3ebbc482 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_JadeCompose
+ {
+ public static void OnReply(JadeComposeArg oArg, JadeComposeRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XJadeDocument xjadeDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XJadeDocument.uuID) as XJadeDocument;
+ xjadeDocument.OnComposeJade(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(JadeComposeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs.meta new file mode 100644 index 00000000..72e20ad0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeCompose.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fb3f0b50d65354343abbace3b468dad6 +timeCreated: 1611404930 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs new file mode 100644 index 00000000..a1aa649c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_JadeComposeNew
+ {
+ public static void OnReply(JadeComposeNewArg oArg, JadeComposeNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(JadeComposeNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs.meta new file mode 100644 index 00000000..4067a132 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeComposeNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b34a01accb15fd24898db31f221bf558 +timeCreated: 1611404388 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs new file mode 100644 index 00000000..1d411b89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_JadeOperation
+ {
+ public static void OnReply(JadeOperationArg oArg, JadeOperationRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XJadeDocument specificDocument = XDocuments.GetSpecificDocument<XJadeDocument>(XJadeDocument.uuID);
+ specificDocument.OnOperateJade(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(JadeOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs.meta new file mode 100644 index 00000000..2392d67e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6502e74134593a7429d0fe4353ac4d8b +timeCreated: 1611403849 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs new file mode 100644 index 00000000..fe905efd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_JadeOperationNew
+ {
+ public static void OnReply(JadeOperationNewArg oArg, JadeOperationNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(JadeOperationNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs.meta new file mode 100644 index 00000000..ba513455 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JadeOperationNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4c50c02d211e90a44a6e7759309d20fc +timeCreated: 1611403690 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs new file mode 100644 index 00000000..a22df869 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_JustDance
+ {
+ public static void OnReply(JustDanceArg oArg, JustDanceRes oRes)
+ {
+ XDanceDocument specificDocument = XDocuments.GetSpecificDocument<XDanceDocument>(XDanceDocument.uuID);
+ specificDocument.OnJustDance(oArg, oRes);
+ }
+
+ public static void OnTimeout(JustDanceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs.meta new file mode 100644 index 00000000..a80ea9d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_JustDance.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 54f68c53e02256647b2358fa7868fd65 +timeCreated: 1611403736 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs new file mode 100644 index 00000000..3ff1304b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LeagueBattleReadyReq
+ {
+ public static void OnReply(LeagueBattleReadyReqArg oArg, LeagueBattleReadyReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LeagueBattleReadyReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs.meta new file mode 100644 index 00000000..af8df3bc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LeagueBattleReadyReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8d3b5800034c3114687614b5325889ec +timeCreated: 1611404104 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs new file mode 100644 index 00000000..649dc783 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LearnGuildSkill
+ {
+ public static void OnReply(LearnGuildSkillAgr oArg, LearnGuildSkillRes oRes)
+ {
+ XGuildSkillDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSkillDocument>(XGuildSkillDocument.uuID);
+ specificDocument.ReceiveLearnGuildSKill(oArg, oRes);
+ }
+
+ public static void OnTimeout(LearnGuildSkillAgr oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs.meta new file mode 100644 index 00000000..40496c33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LearnGuildSkill.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: df69effdacf967242ab52d25f2a30a89 +timeCreated: 1611404692 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs new file mode 100644 index 00000000..9ab18207 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LevelSealButtonStatus
+ {
+ public static void OnReply(LevelSealOverExpArg oArg, LevelSealOverExpRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XLevelSealDocument specificDocument = XDocuments.GetSpecificDocument<XLevelSealDocument>(XLevelSealDocument.uuID);
+ specificDocument.LevelSealButtonClick(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(LevelSealOverExpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs.meta new file mode 100644 index 00000000..0af71694 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealButtonStatus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f3fa0a220599ca84ba483015284ec585 +timeCreated: 1611404850 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs new file mode 100644 index 00000000..f5aff1a7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs @@ -0,0 +1,23 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LevelSealExchange
+ {
+ public static void OnReply(LevelSealExchangeArg oArg, LevelSealExchangeRes oRes)
+ {
+ bool flag = oRes.errcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errcode, "fece00");
+ }
+ }
+
+ public static void OnTimeout(LevelSealExchangeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs.meta new file mode 100644 index 00000000..f02a575b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelSealExchange.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 095b31e5b3c507b4ba5b0e879ad1b60f +timeCreated: 1611403155 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs new file mode 100644 index 00000000..74990169 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LevelUpSlotAttr
+ {
+ public static void OnReply(LevelUpSlotAttrArg oArg, LevelUpSlotAttrRes oRes)
+ {
+ }
+
+ public static void OnTimeout(LevelUpSlotAttrArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs.meta new file mode 100644 index 00000000..e59c3502 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LevelUpSlotAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 877dae8e83bb4d64f86a9608aef7c974 +timeCreated: 1611404079 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs new file mode 100644 index 00000000..ad0201f0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_LotteryDraw
+ {
+ public static void OnReply(LotteryDrawReq oArg, LotteryDrawRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XOperatingActivityDocument specificDocument = XDocuments.GetSpecificDocument<XOperatingActivityDocument>(XOperatingActivityDocument.uuID);
+ specificDocument.OnReceiveUseLuckyTurntable(oRes);
+ }
+ }
+
+ public static void OnTimeout(LotteryDrawReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs.meta new file mode 100644 index 00000000..3327f9a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_LotteryDraw.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4c5fc471c79d15b4c85163337419354d +timeCreated: 1611403691 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs new file mode 100644 index 00000000..fbb0e7f7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_MobaSignaling
+ {
+ public static void OnReply(MobaSignalingArg oArg, MobaSignalingRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(MobaSignalingArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs.meta new file mode 100644 index 00000000..91b6f459 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MobaSignaling.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a4bb784291776bb488ab22f4656b85b6 +timeCreated: 1611404283 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs new file mode 100644 index 00000000..7af2ed59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs @@ -0,0 +1,29 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_MulActivityReq
+ {
+ public static void OnReply(MulActivityArg oArg, MulActivityRes oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XActivityDocument.Doc.SetMulActivityInfo(oRes.actinfo);
+ }
+ }
+
+ public static void OnTimeout(MulActivityArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs.meta new file mode 100644 index 00000000..a8dac868 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_MulActivityReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f8b9a68bdca4fb540ad5c6878c4281f4 +timeCreated: 1611404895 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs new file mode 100644 index 00000000..6fbb6e0f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_OpenGuildQAReq
+ {
+ public static void OnReply(OpenGuildQAReq oArg, OpenGuildQARes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XGuildRelaxGameDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRelaxGameDocument>(XGuildRelaxGameDocument.uuID);
+ specificDocument.GetGuildVoiceInfo();
+ }
+ }
+ }
+
+ public static void OnTimeout(OpenGuildQAReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs.meta new file mode 100644 index 00000000..bb45e405 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenGuildQAReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f9233b2e6e234e74a8d1cd6ba0c6c8f2 +timeCreated: 1611404897 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs new file mode 100644 index 00000000..00f4b93e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs @@ -0,0 +1,34 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_OpenSceneChest
+ {
+ public static void OnReply(OpenSceneChestArg oArg, OpenSceneChestRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XLevelDocument xlevelDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XLevelDocument.uuID) as XLevelDocument;
+ xlevelDocument.OnFetchSceneChestSucc(oArg.sceneID);
+ }
+ }
+ }
+
+ public static void OnTimeout(OpenSceneChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs.meta new file mode 100644 index 00000000..4d988f84 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_OpenSceneChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 965ebf6643278bf498ac36eff4dbfb01 +timeCreated: 1611404185 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs new file mode 100644 index 00000000..bc94e3df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_Operation520Festival
+ {
+ public static void OnReply(Operation520FestivalArg oArg, Operation520FestivalRes oRes)
+ {
+ }
+
+ public static void OnTimeout(Operation520FestivalArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs.meta new file mode 100644 index 00000000..53ed7083 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Operation520Festival.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6171836d83855dc4298f8e6350711196 +timeCreated: 1611403838 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs new file mode 100644 index 00000000..2bddac3a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs @@ -0,0 +1,56 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PandoraLottery
+ {
+ public static void OnReply(PandoraLotteryArg oArg, PandoraLotteryRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ ErrorCode errorcode = oRes.errorcode;
+ if (errorcode != ErrorCode.ERR_SUCCESS)
+ {
+ if (errorcode != ErrorCode.ERR_PANDORA_LACKOF_FIRE)
+ {
+ if (errorcode != ErrorCode.ERR_PANDORA_LACKOF_HEART)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ PandoraDocument specificDocument = XDocuments.GetSpecificDocument<PandoraDocument>(PandoraDocument.uuID);
+ XSingleton<UiUtility>.singleton.ShowItemAccess((int)specificDocument.PandoraData.PandoraID, null);
+ }
+ }
+ else
+ {
+ PandoraDocument specificDocument2 = XDocuments.GetSpecificDocument<PandoraDocument>(PandoraDocument.uuID);
+ XSingleton<UiUtility>.singleton.ShowItemAccess((int)specificDocument2.PandoraData.FireID, null);
+ }
+ }
+ else
+ {
+ PandoraDocument specificDocument3 = XDocuments.GetSpecificDocument<PandoraDocument>(PandoraDocument.uuID);
+ specificDocument3.GetPandoraLotteryResult(oRes.items);
+ XShowGetItemDocument specificDocument4 = XDocuments.GetSpecificDocument<XShowGetItemDocument>(XShowGetItemDocument.uuID);
+ specificDocument4.ClearItemQueue();
+ }
+ }
+ }
+
+ public static void OnTimeout(PandoraLotteryArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs.meta new file mode 100644 index 00000000..cdaf7a63 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PandoraLottery.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bb91563e865bc6e44af0286730a912b1 +timeCreated: 1611404442 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs new file mode 100644 index 00000000..bf23e582 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PayCardAward
+ {
+ public static void OnReply(PayCardAwardArg oArg, PayCardAwardRes oRes)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetCardDailyDiamond(oArg, oRes);
+ }
+
+ public static void OnTimeout(PayCardAwardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs.meta new file mode 100644 index 00000000..f2138ca7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayCardAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a6eb2be66ee7c240b7a3059a9dfec42 +timeCreated: 1611404091 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs new file mode 100644 index 00000000..534e9b61 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PayClick
+ {
+ public static void OnReply(PayClickArg oArg, PayClickRes oRes)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.RefreshFirstClickTabRedpoint(oArg, oRes);
+ }
+
+ public static void OnTimeout(PayClickArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs.meta new file mode 100644 index 00000000..6878c92a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayClick.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1ce041a22918fb84ea1f8db39efbf6ac +timeCreated: 1611403349 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs new file mode 100644 index 00000000..8c0527ad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PayFirstAward
+ {
+ public static void OnReply(PayFirstAwardArg oArg, PayFirstAwardRes oRes)
+ {
+ XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
+ specificDocument.OnGetPayFirstAward(oRes);
+ }
+
+ public static void OnTimeout(PayFirstAwardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs.meta new file mode 100644 index 00000000..e7ae1bf9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFirstAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 18bbf3539e020054da4418bf359c175d +timeCreated: 1611403298 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs new file mode 100644 index 00000000..21f8991a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PayFriendItem
+ {
+ public static void OnReply(PayFriendItemArg oArg, PayFriendItemRes oRes)
+ {
+ bool flag = oRes.ret == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument.OnGetBuyGoodsOrder(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(PayFriendItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs.meta new file mode 100644 index 00000000..d487bf53 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PayFriendItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4fe988b8c75c8724c99239382468a20d +timeCreated: 1611403702 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs new file mode 100644 index 00000000..c6c5a723 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PeerBox
+ {
+ public static void OnReply(PeerBoxArg oArg, PeerBoxRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLevelRewardDocument>(XLevelRewardDocument.uuID);
+ specificDocument.SetPeerChest(oArg.index - 1u, oRes.item, oRes.type);
+ }
+ }
+ }
+
+ public static void OnTimeout(PeerBoxArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs.meta new file mode 100644 index 00000000..072f8a2c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PeerBox.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fc6b7a7fdbdaca24c9067bc1da775455 +timeCreated: 1611404935 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs new file mode 100644 index 00000000..ce58e025 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PersonalCareer
+ {
+ public static void OnReply(PersonalCareerArg oArg, PersonalCareerRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ DlgBase<PersonalCareerView, PersonalCareerBehaviour>.singleton.SetCareer(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(PersonalCareerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs.meta new file mode 100644 index 00000000..108bd1b6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PersonalCareer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2e9234d7b76ecd74d90259a8d29d60a2 +timeCreated: 1611403510 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs new file mode 100644 index 00000000..f7366198 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs @@ -0,0 +1,71 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PetOperation
+ {
+ public static void OnReply(PetOperationArg oArg, PetOperationRes oRes)
+ {
+ PetOP type = oArg.type;
+ if (type == PetOP.PetExpTransfer)
+ {
+ bool flag = DlgBase<XPetMainView, XPetMainBehaviour>.singleton.ExpTransferHandler != null;
+ if (flag)
+ {
+ DlgBase<XPetMainView, XPetMainBehaviour>.singleton.ExpTransferHandler.m_CanTransfer = true;
+ }
+ }
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ switch (oArg.type)
+ {
+ case PetOP.PetFellow:
+ specificDocument.OnMount(oArg, oRes);
+ break;
+ case PetOP.PetFight:
+ specificDocument.OnFight(oArg, oRes);
+ break;
+ case PetOP.PetFeed:
+ specificDocument.OnFeed(oArg, oRes);
+ break;
+ case PetOP.PetTouch:
+ specificDocument.OnPetTouch(oArg, oRes);
+ break;
+ case PetOP.PetRelease:
+ specificDocument.OnRelease(oArg, oRes);
+ break;
+ case PetOP.ExpandSeat:
+ specificDocument.OnBuySeat(oArg, oRes);
+ break;
+ case PetOP.SetPetPairRide:
+ specificDocument.OnReqSetTravelSetBack(oArg, oRes);
+ break;
+ case PetOP.QueryPetPairRideInvite:
+ specificDocument.OnReqReqInviteListBack(oArg, oRes);
+ break;
+ case PetOP.OffPetPairRide:
+ specificDocument.OnReqOffPetPairRideBack();
+ break;
+ case PetOP.IgnorePetPairRideInvite:
+ specificDocument.OnReqIgnoreAllBack();
+ break;
+ }
+ specificDocument.OnPetOperation(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(PetOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs.meta new file mode 100644 index 00000000..a3d09c1a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e687ed9766f416542891dcce99c29e41 +timeCreated: 1611404746 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs new file mode 100644 index 00000000..f1c4a725 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PetOperationOther
+ {
+ public static void OnReply(PetOperationOtherArg oArg, PetOperationOtherRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument.OnPetPetOperationOtherBack(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(PetOperationOtherArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs.meta new file mode 100644 index 00000000..a21399fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PetOperationOther.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 435e50dc9e8a9434899d9c9043dd3bc0 +timeCreated: 1611403642 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs new file mode 100644 index 00000000..0f58eab9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PhotographEffect
+ {
+ public static void OnReply(PhotographEffectArg oArg, PhotographEffect oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XScreenShotShareDocument specificDocument = XDocuments.GetSpecificDocument<XScreenShotShareDocument>(XScreenShotShareDocument.uuID);
+ specificDocument.OnGetPhotoGraphEffect(oRes);
+ }
+ }
+
+ public static void OnTimeout(PhotographEffectArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs.meta new file mode 100644 index 00000000..a53539ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PhotographEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 35aa64c2d2512674abbe0015c851d5c9 +timeCreated: 1611403559 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs new file mode 100644 index 00000000..ea5e9414 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PlayDiceOver
+ {
+ public static void OnReply(PlayDiceOverArg oArg, PlayDiceOverRes oRes)
+ {
+ XSuperRiskDocument.Doc.OnMoveOver(oRes);
+ }
+
+ public static void OnTimeout(PlayDiceOverArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs.meta new file mode 100644 index 00000000..718082bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceOver.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2738449087497bd47ad1081cd575aeb0 +timeCreated: 1611403470 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs new file mode 100644 index 00000000..b0cf5ec1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PlayDiceRequest
+ {
+ public static void OnReply(PlayDiceRequestArg oArg, PlayDiceRequestRes oRes)
+ {
+ XSuperRiskDocument.Doc.OnGetDicingResult(oRes);
+ }
+
+ public static void OnTimeout(PlayDiceRequestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs.meta new file mode 100644 index 00000000..2d3ed859 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PlayDiceRequest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1b822d24ee4bd0e4392abba073c3151b +timeCreated: 1611403316 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs new file mode 100644 index 00000000..86ba72f9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs @@ -0,0 +1,56 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PvpAllReq
+ {
+ public static void OnReply(PvpArg oArg, PvpRes oRes)
+ {
+ bool flag = oRes.err == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.err == ErrorCode.ERR_CAN_INGORE;
+ if (!flag2)
+ {
+ bool flag3 = oRes.err > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.err, "fece00");
+ }
+ else
+ {
+ XCaptainPVPDocument specificDocument = XDocuments.GetSpecificDocument<XCaptainPVPDocument>(XCaptainPVPDocument.uuID);
+ bool flag4 = oArg.type == PvpReqType.PVP_REQ_BASE_DATA;
+ if (flag4)
+ {
+ specificDocument.SetShowInfo(oArg, oRes);
+ }
+ bool flag5 = oArg.type == PvpReqType.PVP_REQ_HISTORY_REC;
+ if (flag5)
+ {
+ specificDocument.SetBattleRecord(oRes);
+ }
+ bool flag6 = oArg.type == PvpReqType.PVP_REQ_GET_WEEKREWARD;
+ if (flag6)
+ {
+ specificDocument.SetWeekReward(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(PvpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs.meta new file mode 100644 index 00000000..6b544796 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpAllReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c898418e98a607a4989939d2c9c08cb2 +timeCreated: 1611404535 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs new file mode 100644 index 00000000..b5d5b82f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs @@ -0,0 +1,34 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_PvpNowAllData
+ {
+ public static void OnReply(roArg oArg, PvpNowGameData oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ bool bNoShowLog = oArg.bNoShowLog;
+ if (bNoShowLog)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+ else
+ {
+ XBattleCaptainPVPDocument specificDocument = XDocuments.GetSpecificDocument<XBattleCaptainPVPDocument>(XBattleCaptainPVPDocument.uuID);
+ specificDocument.SetReqBattleCaptainPVPRefreshInfo(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(roArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs.meta new file mode 100644 index 00000000..a8d699ed --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_PvpNowAllData.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 493b56f9790f7bb429b2118f6354aa19 +timeCreated: 1611403660 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs new file mode 100644 index 00000000..f5307979 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs @@ -0,0 +1,48 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryBoxs
+ {
+ public static void OnReply(QueryBoxsArg oArg, QueryBoxsRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLevelRewardDocument>(XLevelRewardDocument.uuID);
+ ErrorCode errorcode = oRes.errorcode;
+ if (errorcode != ErrorCode.ERR_SUCCESS)
+ {
+ if (errorcode != ErrorCode.ERR_QUERYBOX_TIMELEFT)
+ {
+ if (errorcode != ErrorCode.ERR_INVALID_STATE)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ else
+ {
+ specificDocument.SetSelectBoxLeftTime(oRes.timeleft);
+ }
+ }
+ else
+ {
+ specificDocument.SetBoxsInfo(oRes.boxinfos);
+ }
+ }
+ }
+
+ public static void OnTimeout(QueryBoxsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs.meta new file mode 100644 index 00000000..40a1c5f0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryBoxs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 36cadfd2721b6454987a53d1409b1fa5 +timeCreated: 1611403563 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs new file mode 100644 index 00000000..d8078ec1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryClientIp
+ {
+ public static void OnReply(QueryClientIpArg oArg, QueryClientIpRes oRes)
+ {
+ XChatDocument.m_ClientIP = oRes.ip;
+ RpcC2A_AudioAuthKey rpcC2A_AudioAuthKey = new RpcC2A_AudioAuthKey();
+ rpcC2A_AudioAuthKey.oArg.ip = oRes.ip;
+ rpcC2A_AudioAuthKey.oArg.open_id = "63662733";
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2A_AudioAuthKey);
+ }
+
+ public static void OnTimeout(QueryClientIpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs.meta new file mode 100644 index 00000000..3d4dc76e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryClientIp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2caa5ccc41775f4cb211d56ade9ab34 +timeCreated: 1611404258 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs new file mode 100644 index 00000000..47c30d5e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs @@ -0,0 +1,31 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryGuildCard
+ {
+ public static void OnReply(QueryGuildCardArg oArg, QueryGuildCardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.SetGameCount(oRes.playcount, oRes.changecount, oRes.buychangcount);
+ specificDocument.SetBestCard(oRes.bestcards, oRes.bestrole);
+ }
+ }
+
+ public static void OnTimeout(QueryGuildCardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs.meta new file mode 100644 index 00000000..08003629 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryGuildCard.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a47f0f8ef85d7ee43bcba7d0e21f6942 +timeCreated: 1611404282 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs new file mode 100644 index 00000000..980cc9be --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryIBItem
+ {
+ public static void OnReply(IBQueryItemReq oArg, IBQueryItemRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument.RespItems(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(IBQueryItemReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs.meta new file mode 100644 index 00000000..56bac8d9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryIBItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7fac7b82dd31b0c41844859b0832b4eb +timeCreated: 1611404031 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs new file mode 100644 index 00000000..07f649c7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryLotteryCD
+ {
+ public static void OnReply(QueryLotteryCDArg oArg, QueryLotteryCDRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSpriteSystemDocument specificDocument = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument.OnQueryLotteryCD(oRes.goldbuycooldown, oRes.cooldown, oRes.goldbuycount, oRes.coinbaodi);
+ }
+ }
+
+ public static void OnTimeout(QueryLotteryCDArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs.meta new file mode 100644 index 00000000..ad96f9c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryLotteryCD.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c65dead08df421f4c93827482fd7097b +timeCreated: 1611404509 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs new file mode 100644 index 00000000..4c7f8190 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryOpenGameActivityTime
+ {
+ public static void OnReply(QueryOpenGameArg oArg, QueryOpenGameRes oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XAchievementDocument specificDocument = XDocuments.GetSpecificDocument<XAchievementDocument>(XAchievementDocument.uuID);
+ specificDocument.SetOpenServerActivityTime(oRes.timeLeft);
+ }
+ }
+
+ public static void OnTimeout(QueryOpenGameArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs.meta new file mode 100644 index 00000000..ccb8f93f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryOpenGameActivityTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: db9466d78ec233c4eb6c0d0a1d6591fa +timeCreated: 1611404653 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs new file mode 100644 index 00000000..581da313 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryPowerPoint
+ {
+ public static void OnReply(QueryPowerPointArg oArg, QueryPowerPointRes oRes)
+ {
+ XFPStrengthenDocument specificDocument = XDocuments.GetSpecificDocument<XFPStrengthenDocument>(XFPStrengthenDocument.uuID);
+ specificDocument.RefreshUi(oRes);
+ }
+
+ public static void OnTimeout(QueryPowerPointArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs.meta new file mode 100644 index 00000000..ab176ca8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryPowerPoint.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3740a149078563e4185927b5ca63fcba +timeCreated: 1611403564 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs new file mode 100644 index 00000000..a25fc076 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryQQFriendsVipInfo
+ {
+ public static void OnReply(QueryQQFriendsVipInfoArg oArg, QueryQQFriendsVipInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnGetQQFriendsVipInfo(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(QueryQQFriendsVipInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs.meta new file mode 100644 index 00000000..d98fe8e6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQFriendsVipInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7bfaffd941122ef428b813f9d2f6cee5 +timeCreated: 1611403995 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs new file mode 100644 index 00000000..76fe3cc3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryQQVipInfo
+ {
+ public static void OnReply(QueryQQVipInfoArg oArg, QueryQQVipInfoRes oRes)
+ {
+ XPlatformAbilityDocument specificDocument = XDocuments.GetSpecificDocument<XPlatformAbilityDocument>(XPlatformAbilityDocument.uuID);
+ specificDocument.OnQueryQQVipInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(QueryQQVipInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs.meta new file mode 100644 index 00000000..4b27d360 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryQQVipInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 357ca3ea72d30c34f9a9829bef3f52d8 +timeCreated: 1611403559 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs new file mode 100644 index 00000000..35d42e9a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QuerySceneDayCount
+ {
+ public static void OnReply(QuerySceneDayCountArg oArg, QuerySceneDayCountRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ switch (oArg.type)
+ {
+ case 1u:
+ {
+ XLevelDocument xlevelDocument = XSingleton<XGame>.singleton.Doc.GetXComponent(XLevelDocument.uuID) as XLevelDocument;
+ xlevelDocument.UpdateSceneDayTime(oRes);
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnGetSceneDayCount(oRes);
+ break;
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(QuerySceneDayCountArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs.meta new file mode 100644 index 00000000..6a420402 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneDayCount.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 13e4b9a2fa093ef4ba12cd366e04ab86 +timeCreated: 1611403251 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs new file mode 100644 index 00000000..56707392 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs @@ -0,0 +1,43 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QuerySceneTime
+ {
+ public static void OnReply(QuerySceneTimeArg oArg, QuerySceneTimeRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ bool syncMode = XSingleton<XGame>.singleton.SyncMode;
+ if (syncMode)
+ {
+ bool flag2 = XSingleton<XScene>.singleton.SceneType != SceneType.SCENE_CASTLE_WAIT && XSingleton<XScene>.singleton.SceneType != SceneType.SCENE_CASTLE_FIGHT;
+ if (flag2)
+ {
+ XBattleDocument xbattleDoc = XSingleton<XGame>.singleton.Doc.XBattleDoc;
+ XSpectateSceneDocument xspectateSceneDoc = XSingleton<XGame>.singleton.Doc.XSpectateSceneDoc;
+ bool flag3 = oRes.time >= 0;
+ if (flag3)
+ {
+ xbattleDoc.ResetSceneTime(oRes.time);
+ xspectateSceneDoc.ResetSceneTime(oRes.time);
+ }
+ bool flag4 = XSingleton<XScene>.singleton.SceneType == SceneType.SCENE_RIFT;
+ if (flag4)
+ {
+ XRiftDocument specificDocument = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ specificDocument.ResSceneTime(oRes.time);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(QuerySceneTimeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs.meta new file mode 100644 index 00000000..b6726ebb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QuerySceneTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f89db04e1f02af746ad45a50cb130ecf +timeCreated: 1611404894 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs new file mode 100644 index 00000000..32c385f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_QueryShopItem
+ {
+ public static void OnReply(QueryShopItemArg oArg, QueryShopItemRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetGoodsList(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(QueryShopItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs.meta new file mode 100644 index 00000000..d96bd8bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_QueryShopItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2af41180359814c438663d69a29a46ac +timeCreated: 1611403497 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs new file mode 100644 index 00000000..41e27296 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs @@ -0,0 +1,23 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReEnterRiskBattle
+ {
+ public static void OnReply(ReEnterRiskBattleArg oArg, ReEnterRiskBattleRes oRes)
+ {
+ bool flag = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+
+ public static void OnTimeout(ReEnterRiskBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs.meta new file mode 100644 index 00000000..ab85128e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReEnterRiskBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 43a627080d16b574498779248f843f0b +timeCreated: 1611403642 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs new file mode 100644 index 00000000..42ebf87c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs @@ -0,0 +1,25 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_RefreshSweepReward
+ {
+ public static void OnReply(RefreshSweepRewardArg oArg, RefreshSweepRewardRes oRes)
+ {
+ bool flag = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.RefreshSingleSweepRewardRes(oRes.error, oRes.refreshResult);
+ }
+
+ public static void OnTimeout(RefreshSweepRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs.meta new file mode 100644 index 00000000..f5476054 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshSweepReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b717c4f2d173c8b4699011bcb104a6d2 +timeCreated: 1611404401 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs new file mode 100644 index 00000000..18e62d38 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_RefreshWeeklyTask
+ {
+ public static void OnReply(RefreshWeeklyTaskArg oArg, RefreshWeeklyTaskRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XGuildWeeklyBountyDocument.Doc.OnRefreshTaskList(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+
+ public static void OnTimeout(RefreshWeeklyTaskArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs.meta new file mode 100644 index 00000000..4c659b5b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RefreshWeeklyTask.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f9b643f10bd0daf4cb0003257f3bf04d +timeCreated: 1611404900 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs new file mode 100644 index 00000000..fed0896a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs @@ -0,0 +1,52 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReplyPartyExchangeItemOpt
+ {
+ public static void OnReply(ReplyPartyExchangeItemOptArg oArg, ReplyPartyExchangeItemOptRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XRequestDocument specificDocument = XDocuments.GetSpecificDocument<XRequestDocument>(XRequestDocument.uuID);
+ bool flag3 = oArg.operate_type == 3u;
+ if (flag3)
+ {
+ DlgBase<RequestDlg, RequestBehaviour>.singleton.SetVisibleWithAnimation(false, null);
+ }
+ bool flag4 = oArg.operate_type == 2u;
+ if (flag4)
+ {
+ specificDocument.RemoveList(true, 0UL);
+ }
+ else
+ {
+ specificDocument.RemoveList(false, oArg.lauch_role_id);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ReplyPartyExchangeItemOptArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs.meta new file mode 100644 index 00000000..df960456 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReplyPartyExchangeItemOpt.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0a412d18e40607e409178c94d6054a87 +timeCreated: 1611403162 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs new file mode 100644 index 00000000..a71b5cdd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReportBadPlayer
+ {
+ public static void OnReply(ReportBadPlayerArg oArg, ReportBadPlayerRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("PVPReportSuccess"), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ReportBadPlayerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs.meta new file mode 100644 index 00000000..0ec23aea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBadPlayer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2b75ceb4a230133488d26b24fe0ef304 +timeCreated: 1611403499 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs new file mode 100644 index 00000000..d572e003 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReportBattle
+ {
+ public static void OnReply(ReportBattleArg oArg, ReportBattleRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ReportBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs.meta new file mode 100644 index 00000000..9882ab22 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReportBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 32a6e9bcc3b37e64da21615e28aa3bff +timeCreated: 1611403550 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs new file mode 100644 index 00000000..d6c3626c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReqGetLoginReward
+ {
+ public static void OnReply(LoginRewardGetReq oArg, LoginRewardGetRet oRes)
+ {
+ bool flag = oRes.ret == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSevenLoginDocument specificDocument = XDocuments.GetSpecificDocument<XSevenLoginDocument>(XSevenLoginDocument.uuID);
+ specificDocument.ReceiveLoginReward(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(LoginRewardGetReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs.meta new file mode 100644 index 00000000..c7455050 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGetLoginReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 98694da365e99c849ba0728a69fc9770 +timeCreated: 1611404190 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs new file mode 100644 index 00000000..4318da52 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReqGuildBossTimeLeft
+ {
+ public static void OnReply(getguildbosstimeleftArg oArg, getguildbosstimeleftRes oRes)
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.OnGetBattleInfo(oRes);
+ }
+
+ public static void OnTimeout(getguildbosstimeleftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs.meta new file mode 100644 index 00000000..17bf9ce0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqGuildBossTimeLeft.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0cfa29fd322be5046bed29c42f619218 +timeCreated: 1611403176 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs new file mode 100644 index 00000000..c46b8ae8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReqPlayerAutoPlay
+ {
+ public static void OnReply(ReqAutoPlay oArg, RetAutoPlay oRes)
+ {
+ }
+
+ public static void OnTimeout(ReqAutoPlay oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs.meta new file mode 100644 index 00000000..528da97f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReqPlayerAutoPlay.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bcd37894f3c134c43b9fab13bcb6e3c9 +timeCreated: 1611404448 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs new file mode 100644 index 00000000..2f05c4c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ResWarAllInfoReqOne
+ {
+ public static void OnReply(ResWarArg oArg, ResWarRes oRes)
+ {
+ XGuildMineBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineBattleDocument>(XGuildMineBattleDocument.uuID);
+ specificDocument.SetBattleAllInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(ResWarArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs.meta new file mode 100644 index 00000000..ea683789 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarAllInfoReqOne.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 69cc88e4ac3f3d14b83ebc1c69ed0b76 +timeCreated: 1611403886 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs new file mode 100644 index 00000000..1da089b2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ResWarBuff
+ {
+ public static void OnReply(ResWarBuffArg oArg, ResWarBuffRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ DlgBase<BattleMain, BattleMainBehaviour>.singleton.ShowGuildMineBuff(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ResWarBuffArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs.meta new file mode 100644 index 00000000..dd2cd498 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResWarBuff.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6208d0c9e718ec948b29848f32b7c8d8 +timeCreated: 1611403839 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs new file mode 100644 index 00000000..1244bb7e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs @@ -0,0 +1,59 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ResetSkill
+ {
+ public static void OnReply(ResetSkillArg oArg, ResetSkillRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = oArg.resetType == ResetType.RESET_PROFESSION;
+ if (flag3)
+ {
+ XSingleton<XAttributeMgr>.singleton.XPlayerData.Profession = oRes.prof;
+ XEntity entity = XSingleton<XEntityMgr>.singleton.GetEntity(XSingleton<XAttributeMgr>.singleton.XPlayerData.RoleID);
+ bool flag4 = entity != null && entity.Attributes != null;
+ if (flag4)
+ {
+ entity.Attributes.Outlook.SetProfType(XSingleton<XAttributeMgr>.singleton.XPlayerData.TypeID);
+ entity.Attributes.Outlook.CalculateOutLookFashion();
+ XEquipChangeEventArgs @event = XEventPool<XEquipChangeEventArgs>.GetEvent();
+ @event.Firer = XSingleton<XEntityMgr>.singleton.Player;
+ XSingleton<XEventMgr>.singleton.FireEvent(@event);
+ }
+ }
+ bool flag5 = DlgBase<XSkillTreeView, XSkillTreeBehaviour>.singleton.LastSelectPromote > 1;
+ if (flag5)
+ {
+ DlgBase<XSkillTreeView, XSkillTreeBehaviour>.singleton.LastSelectPromote = 1;
+ }
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ specificDocument.SkillRefresh(true, true);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ResetSkillArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs.meta new file mode 100644 index 00000000..9c70818a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetSkill.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c573a785d5bfc294e92c048d05e59067 +timeCreated: 1611404506 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs new file mode 100644 index 00000000..31b9dca1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ResetTower
+ {
+ public static void OnReply(ResetTowerArg oArg, ResetTowerRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.ResetSingleTowerRes();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ResetTowerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs.meta new file mode 100644 index 00000000..2f098e62 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ResetTower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 06baed26c85ee7c4b8601e9c2d51df59 +timeCreated: 1611402966 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs new file mode 100644 index 00000000..150f2cc5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ReturnSmeltStone
+ {
+ public static void OnReply(ReturnSmeltStoneArg oArg, ReturnSmeltStoneRes oRes)
+ {
+ XSmeltDocument.Doc.SmeltReturnBack(oRes);
+ }
+
+ public static void OnTimeout(ReturnSmeltStoneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs.meta new file mode 100644 index 00000000..d824c044 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ReturnSmeltStone.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b33861b3b85311642ac613bfebaa84d1 +timeCreated: 1611404388 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs new file mode 100644 index 00000000..4bfcc3d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs @@ -0,0 +1,90 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_Revive
+ {
+ public static void OnReply(ReviveArg oArg, ReviveRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("Revieve Type: " + oArg.type, null, null, null, null, null, XDebugColor.XDebug_None);
+ XReviveDocument specificDocument = XDocuments.GetSpecificDocument<XReviveDocument>(XReviveDocument.uuID);
+ specificDocument.ResetAutoReviveData();
+ ErrorCode result = oRes.result;
+ if (result != ErrorCode.ERR_SUCCESS)
+ {
+ if (result != ErrorCode.ERR_REVIVE_MAXNUM)
+ {
+ ReviveType type = oArg.type;
+ if (type != ReviveType.ReviveItem)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ bool flag2 = specificDocument.SpecialCostID > 0u;
+ if (flag2)
+ {
+ specificDocument.ShowSpecialRevive();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ else
+ {
+ switch (oArg.type)
+ {
+ case ReviveType.ReviveItem:
+ case ReviveType.ReviveMoney:
+ specificDocument.SetReviveData(specificDocument.ReviveUsedTime + 1, specificDocument.ReviveCostTime + 1, ReviveType.ReviveNone);
+ break;
+ case ReviveType.ReviveSprite:
+ {
+ bool flag3 = oArg.clientinfo != null && oArg.clientinfo.islimit;
+ if (flag3)
+ {
+ specificDocument.SetReviveData(specificDocument.ReviveUsedTime + 1, specificDocument.ReviveCostTime, ReviveType.ReviveNone);
+ }
+ break;
+ }
+ case ReviveType.ReviveVIP:
+ {
+ bool flag4 = specificDocument.VipReviveCount > 0u;
+ if (flag4)
+ {
+ XReviveDocument xreviveDocument = specificDocument;
+ uint vipReviveCount = xreviveDocument.VipReviveCount - 1u;
+ xreviveDocument.VipReviveCount = vipReviveCount;
+ }
+ specificDocument.SetReviveData(specificDocument.ReviveUsedTime + 1, specificDocument.ReviveCostTime, ReviveType.ReviveNone);
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ReviveArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs.meta new file mode 100644 index 00000000..90da87bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Revive.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9e503f5bf50c45c468810d5648820051 +timeCreated: 1611404241 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs new file mode 100644 index 00000000..70031748 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs @@ -0,0 +1,51 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_RiftFirstPassReward
+ {
+ public static void OnReply(RiftFirstPassRewardArg oArg, RiftFirstPassRewardRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XRiftDocument specificDocument = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ bool flag4 = oArg.opType == RiftFirstPassOpType.Rift_FirstPass_Op_GetReward;
+ if (flag4)
+ {
+ specificDocument.SetFirstPassClaim((int)oArg.floor);
+ }
+ specificDocument.ResFisrtPassRwd(oArg.opType, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(RiftFirstPassRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs.meta new file mode 100644 index 00000000..53328815 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiftFirstPassReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fe80f2346ace38f47832c1e63b6da4d2 +timeCreated: 1611404941 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs new file mode 100644 index 00000000..a1b7f292 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_RiskBuyRequest
+ {
+ public static void OnReply(RiskBuyRequestArg oArg, RiskBuyRequestRes oRes)
+ {
+ XSuperRiskDocument.Doc.BuyOnlineBoxBack(oRes);
+ }
+
+ public static void OnTimeout(RiskBuyRequestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs.meta new file mode 100644 index 00000000..ab23c045 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_RiskBuyRequest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d08683e47974b864f80152cbf34c29f1 +timeCreated: 1611404587 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs new file mode 100644 index 00000000..ed9a7e6b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SceneMobaOp
+ {
+ public static void OnReply(SceneMobaOpArg oArg, SceneMobaOpRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ bool flag3 = oArg.op == MobaOp.MobaOp_Upgrade;
+ if (flag3)
+ {
+ uint param = oArg.param;
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("MobaAdditionSuccess" + param.ToString()), oRes.nowparam), "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SceneMobaOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs.meta new file mode 100644 index 00000000..3b7f78c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SceneMobaOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 01bc819f427a72d4792b2ec6c9d311dd +timeCreated: 1611402954 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs new file mode 100644 index 00000000..5fd1ce96 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SelectChargeBackRole
+ {
+ public static void OnReply(SelectChargeBackRoleArg oArg, SelectChargeBackRoleRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XBackFlowDocument.Doc.OnGetSelectRoleReply();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(SelectChargeBackRoleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs.meta new file mode 100644 index 00000000..f4cec363 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChargeBackRole.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bd5b3b87611b84846bfe155d780a833c +timeCreated: 1611404451 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs new file mode 100644 index 00000000..cef68a2b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs @@ -0,0 +1,34 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SelectChestReward
+ {
+ public static void OnReply(SelectChestArg oArg, SelectChestRes oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errcode > ErrorCode.ERR_SUCCESS;
+ if (!flag2)
+ {
+ XLevelRewardDocument specificDocument = XDocuments.GetSpecificDocument<XLevelRewardDocument>(XLevelRewardDocument.uuID);
+ specificDocument.SetPlayerSelectChestID((int)oArg.chestIdx);
+ }
+ }
+ }
+
+ public static void OnTimeout(SelectChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs.meta new file mode 100644 index 00000000..6ac9b11c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectChestReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: db51e13a8c1e0b94cb9135b8c0c2eeea +timeCreated: 1611404651 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs new file mode 100644 index 00000000..0a6669ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SelectHeroAncientPower
+ {
+ public static void OnReply(SelectHeroAncientPowerArg oArg, SelectHeroAncientPowerRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString(string.Format("HeroAncientUse{0}", oArg.selectpower)), "fece00");
+ XHeroBattleDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument.OnAncientPercentGet(0f);
+ }
+ }
+ }
+
+ public static void OnTimeout(SelectHeroAncientPowerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs.meta new file mode 100644 index 00000000..abfd5cdb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SelectHeroAncientPower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dbb8af21858d02e409d1475979178320 +timeCreated: 1611404654 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs new file mode 100644 index 00000000..1b81932a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SendFlower
+ {
+ public static void OnReply(SendFlowerArg oArg, SendFlowerRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFlowerSendDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerSendDocument>(XFlowerSendDocument.uuID);
+ specificDocument.OnSendFlower(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(SendFlowerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs.meta new file mode 100644 index 00000000..eaed6a30 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendFlower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 49bdc7d3ab35b0548b2d62a5ef659f1e +timeCreated: 1611403662 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs new file mode 100644 index 00000000..9fb731da --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SendGuildBonus
+ {
+ public static void OnReply(SendGuildBonusArg oArg, SendGuildBonusRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.OnSendGuildBonus(oRes);
+ }
+ }
+
+ public static void OnTimeout(SendGuildBonusArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs.meta new file mode 100644 index 00000000..400220b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SendGuildBonus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aabbd24771b9afe4c910da10f2279eff +timeCreated: 1611404304 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs new file mode 100644 index 00000000..028ef68a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs @@ -0,0 +1,43 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SetDesignationReq
+ {
+ public static void OnReply(SetDesignationReq oArg, SetDesignationRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XDesignationDocument specificDocument = XDocuments.GetSpecificDocument<XDesignationDocument>(XDesignationDocument.uuID);
+ bool flag3 = oArg.type == 2u;
+ if (flag3)
+ {
+ specificDocument.DealWithAppearRedPoint(oArg.designationID, oRes.dataList);
+ }
+ specificDocument.SetDesignationInfo(oArg.type, oArg.designationID, oRes.name);
+ }
+ }
+ }
+
+ public static void OnTimeout(SetDesignationReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs.meta new file mode 100644 index 00000000..02e45f23 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetDesignationReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0400df4754d223c47b9ff0a857a8fe7f +timeCreated: 1611402960 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs new file mode 100644 index 00000000..bfbd8d1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs @@ -0,0 +1,47 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SetHeroInHeroBattle
+ {
+ public static void OnReply(SetHeroInHeroBattleArg oArg, SetHeroInHeroBattleRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XHeroBattleSkillDocument specificDocument = XDocuments.GetSpecificDocument<XHeroBattleSkillDocument>(XHeroBattleSkillDocument.uuID);
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_CANTCHOOSEHERO;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ specificDocument.SetAlreadySelectHero();
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ specificDocument.OnSelectHeroSuccess(oArg.heroid);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SetHeroInHeroBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs.meta new file mode 100644 index 00000000..614d1287 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetHeroInHeroBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b37f1d65b7a0cb748a8708fed66ac5c9 +timeCreated: 1611404389 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs new file mode 100644 index 00000000..efb66468 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SetPreShow
+ {
+ public static void OnReply(SetPreShowArg oArg, SetPreShowRes oRes)
+ {
+ XPrerogativeDocument specificDocument = XDocuments.GetSpecificDocument<XPrerogativeDocument>(XPrerogativeDocument.uuID);
+ specificDocument.ReceivePreCache(oArg, oRes);
+ }
+
+ public static void OnTimeout(SetPreShowArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs.meta new file mode 100644 index 00000000..b1ca401b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetPreShow.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5816f4fead8700a46afa8efc87b6f8f1 +timeCreated: 1611403752 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs new file mode 100644 index 00000000..e2368a38 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SetRoleConfig
+ {
+ public static void OnReply(SetRoleConfigReq oArg, SetRoleConfigRes oRes)
+ {
+ }
+
+ public static void OnTimeout(SetRoleConfigReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs.meta new file mode 100644 index 00000000..eb8fc861 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SetRoleConfig.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b6afbfe4276259a4b958ca9c92e9e3a6 +timeCreated: 1611404398 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs new file mode 100644 index 00000000..d0ab33cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ShadowCatOperation
+ {
+ public static void OnReply(ShadowCatOperationArg oArg, ShadowCatOperationRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ShadowCatOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs.meta new file mode 100644 index 00000000..e98ab653 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShadowCatOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dc5b6b9d4fed3e24e9a7f3ed0925f33e +timeCreated: 1611404678 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs new file mode 100644 index 00000000..3810b5a0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ShowFlowerPage
+ {
+ public static void OnReply(ShowFlowerPageArg oArg, ShowFlowerPageRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ShowFlowerPageArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs.meta new file mode 100644 index 00000000..4fbf5a7e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ShowFlowerPage.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3101c5960b21bf74490c0be44bc1a0b7 +timeCreated: 1611403523 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs new file mode 100644 index 00000000..888ad3d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs @@ -0,0 +1,66 @@ +using System;
+using System.Collections.Generic;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SkillLevelup
+ {
+ public static void OnReply(SkillLevelupArg oArg, SkillLevelupRes oRes)
+ {
+ bool flag = oRes.errorcode == 257u;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = (ulong)oRes.errorcode == (ulong)((long)XFastEnumIntEqualityComparer<ErrorCode>.ToInt(ErrorCode.ERR_SUCCESS));
+ if (flag2)
+ {
+ XSkillTreeDocument specificDocument = XDocuments.GetSpecificDocument<XSkillTreeDocument>(XSkillTreeDocument.uuID);
+ specificDocument.OnSkillLevelUp(oArg.skillHash);
+ uint skillLevel = XSingleton<XAttributeMgr>.singleton.XPlayerData.SkillLevelInfo.GetSkillLevel(oArg.skillHash);
+ bool flag3 = skillLevel == 1u;
+ if (flag3)
+ {
+ bool flag4 = specificDocument.IsPassiveSkill(oArg.skillHash);
+ bool flag5 = flag4;
+ if (flag5)
+ {
+ List<SkillEmblem.RowData> skillRow = new List<SkillEmblem.RowData>();
+ XEmblemDocument specificDocument2 = XDocuments.GetSpecificDocument<XEmblemDocument>(XEmblemDocument.uuID);
+ bool flag6 = specificDocument2.IsEquipThisSkillEmblem(oArg.skillHash, ref skillRow);
+ bool flag7 = flag6;
+ if (flag7)
+ {
+ specificDocument.ShowTips(skillRow, true);
+ }
+ }
+ }
+ }
+ else
+ {
+ SkillList.RowData skillConfig = XSingleton<XSkillEffectMgr>.singleton.GetSkillConfig(oArg.skillHash, 0u);
+ bool flag8 = (ulong)oRes.errorcode == (ulong)((long)XFastEnumIntEqualityComparer<ErrorCode>.ToInt(ErrorCode.ERR_SKILL_POINT)) && skillConfig != null && skillConfig.IsAwake;
+ if (flag8)
+ {
+ XSingleton<UiUtility>.singleton.ShowItemAccess(XFastEnumIntEqualityComparer<ItemEnum>.ToInt(ItemEnum.AWAKE_SKILL_POINT), null);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip((ErrorCode)oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SkillLevelupArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs.meta new file mode 100644 index 00000000..4b094718 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkillLevelup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5870eb8b8fa2c284daffe26e2cbaa920 +timeCreated: 1611403754 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs new file mode 100644 index 00000000..66c42639 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SkyCityAllInfoReq
+ {
+ public static void OnReply(SkyCityArg oArg, SkyCityRes oRes)
+ {
+ XSkyArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XSkyArenaBattleDocument>(XSkyArenaBattleDocument.uuID);
+ specificDocument.SetBattleAllInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(SkyCityArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs.meta new file mode 100644 index 00000000..799c3853 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SkyCityAllInfoReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 170d62aca20a50b4c8e5e3037d963e0e +timeCreated: 1611403291 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs new file mode 100644 index 00000000..b0883378 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SmeltItem
+ {
+ public static void OnReply(SmeltItemArg oArg, SmeltItemRes oRes)
+ {
+ XSmeltDocument.Doc.OnSmeltBack(oRes);
+ }
+
+ public static void OnTimeout(SmeltItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs.meta new file mode 100644 index 00000000..749ec1f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SmeltItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 377bf7f1f94a2a649bfe825b6ef65f93 +timeCreated: 1611403565 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs new file mode 100644 index 00000000..81c0f7d8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SpriteOperation
+ {
+ public static void OnReply(SpriteOperationArg oArg, SpriteOperationRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSpriteSystemDocument specificDocument = XDocuments.GetSpecificDocument<XSpriteSystemDocument>(XSpriteSystemDocument.uuID);
+ specificDocument.OnSpriteOperation(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(SpriteOperationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs.meta new file mode 100644 index 00000000..5bc3f152 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SpriteOperation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 20dae044e5924804882f0ab8a7ad1353 +timeCreated: 1611403409 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs new file mode 100644 index 00000000..0d8fca32 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_StageCountReset
+ {
+ public static void OnReply(StageCountResetArg oArg, StageCountResetRes oRes)
+ {
+ XLevelDocument specificDocument = XDocuments.GetSpecificDocument<XLevelDocument>(XLevelDocument.uuID);
+ specificDocument.OnResetSceneSucc(oArg.groupid, oRes);
+ }
+
+ public static void OnTimeout(StageCountResetArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs.meta new file mode 100644 index 00000000..c46d3b4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StageCountReset.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7db572f0ee0c9bf40a063badadff28c8 +timeCreated: 1611404002 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs new file mode 100644 index 00000000..4a81d837 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_StartGuildCard
+ {
+ public static void OnReply(StartGuildCardArg oArg, StartGuildCardRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XGuildJokerDocument specificDocument = XDocuments.GetSpecificDocument<XGuildJokerDocument>(XGuildJokerDocument.uuID);
+ specificDocument.ShowCard(oRes.card, oRes.result, oRes.store);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(StartGuildCardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs.meta new file mode 100644 index 00000000..1cd5e692 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_StartGuildCard.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7b4b463cd6193f94cb3e56dd71407981 +timeCreated: 1611403993 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs new file mode 100644 index 00000000..cc9a6110 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SurviveReqC2G
+ {
+ public static void OnReply(SurviveReqArg oArg, SurviveReqRes oRes)
+ {
+ }
+
+ public static void OnTimeout(SurviveReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs.meta new file mode 100644 index 00000000..cefe369f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SurviveReqC2G.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e8729329a89aea0459f9980ff948c2a6 +timeCreated: 1611404753 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs new file mode 100644 index 00000000..81df9bf4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs @@ -0,0 +1,65 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_Sweep
+ {
+ public static void OnReply(SweepArg oArg, SweepRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oArg.sceneID != 0u && oArg.sceneID != 2010u;
+ if (flag2)
+ {
+ XSweepDocument specificDocument = XDocuments.GetSpecificDocument<XSweepDocument>(XSweepDocument.uuID);
+ specificDocument.GetReward(oRes);
+ DlgBase<DungeonSelect, DungeonSelectBehaviour>.singleton.OnGotSweepRes();
+ }
+ else
+ {
+ ErrorCode result = oRes.result;
+ if (result != ErrorCode.ERR_SUCCESS)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ bool flag3 = DlgBase<BossRushDlg, BossRushBehavior>.singleton.IsVisible();
+ if (flag3)
+ {
+ XSingleton<XGameSysMgr>.singleton.OpenSystem(XSysDefine.XSys_BossRush, 0UL);
+ }
+ bool flag4 = DlgBase<TheExpView, TheExpBehaviour>.singleton.IsVisible();
+ if (flag4)
+ {
+ XTeamDocument specificDocument2 = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument2.ReqTeamOp(TeamOperate.TEAM_QUERYCOUNT, 0UL, null, TeamMemberType.TMT_NORMAL, null);
+ DlgBase<TheExpView, TheExpBehaviour>.singleton.RefreshLeftCount();
+ }
+ bool flag5 = DlgBase<XDragonNestView, XDragonNestBehaviour>.singleton.IsVisible();
+ if (flag5)
+ {
+ XDragonNestDocument specificDocument3 = XDocuments.GetSpecificDocument<XDragonNestDocument>(XDragonNestDocument.uuID);
+ specificDocument3.SendReqDragonNestInfo();
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SweepArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs.meta new file mode 100644 index 00000000..a6306440 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_Sweep.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 212e75f5db5957e4aa9960ea1aebc5e7 +timeCreated: 1611403412 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs new file mode 100644 index 00000000..fa736b18 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SweepTower
+ {
+ public static void OnReply(SweepTowerArg oArg, SweepTowerRes oRes)
+ {
+ bool flag = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XExpeditionDocument specificDocument = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument.SweepSingleTowerRes(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(SweepTowerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs.meta new file mode 100644 index 00000000..86eef59c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SweepTower.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2ea64f246e1c0584cbb2e7159533b1d9 +timeCreated: 1611403510 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs new file mode 100644 index 00000000..a548444b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SynPetInfo
+ {
+ public static void OnReply(SynPetInfoArg oArg, SynPetInfoRes oRes)
+ {
+ XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
+ specificDocument.OnPetInfo(oArg, oRes);
+ }
+
+ public static void OnTimeout(SynPetInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs.meta new file mode 100644 index 00000000..8a7100a8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SynPetInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e0703ed89665a5347b13a3c8a63152fb +timeCreated: 1611404697 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs new file mode 100644 index 00000000..c4d8a61e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs @@ -0,0 +1,21 @@ +using System;
+using KKSG;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_SyncTime
+ {
+ public static long Ticks = 0L;
+
+ public static void OnReply(SyncTimeArg oArg, SyncTimeRes oRes)
+ {
+ XSingleton<XServerTimeMgr>.singleton.OnSyncTime(oArg.time, Process_RpcC2G_SyncTime.Ticks);
+ }
+
+ public static void OnTimeout(SyncTimeArg oArg)
+ {
+ XSingleton<XServerTimeMgr>.singleton.OnSyncTimeout();
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs.meta new file mode 100644 index 00000000..073488fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_SyncTime.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9ec8b9a732888984899a7c703dc467b3 +timeCreated: 1611404242 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs new file mode 100644 index 00000000..577f020e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TactEnterScene
+ {
+ public static void OnReply(TactEnterSceneArg oArg, TactEnterSceneRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(TactEnterSceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs.meta new file mode 100644 index 00000000..575aa673 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TactEnterScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2243a8eb30c9a09448060ebb2be9111f +timeCreated: 1611403421 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs new file mode 100644 index 00000000..d4ba09c2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TakeDragonGuildChest
+ {
+ public static void OnReply(TakePartnerChestArg oArg, TakePartnerChestRes oRes)
+ {
+ bool flag = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.result);
+ }
+ else
+ {
+ XDragonGuildDocument.DragonGuildLivenessData.OnTakeDragonGuildChestBack(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(TakePartnerChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs.meta new file mode 100644 index 00000000..b092796e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeDragonGuildChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a87e8f9ac4ba21f48a1ca50427dd5c31 +timeCreated: 1611404296 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs new file mode 100644 index 00000000..2d0ae959 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TakeOffAllJade
+ {
+ public static void OnReply(TakeOffAllJadeArg oArg, TakeOffAllJadeRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(TakeOffAllJadeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs.meta new file mode 100644 index 00000000..204c3b61 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJade.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: db84646ae43d8f244b64ebf29a81488f +timeCreated: 1611404653 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs new file mode 100644 index 00000000..12b2d66d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TakeOffAllJadeNew
+ {
+ public static void OnReply(TakeOffAllJadeNewArg oArg, TakeOffAllJadeNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(TakeOffAllJadeNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs.meta new file mode 100644 index 00000000..8873b3eb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakeOffAllJadeNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 25c4416a4c4af3a4ea016d8f9a8c88bf +timeCreated: 1611403466 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs new file mode 100644 index 00000000..fda1ceaa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TakePartnerChest
+ {
+ public static void OnReply(TakePartnerChestArg oArg, TakePartnerChestRes oRes)
+ {
+ XPartnerDocument.PartnerLivenessData.OnTakePartnerChestBack((int)oArg.index, oRes);
+ }
+
+ public static void OnTimeout(TakePartnerChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs.meta new file mode 100644 index 00000000..c99ea0e9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TakePartnerChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: badb4e6b98e79f0489b1208dc0c7623e +timeCreated: 1611404438 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs new file mode 100644 index 00000000..a9ad964b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs @@ -0,0 +1,62 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TaskOperate
+ {
+ public static void OnReply(TaskOPArg oArg, TaskOPRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ bool result = oRes.result;
+ if (result)
+ {
+ bool flag3 = oArg.taskOP == 1;
+ if (flag3)
+ {
+ bool flag4 = DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.IsVisible();
+ if (flag4)
+ {
+ XTaskDocument specificDocument = XDocuments.GetSpecificDocument<XTaskDocument>(XTaskDocument.uuID);
+ XTaskInfo taskInfo = specificDocument.GetTaskInfo((uint)oArg.taskID);
+ bool flag5 = DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.CanAutoContinue(taskInfo);
+ if (flag5)
+ {
+ DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.ShowNpcDialog(DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.m_npc);
+ }
+ else
+ {
+ DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.SetVisible(false, true);
+ }
+ }
+ }
+ bool flag6 = oArg.taskOP == 2;
+ if (flag6)
+ {
+ DlgBase<DramaDlg, DramaDlgBehaviour>.singleton.SetVisible(false, true);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(TaskOPArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs.meta new file mode 100644 index 00000000..1e2a8e71 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TaskOperate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cdf9a73d6d5670c488adc068aa6c2c25 +timeCreated: 1611404577 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs new file mode 100644 index 00000000..841aef1c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TeamInviteListReq
+ {
+ public static void OnReply(TeamInviteArg oArg, TeamInviteRes oRes)
+ {
+ bool flag = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ specificDocument.OnGetInviteList(oRes);
+ }
+ }
+
+ public static void OnTimeout(TeamInviteArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs.meta new file mode 100644 index 00000000..81569d11 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TeamInviteListReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e1dbb70ffb54a5941b3a53c1ae57f8e9 +timeCreated: 1611404703 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs new file mode 100644 index 00000000..8a3fb372 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ThanksForBonus
+ {
+ public static void OnReply(ThanksForBonusArg oArg, ThanksForBonusRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XQuickReplyDocument specificDocument = XDocuments.GetSpecificDocument<XQuickReplyDocument>(XQuickReplyDocument.uuID);
+ specificDocument.OnThankForBonus(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ThanksForBonusArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs.meta new file mode 100644 index 00000000..f06163a7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThanksForBonus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7c167300fd8250548b8f5392d53f6065 +timeCreated: 1611403995 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs new file mode 100644 index 00000000..e4946179 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_ThemeActivityHint
+ {
+ public static void OnReply(ThemeActivityHintArg oArg, ThemeActivityHintRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(ThemeActivityHintArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs.meta new file mode 100644 index 00000000..b85d515c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_ThemeActivityHint.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dce71fbcb162b734ba81910e2626070c +timeCreated: 1611404680 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs new file mode 100644 index 00000000..24494d6d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TitleLevelUp
+ {
+ public static void OnReply(TitleLevelUpArg oArg, TitleLevelUpRes oRes)
+ {
+ XTitleDocument specificDocument = XDocuments.GetSpecificDocument<XTitleDocument>(XTitleDocument.uuID);
+ specificDocument.OnGetTitleLevelUp(oRes);
+ }
+
+ public static void OnTimeout(TitleLevelUpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs.meta new file mode 100644 index 00000000..61a2326b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TitleLevelUp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c87723f7319c80040b8dc7cc909a002d +timeCreated: 1611404534 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs new file mode 100644 index 00000000..457fcbb9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TransformOp
+ {
+ public static void OnReply(TransformOpArg oArg, TransformOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTransformDocument specificDocument = XDocuments.GetSpecificDocument<XTransformDocument>(XTransformDocument.uuID);
+ specificDocument.OnGetTransformOp(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(TransformOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs.meta new file mode 100644 index 00000000..60711a23 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TransformOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 65998467695fa3b4f80e1b0af63606f5 +timeCreated: 1611403851 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs new file mode 100644 index 00000000..bc6c470d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_TurnOverWeeklyTaskItem
+ {
+ public static void OnReply(TurnOverWeeklyTaskItemArg oArg, TurnOverWeeklyTaskItemRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XGuildWeeklyBountyDocument.Doc.OnTurnOverWeeklyTaskReply(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+
+ public static void OnTimeout(TurnOverWeeklyTaskItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs.meta new file mode 100644 index 00000000..d5156152 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_TurnOverWeeklyTaskItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c415cb63205198b40956bb01ff21aab0 +timeCreated: 1611404499 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs new file mode 100644 index 00000000..470f023d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_UpgradeEquip
+ {
+ public static void OnReply(UpgradeEquipArg oArg, UpgradeEquipRes oRes)
+ {
+ EquipUpgradeDocument.Doc.OnUpgradeBack(oRes);
+ }
+
+ public static void OnTimeout(UpgradeEquipArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs.meta new file mode 100644 index 00000000..a2716d05 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UpgradeEquip.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 21f62dc66282f4f408e7669ae92918e2 +timeCreated: 1611403416 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs new file mode 100644 index 00000000..3c07ed1d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs @@ -0,0 +1,99 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_UseItem
+ {
+ public static void OnReply(UseItemArg oArg, UseItemRes oRes)
+ {
+ bool flag = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ XEquipCreateDocument.Doc.IsCreating = false;
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.ErrorCode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XTutorialHelper>.singleton.UseItem = true;
+ bool flag3 = oArg.OpType == 7u;
+ if (flag3)
+ {
+ bool flag4 = DlgBase<ItemSystemDlg, TabDlgBehaviour>.singleton.IsVisible();
+ if (flag4)
+ {
+ DlgBase<ItemSystemDlg, TabDlgBehaviour>.singleton.PlayUseItemEffect(true);
+ }
+ ItemBuffTable.RowData itembuffDataByID = XHomeCookAndPartyDocument.Doc.GetItembuffDataByID(oArg.itemID);
+ bool flag5 = itembuffDataByID != null;
+ if (flag5)
+ {
+ BuffTable.RowData buffData = XSingleton<XBuffTemplateManager>.singleton.GetBuffData((int)itembuffDataByID.Buffs[0, 0], (int)itembuffDataByID.Buffs[0, 1]);
+ bool flag6 = buffData != null;
+ if (flag6)
+ {
+ double num = Math.Round((double)(buffData.BuffDuration / 3600f), 1);
+ string text = string.Format(XSingleton<XStringTable>.singleton.GetString("FoodBuffTip"), itembuffDataByID.Name, buffData.BuffName, num);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(text, "fece00");
+ }
+ }
+ }
+ else
+ {
+ bool flag7 = oArg.OpType == 12u;
+ if (flag7)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("FASHION_STORAGE_SUCCESS"), "fece00");
+ }
+ else
+ {
+ bool flag8 = oArg.itemID > 0u;
+ if (flag8)
+ {
+ ItemList.RowData itemConf = XBagDocument.GetItemConf((int)oArg.itemID);
+ bool flag9 = (int)itemConf.ItemType == XFastEnumIntEqualityComparer<ItemType>.ToInt(ItemType.Tarja);
+ if (flag9)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("USE_ITEM_SUCCESS_TARJA"), "fece00");
+ }
+ }
+ }
+ }
+ bool flag10 = oRes.expand != null;
+ if (flag10)
+ {
+ XBagDocument.BagDoc.SetBagExpandData(oRes.expand, true);
+ }
+ }
+ bool flag11 = ItemUseMgr.GetItemUseValue(ItemUse.Composite) == oArg.OpType;
+ if (flag11)
+ {
+ XEquipCreateDocument.Doc.OnReqCreateEquipSet(oArg, oRes);
+ }
+ else
+ {
+ XCharacterItemDocument specificDocument = XDocuments.GetSpecificDocument<XCharacterItemDocument>(XCharacterItemDocument.uuID);
+ specificDocument.OnUseItem(oArg, oRes);
+ ArtifactBagDocument.Doc.OnUseItem(oArg, oRes);
+ bool flag12 = oRes.ErrorCode > ErrorCode.ERR_SUCCESS;
+ if (flag12)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ErrorCode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(UseItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs.meta new file mode 100644 index 00000000..bb401e4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3bf83f35f96eb2346a701375e5c2a3da +timeCreated: 1611403601 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs new file mode 100644 index 00000000..2f725e41 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs @@ -0,0 +1,25 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_UseSupplement
+ {
+ public static void OnReply(UseSupplementReq oArg, UseSupplementRes oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+
+ public static void OnTimeout(UseSupplementReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs.meta new file mode 100644 index 00000000..edefe8bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_UseSupplement.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e139edd4d7e825547bfbd26508b6800c +timeCreated: 1611404700 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs new file mode 100644 index 00000000..d4c81878 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_VsPayReviveReq
+ {
+ public static void OnReply(VsPayRevivePara oArg, VsPayReviveRes oRes)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.ReceiveVSPayRevive(oArg, oRes);
+ }
+
+ public static void OnTimeout(VsPayRevivePara oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs.meta new file mode 100644 index 00000000..d57e66c5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_VsPayReviveReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eb893bb075fecf349934c180364468b0 +timeCreated: 1611404784 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs new file mode 100644 index 00000000..3a0f6265 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs @@ -0,0 +1,29 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_WeddingOperator
+ {
+ public static void OnReply(WeddingOperatorArg oArg, WeddingOperatorRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnWeddingSceneOperator(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(WeddingOperatorArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs.meta new file mode 100644 index 00000000..5b9f44b0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeddingOperator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2546d943fcfb69844b04881f3ec12c79 +timeCreated: 1611403464 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs new file mode 100644 index 00000000..8d1db4c2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_WeekEnd4v4GetInfo
+ {
+ public static void OnReply(WeekEnd4v4GetInfoArg oArg, WeekEnd4v4GetInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeekendPartyDocument specificDocument = XDocuments.GetSpecificDocument<XWeekendPartyDocument>(XWeekendPartyDocument.uuID);
+ specificDocument.OnGetWeekendPartyInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(WeekEnd4v4GetInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs.meta new file mode 100644 index 00000000..b466f312 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_WeekEnd4v4GetInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 68a11f10b76c86644826c533b09cab9e +timeCreated: 1611403883 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs new file mode 100644 index 00000000..81d96865 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_breakAtlas
+ {
+ public static void OnReply(breakAtlas oArg, breakAtlasRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XCardCollectDocument specificDocument = XDocuments.GetSpecificDocument<XCardCollectDocument>(XCardCollectDocument.uuID);
+ specificDocument.OnBreak(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(breakAtlas oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs.meta new file mode 100644 index 00000000..9609fc3a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_breakAtlas.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f71eec651b6f6f14c9b2069c37ea3833 +timeCreated: 1611404885 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs new file mode 100644 index 00000000..ead18fae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs @@ -0,0 +1,38 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2I_QueryGateIP
+ {
+ public static void OnReply(QueryGateArg oArg, QueryGateRes oRes)
+ {
+ bool flag = XSingleton<XClientNetwork>.singleton.OnAuthorized(oArg, oRes);
+ if (flag)
+ {
+ XSingleton<XLoginDocument>.singleton.SetAnnouncement(oRes.notice);
+ XSingleton<XLoginDocument>.singleton.OnAuthorized(oRes.userphone);
+ XSingleton<XLoginDocument>.singleton.SetGateIPTable(oRes.servers, oRes.gateconfig, oRes.allservers);
+ XSingleton<XLoginDocument>.singleton.SetFriendServerList(oRes.platFriendServers);
+ XSingleton<XLoginDocument>.singleton.SetLoginZoneID(oRes.loginzoneid);
+ XSingleton<XLoginDocument>.singleton.SetFreeflow(oRes.freeflow, oRes.cctype);
+ }
+ else
+ {
+ XSingleton<XLoginDocument>.singleton.OnAuthorizedFailed();
+ bool flag2 = oRes.error == ErrorCode.ERR_PLAT_BANACC;
+ if (flag2)
+ {
+ string format = oRes.baninfo.reason + "\n" + XSingleton<UiUtility>.singleton.ReplaceReturn(XStringDefineProxy.GetString(oRes.error.ToString()));
+ XSingleton<UiUtility>.singleton.ShowModalDialog(string.Format(format, XSingleton<UiUtility>.singleton.TimeFormatSince1970((int)oRes.baninfo.endtime, XStringDefineProxy.GetString("IDIP_TIPS_TIME"), true)), XStringDefineProxy.GetString("COMMON_OK"), null, 300);
+ }
+ }
+ }
+
+ public static void OnTimeout(QueryGateArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs.meta new file mode 100644 index 00000000..e61d8447 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2I_QueryGateIP.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 49d901b937073db4dbad86cf67a576a5 +timeCreated: 1611403662 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs new file mode 100644 index 00000000..7bdecd24 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AceptGuildInherit
+ {
+ public static void OnReply(AceptGuildInheritArg oArg, AceptGuildInheritRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.ReceiveAccpetInherit(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AceptGuildInheritArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs.meta new file mode 100644 index 00000000..a7aedad9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AceptGuildInherit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 83805386a12fed644b567629203dbd94 +timeCreated: 1611404045 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs new file mode 100644 index 00000000..a9397458 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs @@ -0,0 +1,52 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ActiveCookbook
+ {
+ public static void OnReply(ActiveCookbookArg oArg, ActiveCookbookRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ CookingFoodInfo.RowData cookInfoByCuisineID = XHomeCookAndPartyDocument.Doc.GetCookInfoByCuisineID(oRes.food_id);
+ bool flag4 = cookInfoByCuisineID != null;
+ if (flag4)
+ {
+ string label = XStringDefineProxy.GetString("CookMenuActiveSuccess") + "[00ff00]" + cookInfoByCuisineID.FoodName + "[-]";
+ XSingleton<UiUtility>.singleton.ShowModalDialog(label, XStringDefineProxy.GetString("COMMON_OK"));
+ XHomeCookAndPartyDocument.Doc.AddNewCookItem(oRes.food_id);
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ActiveCookbookArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs.meta new file mode 100644 index 00000000..09c6e381 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ActiveCookbook.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 91b46aa5e0b21b7429133f22f38fe44e +timeCreated: 1611404143 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs new file mode 100644 index 00000000..d9cb1c19 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs @@ -0,0 +1,36 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AddBlackListNew
+ {
+ public static void OnReply(AddBlackListArg oArg, AddBlackListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.AddBlockFriendRes(oRes.black);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(AddBlackListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs.meta new file mode 100644 index 00000000..ab952a24 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddBlackListNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a1fdbeb5ca06dd6449e5281460601891 +timeCreated: 1611404255 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs new file mode 100644 index 00000000..bc702a9d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AddFriendNew
+ {
+ public static void OnReply(AddFriendArg oArg, AddFriendRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.AddFriendRes(oRes.errorcode, oArg.friendroleid);
+ }
+ }
+
+ public static void OnTimeout(AddFriendArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs.meta new file mode 100644 index 00000000..6e44d3ba --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddFriendNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 70200628bf24d164a8b3a41e95ec3183 +timeCreated: 1611403930 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs new file mode 100644 index 00000000..79553735 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AddGuildInherit
+ {
+ public static void OnReply(AddGuildInheritArg oArg, AddGuildInheritRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.ReceiveReqInherit(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AddGuildInheritArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs.meta new file mode 100644 index 00000000..677b9646 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AddGuildInherit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3fab38d92399baf4f9b78a3da5614986 +timeCreated: 1611403612 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs new file mode 100644 index 00000000..01fb0d56 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AdjustGuildArenaRolePosNew
+ {
+ public static void OnReply(AdjustGuildArenaRolePosArg oArg, AdjustGuildArenaRolePosRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+ }
+
+ public static void OnTimeout(AdjustGuildArenaRolePosArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs.meta new file mode 100644 index 00000000..ec2c660b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AdjustGuildArenaRolePosNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fb2b4e6c84bdf6d46a0844da78bbf523 +timeCreated: 1611404930 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs new file mode 100644 index 00000000..9ba4a405 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AllianceGuildTerr
+ {
+ public static void OnReply(AllianceGuildTerrArg oArg, AllianceGuildTerrRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveAllianceGuildTerr(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(AllianceGuildTerrArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs.meta new file mode 100644 index 00000000..409710c7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AllianceGuildTerr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 626f273c975e1cc42a1422ecc91d230c +timeCreated: 1611403841 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs new file mode 100644 index 00000000..8b6fdb69 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ArenaStarRoleReq
+ {
+ public static void OnReply(ArenaStarReqArg oArg, ArenaStarReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XHallFameDocument.Doc.OnGetStarRoleInfo(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ArenaStarReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs.meta new file mode 100644 index 00000000..664cf4cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ArenaStarRoleReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ee0574ca3e5923646a45df82467ba286 +timeCreated: 1611404794 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs new file mode 100644 index 00000000..2e25ec69 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskDragonGuildMembers
+ {
+ public static void OnReply(DragonGuildMemberArg oArg, DragonGuildMemberRes oRes)
+ {
+ XDragonGuildDocument.Doc.OnGetMemberList(oRes);
+ }
+
+ public static void OnTimeout(DragonGuildMemberArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs.meta new file mode 100644 index 00000000..0a0813f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskDragonGuildMembers.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cd423dd9547138a409753e868cb5346f +timeCreated: 1611404553 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs new file mode 100644 index 00000000..6f15cce2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildArenaInfoNew
+ {
+ public static void OnReply(AskGuildArenaInfoArg oArg, AskGuildArenaInfoReq oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.OnGuildArenaInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AskGuildArenaInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs.meta new file mode 100644 index 00000000..14dd52fc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaInfoNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eebf0ce55a6019346acf8930cdfe7f45 +timeCreated: 1611404799 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs new file mode 100644 index 00000000..04199eb5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildArenaTeamInfoNew
+ {
+ public static void OnReply(AskGuildArenaTeamInfoArg oArg, AskGuildArenaTeamInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+ }
+
+ public static void OnTimeout(AskGuildArenaTeamInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs.meta new file mode 100644 index 00000000..85d67bdf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildArenaTeamInfoNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 797204e4a5ffa03449cc6e5a653cbcb4 +timeCreated: 1611403985 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs new file mode 100644 index 00000000..a3ff2649 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs @@ -0,0 +1,49 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildBriefInfo
+ {
+ public static void OnReply(GuildBriefArg oArg, GuildBriefRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oArg.guildid == 0UL;
+ if (flag3)
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ specificDocument.OnGuildBrief(oRes);
+ XGuildApproveDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildApproveDocument>(XGuildApproveDocument.uuID);
+ specificDocument2.OnGuildBrief(oRes);
+ }
+ else
+ {
+ XGuildViewDocument specificDocument3 = XDocuments.GetSpecificDocument<XGuildViewDocument>(XGuildViewDocument.uuID);
+ specificDocument3.OnGuildBrief(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildBriefArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs.meta new file mode 100644 index 00000000..1c5a3e01 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildBriefInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 575f5289e76bb9443b4f22194742b3f4 +timeCreated: 1611403749 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs new file mode 100644 index 00000000..c4f19fdf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs @@ -0,0 +1,47 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildMembers
+ {
+ public static void OnReply(GuildMemberArg oArg, GuildMemberRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oArg.guildid == 0UL;
+ if (flag3)
+ {
+ XGuildMemberDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMemberDocument>(XGuildMemberDocument.uuID);
+ specificDocument.onGetMemberList(oRes);
+ }
+ else
+ {
+ XGuildViewDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildViewDocument>(XGuildViewDocument.uuID);
+ specificDocument2.onGetMemberList(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildMemberArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs.meta new file mode 100644 index 00000000..4b14b4b0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildMembers.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 99daf25b565020f47ad383747de29f19 +timeCreated: 1611404198 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs new file mode 100644 index 00000000..e83954b0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildSkillInfoNew
+ {
+ public static void OnReply(AskGuildSkillInfoArg oArg, AskGuildSkillInfoReq oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSkillDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSkillDocument>(XGuildSkillDocument.uuID);
+ specificDocument.OnSkillList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AskGuildSkillInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs.meta new file mode 100644 index 00000000..ba607778 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildSkillInfoNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7439eb913307ce14cb45eb7418f792c5 +timeCreated: 1611403943 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs new file mode 100644 index 00000000..e552aba0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AskGuildWageInfo
+ {
+ public static void OnReply(AskGuildWageInfoArg oArg, AskGuildWageInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildSalaryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSalaryDocument>(XGuildSalaryDocument.uuID);
+ specificDocument.ReceiveAskGuildWageInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(AskGuildWageInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs.meta new file mode 100644 index 00000000..78877a4c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AskGuildWageInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 889c058812d698d4b866382e6551a092 +timeCreated: 1611404085 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs new file mode 100644 index 00000000..b4c7fe9b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_AuctionAllReq
+ {
+ public static void OnReply(AuctionAllReqArg oArg, AuctionAllReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ AuctionDocument specificDocument = XDocuments.GetSpecificDocument<AuctionDocument>(AuctionDocument.uuID);
+ specificDocument.ReceiveAuctionResponse(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(AuctionAllReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs.meta new file mode 100644 index 00000000..bb43fde2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_AuctionAllReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5e83b19d5b5dcb438ea9aa606a263f3 +timeCreated: 1611404629 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs new file mode 100644 index 00000000..53dc7101 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_BuyDragonGuildShopItem
+ {
+ public static void OnReply(BuyDragonGuildShopItemArg oArg, BuyDragonGuildShopItemRes oRes)
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetBuy(oArg, oRes);
+ }
+
+ public static void OnTimeout(BuyDragonGuildShopItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs.meta new file mode 100644 index 00000000..b62ac40c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyDragonGuildShopItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aa070f29db2e6614aa7309448598f9eb +timeCreated: 1611404301 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs new file mode 100644 index 00000000..910192d5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_BuyPartnerShopItem
+ {
+ public static void OnReply(BuyPartnerShopItemArg oArg, BuyPartnerShopItemRes oRes)
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetBuy(oArg, oRes);
+ }
+
+ public static void OnTimeout(BuyPartnerShopItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs.meta new file mode 100644 index 00000000..9efa7024 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_BuyPartnerShopItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 16ade5b5fffed5347b9425d02f1dcb61 +timeCreated: 1611403290 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs new file mode 100644 index 00000000..49fd0403 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CancelLeavePartner
+ {
+ public static void OnReply(CancelLeavePartnerArg oArg, CancelLeavePartnerRes oRes)
+ {
+ XPartnerDocument.Doc.OnCancleLeavePartnerBack(oRes);
+ }
+
+ public static void OnTimeout(CancelLeavePartnerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs.meta new file mode 100644 index 00000000..99b32881 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CancelLeavePartner.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 228f8eadbb1fd3747a62a205128dfbc0 +timeCreated: 1611403423 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs new file mode 100644 index 00000000..396afd20 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ChangeDragonGuildPosition
+ {
+ public static void OnReply(ChangeDragonGuildPositionArg oArg, ChangeDragonGuildPositionRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnChangePosition(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeDragonGuildPositionArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs.meta new file mode 100644 index 00000000..afb26d89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildPosition.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 94ee2715e1e509a4080cdd742d2821ec +timeCreated: 1611404157 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs new file mode 100644 index 00000000..1451acd7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ChangeDragonGuildSetting
+ {
+ public static void OnReply(ChangeDragonGuildSettingArg oArg, ChangeDragonGuildSettingRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeDragonGuildSettingArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs.meta new file mode 100644 index 00000000..876145da --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeDragonGuildSetting.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3ec116fc1e16df24abf308db6fa60e1e +timeCreated: 1611403609 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs new file mode 100644 index 00000000..ba5c7ccc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ChangeGuildSettingNew
+ {
+ public static void OnReply(ChangeGuildSettingArg oArg, ChangeGuildSettingRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ specificDocument.OnEditAnnounceSuccess(oArg.annoucement);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeGuildSettingArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs.meta new file mode 100644 index 00000000..3aa466e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeGuildSettingNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 15f8be34f591d8c41afdf79efc98e84d +timeCreated: 1611403267 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs new file mode 100644 index 00000000..a7c6c45e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ChangeMemberPositionNew
+ {
+ public static void OnReply(ChangeGuildPositionArg oArg, ChangeGuildPositionRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildMemberDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMemberDocument>(XGuildMemberDocument.uuID);
+ specificDocument.OnChangePosition(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ChangeGuildPositionArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs.meta new file mode 100644 index 00000000..e1b21f22 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeMemberPositionNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7819c5292edf3ce4e82c6f18d2c05b7a +timeCreated: 1611403957 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs new file mode 100644 index 00000000..a7085fc4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ChangeNameNew
+ {
+ public static void OnReply(ChangeNameArg oArg, ChangeNameRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
+ specificDocument.ReceivePlayerCostRename(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ChangeNameArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs.meta new file mode 100644 index 00000000..ffb74f0b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ChangeNameNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9a35a12ea9aa1404a8b2df1017a62783 +timeCreated: 1611404199 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs new file mode 100644 index 00000000..5b17be0b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CheckRoleBeforePay
+ {
+ public static void OnReply(CheckRoleBeforePayArg oArg, CheckRoleBeforePayRes oRes)
+ {
+ }
+
+ public static void OnTimeout(CheckRoleBeforePayArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs.meta new file mode 100644 index 00000000..0f07dbd2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CheckRoleBeforePay.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9c6f5e06115631440a960410714ac929 +timeCreated: 1611404232 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs new file mode 100644 index 00000000..d1fe0666 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ClearGuildTerrAlliance
+ {
+ public static void OnReply(ClearGuildTerrAllianceArg oArg, ClearGuildTerrAllianceRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveClearGuildTerrAlliance(oRes);
+ }
+ }
+
+ public static void OnTimeout(ClearGuildTerrAllianceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs.meta new file mode 100644 index 00000000..061c36ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearGuildTerrAlliance.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: de09f83328c00f24390afab3a26fe2e3 +timeCreated: 1611404685 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs new file mode 100644 index 00000000..c498dbab --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ClearPrivateChatList
+ {
+ public static void OnReply(ClearPrivateChatListArg oArg, ClearPrivateChatListRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ClearPrivateChatListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs.meta new file mode 100644 index 00000000..aecb9b03 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClearPrivateChatList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 213dab1391112fa4db1d5fc0d6804f28 +timeCreated: 1611403412 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs new file mode 100644 index 00000000..912b1642 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs @@ -0,0 +1,39 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ClickNewNotice
+ {
+ public static void OnReply(ClickNewNoticeArg oArg, ClickNewNoticeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ oArg.info.isnew = false;
+ uint type = oArg.info.type;
+ if (type == 5u)
+ {
+ bool flag2 = XSingleton<XGameSysMgr>.singleton.IsSystemOpened(XSysDefine.XSys_Patface);
+ if (flag2)
+ {
+ DlgBase<XPatfaceView, XPatfaceBehaviour>.singleton.ShowPatface();
+ }
+ }
+ XAnnouncementDocument specificDocument = XDocuments.GetSpecificDocument<XAnnouncementDocument>(XAnnouncementDocument.uuID);
+ specificDocument.RefreshRedPoint();
+ }
+ }
+
+ public static void OnTimeout(ClickNewNoticeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs.meta new file mode 100644 index 00000000..3d620d66 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClickNewNotice.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7a77e77c34d99ef47a2e30e96c99afa7 +timeCreated: 1611403989 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs new file mode 100644 index 00000000..9c02f8f0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs @@ -0,0 +1,163 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ClientQueryRankListNtf
+ {
+ public static void OnReply(ClientQueryRankListArg oArg, ClientQueryRankListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ErrorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ switch (oRes.RankType)
+ {
+ case 0u:
+ case 1u:
+ return;
+ case 2u:
+ case 38u:
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetLatestRankInfo(oRes);
+ return;
+ }
+ case 3u:
+ {
+ bool flag3 = oArg.TimeStamp == 1u;
+ if (flag3)
+ {
+ XWorldBossDocument specificDocument2 = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument2.OnGetLatestRankInfo(oRes);
+ }
+ else
+ {
+ XRankDocument specificDocument3 = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument3.OnGetRankList(oRes);
+ }
+ return;
+ }
+ case 6u:
+ case 14u:
+ case 15u:
+ case 20u:
+ case 32u:
+ {
+ XFlowerRankDocument specificDocument4 = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument4.OnGetRankList(oRes);
+ return;
+ }
+ case 8u:
+ {
+ XGuildDragonDocument specificDocument5 = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument5.OnGuildBossRoleRank(oRes);
+ return;
+ }
+ case 9u:
+ case 10u:
+ case 31u:
+ {
+ bool flag4 = oArg.TimeStamp == 1u;
+ if (flag4)
+ {
+ XQualifyingDocument specificDocument6 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument6.OnGetRankInfo(oRes, (int)oArg.profession);
+ }
+ else
+ {
+ XRankDocument specificDocument7 = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument7.OnGetRankList(oRes);
+ }
+ return;
+ }
+ case 16u:
+ FirstPassDocument.Doc.OnGetRankList(oRes);
+ return;
+ case 21u:
+ XWeekNestDocument.Doc.OnGetRankList(oRes, false);
+ return;
+ case 24u:
+ {
+ XHeroBattleDocument specificDocument8 = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument8.SetRankInfo(oRes, false);
+ return;
+ }
+ case 25u:
+ {
+ XMilitaryRankDocument specificDocument9 = XDocuments.GetSpecificDocument<XMilitaryRankDocument>(XMilitaryRankDocument.uuID);
+ specificDocument9.OnGetRankInfo(oRes);
+ return;
+ }
+ case 26u:
+ {
+ XQualifyingDocument specificDocument10 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument10.OnGetLastSeasonRankInfo(oRes);
+ return;
+ }
+ case 27u:
+ XWeekNestDocument.Doc.OnGetRankList(oRes, true);
+ return;
+ case 28u:
+ {
+ XHeroBattleDocument specificDocument11 = XDocuments.GetSpecificDocument<XHeroBattleDocument>(XHeroBattleDocument.uuID);
+ specificDocument11.SetRankInfo(oRes, true);
+ return;
+ }
+ case 34u:
+ {
+ BiochemicalHellDogDocument specificDocument12 = XDocuments.GetSpecificDocument<BiochemicalHellDogDocument>(BiochemicalHellDogDocument.uuID);
+ specificDocument12.ReceiveRankList(oRes);
+ return;
+ }
+ case 35u:
+ {
+ XCompeteDocument specificDocument13 = XDocuments.GetSpecificDocument<XCompeteDocument>(XCompeteDocument.uuID);
+ specificDocument13.OnGetRankList(oRes, false);
+ return;
+ }
+ case 39u:
+ {
+ bool onlySelfData = oArg.onlySelfData;
+ if (onlySelfData)
+ {
+ XRiftDocument specificDocument14 = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ bool flag5 = oRes.RoleRankData != null;
+ if (flag5)
+ {
+ specificDocument14.ResRank((int)oRes.RoleRankData.Rank);
+ }
+ else
+ {
+ specificDocument14.ResRank(-1);
+ }
+ return;
+ }
+ break;
+ }
+ }
+ XRankDocument specificDocument15 = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument15.OnGetRankList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ClientQueryRankListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs.meta new file mode 100644 index 00000000..ad5c343b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ClientQueryRankListNtf.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 702ad40e010288b4ea1e519f4808b11a +timeCreated: 1611403930 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs new file mode 100644 index 00000000..8524474c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CreateOrEnterGuild
+ {
+ public static void OnReply(CreateOrJoinGuild oArg, CreateOrJoinGuildRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildListDocument specificDocument = XDocuments.GetSpecificDocument<XGuildListDocument>(XGuildListDocument.uuID);
+ bool iscreate = oArg.iscreate;
+ if (iscreate)
+ {
+ specificDocument.OnCreateGuild(oArg, oRes);
+ }
+ else
+ {
+ specificDocument.OnApplyGuild(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(CreateOrJoinGuild oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs.meta new file mode 100644 index 00000000..d91f1719 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrEnterGuild.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3de9db99348bfe14c9f96d23285f947f +timeCreated: 1611403605 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs new file mode 100644 index 00000000..9ebd854c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CreateOrJoinDragonGuild
+ {
+ public static void OnReply(CreateOrJoinDragonGuildArg oArg, CreateOrJoinDragonGuildRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool iscreate = oArg.iscreate;
+ if (iscreate)
+ {
+ XDragonGuildListDocument.Doc.OnCreateDragonGuild(oArg, oRes);
+ }
+ else
+ {
+ XDragonGuildListDocument.Doc.OnApplyDragonGuild(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(CreateOrJoinDragonGuildArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs.meta new file mode 100644 index 00000000..e89f685a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateOrJoinDragonGuild.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 038315472937e0a4bbc5914d7026b260 +timeCreated: 1611402959 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs new file mode 100644 index 00000000..3f011702 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs @@ -0,0 +1,60 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CreateRoleNew
+ {
+ public static void OnReply(CreateRoleNewArg oArg, CreateRoleNewRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSingleton<XLoginDocument>.singleton.SetBlockUIVisable(false);
+ ErrorCode result = oRes.result;
+ if (result <= ErrorCode.ERR_INVALID_NAME)
+ {
+ if (result == ErrorCode.ERR_SUCCESS)
+ {
+ RpcC2M_SelectRoleNew rpcC2M_SelectRoleNew = new RpcC2M_SelectRoleNew();
+ rpcC2M_SelectRoleNew.oArg.index = (int)(oArg.type) % 10 - (int)RoleType.Role_Warrior;
+ XSingleton<XClientNetwork>.singleton.Send(rpcC2M_SelectRoleNew);
+ return;
+ }
+ if (result - ErrorCode.ERR_NAME_EXIST > 1)
+ {
+ goto IL_D3;
+ }
+ }
+ else if (result != ErrorCode.ERR_WORD_FORBID && result - ErrorCode.ERR_NAME_ALLNUM > 2)
+ {
+ goto IL_D3;
+ }
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ return;
+ IL_D3:
+ XSingleton<XClientNetwork>.singleton.OnServerErrorNotify((uint)oRes.result, null);
+ }
+ }
+ }
+
+ public static void OnTimeout(CreateRoleNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs.meta new file mode 100644 index 00000000..40c54a4e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CreateRoleNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e30fcacb61488da4aaa903f4fde3a292 +timeCreated: 1611404730 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs new file mode 100644 index 00000000..751af8af --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CrossGvgOper
+ {
+ public static void OnReply(CrossGvgOperArg oArg, CrossGvgOperRes oRes)
+ {
+ XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
+ specificDocument.NotifyCrossGVGOper(oArg, oRes);
+ }
+
+ public static void OnTimeout(CrossGvgOperArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs.meta new file mode 100644 index 00000000..16cc3d4b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CrossGvgOper.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 71d870098833416439f09d4bdefdbe5b +timeCreated: 1611403936 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs new file mode 100644 index 00000000..88afdd85 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs @@ -0,0 +1,42 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_CustomBattleOp
+ {
+ public static void OnReply(CustomBattleOpArg oArg, CustomBattleOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XCustomBattleDocument specificDocument = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
+ specificDocument.RecvCustomBattleOp(oArg.op, oArg.uid, oRes.info, oArg);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SYS_NOTOPEN;
+ if (!flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ XCustomBattleDocument specificDocument2 = XDocuments.GetSpecificDocument<XCustomBattleDocument>(XCustomBattleDocument.uuID);
+ specificDocument2.DoErrorOp(oArg.op, oArg.uid);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(CustomBattleOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs.meta new file mode 100644 index 00000000..5ff3018a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_CustomBattleOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 020665f75fda0174582ad45aef66d734 +timeCreated: 1611402955 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs new file mode 100644 index 00000000..73dde099 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DERankReq
+ {
+ public static void OnReply(DERankArg oArg, DERankRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XDragonCrusadeDocument specificDocument = XDocuments.GetSpecificDocument<XDragonCrusadeDocument>(XDragonCrusadeDocument.uuID);
+ specificDocument.OnDERankReq(oRes);
+ }
+ }
+
+ public static void OnTimeout(DERankArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs.meta new file mode 100644 index 00000000..3389ff89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DERankReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 192c266d73eaad842a40ebe1213e503c +timeCreated: 1611403301 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs new file mode 100644 index 00000000..a7617fdf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DailyTaskRefreshOper
+ {
+ public static void OnReply(DailyTaskRefreshOperArg oArg, DailyTaskRefreshOperRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDailyTaskDocument.Doc.OnGetTaskRefreshOperResult(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DailyTaskRefreshOperArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs.meta new file mode 100644 index 00000000..4db7ed26 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DailyTaskRefreshOper.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bd49c0291c5636744b35612623a22eee +timeCreated: 1611404450 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs new file mode 100644 index 00000000..afab980f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DelGuildInherit
+ {
+ public static void OnReply(DelGuildInheritArg oArg, DelGuildInheritRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.ReceiveDelInherit(oRes);
+ }
+ }
+
+ public static void OnTimeout(DelGuildInheritArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs.meta new file mode 100644 index 00000000..e5b05ded --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DelGuildInherit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 566551b9deb2270438674605ab9c12ed +timeCreated: 1611403743 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs new file mode 100644 index 00000000..15b76928 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DoAddFriendNew
+ {
+ public static void OnReply(DoAddFriendArg oArg, DoAddFriendRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnApply(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(DoAddFriendArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs.meta new file mode 100644 index 00000000..1b9c3a54 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DoAddFriendNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1b3d9400114584347b1d8da6de7be905 +timeCreated: 1611403315 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs new file mode 100644 index 00000000..3e857398 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DonateMemberItem
+ {
+ public static void OnReply(DonateMemberItemArg oArg, DonateMemberItemRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDonateDocument.Doc.OnGetDonateMemberReply(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DonateMemberItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs.meta new file mode 100644 index 00000000..0fad133b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DonateMemberItem.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 783669c7a7226ab43a26ead0fe146eb0 +timeCreated: 1611403958 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs new file mode 100644 index 00000000..096cc8dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DragonGuildApproval
+ {
+ public static void OnReply(DragonGuildApprovalArg oArg, DragonGuildApprovalRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildApproveDocument specificDocument = XDocuments.GetSpecificDocument<XDragonGuildApproveDocument>(XDragonGuildApproveDocument.uuID);
+ specificDocument.OnApprove(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DragonGuildApprovalArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs.meta new file mode 100644 index 00000000..9859cd67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildApproval.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c59921b52433c7046bce900c7ab4688e +timeCreated: 1611404506 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs new file mode 100644 index 00000000..b6f8ac9a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DragonGuildBindGroupReq
+ {
+ public static void OnReply(DragonGuildBindReq oArg, DragonGuildBindRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnBindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DragonGuildBindReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs.meta new file mode 100644 index 00000000..8dad8ebb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildBindGroupReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 58197269bdb874b4a9cd9d1e0d3639cb +timeCreated: 1611403753 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs new file mode 100644 index 00000000..916fdf96 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DragonGuildJoinBindGroup
+ {
+ public static void OnReply(DragonGuildJoinBindGroupArg oArg, DragonGuildJoinBindGroupRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnJoinBindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DragonGuildJoinBindGroupArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs.meta new file mode 100644 index 00000000..7d200b62 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildJoinBindGroup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3232248f556bf9a4689d12ef421d9e73 +timeCreated: 1611403548 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs new file mode 100644 index 00000000..6099514b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_DragonGuildUnBindGroup
+ {
+ public static void OnReply(DragonGuildUnBindGroupArg oArg, DragonGuildUnBindGroupRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnUnbindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(DragonGuildUnBindGroupArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs.meta new file mode 100644 index 00000000..5926078d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_DragonGuildUnBindGroup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8ec550fc8db4ccc4a9a0d6207da9d344 +timeCreated: 1611404131 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs new file mode 100644 index 00000000..c3077b46 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_EnterBMReadyScene
+ {
+ public static void OnReply(EnterBMReadySceneArg oArg, EnterBMReadySceneRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XBigMeleeEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XBigMeleeEntranceDocument>(XBigMeleeEntranceDocument.uuID);
+ specificDocument.GroupID = (int)(oRes.group + 1u);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(EnterBMReadySceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs.meta new file mode 100644 index 00000000..703e4884 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBMReadyScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 970d4f879581b4f43ab04f3806360000 +timeCreated: 1611404187 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs new file mode 100644 index 00000000..9bb0f95a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_EnterBattleReadyScene
+ {
+ public static void OnReply(EnterBattleReadySceneArg oArg, EnterBattleReadySceneRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(EnterBattleReadySceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs.meta new file mode 100644 index 00000000..28d9843c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterBattleReadyScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: af3e1bf5941ca0642bc8153e0abecca6 +timeCreated: 1611404343 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs new file mode 100644 index 00000000..09e7f277 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_EnterWeddingScene
+ {
+ public static void OnReply(EnterWeddingSceneArg oArg, EnterWeddingSceneRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument doc = XWeddingDocument.Doc;
+ doc.OnEnterWedding(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(EnterWeddingSceneArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs.meta new file mode 100644 index 00000000..df991b3e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_EnterWeddingScene.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c8e0b98c87c5148468f83e1de3bd28d0 +timeCreated: 1611404536 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs new file mode 100644 index 00000000..d190f5e3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchDGApps
+ {
+ public static void OnReply(FetchDGAppArg oArg, FetchDGAppRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildApproveDocument specificDocument = XDocuments.GetSpecificDocument<XDragonGuildApproveDocument>(XDragonGuildApproveDocument.uuID);
+ specificDocument.OnGetApproveList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchDGAppArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs.meta new file mode 100644 index 00000000..acbbcf4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDGApps.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63a46c15dc93c2a45af6828dbd8000e6 +timeCreated: 1611403845 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs new file mode 100644 index 00000000..bb492385 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchDragonGuildList
+ {
+ public static void OnReply(FetchDragonGuildListArg oArg, FetchDragonGuildRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oArg.reason == 2;
+ if (flag3)
+ {
+ XRankDocument specificDocument = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument.OnGetDragonGuildList(oArg, oRes);
+ }
+ else
+ {
+ XDragonGuildListDocument.Doc.OnGetDragonGuildList(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchDragonGuildListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs.meta new file mode 100644 index 00000000..99d34ac5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchDragonGuildList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fd3455330960e8b46aef7b9cc2087550 +timeCreated: 1611404937 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs new file mode 100644 index 00000000..8aa9f528 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchGuildApp
+ {
+ public static void OnReply(FetchGAPPArg oArg, FetchGAPPRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildApproveDocument specificDocument = XDocuments.GetSpecificDocument<XGuildApproveDocument>(XGuildApproveDocument.uuID);
+ specificDocument.OnGetApproveList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchGAPPArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs.meta new file mode 100644 index 00000000..7843d05b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildApp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 39039d57caeb8624aa821727233b5158 +timeCreated: 1611403591 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs new file mode 100644 index 00000000..46278e16 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchGuildHistoryNew
+ {
+ public static void OnReply(GuildHistoryArg oArg, GuildHistoryRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ specificDocument.OnGetLogList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildHistoryArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs.meta new file mode 100644 index 00000000..92be7dc7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchGuildHistoryNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 15cec691bdfc70849996b337cef98d86 +timeCreated: 1611403265 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs new file mode 100644 index 00000000..32c8380a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchMail
+ {
+ public static void OnReply(FetchMailArg oArg, FetchMailRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ XMailDocument specificDocument = XDocuments.GetSpecificDocument<XMailDocument>(XMailDocument.uuID);
+ specificDocument.ResMailInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(FetchMailArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs.meta new file mode 100644 index 00000000..a4224492 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchMail.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b85f49c73f8f1bf44975a9c3277a5ae7 +timeCreated: 1611404404 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs new file mode 100644 index 00000000..2b4715e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchPlantInfo
+ {
+ public static void OnReply(FetchPlantInfoArg oArg, FetchPlantInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnFetchPlantInfoBack(oArg.farmland_id, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchPlantInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs.meta new file mode 100644 index 00000000..2ae4c1b1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlantInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3bd23cbb2ecedc945b249520706d984a +timeCreated: 1611403600 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs new file mode 100644 index 00000000..de48b07c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs @@ -0,0 +1,42 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchPlatNotice
+ {
+ public static void OnReply(FetchPlatNoticeArg oArg, FetchPlatNoticeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.notice != null;
+ if (flag2)
+ {
+ bool isopen = oRes.notice.isopen;
+ if (isopen)
+ {
+ DlgBase<XAnnouncementView, XAnnouncementBehaviour>.singleton.ShowAnnouncement(oRes.notice.content);
+ }
+ }
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XAnnouncementDocument specificDocument = XDocuments.GetSpecificDocument<XAnnouncementDocument>(XAnnouncementDocument.uuID);
+ specificDocument.GetNoticeData(oRes.data);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchPlatNoticeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs.meta new file mode 100644 index 00000000..e639c4cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchPlatNotice.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 540ae26dad8bd7841b65a03532a67bca +timeCreated: 1611403713 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs new file mode 100644 index 00000000..73c1a1e8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FetchTeamListC2M
+ {
+ public static void OnReply(FetchTeamListArg oArg, FetchTeamListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnGetTeamList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchTeamListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs.meta new file mode 100644 index 00000000..dccdf7f0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FetchTeamListC2M.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e33672902c194944da1a9643506878ac +timeCreated: 1611404732 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs new file mode 100644 index 00000000..86401933 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FriendGardenPlantLog
+ {
+ public static void OnReply(FriendGardenPlantLogArg oArg, FriendGardenPlantLogRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomeMainDocument.Doc.OnGetPlantFriendList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(FriendGardenPlantLogArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs.meta new file mode 100644 index 00000000..430c9d33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGardenPlantLog.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 74e32baeaca77a544bd1831e360ee414 +timeCreated: 1611403944 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs new file mode 100644 index 00000000..648cd78b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_FriendGiftOpNew
+ {
+ public static void OnReply(FriendGiftOpArg oArg, FriendGiftOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnFriendGiftOp(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(FriendGiftOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs.meta new file mode 100644 index 00000000..8d8a0b48 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_FriendGiftOpNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7ad4b5c37bf6d924ebaab077aa877458 +timeCreated: 1611403991 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs new file mode 100644 index 00000000..052a5ba2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs @@ -0,0 +1,36 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GCFCommonReq
+ {
+ public static void OnReply(GCFCommonArg oArg, GCFCommonRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<XDebug>.singleton.AddErrorLog("ores is nil", null, null, null, null, null);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.RespGCFCommon(oArg.reqtype, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString(oRes.errorcode), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(GCFCommonArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs.meta new file mode 100644 index 00000000..ede9f4aa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFCommonReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2ebdbf487401c4a49881222ca64d85b3 +timeCreated: 1611403511 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs new file mode 100644 index 00000000..02e981df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GCFFightInfoReqC2M
+ {
+ public static void OnReply(GCFFightInfoArg oArg, GCFFightInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.RespGCFFightInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GCFFightInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs.meta new file mode 100644 index 00000000..a9398451 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFFightInfoReqC2M.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9b5451e7f4646be47b8185e950b2eb0c +timeCreated: 1611404205 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs new file mode 100644 index 00000000..70dda74d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs @@ -0,0 +1,22 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GCFReadysInfoReq
+ {
+ public static void OnReply(GCFReadyInfoArg oArg, GCFReadyInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.RespGCFReadysInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GCFReadyInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs.meta new file mode 100644 index 00000000..6bc97939 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GCFReadysInfoReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1402205e072addb4bbf2b19dfc373efc +timeCreated: 1611403251 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs new file mode 100644 index 00000000..0cebf6f2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenBanquet
+ {
+ public static void OnReply(GardenBanquetArg oArg, GardenBanquetRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XHomeCookAndPartyDocument.Doc.CurBanquetID = oArg.banquet_id;
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GardenBanquetArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs.meta new file mode 100644 index 00000000..901d973b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquet.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1be867c14c99b3e4c83b642b9d013c92 +timeCreated: 1611403341 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs new file mode 100644 index 00000000..cccc5346 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenBanquetAward
+ {
+ public static void OnReply(BanquetAwardArg oArg, BanquetAwardRes oRes)
+ {
+ }
+
+ public static void OnTimeout(BanquetAwardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs.meta new file mode 100644 index 00000000..aa609244 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenBanquetAward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a959f8da78a46349beef6f7f2afefa1 +timeCreated: 1611404092 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs new file mode 100644 index 00000000..b9fc0c0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenCookingFood
+ {
+ public static void OnReply(GardenCookingFoodArg oArg, GardenCookingFoodRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ HomeMainDocument.Doc.RefreshCookingInfo(oArg.food_id, oRes);
+ XHomeCookAndPartyDocument.Doc.CookingFoodSuccess();
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GardenCookingFoodArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs.meta new file mode 100644 index 00000000..cf5f95df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenCookingFood.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f99968e5f3e8c6a4094ee0b66aca2363 +timeCreated: 1611404899 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs new file mode 100644 index 00000000..459da7cf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenExpelSprite
+ {
+ public static void OnReply(GardenExpelSpriteArg oArg, GardenExpelSpriteRes oRes)
+ {
+ HomePlantDocument.Doc.OnDriveTroubleMakerBack(oRes);
+ }
+
+ public static void OnTimeout(GardenExpelSpriteArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs.meta new file mode 100644 index 00000000..c99e6c2d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenExpelSprite.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dae9cb73e0d8671499e2e48504399dbb +timeCreated: 1611404650 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs new file mode 100644 index 00000000..c2603d33 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs @@ -0,0 +1,48 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenFishInfo
+ {
+ public static void OnReply(GardenFishInfoArg oArg, GardenFishInfoRes oRes)
+ {
+ XHomeFishingDocument specificDocument = XDocuments.GetSpecificDocument<XHomeFishingDocument>(XHomeFishingDocument.uuID);
+ bool flag = oRes == null;
+ if (flag)
+ {
+ specificDocument.ErrorLeaveFishing();
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ specificDocument.ErrorLeaveFishing();
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ specificDocument.SetLevelExpInfo(oRes.fish_level, oRes.experiences);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GardenFishInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs.meta new file mode 100644 index 00000000..41e8eea1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenFishInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2b378aa406ae5c48838bfc9a7d304b4 +timeCreated: 1611404258 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs new file mode 100644 index 00000000..f13028ba --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenOverview
+ {
+ public static void OnReply(GardenOverviewArg oArg, GardenOverviewRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ HomeMainDocument.Doc.OnGetGardenOverview(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GardenOverviewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs.meta new file mode 100644 index 00000000..68247666 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenOverview.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c93f4af24908e34429018ba18be60dc6 +timeCreated: 1611404538 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs new file mode 100644 index 00000000..b43ebf67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GardenSteal
+ {
+ public static void OnReply(GardenStealArg oArg, GardenStealRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnHomeStealBack(oArg.farmland_id, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GardenStealArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs.meta new file mode 100644 index 00000000..6d1c5e4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GardenSteal.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9cf7e250ba0d59a46be146f8cfb0d680 +timeCreated: 1611404234 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs new file mode 100644 index 00000000..2fe46c29 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetAllWeddingInfo
+ {
+ public static void OnReply(GetAllWeddingInfoArg oArg, GetAllWeddingInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument doc = XWeddingDocument.Doc;
+ doc.OnGetAllWeddingInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetAllWeddingInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs.meta new file mode 100644 index 00000000..9896674e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetAllWeddingInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7fd7623b573edd440ac8c1a84403ec60 +timeCreated: 1611404032 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs new file mode 100644 index 00000000..6294ea3e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetCrossGvgData
+ {
+ public static void OnReply(GetCrossGvgDataArg oArg, GetCrossGvgDataRes oRes)
+ {
+ XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
+ specificDocument.ReceiveCrossGVGData(oRes);
+ }
+
+ public static void OnTimeout(GetCrossGvgDataArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs.meta new file mode 100644 index 00000000..7c7b3f3f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetCrossGvgData.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a0fd8df008e30a648a7a020a44774ac3 +timeCreated: 1611404251 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs new file mode 100644 index 00000000..b9dd5e76 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDailyTaskAskHelp
+ {
+ public static void OnReply(GetDailyTaskAskHelpArg oArg, GetDailyTaskAskHelpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetTaskHelpInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDailyTaskAskHelpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs.meta new file mode 100644 index 00000000..1f3a7c3c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskAskHelp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4e1c6b0188121e4a9225f6f79d9fcbf +timeCreated: 1611404741 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs new file mode 100644 index 00000000..29ec698a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDailyTaskRefreshInfo
+ {
+ public static void OnReply(GetDailyTaskRefreshInfoArg oArg, GetDailyTaskRefreshInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetTaskRefreshInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDailyTaskRefreshInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs.meta new file mode 100644 index 00000000..daf567ad --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09f8a847bff01634b877c9f1a3f52375 +timeCreated: 1611403160 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs new file mode 100644 index 00000000..96ca6840 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDailyTaskRefreshRecord
+ {
+ public static void OnReply(GetDailyTaskRefreshRecordArg oArg, GetDailyTaskRefreshRecordRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XGuildDailyTaskDocument.Doc.OnGetRefreshRecordInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDailyTaskRefreshRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs.meta new file mode 100644 index 00000000..f1af1339 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDailyTaskRefreshRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 181a456e3c337f8418949de6670034fa +timeCreated: 1611403296 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs new file mode 100644 index 00000000..912322a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDanceIds
+ {
+ public static void OnReply(GetDanceIdsArg oArg, GetDanceIdsRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XDanceDocument.Doc.OnGetDanceIDs(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetDanceIdsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs.meta new file mode 100644 index 00000000..6a55925e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2db2e3f2792e4fe4182b3a0ad17d9f0f +timeCreated: 1611403507 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs new file mode 100644 index 00000000..f13358f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildBindInfo
+ {
+ public static void OnReply(GetDragonGuildBindInfoArg oArg, GetDragonGuildBindInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnGetQQGroupBindInfo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetDragonGuildBindInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs.meta new file mode 100644 index 00000000..346fc60d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildBindInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8f9f9dd035de9234293c581163ec663b +timeCreated: 1611404135 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs new file mode 100644 index 00000000..746b88fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildLiveness
+ {
+ public static void OnReply(GetPartnerLivenessArg oArg, GetPartnerLivenessRes oRes)
+ {
+ bool flag = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.result);
+ }
+ else
+ {
+ XDragonGuildDocument.DragonGuildLivenessData.OnGetDragonGuildLivenessInfoBack(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetPartnerLivenessArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs.meta new file mode 100644 index 00000000..5960b873 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7740afdd575ea2745ba7f818bdc91231 +timeCreated: 1611403952 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs new file mode 100644 index 00000000..5d5a5fa0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildShop
+ {
+ public static void OnReply(GetDragonGuildShopArg oArg, GetDragonGuildShopRes oRes)
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetGoodsList(oArg, oRes);
+ }
+
+ public static void OnTimeout(GetDragonGuildShopArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs.meta new file mode 100644 index 00000000..167ce8e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShop.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b05a2f4b3946d884cac7300654b3fe9d +timeCreated: 1611404350 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs new file mode 100644 index 00000000..2d9714a6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildShopRecord
+ {
+ public static void OnReply(GetDragonGuildShopRecordArg oArg, GetDragonGuildShopRecordRes oRes)
+ {
+ XDragonGuildDocument.Doc.OnGetShopRecordBack(oRes);
+ }
+
+ public static void OnTimeout(GetDragonGuildShopRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs.meta new file mode 100644 index 00000000..c124a8bb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildShopRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ca7f55b3e1e1e0d46a02d26cbe0eb8f7 +timeCreated: 1611404541 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs new file mode 100644 index 00000000..18e24c9f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildTaskInfo
+ {
+ public static void OnReply(GetDragonGuildTaskInfoArg oArg, GetDragonGuildTaskInfoRes oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XDragonGuildTaskDocument specificDocument = XDocuments.GetSpecificDocument<XDragonGuildTaskDocument>(XDragonGuildTaskDocument.uuID);
+ specificDocument.OnGetInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetDragonGuildTaskInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs.meta new file mode 100644 index 00000000..92cc9ea9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildTaskInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3c2e98bed41344f49971b5a22453b6c7 +timeCreated: 1611403601 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs new file mode 100644 index 00000000..18cfa1e2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetFlowerActivityReward
+ {
+ public static void OnReply(GetFlowerActivityRewardArg oArg, GetFlowerActivityRewardRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFlowerRankDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument.OnGetFlowerActivityReward(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetFlowerActivityRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs.meta new file mode 100644 index 00000000..0b917219 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetFlowerActivityReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2d59b807efb0bd1419f3a2f67527b468 +timeCreated: 1611403505 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs new file mode 100644 index 00000000..91d26362 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildBindInfo
+ {
+ public static void OnReply(GetGuildBindInfoReq oArg, GetGuildBindInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDocument>(XGuildDocument.uuID);
+ specificDocument.OnGetQQGroupBindInfo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildBindInfoReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs.meta new file mode 100644 index 00000000..8c257a9b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBindInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8ebd8d4b8099b1341bae042b5f5ed028 +timeCreated: 1611404131 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs new file mode 100644 index 00000000..d30c8392 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildBonusSendList
+ {
+ public static void OnReply(GetGuildBonusSendListArg oArg, GetGuildBonusSendListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.ReceiveGuildBonusSendList(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildBonusSendListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs.meta new file mode 100644 index 00000000..e067e8a4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildBonusSendList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1d8258b843aa6074a8502578c1699754 +timeCreated: 1611403355 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs new file mode 100644 index 00000000..e2b8c36b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildCheckinRecordsNew
+ {
+ public static void OnReply(GetGuildCheckinRecordsArg oArg, GetGuildCheckinRecordsRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSignInDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument.onGetLogList(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildCheckinRecordsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs.meta new file mode 100644 index 00000000..b445ca67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildCheckinRecordsNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f070b36f5ae49f74088b06f48787f750 +timeCreated: 1611404831 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs new file mode 100644 index 00000000..d671e942 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildDonateInfo
+ {
+ public static void OnReply(GetGuildDonateInfoArg oArg, GetGuildDonateInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XGuildDonateDocument.Doc.OnGetDonateInfo(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildDonateInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs.meta new file mode 100644 index 00000000..a3296cdb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildDonateInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 64fb5591b39680d4a9616a3910361390 +timeCreated: 1611403848 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs new file mode 100644 index 00000000..bad3f068 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildIntegralInfo
+ {
+ public static void OnReply(GetGuildIntegralInfoArg oArg, GetGuildIntegralInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveIntegralBattleInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildIntegralInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs.meta new file mode 100644 index 00000000..b75322da --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildIntegralInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: af1f2c147c226bb48ad17610a7ae722c +timeCreated: 1611404342 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs new file mode 100644 index 00000000..f0902f8b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetGuildWageReward
+ {
+ public static void OnReply(GetGuildWageRewardArg oArg, GetGuildWageReward oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildSalaryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSalaryDocument>(XGuildSalaryDocument.uuID);
+ specificDocument.ReceiveGuildWageReward(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetGuildWageRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs.meta new file mode 100644 index 00000000..76cf83ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetGuildWageReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ed87655fb84e72840989cf90db8fef88 +timeCreated: 1611404791 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs new file mode 100644 index 00000000..c6ec5470 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetLeagueBattleInfo
+ {
+ public static void OnReply(GetLeagueBattleInfoArg oArg, GetLeagueBattleInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnGetLeagueBattleInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLeagueBattleInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs.meta new file mode 100644 index 00000000..9c0cbb19 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b0b1f258daed4cc4382a206a52e89989 +timeCreated: 1611404352 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs new file mode 100644 index 00000000..3263643c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetLeagueBattleRecord
+ {
+ public static void OnReply(GetLeagueBattleRecordArg oArg, GetLeagueBattleRecordRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnGetLeagueBattleRecord(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLeagueBattleRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs.meta new file mode 100644 index 00000000..47a8aefe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueBattleRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cac0bffd26e04644a8e0738b6da1bf49 +timeCreated: 1611404543 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs new file mode 100644 index 00000000..cb72c193 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetLeagueEleInfo
+ {
+ public static void OnReply(GetLeagueEleInfoArg oArg, GetLeagueEleInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnGetLeagueEleInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString(oRes.result), "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLeagueEleInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs.meta new file mode 100644 index 00000000..187e4710 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueEleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9517f9a5fd7ce7f4c932428cf01b3b01 +timeCreated: 1611404179 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs new file mode 100644 index 00000000..80e56dfb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetLeagueTeamInfo
+ {
+ public static void OnReply(GetLeagueTeamInfoArg oArg, GetLeagueTeamInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFreeTeamVersusLeagueDocument.Doc.OnGetLeagueTeamInfo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetLeagueTeamInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs.meta new file mode 100644 index 00000000..e5294856 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetLeagueTeamInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8bb0b0e05a25af34caa0e3d08f6833f1 +timeCreated: 1611404096 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs new file mode 100644 index 00000000..71facf46 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetListSubscribe
+ {
+ public static void OnReply(GetListSubscribeArg oArg, GetListSubscribeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XPushSubscribeDocument specificDocument = XDocuments.GetSpecificDocument<XPushSubscribeDocument>(XPushSubscribeDocument.uuID);
+ specificDocument.OnListSubscribe(oRes.list);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetListSubscribeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs.meta new file mode 100644 index 00000000..5f7c4867 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetListSubscribe.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0412f7869a96c604dba514fcb0f95cdb +timeCreated: 1611402960 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs new file mode 100644 index 00000000..fb82c7b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMarriageLiveness
+ {
+ public static void OnReply(GetMarriageLivenessArg oArg, GetMarriageLivenessRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnGetPartnerLivenessInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMarriageLivenessArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs.meta new file mode 100644 index 00000000..6b81f761 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageLiveness.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a3d9bc414483a6f43b19b92ed22213bf +timeCreated: 1611404280 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs new file mode 100644 index 00000000..2602e931 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMarriagePrivilege
+ {
+ public static void OnReply(GetMarriagePrivilegeArg oArg, GetMarriagePrivilegeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnGetMarriagePrivilege(oRes.error);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMarriagePrivilegeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs.meta new file mode 100644 index 00000000..e8f26e3c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriagePrivilege.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6947e8983c22e084cbe7a9f93907bb4a +timeCreated: 1611403885 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs new file mode 100644 index 00000000..6fc78f27 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs @@ -0,0 +1,39 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMarriageRelation
+ {
+ public static void OnReply(GetMarriageRelationArg oArg, GetMarriageRelationRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument doc = XWeddingDocument.Doc;
+ doc.OnGetMarriageRelationInfo(oRes);
+ doc.OnGetPartDetailInfoBack(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMarriageRelationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs.meta new file mode 100644 index 00000000..4f597e51 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMarriageRelation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1fb0312bb9b26f8458d3802391ef19d2 +timeCreated: 1611403403 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs new file mode 100644 index 00000000..73d7c852 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMobaBattleBriefRecord
+ {
+ public static void OnReply(GetMobaBattleBriefRecordArg oArg, GetMobaBattleBriefRecordRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XMobaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XMobaEntranceDocument>(XMobaEntranceDocument.uuID);
+ specificDocument.SetMobaRecordTotal(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetMobaBattleBriefRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs.meta new file mode 100644 index 00000000..df6de60e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleBriefRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 076ad7e68b116e44e85ecde99fe8bac7 +timeCreated: 1611402968 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs new file mode 100644 index 00000000..59c9c8eb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMobaBattleGameRecord
+ {
+ public static void OnReply(GetMobaBattleGameRecordArg oArg, GetMobaBattleGameRecordRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XMobaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XMobaEntranceDocument>(XMobaEntranceDocument.uuID);
+ specificDocument.SetMobaRecordRound(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetMobaBattleGameRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs.meta new file mode 100644 index 00000000..9e374ae9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleGameRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cf18ae1e43ca62c46a5b36fbb03ee016 +timeCreated: 1611404580 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs new file mode 100644 index 00000000..e369c575 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMobaBattleInfo
+ {
+ public static void OnReply(GetMobaBattleInfoArg oArg, GetMobaBattleInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XMobaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XMobaEntranceDocument>(XMobaEntranceDocument.uuID);
+ specificDocument.SetMobaUIInfo(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetMobaBattleInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs.meta new file mode 100644 index 00000000..2deb432a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ff2142717b32af240882abcc2059156e +timeCreated: 1611404945 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs new file mode 100644 index 00000000..0efd52a7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMobaBattleWeekReward
+ {
+ public static void OnReply(GetMobaBattleWeekRewardArg oArg, GetMobaBattleWeekRewardRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XMobaEntranceDocument specificDocument = XDocuments.GetSpecificDocument<XMobaEntranceDocument>(XMobaEntranceDocument.uuID);
+ specificDocument.SetMobaNewReward(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMobaBattleWeekRewardArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs.meta new file mode 100644 index 00000000..b180b0ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMobaBattleWeekReward.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d2beb8cd24b73c54e9e2bbf68a0d14eb +timeCreated: 1611404596 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs new file mode 100644 index 00000000..2ebf05de --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMyApplyMasterInfo
+ {
+ public static void OnReply(GetMyApplyMasterInfoArg oArg, GetMyApplyMasterInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMentorshipDocument.Doc.OnGetMyApplyMasterInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMyApplyMasterInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs.meta new file mode 100644 index 00000000..6c96fe6f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyMasterInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5cb23f9f85eb2c4c901daae9f342959 +timeCreated: 1611404628 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs new file mode 100644 index 00000000..de100021 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMyApplyStudentInfo
+ {
+ public static void OnReply(GetMyApplyStudentInfoArg oArg, GetMyApplyStudentInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMentorshipDocument.Doc.OnGetMyApplyPupilsInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMyApplyStudentInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs.meta new file mode 100644 index 00000000..33fbfaa3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyApplyStudentInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1599c3eb58985b34fa544f1ce42756f7 +timeCreated: 1611403264 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs new file mode 100644 index 00000000..a1498b87 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetMyMentorInfo
+ {
+ public static void OnReply(GetMyMentorInfoArg oArg, GetMyMentorInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMentorshipDocument.Doc.OnGetMyMentorInfo(oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetMyMentorInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs.meta new file mode 100644 index 00000000..baeb0f94 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetMyMentorInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 563efa2044bc9ec4a935cafa13e87a1e +timeCreated: 1611403743 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs new file mode 100644 index 00000000..974ca792 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetOtherGuildBriefNew
+ {
+ public static void OnReply(GetOtherGuildBriefArg oArg, GetOtherGuildBriefRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = DlgBase<XOtherPlayerInfoView, XOtherPlayerInfoBehaviour>.singleton.IsVisible();
+ if (flag3)
+ {
+ DlgBase<XOtherPlayerInfoView, XOtherPlayerInfoBehaviour>.singleton.RefreshGuildInfo(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetOtherGuildBriefArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs.meta new file mode 100644 index 00000000..c15d1b1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherGuildBriefNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: acfc3ada231b06c4d8a2d894e19c46be +timeCreated: 1611404332 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs new file mode 100644 index 00000000..913914ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetOtherMentorStatus
+ {
+ public static void OnReply(GetOtherMentorStatusArg oArg, GetOtherMentorStatusRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMentorshipDocument.Doc.OnGetOtherMentorStatus(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetOtherMentorStatusArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs.meta new file mode 100644 index 00000000..274c1962 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetOtherMentorStatus.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 48bb3d8f9cb7c4941b895970a9c8183a +timeCreated: 1611403659 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs new file mode 100644 index 00000000..7cd2d0b5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetPartnerDetailInfo
+ {
+ public static void OnReply(GetPartnerDetailInfoArg oArg, GetPartnerDetailInfoRes oRes)
+ {
+ XPartnerDocument.Doc.OnGetPartDetailInfoBack(oRes);
+ }
+
+ public static void OnTimeout(GetPartnerDetailInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs.meta new file mode 100644 index 00000000..628f40e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerDetailInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 799505e4e8e85584ca389637ecdcd7c1 +timeCreated: 1611403986 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs new file mode 100644 index 00000000..d421de46 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetPartnerInfo
+ {
+ public static void OnReply(GetPartnerInfoArg oArg, GetPartnerInfoRes oRes)
+ {
+ XPartnerDocument.Doc.OnGetPartnerInfoBack(oRes);
+ }
+
+ public static void OnTimeout(GetPartnerInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs.meta new file mode 100644 index 00000000..e1299797 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 53b207f4b898478499ff0018ff19654a +timeCreated: 1611403712 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs new file mode 100644 index 00000000..669b7bd2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetPartnerLiveness
+ {
+ public static void OnReply(GetPartnerLivenessArg oArg, GetPartnerLivenessRes oRes)
+ {
+ XPartnerDocument.PartnerLivenessData.OnGetPartnerLivenessInfoBack(oRes);
+ }
+
+ public static void OnTimeout(GetPartnerLivenessArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs.meta new file mode 100644 index 00000000..cb3cf763 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerLiveness.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f165b35b7214bba4eaeb37933d779b3e +timeCreated: 1611404837 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs new file mode 100644 index 00000000..4293e970 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetPartnerShop
+ {
+ public static void OnReply(GetPartnerShopArg oArg, GetPartnerShopRes oRes)
+ {
+ XNormalShopDocument specificDocument = XDocuments.GetSpecificDocument<XNormalShopDocument>(XNormalShopDocument.uuID);
+ specificDocument.OnGetGoodsList(oArg, oRes);
+ }
+
+ public static void OnTimeout(GetPartnerShopArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs.meta new file mode 100644 index 00000000..83762795 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShop.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 860c10a17021b1542b98ae0a29c8d44c +timeCreated: 1611404053 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs new file mode 100644 index 00000000..80bc2066 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetPartnerShopRecord
+ {
+ public static void OnReply(GetPartnerShopRecordArg oArg, GetPartnerShopRecordRes oRes)
+ {
+ XPartnerDocument.Doc.OnGetShopRecordBack(oRes);
+ }
+
+ public static void OnTimeout(GetPartnerShopRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs.meta new file mode 100644 index 00000000..8ab5ec14 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetPartnerShopRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c93c434be94cd844b32f42b375bc314 +timeCreated: 1611403503 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs new file mode 100644 index 00000000..381dd63e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs @@ -0,0 +1,62 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetQADataReq
+ {
+ public static void OnReply(GetQADataReq oArg, GetQADataRes oRes)
+ {
+ XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ bool flag2 = DlgBase<XVoiceQAView, XVoiceQABehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ specificDocument.IsVoiceQAIng = false;
+ specificDocument.MainInterFaceBtnState = false;
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.RefreshH5ButtonState(XSysDefine.XSys_GuildRelax_VoiceQA, true);
+ DlgBase<XVoiceQAView, XVoiceQABehaviour>.singleton.SetVisible(false, true);
+ }
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag3)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag4 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag4)
+ {
+ bool flag5 = DlgBase<XVoiceQAView, XVoiceQABehaviour>.singleton.IsVisible();
+ if (flag5)
+ {
+ specificDocument.IsVoiceQAIng = false;
+ specificDocument.MainInterFaceBtnState = false;
+ DlgBase<XMainInterface, XMainInterfaceBehaviour>.singleton.RefreshH5ButtonState(XSysDefine.XSys_GuildRelax_VoiceQA, true);
+ DlgBase<XVoiceQAView, XVoiceQABehaviour>.singleton.SetVisible(false, true);
+ }
+ }
+ else
+ {
+ specificDocument.SetVoiceQAInfo(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetQADataReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs.meta new file mode 100644 index 00000000..3416d2f9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetQADataReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 350eb59889a8c044f927088c4a34338d +timeCreated: 1611403557 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs new file mode 100644 index 00000000..e978957d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetRiftGuildRank
+ {
+ public static void OnReply(GetRiftGuildRankArg oArg, GetRiftGuildRankRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ XRiftDocument specificDocument = XDocuments.GetSpecificDocument<XRiftDocument>(XRiftDocument.uuID);
+ specificDocument.ResGuildRank(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetRiftGuildRankArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs.meta new file mode 100644 index 00000000..81612d09 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetRiftGuildRank.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d5dc4bf793ba2a841b579c01a91e6f71 +timeCreated: 1611404629 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs new file mode 100644 index 00000000..ff42815e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetSkyCraftEliInfo
+ {
+ public static void OnReply(GetSkyCraftEliInfoArg oArg, GetSkyCraftEliInfoRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetSkyCraftEliInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs.meta new file mode 100644 index 00000000..62f5e52e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftEliInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9d1aaae2d564e674a9e08a4af194c7cc +timeCreated: 1611404234 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs new file mode 100644 index 00000000..c4bfed7e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetSkyCraftInfo
+ {
+ public static void OnReply(GetSkyCraftInfoArg oArg, GetSkyCraftInfoRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetSkyCraftInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs.meta new file mode 100644 index 00000000..1fae0c62 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bcc738488f206074e9a4d1f596dadfa4 +timeCreated: 1611404448 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs new file mode 100644 index 00000000..299200b9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetSkyCraftRecord
+ {
+ public static void OnReply(GetSkyCraftRecordArg oArg, GetSkyCraftRecordRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetSkyCraftRecordArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs.meta new file mode 100644 index 00000000..ee50374b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftRecord.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3b1778e01a533db468314f19e56675af +timeCreated: 1611403597 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs new file mode 100644 index 00000000..946ee16d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetSkyCraftTeamInfo
+ {
+ public static void OnReply(GetSkyCraftTeamInfoArg oArg, GetSkyCraftTeamInfoRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GetSkyCraftTeamInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs.meta new file mode 100644 index 00000000..c984a0c1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetSkyCraftTeamInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f3563e2c86005fb429bc3a830bde1356 +timeCreated: 1611404848 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs new file mode 100644 index 00000000..97ee821e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs @@ -0,0 +1,95 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetUnitAppearanceNew
+ {
+ public static void OnReply(GetUnitAppearanceArg oArg, GetUnitAppearanceRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ bool flag4 = oArg.type == 1u;
+ if (flag4)
+ {
+ XRankDocument specificDocument = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument.OnGetUnitAppearance(oRes);
+ }
+ else
+ {
+ bool flag5 = oArg.type == 2u;
+ if (flag5)
+ {
+ XOtherPlayerInfoDocument specificDocument2 = XDocuments.GetSpecificDocument<XOtherPlayerInfoDocument>(XOtherPlayerInfoDocument.uuID);
+ specificDocument2.OnGetUnitAppearance(oRes);
+ }
+ else
+ {
+ bool flag6 = oArg.type == 3u;
+ if (flag6)
+ {
+ XFlowerRankDocument specificDocument3 = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument3.OnGetUnitAppearance(oRes);
+ }
+ else
+ {
+ bool flag7 = oArg.type == 4u;
+ if (flag7)
+ {
+ XCharacterCommonMenuDocument specificDocument4 = XDocuments.GetSpecificDocument<XCharacterCommonMenuDocument>(XCharacterCommonMenuDocument.uuID);
+ specificDocument4.OnGetUnitAppearance(oRes);
+ }
+ else
+ {
+ bool flag8 = oArg.type == 5u;
+ if (flag8)
+ {
+ XOtherPlayerInfoDocument specificDocument5 = XDocuments.GetSpecificDocument<XOtherPlayerInfoDocument>(XOtherPlayerInfoDocument.uuID);
+ specificDocument5.OnGetSpriteInfoReturn(oRes);
+ }
+ else
+ {
+ bool flag9 = oArg.type == 6u;
+ if (flag9)
+ {
+ XOtherPlayerInfoDocument specificDocument6 = XDocuments.GetSpecificDocument<XOtherPlayerInfoDocument>(XOtherPlayerInfoDocument.uuID);
+ specificDocument6.OnGetPetInfoReturn(oRes);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GetUnitAppearanceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs.meta new file mode 100644 index 00000000..f66c0d59 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetUnitAppearanceNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8324a93f8783a6e48a8dcff6d013171c +timeCreated: 1611404043 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs new file mode 100644 index 00000000..fd8b8d76 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetWeddingInviteInfo
+ {
+ public static void OnReply(GetWeddingInviteInfoArg oArg, GetWeddingInviteInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument doc = XWeddingDocument.Doc;
+ doc.OnGetWeddingInviteInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetWeddingInviteInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs.meta new file mode 100644 index 00000000..8605de01 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWeddingInviteInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 52f1422e292e1d3459e49b7de3da65e4 +timeCreated: 1611403709 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs new file mode 100644 index 00000000..0b71df85 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs @@ -0,0 +1,37 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetWorldBossStateNew
+ {
+ public static void OnReply(GetWorldBossStateArg oArg, GetWorldBossStateRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oArg.type == 0u;
+ if (flag2)
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetWorldBossLeftState(oRes);
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument2.OnGetWorldBossLeftState(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetWorldBossStateArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs.meta new file mode 100644 index 00000000..97c50199 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossStateNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8af9608f5929f54418eddbeaa263999a +timeCreated: 1611404093 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs new file mode 100644 index 00000000..d28fac61 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetWorldBossTimeLeft
+ {
+ public static void OnReply(GetWorldBossTimeLeftArg oArg, GetWorldBossTimeLeftRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetBattleInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetWorldBossTimeLeftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs.meta new file mode 100644 index 00000000..8d11b8a0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetWorldBossTimeLeft.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 77e3e1e1929059d45a9064176b3147d1 +timeCreated: 1611403956 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs new file mode 100644 index 00000000..f529ca83 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GiftIbReqGoods
+ {
+ public static void OnReply(GiftIbReqGoodsArg oArg, GiftIbReqGoodsRes oRes)
+ {
+ }
+
+ public static void OnTimeout(GiftIbReqGoodsArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs.meta new file mode 100644 index 00000000..6570e7bb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GiftIbReqGoods.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ccec02593d1017c43873d22e4cbce8cd +timeCreated: 1611404553 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs new file mode 100644 index 00000000..9c56e5d1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GoalAwardsGetAwards
+ {
+ public static void OnReply(GoalAwardsGetAwards_C2M oArg, GoalAwardsGetAwards_M2C oRes)
+ {
+ bool flag = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ XTargetRewardDocument specificDocument = XDocuments.GetSpecificDocument<XTargetRewardDocument>(XTargetRewardDocument.uuID);
+ specificDocument.OnClaimedAchieve(oArg.goalAwardsID, oRes.gottenAwardsIndex);
+ }
+ }
+
+ public static void OnTimeout(GoalAwardsGetAwards_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs.meta new file mode 100644 index 00000000..24bb4193 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetAwards.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: aabde65d970d59248bbaca9c6aa4514c +timeCreated: 1611404304 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs new file mode 100644 index 00000000..243a51e1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs @@ -0,0 +1,30 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GoalAwardsGetList
+ {
+ public static void OnReply(GoalAwardsGetList_C2M oArg, GoalAwardsGetList_M2C oRes)
+ {
+ bool flag = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTargetRewardDocument specificDocument = XDocuments.GetSpecificDocument<XTargetRewardDocument>(XTargetRewardDocument.uuID);
+ specificDocument.OnResTargetRewardType(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GoalAwardsGetList_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs.meta new file mode 100644 index 00000000..4b2e8f1a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GoalAwardsGetList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 731f35c83160f9d44b5727f4dd8be350 +timeCreated: 1611403939 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs new file mode 100644 index 00000000..4a7edb63 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatChangeName
+ {
+ public static void OnReply(GroupChatChangeNameC2S oArg, GroupChatChangeNameS2C oRes)
+ {
+ }
+
+ public static void OnTimeout(GroupChatChangeNameC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs.meta new file mode 100644 index 00000000..0f0ca637 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatChangeName.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 68a9a72cd605cef4982022f9a2758bd7 +timeCreated: 1611403883 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs new file mode 100644 index 00000000..fa31c86c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatClear
+ {
+ public static void OnReply(GroupChatClearC2S oArg, GroupChatClearS2C oRes)
+ {
+ }
+
+ public static void OnTimeout(GroupChatClearC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs.meta new file mode 100644 index 00000000..7fb12e86 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatClear.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e951c199861b95747900959a3dee4eb8 +timeCreated: 1611404755 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs new file mode 100644 index 00000000..0339f6f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatCreate
+ {
+ public static void OnReply(GroupChatCreateC2S oArg, GroupChatCreateS2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResCreateGroupChat(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GroupChatCreateC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs.meta new file mode 100644 index 00000000..b0eebc22 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatCreate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a929f0bf50d7f649a018ee70702fe13 +timeCreated: 1611404092 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs new file mode 100644 index 00000000..bcfc2780 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatFindRoleInfoList
+ {
+ public static void OnReply(GroupChatFindRoleInfoListC2S oArg, GroupChatFindRoleInfoListS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatFindRoleInfoList(oRes);
+ }
+
+ public static void OnTimeout(GroupChatFindRoleInfoListC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs.meta new file mode 100644 index 00000000..3df2f830 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindRoleInfoList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5cebe2632b1cfe6408cda3b212344c43 +timeCreated: 1611403804 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs new file mode 100644 index 00000000..772df52c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatFindTeamInfoList
+ {
+ public static void OnReply(GroupChatFindTeamInfoListC2S oArg, GroupChatFindTeamInfoListS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatFindTeamInfoList(oRes);
+ }
+
+ public static void OnTimeout(GroupChatFindTeamInfoListC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs.meta new file mode 100644 index 00000000..8ab9a09d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatFindTeamInfoList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ec4f809887bee6c428b9aef337ada011 +timeCreated: 1611404787 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs new file mode 100644 index 00000000..5b4cfd4f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatGetGroupInfo
+ {
+ public static void OnReply(GroupChatGetGroupInfoC2S oArg, GroupChatGetGroupInfoS2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResGroupInfo(oRes.playerlist);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GroupChatGetGroupInfoC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs.meta new file mode 100644 index 00000000..e500a0cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatGetGroupInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f2f603db2f79be24ba26fcef66175886 +timeCreated: 1611404846 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs new file mode 100644 index 00000000..7e1a8aa8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatLeaderAddRole
+ {
+ public static void OnReply(GroupChatLeaderAddRoleC2S oArg, GroupChatLeaderAddRoleS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.RecevieZMLeaderAddRole(oArg, oRes);
+ }
+
+ public static void OnTimeout(GroupChatLeaderAddRoleC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs.meta new file mode 100644 index 00000000..f20e189a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderAddRole.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 12e24e4402874ea4694de83fd31496f3 +timeCreated: 1611403244 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs new file mode 100644 index 00000000..dd5330a6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatLeaderIssueInfo
+ {
+ public static void OnReply(GroupChatLeaderIssueInfoC2S oArg, GroupChatLeaderIssueInfoS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatLeaderInfo(oRes);
+ }
+
+ public static void OnTimeout(GroupChatLeaderIssueInfoC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs.meta new file mode 100644 index 00000000..0bf4930f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderIssueInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1512dbf1608359d4ab4b902e3a7cad89 +timeCreated: 1611403261 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs new file mode 100644 index 00000000..bcc8b1bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatLeaderReview
+ {
+ public static void OnReply(GroupChatLeaderReviewC2S oArg, GroupChatLeaderReviewS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatLeaderReview(oArg, oRes);
+ }
+
+ public static void OnTimeout(GroupChatLeaderReviewC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs.meta new file mode 100644 index 00000000..21654967 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReview.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 32975f190ba37aa44ab9e4296c8cbc87 +timeCreated: 1611403549 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs new file mode 100644 index 00000000..f1bd1ecf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatLeaderReviewList
+ {
+ public static void OnReply(GroupChatLeaderReviewListC2S oArg, GroupChatLeaderReviewListS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatLeaderReviewList(oRes);
+ }
+
+ public static void OnTimeout(GroupChatLeaderReviewListC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs.meta new file mode 100644 index 00000000..f29eb9bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatLeaderReviewList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8394aba24f0edb04492743d4da522663 +timeCreated: 1611404045 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs new file mode 100644 index 00000000..00f49450 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatManager
+ {
+ public static void OnReply(GroupChatManagerC2S oArg, GroupChatManagerS2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (!flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GroupChatManagerC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs.meta new file mode 100644 index 00000000..5a967b46 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8397a629cac160449938b1312f916872 +timeCreated: 1611404045 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs new file mode 100644 index 00000000..6a9e0634 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatPlayerApply
+ {
+ public static void OnReply(GroupChatPlayerApplyC2S oArg, GroupChatPlayerApplyS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatPlayerApply(oArg, oRes);
+ }
+
+ public static void OnTimeout(GroupChatPlayerApplyC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs.meta new file mode 100644 index 00000000..8914059f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerApply.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7c4673c15cdf20a41a115140e49bfd4c +timeCreated: 1611403996 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs new file mode 100644 index 00000000..bca43511 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatPlayerIssueInfo
+ {
+ public static void OnReply(GroupChatPlayerIssueInfoC2S oArg, GroupChatPlayerIssueInfoS2C oRes)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ReceiveGroupChatPlayerInfo(oRes);
+ }
+
+ public static void OnTimeout(GroupChatPlayerIssueInfoC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs.meta new file mode 100644 index 00000000..b58b55af --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatPlayerIssueInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 00a0f0bfaf740d747b6c90bddbdb39cc +timeCreated: 1611402950 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs new file mode 100644 index 00000000..32bd293f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GroupChatQuit
+ {
+ public static void OnReply(GroupChatQuitC2S oArg, GroupChatQuitS2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
+ specificDocument.ResQuitGroup(oArg.groupchatID);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GroupChatQuitC2S oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs.meta new file mode 100644 index 00000000..43d41482 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GroupChatQuit.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 957718a4a759f604cbcbf411262699e8 +timeCreated: 1611404182 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs new file mode 100644 index 00000000..92431211 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildApprovalNew
+ {
+ public static void OnReply(GuildApprovalArg oArg, GuildApprovalRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildApproveDocument specificDocument = XDocuments.GetSpecificDocument<XGuildApproveDocument>(XGuildApproveDocument.uuID);
+ specificDocument.OnApprove(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildApprovalArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs.meta new file mode 100644 index 00000000..49044799 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildApprovalNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c978067c3ff7ee479e943db7385ab1a +timeCreated: 1611403503 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs new file mode 100644 index 00000000..06a3eca0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs @@ -0,0 +1,33 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildArenaSimpleDeployNew
+ {
+ public static void OnReply(GuildArenaSimpleDeployArg oArg, GuildArenaSimpleDeployRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildArenaSimpleDeployArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs.meta new file mode 100644 index 00000000..8f090c53 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildArenaSimpleDeployNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e40bb56fad7a6aa4e87c6b35d6ebd530 +timeCreated: 1611404735 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs new file mode 100644 index 00000000..60281005 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs @@ -0,0 +1,43 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildAuctReqAll
+ {
+ public static void OnReply(GuildAuctReqArg oArg, GuildAuctReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ AuctionHouseDocument specificDocument = XDocuments.GetSpecificDocument<AuctionHouseDocument>(AuctionHouseDocument.uuID);
+ specificDocument.OnServerReturn(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildAuctReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs.meta new file mode 100644 index 00000000..c8bb3c3a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildAuctReqAll.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 770a7ebdf34c93b4bb3689352ca7da86 +timeCreated: 1611403951 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs new file mode 100644 index 00000000..5d60ce55 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildBindGroup
+ {
+ public static void OnReply(GuildBindGroupReq oArg, GuildBindGroupRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDocument>(XGuildDocument.uuID);
+ specificDocument.OnBindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildBindGroupReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs.meta new file mode 100644 index 00000000..d85b824f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildBindGroup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0690d7c7c86417046842097c181b2778 +timeCreated: 1611402965 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs new file mode 100644 index 00000000..22378d46 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs @@ -0,0 +1,57 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildCampInfo
+ {
+ public static void OnReply(GuildCampInfoArg oArg, GuildCampInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XGuildSmallMonsterDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSmallMonsterDocument>(XGuildSmallMonsterDocument.uuID);
+ XExpeditionDocument specificDocument2 = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ int leftEnterCount = 2;
+ bool flag4 = specificDocument2.currentDayCount.ContainsKey(TeamLevelType.TeamLevelGuildCamp);
+ if (flag4)
+ {
+ leftEnterCount = specificDocument2.currentDayCount[TeamLevelType.TeamLevelGuildCamp];
+ }
+ bool flag5 = specificDocument2 != null;
+ if (flag5)
+ {
+ specificDocument.SetGuildSmallMonsterInfo(leftEnterCount, oRes.curCampID, oRes.nextCampID, oRes.rankInfos);
+ }
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildCampInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs.meta new file mode 100644 index 00000000..3e3cfc10 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCampInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7cc331cd1b2372448777d402ea28bb6 +timeCreated: 1611404403 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs new file mode 100644 index 00000000..bae51ef8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildCheckinNew
+ {
+ public static void OnReply(GuildCheckinArg oArg, GuildCheckinRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSignInDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument.OnSignIn(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildCheckinArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs.meta new file mode 100644 index 00000000..d080d87a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildCheckinNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 106f56ef07da73645a340e8e3745359c +timeCreated: 1611403218 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs new file mode 100644 index 00000000..0aeb6f83 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildFatigueOPNew
+ {
+ public static void OnReply(GuildFatigueArg oArg, GuildFatigueRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildMemberDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMemberDocument>(XGuildMemberDocument.uuID);
+ specificDocument.OnOperateFatigue(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildFatigueArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs.meta new file mode 100644 index 00000000..d8de7e22 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildFatigueOPNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4e74a52a19dc4034d9f9f5bee2a2c95a +timeCreated: 1611403698 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs new file mode 100644 index 00000000..0569fa9a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildHallGetBuffList
+ {
+ public static void OnReply(GuildHallGetBuffList_C2M oArg, GuildHallGetBuffList_M2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ec == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.ec > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ec, "fece00");
+ }
+ else
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.OnBuffListReply(oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildHallGetBuffList_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs.meta new file mode 100644 index 00000000..fc9eb1b1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallGetBuffList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a044dd537d0d61842a311ff5955ccdd9 +timeCreated: 1611404248 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs new file mode 100644 index 00000000..553991ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildHallUpdateBuff
+ {
+ public static void OnReply(GuildHallUpdateBuff_C2M oArg, GuildHallUpdateBuff_M2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ec == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.ec > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ec, "fece00");
+ }
+ else
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.OnBuffLevelUpSuccess(oRes.buffdata);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildHallUpdateBuff_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs.meta new file mode 100644 index 00000000..6104f137 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildHallUpdateBuff.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c3555e2ac29b4fc4188ed61f3e6568c3 +timeCreated: 1611404497 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs new file mode 100644 index 00000000..4a663ebb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildJoinBindGroup
+ {
+ public static void OnReply(GuildJoinBindGroupReq oArg, GuildJoinBindGroupRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDocument>(XGuildDocument.uuID);
+ specificDocument.OnJoinBindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildJoinBindGroupReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs.meta new file mode 100644 index 00000000..cfd5be9d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildJoinBindGroup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a11a71f966a1f8046beb7c1eb201f38c +timeCreated: 1611404252 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs new file mode 100644 index 00000000..b8ebcce4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildSchoolHallGetRankList
+ {
+ public static void OnReply(GuildSchoolHallGetRankList_C2M oArg, GuildSchoolHallGetRankList_M2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ec == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.ec > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ec, "fece00");
+ }
+ else
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.OnBuildRankGet(oRes.unranklist, oRes.guildweeklyhallpoint, oRes.guildweeklyschoolpoint, oRes.guildweeklyhuntingcount, oRes.guildweeklydonatecount);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildSchoolHallGetRankList_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs.meta new file mode 100644 index 00000000..5cf07f81 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildSchoolHallGetRankList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ff8c91e6ae5f24f47bcd89e61eeca000 +timeCreated: 1611404947 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs new file mode 100644 index 00000000..1a196edf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildUnBindGroup
+ {
+ public static void OnReply(GuildUnBindGroupReq oArg, GuildUnBindGroupRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDocument>(XGuildDocument.uuID);
+ specificDocument.OnUnbindQQGroup(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildUnBindGroupReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs.meta new file mode 100644 index 00000000..f4a14999 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildUnBindGroup.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b17ced7c0d90adb478e807ee0b69e240 +timeCreated: 1611404356 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs new file mode 100644 index 00000000..f8dee791 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs @@ -0,0 +1,53 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildZiCaiDonate
+ {
+ public static void OnReply(GuildZiCaiDonate_C2M oArg, GuildZiCaiDonate_M2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ec == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.ec > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ec, "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("GuildGrowthDonateSucess"), "fece00");
+ bool flag4 = DlgBase<XGuildDonateView, XGuildDonateBehavior>.singleton.IsVisible();
+ if (flag4)
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.QueryBuildRank();
+ DlgBase<XGuildDonateView, XGuildDonateBehavior>.singleton.Refresh();
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildZiCaiDonate_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs.meta new file mode 100644 index 00000000..433504d1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d0504fa2c51823f4e839bfe1b5171e6c +timeCreated: 1611404586 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs new file mode 100644 index 00000000..d9386adc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GuildZiCaiDonateHistory
+ {
+ public static void OnReply(GuildZiCaiDonateHistory_C2M oArg, GuildZiCaiDonateHistory_M2C oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ec == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.ec > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.ec, "fece00");
+ }
+ else
+ {
+ XGuildGrowthDocument specificDocument = XDocuments.GetSpecificDocument<XGuildGrowthDocument>(XGuildGrowthDocument.uuID);
+ specificDocument.OnGrowthRecordListGet(oRes.datalist);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(GuildZiCaiDonateHistory_C2M oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs.meta new file mode 100644 index 00000000..81b95ae3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GuildZiCaiDonateHistory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: faa46f298bfef0b41889155e0a6a4c3c +timeCreated: 1611404904 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs new file mode 100644 index 00000000..2a5c6b80 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_HoldWedding
+ {
+ public static void OnReply(HoldWeddingReq oArg, HoldWeddingRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument doc = XWeddingDocument.Doc;
+ doc.OnHoldWedding(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(HoldWeddingReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs.meta new file mode 100644 index 00000000..56089606 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_HoldWedding.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fedd859862ecd3d44830ecdcfc38d2ba +timeCreated: 1611404943 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs new file mode 100644 index 00000000..eb4f61ed --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs @@ -0,0 +1,56 @@ +using System;
+using System.Collections.Generic;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_IbGiftHistReq
+ {
+ public static void OnReply(IBGiftHistAllItemArg oArg, IBGiftHistAllItemRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = oRes.gift == null;
+ if (flag3)
+ {
+ XSingleton<XDebug>.singleton.AddWarningLog("Process_RpcC2G_IBGiftHistAllItem gift is nil", null, null, null, null, null);
+ }
+ else
+ {
+ List<IBGiftHistItem> allitem = oRes.gift.allitem;
+ bool flag4 = allitem != null;
+ if (flag4)
+ {
+ XGameMallDocument specificDocument = XDocuments.GetSpecificDocument<XGameMallDocument>(XGameMallDocument.uuID);
+ specificDocument.HandleGiftItems(oArg.type, allitem);
+ }
+ }
+ }
+ else
+ {
+ bool flag5 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag5)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(IBGiftHistAllItemArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs.meta new file mode 100644 index 00000000..a84028f8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_IbGiftHistReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e286e3326bb7eb543bb13ffe4eaecc11 +timeCreated: 1611404706 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs new file mode 100644 index 00000000..70d0f09b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_InvFightReqAll
+ {
+ public static void OnReply(InvFightArg oArg, InvFightRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XPKInvitationDocument specificDocument = XDocuments.GetSpecificDocument<XPKInvitationDocument>(XPKInvitationDocument.uuID);
+ specificDocument.OnGetPKInfo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(InvFightArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs.meta new file mode 100644 index 00000000..5b6b43dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvFightReqAll.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e0889c776d7ddab4d8e4971ed425092c +timeCreated: 1611404698 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs new file mode 100644 index 00000000..d1f2d42a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_InvHistoryC2MReq
+ {
+ public static void OnReply(InvHistoryArg oArg, InvHistoryRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.ret == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTeamInviteDocument specificDocument = XDocuments.GetSpecificDocument<XTeamInviteDocument>(XTeamInviteDocument.uuID);
+ specificDocument.OnInvHistoryReq(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(InvHistoryArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs.meta new file mode 100644 index 00000000..2498cfcd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_InvHistoryC2MReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9568f51159a8a124486372a58f3e96a0 +timeCreated: 1611404181 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs new file mode 100644 index 00000000..d498b338 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs @@ -0,0 +1,43 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_JoinFmRoom
+ {
+ public static void OnReply(JoinLargeRoomArg oArg, JoinLargeRoomRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
+ bool flag2 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = specificDocument != null && oRes.data != null;
+ if (flag3)
+ {
+ specificDocument.ProcessJoinBigRoom(oRes.data);
+ }
+ }
+ else
+ {
+ specificDocument.ProcessTimeOut();
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString(oRes.error), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(JoinLargeRoomArg oArg)
+ {
+ XRadioDocument specificDocument = XDocuments.GetSpecificDocument<XRadioDocument>(XRadioDocument.uuID);
+ bool flag = specificDocument != null;
+ if (flag)
+ {
+ specificDocument.ProcessTimeOut();
+ }
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs.meta new file mode 100644 index 00000000..6ccb5333 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinFmRoom.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d9959de2dae28d145b3ba4d9542ae2d4 +timeCreated: 1611404644 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs new file mode 100644 index 00000000..7920b8bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs @@ -0,0 +1,31 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_JoinLeagueEleBattle
+ {
+ public static void OnReply(JoinLeagueEleBattleArg oArg, JoinLeagueEleBattleRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (!flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString(oRes.result), "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(JoinLeagueEleBattleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs.meta new file mode 100644 index 00000000..9b5f535d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_JoinLeagueEleBattle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 45949bb52724b9e48b636d1cb7141a3a +timeCreated: 1611403647 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs new file mode 100644 index 00000000..ee9dd478 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs @@ -0,0 +1,51 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_KMatchCommonReq
+ {
+ public static void OnReply(KMatchCommonArg oArg, KMatchCommonRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_REPORT_FORBID;
+ if (flag3)
+ {
+ string arg = XSingleton<UiUtility>.singleton.TimeFormatSince1970((int)oRes.endtime, XStringDefineProxy.GetString("IDIP_TIPS_TIME"), true);
+ string text = string.Format(XStringDefineProxy.GetString("PVP_BANNED_TIPS"), oRes.problem_name, arg);
+ XSingleton<UiUtility>.singleton.ShowSystemTip(text, "fece00");
+ }
+ else
+ {
+ bool flag4 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag4)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(KMatchCommonArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs.meta new file mode 100644 index 00000000..59b2e62e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_KMatchCommonReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1a1cfd312ca447240ba0d2b3fb666089 +timeCreated: 1611403307 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs new file mode 100644 index 00000000..f018a36c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeagueBattleReq
+ {
+ public static void OnReply(LeagueBattleReqArg oArg, LeagueBattleReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LeagueBattleReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs.meta new file mode 100644 index 00000000..7c6f79ca --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeagueBattleReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4a6bdc384c39e604a8e3b40000cf6273 +timeCreated: 1611403665 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs new file mode 100644 index 00000000..1c6e3c11 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs @@ -0,0 +1,51 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeaveFromDragonGuild
+ {
+ public static void OnReply(LeaveDragonGuildArg oArg, LeaveDragonGuildRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XPlayer player = XSingleton<XEntityMgr>.singleton.Player;
+ bool flag3 = player == null;
+ if (!flag3)
+ {
+ bool flag4 = player.Attributes.EntityID == oArg.roleid;
+ bool flag5 = flag4;
+ if (flag5)
+ {
+ XDragonGuildDocument.Doc.OnLeaveDragonGuild(oRes);
+ }
+ else
+ {
+ XDragonGuildDocument.Doc.OnKickAss(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LeaveDragonGuildArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs.meta new file mode 100644 index 00000000..32d4fccc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromDragonGuild.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 36bc3419125fe7f4f9f218610c311da5 +timeCreated: 1611403563 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs new file mode 100644 index 00000000..d93cc178 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs @@ -0,0 +1,53 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeaveFromGuild
+ {
+ public static void OnReply(LeaveGuildArg oArg, LeaveGuildRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XPlayer player = XSingleton<XEntityMgr>.singleton.Player;
+ bool flag3 = player == null;
+ if (!flag3)
+ {
+ bool flag4 = player.Attributes.EntityID == oArg.roleID;
+ bool flag5 = flag4;
+ if (flag5)
+ {
+ XGuildHallDocument specificDocument = XDocuments.GetSpecificDocument<XGuildHallDocument>(XGuildHallDocument.uuID);
+ specificDocument.OnExitGuild(oRes);
+ }
+ else
+ {
+ XGuildMemberDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildMemberDocument>(XGuildMemberDocument.uuID);
+ specificDocument2.OnKickAss(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LeaveGuildArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs.meta new file mode 100644 index 00000000..a6b4a446 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveFromGuild.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a0b34b1fd22ee9a49b8465496c05fbd8 +timeCreated: 1611404250 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs new file mode 100644 index 00000000..debc34aa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeaveLeagueTeam
+ {
+ public static void OnReply(LeaveLeagueTeamArg oArg, LeaveLeagueTeamRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LeaveLeagueTeamArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs.meta new file mode 100644 index 00000000..dd2e4a83 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveLeagueTeam.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e7c650bd3ee8087469fe33ea042ff725 +timeCreated: 1611404750 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs new file mode 100644 index 00000000..58e461d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs @@ -0,0 +1,17 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeavePartner
+ {
+ public static void OnReply(LeavePartnerArg oArg, LeavePartnerRes oRes)
+ {
+ XPartnerDocument.Doc.OnLeavePartnerBack(oRes);
+ }
+
+ public static void OnTimeout(LeavePartnerArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs.meta new file mode 100644 index 00000000..3a28c6a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeavePartner.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cf01c90a47a3dd641b529f4594803891 +timeCreated: 1611404580 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs new file mode 100644 index 00000000..c4ad232f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_LeaveSkyTeam
+ {
+ public static void OnReply(LeaveSkyTeamArg oArg, LeaveSkyTeamRes oRes)
+ {
+ }
+
+ public static void OnTimeout(LeaveSkyTeamArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs.meta new file mode 100644 index 00000000..1e0fadea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_LeaveSkyTeam.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: df2778c3de5acae4781fb4d1c86d39e3 +timeCreated: 1611404691 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs new file mode 100644 index 00000000..f4ddffb1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MSGetFlowerRewardList
+ {
+ public static void OnReply(NewGetFlowerRewardListArg oArg, NewGetFlowerRewardListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorCode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFlowerRankDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument.OnGetAwardList(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(NewGetFlowerRewardListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs.meta new file mode 100644 index 00000000..62073252 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MSGetFlowerRewardList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0871d95d5522090419d710807362c0b0 +timeCreated: 1611402970 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs new file mode 100644 index 00000000..88c32bac --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs @@ -0,0 +1,40 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MTShowTopList
+ {
+ public static void OnReply(TShowTopListArg oArg, TShowTopListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(TShowTopListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs.meta new file mode 100644 index 00000000..06497c75 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MTShowTopList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2f309af90354c6848b59101d72d7b5f8 +timeCreated: 1611403514 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs new file mode 100644 index 00000000..3f036634 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs @@ -0,0 +1,52 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MailOp
+ {
+ public static void OnReply(MailOpArg oArg, MailOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMailDocument specificDocument = XDocuments.GetSpecificDocument<XMailDocument>(XMailDocument.uuID);
+ specificDocument.ResMailOP(oArg, oRes);
+ }
+ else
+ {
+ bool flag4 = oArg.optype == 3u;
+ if (flag4)
+ {
+ XMailDocument specificDocument2 = XDocuments.GetSpecificDocument<XMailDocument>(XMailDocument.uuID);
+ specificDocument2.ReqMailInfo();
+ }
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.errorcode);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(MailOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs.meta new file mode 100644 index 00000000..b3878d47 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MailOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ec1381b154b367f4a935da613a04445c +timeCreated: 1611404786 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs new file mode 100644 index 00000000..0d3c9bd7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MarriageRelationOp
+ {
+ public static void OnReply(MarriageRelationOpArg oArg, MarriageRelationOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnGetMarriageRelationOp(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(MarriageRelationOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs.meta new file mode 100644 index 00000000..591b336f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MarriageRelationOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c2d829921d4ec334e88b20deca8c7a82 +timeCreated: 1611404496 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs new file mode 100644 index 00000000..55d65d37 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MentorMyBeAppliedMsg
+ {
+ public static void OnReply(MentorMyBeAppliedMsgArg oArg, MentorMyBeAppliedMsgRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XMentorshipDocument.Doc.OnGetMyBeenApplyedMsg(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(MentorMyBeAppliedMsgArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs.meta new file mode 100644 index 00000000..ba8a83ee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorMyBeAppliedMsg.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 56352d83ab2c8c64abf95a8f8bd8cbb3 +timeCreated: 1611403742 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs new file mode 100644 index 00000000..68524c2f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_MentorRelationOp
+ {
+ public static void OnReply(MentorRelationOpArg oArg, MentorRelationOpRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XMentorshipDocument.Doc.OnGetMentorshipOpReply(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(MentorRelationOpArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs.meta new file mode 100644 index 00000000..3989423d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_MentorRelationOp.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5bcff5e5aae2d344480094c233d33ac2 +timeCreated: 1611403800 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs new file mode 100644 index 00000000..7b9cc2a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ModifyDragonGuildName
+ {
+ public static void OnReply(ModifyDragonGuildNameArg oArg, ModifyDragonGuildNameRes oRes)
+ {
+ XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
+ specificDocument.ReceiveDragonGuildRenameVolume(oArg, oRes);
+ }
+
+ public static void OnTimeout(ModifyDragonGuildNameArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs.meta new file mode 100644 index 00000000..37abdb86 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyDragonGuildName.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d86ac54064856734a8a5319205516fe0 +timeCreated: 1611404639 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs new file mode 100644 index 00000000..671ba1ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ModifyMsGuildName
+ {
+ public static void OnReply(ModifyArg oArg, ModifyRes oRes)
+ {
+ XRenameDocument specificDocument = XDocuments.GetSpecificDocument<XRenameDocument>(XRenameDocument.uuID);
+ specificDocument.ReceiveGuildRenameVolume(oArg, oRes);
+ }
+
+ public static void OnTimeout(ModifyArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs.meta new file mode 100644 index 00000000..7c38a185 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ModifyMsGuildName.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2cb6d3d044c8d6459047fe7e99b7780 +timeCreated: 1611404258 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs new file mode 100644 index 00000000..f0c52c27 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs @@ -0,0 +1,42 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_NpcFlReqC2M
+ {
+ public static void OnReply(NpcFlArg oArg, NpcFlRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XNPCFavorDocument specificDocument = XDocuments.GetSpecificDocument<XNPCFavorDocument>(XNPCFavorDocument.uuID);
+ bool flag3 = specificDocument != null;
+ if (flag3)
+ {
+ specificDocument.OnReqSrvNpcInfo(oArg, oRes);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(NpcFlArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs.meta new file mode 100644 index 00000000..3ffe3dd2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_NpcFlReqC2M.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cc08f22adb64bbb41a0d4531e9f28349 +timeCreated: 1611404548 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs new file mode 100644 index 00000000..670ca246 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_OPenGardenFarmland
+ {
+ public static void OnReply(OpenGardenFarmlandArg oArg, OpenGardenFarmlandRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnBreakNewFarmlandBack(oArg.farmland_id, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(OpenGardenFarmlandArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs.meta new file mode 100644 index 00000000..cf7277e6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_OPenGardenFarmland.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ab60d0062f169b34da3f7102f2458550 +timeCreated: 1611404307 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs new file mode 100644 index 00000000..1631f1b0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_Open520FestivityRedPacket
+ {
+ public static void OnReply(Open520FestivityRedPacketArg oArg, Open520FestivityRedPacketRes oRes)
+ {
+ }
+
+ public static void OnTimeout(Open520FestivityRedPacketArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs.meta new file mode 100644 index 00000000..d1b6fefd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_Open520FestivityRedPacket.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b4d29a81e547a54abb12aade8397e86 +timeCreated: 1611403891 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs new file mode 100644 index 00000000..246310e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_PayNotify
+ {
+ public static void OnReply(PayNotifyArg oArg, PayNotifyRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XRechargeDocument specificDocument = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
+ specificDocument.OnPayNotify(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(PayNotifyArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs.meta new file mode 100644 index 00000000..b959dbf1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PayNotify.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 18ba47661025f2e4aaa343e4e7c90f74 +timeCreated: 1611403298 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs new file mode 100644 index 00000000..4c56707e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs @@ -0,0 +1,72 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_PkReqC2M
+ {
+ public static void OnReply(PkReqArg oArg, PkReqRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ switch (oArg.type)
+ {
+ case PkReqType.PKREQ_ADDPK:
+ {
+ XQualifyingDocument specificDocument = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument.SetMatchTime(oRes.time, true);
+ break;
+ }
+ case PkReqType.PKREQ_REMOVEPK:
+ {
+ XQualifyingDocument specificDocument2 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument2.SetMatchTime(0u, false);
+ break;
+ }
+ case PkReqType.PKREQ_ALLINFO:
+ {
+ XQualifyingDocument specificDocument3 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument3.SetQualifyingInfo(oRes.allinfo);
+ specificDocument3.SetChallengeRecordInfo(oRes.allinfo);
+ break;
+ }
+ case PkReqType.PKREQ_FETCHPOINTREWARD:
+ {
+ XQualifyingDocument specificDocument4 = XDocuments.GetSpecificDocument<XQualifyingDocument>(XQualifyingDocument.uuID);
+ specificDocument4.RefreshPointReward(oArg.index);
+ break;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(PkReqArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs.meta new file mode 100644 index 00000000..7ce6abc4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PkReqC2M.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fd4a79eedb3416d41bbb5d8d61396169 +timeCreated: 1611404937 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs new file mode 100644 index 00000000..fd2aff5a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_PlantCultivation
+ {
+ public static void OnReply(PlantCultivationArg oArg, PlantCultivationRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnPlantCultivationBack(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(PlantCultivationArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs.meta new file mode 100644 index 00000000..e70ba469 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantCultivation.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e3d840ff507befe459c60fde96a4a509 +timeCreated: 1611404734 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs new file mode 100644 index 00000000..b91121c4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_PlantHarvest
+ {
+ public static void OnReply(PlantHarvestArg oArg, PlantHarvestRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnPlantHarvestBack(oArg.farmland_id, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(PlantHarvestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs.meta new file mode 100644 index 00000000..33dd17aa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_PlantHarvest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2526f9f7cfc47314d99e1ac53e8ae62d +timeCreated: 1611403463 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs new file mode 100644 index 00000000..9b6baedf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs @@ -0,0 +1,51 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_QueryBigMeleeRank
+ {
+ public static void OnReply(QueryMayhemRankArg oArg, QueryMayhemRankRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.err == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oArg.count == XBigMeleeBattleDocument.BATTLE_SHOW_RANK;
+ if (flag3)
+ {
+ XBigMeleeBattleDocument specificDocument = XDocuments.GetSpecificDocument<XBigMeleeBattleDocument>(XBigMeleeBattleDocument.uuID);
+ specificDocument.SetRankData(oArg, oRes);
+ }
+ else
+ {
+ bool flag4 = oArg.count == XBigMeleeEntranceDocument.MAX_RANK;
+ if (flag4)
+ {
+ XBigMeleeEntranceDocument specificDocument2 = XDocuments.GetSpecificDocument<XBigMeleeEntranceDocument>(XBigMeleeEntranceDocument.uuID);
+ specificDocument2.SetRankData(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(QueryMayhemRankArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs.meta new file mode 100644 index 00000000..c9e694c9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryBigMeleeRank.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b87f29e62693b5240b82d447653dee69 +timeCreated: 1611404404 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs new file mode 100644 index 00000000..634df746 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_QueryGuildCheckinNew
+ {
+ public static void OnReply(QueryGuildCheckinArg oArg, QueryGuildCheckinRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSignInDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSignInDocument>(XGuildSignInDocument.uuID);
+ specificDocument.OnGetAllInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(QueryGuildCheckinArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs.meta new file mode 100644 index 00000000..6e429367 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryGuildCheckinNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 032698c80a0922042855cd54ba0c57cb +timeCreated: 1611402958 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs new file mode 100644 index 00000000..c8f37c18 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs @@ -0,0 +1,55 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_QueryResWar
+ {
+ public static void OnReply(QueryResWarArg oArg, QueryResWarRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ else
+ {
+ bool flag4 = oArg.paramSpecified && oArg.param == QueryResWarEnum.RESWAR_FLOWAWARD;
+ if (flag4)
+ {
+ DlgBase<GuildMineRewardView, GuildMineRewardBehaviour>.singleton.SetRewardInfo(oRes);
+ }
+ else
+ {
+ XGuildMineMainDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineMainDocument>(XGuildMineMainDocument.uuID);
+ specificDocument.SetAllInfo(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(QueryResWarArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs.meta new file mode 100644 index 00000000..3813bf97 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWar.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 13b74d039c309b349b1a6162d8b2303f +timeCreated: 1611403250 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs new file mode 100644 index 00000000..4f5fe669 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_QueryResWarRoleRank
+ {
+ public static void OnReply(ResWarRoleRankArg oArg, ResWarRoleRankRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildMineMainDocument specificDocument = XDocuments.GetSpecificDocument<XGuildMineMainDocument>(XGuildMineMainDocument.uuID);
+ specificDocument.OnGetRankInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(ResWarRoleRankArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs.meta new file mode 100644 index 00000000..ba2722b8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_QueryResWarRoleRank.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1796c377e72536f48a89dfc7e93e5589 +timeCreated: 1611403293 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs new file mode 100644 index 00000000..26cefe15 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs @@ -0,0 +1,41 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_RandomFriendWaitListNew
+ {
+ public static void OnReply(RandomFriendWaitListArg oArg, RandomFriendWaitListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ else
+ {
+ for (int i = 0; i < oRes.roleid.Count; i++)
+ {
+ DlgBase<DemoUI, DemoUIBehaviour>.singleton.AddMessage(oRes.name[i] + ":" + oRes.roleid[i].ToString());
+ }
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.RandomFriendRes(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(RandomFriendWaitListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs.meta new file mode 100644 index 00000000..c54f1970 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RandomFriendWaitListNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 99df7dd68b6d4624280d31bc9568ff79 +timeCreated: 1611404198 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs new file mode 100644 index 00000000..1ed78bc3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_RecAlliance
+ {
+ public static void OnReply(RecAllianceArg oArg, RecAllianceRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveRecAlliance(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(RecAllianceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs.meta new file mode 100644 index 00000000..0fa3b51e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RecAlliance.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fd2cd68839ea4634aa1da5dc16093574 +timeCreated: 1611404936 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs new file mode 100644 index 00000000..eb60ae4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs @@ -0,0 +1,36 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_RemoveBlackListNew
+ {
+ public static void OnReply(RemoveBlackListArg oArg, RemoveBlackListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.RemoveBlockFriendRes(oRes.errorcode, oArg.otherroleid);
+ bool flag2 = DlgBase<XCharacterCommonMenuView, XCharacterCommonMenuBehaviour>.singleton.IsVisible();
+ if (flag2)
+ {
+ DlgBase<XCharacterCommonMenuView, XCharacterCommonMenuBehaviour>.singleton.SetBlock();
+ DlgBase<XCharacterCommonMenuView, XCharacterCommonMenuBehaviour>.singleton.RefreshBtns();
+ }
+ }
+ }
+
+ public static void OnTimeout(RemoveBlackListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs.meta new file mode 100644 index 00000000..2cde941c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveBlackListNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: effa8cc487480b64ca02b03b5ad8b35a +timeCreated: 1611404826 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs new file mode 100644 index 00000000..7a7801d7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs @@ -0,0 +1,38 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_RemoveFriendNew
+ {
+ public static void OnReply(RemoveFriendArg oArg, RemoveFriendRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.RemoveFriendRes(oRes.errorcode, oArg.friendroleid);
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ bool flag3 = DlgBase<XTeamView, TabDlgBehaviour>.singleton.IsVisible() && DlgBase<XTeamView, TabDlgBehaviour>.singleton._MyTeamHandler != null;
+ if (flag3)
+ {
+ DlgBase<XTeamView, TabDlgBehaviour>.singleton._MyTeamHandler.RefreshPage();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(RemoveFriendArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs.meta new file mode 100644 index 00000000..1c71340a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_RemoveFriendNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1fa8999c7a81a9d42ba856c00b8056b2 +timeCreated: 1611403402 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs new file mode 100644 index 00000000..4071ac2b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildArenaHistory
+ {
+ public static void OnReply(ReqGuildArenaHistoryRes oArg, ReqGuildArenaHistoryRse oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveGuildArenaHistory(oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildArenaHistoryRes oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs.meta new file mode 100644 index 00000000..b370f944 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildArenaHistory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f7f009fdb0f79254eb732cd4940a7af4 +timeCreated: 1611404890 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs new file mode 100644 index 00000000..42ab0ef8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildBossInfo
+ {
+ public static void OnReply(AskGuildBossInfoArg oArg, AskGuildBossInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.OnGetGuildBossInfo(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(AskGuildBossInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs.meta new file mode 100644 index 00000000..3e8375bf --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildBossInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d3a1c55b7faa5694ebaebebf6aa6ab42 +timeCreated: 1611404599 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs new file mode 100644 index 00000000..7bba45f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildInheritInfo
+ {
+ public static void OnReply(ReqGuildInheritInfoArg oArg, ReqGuildInheritInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildInheritDocument specificDocument = XDocuments.GetSpecificDocument<XGuildInheritDocument>(XGuildInheritDocument.uuID);
+ specificDocument.ReceiveInheritList(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildInheritInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs.meta new file mode 100644 index 00000000..01af0b98 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildInheritInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9d5b0681b288ae047a6ddc6646a038b0 +timeCreated: 1611404236 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs new file mode 100644 index 00000000..62d398ee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildLadderInfo
+ {
+ public static void OnReply(ReqGuildLadderInfoAgr oArg, ReqGuildLadderInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildQualifierDocument specificDocument = XDocuments.GetSpecificDocument<XGuildQualifierDocument>(XGuildQualifierDocument.uuID);
+ specificDocument.ReceiveSelectQualifierList(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildLadderInfoAgr oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs.meta new file mode 100644 index 00000000..a7e3ebe4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b40680d41fa99ca4fae16699675be2ef +timeCreated: 1611404391 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs new file mode 100644 index 00000000..15dc5389 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildLadderRnakInfo
+ {
+ public static void OnReply(ReqGuildLadderRnakInfoArg oArg, ReqGuildLadderRnakInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildQualifierDocument specificDocument = XDocuments.GetSpecificDocument<XGuildQualifierDocument>(XGuildQualifierDocument.uuID);
+ specificDocument.ReceiveGuildLandderRankList(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildLadderRnakInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs.meta new file mode 100644 index 00000000..324f59fe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildLadderRnakInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5f5d3315ba6555047a6ef6e11250f2e1 +timeCreated: 1611403829 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs new file mode 100644 index 00000000..dede1111 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs @@ -0,0 +1,51 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildList
+ {
+ public static void OnReply(FetchGuildListArg oArg, FetchGuildListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oArg.reason == 2;
+ if (flag3)
+ {
+ XRankDocument specificDocument = XDocuments.GetSpecificDocument<XRankDocument>(XRankDocument.uuID);
+ specificDocument.OnGetGuildList(oArg, oRes);
+ }
+ else
+ {
+ bool flag4 = oArg.reason == 3;
+ if (!flag4)
+ {
+ XGuildListDocument specificDocument2 = XDocuments.GetSpecificDocument<XGuildListDocument>(XGuildListDocument.uuID);
+ specificDocument2.OnGetGuildList(oArg, oRes);
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(FetchGuildListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs.meta new file mode 100644 index 00000000..2e586ae8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09ad0ed5ac307844fb276ea4b01da8f1 +timeCreated: 1611403157 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs new file mode 100644 index 00000000..1c986045 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildRankInfo
+ {
+ public static void OnReply(ReqGuildRankInfoArg oArg, ReqGuildRankInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildRankDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRankDocument>(XGuildRankDocument.uuID);
+ specificDocument.ReceiveGuildRankInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildRankInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs.meta new file mode 100644 index 00000000..088c1167 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildRankInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3a21f7757caf76243aa318b3ba60f361 +timeCreated: 1611403594 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs new file mode 100644 index 00000000..e842af08 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildTerrAllianceInfo
+ {
+ public static void OnReply(ReqGuildTerrAllianceInfoArg oArg, ReqGuildTerrAllianceInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveGuildTerrAllianceInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildTerrAllianceInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs.meta new file mode 100644 index 00000000..f0dfc8ec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrAllianceInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f608e4ee19f28704c8b73e96e506454a +timeCreated: 1611404879 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs new file mode 100644 index 00000000..3357d40c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildTerrChallInfo
+ {
+ public static void OnReply(ReqGuildTerrChallInfoArg oArg, ReqGuildTerrChallInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveGuildTerritoryChallInfo(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildTerrChallInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs.meta new file mode 100644 index 00000000..f58fad94 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrChallInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d969cf8e863ab4e4fb57bf1b945a0369 +timeCreated: 1611404644 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs new file mode 100644 index 00000000..003215d3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildTerrCityInfo
+ {
+ public static void OnReply(ReqGuildTerrCityInfoArg oArg, ReqGuildTerrCityInfo oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveGuildTerritoryCityInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildTerrCityInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs.meta new file mode 100644 index 00000000..69c1b533 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrCityInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ba60400b18198784ba72b26ba87449b5 +timeCreated: 1611404436 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs new file mode 100644 index 00000000..d6f1e8cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqGuildTerrIntellInfo
+ {
+ public static void OnReply(ReqGuildTerrIntellInfoArg oArg, ReqGuildTerrIntellInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveTerritoryInterllInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(ReqGuildTerrIntellInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs.meta new file mode 100644 index 00000000..7105ccb5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqGuildTerrIntellInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0a30b80c1e3c811489f532a0c1057f07 +timeCreated: 1611403162 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs new file mode 100644 index 00000000..9b94f97a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReqPlatFriendRankList
+ {
+ public static void OnReply(ReqPlatFriendRankListArg oArg, ReqPlatFriendRankListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnReqPlatFriendsRank(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ReqPlatFriendRankListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs.meta new file mode 100644 index 00000000..f7c737ae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReqPlatFriendRankList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c27f16a42fe47504babc19d15f222a5a +timeCreated: 1611404494 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs new file mode 100644 index 00000000..a91c8614 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ResWarExplore
+ {
+ public static void OnReply(ResWarExploreArg oArg, ResWarExploreRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ResWarExploreArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs.meta new file mode 100644 index 00000000..bc2bd1c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ResWarExplore.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 98e0396e863b0bd49a5dbe0a903bc3ca +timeCreated: 1611404192 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs new file mode 100644 index 00000000..c93c3ae2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ReturnToSelectRole
+ {
+ public static void OnReply(ReturnToSelectRoleArg oArg, ReturnToSelectRoleRes oRes)
+ {
+ bool flag = oRes == null || !XSingleton<XAttributeMgr>.singleton.ProcessAccountData(oRes.accountData);
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XSingleton<XPandoraSDKDocument>.singleton.PandoraLogout();
+ XSingleton<XGame>.singleton.SwitchTo(EXStage.SelectChar, 3u);
+ }
+ }
+
+ public static void OnTimeout(ReturnToSelectRoleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs.meta new file mode 100644 index 00000000..6df28bc9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ReturnToSelectRole.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6edfed331674d5f4ea145c6d86169cdc +timeCreated: 1611403907 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs new file mode 100644 index 00000000..2a8603cc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs @@ -0,0 +1,71 @@ +using System;
+using System.Reflection;
+using KKSG;
+using UILib;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SelectRoleNew
+ {
+ public static void OnReply(SelectRoleNewArg oArg, SelectRoleNewRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (!flag3)
+ {
+ bool flag4 = oRes.result == ErrorCode.ERR_LOGIN_FORBID;
+ if (flag4)
+ {
+ string format = oRes.reason + "\n" + XSingleton<UiUtility>.singleton.ReplaceReturn(XStringDefineProxy.GetString(oRes.result.ToString()));
+ XSingleton<UiUtility>.singleton.ShowModalDialog(string.Format(format, XSingleton<UiUtility>.singleton.TimeAccFormatString(oRes.banTime, 2, 0), XSingleton<UiUtility>.singleton.TimeFormatSince1970(oRes.endTime, XStringDefineProxy.GetString("IDIP_TIPS_TIME"), true)), XStringDefineProxy.GetString("COMMON_OK"), new ButtonClickEventHandler(XSingleton<XLoginDocument>.singleton.OnLoginForbidClick), 300);
+ }
+ else
+ {
+ bool flag5 = oRes.result == ErrorCode.ERR_PLAT_BANACC;
+ if (flag5)
+ {
+ string format2 = oRes.reason + "\n" + XSingleton<UiUtility>.singleton.ReplaceReturn(XStringDefineProxy.GetString(oRes.result.ToString()));
+ XSingleton<UiUtility>.singleton.ShowModalDialog(string.Format(format2, XSingleton<UiUtility>.singleton.TimeFormatSince1970(oRes.endTime, XStringDefineProxy.GetString("IDIP_TIPS_TIME"), true)), XStringDefineProxy.GetString("COMMON_OK"), new ButtonClickEventHandler(XSingleton<XLoginDocument>.singleton.OnLoginForbidClick), 300);
+ }
+ else
+ {
+ bool flag6 = oRes.result == ErrorCode.ERR_HG_FORBID;
+ if (flag6)
+ {
+ string reason = oRes.reason;
+ XSingleton<UiUtility>.singleton.ShowModalDialog(reason, XStringDefineProxy.GetString("COMMON_OK"), new ButtonClickEventHandler(XSingleton<XLoginDocument>.singleton.OnLoginForbidClick), 300);
+ }
+ else
+ {
+ string @string = XStringDefineProxy.GetString(oRes.result);
+ XSingleton<XLoginDocument>.singleton.OnEnterWorldFailed(@string);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SelectRoleNewArg oArg)
+ {
+ XSingleton<XDebug>.singleton.AddLog("rpc Select Role Timeout.", null, null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs.meta new file mode 100644 index 00000000..a654d956 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SelectRoleNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c97777b4a2e2c3f49991ccd099ab5ed2 +timeCreated: 1611404539 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs new file mode 100644 index 00000000..9c4641a2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SendGift2PlatFriend
+ {
+ public static void OnReply(SendGift2PlatFriendArg oArg, SendGift2PlatFriendRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFriendsDocument specificDocument = XDocuments.GetSpecificDocument<XFriendsDocument>(XFriendsDocument.uuID);
+ specificDocument.OnSendGift2PlatFriend(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(SendGift2PlatFriendArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs.meta new file mode 100644 index 00000000..209a269c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGift2PlatFriend.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8702cf4a7bd1ec349ad7ffe593d976e6 +timeCreated: 1611404057 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs new file mode 100644 index 00000000..d3e35b23 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SendGuildBonusInSendList
+ {
+ public static void OnReply(SendGuildBonusInSendListArg oArg, SendGuildBonusInSendListRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildRedPacketDocument specificDocument = XDocuments.GetSpecificDocument<XGuildRedPacketDocument>(XGuildRedPacketDocument.uuID);
+ specificDocument.ReceiveGuildBonusInSend(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(SendGuildBonusInSendListArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs.meta new file mode 100644 index 00000000..81900136 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SendGuildBonusInSendList.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6df8f9b5a4c0a64c9d2f08a8294e631 +timeCreated: 1611404633 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs new file mode 100644 index 00000000..a49801f6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs @@ -0,0 +1,46 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SetSubscribe
+ {
+ public static void OnReply(SetSubscirbeArg oArg, SetSubscribeRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XPushSubscribeDocument specificDocument = XDocuments.GetSpecificDocument<XPushSubscribeDocument>(XPushSubscribeDocument.uuID);
+ specificDocument.OnSetSubscribe(oArg);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(SetSubscirbeArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs.meta new file mode 100644 index 00000000..52ef3b70 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SetSubscribe.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 23905876f9c974b40af26caead6d6280 +timeCreated: 1611403455 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs new file mode 100644 index 00000000..b17f9cd6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_ShowFlowerPageNew
+ {
+ public static void OnReply(ShowFlowerPageArg oArg, ShowFlowerPageRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XFlowerRankDocument specificDocument = XDocuments.GetSpecificDocument<XFlowerRankDocument>(XFlowerRankDocument.uuID);
+ specificDocument.OnGetMyFlowers(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(ShowFlowerPageArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs.meta new file mode 100644 index 00000000..c3d55f51 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_ShowFlowerPageNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ae09902c0b42f0a468a212f24d91b69f +timeCreated: 1611404337 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs new file mode 100644 index 00000000..513fdde4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs @@ -0,0 +1,31 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SkyCityEnter
+ {
+ public static void OnReply(SkyCityEnterArg oArg, SkyCityEnterRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+
+ public static void OnTimeout(SkyCityEnterArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs.meta new file mode 100644 index 00000000..9502ae1c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCityEnter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7e6beaa5d1faaef47b22e1d9e5fb9704 +timeCreated: 1611404004 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs new file mode 100644 index 00000000..442bc1df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_SkyCraftMatchReq
+ {
+ public static void OnReply(SkyCraftMatchReq oArg, SkyCraftMatchRes oRes)
+ {
+ }
+
+ public static void OnTimeout(SkyCraftMatchReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs.meta new file mode 100644 index 00000000..22714ad2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_SkyCraftMatchReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 79eb4c3590afce24799f8fab14f1923b +timeCreated: 1611403987 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs new file mode 100644 index 00000000..12868e7c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_StartPlant
+ {
+ public static void OnReply(StartPlantArg oArg, StartPlantRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ HomePlantDocument.Doc.OnStartPlantBack(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(StartPlantArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs.meta new file mode 100644 index 00000000..883cefa8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartPlant.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3160813e5cb64d9428f2804a8510db79 +timeCreated: 1611403543 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs new file mode 100644 index 00000000..a2b57e60 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_StartResWarPVE
+ {
+ public static void OnReply(ResWarPVEArg oArg, ResWarPVERes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ResWarPVEArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs.meta new file mode 100644 index 00000000..0f7880f1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartResWarPVE.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f009ccd09e9d3964aab697426e1df365 +timeCreated: 1611404827 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs new file mode 100644 index 00000000..41db27cb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_StartWeddingCar
+ {
+ public static void OnReply(StartWeddingCarArg oArg, StartWeddingCarRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(StartWeddingCarArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs.meta new file mode 100644 index 00000000..275baceb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StartWeddingCar.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1515f8049d02d994d83f3478b05ef590 +timeCreated: 1611403262 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs new file mode 100644 index 00000000..58824a70 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_StudyGuildSkillNew
+ {
+ public static void OnReply(StudyGuildSkillArg oArg, StudyGuildSkillRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildSkillDocument specificDocument = XDocuments.GetSpecificDocument<XGuildSkillDocument>(XGuildSkillDocument.uuID);
+ specificDocument.OnStudyGuildSkill(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(StudyGuildSkillArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs.meta new file mode 100644 index 00000000..3d6cd665 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_StudyGuildSkillNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f0dbfbc006689a04b864270d3887544f +timeCreated: 1611404835 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs new file mode 100644 index 00000000..796c3f4a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_TakeMarriageChest
+ {
+ public static void OnReply(TakeMarriageChestArg oArg, TakeMarriageChestRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnTakePartnerChestBack((int)oArg.index, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(TakeMarriageChestArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs.meta new file mode 100644 index 00000000..48e8fa36 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TakeMarriageChest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a00a063d4c9c6f5459c77d24f7894dea +timeCreated: 1611404247 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs new file mode 100644 index 00000000..99668ecc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs @@ -0,0 +1,50 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_TeamRequestC2M
+ {
+ public static void OnReply(TeamOPArg oArg, TeamOPRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ bool flag2 = oArg.request == TeamOperate.TEAM_QUERYCOUNT;
+ if (flag2)
+ {
+ XActivityDocument.Doc.OnGetDayCount();
+ }
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag3)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
+ specificDocument.OnGetTeamOp(oArg, oRes);
+ bool flag4 = oArg.request == TeamOperate.TEAM_QUERYCOUNT;
+ if (flag4)
+ {
+ XExpeditionDocument specificDocument2 = XDocuments.GetSpecificDocument<XExpeditionDocument>(XExpeditionDocument.uuID);
+ specificDocument2.SetTeamCount(oRes);
+ XActivityDocument.Doc.OnGetDayCount();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(TeamOPArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs.meta new file mode 100644 index 00000000..101f27cd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TeamRequestC2M.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c424294868b900f4dbb3b10c2ff3cd62 +timeCreated: 1611404500 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs new file mode 100644 index 00000000..e88b4235 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_TryAlliance
+ {
+ public static void OnReply(TryAllianceArg oArg, TryAlliance oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
+ specificDocument.ReceiveTryAlliance(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(TryAllianceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs.meta new file mode 100644 index 00000000..decb8c31 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryAlliance.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c1fd2cf5f205da54987fdded69b1b0a4 +timeCreated: 1611404492 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs new file mode 100644 index 00000000..96ab38d4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_TryDance
+ {
+ public static void OnReply(TryDanceArg oArg, TryDanceRes oRes)
+ {
+ }
+
+ public static void OnTimeout(TryDanceArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs.meta new file mode 100644 index 00000000..db632b1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryDance.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 51bbf2044e82bad4fa74c0292f45445e +timeCreated: 1611403707 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs new file mode 100644 index 00000000..357bb1ab --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs @@ -0,0 +1,49 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_TryFish
+ {
+ public static void OnReply(TryFishArg oArg, TryFishRes oRes)
+ {
+ XHomeFishingDocument specificDocument = XDocuments.GetSpecificDocument<XHomeFishingDocument>(XHomeFishingDocument.uuID);
+ bool flag = oRes == null;
+ if (flag)
+ {
+ specificDocument.ErrorLeaveFishing();
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ specificDocument.ErrorLeaveFishing();
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ specificDocument.ErrorLeaveFishing();
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ specificDocument.OnFishingResultGet(oRes.item, oRes.fish_level, oRes.experiences);
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(TryFishArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs.meta new file mode 100644 index 00000000..b76c186e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_TryFish.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 152417d55d8aafd4386dd7dd26c61168 +timeCreated: 1611403262 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs new file mode 100644 index 00000000..330459e6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs @@ -0,0 +1,45 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_UpdateMentorApplyStudentInfo
+ {
+ public static void OnReply(UpdateMentorApplyStudentInfoArg oArg, UpdateMentorApplyStudentInfoRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.error == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ XMentorshipDocument.Doc.OnGetMentorshipSetting(oArg, oRes);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.error, "fece00");
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(UpdateMentorApplyStudentInfoArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs.meta new file mode 100644 index 00000000..24892e04 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UpdateMentorApplyStudentInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 14fcb36697114ec4499af2f4354368ce +timeCreated: 1611403260 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs new file mode 100644 index 00000000..aa3c6d1e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_UseGuildBuff
+ {
+ public static void OnReply(UseGuildBuffArg oArg, UseGuildBuffRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.error == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildResContentionBuffDocument.Doc.OnGetUseGuildBuffResult(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(UseGuildBuffArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs.meta new file mode 100644 index 00000000..23190073 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_UseGuildBuff.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a22a819ea65a6da4b8eb2e2de9d47e82 +timeCreated: 1611404256 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs new file mode 100644 index 00000000..168b3d82 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs @@ -0,0 +1,37 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_WeddingInviteOperator
+ {
+ public static void OnReply(WeddingInviteOperatorArg oArg, WeddingInviteOperatorRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWeddingDocument.Doc.OnWeddingInviteOperate(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(WeddingInviteOperatorArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs.meta new file mode 100644 index 00000000..db3e26ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WeddingInviteOperator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ae1844f2727783649b0d4fb46809613b +timeCreated: 1611404337 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs new file mode 100644 index 00000000..20155b7a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_WorldBossEnd
+ {
+ public static void OnReply(WorldBossEndArg oArg, WorldBossEndRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnWorldBossEnd(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(WorldBossEndArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs.meta new file mode 100644 index 00000000..b6b4b257 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossEnd.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 07be392e3b83415459f89118fa9b36b0 +timeCreated: 1611402969 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs new file mode 100644 index 00000000..e51db52c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_WorldBossGuildAddAttr
+ {
+ public static void OnReply(WorldBossGuildAddAttrArg oArg, WorldBossGuildAddAttrRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XWorldBossDocument specificDocument = XDocuments.GetSpecificDocument<XWorldBossDocument>(XWorldBossDocument.uuID);
+ specificDocument.OnGetEncourageTwo(oArg, oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(WorldBossGuildAddAttrArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs.meta new file mode 100644 index 00000000..487093a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_WorldBossGuildAddAttr.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b17d088c18b14284b9fd509bae14c379 +timeCreated: 1611404356 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs new file mode 100644 index 00000000..2c79e976 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_applyguildarena
+ {
+ public static void OnReply(applyguildarenaarg oArg, applyguildarenares oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveApplyGuildArena(oRes);
+ }
+ }
+ }
+
+ public static void OnTimeout(applyguildarenaarg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs.meta new file mode 100644 index 00000000..5318d59b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_applyguildarena.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7aa6d2470e5c6c74f9781b70ab80f75b +timeCreated: 1611403990 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs new file mode 100644 index 00000000..aaa1ab20 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs @@ -0,0 +1,57 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_chat
+ {
+ public static void OnReply(ChatArg oArg, ChatRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ bool flag2 = oRes.errorcode == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.errorcode == ErrorCode.ERR_SUCCESS;
+ if (!flag3)
+ {
+ bool flag4 = oRes.errorcode == ErrorCode.ERR_CHAT_TIMELIMIT;
+ if (flag4)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("ERR_CHAT_TIMELIMIT"), XSingleton<UiUtility>.singleton.TimeDuarationFormatString((int)oRes.cooldown, 5)), "fece00");
+ }
+ else
+ {
+ bool flag5 = oRes.errorcode == ErrorCode.ERR_BLACK_INOTHER;
+ if (flag5)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(string.Format(XStringDefineProxy.GetString("ERR_BLACK_INOTHER"), new object[0]), "fece00");
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errorcode, "fece00");
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ChatArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs.meta new file mode 100644 index 00000000..da8276e4 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_chat.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2a6b8bcc0e19174408cd9b421328a921 +timeCreated: 1611403496 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs new file mode 100644 index 00000000..45bb4790 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_getapplyguildlist
+ {
+ public static void OnReply(getapplyguildlistarg oArg, getapplyguildlistres oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveApplyGuildList(oRes);
+ }
+ }
+
+ public static void OnTimeout(getapplyguildlistarg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs.meta new file mode 100644 index 00000000..3cc7b6d6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getapplyguildlist.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2f0723831d1020743b3100b29592f4fb +timeCreated: 1611403513 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs new file mode 100644 index 00000000..bd474381 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_getguildbosstimeleft
+ {
+ public static void OnReply(getguildbosstimeleftArg oArg, getguildbosstimeleftRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildDragonDocument specificDocument = XDocuments.GetSpecificDocument<XGuildDragonDocument>(XGuildDragonDocument.uuID);
+ specificDocument.OnGetBattleInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(getguildbosstimeleftArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs.meta new file mode 100644 index 00000000..5c8a855f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getguildbosstimeleft.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3b7ac596c726d064184f6d69cbef2109 +timeCreated: 1611403598 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs new file mode 100644 index 00000000..847c806d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_getintegralbattleInfo
+ {
+ public static void OnReply(getintegralbattleInfoarg oArg, getintegralbattleInfores oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveIntegralBattleInfo(oRes);
+ }
+ }
+
+ public static void OnTimeout(getintegralbattleInfoarg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs.meta new file mode 100644 index 00000000..e024badc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_getintegralbattleInfo.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a5ab791690057174e8d85edf532374b4 +timeCreated: 1611404286 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs new file mode 100644 index 00000000..a08d12ef --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs @@ -0,0 +1,28 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_gmfjoinreq
+ {
+ public static void OnReply(gmfjoinarg oArg, gmfjoinres oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.ReceiveGuildArenaJoinBattle(oRes);
+ }
+ }
+
+ public static void OnTimeout(gmfjoinarg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs.meta new file mode 100644 index 00000000..8901e05c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_gmfjoinreq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d00e9c4853064f040ba2d1b3fcb19a37 +timeCreated: 1611404584 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs new file mode 100644 index 00000000..1f2ae72f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2N_CreateRoleNew
+ {
+ public static void OnReply(CreateRoleNewArg oArg, CreateRoleNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(CreateRoleNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs.meta new file mode 100644 index 00000000..4bc1b56f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_CreateRoleNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 21617844595485047aeb692889ae5579 +timeCreated: 1611403414 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs new file mode 100644 index 00000000..912c1955 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs @@ -0,0 +1,31 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XMainClient.UI.UICommon;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2N_LoginReconnectReq
+ {
+ public static void OnReply(LoginReconnectReqArg oArg, LoginReconnectReqRes oRes)
+ {
+ XSingleton<XLoginDocument>.singleton.SetBlockUIVisable(false);
+ bool flag = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ DlgBase<ModalDlg, ModalDlgBehaviour>.singleton.SetVisible(false, true);
+ }
+ else
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ XSingleton<XLoginDocument>.singleton.FromLogining();
+ }
+ }
+
+ public static void OnTimeout(LoginReconnectReqArg oArg)
+ {
+ XSingleton<XLoginDocument>.singleton.SetBlockUIVisable(false);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs.meta new file mode 100644 index 00000000..9fe55e1f --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_LoginReconnectReq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d2f7b62278eae004882d06c8fa8057f2 +timeCreated: 1611404597 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs new file mode 100644 index 00000000..9bb921f5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2N_ReturnToSelectRole
+ {
+ public static void OnReply(ReturnToSelectRoleArg oArg, ReturnToSelectRoleRes oRes)
+ {
+ }
+
+ public static void OnTimeout(ReturnToSelectRoleArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs.meta new file mode 100644 index 00000000..0c49dd7a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_ReturnToSelectRole.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 343519364ca2ce745bc8692282d6f2fc +timeCreated: 1611403554 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs new file mode 100644 index 00000000..b81d39c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2N_SelectRoleNew
+ {
+ public static void OnReply(SelectRoleNewArg oArg, SelectRoleNewRes oRes)
+ {
+ }
+
+ public static void OnTimeout(SelectRoleNewArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs.meta new file mode 100644 index 00000000..22638e62 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2N_SelectRoleNew.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9e52688a22467ef469e64ebee7d37f35 +timeCreated: 1611404241 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs new file mode 100644 index 00000000..6186c7a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs @@ -0,0 +1,77 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2T_ClientLoginRequest
+ {
+ public static void OnReply(LoginArg oArg, LoginRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ XSingleton<XDebug>.singleton.AddLog("Login Rpc Reply.", null, null, null, null, null, XDebugColor.XDebug_None);
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ Process_RpcC2T_ClientLoginRequest.ProcessAccountData(oRes.accountData);
+ Process_RpcC2T_ClientLoginRequest.ProcessLoginExtraData(oRes.data);
+ XSingleton<XLoginDocument>.singleton.EnterToSelectChar();
+ XSingleton<XLoginDocument>.singleton.SetLoginReconnect(oRes.rinfo);
+ }
+ else
+ {
+ ErrorCode result = oRes.result;
+ if (result != ErrorCode.ERR_LOGIN_VERIFY_FAILED)
+ {
+ if (result != ErrorCode.ERR_VERSION_FAILED)
+ {
+ if (result != ErrorCode.ERR_ACCOUNT_QUEUING)
+ {
+ XSingleton<XLoginDocument>.singleton.OnLoginFailed(XStringDefineProxy.GetString(oRes.result));
+ }
+ else
+ {
+ Process_RpcC2T_ClientLoginRequest.ProcessAccountData(oRes.accountData);
+ XSingleton<XLoginDocument>.singleton.ShowServerQueue();
+ }
+ }
+ else
+ {
+ XSingleton<XClientNetwork>.singleton.OnServerErrorNotify((uint)XFastEnumIntEqualityComparer<ErrorCode>.ToInt(oRes.result), oRes.version);
+ }
+ }
+ else
+ {
+ XSingleton<XLoginDocument>.singleton.OnAuthorizedFailed();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(LoginArg oArg)
+ {
+ XSingleton<XDebug>.singleton.AddLog("Login Rpc Timeout.", null, null, null, null, null, XDebugColor.XDebug_None);
+ XSingleton<XAttributeMgr>.singleton.XPlayerCharacters.PlayerBriefInfo.Clear();
+ XSingleton<XAttributeMgr>.singleton.XPlayerCharacters.SelectedSlot = 0;
+ }
+
+ public static void ProcessAccountData(LoadAccountData roAccountData)
+ {
+ XSingleton<XAttributeMgr>.singleton.ProcessAccountData(roAccountData);
+ }
+
+ public static void ProcessLoginExtraData(LoginExtraData data)
+ {
+ XSingleton<XAttributeMgr>.singleton.ProcessLoginExtraData(data);
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs.meta new file mode 100644 index 00000000..b1f868d2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_ClientLoginRequest.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 72affc57742620a428b0002978b2ed40 +timeCreated: 1611403938 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs new file mode 100644 index 00000000..ef47d515 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs @@ -0,0 +1,41 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2T_Reconnect
+ {
+ public static void OnReply(ReconnArg oArg, ReconnRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool onReconnect = XSingleton<XClientNetwork>.singleton.XConnect.OnReconnect;
+ if (onReconnect)
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<XClientNetwork>.singleton.XConnect.OnReconnected();
+ }
+ else
+ {
+ XSingleton<XClientNetwork>.singleton.XConnect.OnReconnectFailed();
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(ReconnArg oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs.meta new file mode 100644 index 00000000..25280af5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_Reconnect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dfd349c5483e4144d9a2423e1de1eaf9 +timeCreated: 1611404694 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs new file mode 100644 index 00000000..fee521b7 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs @@ -0,0 +1,49 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2T_UpLoadAudioToGate
+ {
+ public static void OnReply(UpLoadAudioReq oArg, UpLoadAudioRes oRes)
+ {
+ bool flag = oRes == null;
+ if (!flag)
+ {
+ bool flag2 = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag2)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag3 = oRes.result == ErrorCode.ERR_SUCCESS;
+ if (flag3)
+ {
+ bool flag4 = oArg.srctype == 0u;
+ if (flag4)
+ {
+ XSingleton<XChatIFlyMgr>.singleton.UpLoadMp3Res(oRes);
+ }
+ else
+ {
+ bool flag5 = oArg.srctype == 1u;
+ if (flag5)
+ {
+ XSingleton<XChatApolloMgr>.singleton.UpLoadAudioRes(oRes);
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public static void OnTimeout(UpLoadAudioReq oArg)
+ {
+ }
+ }
+}
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs.meta b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs.meta new file mode 100644 index 00000000..8b2f2a14 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2T_UpLoadAudioToGate.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 97892d6da3ef2d84e956e77b85ed0462 +timeCreated: 1611404188 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: |