mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-30 18:39:18 +08:00
2. 废弃oops.res.preloadAsync,功能与oops.res.preload方法合并 3. 废弃GameComponent.loadAsync,功能与GameComponent.load方法合并 4. 修复本地存储加密安卓平台报错问题
269 lines
8.2 KiB
TypeScript
269 lines
8.2 KiB
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-10-12 14:00:43
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2023-03-06 14:40:34
|
|
*/
|
|
import { Animation, Node, NodePool, ParticleSystem, Prefab, sp, Vec3 } from 'cc';
|
|
import { message } from '../../core/common/event/MessageManager';
|
|
import { resLoader } from '../../core/common/loader/ResLoader';
|
|
import { ViewUtil } from '../../core/utils/ViewUtil';
|
|
import { EffectEvent } from './EffectEvent';
|
|
import { EffectFinishedRelease } from './EffectFinishedRelease';
|
|
|
|
/** 特效参数 */
|
|
export interface IEffectParams {
|
|
/** 初始空间坐标 */
|
|
pos?: Vec3,
|
|
/** 初始世界坐标 */
|
|
worldPos?: Vec3,
|
|
/** 是否播放完成后删除 */
|
|
isPlayFinishedRelease?: boolean,
|
|
/** 资源包名 */
|
|
bundleName?: string
|
|
}
|
|
|
|
/**
|
|
* 动画特效对象池管理器,加载动画后自动播放,播放完后自动回收到池中
|
|
* 1、支持Spine动画
|
|
* 2、支持Cocos Animation动画
|
|
* 3、支持Cocos ParticleSystem粒子动画
|
|
*/
|
|
export class EffectSingleCase {
|
|
private static _instance: EffectSingleCase;
|
|
static get instance(): EffectSingleCase {
|
|
if (this._instance == null) {
|
|
this._instance = new EffectSingleCase();
|
|
}
|
|
return this._instance;
|
|
}
|
|
|
|
private _speed: number = 1;
|
|
/** 全局动画播放速度 */
|
|
get speed(): number {
|
|
return this._speed;
|
|
}
|
|
set speed(value: number) {
|
|
this._speed = value;
|
|
this.effects_use.forEach((value: Boolean, key: Node) => {
|
|
this.setSpeed(key);
|
|
});
|
|
}
|
|
|
|
/** 对象池集合 */
|
|
private effects: Map<string, NodePool> = new Map();
|
|
/** 正在使用中的显示对象集合 */
|
|
private effects_use: Map<Node, boolean> = new Map();
|
|
/** 对象池中用到的资源 - 这里只管理本对象加载的资源,预加载资源由其它对象自己施放 */
|
|
private res: Map<string, string> = new Map();
|
|
|
|
constructor() {
|
|
message.on(EffectEvent.Put, this.onPut, this);
|
|
}
|
|
|
|
private onPut(event: string, node: Node) {
|
|
this.put(node);
|
|
}
|
|
|
|
/**
|
|
* 获取指定资源池中对象数量
|
|
* @param path 预制资源路径
|
|
*/
|
|
getCount(path: string): number {
|
|
var np = this.effects.get(path);
|
|
if (np) {
|
|
return np.size();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/** 池中预加载显示对象 */
|
|
preload(count: number, path: string, bundleName: string = resLoader.defaultBundleName): Promise<void> {
|
|
return new Promise(async (resolve, reject) => {
|
|
let np = this.effects.get(path);
|
|
if (np == null) {
|
|
np = new NodePool();
|
|
this.effects.set(path, np);
|
|
}
|
|
|
|
this.res.set(path, bundleName);
|
|
await resLoader.load(bundleName, path, Prefab);
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
let node = ViewUtil.createPrefabNode(path, bundleName);
|
|
//@ts-ignore
|
|
node.res_path = path;
|
|
np.put(node);
|
|
}
|
|
resolve();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 加载资源并生成节点对象
|
|
* @param path 预制资源路径
|
|
* @param parent 父节点
|
|
* @param params 显示参数
|
|
*/
|
|
loadAndShow(path: string, parent?: Node, params?: IEffectParams): Promise<Node> {
|
|
return new Promise(async (resolve, reject) => {
|
|
var np = this.effects.get(path);
|
|
if (np == undefined) {
|
|
if (params && params.bundleName) {
|
|
this.res.set(path, params.bundleName);
|
|
await resLoader.load(params.bundleName, path, Prefab);
|
|
}
|
|
else {
|
|
this.res.set(path, resLoader.defaultBundleName);
|
|
await resLoader.load(path, Prefab);
|
|
}
|
|
|
|
const node = this.show(path, parent, params);
|
|
resolve(node);
|
|
}
|
|
else {
|
|
const node = this.show(path, parent, params);
|
|
resolve(node);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 显示预制对象
|
|
* @param path 预制资源路径
|
|
* @param parent 父节点
|
|
* @param params 显示参数
|
|
*/
|
|
show(path: string, parent?: Node, params?: IEffectParams): Node {
|
|
var np = this.effects.get(path);
|
|
if (np == null) {
|
|
np = new NodePool();
|
|
this.effects.set(path, np);
|
|
}
|
|
|
|
var node: Node;
|
|
// 创建池中新显示对象
|
|
if (np.size() == 0) {
|
|
var bundleName = resLoader.defaultBundleName;
|
|
if (params && params.bundleName) bundleName = params.bundleName;
|
|
node = ViewUtil.createPrefabNode(path, bundleName);
|
|
//@ts-ignore
|
|
node.res_path = path;
|
|
if (params && params.isPlayFinishedRelease) {
|
|
node.addComponent(EffectFinishedRelease);
|
|
}
|
|
}
|
|
// 池中获取没使用的显示对象
|
|
else {
|
|
node = np.get()!;
|
|
}
|
|
|
|
// 设置动画播放速度
|
|
this.setSpeed(node);
|
|
|
|
// 设置显示对象位置
|
|
if (params) {
|
|
if (params.pos) node.position = params.pos;
|
|
if (params.worldPos) node.worldPosition = params.worldPos;
|
|
}
|
|
|
|
// 显示到屏幕上
|
|
if (parent) node.parent = parent;
|
|
|
|
// 记录缓冲池中放出的节点
|
|
this.effects_use.set(node, true);
|
|
|
|
return node;
|
|
}
|
|
|
|
/**
|
|
* 回收对象
|
|
* @param name 预制对象名称
|
|
* @param node 节点
|
|
*/
|
|
put(node: Node) {
|
|
//@ts-ignore
|
|
const name = node.res_path;
|
|
if (name) {
|
|
const np = this.effects.get(name);
|
|
if (np) {
|
|
// 回收使用的节点
|
|
this.effects_use.delete(node);
|
|
|
|
// 回到到池中
|
|
np.put(node);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 清除对象池数据
|
|
* @param path 参数为空时,清除所有对象池数据;指定名时,清楚指定数据
|
|
*/
|
|
clear(path?: string) {
|
|
if (path) {
|
|
const np = this.effects.get(path);
|
|
if (np) np.clear();
|
|
}
|
|
else {
|
|
this.effects.forEach(np => {
|
|
np.clear();
|
|
});
|
|
this.effects.clear();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 释放对象池中显示对象的资源内存
|
|
* @param path 资源路径
|
|
*/
|
|
release(path?: string) {
|
|
if (path) {
|
|
this.clear(path);
|
|
const bundleName = this.res.get(path);
|
|
resLoader.release(path, bundleName);
|
|
this.res.delete(path);
|
|
}
|
|
else {
|
|
// 施放池中对象内存
|
|
this.clear();
|
|
|
|
// 施放对象资源内存
|
|
this.res.forEach((bundleName: string, path: string) => {
|
|
resLoader.release(path, bundleName);
|
|
});
|
|
this.res.clear()
|
|
}
|
|
}
|
|
|
|
/** 设置动画速度 */
|
|
private setSpeed(node: Node) {
|
|
// SPINE动画
|
|
let spine = node.getComponent(sp.Skeleton);
|
|
if (spine) {
|
|
spine.timeScale = this.speed;
|
|
}
|
|
else {
|
|
// COCOS动画
|
|
const anims: Animation[] = node.getComponentsInChildren(Animation);
|
|
if (anims.length > 0) {
|
|
anims.forEach(animator => {
|
|
let aniName = animator.defaultClip?.name;
|
|
if (aniName) {
|
|
let aniState = animator.getState(aniName);
|
|
if (aniState) {
|
|
aniState.speed = this.speed;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
// 粒子动画
|
|
else if (ParticleSystem) {
|
|
const particles: ParticleSystem[] = node.getComponentsInChildren(ParticleSystem);
|
|
particles.forEach(particle => {
|
|
particle.simulationSpeed = this.speed;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
} |