宝箱继续
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -59,9 +59,9 @@ export class SingletonModuleComp extends ecs.Comp {
|
|||||||
goods4:[ {uuid:9001,num:100}, {uuid:9002,num:1} ],
|
goods4:[ {uuid:9001,num:100}, {uuid:9002,num:1} ],
|
||||||
};
|
};
|
||||||
items:any={
|
items:any={
|
||||||
1001:{uuid:1001,num:1000,x1:1,x10:0},
|
1001:{uuid:1001,num:10,x1:1,x10:0},
|
||||||
1002:{uuid:1002,num:1000,x1:0,x10:0},
|
1002:{uuid:1002,num:10,x1:0,x10:0},
|
||||||
1003:{uuid:1003,num:1000,x1:0,x10:0},
|
1003:{uuid:1003,num:10,x1:0,x10:0},
|
||||||
1004:{uuid:1004,num:1000,x1:0,x10:0},
|
1004:{uuid:1004,num:1000,x1:0,x10:0},
|
||||||
1005:{uuid:1005,num:1000,x1:0,x10:0},
|
1005:{uuid:1005,num:1000,x1:0,x10:0},
|
||||||
1006:{uuid:1006,num:1000,x1:0,x10:0},
|
1006:{uuid:1006,num:1000,x1:0,x10:0},
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { _decorator, instantiate, Prefab ,Node, Label} from "cc";
|
import { _decorator, instantiate, Prefab ,Node, Label, Sprite} from "cc";
|
||||||
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
|
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
|
||||||
import { CCComp } from "../../../../extensions/oops-plugin-framework/assets/module/common/CCComp";
|
import { CCComp } from "../../../../extensions/oops-plugin-framework/assets/module/common/CCComp";
|
||||||
import { oops } from "../../../../extensions/oops-plugin-framework/assets/core/Oops";
|
import { oops } from "../../../../extensions/oops-plugin-framework/assets/core/Oops";
|
||||||
@@ -16,18 +16,90 @@ export class LuckHomeCompComp extends CCComp {
|
|||||||
mbn: Node | null = null;
|
mbn: Node | null = null;
|
||||||
@property({ type: Node })
|
@property({ type: Node })
|
||||||
lbn: Node | null = null;
|
lbn: Node | null = null;
|
||||||
|
@property({ type: Node })
|
||||||
|
btnno: Node | null = null;
|
||||||
|
selected: string = "";
|
||||||
|
|
||||||
/** 视图层逻辑代码分离演示 */
|
/** 视图层逻辑代码分离演示 */
|
||||||
start() {
|
start() {
|
||||||
// var entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
|
// var entity = this.ent as ecs.Entity; // ecs.Entity 可转为当前模块的具体实体对象
|
||||||
// this.on(ModuleEvent.Cmd, this.onHandler, this);
|
// this.on(ModuleEvent.Cmd, this.onHandler, this);
|
||||||
|
this.frist();
|
||||||
|
}
|
||||||
|
frist(){
|
||||||
|
if(smc.items[1001].num > 0){this.select_box(null,"sb");}
|
||||||
|
else if(smc.items[1002].num > 0){this.select_box(null,"mb");}
|
||||||
|
else if(smc.items[1003].num > 0){this.select_box(null,"lb");}
|
||||||
|
this.check_num();
|
||||||
}
|
}
|
||||||
|
|
||||||
check_num(){
|
check_num(){
|
||||||
this.sbn.getChildByName("num").getComponent(Label).string = smc.items[1001].num.toString();
|
this.sbn.getChildByName("num").getComponent(Label).string = smc.items[1001].num.toString();
|
||||||
this.mbn.getChildByName("num").getComponent(Label).string = smc.items[1002].num.toString();
|
this.mbn.getChildByName("num").getComponent(Label).string = smc.items[1002].num.toString();
|
||||||
this.lbn.getChildByName("num").getComponent(Label).string = smc.items[1003].num.toString();
|
this.lbn.getChildByName("num").getComponent(Label).string = smc.items[1003].num.toString();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
select_box(e:any, val:string){
|
||||||
|
this.sbn.setScale(1,1,1);
|
||||||
|
this.mbn.setScale(1,1,1);
|
||||||
|
this.lbn.setScale(1,1,1);
|
||||||
|
switch(val){
|
||||||
|
case "sb":
|
||||||
|
this.sbn.setScale(1.2,1.2,1);
|
||||||
|
if(smc.items[1001].num > 0){
|
||||||
|
this.btnno.active = false;
|
||||||
|
this.selected="sb"
|
||||||
|
|
||||||
|
}else{
|
||||||
|
this.btnno.active = true
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "mb":
|
||||||
|
this.mbn.setScale(1.2,1.2,1);
|
||||||
|
if(smc.items[1002].num > 0){
|
||||||
|
this.btnno.active = false;
|
||||||
|
this.selected="mb"
|
||||||
|
|
||||||
|
}else{
|
||||||
|
this.btnno.active = true
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "lb":
|
||||||
|
this.lbn.setScale(1.2,1.2,1);
|
||||||
|
if(smc.items[1003].num > 0){
|
||||||
|
this.btnno.active = false;
|
||||||
|
this.selected="lb"
|
||||||
|
}else{
|
||||||
|
this.btnno.active = true
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.selected="";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
open_sb() {
|
||||||
|
console.log("open_sb");
|
||||||
|
|
||||||
|
smc.items[1001].num--;
|
||||||
|
this.show_bbox()
|
||||||
|
this.check_num()
|
||||||
|
}
|
||||||
|
open_mb() {
|
||||||
|
console.log("open_mb");
|
||||||
|
|
||||||
|
smc.items[1002].num--;
|
||||||
|
this.show_bbox()
|
||||||
|
this.check_num()
|
||||||
|
|
||||||
|
}
|
||||||
|
open_lb() {
|
||||||
|
console.log("open_lb");
|
||||||
|
|
||||||
|
smc.items[1003].num--;
|
||||||
|
this.show_bbox()
|
||||||
|
this.check_num()
|
||||||
|
|
||||||
}
|
}
|
||||||
show_bbox() {
|
show_bbox() {
|
||||||
var parent = this.node.getChildByName("bbox")
|
var parent = this.node.getChildByName("bbox")
|
||||||
@@ -43,6 +115,24 @@ export class LuckHomeCompComp extends CCComp {
|
|||||||
box.destroy();
|
box.destroy();
|
||||||
}, 0.7)
|
}, 0.7)
|
||||||
}
|
}
|
||||||
|
to_open(){
|
||||||
|
if(this.selected==""){return;}
|
||||||
|
switch(this.selected){
|
||||||
|
case "sb":
|
||||||
|
if(smc.items[1001].num <=0){oops.gui.toast("宝箱数量不足"); this.btnno.active = true;return;}
|
||||||
|
this.open_sb();
|
||||||
|
break;
|
||||||
|
case "mb":
|
||||||
|
if(smc.items[1002].num <=0){oops.gui.toast("宝箱数量不足");this.btnno.active = true;return;}
|
||||||
|
this.open_mb();
|
||||||
|
break;
|
||||||
|
case "lb":
|
||||||
|
if(smc.items[1003].num <=0){oops.gui.toast("宝箱数量不足");this.btnno.active = true;return;}
|
||||||
|
this.open_lb();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */
|
/** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */
|
||||||
reset() {
|
reset() {
|
||||||
this.node.destroy();
|
this.node.destroy();
|
||||||
|
|||||||
Reference in New Issue
Block a user