1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import { _decorator, color, Color, Component, Enum, Node, sp } from 'cc';
- import { CupHeight, WaterColorHex, WaterColors } from '../TakeGobletGlobalInstance';
- import { Water } from './Water';
- import { EventDispatcher } from 'db://assets/core_tgx/easy_ui_framework/EventDispatcher';
- import { GameEvent } from '../Enum/GameEvent';
- const { ccclass, property } = _decorator;
- @ccclass('TempCup')
- export class TempCup extends Component {
- @property({ type: Enum(CupHeight), displayName: '杯高度' })
- cupHeight: CupHeight = CupHeight.One
- @property(Node)
- waters: Node = null!; //水节点
- @property(sp.Skeleton)
- colorB: sp.Skeleton = null!; //水流骨骼
- @property(sp.Skeleton)
- cupSkeleton: sp.Skeleton = null!; //杯骨骼
- @property(Node)
- adNode: Node = null!;
- private _currentColor: WaterColors = WaterColors.Blue;
- private _isFull: boolean = false;
- get isFull(): boolean {
- return this._isFull;
- }
- get currentColor(): WaterColors {
- return this._currentColor;
- }
- get iconAd(): boolean {
- return this.adNode.active;
- }
- start() {
- this.node.on(Node.EventType.TOUCH_END, () => {
- this.onTouchEndAdCup();
- });
- }
- private onTouchEndAdCup() {
- if (this.iconAd) {
- this.adNode.active = false;
- console.log('关闭广告图标@@@@@');
- }
- }
- fill(color: WaterColors) {
- if (this._isFull) return;
- const waterNode = this.waters.children[0];
- if (waterNode && waterNode.getComponent(sp.Skeleton)) {
- waterNode.active = true;
- this._currentColor = color;
- let cupColor = new Color(WaterColorHex[color]);
- let waterSpine = waterNode.getComponent(sp.Skeleton)!;
- console.log(`暂存水的颜色:${WaterColorHex[color]}`)
- this.colorB.color = cupColor;
- waterSpine.color = cupColor;
- waterSpine.setAnimation(0, 'pick_01', false);
- this.colorB.setAnimation(0, 'pick_01', false);
- this.cupSkeleton.setAnimation(0, 'pick_01', false);
- this._isFull = true;
- }
- }
- pour() {
- }
- reset() {
- this.waters.children[0].active = false;
- this._isFull = false;
- console.log('暂存杯已重置');
- }
- public getColors(): WaterColors[] {
- return [this.currentColor];
- }
- public isEmpty(): boolean {
- return this.waters.children.every(node => !node.active);
- }
- }
|