pinball/assets/_Game/Scripts/GamePlay/MutilBall.ts

101 lines
3.4 KiB
TypeScript
Raw Normal View History

2024-06-07 01:45:52 -07:00
import {
_decorator,
AudioClip,
Collider2D,
Color,
Component,
Contact2DType,
Node,
ParticleSystem,
PolygonCollider2D,
Prefab,
Vec2,
} from 'cc';
2024-03-12 01:50:54 -07:00
import TimeConfig from '../Enum/TimeConfig';
2024-03-28 20:35:44 -07:00
import { CameraController } from '../Environments/CameraController';
2024-06-07 01:45:52 -07:00
import Gizmos2D from '../Gizmos/Gizmos2D';
2024-05-27 02:19:31 -07:00
import AudioManager from '../Manager/AudioManager';
2024-05-15 00:42:31 -07:00
import { GameManager } from '../Manager/GameManager';
import ObjectPool from '../Pool/ObjectPool';
import Utilities from '../Utilities';
import { Ball } from './Ball';
2024-03-10 03:12:55 -07:00
const { ccclass, property } = _decorator;
@ccclass('MultiBall')
export class MultiBall extends Component {
@property({ type: Collider2D, visible: true })
private _collider: Collider2D;
@property({ type: Node, visible: true })
private _portLeft;
@property({ type: Node, visible: true })
private _portRight;
2024-03-28 20:35:44 -07:00
@property({ type: Prefab, visible: true })
private _fx: Prefab;
2024-03-10 03:12:55 -07:00
2024-04-03 02:43:18 -07:00
@property({ type: AudioClip, visible: true })
private _soundFX: AudioClip;
2024-03-12 01:50:54 -07:00
private _originBall: Ball;
private _trigged = false;
2024-03-28 20:35:44 -07:00
private _fxPool: ObjectPool;
2024-03-10 03:12:55 -07:00
2024-05-15 00:42:31 -07:00
private _enabled: boolean = true;
2024-06-07 01:45:52 -07:00
onFocusInEditor(): void {
Gizmos2D.registerDrawGizmos(this.node);
}
onDrawGizmos(): void {
Gizmos2D.beginColor(this.node, new Color(0, 255, 0, 200));
const points = (this._collider as PolygonCollider2D).points.map((p) => p.clone().add(this._collider.offset));
Gizmos2D.beginLocalPosition(this.node);
Gizmos2D.drawSolidPolygon(this.node, points);
Gizmos2D.endLocalPosition(this.node);
Gizmos2D.beginColor(this.node, new Color(0, 0, 255, 200));
Gizmos2D.drawSolidEllipse(this.node, this._portLeft.worldPosition, 20, 30);
Gizmos2D.drawSolidEllipse(this.node, this._portRight.worldPosition, 20, 30);
}
2024-03-10 03:12:55 -07:00
protected onLoad(): void {
2024-03-28 20:35:44 -07:00
this._fxPool = new ObjectPool(this._fx, 2, true);
2024-03-10 03:12:55 -07:00
this._collider.on(Contact2DType.BEGIN_CONTACT, this.onBeginContact, this);
}
protected lateUpdate(dt: number): void {
2024-03-12 01:50:54 -07:00
if (this._trigged) {
2024-03-28 20:35:44 -07:00
CameraController.instance.shake(0.2);
2024-03-12 01:50:54 -07:00
const ball1 = this._originBall;
2024-05-15 00:42:31 -07:00
ball1.clearRigiState(false);
2024-04-03 02:43:18 -07:00
const ball2 = GameManager.instance.spawnBall(false, false);
2024-05-15 00:42:31 -07:00
ball2.clearRigiState(false);
2024-03-10 03:12:55 -07:00
ball1.node.setWorldPosition(this._portRight.worldPosition);
2024-05-15 00:42:31 -07:00
ball1.clearRigiState(true);
2024-03-28 20:35:44 -07:00
ball1.addForce(new Vec2(20, 0));
2024-03-10 03:12:55 -07:00
ball2.node.setWorldPosition(this._portLeft.worldPosition);
2024-05-15 00:42:31 -07:00
ball2.clearRigiState(true);
2024-03-28 20:35:44 -07:00
ball2.addForce(new Vec2(-20, 0));
2024-03-10 03:12:55 -07:00
2024-03-12 01:50:54 -07:00
this._trigged = false;
2024-03-10 03:12:55 -07:00
}
}
private async onBeginContact(selfCollider: Collider2D, otherCollider: Collider2D) {
2024-05-15 00:42:31 -07:00
if (!this._enabled) return;
2024-03-12 01:50:54 -07:00
if (this._trigged) return;
2024-05-15 00:42:31 -07:00
this._enabled = false;
2024-03-12 01:50:54 -07:00
this._originBall = otherCollider.getComponent(Ball);
this._trigged = true;
2024-05-15 00:42:31 -07:00
const fx = this._fxPool.get(ParticleSystem, GameManager.instance.topContainer);
const pos = this.node.getWorldPosition();
pos.z = 10;
fx.node.setWorldPosition(pos);
2024-05-27 02:19:31 -07:00
AudioManager.playSfx(this._soundFX);
2024-03-12 01:50:54 -07:00
await Utilities.delay(TimeConfig.DelayMultiBall);
2024-05-15 00:42:31 -07:00
this._enabled = true;
2024-03-28 20:35:44 -07:00
await Utilities.waitUntil(() => fx.isStopped);
2024-04-03 02:43:18 -07:00
this._fxPool.release(fx);
2024-03-10 03:12:55 -07:00
}
}