feat:
1.推送礼包
This commit is contained in:
parent
39362ea6ab
commit
5d9ece056e
@ -9,6 +9,7 @@ import {ReqLottery, ResLottery} from "../../shared/protocols/jiuba/PtlLottery";
|
||||
import {PublicShared} from '../../shared/public/public';
|
||||
import {HongDianChange} from '../hongdian/fun';
|
||||
import {RankKfjs} from "../../public/rank/rank_kfjs";
|
||||
import {PushGiftFun} from "../../public/pushgift";
|
||||
|
||||
export default async function (call: ApiCall<ReqLottery, ResLottery>) {
|
||||
|
||||
@ -142,4 +143,8 @@ export default async function (call: ApiCall<ReqLottery, ResLottery>) {
|
||||
valArr: [await rankKfjs.getRankScore(call.uid) + call.req.type]
|
||||
});
|
||||
|
||||
// 十连抽推送礼包
|
||||
if (call.req.type == 10) {
|
||||
PushGiftFun.chkRecruitGift(call.uid)
|
||||
}
|
||||
}
|
29
src/api_s2c/pushgift/ApiOpen.ts
Normal file
29
src/api_s2c/pushgift/ApiOpen.ts
Normal file
@ -0,0 +1,29 @@
|
||||
import {ApiCall} from "tsrpc";
|
||||
import {ReqOpen, ResOpen} from "../../shared/protocols/pushgift/PltOpen";
|
||||
import {PushGiftFun} from "../../public/pushgift";
|
||||
import {Gift} from "../../module/collection_pushgift";
|
||||
|
||||
export default async function (call: ApiCall<ReqOpen, ResOpen>) {
|
||||
let res: ResOpen = {gifts: []};
|
||||
|
||||
// 过滤过期的礼包 和购买完毕的礼包
|
||||
(await PushGiftFun.getGift(call.uid)).forEach((gift) => {
|
||||
if (gift.passTime > G.time && chkBuyNum(gift.id, gift)) {
|
||||
res.gifts.push(gift)
|
||||
}
|
||||
})
|
||||
|
||||
call.succ(res)
|
||||
}
|
||||
|
||||
function chkBuyNum(gift_id: string, gift_info: Gift) {
|
||||
let conf = G.gc.tuisonglibao[gift_id];
|
||||
for (let i = 0; i < conf.payId.length; i++) {
|
||||
let pay = G.gc.pay[conf.payId[i]];
|
||||
if (pay.buys > 0 && gift_info.buy[i] < pay.buys) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
@ -1773,6 +1773,24 @@ type gc_yuyuemail = {
|
||||
'prize': { "a": string, "t": string, "n": number, [x: string]: any }[]
|
||||
};
|
||||
|
||||
type gc_push_gift = {
|
||||
[k: string]: {
|
||||
/**礼包id*/
|
||||
id: number
|
||||
/**礼包类型*/
|
||||
type: number
|
||||
/**礼包参数*/
|
||||
num: any[]
|
||||
/**购买id*/
|
||||
payId: string[]
|
||||
/**持续时间*/
|
||||
time: number
|
||||
/**冷却时间*/
|
||||
displayCD: number
|
||||
/**显示返利比*/
|
||||
scale: number
|
||||
}
|
||||
}
|
||||
|
||||
type gcType = {
|
||||
[key: string]: any
|
||||
@ -1922,6 +1940,7 @@ type gcType = {
|
||||
kfcb_content: gc_kfcb_content
|
||||
kfcb_prize: gc_kfcb_prize
|
||||
yuyuemail: gc_yuyuemail
|
||||
tuisonglibao: gc_push_gift
|
||||
|
||||
}
|
||||
|
||||
|
13
src/module/collection_pushgift.ts
Normal file
13
src/module/collection_pushgift.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import {ObjectId} from "mongodb";
|
||||
import {ResOpen} from "../shared/protocols/pushgift/PltOpen";
|
||||
|
||||
export type Gift = {
|
||||
id: string
|
||||
uid: string
|
||||
buy: number[]
|
||||
ctime: number
|
||||
passTime: number
|
||||
ext_data: { [key: string]: any }
|
||||
}
|
||||
|
||||
export type CollectionPushGift = Gift & { _id: ObjectId };
|
@ -59,6 +59,7 @@ import {CollectionPlayerBehavior} from "./collection_player_behavior";
|
||||
import {CollectionRmbuse} from "./collection_rmbuse";
|
||||
import {CollectionFightLog} from "./collection_fightLog";
|
||||
import {CollectionShop} from "./collection_shop";
|
||||
import {CollectionPushGift} from "./collection_pushgift";
|
||||
|
||||
export type MongodbCollections = {
|
||||
user: CollectionUser;
|
||||
@ -131,4 +132,5 @@ export type MongodbCollections = {
|
||||
rmbuse: CollectionRmbuse
|
||||
fightLog: CollectionFightLog
|
||||
shop: CollectionShop
|
||||
pushgift:CollectionPushGift
|
||||
};
|
@ -9,6 +9,7 @@ import {HeroFun} from './hero';
|
||||
import {UserFun} from './user';
|
||||
import {re} from "mathjs";
|
||||
import {getGud} from './gud';
|
||||
import {PushGiftFun} from "./pushgift";
|
||||
|
||||
type fightType = 'tanxian' | 'pata' | 'jjc' | 'gbtx' | 'qjzzd' | 'meirishilian' | 'wzrycross';
|
||||
|
||||
@ -59,9 +60,16 @@ export class FightFun {
|
||||
|
||||
/**挑战竞技场 */
|
||||
static async fightJJc(call: ApiCall, rankInfo: rankInfo) {
|
||||
|
||||
if (rankInfo.player.uid.indexOf('npc_') != -1) return await this.fightNpc(call, G.gc.jjc_npc[rankInfo.player.uid].npcId, 'jjc', await this.getPlayerFightData(call.conn.uid));
|
||||
return this.fight([await this.getPlayerFightData(call.conn.uid), await this.getPlayerFightData(rankInfo.player.uid)]);
|
||||
|
||||
let result = this.fight([await this.getPlayerFightData(call.conn.uid), await this.getPlayerFightData(rankInfo.player.uid)]);
|
||||
|
||||
// 竞技场 战败触发推送礼包
|
||||
if (result.winSide != 0) {
|
||||
PushGiftFun.chkLoseGift(call.uid)
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
/**挑战npc */
|
||||
@ -79,7 +87,13 @@ export class FightFun {
|
||||
|
||||
let npc = formatNpcData(npcId);
|
||||
|
||||
return this.fight([my, npc], 30, 'pve');
|
||||
let result = this.fight([my, npc], 30, 'pve');
|
||||
|
||||
// 主线 爬塔 战败触发推送礼包
|
||||
if (result.winSide != 0 && ["tanxian", "pata"].includes(type)) {
|
||||
PushGiftFun.chkLoseGift(data[0].player.uid)
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -14,9 +14,10 @@ import {PublicShared} from '../shared/public/public';
|
||||
import {HeroFun} from './hero';
|
||||
import {ShiwuFun} from './shiwu';
|
||||
import {UserFun} from './user';
|
||||
import { getItemByItemId, getItemNum } from './item';
|
||||
import { getGud, setGud } from './gud';
|
||||
import {getItemByItemId, getItemNum} from './item';
|
||||
import {getGud, setGud} from './gud';
|
||||
import {addGameLog} from "../gameLog";
|
||||
import {PushGiftFun} from "./pushgift";
|
||||
|
||||
|
||||
export type call = {
|
||||
@ -35,7 +36,7 @@ export type call = {
|
||||
};
|
||||
service: { name: string };
|
||||
addEventMsg: ApiCall['addEventMsg'];
|
||||
req: { }
|
||||
req: {}
|
||||
};
|
||||
|
||||
export class PlayerFun {
|
||||
@ -66,6 +67,8 @@ export class PlayerFun {
|
||||
|
||||
if (has < atn.n) {
|
||||
if (err) {
|
||||
// 消耗不足 触发推送礼包
|
||||
PushGiftFun.chkItemGift(call.uid, atn)
|
||||
throw new TsrpcError('', {code: -104, atn: atn});
|
||||
} else {
|
||||
return {isOk: false, atn: atn};
|
||||
@ -143,15 +146,15 @@ export class PlayerFun {
|
||||
shiwu.length > 0 && this.addShiwu(call, shiwu),
|
||||
peijian.length > 0 && this.addPeijian(call, peijian)
|
||||
]);
|
||||
|
||||
|
||||
return prizeList;
|
||||
};
|
||||
|
||||
//attr里的指定字段的值,不能小于0
|
||||
static fixAttrLteZero(t:string, val:number){
|
||||
if(['jinbi','rmbmoney','payExp','nexp'].includes(t) && val < 0){
|
||||
static fixAttrLteZero(t: string, val: number) {
|
||||
if (['jinbi', 'rmbmoney', 'payExp', 'nexp'].includes(t) && val < 0) {
|
||||
return 0
|
||||
}else{
|
||||
} else {
|
||||
return val;
|
||||
}
|
||||
}
|
||||
@ -189,6 +192,16 @@ export class PlayerFun {
|
||||
// 修改属性应在相关奖励领取之前,否则奖励内获取的用户数据是旧数据
|
||||
// await this.changeAttr(call.conn.uid, change);
|
||||
call.addEventMsg('msg_s2c/PlayerChange', change);
|
||||
|
||||
// 等级改变 触发推送礼包
|
||||
if (change["lv"]) {
|
||||
PushGiftFun.chkLvGift(call.uid, change["lv"])
|
||||
}
|
||||
// 关卡改变 触发推送礼包
|
||||
if (change["mapId"]) {
|
||||
PushGiftFun.chkLevelGift(call.uid, change["mapId"])
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static async changeAttrLog(uid: string, change, atn, before) {
|
||||
@ -207,9 +220,9 @@ export class PlayerFun {
|
||||
|
||||
static async changeAttr(uid: string, change: Partial<player>) {
|
||||
//for (let k in change) {
|
||||
//G.redis.set('user', uid, k as any, change[k]);
|
||||
//G.redis.set('user', uid, k as any, change[k]);
|
||||
//}
|
||||
setGud(uid,change);
|
||||
setGud(uid, change);
|
||||
|
||||
G.mongodb.collection('user').updateOne({uid: uid}, {$set: change});
|
||||
|
||||
@ -290,7 +303,11 @@ export class PlayerFun {
|
||||
|
||||
G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options);
|
||||
call.addEventMsg('msg_s2c/ItemChange', atn.t, data);
|
||||
addGameLog(call.uid, "_itemChange", {"additem":1}, {"filter": upObj.filter, "update": upObj.update, "options": upObj.options})
|
||||
addGameLog(call.uid, "_itemChange", {"additem": 1}, {
|
||||
"filter": upObj.filter,
|
||||
"update": upObj.update,
|
||||
"options": upObj.options
|
||||
})
|
||||
} else {
|
||||
if (item.num + atn.n <= 0) {
|
||||
await Promise.all([
|
||||
@ -302,13 +319,13 @@ export class PlayerFun {
|
||||
//await G.redis.del('item', call.uid, atn.t);
|
||||
//await G.mongodb.collection('item').deleteOne({uid: call.uid, itemId: atn.t});
|
||||
call.addEventMsg('msg_s2c/ItemChange', atn.t, {num: 0});
|
||||
addGameLog(call.uid, "_itemChange",{"delitem":1}, {"itemId": atn.t})
|
||||
addGameLog(call.uid, "_itemChange", {"delitem": 1}, {"itemId": atn.t})
|
||||
} else {
|
||||
await Promise.all([
|
||||
////去掉item Redis相关
|
||||
//G.redis.set('item', call.uid, atn.t, 'lastTime', upObj.update.$set.lastTime),
|
||||
//G.redis.numIncrBy('item', call.uid, atn.t, 'num', atn.n),
|
||||
|
||||
|
||||
G.mongodb.collection('item').updateOne(upObj.filter, upObj.update, upObj.options)
|
||||
]);
|
||||
// await G.redis.set('item', call.uid, atn.t, 'lastTime', upObj.update.$set.lastTime);
|
||||
@ -318,7 +335,12 @@ export class PlayerFun {
|
||||
num: item.num + atn.n,
|
||||
lastTime: upObj.update.$set.lastTime
|
||||
});
|
||||
addGameLog(call.uid, "_itemChange",{"attritem":1}, {"filter": upObj.filter, "update": upObj.update, "options": upObj.options,newNum:item.num + atn.n})
|
||||
addGameLog(call.uid, "_itemChange", {"attritem": 1}, {
|
||||
"filter": upObj.filter,
|
||||
"update": upObj.update,
|
||||
"options": upObj.options,
|
||||
newNum: item.num + atn.n
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -344,7 +366,7 @@ export class PlayerFun {
|
||||
}).reduce((a, b) => a.concat(b));
|
||||
|
||||
let result = await G.mongodb.collection('equip').insertMany(insertData);
|
||||
addGameLog(call.uid, "_addEquip",{}, insertData)
|
||||
addGameLog(call.uid, "_addEquip", {}, insertData)
|
||||
|
||||
insertData.forEach((v, key) => {
|
||||
let id = result.insertedIds[key].toHexString();
|
||||
@ -391,7 +413,7 @@ export class PlayerFun {
|
||||
G.mongodb.collection('equip').deleteOne({uid: call.uid, _id: new ObjectId(_id)});
|
||||
call.addEventMsg('msg_s2c/EquipChange', _id, {num: 0});
|
||||
|
||||
addGameLog(call.uid, "_cutEquip",{}, {_id:_id})
|
||||
addGameLog(call.uid, "_cutEquip", {}, {_id: _id})
|
||||
}
|
||||
}
|
||||
|
||||
@ -419,7 +441,7 @@ export class PlayerFun {
|
||||
});
|
||||
|
||||
let result = await G.mongodb.collection('hero').insertMany(insertData);
|
||||
addGameLog(call.uid, "_addHero",{}, insertData)
|
||||
addGameLog(call.uid, "_addHero", {}, insertData)
|
||||
|
||||
for (let key = 0; key < insertData.length; key++) {
|
||||
let v = insertData[key]
|
||||
@ -474,7 +496,7 @@ export class PlayerFun {
|
||||
G.redis.del('hero', call.uid, _id);
|
||||
G.mongodb.collection('hero').deleteOne({uid: call.uid, _id: new ObjectId(_id)});
|
||||
call.addEventMsg('msg_s2c/HeroChange', _id, {num: 0});
|
||||
addGameLog(call.uid, "_cutHero",{}, {_id:_id})
|
||||
addGameLog(call.uid, "_cutHero", {}, {_id: _id})
|
||||
}
|
||||
}
|
||||
|
||||
@ -505,7 +527,7 @@ export class PlayerFun {
|
||||
}).reduce((a, b) => a.concat(b));
|
||||
|
||||
let result = await G.mongodb.collection('shiwu').insertMany(insertData);
|
||||
addGameLog(call.uid, "_addShiWu",{}, insertData)
|
||||
addGameLog(call.uid, "_addShiWu", {}, insertData)
|
||||
|
||||
insertData.forEach((v, key) => {
|
||||
let id = result.insertedIds[key].toHexString();
|
||||
@ -537,7 +559,7 @@ export class PlayerFun {
|
||||
// G.redis.del('shiwu', call.uid, _id);
|
||||
G.mongodb.collection('shiwu').deleteOne({uid: call.uid, _id: new ObjectId(_id)});
|
||||
call.addEventMsg('msg_s2c/ShiwuChange', _id, {num: 0});
|
||||
addGameLog(call.uid, "_cutShiwu",{}, {_id:_id})
|
||||
addGameLog(call.uid, "_cutShiwu", {}, {_id: _id})
|
||||
}
|
||||
}
|
||||
|
||||
@ -559,7 +581,7 @@ export class PlayerFun {
|
||||
}).reduce((a, b) => a.concat(b));
|
||||
|
||||
let result = await G.mongodb.collection('peijian').insertMany(insertData);
|
||||
addGameLog(call.uid, "_addPeiJian",{}, insertData)
|
||||
addGameLog(call.uid, "_addPeiJian", {}, insertData)
|
||||
|
||||
insertData.forEach((v, key) => {
|
||||
let {_id, uid, ...ops} = v;
|
||||
@ -600,7 +622,7 @@ export class PlayerFun {
|
||||
G.redis.del('peijian', call.uid, _id);
|
||||
G.mongodb.collection('peijian').deleteOne({uid: call.uid, _id: new ObjectId(_id)});
|
||||
call.addEventMsg('msg_s2c/PeijianChange', _id, {num: 0});
|
||||
addGameLog(call.uid, "_cutPeijian",{}, {_id:_id})
|
||||
addGameLog(call.uid, "_cutPeijian", {}, {_id: _id})
|
||||
}
|
||||
}
|
||||
|
||||
|
155
src/public/pushgift.ts
Normal file
155
src/public/pushgift.ts
Normal file
@ -0,0 +1,155 @@
|
||||
import {PayFun} from "./pay";
|
||||
|
||||
const PushGiftType = {
|
||||
LevelGift: 1, // 关卡推送
|
||||
ItemGift: 2, // 道具推送
|
||||
LoseGift: 3, // 战败推送
|
||||
RecruitGift: 4, // 十连推送
|
||||
LvGift: 5, // 等级推送
|
||||
}
|
||||
|
||||
export class PushGiftFun {
|
||||
|
||||
static async getGift(uid: string) {
|
||||
// 查询所有礼包
|
||||
return (await G.mongodb.collection("pushgift").find({
|
||||
uid: uid
|
||||
}).toArray()).map((i) => {
|
||||
let {_id, ...gift} = i;
|
||||
return gift
|
||||
})
|
||||
}
|
||||
|
||||
static async chkItemGift(uid: string, atn: atn) {
|
||||
let gift_ids = [];
|
||||
for (let id in G.gc.tuisonglibao) {
|
||||
let conf = G.gc.tuisonglibao[id];
|
||||
if (conf.type == PushGiftType.ItemGift && conf.num[0].a == atn.a && conf.num[0].t == atn.t) {
|
||||
gift_ids.push(id);
|
||||
}
|
||||
}
|
||||
if (gift_ids.length <= 0) {
|
||||
return
|
||||
} else {
|
||||
this.pushGift(uid, gift_ids)
|
||||
}
|
||||
}
|
||||
|
||||
static async chkLevelGift(uid: string, level: number) {
|
||||
let gift_ids = [];
|
||||
for (let id in G.gc.tuisonglibao) {
|
||||
let conf = G.gc.tuisonglibao[id];
|
||||
if (conf.type == PushGiftType.LevelGift && conf.num[0] == level) {
|
||||
gift_ids.push(id);
|
||||
}
|
||||
}
|
||||
if (gift_ids.length <= 0) {
|
||||
return
|
||||
} else {
|
||||
this.pushGift(uid, gift_ids)
|
||||
}
|
||||
}
|
||||
|
||||
static async chkLvGift(uid: string, lv: number) {
|
||||
let gift_ids = [];
|
||||
for (let id in G.gc.tuisonglibao) {
|
||||
let conf = G.gc.tuisonglibao[id];
|
||||
if (conf.type == PushGiftType.LevelGift && conf.num[0] == lv) {
|
||||
gift_ids.push(id);
|
||||
}
|
||||
}
|
||||
if (gift_ids.length <= 0) {
|
||||
return
|
||||
} else {
|
||||
this.pushGift(uid, gift_ids)
|
||||
}
|
||||
}
|
||||
|
||||
static async chkLoseGift(uid: string) {
|
||||
let gift_ids = [];
|
||||
for (let id in G.gc.tuisonglibao) {
|
||||
let conf = G.gc.tuisonglibao[id];
|
||||
if (conf.type == PushGiftType.LoseGift) {
|
||||
gift_ids.push(id);
|
||||
}
|
||||
}
|
||||
if (gift_ids.length <= 0) {
|
||||
return
|
||||
} else {
|
||||
this.pushGift(uid, gift_ids)
|
||||
}
|
||||
}
|
||||
|
||||
static async chkRecruitGift(uid: string) {
|
||||
let gift_ids = [];
|
||||
for (let id in G.gc.tuisonglibao) {
|
||||
let conf = G.gc.tuisonglibao[id];
|
||||
if (conf.type == PushGiftType.RecruitGift) {
|
||||
gift_ids.push(id);
|
||||
}
|
||||
}
|
||||
if (gift_ids.length <= 0) {
|
||||
return
|
||||
} else {
|
||||
this.pushGift(uid, gift_ids)
|
||||
}
|
||||
}
|
||||
|
||||
static async pushGift(uid: string, gift_ids: string[]) {
|
||||
let gifts = {};
|
||||
(await this.getGift(uid)).forEach(i => gifts[i.id] = i)
|
||||
for (let gift_id of gift_ids) {
|
||||
let conf = G.gc.tuisonglibao[gift_id];
|
||||
if (gifts[gift_id] && conf.displayCD > 0 && gifts[gift_id].ctime + conf.displayCD > G.time) {
|
||||
continue
|
||||
}
|
||||
if (conf.type == PushGiftType.RecruitGift) {
|
||||
if (gifts[gift_id]) {
|
||||
if (gift_ids[gift_id].ext_data.num + 1 >= conf.num[0]) {
|
||||
this.addGift(uid, gift_id, {num: 0})
|
||||
} else {
|
||||
G.mongodb.collection("pushgift").updateOne({
|
||||
uid: uid, id: gift_id
|
||||
}, {"$inc": {"ext_data.num": 1}})
|
||||
}
|
||||
} else {
|
||||
// 招募礼包不存在 初始化数据 记录招募次数
|
||||
G.mongodb.collection("pushgift").updateOne({
|
||||
uid: uid, id: gift_id
|
||||
}, {
|
||||
$set: {
|
||||
ctime: 0,
|
||||
passTime: 0,
|
||||
ext_data: {num: 1},
|
||||
buy: conf.payId.map(() => 0),
|
||||
}
|
||||
}, {upsert: true})
|
||||
}
|
||||
} else {
|
||||
this.addGift(uid, gift_id, {})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static async addGift(uid: string, giftid: string, ext_data: { [key: string]: any }) {
|
||||
let conf = G.gc.tuisonglibao[giftid];
|
||||
// 更新礼包
|
||||
G.mongodb.collection("pushgift").updateOne({
|
||||
uid: uid, id: giftid
|
||||
}, {
|
||||
$set: {
|
||||
ctime: G.time,
|
||||
ext_data: ext_data,
|
||||
passTime: G.time + conf.time,
|
||||
buy: conf.payId.map(() => 0),
|
||||
}
|
||||
}, {upsert: true})
|
||||
|
||||
// 删除购买记录
|
||||
PayFun.delPayLog(uid, ...conf.payId.map(i => {
|
||||
return {payId: i, val: []}
|
||||
}))
|
||||
// 推送客户端消息
|
||||
G.server.sendMsgByUid(uid, "msg_s2c/PushGiftChange", 1);
|
||||
}
|
||||
}
|
1
src/shared/protocols/msg_s2c/MsgPushGiftChange.ts
Normal file
1
src/shared/protocols/msg_s2c/MsgPushGiftChange.ts
Normal file
@ -0,0 +1 @@
|
||||
export type MsgPushGiftChange = 1;
|
5
src/shared/protocols/pushgift/PltOpen.ts
Normal file
5
src/shared/protocols/pushgift/PltOpen.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import {Gift} from "../../../module/collection_pushgift";
|
||||
|
||||
export type ReqOpen = {}
|
||||
|
||||
export type ResOpen = { gifts: Gift[] }
|
@ -237,6 +237,7 @@ import { MsgPayResult } from './msg_s2c/MsgPayResult';
|
||||
import { MsgPeijianChange } from './msg_s2c/MsgPeijianChange';
|
||||
import { MsgPlayerChange } from './msg_s2c/MsgPlayerChange';
|
||||
import { MsgPrivate } from './msg_s2c/MsgPrivate';
|
||||
import { MsgPushGiftChange } from './msg_s2c/MsgPushGiftChange';
|
||||
import { MsgSendGift } from './msg_s2c/MsgSendGift';
|
||||
import { MsgShiwuChange } from './msg_s2c/MsgShiwuChange';
|
||||
import { MsgTaskChange } from './msg_s2c/MsgTaskChange';
|
||||
@ -1631,6 +1632,7 @@ export interface ServiceType {
|
||||
"msg_s2c/PeijianChange": MsgPeijianChange,
|
||||
"msg_s2c/PlayerChange": MsgPlayerChange,
|
||||
"msg_s2c/Private": MsgPrivate,
|
||||
"msg_s2c/PushGiftChange": MsgPushGiftChange,
|
||||
"msg_s2c/SendGift": MsgSendGift,
|
||||
"msg_s2c/ShiwuChange": MsgShiwuChange,
|
||||
"msg_s2c/TaskChange": MsgTaskChange,
|
||||
@ -2932,91 +2934,96 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
},
|
||||
{
|
||||
"id": 238,
|
||||
"name": "msg_s2c/SendGift",
|
||||
"name": "msg_s2c/PushGiftChange",
|
||||
"type": "msg"
|
||||
},
|
||||
{
|
||||
"id": 239,
|
||||
"name": "msg_s2c/ShiwuChange",
|
||||
"name": "msg_s2c/SendGift",
|
||||
"type": "msg"
|
||||
},
|
||||
{
|
||||
"id": 240,
|
||||
"name": "msg_s2c/TaskChange",
|
||||
"name": "msg_s2c/ShiwuChange",
|
||||
"type": "msg"
|
||||
},
|
||||
{
|
||||
"id": 241,
|
||||
"name": "msg_s2c/Xianshilibao",
|
||||
"name": "msg_s2c/TaskChange",
|
||||
"type": "msg"
|
||||
},
|
||||
{
|
||||
"id": 242,
|
||||
"name": "msg_s2c/Xianshilibao",
|
||||
"type": "msg"
|
||||
},
|
||||
{
|
||||
"id": 243,
|
||||
"name": "pata/Fight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 243,
|
||||
"id": 244,
|
||||
"name": "pata/GetPrize",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 244,
|
||||
"id": 245,
|
||||
"name": "pata/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 245,
|
||||
"id": 246,
|
||||
"name": "pata/SaoDang",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 246,
|
||||
"id": 247,
|
||||
"name": "pay/GetList",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 247,
|
||||
"id": 248,
|
||||
"name": "peijian/GetList",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 248,
|
||||
"id": 249,
|
||||
"name": "peijian/JingLian",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 249,
|
||||
"id": 250,
|
||||
"name": "peijian/JinJie",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 250,
|
||||
"id": 251,
|
||||
"name": "peijian/LvUp",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 251,
|
||||
"id": 252,
|
||||
"name": "peijian/OneKeyLvUp",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 252,
|
||||
"id": 253,
|
||||
"name": "peijian/OneKeyWear",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 253,
|
||||
"id": 254,
|
||||
"name": "peijian/Reset",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 254,
|
||||
"id": 255,
|
||||
"name": "peijian/Rm",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 255,
|
||||
"id": 256,
|
||||
"name": "peijian/TakeOff",
|
||||
"type": "api",
|
||||
"conf": {
|
||||
@ -3024,32 +3031,32 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 256,
|
||||
"id": 257,
|
||||
"name": "peijian/UnLock",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 257,
|
||||
"id": 258,
|
||||
"name": "peijian/Wear",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 258,
|
||||
"id": 259,
|
||||
"name": "peijiancangku/Deal",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 259,
|
||||
"id": 260,
|
||||
"name": "peijiancangku/Jump",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 260,
|
||||
"id": 261,
|
||||
"name": "peijiancangku/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 261,
|
||||
"id": 262,
|
||||
"name": "Bingo",
|
||||
"type": "api",
|
||||
"conf": {
|
||||
@ -3057,137 +3064,137 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 262,
|
||||
"id": 263,
|
||||
"name": "FightTest",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 263,
|
||||
"id": 264,
|
||||
"name": "SyncBtn",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 264,
|
||||
"id": 265,
|
||||
"name": "Test",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 265,
|
||||
"id": 266,
|
||||
"name": "qjzzd/Fight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 266,
|
||||
"id": 267,
|
||||
"name": "qjzzd/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 267,
|
||||
"id": 268,
|
||||
"name": "rank/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 268,
|
||||
"id": 269,
|
||||
"name": "shiwu/Concise",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 269,
|
||||
"id": 270,
|
||||
"name": "shiwu/Extract",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 270,
|
||||
"id": 271,
|
||||
"name": "shiwu/GetList",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 271,
|
||||
"id": 272,
|
||||
"name": "shiwu/LvUp",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 272,
|
||||
"id": 273,
|
||||
"name": "shiwu/Recast",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 273,
|
||||
"id": 274,
|
||||
"name": "shiwu/TakeOff",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 274,
|
||||
"id": 275,
|
||||
"name": "shiwu/Wear",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 275,
|
||||
"id": 276,
|
||||
"name": "shootGame/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 276,
|
||||
"id": 277,
|
||||
"name": "shootGame/Rec",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 277,
|
||||
"id": 278,
|
||||
"name": "shop/Buy",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 278,
|
||||
"id": 279,
|
||||
"name": "shop/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 279,
|
||||
"id": 280,
|
||||
"name": "shop/Refresh",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 280,
|
||||
"id": 281,
|
||||
"name": "sign/GetBoxPrize",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 281,
|
||||
"id": 282,
|
||||
"name": "sign/GetPrize",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 282,
|
||||
"id": 283,
|
||||
"name": "sign/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 283,
|
||||
"id": 284,
|
||||
"name": "slzd/Aim",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 284,
|
||||
"id": 285,
|
||||
"name": "slzd/BuyNum",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 285,
|
||||
"id": 286,
|
||||
"name": "slzd/Fight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 286,
|
||||
"id": 287,
|
||||
"name": "slzd/FightLog",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 287,
|
||||
"id": 288,
|
||||
"name": "slzd/MyRank",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 288,
|
||||
"id": 289,
|
||||
"name": "slzd/Open",
|
||||
"type": "api",
|
||||
"conf": {
|
||||
@ -3197,77 +3204,77 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 289,
|
||||
"id": 290,
|
||||
"name": "slzd/OpenFort",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 290,
|
||||
"id": 291,
|
||||
"name": "slzd/Rec",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 291,
|
||||
"id": 292,
|
||||
"name": "slzd/Refresh",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 292,
|
||||
"id": 293,
|
||||
"name": "slzd/Slot",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 293,
|
||||
"id": 294,
|
||||
"name": "tanxian/Event",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 294,
|
||||
"id": 295,
|
||||
"name": "tanxian/FastGuaJi",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 295,
|
||||
"id": 296,
|
||||
"name": "tanxian/Fight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 296,
|
||||
"id": 297,
|
||||
"name": "tanxian/GuaJi",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 297,
|
||||
"id": 298,
|
||||
"name": "tanxian/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 298,
|
||||
"id": 299,
|
||||
"name": "tanxian/Receive",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 299,
|
||||
"id": 300,
|
||||
"name": "task/AllFinsh",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 300,
|
||||
"id": 301,
|
||||
"name": "task/Finsh",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 301,
|
||||
"id": 302,
|
||||
"name": "task/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 302,
|
||||
"id": 303,
|
||||
"name": "user/CDKEY",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 303,
|
||||
"id": 304,
|
||||
"name": "user/ChangeInfo",
|
||||
"type": "api",
|
||||
"conf": {
|
||||
@ -3275,197 +3282,197 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 304,
|
||||
"id": 305,
|
||||
"name": "user/ChangeName",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 305,
|
||||
"id": 306,
|
||||
"name": "user/Fight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 306,
|
||||
"id": 307,
|
||||
"name": "user/GetInfo",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 307,
|
||||
"id": 308,
|
||||
"name": "user/InfoOpen",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 308,
|
||||
"id": 309,
|
||||
"name": "user/Login",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 309,
|
||||
"id": 310,
|
||||
"name": "user/Ping",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 310,
|
||||
"id": 311,
|
||||
"name": "user/Renown",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 311,
|
||||
"id": 312,
|
||||
"name": "user/RenownBuy",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 312,
|
||||
"id": 313,
|
||||
"name": "user/RenownGetPrize",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 313,
|
||||
"id": 314,
|
||||
"name": "user/RenownOpen",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 314,
|
||||
"id": 315,
|
||||
"name": "user/Tujian",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 315,
|
||||
"id": 316,
|
||||
"name": "weixiuchang/Decompose",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 316,
|
||||
"id": 317,
|
||||
"name": "weixiuchang/Exchange",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 317,
|
||||
"id": 318,
|
||||
"name": "weixiuchang/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 318,
|
||||
"id": 319,
|
||||
"name": "weixiuchang/UpLv",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 319,
|
||||
"id": 320,
|
||||
"name": "weixiuchang/UpStar",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 320,
|
||||
"id": 321,
|
||||
"name": "wzry/AutoBaoMing",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 321,
|
||||
"id": 322,
|
||||
"name": "wzry/BaoMing",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 322,
|
||||
"id": 323,
|
||||
"name": "wzry/catFightLog",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 323,
|
||||
"id": 324,
|
||||
"name": "wzry/CatGroup",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 324,
|
||||
"id": 325,
|
||||
"name": "wzry/DldFight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 325,
|
||||
"id": 326,
|
||||
"name": "wzry/DldRefre",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 326,
|
||||
"id": 327,
|
||||
"name": "wzry/JingCai",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 327,
|
||||
"id": 328,
|
||||
"name": "wzry/JingCaiOpen",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 328,
|
||||
"id": 329,
|
||||
"name": "wzry/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 329,
|
||||
"id": 330,
|
||||
"name": "wzry/UpdateFight",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 330,
|
||||
"id": 331,
|
||||
"name": "wzry/Wzzd",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 331,
|
||||
"id": 332,
|
||||
"name": "wzry/ZuanShiOpen",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 332,
|
||||
"id": 333,
|
||||
"name": "xstask/AllGet",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 333,
|
||||
"id": 334,
|
||||
"name": "xstask/Get",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 334,
|
||||
"id": 335,
|
||||
"name": "xstask/LvUp",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 335,
|
||||
"id": 336,
|
||||
"name": "xstask/OnekeyReceive",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 336,
|
||||
"id": 337,
|
||||
"name": "xstask/Open",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 337,
|
||||
"id": 338,
|
||||
"name": "xstask/Receive",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 338,
|
||||
"id": 339,
|
||||
"name": "xstask/Refresh",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 339,
|
||||
"id": 340,
|
||||
"name": "yongbingzhuzhan/Handle",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 340,
|
||||
"id": 341,
|
||||
"name": "zhanqianbushu/ChangePos",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 341,
|
||||
"id": 342,
|
||||
"name": "zhanqianbushu/Select",
|
||||
"type": "api"
|
||||
},
|
||||
{
|
||||
"id": 342,
|
||||
"id": 343,
|
||||
"name": "zhanqianbushu/Up",
|
||||
"type": "api"
|
||||
}
|
||||
@ -17920,6 +17927,10 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
||||
}
|
||||
}
|
||||
},
|
||||
"msg_s2c/MsgPushGiftChange/MsgPushGiftChange": {
|
||||
"type": "Literal",
|
||||
"literal": 1
|
||||
},
|
||||
"msg_s2c/MsgSendGift/MsgSendGift": {
|
||||
"type": "Interface",
|
||||
"indexSignature": {
|
||||
|
Loading…
Reference in New Issue
Block a user