feat(游戏数据): 添加天赋和技能收集记录功能
在SingletonModuleComp中添加collection字段记录天赋和技能获取情况 新增addTalentRecord和addSkillRecord方法用于记录获取次数 修改getGameDate方法返回收集记录数据 在MissionCardComp中调用记录方法 新增MissionGetsComp组件文件
This commit is contained in:
@@ -17,7 +17,11 @@ import { getLevelExp } from "../map/RogueConfig";
|
||||
interface GameDate{
|
||||
gold:number,
|
||||
heros:any,
|
||||
fight_hero:number
|
||||
fight_hero:number,
|
||||
collection?: {
|
||||
talents: Record<number, number>,
|
||||
skills: Record<number, number>
|
||||
}
|
||||
}
|
||||
interface CloudData {
|
||||
openid: string;
|
||||
@@ -122,6 +126,11 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
tal:[],
|
||||
info:'',
|
||||
},
|
||||
// 收集记录
|
||||
collection: {
|
||||
talents: {} as Record<number, number>,
|
||||
skills: {} as Record<number, number>,
|
||||
},
|
||||
gold: 200, // 金币数据(MVVM绑定字段)
|
||||
};
|
||||
|
||||
@@ -158,6 +167,30 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 记录天赋获取
|
||||
* @param id 天赋ID
|
||||
*/
|
||||
addTalentRecord(id: number) {
|
||||
if (!this.vmdata.collection.talents[id]) {
|
||||
this.vmdata.collection.talents[id] = 0;
|
||||
}
|
||||
this.vmdata.collection.talents[id]++;
|
||||
console.log(`[SMC] 记录天赋获取: ID=${id}, 次数=${this.vmdata.collection.talents[id]}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* 记录技能获取
|
||||
* @param id 技能ID
|
||||
*/
|
||||
addSkillRecord(id: number) {
|
||||
if (!this.vmdata.collection.skills[id]) {
|
||||
this.vmdata.collection.skills[id] = 0;
|
||||
}
|
||||
this.vmdata.collection.skills[id]++;
|
||||
console.log(`[SMC] 记录技能获取: ID=${id}, 次数=${this.vmdata.collection.skills[id]}`);
|
||||
}
|
||||
|
||||
vmAdd() {
|
||||
VM.add(this.vmdata, "data");
|
||||
}
|
||||
@@ -226,6 +259,10 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
if(CloudData.data.gold) this.vmdata.gold=CloudData.data.gold
|
||||
if(CloudData.data.heros) this.heros=CloudData.data.heros
|
||||
if(CloudData.data.fight_hero) this.fight_hero=CloudData.data.fight_hero
|
||||
// 恢复收集记录
|
||||
if(CloudData.data.collection) {
|
||||
this.vmdata.collection = CloudData.data.collection;
|
||||
}
|
||||
}
|
||||
|
||||
} catch (error) {
|
||||
@@ -233,7 +270,12 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
}
|
||||
}
|
||||
getGameDate(){
|
||||
return {gold:this.vmdata.gold,heros:this.heros,fight_hero:this.fight_hero}
|
||||
return {
|
||||
gold:this.vmdata.gold,
|
||||
heros:this.heros,
|
||||
fight_hero:this.fight_hero,
|
||||
collection: this.vmdata.collection
|
||||
}
|
||||
}
|
||||
addHero(hero_uuid:number){
|
||||
if(this.heros.indexOf(hero_uuid)==-1){
|
||||
|
||||
Reference in New Issue
Block a user