| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799 |
- import Util from "../../before/util/Util";
- import FunBtns from "../game/FunBtns";
- import Game from "../game/Game";
- /**
- * @description 游戏核心玩法数据
- * @author 邹勇
- */
- export class GameData {
- public dataFinish: boolean = false;
- public savePropFinish: boolean = false;
- public savePropsFinish: boolean = false;
- public getPropsFnish: boolean = false;
- public configs: any = {};
- public adShowConfig: ADShowCfg;
- /** 功能开启 */
- public funOpenData: string[] = [];
- public gameData: PlayerProp = null;
- /** 标志位:刷新主界面货币 */
- public init_coin: boolean = false;
- public updatePiggyBankValue: boolean = false;
- /** 标志位:刷新主界面头像 */
- public init_head: boolean = false;
- /** 标志位:刷新主界面红点 */
- public init_red_point: boolean = true;
- /** 属性存储字典 */
- public props: Map<number, any> = new Map<number, any>();
- public pools = [
- { url: "game/prefab/tips", num: 20 },
- { url: "game/prefab/coin", num: 20 }
- ];
- /** 主页样式脚本 */
- public gameStyle: Game = null;
- /** 入口按钮 */
- public funBtns: FunBtns = null;
- /**
- * 初始化游戏数据:网络配置信息,用户信息
- * @returns
- */
- public async init() {
- let data: any = { "versionCode": gData.appData.version };
- let response = await mk.http.sendData('getAllConfigInfo', data);
- if (response.errcode != 0) {
- if (response.errcode == -10003 || response.errcode == -20003) {
- //清除缓存
- gData.loginData.reload();
- }
- return;
- }
- mk.console.logSingle("getAllConfigInfo", response.data);
- this.initConfigs(response.data);
- //初始化topon
- mk.ad.init();
- data = {};
- response = await mk.http.sendData('getInfoCrypt', data);
- if (response.errcode != 0) {
- return;
- }
- mk.console.logSingle("getInfoCrypt", response.data);
- this.initPlayerProp(response.data)
- this.initProps(response.data.gameUserData);
- gData.guideData.init();
- gData.guideWeakData.init();
- gData.moduleData.forEach(element => {
- element.init();
- });
- data = {};
- response = await mk.http.sendData('user/adShowConfig', data);
- if (response.errcode != 0) {
- return;
- }
- this.adShowConfig = response.data;
- mk.console.logSingle("user/adShowConfig", response.data);
- gData.adData.setFullInterShowStr();
- this.dataFinish = true;
- }
- private initConfigs(data) {
- // console.log('config ', data);
- this.configs = data;
- this.funOpenData = this.configs.ServerConfig.Functionswitch.split(",");
- // this.setProductMapFromJson();
- gData.configData.loadConfig();
- }
- /**
- * 初始化玩家数据
- */
- private initPlayerProp(res_data) {
- this.gameData = new PlayerProp();
- this.gameData.cashIndex = res_data.cashIndex;
- this.gameData.gameUserData = res_data.gameUserData;
- this.gameData.isSignInToday = res_data.isSignInToday;
- this.gameData.isWithdrawable = res_data.isWithdrawable;
- this.gameData.lastTime = res_data.lastTime;
- this.gameData.loginDays = res_data.loginDays;
- this.gameData.newPlayer = res_data.newPlayer;
- this.gameData.initPiggyBank(res_data.piggyBank);
- this.gameData.piggyBankCashTimes = res_data.piggyBankCashTimes;
- this.gameData.redMoney = res_data.redMoney == null ? 0 : res_data.redMoney;
- this.gameData.signInDay = res_data.signInDay;
- this.gameData.totalPiggyBankCashTimes = res_data.totalPiggyBankCashTimes;
- this.gameData.turntableTimes = res_data.turntableTimes;
- this.gameData.userTuCaoInfo = res_data.userTuCaoInfo;
- this.gameData.versioncfg = res_data.versioncfg;
- this.gameData.isFirstRedMoney = res_data.isFirstRedMoney;
- gData.adData.watchNumToday = res_data.dayVideoTimesForRedMoney == null ? 0 : res_data.dayVideoTimesForRedMoney;
- this.setFramDataMapByServer();
- }
- /**
- * 保存单个数据
- */
- public async setProp(key: GameProp, value: any) {
- let data = {
- key: key + '',
- value: value
- };
- this.props.set(key, value);
- await mk.http.sendData('savePlayerProp', data);
- this.savePropFinish = true;
- }
- /**
- * 保存多个数据
- */
- public async setProps(arr: { key: GameProp, value: any }[]) {
- let needProp = {};
- for (let i = 0; i < arr.length; i++) {
- needProp[arr[i].key + ''] = arr[i].value;
- }
- let data = {
- needProp: needProp
- };
- for (let i = 0; i < arr.length; i++) {
- this.props.set(arr[i].key, arr[i].value);
- }
- await mk.http.sendData('saveAllPlayerProp', data);
- this.savePropsFinish = true;
- }
- /** 获取属性 */
- public getProp(key: GameProp): number {
- if (this.props == null) {
- return 0;
- }
- let value = this.props.get(key);
- return value;
- }
- /**
- * 向服务器请求所有属性后更新
- */
- public async getAllProps() {
- let response = await mk.http.sendData('getAllPlayerProp', {});
- if (response.errcode != 0) {
- return;
- }
- this.initProps(response.data);
- this.getPropsFnish = true;
- }
- private initProps(data) {
- if (data == null) {
- return;
- }
- for (let key in data) {
- this.props.set(parseInt(key), data[key]);
- }
- }
- /**
- * 第二天需要重置的数据
- */
- public resetProps() {
- let arr = [];
- arr.push({ key: GameProp.sign_can, value: 1 });
- arr.push({ key: GameProp.isAutoOpenPanel, value: 1 });
- arr.push({ key: GameProp.isOpenBankOnCloseCash, value: 0 });
- this.setProps(arr);
- }
- /** 是否是新用户 */
- public isNewPlayer(): boolean {
- let v = this.getProp(GameProp.newPlayer);
- return v == 0;
- }
- //*********** ================= 农场数据 ================== */
- // public needReloadData = false;
- // private _productingListMap: Map<number, Array<{ productID: number, ripeDate: number }>> = new Map();
- // /**建筑生产队列列表 */
- // public getProductingList(id: number): Array<{ productID: number, ripeDate: number }> {
- // if (!this._productingListMap.has(id)) {
- // this._productingListMap.set(id, []);
- // }
- // return this._productingListMap.get(id);
- // }
- // /**已激活的建筑列表 */
- // private buildDataMap: Map<number, number> = new Map();
- // public hasBuildData(id: number): boolean {
- // return this.buildDataMap.has(id);
- // }
- // public getBuildData(id: number): number {
- // return this.buildDataMap.get(id);
- // }
- // public setBuildData(id: number, userBuildID: number): void {
- // this.buildDataMap.set(id, userBuildID);
- // }
- // // /**设置建筑数据(生产队列,流水线数量,激活情况等) */
- // // public async setGameData(data: any) {
- // // this._productingListMap = new Map();
- // // this._unlockMap = new Map();
- // // this.buildDataMap = new Map();
- // // let product = ConfigData.configMap.get("product");
- // // for (let i = 0; i < data.length; i++) {
- // // const build = data[i];
- // // if (!this.buildDataMap.has(build.buildID)) {
- // // this.buildDataMap.set(build.buildID, build.userBuildID);
- // // this.setUnlock(build.buildID, build.addValue + 1);
- // // }
- // // if (build.productID != 0) {
- // // let result = product[build.productID];
- // // this.getProductingList(build.buildID).push({ productID: build.productID, ripeDate: build.plantTime * 1000 + result["time"] * 1000 });
- // // }
- // // }
- // // }
- // /**是否有任务可领取 */
- // public taskReceive = false;
- // /**是否有3日活动任务可领取 */
- // public threeDayTaskReceive = 0;
- // /**3日活动还需要邀请人数 */
- // public needChildCount: number = 0;
- // /**3日活动激活后结束时间 */
- // public threedayTaskTime: number = 0
- // /**种植奖励数据 */
- // public productPrize = null;
- // // /**排行榜数据*/
- // // public rankData: RankData;
- // // /**排行榜积分数据*/
- // // public rankScore: number = 0;
- // // /**是否刷新排行榜活动倒计时*/
- // // public isRefreshRankTime: boolean;
- // // /**是否可以领取排行榜奖励*/
- // // public isCanGetRankReward: boolean;
- /** 农田数据 服务器数据 */
- private _farmData = [];
- /** 农田字典 本地数据,方便操作*/
- private _farmDataMap: Map<number, any> = new Map();
- //刷新农田
- public needFreshArr = [];
- /** 最大可种植植物ID */
- private _maxCanPlantID = 10003;
- /** 设置最大可种植id 用于判断随机种植植物*/
- setMaxPlantID(id) {
- this._maxCanPlantID = id;
- this.setProp(GameProp.maxCanPlantID, this._maxCanPlantID);
- }
- getMaxPlantID() {
- return this._maxCanPlantID;
- }
- getRandomPlantConfig() {
- let id = Util.rnd(10001, this._maxCanPlantID);
- return this.getProductMap(id);
- }
- public setFarmDataMap(id, data, sendToServer = true) {
- this._farmDataMap.set(id, data);
- let len = this._farmData.length;
- for (var i = 0; i < len; i++) {
- if (this._farmData[i].id == id) {
- this._farmData[i].state = data.state;
- this._farmData[i].productID = data.productID;
- this._farmData[i].growSpan = data.growSpan;
- break;
- }
- }
- this.needFreshArr.push(id);
- //更新到服务器
- if (sendToServer) {
- this.setProp(GameProp.farmData, this._farmData);
- }
- }
- public getFarmDataMap(id) {
- return this._farmDataMap.get(id);
- }
- /** 服务器数据设置到本地 */
- public setFramDataMapByServer() {
- let len = this._farmData.length;
- //新玩家初始化农田数据
- if (len <= 18) {
- let id = 31000;
- let data = null;
- for (var i = 0; i < 18; i++) {
- if (i < 3) {
- data = { id: id, state: FarmState.Empty, productID: 0, growSpan: 0 };
- }
- else if (i == 3) {
- data = { id: id, state: FarmState.CanUnlock, productID: 0, growSpan: 0 };
- }
- else {
- data = { id: id, state: FarmState.Lock, productID: 0, growSpan: 0 };
- }
- this._farmData.push(data);
- this._farmDataMap.set(id, data);
- id++;
- }
- //第一次初始数据
- this.setMaxPlantID(this._maxCanPlantID);
- //更新到服务器
- this.setProp(GameProp.farmData, this._farmData);
- }
- else {
- for (var i = 0; i < len; i++) {
- this._farmDataMap.set(this._farmData[i].id, this._farmData[i]);
- }
- }
- }
- /** puduct配置数据 <picture, config> */
- private _productMap: Map<number, any> = new Map();
- /** puduct类型配置数据 <tab, 类型数组> */
- private _productTypeMap: Map<string, any> = new Map();
- /** 设置puduct配置数据 */
- public setProductMapFromJson() {
- // let productJson = this.configs.product;
- //先用本地数据
- let productJson = gData.configData.configMap.get('product');
- let len = productJson.length;
- let product = null;
- for (var i = 0; i < len; i++) {
- product = productJson[i];
- this._productMap.set(product['picture'], product);
- let arr = [];
- if (this.getProductArrByType(product['tab'])) {
- arr = this.getProductArrByType(product['tab']);
- }
- else {
- this._productTypeMap.set(product['tab'], arr);
- }
- arr.push(product);
- }
- }
- /** 根据id获取单个数据 */
- public getProductMap(id) {
- return this._productMap.get(id);
- }
- /** 根据tab获取数组 */
- public getProductArrByType(type: ProductType) {
- return this._productTypeMap.get(type);
- }
- /** 产品生产/种植次数 服务器数据 */
- private _productMakeTimesData = [];
- /** 产品生产/种植次数 */
- private _productMakeTimesMap: Map<number, number> = new Map();
- addProductMakeTimesById(id: number) {
- let times = this._productMakeTimesMap.get(id);
- if (!times) {
- times = 0;
- }
- times++;
- this._productMakeTimesMap.set(id, times);
- //更新到服务器
- let has = false;
- let len = this._productMakeTimesData.length;
- for (var i = 0; i < len; i++) {
- if (this._productMakeTimesData[i].id == id) {
- this._productMakeTimesData[i].times = times;
- has = true;
- break;
- }
- }
- if (!has) {
- let data = { 'id': id, 'times': times };
- this._productMakeTimesData.push(data);
- }
- //设置可种植植物最大id
- let nextID = id + 1;
- let nextConfig = this.getProductMap(nextID);
- if (nextConfig) {
- if (nextConfig.tab == '农作物' && nextID > this.getMaxPlantID()) {
- if (nextConfig.unlock == 1 && nextConfig.value <= times) {
- this.setMaxPlantID(nextID);
- }
- }
- }
- this.setProp(GameProp.productMakeTimes, this._productMakeTimesData);
- }
- getProductMakeTimesById(id: number) {
- let times = this._productMakeTimesMap.get(id);
- if (!times) {
- times = 0
- }
- return times;
- }
- }
- /**
- * 所有模块的非校验数据
- */
- export enum GameProp {
- /** -------------------- 通用玩家数据 ------------------------- */
- /** 是否新手 0新手 1老手 */
- newPlayer = 1,
- /** 当前新手引导步骤 */
- guideID = 2,
- /** 需要自动弹界面 每次登录都弹 除首次 表示今日是否要自动开 1自动开 2不自动开 其他不处理*/
- isAutoOpenPanel = 3,
- /** 关闭常规提现时需要自动开存钱罐 每天一次 表示今日有没有开过 */
- isOpenBankOnCloseCash = 4,
- //看视频次数
- videoTimes = 5,
- //提现次数
- cashTimes = 6,
- /** ------------------ 游戏核心数据 --------------------------- */
- /** 农场等级 */
- levelNum = 10,
- /** 农田数据 */
- farmData = 11,
- /** 产品生产次数 */
- productMakeTimes = 12,
- /** 最大可种植id */
- maxCanPlantID = 13,
- /** ------------------ 转盘数据 ------------------------------ */
- turnable_leftTimes = 20,
- /** ------------------ 存钱罐数据 ----------------------------- */
- /** ------------------ 签到数据 ----------------------------- */
- /** 上次签到进度 */
- sign_last_bar = 120,
- /** 当前能否签到 */
- sign_can = 121,
- /** ------------------ 红包提现 ----------------------------- */
- /** 提现进度 */
- redBag_cash_bar = 220,
- }
- /**
- * 玩家数据
- */
- class PlayerProp {
- /** 自定义不需要校验的数据 */
- gameUserData = 0;
- _isSignInToday = 0;
- /**
- * 今日是否有签到
- * - 0 未签到,表示可以签到
- * - 1 有签到,表示不可签到
- */
- set isSignInToday(value: number) {
- this._isSignInToday = value;
- gData.sign.init_data = true;
- gData.gameData.init_red_point = true;
- }
- get isSignInToday(): number {
- return this._isSignInToday;
- }
- private _piggyBank: number = 0;
- /** 存钱罐存款 */
- set piggyBank(value: number) {
- if (this._piggyBank === value) return;
- if (gData.gameData.gameData.isWithdrawable && value > 0) return;// 存钱罐可提现状态,不能增加存钱罐金额
- this._piggyBank = value;
- gData.gameData.init_coin = true;
- gData.pigbank.init_data = true;
- gData.gameData.init_red_point = true;
- }
- get piggyBank(): number {
- return this._piggyBank;
- }
- /** 初始化 */
- initPiggyBank(v) {
- this._piggyBank = v;
- }
- _isWithdrawable = 0;
- /**
- * 存钱罐能否提现
- * - 0 不能提现
- * - 1 能提现
- */
- set isWithdrawable(value: number) {
- if (this._isWithdrawable != value) {
- this._isWithdrawable = value;
- gData.pigbank.init_data = true;
- gData.gameData.init_red_point = true;
- }
- }
- get isWithdrawable(): number {
- return this._isWithdrawable;
- }
- /** 存钱罐每日提现次数 */
- piggyBankCashTimes = 0;
- /** 累计存钱罐每日提现次数 */
- totalPiggyBankCashTimes = 0;
- /** 提现进度 */
- cashIndex = 0;
- /** 上次登录时间 */
- lastTime = 0;
- /** 登录天数 */
- loginDays = 0;
- newPlayer = 0;
- private _redMoney: number = 0;
- /** 红包币数量 */
- set redMoney(value: number) {
- this._redMoney = value;
- gData.gameData.init_coin = true;
- gData.gameData.init_red_point = true;
- }
- get redMoney(): number {
- return this._redMoney;
- }
- _signInDay = 0;
- /** 累计签到次数 客户端理解 上次签到天数 */
- set signInDay(value: number) {
- if (this._signInDay === value) return;
- this._signInDay = value;
- gData.sign.init_data = true;
- }
- get signInDay(): number {
- return this._signInDay;
- }
- /** 转盘次数 */
- turntableTimes = 0;
- /** 版本号 */
- versioncfg = 0;
- /** 福袋数据 */
- userTuCaoInfo = 0;
- /** 关卡数 */
- levelNum = 0;
- /** 锤子道具数目 */
- hammerPropNum = 0;
- /** 重设道具数目 */
- resetPropNum = 0;
- /** 变色道具数目 */
- changePropNum = 0;
- /** 能免费领红包 1 表示是新人第一次产出红包币,不用看视频*/
- isFirstRedMoney = 0;
- //玩家等级
- gradeLevel = 1;
- }
- /**
- * 奖励状态
- */
- export enum RewardState {
- /** 已领取 */
- none = 1,
- /** 未解锁 */
- lock = 2,
- /** 可领取 */
- unlock = 3
- }
- /**
- * 奖励类型
- */
- export enum RewardType {
- /** 红包币 */
- redBag = 1,
- /** 毛币 */
- rmb = 2,
- /** 金猪币 */
- pigRmb = 3,
- }
- /**
- * 音频路径
- */
- export enum AUDIO_TYPE {
- /**主界面背景音乐*/
- bgm = 'bgm',
- /**打开存钱罐界面播放一次*/
- pigBank = 'pigBank',
- /**关卡玩法背景音乐*/
- missionBg = 'missionBg',
- /**红包币领取界面关闭音效*/
- rewardClose = 'rewardClose',
- /**红包币领取界面开启音效*/
- rewardOpen = 'rewardOpen',
- /**红包界面打开音效*/
- reward = 'reward',
- /**提现到账界面打开播放一次*/
- receiptNotice = 'receiptNotice',
- /**通用按钮点击音效 */
- button = 'button',
- /**转盘转动音效*/
- turnableplay = 'turnableplay',
- /**转盘转动音效*/
- turnplateDrawEnd = 'turnplateDrawEnd',
- /**主页背景音乐 */
- music_startBg = "music_startBg",
- /**游戏背景音乐 */
- music_gameBg = "music_gameBg",
- /**按钮点击 */
- ef_button_click = "ef_button_click",
- /**红包打开 */
- ef_redPacket_open = "ef_redPacket_open",
- /**红包来了音效 */
- ef_redPacket_come = "ef_redPacket_come",
- /**消除4个 */
- ef_bonus4 = "ef_bonus4",
- /**消除5个 */
- ef_bonus5 = "ef_bonus5",
- /**消除6个 */
- ef_bonus6 = "ef_bonus6",
- /**消除7个 */
- ef_bonus7 = "ef_bonus7",
- /**消除8个 */
- ef_bonus8 = "ef_bonus8",
- /**普通消除音效 */
- ef_eliminate = "ef_eliminate",
- /**bouns消除音效 */
- ef_eliminate_bonus = "ef_eliminate_bonus",
- /**胜利音效 */
- ef_win = "ef_win",
- /**锤子 */
- ef_change = "ef_change",
- /**刷新 */
- ef_refresh = "ef_refresh",
- /**飞翔 */
- ef_fly = "ef_fly",
- /**关闭按钮音效*/
- closeButton = "closeButton",
- }
- /** ECPM */
- type ADShowCfg = {
- average_ecpm: number,
- insert_probability: number,
- is_show_banner: number,
- is_show_inter: number,
- }
- type PlayerInfoType = {
- /** 自定义不需要校验的数据 */
- gameUserData: object,
- /** 今日是否有签到 */
- isSignInToday: number,
- /** 存钱罐存款 */
- piggyBank: number,
- /** 存钱罐能否提现 */
- isWithdrawable: boolean,
- /** 存钱罐每日提现次数 */
- piggyBankCashTimes: number,
- /** 累计存钱罐每日提现次数 */
- totalPiggyBankCashTimes: number,
- /** 提现进度 */
- cashIndex: number,
- /** 上次登录时间 */
- lastTime: number,
- /** 登录天数 */
- loginDays: number,
- newPlayer: Boolean,
- /** 红包币数量 */
- redMoney: number,
- /** 累计签到次数 客户端理解 上次签到天数 */
- signInDay: number,
- /** 转盘次数 */
- turntableTimes: number,
- /** 版本号 */
- versioncfg: string,
- /** 福袋数据 */
- userTuCaoInfo: object,
- }
- /**事件类型 */
- export enum EVENT_TYPE {
- BACK_WxAuth = "BACK_WxAuth",
- UPDATE_CashNum = "UPDATE_CashNum",
- }
- /** 数据事件Id */
- export enum DataEventId {
- /** 点击 */
- guide = "guide",
- /** 按钮点击 */
- button_click = "button_click",
- /** 看视频 */
- video_init = "video_init",
- /** 看视频完成 */
- video_end = "video_end",
- /** 福袋功能 */
- fudaiFunction = "fudaiFunction",
- /** 互推功能 */
- hutuiFunction = "hutuiFunction",
- /** 关卡 */
- level = "level",
- /** 常规提现-红包币提现 */
- commonWithDrawal = "commonWithDrawl",
- /** 存钱罐提现 */
- jarWithDrawal = "jarWithDrawal",
- /** 签到提现 */
- signWithDrawal = "signWithDrawal",
- }
- /** 视频广告类型 */
- export enum VideoAdType {
- Null = "",
- /** 关卡积分红包 */
- LevelScoreRedBag = "关卡积分红包",
- /** 主界面气泡红包 */
- StartQiPaoRedBag = "主界面气泡红包",
- /** 关卡气泡红包 */
- LevelQiPaoRedBag = "关卡气泡红包",
- /** 转盘 */
- Turntable = "转盘视频",
- /** 福袋视频" */
- Fudai = "福袋视频",
- /** 签到视频 */
- Sign = "签到视频",
- //钱包提现新手视频
- CashOutNoviceWelfare = "钱包提现新手视频",
- //钱包提现加现金视频
- CashOutAddCash = "钱包提现加现金视频"
- }
- export enum FarmState {
- Lock,
- CanUnlock,
- Empty,
- Growing,
- Ripe
- }
- export enum ProductType {
- nzw = '农作物',
- dw = '动物',
- bmhc = '爆米花厂',
- gdp = '糕点铺',
- ztc = '制糖厂',
- gfmg = '功夫面馆',
- kcd = '快餐店'
- }
|