squidGame/tgx-games-client/assets/module_arean/scripts/UserHead.ts

72 lines
2.3 KiB
TypeScript
Raw Permalink Normal View History

2025-02-07 10:49:34 +08:00
import { _decorator, Component, Label, Node, Sprite, SpriteFrame, director } from 'cc';
import {RoomEvent} from "db://assets/module_basic/scripts/GameMgr";
import {UserMgr} from "db://assets/module_basic/scripts/UserMgr";
import {ModuleDef} from "db://assets/scripts/ModuleDef";
import {UIChooseHeadLayer} from "db://assets/module_arean/ui_player_info/UIChooseHeadLayer";
import {tgxUIMgr} from "db://assets/core_tgx/tgx";
const { ccclass, property } = _decorator;
@ccclass('UserHead')
export class UserHead extends Component {
@property(Label)
lblUserName: Label;
@property(Label)
lblUserId: Label;
@property(Sprite)
headImg: Sprite;
@property(Sprite)
headFrame: Sprite;
@property(Label)
lblCoin: Label;
@property(Sprite)
danImg: Sprite;
@property(Label)
danName: Label;
start() {
director.on(RoomEvent.DanUpdate, this.updateDanImg.bind(this), this);
director.on("AreanEvent.UpdateHeadOrFrame", this.updateHeadOrFrame.bind(this), this);
UserMgr.inst.setUserIconAndName1(UserMgr.inst.userId, this.headImg,this.headFrame,this.lblUserName, ModuleDef.BASIC);
this.lblUserId.string = 'ID:' + UserMgr.inst.userId;
this.lblCoin.string = '战币:' + UserMgr.inst.coin;
// this.updateDanImg();
}
async onHeadImgClicked() {
// let info = await UserMgr.inst.rpc_GetUserInfo(UserMgr.inst.userId);
// tgxUIMgr.inst.showUI(UIUserInfo, null, null, info);
tgxUIMgr.inst.showUI(UIChooseHeadLayer);
}
onDestroy(){
director.off(RoomEvent.DanUpdate, this.updateDanImg.bind(this), this);
director.off("AreanEvent.UpdateHeadOrFrame", this.updateHeadOrFrame.bind(this), this);
}
update(deltaTime: number) {
}
public updateHeadOrFrame() : void{
UserMgr.inst.setUserIconAndName1(UserMgr.inst.userId, this.headImg,this.headFrame,this.lblUserName, ModuleDef.BASIC);
}
public updateDanImg() {
// let danInfo = CommonFun.getInstance().calDanData(UserMgr.inst.userInfo.danGrading);
// let sp : SpriteFrame = resLoader.getSpriteFrame('danIcon/dan_' + danInfo.curDan,ModuleDef.BASIC);
// if(sp) this.danImg.spriteFrame = sp;
//
// let data = areanMgr.cfgMgr.DanData.getData(danInfo.curDan);
// if(data) this.danName.string = data.danName;
}
}