Files
cocos-engine/cocos/rendering/custom/utils.ts
PP 509d73b27d merge branch v3.8.0-aot (#15421)
* PR1: add explicit function return type (#15311)

* PR4: add explicit function return type (#15314)

* [ci skip][AUTO]: Automated code generating update: 8843bfe54c  (#15314) (#15357)

Co-authored-by: cocos-robot <cocos-robot@cocos.com>

* add function return type

* fix version checking

* fix return type

---------

Co-authored-by: Cocos Robot <48829427+cocos-robot@users.noreply.github.com>
Co-authored-by: cocos-robot <cocos-robot@cocos.com>
2023-06-13 18:08:45 +08:00

121 lines
3.7 KiB
TypeScript

/*
Copyright (c) 2022-2023 Xiamen Yaji Software Co., Ltd.
https://www.cocos.com/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
// https://stackoverflow.com/questions/56714318/how-to-disable-multiple-rules-for-eslint-nextline?msclkid=5d4c2298ba7911eca34d0ab30591752e
import { Type } from '../../gfx';
import { Camera } from '../../render-scene/scene/camera';
export function isUICamera (camera: Camera): boolean {
const scene = camera.scene!;
const batches = scene.batches;
for (let i = 0; batches && i < batches.length; i++) {
const batch = batches[i];
if (camera.visibility & batch.visFlags) {
return true;
}
}
return false;
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function replacer (key: unknown, value: unknown): unknown {
if (value instanceof Map) {
return {
meta_t: 'Map',
value: Array.from(value.entries()).sort((a, b): number => String(a[0]).localeCompare(b[0])),
};
} else if (value instanceof Set) {
return {
meta_t: 'Set',
value: Array.from(value).sort(),
};
}
return value;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unused-vars
export function reviver (key: unknown, value: any): any {
if (typeof value === 'object' && value !== null) {
if (value.meta_t === 'Map') {
return new Map(value.value);
} else if (value.meta_t === 'Set') {
return new Set(value.value);
}
}
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return value;
}
export function stringify (data: unknown, space?: string | number | undefined): string {
return JSON.stringify(data, replacer, space);
}
export function parse (text: string): any {
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return JSON.parse(text, reviver);
}
export function getUBOTypeCount (type: Type): number {
switch (type) {
case Type.BOOL:
case Type.INT:
case Type.UINT:
case Type.FLOAT:
return 1;
case Type.INT2:
case Type.FLOAT2:
case Type.UINT2:
case Type.BOOL2:
return 2;
case Type.FLOAT3:
case Type.BOOL3:
case Type.UINT3:
case Type.INT3:
return 3;
case Type.BOOL4:
case Type.FLOAT4:
case Type.UINT4:
case Type.INT4:
return 4;
case Type.MAT2:
return 4;
case Type.MAT2X3:
case Type.MAT3X2:
return 6;
case Type.MAT2X4:
case Type.MAT4X2:
return 8;
case Type.MAT3:
return 9;
case Type.MAT3X4:
case Type.MAT4X3:
return 12;
case Type.MAT4:
return 16;
default:
return 0;
}
}