4534 【1.3】【前端】组队功能和助战积分优化
1个文件已删除
281个文件已修改
8个文件已添加
| New file |
| | |
| | | using UnityEngine;
|
| | | using System.Collections;
|
| | |
|
| | | // B2 08 获得仙缘币信息 #tagMCAddXianyuanCoinMsg
|
| | |
|
| | | public class DTCB208_tagMCAddXianyuanCoinMsg : DtcBasic {
|
| | | public override void Done(GameNetPackBasic vNetPack) {
|
| | | base.Done(vNetPack);
|
| | | HB208_tagMCAddXianyuanCoinMsg vNetData = vNetPack as HB208_tagMCAddXianyuanCoinMsg;
|
| | | }
|
| | | }
|
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c552c0757711ff1429d5e810ff4b47e9 |
| | | timeCreated: 1543056283 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| New file |
| | |
| | | using UnityEngine;
|
| | | using System.Collections;
|
| | |
|
| | | // B2 11 助战记录列表 #tagMCHelpBattleRecordList
|
| | |
|
| | | public class DTCB211_tagMCHelpBattleRecordList : DtcBasic {
|
| | | public override void Done(GameNetPackBasic vNetPack) {
|
| | | base.Done(vNetPack);
|
| | | HB211_tagMCHelpBattleRecordList vNetData = vNetPack as HB211_tagMCHelpBattleRecordList;
|
| | | }
|
| | | }
|
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c133295af3d76ec48b28d53f70d61942 |
| | | timeCreated: 1543067482 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| New file |
| | |
| | | using UnityEngine;
|
| | | using System.Collections;
|
| | |
|
| | | // B2 08 获得仙缘币信息 #tagMCAddXianyuanCoinMsg
|
| | |
|
| | | public class HB208_tagMCAddXianyuanCoinMsg : GameNetPackBasic {
|
| | | public uint MapID;
|
| | | public byte FuncLineID;
|
| | | public ushort XianyuanCoinAdd; // 增加的仙缘币,0代表已达上限
|
| | | public uint CallPlayerID; // 助战的玩家ID,有值时代表真实助战,没有值时为自己打的
|
| | | public byte NameLen;
|
| | | public string CallPlayerName; // 助战的玩家名,size = NameLen
|
| | |
|
| | | public HB208_tagMCAddXianyuanCoinMsg () {
|
| | | _cmd = (ushort)0xB208;
|
| | | }
|
| | |
|
| | | public override void ReadFromBytes (byte[] vBytes) {
|
| | | TransBytes (out MapID, vBytes, NetDataType.DWORD);
|
| | | TransBytes (out FuncLineID, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out XianyuanCoinAdd, vBytes, NetDataType.WORD);
|
| | | TransBytes (out CallPlayerID, vBytes, NetDataType.DWORD);
|
| | | TransBytes (out NameLen, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out CallPlayerName, vBytes, NetDataType.Chars, NameLen);
|
| | | }
|
| | |
|
| | | }
|
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5fbf55c39d638e24d98e40aaed8b09fb |
| | | timeCreated: 1543056283 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| New file |
| | |
| | | using UnityEngine;
|
| | | using System.Collections;
|
| | |
|
| | | // B2 11 助战记录列表 #tagMCHelpBattleRecordList
|
| | |
|
| | | public class HB211_tagMCHelpBattleRecordList : GameNetPackBasic {
|
| | | public ushort RecordCount; // 记录数
|
| | | public tagMCHelpBattleRecord[] RecordList;
|
| | |
|
| | | public HB211_tagMCHelpBattleRecordList () {
|
| | | _cmd = (ushort)0xB211;
|
| | | }
|
| | |
|
| | | public override void ReadFromBytes (byte[] vBytes) {
|
| | | TransBytes (out RecordCount, vBytes, NetDataType.WORD);
|
| | | RecordList = new tagMCHelpBattleRecord[RecordCount];
|
| | | for (int i = 0; i < RecordCount; i ++) {
|
| | | RecordList[i] = new tagMCHelpBattleRecord();
|
| | | TransBytes (out RecordList[i].CallPlayerID, vBytes, NetDataType.DWORD);
|
| | | TransBytes (out RecordList[i].NameLen, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out RecordList[i].CallPlayerName, vBytes, NetDataType.Chars, RecordList[i].NameLen);
|
| | | TransBytes (out RecordList[i].MapID, vBytes, NetDataType.DWORD);
|
| | | TransBytes (out RecordList[i].FuncLineID, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out RecordList[i].XianyuanCoinAdd, vBytes, NetDataType.WORD);
|
| | | TransBytes (out RecordList[i].Relation, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out RecordList[i].VIPLV, vBytes, NetDataType.BYTE);
|
| | | TransBytes (out RecordList[i].HelpTime, vBytes, NetDataType.Chars, 19);
|
| | | }
|
| | | }
|
| | |
|
| | | public struct tagMCHelpBattleRecord {
|
| | | public uint CallPlayerID; // 邀请助战的玩家ID
|
| | | public byte NameLen;
|
| | | public string CallPlayerName; // 邀请助战的玩家名,size = NameLen
|
| | | public uint MapID;
|
| | | public byte FuncLineID;
|
| | | public ushort XianyuanCoinAdd; // 增加的仙缘币,0代表已达上限
|
| | | public byte Relation; // 当时的关系:0-无,1-好友,2-盟友
|
| | | public byte VIPLV; // 当时的VIP等级
|
| | | public string HelpTime; // 助战时间yyyy-MM-dd hh:mm:ss
|
| | | }
|
| | |
|
| | | }
|
| New file |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 34c800f7d5597834aa9b3c0bd5f37a17 |
| | | timeCreated: 1543067482 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | | defaultReferences: [] |
| | | executionOrder: 0 |
| | | icon: {instanceID: 0} |
| | | userData: |
| | | assetBundleName: |
| | | assetBundleVariant: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dc4d13d8870f71a41837b821c9d0e063 |
| | | folderAsset: yes |
| | | timeCreated: 1542941427 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | DefaultImporter: |
| | | userData: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 366ef616cf2798c4db442a16e1431ee4 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f9502491d5407e947b6353c15dc1588c |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 575c508f17509084599574c537caaea3 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1052d29a5ac367140af65e0ab05e34fe |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ed7a78ecdf6443a408a4cfddd15b1a2b |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7367406c7d706a049ac48703baaf9f28 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 903c8091fd11a4c4f8ebec1dda3e21c9 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2853dbf742661134c85ca228df893351 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 85efaee8cda3b4a4296558d4a1324604 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b8a0a9d0f3042574cb864dbe49c409ff |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 742ba637d1995814289a525960538a5e |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 65ba713f20de65b49ad7d5ad35a285b8 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e67d2566b86a54840bd1e2741653bd5a |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2b64a4df45954f646a1dd57f9d36d706 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 720623b7498f49b43afcae0922e43101 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2f272517dccc3784ea7d5c8c5264ac31 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5594336958101ed4fb3cc3c7a3675511 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e75b5ad272c6d1f4889f4a60e014f759 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 57eea5bf27d44c44a836bd30700f4c90 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9a322da19987dbc4fa65ded8f50eba20 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | #endif |
| | | } |
| | | |
| | | public void __Gen_Delegate_Imp9(object p0, ScrollerDataType p1, object p2) |
| | | public void __Gen_Delegate_Imp9(object p0, int p1) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | | { |
| | | #endif |
| | | RealStatePtr L = luaEnv.rawL; |
| | | int errFunc = LuaAPI.pcall_prepare(L, errorFuncRef, luaReference); |
| | | ObjectTranslator translator = luaEnv.translator; |
| | | translator.PushAny(L, p0); |
| | | LuaAPI.xlua_pushinteger(L, p1); |
| | | |
| | | PCall(L, 2, 0, errFunc); |
| | | |
| | | |
| | | |
| | | LuaAPI.lua_settop(L, errFunc - 1); |
| | | |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | } |
| | | #endif |
| | | } |
| | | |
| | | public void __Gen_Delegate_Imp10(object p0, ScrollerDataType p1, object p2) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public void __Gen_Delegate_Imp10(object p0, float p1) |
| | | public void __Gen_Delegate_Imp11(object p0, float p1) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public StoreModel __Gen_Delegate_Imp11(object p0) |
| | | public StoreModel __Gen_Delegate_Imp12(object p0) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public Snxxz.UI.MysticalPurchaseModel __Gen_Delegate_Imp12(object p0) |
| | | public Snxxz.UI.MysticalPurchaseModel __Gen_Delegate_Imp13(object p0) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public bool __Gen_Delegate_Imp13(object p0) |
| | | public bool __Gen_Delegate_Imp14(object p0) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public Snxxz.UI.TestModel __Gen_Delegate_Imp14(object p0) |
| | | public Snxxz.UI.TestModel __Gen_Delegate_Imp15(object p0) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public void __Gen_Delegate_Imp15(object p0, object p1) |
| | | public void __Gen_Delegate_Imp16(object p0, object p1) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | #endif |
| | | } |
| | | |
| | | public bool __Gen_Delegate_Imp16(object p0, out int p1) |
| | | public bool __Gen_Delegate_Imp17(object p0, out int p1) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | |
| | | bool __gen_ret = LuaAPI.lua_toboolean(L, errFunc + 1); |
| | | LuaAPI.lua_settop(L, errFunc - 1); |
| | | return __gen_ret; |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | } |
| | | #endif |
| | | } |
| | | |
| | | public void __Gen_Delegate_Imp17(object p0, int p1) |
| | | { |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | lock (luaEnv.luaEnvLock) |
| | | { |
| | | #endif |
| | | RealStatePtr L = luaEnv.rawL; |
| | | int errFunc = LuaAPI.pcall_prepare(L, errorFuncRef, luaReference); |
| | | ObjectTranslator translator = luaEnv.translator; |
| | | translator.PushAny(L, p0); |
| | | LuaAPI.xlua_pushinteger(L, p1); |
| | | |
| | | PCall(L, 2, 0, errFunc); |
| | | |
| | | |
| | | |
| | | LuaAPI.lua_settop(L, errFunc - 1); |
| | | |
| | | #if THREAD_SAFE || HOTFIX_ENABLE |
| | | } |
| | | #endif |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 38127c1aba2f2f84180f8641b5485b6d |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9a293067c341ace46a9ad6875b463be6 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6a988e256acba494eadcc20a3999d360 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bfe0ba41c73fa5d4899da5f0a81086f6 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6e78a5286980d6a4387dbc681c8ce8f4 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 67758631677f240498cb4e8869b58e5a |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d954292965128ac4b8ad86c0789b2621 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d134f1057834f5e49a5d8b94c8f845bb |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e5e79b18419e49e438bb35a1a3edf542 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c1a5d7f841dd1074488292bdd04b411f |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 77cabfb770b6b2b4e9f5303e2955ddac |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c52c6861b77786143b4b10ef43463a05 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 776516ba62464d6499d794710cf35ad0 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1e173f66b6a9b1446ba7bbea76d51647 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 16eecc21a0392494abde7ecaa0a8832d |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 831c99c185e7f1a48acbcd3c23093a7a |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 86a069a303fdb7f4383a64d5fb5c45a9 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bcc451f8eb19c3e40898480e29da495e |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 29e52f2a27fea7d429c21fcadc9c8bbf |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e1c6a0360e313da4eab15eae14f2d92a |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ad75d722cf8b88449a9c736f1893d782 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 64e7cf853bbf4bf42adef5e2e1a94dfd |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b9323ca02b46d26458c6fe6acb4aac12 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8e95293ea9fc1a74990ade8588c60553 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b289e75fb1c763a46bb13f8524351dae |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3c1a0d27eaf9e0145b0d0018ca48c0b1 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1437d7bba566e504099d72d7ae48720d |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d898d9ee8214b424290a033b4f8d210a |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 742281ed58b42804493142160cedb706 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(InGameDownLoad); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 11, 14, 6); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 12, 14, 6); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "AssignTasks", _m_AssignTasks); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "ParseRewardConfig", _m_ParseRewardConfig); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateRewardInfo", _m_UpdateRewardInfo); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "RequestDownLoadReward", _m_RequestDownLoadReward); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetMapAssetDownLoadProgress", _m_GetMapAssetDownLoadProgress); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryDownLoad", _m_TryDownLoad); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "StartDownLoad", _m_StartDownLoad); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Pause", _m_Pause); |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetMapAssetDownLoadProgress(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | InGameDownLoad gen_to_be_invoked = (InGameDownLoad)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _mapId = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | float gen_ret = gen_to_be_invoked.GetMapAssetDownLoadProgress( _mapId ); |
| | | LuaAPI.lua_pushnumber(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryDownLoad(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 51676a4765e51774faa3999806d84e4a |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 826c927effcbdeb46acff0a6dfdceb6a |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2c53ea58fddcb0f45a1e6f8f6cbc69ee |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ff522c98d61db384ea53d63f06b160e7 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8680fba7267ca044b97790a1053bc054 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4c03aab61a5a77c4bbf0d44f8d7a4388 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e3dcc9780e97eb0408f1801048b32087 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 05c7e245befdd69469423894f563652b |
| | | timeCreated: 1542965471 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3dfac8c26173ab64785fd29ea8ecd26b |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d4fb42a3e4308d44c9eb0c79686faa97 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ede522b8cf69edd4da535db4eedfc8f2 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a0c6c75008b1bee4fade9867db5126ac |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9fc52aecd7f5e3440a526bb1da56c0b2 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3eb2eeb0d312e294492ba8df035cf399 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0d3f054e3d96eb448a4df5a6cc3d37a1 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e0050a9ffeb549f49ae3dfa996aac9b9 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 443c90b4b7e2ebc48bb495dff02ab125 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7f5b1e9efce473c4cb81157946499def |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bb4f06d30c4617340a36302fffbd9807 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b7b4d10ec07658347aacc1dd71b21379 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cdbe72c783d234a4e95064569328bf88 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e20be7566bae86a40bb5da178c4b869e |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: edbf072288603014abba0af3dacf6284 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f5ed1c6c3115386429a0e5046dc73d95 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3c0c3a3ee7ac3d54489db66bee9e0da4 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: aab2171e55e4960439ffa056abe6ade7 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9c14f21446dd8234884140c3874503ba |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2941dc2494d939445afc44dd89d7a812 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 83c52f4ac532a4b48be383ac8f7a7c16 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2aae40723e375b94389e06a7208bb9d1 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1e1fc048d20a48f4fa78a3f1a9395fcf |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6cc2176a3805d724eb566af133ea7af5 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b28dd16e04195c84ab4833cc1ccfd94e |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c98f51a10421287449b92b04c366fe80 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b228f3e0ca3f5d94585a1d0ea10ee09c |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f0eb44f25c31731408c2bf02535cc833 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f96e5d71694078648b3e81d014b7f4ec |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 83f82d7fc20bb404f92d95b531bd19b9 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e51a94726bd39b1428959de7c1026701 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 19db0b90a16aab94a8700f3d92a0b84d |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d4b6552434c4bf247908e89aab218761 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bc20d93b1cfe4274aa136a34f23b29ce |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 65ecd44b662fd2242ae24f6bfc8e6ee4 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9d8abcd8d920a04418c38f2ea45f7bd6 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 67b682d35abe8a14a961168bb88c68ac |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b1024eb9474128e41bd640f6c3b33f87 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4e7f587911ad1a5499a9e4a8b8b6c9ac |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a9d62babd45b7934ca0c5a15889ec95c |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 10a962aa0fe28e249826e49bc7a6aba7 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: acf6615851439784dadba24b9f23bff6 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a8ab45402c85f240bce9fdde4dee238 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cd76736fa49885e4bb804a441e8129da |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 431a6169055f3d54e88f58f576f50bae |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3517bd5cd5dcdb849b47f0e7874404e9 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.ChatCenter); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 25, 17, 10); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 26, 17, 10); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "CheckSendRealmThanks", _m_CheckSendRealmThanks); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetChatExtra", _m_SetChatExtra); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "HandleChatBanned", _m_HandleChatBanned); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "ServerForbidenChat", _m_ServerForbidenChat); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "ChatClientBan", _m_ChatClientBan); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsClientBan", _m_IsClientBan); |
| | | |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_ServerForbidenChat(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.ChatCenter gen_to_be_invoked = (Snxxz.UI.ChatCenter)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | bool _value = LuaAPI.lua_toboolean(L, 2); |
| | | |
| | | gen_to_be_invoked.ServerForbidenChat( _value ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_ChatClientBan(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 35141eb4f8d4e0b4596071530a48dbdc |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 33d0ac81552d8944d8e2b34adda63494 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 34d58d96b49dee445aec87d6f8c13942 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7598ad4a29bcded4b9a5f8874f28a0c9 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5d8319c3d7861b740b45a1f31af88563 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b481275ca90afeb49bf52efc8cc81e66 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c29ed11e2d46a9c4f8e48fdacaef75d0 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 35edba0768f17624aa0a208fdb3ccd61 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.DungeonAssistModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 21, 12, 0); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 28, 14, 0); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBeforePlayerDataInitialize", _m_OnBeforePlayerDataInitialize); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnPlayerLoginOk", _m_OnPlayerLoginOk); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetFreeRefresh", _m_TryGetFreeRefresh); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsMaxAssistCoinsAddByVip", _m_IsMaxAssistCoinsAddByVip); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsMaxAssistCoinsRatioAddByVip", _m_IsMaxAssistCoinsRatioAddByVip); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetRelatedToPlayer", _m_GetRelatedToPlayer); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetAssistReward", _m_GetAssistReward); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetHelpBattleConfig", _m_GetHelpBattleConfig); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetHelpInfoLocalSave", _m_SetHelpInfoLocalSave); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetAssistResult", _m_TryGetAssistResult); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateAssistCheckInResult", _m_UpdateAssistCheckInResult); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetHelpInfoRead", _m_SetHelpInfoRead); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateAssistList", _m_UpdateAssistList); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdataAssistPlayer", _m_UpdataAssistPlayer); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetAssistPlayerInfo", _m_GetAssistPlayerInfo); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetAssistPlayerInfos", _m_GetAssistPlayerInfos); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetAlreadyAssistNum", _m_GetAlreadyAssistNum); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendAssistCheckIn", _m_SendAssistCheckIn); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendPlayerAssist", _m_SendPlayerAssist); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendAssistRefresh", _m_SendAssistRefresh); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetFreeRefresh", _m_TryGetFreeRefresh); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateAssistCheckInResult", _m_UpdateAssistCheckInResult); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateAssistResultNotify", _m_UpdateAssistResultNotify); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "ToDisplay", _m_ToDisplay); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateResultEvent", _e_UpdateResultEvent); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateCheckInResultEvent", _e_UpdateCheckInResultEvent); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdataAssistPlayerListEvent", _e_UpdataAssistPlayerListEvent); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdataAssistPlayerEvent", _e_UpdataAssistPlayerEvent); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateCheckInResultEvent", _e_UpdateCheckInResultEvent); |
| | | |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "helpInfoLocalSave", _g_get_helpInfoLocalSave); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "helpInfolist", _g_get_helpInfolist); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "helpBattleDict", _g_get_helpBattleDict); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "assistCoolTime", _g_get_assistCoolTime); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "goldAssistPlayer", _g_get_goldAssistPlayer); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "freeRefreshNum", _g_get_freeRefreshNum); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "goldRefreshNum", _g_get_goldRefreshNum); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "refreshCostMoney", _g_get_refreshCostMoney); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "maxXianYuanCoins", _g_get_maxXianYuanCoins); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "checkInTotalTime", _g_get_checkInTotalTime); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "assistRobotId", _g_get_assistRobotId); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "assistCoinsDict", _g_get_assistCoinsDict); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "IsCheckInOk", _g_get_IsCheckInOk); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "assistRefreshNum", _g_get_assistRefreshNum); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "IsCheckInOk", _g_get_IsCheckInOk); |
| | | |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAssistReward(RealStatePtr L) |
| | | static int _m_TryGetFreeRefresh(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | |
| | | |
| | | |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | int _remainNum; |
| | | |
| | | System.Collections.Generic.List<int> gen_ret = gen_to_be_invoked.GetAssistReward( _type ); |
| | | bool gen_ret = gen_to_be_invoked.TryGetFreeRefresh( out _remainNum ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _remainNum); |
| | | |
| | | |
| | | |
| | | |
| | | return 2; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_IsMaxAssistCoinsAddByVip(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _nextVipLv; |
| | | int _coins; |
| | | |
| | | bool gen_ret = gen_to_be_invoked.IsMaxAssistCoinsAddByVip( out _nextVipLv, out _coins ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _nextVipLv); |
| | | |
| | | LuaAPI.xlua_pushinteger(L, _coins); |
| | | |
| | | |
| | | |
| | | |
| | | return 3; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_IsMaxAssistCoinsRatioAddByVip(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _nextVipLv; |
| | | float _ratio; |
| | | |
| | | bool gen_ret = gen_to_be_invoked.IsMaxAssistCoinsRatioAddByVip( out _nextVipLv, out _ratio ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _nextVipLv); |
| | | |
| | | LuaAPI.lua_pushnumber(L, _ratio); |
| | | |
| | | |
| | | |
| | | |
| | | return 3; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetRelatedToPlayer(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _playerId = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | Snxxz.UI.DungeonAssistModel.RelatedToPlayer gen_ret = gen_to_be_invoked.GetRelatedToPlayer( _playerId ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAssistReward(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | int gen_param_count = LuaAPI.lua_gettop(L); |
| | | |
| | | if(gen_param_count == 3&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)&& LuaTypes.LUA_TBOOLEAN == LuaAPI.lua_type(L, 3)) |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | bool _isSelf = LuaAPI.lua_toboolean(L, 3); |
| | | |
| | | int gen_ret = gen_to_be_invoked.GetAssistReward( _type, _isSelf ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2)) |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | int gen_ret = gen_to_be_invoked.GetAssistReward( _type ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | return LuaAPI.luaL_error(L, "invalid arguments to Snxxz.UI.DungeonAssistModel.GetAssistReward!"); |
| | | |
| | | } |
| | | |
| | |
| | | |
| | | |
| | | { |
| | | string _info = LuaAPI.lua_tostring(L, 2); |
| | | bool _isNew = LuaAPI.lua_toboolean(L, 3); |
| | | string _createDate = LuaAPI.lua_tostring(L, 2); |
| | | string _info = LuaAPI.lua_tostring(L, 3); |
| | | bool _isNew = LuaAPI.lua_toboolean(L, 4); |
| | | |
| | | gen_to_be_invoked.SetHelpInfoLocalSave( _info, _isNew ); |
| | | gen_to_be_invoked.SetHelpInfoLocalSave( _createDate, _info, _isNew ); |
| | | |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_UpdateAssistCheckInResult(RealStatePtr L) |
| | | static int _m_SetHelpInfoRead(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | |
| | | |
| | | |
| | | { |
| | | HB205_tagMCHelpBattleCheckInResult _checkInResult = (HB205_tagMCHelpBattleCheckInResult)translator.GetObject(L, 2, typeof(HB205_tagMCHelpBattleCheckInResult)); |
| | | |
| | | gen_to_be_invoked.UpdateAssistCheckInResult( _checkInResult ); |
| | | gen_to_be_invoked.SetHelpInfoRead( ); |
| | | |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetAlreadyAssistNum(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | int gen_ret = gen_to_be_invoked.GetAlreadyAssistNum( ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_SendAssistCheckIn(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryGetFreeRefresh(RealStatePtr L) |
| | | static int _m_UpdateAssistCheckInResult(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | |
| | | |
| | | |
| | | { |
| | | int _remainNum; |
| | | HB205_tagMCHelpBattleCheckInResult _checkInResult = (HB205_tagMCHelpBattleCheckInResult)translator.GetObject(L, 2, typeof(HB205_tagMCHelpBattleCheckInResult)); |
| | | |
| | | bool gen_ret = gen_to_be_invoked.TryGetFreeRefresh( out _remainNum ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _remainNum); |
| | | |
| | | gen_to_be_invoked.UpdateAssistCheckInResult( _checkInResult ); |
| | | |
| | | |
| | | |
| | | return 2; |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_UpdateAssistResultNotify(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | int gen_param_count = LuaAPI.lua_gettop(L); |
| | | |
| | | if(gen_param_count == 2&& translator.Assignable<HB211_tagMCHelpBattleRecordList>(L, 2)) |
| | | { |
| | | HB211_tagMCHelpBattleRecordList _recordList = (HB211_tagMCHelpBattleRecordList)translator.GetObject(L, 2, typeof(HB211_tagMCHelpBattleRecordList)); |
| | | |
| | | gen_to_be_invoked.UpdateAssistResultNotify( _recordList ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | if(gen_param_count == 2&& translator.Assignable<HB208_tagMCAddXianyuanCoinMsg>(L, 2)) |
| | | { |
| | | HB208_tagMCAddXianyuanCoinMsg _msg = (HB208_tagMCAddXianyuanCoinMsg)translator.GetObject(L, 2, typeof(HB208_tagMCAddXianyuanCoinMsg)); |
| | | |
| | | gen_to_be_invoked.UpdateAssistResultNotify( _msg ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | return LuaAPI.luaL_error(L, "invalid arguments to Snxxz.UI.DungeonAssistModel.UpdateAssistResultNotify!"); |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_ToDisplay(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | string gen_ret = gen_to_be_invoked.ToDisplay( ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.assistCoolTime); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_goldAssistPlayer(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.goldAssistPlayer); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_assistRobotId(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.assistRobotId); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_assistCoinsDict(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_IsCheckInOk(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.lua_pushboolean(L, gen_to_be_invoked.IsCheckInOk); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_assistRefreshNum(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.assistRefreshNum); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_IsCheckInOk(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.lua_pushboolean(L, gen_to_be_invoked.IsCheckInOk); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | LuaAPI.luaL_error(L, "invalid arguments to Snxxz.UI.DungeonAssistModel.UpdateResultEvent!"); |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _e_UpdateCheckInResultEvent(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | int gen_param_count = LuaAPI.lua_gettop(L); |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | System.Action gen_delegate = translator.GetDelegate<System.Action>(L, 3); |
| | | if (gen_delegate == null) { |
| | | return LuaAPI.luaL_error(L, "#3 need System.Action!"); |
| | | } |
| | | |
| | | if (gen_param_count == 3) |
| | | { |
| | | |
| | | if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { |
| | | gen_to_be_invoked.UpdateCheckInResultEvent += gen_delegate; |
| | | return 0; |
| | | } |
| | | |
| | | |
| | | if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { |
| | | gen_to_be_invoked.UpdateCheckInResultEvent -= gen_delegate; |
| | | return 0; |
| | | } |
| | | |
| | | } |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | LuaAPI.luaL_error(L, "invalid arguments to Snxxz.UI.DungeonAssistModel.UpdateCheckInResultEvent!"); |
| | | return 0; |
| | | } |
| | | |
| | |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _e_UpdateCheckInResultEvent(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | int gen_param_count = LuaAPI.lua_gettop(L); |
| | | Snxxz.UI.DungeonAssistModel gen_to_be_invoked = (Snxxz.UI.DungeonAssistModel)translator.FastGetCSObj(L, 1); |
| | | System.Action gen_delegate = translator.GetDelegate<System.Action>(L, 3); |
| | | if (gen_delegate == null) { |
| | | return LuaAPI.luaL_error(L, "#3 need System.Action!"); |
| | | } |
| | | |
| | | if (gen_param_count == 3) |
| | | { |
| | | |
| | | if (LuaAPI.xlua_is_eq_str(L, 2, "+")) { |
| | | gen_to_be_invoked.UpdateCheckInResultEvent += gen_delegate; |
| | | return 0; |
| | | } |
| | | |
| | | |
| | | if (LuaAPI.xlua_is_eq_str(L, 2, "-")) { |
| | | gen_to_be_invoked.UpdateCheckInResultEvent -= gen_delegate; |
| | | return 0; |
| | | } |
| | | |
| | | } |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | LuaAPI.luaL_error(L, "invalid arguments to Snxxz.UI.DungeonAssistModel.UpdateCheckInResultEvent!"); |
| | | return 0; |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0c4f170a0e60c1f4d8390712889c2037 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5fc3169b30fc1ae4885e31f8ddb884ad |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6eef41c9063ba58439822400982fb465 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ebc824bbbf716204db0a7dd1b6432900 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 44791766fdc6e5b4aa84e31f18eb8313 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 59359b936262095478e72944710f44d5 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 52e06f48a20c14c4c8382c613aa69686 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 080467fae347c5e4f87e034c641ab681 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cdfa7b8751044b44ca2d7d4577399cec |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e00f0b5898703144a96436f92fc448b3 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.FairyModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 37, 29, 9); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 38, 29, 9); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateFairyRequested", _m_UpdateFairyRequested); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "FairyRequested", _m_FairyRequested); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateFairyInfo", _m_UpdateFairyInfo); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "InSameFairy", _m_InSameFairy); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnSort", _m_OnSort); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Compare", _m_Compare); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendInviteFairy", _m_SendInviteFairy); |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_InSameFairy(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.FairyModel gen_to_be_invoked = (Snxxz.UI.FairyModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _playerId = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | bool gen_ret = gen_to_be_invoked.InSameFairy( _playerId ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_OnSort(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8cabe004b5cc89c449f55cca62e45d87 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 04023a30a754f7241ae20762f76b630c |
| | | timeCreated: 1542965471 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4b9fd447cb5eca74cbe6bbe110054e57 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2121c8a8875993c4a973f7c28b29673b |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2fa5a5fc5dca0e8439001de2495e9899 |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3cef829b4f138c543aa1ee99a0b4177c |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 712a87bd2e43c1d45ad766b53de6b5bd |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bfda560a319f6040b21bd19fd0a69a2 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ffaa2a2d7630abc428a55ea2072068fb |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c9596efa8419cc044b73fc82e697890c |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c6291f150fca89d48b41ab0b26ec2137 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e23ea9b6be09d5a48aeb5a14b39d3cf0 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ff38296aef3e2da46863df35d91d92aa |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a74227626a407f940a257b888c2534eb |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8e2c9a9f5ab32924db74f0bdd61ae1b1 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 320fad661ef112542a682fa83335451e |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e6d30c3f8b1abf9488d72aa7e86b04fb |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 38f643aee0976f24aba4cd55a33ad59c |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0d0a9385bbd8291469659b1c795cfb7a |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dc63883ab698291438f5632eed262c38 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8857b8ac5c10c1c46b68cce4d3c9b429 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f8a5a2ad126e5af448c3c3ab4e862d5d |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 06578f1ce7db3ad4890941f7cdbfc521 |
| | | timeCreated: 1542965471 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bfba1164f8c10c24e9e638523ea9d281 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4d028498045645c4dbc9ea7c97e1405c |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.MagicianModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 25, 10, 7); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 27, 10, 7); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetGodWeaponStageRequireLevel", _m_GetGodWeaponStageRequireLevel); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsGodWeaponMaxLevelByItem", _m_IsGodWeaponMaxLevelByItem); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetAutoHammerCost", _m_TryGetAutoHammerCost); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetExteriorPower", _m_TryGetExteriorPower); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetGodWeaponSkillEffect", _m_TryGetGodWeaponSkillEffect); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "onSelectUpdate", _e_onSelectUpdate); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "godWeaponUpdate", _e_godWeaponUpdate); |
| | |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryGetExteriorPower(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.MagicianModel gen_to_be_invoked = (Snxxz.UI.MagicianModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | int _power; |
| | | |
| | | bool gen_ret = gen_to_be_invoked.TryGetExteriorPower( _type, out _power ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _power); |
| | | |
| | | |
| | | |
| | | |
| | | return 2; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryGetGodWeaponSkillEffect(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.MagicianModel gen_to_be_invoked = (Snxxz.UI.MagicianModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _skillId = LuaAPI.xlua_tointeger(L, 2); |
| | | int _effect; |
| | | |
| | | bool gen_ret = gen_to_be_invoked.TryGetGodWeaponSkillEffect( _skillId, out _effect ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | LuaAPI.xlua_pushinteger(L, _effect); |
| | | |
| | | |
| | | |
| | | |
| | | return 2; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 896fb0af0ecfcaa41b1bd6202498fa0c |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 80b2913261dbda24c8015736780ad730 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: aefcced4a62a09846a816cdd52fd0fd5 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 80a60d8a976330d44ad04987842a7a2f |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e647675c83372d94faa7f1d0c0a71990 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cc16e78485e0cc54a9de310d4f20585d |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 184ea66fdd47f5845bf378baabb48f50 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 48896e8ac4fe3e04cb56190be95ad16e |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6e1a755e1f65708448dceca8b6c2ae6f |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 27d94d735ae38f143890a001d9941b5e |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e68a02949c361904996cbe52470702d2 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0b7360ccc546c954fb5cfb767b8c8ac1 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c50d79c8d8550ea4c903207fdc0619dc |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 288bc8f0f2b492c43b7e1abb0c93b271 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b38f6da1afb9cab4a8ebe956d0ef70dc |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a4b59e2b5f1c51c4bb0dc4cec7d66cae |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a75be801f80356049a2e0800c8514bbb |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c1da5e6ed1826bb45a261d57439c0cf6 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ff2ad26384e9c4c44bb3659fc84fb939 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f97bd5cb158e7c84792b879af71e31d0 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 431f9417cee8a224fa6ffa39a745a8e0 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6f7079cfbbcfd2d4e8a4a4ba755b31d9 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ca5a3371c10a33f499a5765438d0cbee |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 295b6a9e0ff213944b3c9313fd5df193 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5093dd8dccd0ffc4583099d1c2d68b1f |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f9403e4630f3fc5478cd79acce0d4081 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1cc9cc8ffb4b42b4b8588096103346c2 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 87f4f6943faef864aaf2a3a2e4c8c746 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5394c7fbf196b9a4eab534c240b7f963 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e89b5cefbd699924992bd979307ce9be |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b0baab9ef76072b40956c8409e0cb73a |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a0ab36028c9ef7b4a9ee0598af59866d |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6fe686db582793c4fa1f207ba4502658 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 47e4575cd41b3e64b98c6b07f3df3ffa |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0bf5bb7b7d505f945b1444602423817a |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7d9cbfb2f3cb4ef4997476166c75ebd2 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 010c47966f9b9164bbf31f61dae668f5 |
| | | timeCreated: 1542965471 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e07187f9b5216ca4b81abf50cf9332cf |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b6df7d36a433a5247947b283f906c813 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 38c134d9c115dbd4180fa42ccfbe0b6b |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 52832d915ae39d2409d8473f22f49173 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1e19041e473f41b4dade835092a7266b |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5d797b770e8f4164daf5fdce8019e205 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0be4ca78de9687345bb3b4ef18baa86b |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 854a6ebd3b9a10944a697b7d97dcaba9 |
| | | timeCreated: 1542942273 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c292fa3fe328a5b46a715d35cbd2ff15 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 99f62f19aed557649ba25b4b2a06fba6 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6fa1c8ced3fac4345baf9ea51cbd43f8 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 82f6fccc511674f4984f208636a9221b |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4fb4960f223157e47aac6e71fc04ac16 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3c80f1a0181df9a468ea1bfb3a4aec53 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3542b5cce769e26439883aba69430d7c |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c4be420c146b060438d4a6f6336794ef |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c25c51b69d20873418fb05e93549cfdb |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a6bc1aa4349cc83439c92ef4796305e8 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8bd6f495dedd51a46a74a824278cc866 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7b4abc2a3ca957b44a968e8033558a68 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 12598597a652e2b42b113679a5bf4bf4 |
| | | timeCreated: 1542942273 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8b1987db7a470484dae7f3fd1db72def |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 315738d31a74fb64393860f94fd54e3b |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4f195a50e42f8ce4a9c158b851384ba6 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 82ef44cf21a8cfb43a66b0ab06f7634b |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c86d95025e071234f9dd598f6ef86414 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 896b185c10edd6b45808617c8f1d2068 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 179295a50262be046be00a8397aeb9b0 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 40e558ed931d2ae41ab298cf14318768 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 17a9984a5cd08e34ab884caa4d6c71fb |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6d8d613eff156b8468e98bc7f3eeb1bc |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ee2bb110aab91814191301ea984f9857 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 164aa39925cedb2438117a5a6ede7e41 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 57f0dd429fbdbc54cae34b105f0ab6ce |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 40fe2a17a6798cc4a882caf7e71f18f2 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7f1893d796d1fa94fa36426bc2965843 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 822f3e4391117494eaef4ad830ee2751 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 62542cdc4da26af44aaed12f3c11f7c3 |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ebd7ee352d228e94db0f1a0d0b614a17 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6c7952e1f4a41c344b1151aa02cba3ce |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2f268016181278b46a3bdc8850d3205e |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f46cd0fb92220224ca20fbc6af163b43 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3f9d51ae352f8e2458d0804995f9df10 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6514703ebb7916f44874457055b168cc |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 59c130622e06a624c8f7a813ae8980d5 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d5a462752909cae498291208b8a2d835 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7e21841df217253489767d9a17153d9f |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067559 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4737cca69ceb4fd4f94c8382165a314e |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e1c8280687b3f764cac9c64749a3dcff |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c7569a236c9760840bec447ceec817f7 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7115cfc72beb4d447a469885d955ff9d |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0dbe43e2202c42e48a194e017afc35c4 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4e6a4247db787454d877da96a4f9e0cb |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4123dac3cfca9d342bbba92f423e5876 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ffcd04cd2ce98fe4bba52c7c75d3ef39 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067566 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f543b7eb3361d1646aa5cdf856ff9ae6 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fd298b5b25f472d4bbbd3e255238e1a4 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1b9b5724b58215046833ad9a33467304 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1796fef401dca2b49b63e0de291f8dd6 |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2464e0d563e2d4f4e8661631cd3b1853 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 57e1f223b7441c74eaaed112f32f4276 |
| | | timeCreated: 1542965476 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d2334dcae7d69cd409c6efb246c6e6b6 |
| | | timeCreated: 1542965483 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 39c32bef984ef484e99aedd81dc9be1f |
| | | timeCreated: 1542965474 |
| | | timeCreated: 1543067555 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c9c4bc4b62136584a93f4fa13c661d00 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067563 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 88d577acadc3bcc4a9923785675d3d83 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 03b0cc9f5eac0174182e7d00e03d216a |
| | | timeCreated: 1542965471 |
| | | timeCreated: 1543067552 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 636d7b332d92eaf4290bebbef9182f4a |
| | | timeCreated: 1542965477 |
| | | timeCreated: 1543067557 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0fc02a3f4bbd41a4b9af2fecead23f6d |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f7adaf92af6cfde4eae80c32e354bd0b |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f1424a6b868452b4da46e73d11fdc678 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c6e561828e791734c9f1169f0a2b6219 |
| | | timeCreated: 1542965482 |
| | | timeCreated: 1543067562 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 27ea589794e866340b8cfd604b8c3e64 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fe789d4f79521ab4096a8f71b43e46a0 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f892e67e8dd805d499e47a43c058f597 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 732e783f81a83e14e8cdc0baccffeee9 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1ee87da8277f62249b5ad6b9706f2282 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067554 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a07f30e386d2f6540bb9c4708d685418 |
| | | timeCreated: 1542965480 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1c7d1da32a269dc47915473fa1c87df2 |
| | | timeCreated: 1542965473 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: edcfec831a0496b4c9250b4f3b169da5 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067564 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 70d5423a052d756449c0aceac6627a06 |
| | | timeCreated: 1542965478 |
| | | timeCreated: 1543067558 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a8ae24a5d19c30b4fbe3ef211808c940 |
| | | timeCreated: 1542965481 |
| | | timeCreated: 1543067561 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 19d96167c7c8cbc4086963374d7e50eb |
| | | timeCreated: 1542965472 |
| | | timeCreated: 1543067553 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4c7103d4cb4d58b40bd056ba0d72bea4 |
| | | timeCreated: 1542965475 |
| | | timeCreated: 1543067556 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: feaa4dacd000a82468e6ed9dd02dc693 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f145ec802b6c055479f081527d83f647 |
| | | timeCreated: 1542965484 |
| | | timeCreated: 1543067565 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8babb5fb6c492df4199b8f2698b16386 |
| | | timeCreated: 1542965479 |
| | | timeCreated: 1543067560 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9b295ed99fb918f4490d2bbafe31d761 |
| | | timeCreated: 1542965485 |
| | | timeCreated: 1543067566 |
| | | licenseType: Pro |
| | | TextScriptImporter: |
| | | userData: |
| | |
| | |
|
| | | public void UpdateAssistState(int playerId)
|
| | | {
|
| | | helpBtn.RemoveAllListeners();
|
| | | if (playerInfo == null || playerInfo.PlayerID != playerId) return;
|
| | |
|
| | | if(playerInfo.IsAssist)
|
| | | helpBtn.RemoveAllListeners();
|
| | | if (playerInfo.IsAssist)
|
| | | {
|
| | | helpText.text = Language.Get("DungeonAssist122");
|
| | | helpBgImg.material = MaterialUtility.GetDefaultSpriteGrayMaterial();
|
| | |
| | | switch (related)
|
| | | {
|
| | | case DungeonAssistModel.RelatedToPlayer.Ally:
|
| | | rewards = assistModel.GetAssistReward(2);
|
| | | sumCoins = assistModel.GetAssistReward(2);
|
| | | break;
|
| | | case DungeonAssistModel.RelatedToPlayer.Friend:
|
| | | case DungeonAssistModel.RelatedToPlayer.FriendAndAlly:
|
| | | rewards = assistModel.GetAssistReward(1);
|
| | | sumCoins = assistModel.GetAssistReward(1);
|
| | | break;
|
| | | }
|
| | |
|
| | | if (rewards != null && rewards.Count > 0)
|
| | | {
|
| | | sumCoins = rewards[0];
|
| | | }
|
| | |
|
| | | if (sumCoins > 0)
|
| | |
| | |
|
| | | public void OnBeforePlayerDataInitialize()
|
| | | {
|
| | | assistResults.Clear();
|
| | | assistRefreshNum = 0;
|
| | | IsCheckInOk = false;
|
| | | assistPlayerDict.Clear();
|
| | |
| | | /// </summary>
|
| | | /// <param name="type"></param>
|
| | | /// <returns></returns>
|
| | | public List<int> GetAssistReward(int type)
|
| | | public int GetAssistReward(int type,bool isSelf = true)
|
| | | {
|
| | | List<int> rewards = null;
|
| | | assistCoinsDict.TryGetValue(type,out rewards);
|
| | | return rewards;
|
| | | if(rewards != null && rewards.Count > 1)
|
| | | {
|
| | | return isSelf ? rewards[0] : rewards[1];
|
| | | }
|
| | | return 0;
|
| | | }
|
| | |
|
| | | public DungeonHelpBattleConfig GetHelpBattleConfig(int mapId,int lineId)
|
| | |
| | | helpInfolist = helpInfos == null ? null : helpInfos.ToList();
|
| | | }
|
| | |
|
| | | public void SetHelpInfoLocalSave(string info,bool isNew)
|
| | | public void SetHelpInfoLocalSave(string createDate,string info,bool isNew)
|
| | | {
|
| | | helpInfolist = helpInfolist == null ? new List<string>() : helpInfolist;
|
| | | if (helpInfolist.Count >= 20)
|
| | | {
|
| | | helpInfolist.RemoveAt(0);
|
| | | }
|
| | | info = StringUtility.Contact(info, "|", isNew);
|
| | | info = StringUtility.Contact(createDate,"|",info, "|", isNew);
|
| | | helpInfolist.Add(info);
|
| | | LocalSave.SetStringArray(helpInfoLocalSave, helpInfolist.ToArray());
|
| | | if(UpdateResultEvent != null)
|
| | |
| | | }
|
| | | return false;
|
| | | }
|
| | |
|
| | | public void SetHelpInfoRead()
|
| | | {
|
| | | if (helpInfolist == null) return;
|
| | | for(int i = 0; i < helpInfolist.Count; i++)
|
| | | {
|
| | | string[] infos = helpInfolist[i].Split('|');
|
| | | if(infos != null && infos.Length >= 3)
|
| | | {
|
| | | infos[2] = false.ToString();
|
| | | }
|
| | | }
|
| | | LocalSave.DeleteKey(helpInfoLocalSave);
|
| | | LocalSave.SetStringArray(helpInfoLocalSave, helpInfolist.ToArray());
|
| | | }
|
| | | #endregion
|
| | |
|
| | | #region 协议
|
| | | public bool IsCheckInOk { get; private set; }
|
| | | public event Action UpdateCheckInResultEvent;
|
| | | public void UpdateAssistCheckInResult(HB205_tagMCHelpBattleCheckInResult checkInResult)
|
| | | {
|
| | | IsCheckInOk = checkInResult.IsOK == 1;
|
| | | if(UpdateCheckInResultEvent != null)
|
| | | {
|
| | | UpdateCheckInResultEvent();
|
| | | }
|
| | | }
|
| | |
|
| | | #region 助战召唤
|
| | | public event Action UpdataAssistPlayerListEvent;
|
| | | private Dictionary<int, AssistPlayerInfo> assistPlayerDict = new Dictionary<int, AssistPlayerInfo>();
|
| | | public int assistRefreshNum { get; private set;}
|
| | |
| | | return num;
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | public void SendAssistCheckIn()
|
| | | {
|
| | | CB105_tagCMHelpBattleCheckIn checkIn = new CB105_tagCMHelpBattleCheckIn();
|
| | |
| | | CB107_tagCMHelpBattleRefresh battleRefresh = new CB107_tagCMHelpBattleRefresh();
|
| | | GameNetSystem.Instance.SendInfo(battleRefresh);
|
| | | }
|
| | |
|
| | | #region 助战登记
|
| | | public bool IsCheckInOk { get; private set; }
|
| | | public event Action UpdateCheckInResultEvent;
|
| | | public void UpdateAssistCheckInResult(HB205_tagMCHelpBattleCheckInResult checkInResult)
|
| | | {
|
| | | IsCheckInOk = checkInResult.IsOK == 1;
|
| | | if (UpdateCheckInResultEvent != null)
|
| | | {
|
| | | UpdateCheckInResultEvent();
|
| | | }
|
| | | }
|
| | | private List<AssistResult> assistResults = new List<AssistResult>();
|
| | | public void UpdateAssistResultNotify(HB211_tagMCHelpBattleRecordList recordList)
|
| | | {
|
| | | for(int i = 0; i < recordList.RecordCount; i++)
|
| | | {
|
| | | var recordInfo = recordList.RecordList[i];
|
| | | AssistResult assistResult = new AssistResult();
|
| | | assistResult.assistType = 2;
|
| | | assistResult.callPlayerId = (int)recordInfo.CallPlayerID;
|
| | | assistResult.callPlayerName = recordInfo.CallPlayerName;
|
| | | assistResult.mapId = (int)recordInfo.MapID;
|
| | | assistResult.funcLineId = recordInfo.FuncLineID;
|
| | | assistResult.addXianyuanCoins = recordInfo.XianyuanCoinAdd;
|
| | | assistResult.relatedToPlayer = (RelatedToPlayer)recordInfo.Relation;
|
| | | assistResult.vipLv = recordInfo.VIPLV;
|
| | | assistResult.createTime = recordInfo.HelpTime;
|
| | | assistResult.SetNotifyResult();
|
| | | assistResults.Add(assistResult);
|
| | | }
|
| | | }
|
| | |
|
| | | public void UpdateAssistResultNotify(HB208_tagMCAddXianyuanCoinMsg msg)
|
| | | {
|
| | | AssistResult assistResult = new AssistResult();
|
| | | assistResult.assistType = 1;
|
| | | assistResult.callPlayerId = (int)msg.CallPlayerID;
|
| | | assistResult.callPlayerName = msg.CallPlayerName;
|
| | | assistResult.mapId = (int)msg.MapID;
|
| | | assistResult.funcLineId = msg.FuncLineID;
|
| | | assistResult.addXianyuanCoins = msg.XianyuanCoinAdd;
|
| | | assistResult.relatedToPlayer = (RelatedToPlayer)0;
|
| | | assistResult.vipLv = PlayerDatas.Instance.baseData.LV;
|
| | | assistResult.createTime = ToDisplay();
|
| | | assistResults.Add(assistResult);
|
| | | }
|
| | |
|
| | | public string ToDisplay()
|
| | | {
|
| | | var severTime = TimeUtility.ServerNow;
|
| | | return StringUtility.Contact(severTime.Year.ToString("D2"), ":", severTime.Month.ToString("D2"), ":"
|
| | | , severTime.Day.ToString("D2"), severTime.Hour.ToString("D2"), severTime.Minute.ToString("D2")
|
| | | , severTime.Second.ToString("D2"));
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #endregion
|
| | |
|
| | | public class AssistResult
|
| | | {
|
| | | public DateTime createTime;
|
| | | public int assistType; // 1 真实的自己 2 自己的镜像
|
| | | public int callPlayerId;
|
| | | public string callPlayerName;
|
| | | public int mapId;
|
| | | public int funcLineId;
|
| | | public int addXianyuanCoins;// 增加的仙缘币,0代表已达上限
|
| | | public RelatedToPlayer relatedToPlayer;
|
| | | public int vipLv;
|
| | | public string createTime;
|
| | | public ResultType resultType;
|
| | | public string info;
|
| | | private int addRatioVipLv;
|
| | | private string addRatioStr;
|
| | |
|
| | | public bool isNew { get; private set;}
|
| | | public void SetResult()
|
| | | public bool IsAssistOther
|
| | | {
|
| | | createTime = TimeUtility.ServerNow;
|
| | | SetResultIsNew(true);
|
| | | get { return callPlayerId != 0; }
|
| | | }
|
| | | public bool IsGetAssistCoins { get { return addXianyuanCoins > 0; } }
|
| | | public bool IsVipAddRatio { get { return addRatioVipLv > 0; } }
|
| | | |
| | | DungeonAssistModel assistModel { get { return ModelCenter.Instance.GetModel<DungeonAssistModel>(); } }
|
| | | DungeonModel dungeonModel { get { return ModelCenter.Instance.GetModel<DungeonModel>(); } }
|
| | |
|
| | | public void SetNotifyResult()
|
| | | {
|
| | | info = string.Empty;
|
| | | int lineId = mapId == 31110 ? 1 : funcLineId;
|
| | | int dungeonId = dungeonModel.GetDungeonId(mapId,lineId);
|
| | | DungeonConfig dungeonConfig = dungeonConfig = Config.Instance.Get<DungeonConfig>(dungeonId);
|
| | | if (dungeonConfig == null) return;
|
| | |
|
| | | string fbName = string.Empty;
|
| | | if(mapId == 31110)
|
| | | {
|
| | | RealmConfig realmConfig = Config.Instance.Get<RealmConfig>(funcLineId);
|
| | | string realmName = realmConfig != null ? realmConfig.Name : string.Empty;
|
| | | fbName = StringUtility.Contact("【",realmName,"】",dungeonConfig.FBName);
|
| | | }
|
| | | else
|
| | | {
|
| | | fbName = dungeonConfig.FBName;
|
| | | }
|
| | | |
| | | resultType = GetResultType();
|
| | | SetResultIsNew(true);
|
| | | string vipAddStr = string.Empty;
|
| | | string friendAddStr = string.Empty;
|
| | | string unionAddStr = string.Empty;
|
| | | string sumAddStr = string.Empty;
|
| | | if(IsVipAddRatio)
|
| | | {
|
| | | vipAddStr = Language.Get("DungeonAssist110", addRatioVipLv, addRatioStr);
|
| | | }
|
| | | switch (relatedToPlayer)
|
| | | {
|
| | | case RelatedToPlayer.Friend:
|
| | | friendAddStr = Language.Get("DungeonAssist111", assistModel.GetAssistReward(1));
|
| | | if(IsVipAddRatio)
|
| | | {
|
| | | sumAddStr = StringUtility.Contact(vipAddStr, ",", friendAddStr);
|
| | | }
|
| | | else
|
| | | {
|
| | | sumAddStr = friendAddStr;
|
| | | }
|
| | | break;
|
| | | case RelatedToPlayer.Ally:
|
| | | unionAddStr = Language.Get("DungeonAssist112", assistModel.GetAssistReward(2));
|
| | | if (IsVipAddRatio)
|
| | | {
|
| | | sumAddStr = StringUtility.Contact(vipAddStr, ",", unionAddStr);
|
| | | }
|
| | | else
|
| | | {
|
| | | sumAddStr = unionAddStr;
|
| | | }
|
| | | break;
|
| | | default:
|
| | | sumAddStr = vipAddStr;
|
| | | break;
|
| | | }
|
| | |
|
| | | switch (resultType)
|
| | | {
|
| | | case ResultType.SelfGetScore:
|
| | | info = Language.Get("DungeonAssist101");
|
| | | info = Language.Get("DungeonAssist101",fbName,addXianyuanCoins);
|
| | | break;
|
| | | case ResultType.SelfNoGetScore:
|
| | | info = Language.Get("DungeonAssist102");
|
| | | info = Language.Get("DungeonAssist102",fbName);
|
| | | break;
|
| | | case ResultType.SelfGetVipScore:
|
| | | info = Language.Get("DungeonAssist103");
|
| | | break;
|
| | | case ResultType.SelfRealmGetScore:
|
| | | info = Language.Get("DungeonAssist104");
|
| | | break;
|
| | | case ResultType.SelfRealmNoGetScore:
|
| | | info = Language.Get("DungeonAssist105");
|
| | | break;
|
| | | case ResultType.SelfRealmGetVipScore:
|
| | | info = Language.Get("DungeonAssist106");
|
| | | info = Language.Get("DungeonAssist103",fbName,addXianyuanCoins,sumAddStr);
|
| | | break;
|
| | | case ResultType.AssistGetScore:
|
| | | info = Language.Get("DungeonAssist114");
|
| | | break;
|
| | | case ResultType.AssistGetVipScore:
|
| | | info = Language.Get("DungeonAssist116");
|
| | | break;
|
| | | case ResultType.AssistGetFriendScore:
|
| | | info = Language.Get("DungeonAssist117");
|
| | | break;
|
| | | case ResultType.AssistGetUnionScore:
|
| | | info = Language.Get("DungeonAssist118");
|
| | | break;
|
| | | case ResultType.AssistGetFriendAndVipdScore:
|
| | | info = Language.Get("DungeonAssist120");
|
| | | break;
|
| | | case ResultType.AssistGetUnionAndVipdScore:
|
| | | info = Language.Get("DungeonAssist119");
|
| | | info = Language.Get("DungeonAssist104",callPlayerName,fbName,addXianyuanCoins);
|
| | | break;
|
| | | case ResultType.AssistNoGetScore:
|
| | | info = Language.Get("DungeonAssist115");
|
| | | info = Language.Get("DungeonAssist105", callPlayerName, fbName);
|
| | | break;
|
| | | case ResultType.AssistRealmGetScore:
|
| | | info = Language.Get("DungeonAssist107");
|
| | | case ResultType.AssistGetExtraScore:
|
| | | info = Language.Get("DungeonAssist106", callPlayerName,fbName,addXianyuanCoins,sumAddStr);
|
| | | break;
|
| | | case ResultType.AssistRealmGetVipScore:
|
| | | info = Language.Get("DungeonAssist109");
|
| | | case ResultType.TeamAssistGetScore:
|
| | | info = Language.Get("DungeonAssist107",callPlayerName,fbName,addXianyuanCoins);
|
| | | break;
|
| | | case ResultType.AssistRealmGetFriendScore:
|
| | | info = Language.Get("DungeonAssist110");
|
| | | case ResultType.TeamAssistNoGetScore:
|
| | | info = Language.Get("DungeonAssist108", callPlayerName, fbName);
|
| | | break;
|
| | | case ResultType.AssistRealmGetUnionScore:
|
| | | info = Language.Get("DungeonAssist111");
|
| | | break;
|
| | | case ResultType.AssistRealmGetFriendAndVipdScore:
|
| | | info = Language.Get("DungeonAssist113");
|
| | | break;
|
| | | case ResultType.AssistRealmGetUnionAndVipdScore:
|
| | | info = Language.Get("DungeonAssist112");
|
| | | break;
|
| | | case ResultType.AssistRealmNoGetScore:
|
| | | info = Language.Get("DungeonAssist108");
|
| | | case ResultType.TeamAssistGetExtraScore:
|
| | | info = Language.Get("DungeonAssist109", callPlayerName, fbName, addXianyuanCoins,sumAddStr);
|
| | | break;
|
| | | }
|
| | |
|
| | | assistModel.SetHelpInfoLocalSave(createTime,info,isNew);
|
| | | }
|
| | |
|
| | | public void SetResultIsNew(bool _isNew)
|
| | | {
|
| | | this.isNew = _isNew;
|
| | | }
|
| | |
|
| | | public ResultType GetResultType()
|
| | | {
|
| | | if(assistType == 1)
|
| | | {
|
| | | if(IsAssistOther)
|
| | | {
|
| | | if(IsGetAssistCoins)
|
| | | {
|
| | | switch (relatedToPlayer)
|
| | | {
|
| | | case RelatedToPlayer.None:
|
| | | return IsVipAddRatio ? ResultType.TeamAssistGetExtraScore : ResultType.TeamAssistGetScore;
|
| | | case RelatedToPlayer.Friend:
|
| | | case RelatedToPlayer.Ally:
|
| | | return ResultType.TeamAssistGetExtraScore;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | return ResultType.TeamAssistNoGetScore;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | if(IsGetAssistCoins)
|
| | | {
|
| | | switch (relatedToPlayer)
|
| | | {
|
| | | case RelatedToPlayer.None:
|
| | | return IsVipAddRatio ? ResultType.SelfGetVipScore : ResultType.SelfGetScore;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | return ResultType.SelfNoGetScore;
|
| | | }
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | if(IsGetAssistCoins)
|
| | | {
|
| | | switch (relatedToPlayer)
|
| | | {
|
| | | case RelatedToPlayer.None:
|
| | | return IsVipAddRatio ? ResultType.AssistGetExtraScore : ResultType.AssistGetScore;
|
| | | case RelatedToPlayer.Friend:
|
| | | case RelatedToPlayer.Ally:
|
| | | return ResultType.AssistGetExtraScore;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | return ResultType.AssistNoGetScore;
|
| | | }
|
| | | }
|
| | | return ResultType.None;
|
| | | }
|
| | |
|
| | | public void GetCurVipAddRatio()
|
| | | {
|
| | | addRatioVipLv = 0;
|
| | | addRatioStr = string.Empty;
|
| | | var vipDict = VipPrivilegeConfig.GetVipPrivilegeDic(VipPrivilegeType.AssistXianYuanCoinsRatioAdd);
|
| | | if (vipDict == null) return;
|
| | | List<int> vipLvlist = vipDict.Keys.ToList();
|
| | | vipLvlist.Sort();
|
| | | for (int i = vipLvlist.Count - 1; i > -1; i--)
|
| | | {
|
| | | var lv = vipLvlist[i];
|
| | | var addRatio = vipDict[lv];
|
| | | if(vipLv >= lv)
|
| | | {
|
| | | addRatioVipLv = lv;
|
| | | var ratio = (float)addRatio / 100;
|
| | | addRatioStr = StringUtility.Contact(ratio,"%");
|
| | | break;
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | public enum ResultType
|
| | | {
|
| | | None,
|
| | | SelfGetScore,
|
| | | SelfNoGetScore,
|
| | | SelfGetVipScore,
|
| | | SelfRealmGetScore,
|
| | | SelfRealmNoGetScore,
|
| | | SelfRealmGetVipScore,
|
| | | AssistGetScore,
|
| | | AssistGetVipScore,
|
| | | AssistGetFriendScore,
|
| | | AssistGetUnionScore,
|
| | | AssistGetFriendAndVipdScore,
|
| | | AssistGetUnionAndVipdScore,
|
| | | AssistNoGetScore,
|
| | | AssistRealmGetScore,
|
| | | AssistRealmGetVipScore,
|
| | | AssistRealmGetFriendScore,
|
| | | AssistRealmGetUnionScore,
|
| | | AssistRealmGetFriendAndVipdScore,
|
| | | AssistRealmGetUnionAndVipdScore,
|
| | | AssistRealmNoGetScore,
|
| | | AssistGetExtraScore,
|
| | | TeamAssistGetScore,
|
| | | TeamAssistNoGetScore,
|
| | | TeamAssistGetExtraScore,
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | {
|
| | | oneKeyHelpBtn.AddListener(ClickOneKeyAssist);
|
| | | freeRefreshBtn.AddListener(ClickRefresh);
|
| | | goldRefreshBtn.AddListener(ClickRefresh);
|
| | | }
|
| | |
|
| | | protected override void OnPreOpen()
|
| | | {
|
| | | assistModel.UpdataAssistPlayerListEvent += UpdateAssistPlayersList;
|
| | | assistModel.UpdataAssistPlayerEvent += UpdateAssistPlayerState;
|
| | | SetDisplay();
|
| | | }
|
| | |
|
| | |
| | | protected override void OnPreClose()
|
| | | {
|
| | | assistModel.UpdataAssistPlayerListEvent -= UpdateAssistPlayersList;
|
| | | assistModel.UpdataAssistPlayerEvent -= UpdateAssistPlayerState;
|
| | | TimeDownMgr.Instance.Stop(TimeDownMgr.CoolTimeType.DungeonAssistCoolTime);
|
| | | }
|
| | |
|
| | |
| | | UpdateRefreshTimes();
|
| | | }
|
| | |
|
| | | private void UpdateAssistPlayerState(int id)
|
| | | {
|
| | | UpdateOneKeyAssist();
|
| | | }
|
| | |
|
| | | private void UpdateAssistPlayers()
|
| | | {
|
| | | var playerInfos = assistModel.GetAssistPlayerInfos();
|
| | |
| | | {
|
| | | OnClickSendBtn();
|
| | | }
|
| | | if(Input.GetKeyDown(KeyCode.F))
|
| | | {
|
| | | if (!WindowCenter.Instance.IsOpen<DungeonAssistWin>())
|
| | | {
|
| | | WindowCenter.Instance.Open<DungeonAssistWin>();
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | private void CreateCmdCell()
|