/*----------------------------------------------- *本文件由代码生成器自动生成, *千万不要修改本文件的任何代码, *修改的的任何代码都会被覆盖掉! --------------------------------------------------*/ using System.IO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Pomelo.DotNetClient; namespace pomelo.area { public class AbyssDungeonHandler { private PomeloClient _socket; public AbyssDungeonInfoResponse lastAbyssDungeonInfoResponse { get { return _socket.GetLastResponse(); } } public AbyssDungeonDiscardResponse lastAbyssDungeonDiscardResponse { get { return _socket.GetLastResponse(); } } public AbyssDungeonMatchLessStartResponse lastAbyssDungeonMatchLessStartResponse { get { return _socket.GetLastResponse(); } } static AbyssDungeonHandler() { EventTypes.RegistPushType("area.abyssDungeonPush.abyssDungeonBossDeadPush", typeof(AbyssDungeonBossDeadPush)); EventTypes.RegistPushType("area.abyssDungeonPush.abyssDungeonEnterPush", typeof(AbyssDungeonEnterPush)); EventTypes.RegistPushType("area.abyssDungeonPush.abyssDungeonSkillChangePush", typeof(AbyssDungeonSkillChangePush)); EventTypes.RegistPushType("area.abyssDungeonPush.abyssDungeonMatchlessPush", typeof(AbyssDungeonMatchlessPush)); EventTypes.RegistRequestType("area.abyssDungeonHandler.abyssDungeonInfoRequest", typeof(AbyssDungeonInfoRequest), typeof(AbyssDungeonInfoResponse)); EventTypes.RegistRequestType("area.abyssDungeonHandler.abyssDungeonDiscardRequest", typeof(AbyssDungeonDiscardRequest), typeof(AbyssDungeonDiscardResponse)); EventTypes.RegistRequestType("area.abyssDungeonHandler.abyssDungeonMatchLessStartRequest", typeof(AbyssDungeonMatchLessStartRequest), typeof(AbyssDungeonMatchLessStartResponse)); } public AbyssDungeonHandler(PomeloClient socket) { this._socket = socket; } public void abyssDungeonInfoRequest(Action cb,object option = null) { var request = new AbyssDungeonInfoRequest(); _socket.request(request, (object msg, out int s2c_code, out string s2c_msg) => { var rsp = msg as AbyssDungeonInfoResponse; s2c_code = rsp.s2c_code; s2c_msg = rsp.s2c_msg; return s2c_code == 200; }, cb, option); } public void abyssDungeonDiscardRequest(int index,Action cb,object option = null) { var request = new AbyssDungeonDiscardRequest(); request.index= index; _socket.request(request, (object msg, out int s2c_code, out string s2c_msg) => { var rsp = msg as AbyssDungeonDiscardResponse; s2c_code = rsp.s2c_code; s2c_msg = rsp.s2c_msg; return s2c_code == 200; }, cb, option); } public void abyssDungeonMatchLessStartRequest(Action cb,object option = null) { var request = new AbyssDungeonMatchLessStartRequest(); _socket.request(request, (object msg, out int s2c_code, out string s2c_msg) => { var rsp = msg as AbyssDungeonMatchLessStartResponse; s2c_code = rsp.s2c_code; s2c_msg = rsp.s2c_msg; return s2c_code == 200; }, cb, option); } public void onAbyssDungeonBossDeadPush(Action cb) { _socket.listen_once(cb); } public void onAbyssDungeonEnterPush(Action cb) { _socket.listen_once(cb); } public void onAbyssDungeonSkillChangePush(Action cb) { _socket.listen_once(cb); } public void onAbyssDungeonMatchlessPush(Action cb) { _socket.listen_once(cb); } } }