first commit
This commit is contained in:
345
assets/scripts/union/UnionCommand.ts
Normal file
345
assets/scripts/union/UnionCommand.ts
Normal file
@@ -0,0 +1,345 @@
|
||||
import { _decorator } from 'cc';
|
||||
import { NetManager } from "../network/socket/NetManager";
|
||||
import UnionProxy, { Union } from "./UnionProxy";
|
||||
import { ServerConfig } from "../config/ServerConfig";
|
||||
import { MapCityData } from "../map/MapCityProxy";
|
||||
import MapCommand from "../map/MapCommand";
|
||||
import { EventMgr } from '../utils/EventMgr';
|
||||
|
||||
export default class UnionCommand {
|
||||
//单例
|
||||
protected static _instance: UnionCommand;
|
||||
public static getInstance(): UnionCommand {
|
||||
if (this._instance == null) {
|
||||
this._instance = new UnionCommand();
|
||||
}
|
||||
return this._instance;
|
||||
}
|
||||
|
||||
|
||||
//数据model
|
||||
protected _proxy: UnionProxy = new UnionProxy();
|
||||
|
||||
public static destory(): boolean {
|
||||
if (this._instance) {
|
||||
this._instance.onDestory();
|
||||
this._instance = null;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
//数据model
|
||||
|
||||
constructor() {
|
||||
EventMgr.on(ServerConfig.union_create, this.onUnionCreate, this);
|
||||
EventMgr.on(ServerConfig.union_join, this.onUnionJoin, this);
|
||||
EventMgr.on(ServerConfig.union_list, this.onUnionList, this);
|
||||
EventMgr.on(ServerConfig.union_member, this.onUnionMember, this);
|
||||
EventMgr.on(ServerConfig.union_dismiss, this.onUnionDisMiss, this);
|
||||
EventMgr.on(ServerConfig.union_applyList, this.onUnionApply, this);
|
||||
EventMgr.on(ServerConfig.union_verify, this.onUnionVerify, this);
|
||||
EventMgr.on(ServerConfig.union_exit, this.onUnionDisMiss, this);
|
||||
EventMgr.on(ServerConfig.union_kick, this.onUnionKick, this);
|
||||
EventMgr.on(ServerConfig.union_appoint, this.onUnionAppoint, this);
|
||||
EventMgr.on(ServerConfig.union_abdicate, this.onUnionAbdicate, this);
|
||||
EventMgr.on(ServerConfig.union_modNotice, this.onUnionNotice, this)
|
||||
EventMgr.on(ServerConfig.union_info, this.onUnionInfo, this);
|
||||
EventMgr.on(ServerConfig.union_log, this.onUnionLog, this);
|
||||
EventMgr.on(ServerConfig.union_apply_push, this.onUnionApplyPush, this);
|
||||
}
|
||||
|
||||
public onDestory(): void {
|
||||
EventMgr.targetOff(this);
|
||||
}
|
||||
|
||||
public clearData(): void {
|
||||
this._proxy.clearData();
|
||||
}
|
||||
|
||||
public get proxy(): UnionProxy {
|
||||
return this._proxy;
|
||||
}
|
||||
|
||||
|
||||
protected onUnionCreate(data: any, otherData: any): void {
|
||||
console.log("onUnionCreate", data);
|
||||
if (data.code == 0) {
|
||||
EventMgr.emit("create_union_success");
|
||||
this.unionList();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionJoin(data: any, otherData: any): void {
|
||||
console.log("onUnionJoin", data);
|
||||
if (data.code == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionList(data: any, otherData: any): void {
|
||||
console.log("onUnionList", data);
|
||||
if (data.code == 0) {
|
||||
this._proxy.updateUnionList(data.msg.list);
|
||||
EventMgr.emit("update_union_list",data.msg.list);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
protected onUnionMember(data: any, otherData: any): void {
|
||||
console.log("onUnionMember", data);
|
||||
if (data.code == 0) {
|
||||
this._proxy.updateMemberList(data.msg.id,data.msg.Members);
|
||||
EventMgr.emit("update_union_member",data.msg.Members);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
protected onUnionDisMiss(data: any, otherData: any): void {
|
||||
console.log("onUnionDisMiss", data);
|
||||
if (data.code == 0) {
|
||||
this.unionList();
|
||||
EventMgr.emit("dismiss_union_success");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionApply(data: any, otherData: any): void {
|
||||
console.log("onUnionApply", data);
|
||||
if (data.code == 0) {
|
||||
this._proxy.updateApplyList(data.msg.id, data.msg.applys);
|
||||
EventMgr.emit("update_union_apply", data.msg.applys);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionVerify(data: any, otherData: any): void {
|
||||
console.log("onUnionVerify", data);
|
||||
if (data.code == 0) {
|
||||
EventMgr.emit("kick_union_success");
|
||||
EventMgr.emit("verify_union_success");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionKick(data: any, otherData: any): void {
|
||||
console.log("onUnionKick", data);
|
||||
if (data.code == 0) {
|
||||
EventMgr.emit("kick_union_success");
|
||||
}
|
||||
}
|
||||
|
||||
protected onUnionAppoint(data: any, otherData: any): void {
|
||||
console.log("onUnionAppoint", data);
|
||||
if (data.code == 0) {
|
||||
EventMgr.emit("union_appoint", data.msg);
|
||||
}
|
||||
}
|
||||
|
||||
protected onUnionAbdicate(data: any, otherData: any): void {
|
||||
console.log("onUnionAbdicate", data);
|
||||
if (data.code == 0) {
|
||||
EventMgr.emit("union_abdicate", data.msg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected onUnionNotice(data: any, otherData: any): void {
|
||||
console.log("onUnionNotice", data);
|
||||
if(data.code == 0){
|
||||
this._proxy.updateNotice(data.msg.id, data.msg.text)
|
||||
EventMgr.emit("union_notice", data.msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
protected onUnionInfo(data: any, otherData: any): void {
|
||||
console.log("onUnionInfo", data);
|
||||
if(data.code == 0){
|
||||
let l = []
|
||||
l.push(data.msg.info)
|
||||
this._proxy.updateUnionList(l);
|
||||
|
||||
EventMgr.emit("union_info", data.msg);
|
||||
}
|
||||
}
|
||||
|
||||
protected onUnionLog(data: any, otherData: any): void {
|
||||
console.log("onUnionLog", data);
|
||||
if(data.code == 0){
|
||||
EventMgr.emit("union_log", data.msg.logs);
|
||||
}
|
||||
}
|
||||
|
||||
protected onUnionApplyPush(data: any, otherData: any): void {
|
||||
console.log("onUnionApplyPush", data);
|
||||
let city:MapCityData = MapCommand.getInstance().cityProxy.getMyMainCity();
|
||||
let unionData:Union = UnionCommand.getInstance().proxy.getUnion(city.unionId);
|
||||
if (unionData && unionData.isMajor(city.rid)){
|
||||
this._proxy.updateApply(city.unionId, data.msg);
|
||||
EventMgr.emit("update_union_apply", data.msg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public unionCreate(name:string):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_create,
|
||||
msg: {
|
||||
name: name,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionJoin(id:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_join,
|
||||
msg: {
|
||||
id: id,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionList():void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_list,
|
||||
msg: {
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public unionInfo(id:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_info,
|
||||
msg: {
|
||||
id:id
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionMember(id:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_member,
|
||||
msg: {
|
||||
id: id,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionApplyList(id:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_applyList,
|
||||
msg: {
|
||||
id: id,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public unionDismiss():void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_dismiss,
|
||||
msg: {
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionVerify(id:number = 0,decide:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_verify,
|
||||
msg: {
|
||||
id:id,
|
||||
decide:decide
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionExit():void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_exit,
|
||||
msg: {
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
|
||||
public unionKick(rid:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_kick,
|
||||
msg: {
|
||||
rid:rid,
|
||||
}
|
||||
};
|
||||
console.log("unionKick");
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public unionAppoint(rid:number = 0, title=1):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_appoint,
|
||||
msg: {
|
||||
rid:rid,
|
||||
title:title
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public unionAbdicate(rid:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_abdicate,
|
||||
msg: {
|
||||
rid:rid
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public modNotice(text:string):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_modNotice,
|
||||
msg: {
|
||||
text:text,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public appoint(rid:number = 0):void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_kick,
|
||||
msg: {
|
||||
rid:rid,
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
|
||||
public unionLog():void{
|
||||
let sendData: any = {
|
||||
name: ServerConfig.union_log,
|
||||
msg: {
|
||||
}
|
||||
};
|
||||
NetManager.getInstance().send(sendData);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user