2020-08-20 03:42:16 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.Profiling;
|
|
|
|
|
|
|
|
namespace Coffee.UIExtensions
|
|
|
|
{
|
|
|
|
public static class UIParticleUpdater
|
|
|
|
{
|
|
|
|
static readonly List<UIParticle> s_ActiveParticles = new List<UIParticle>();
|
|
|
|
static MaterialPropertyBlock s_Mpb;
|
2020-08-28 13:38:13 +08:00
|
|
|
static ParticleSystem.Particle[] s_Particles = new ParticleSystem.Particle[2048];
|
|
|
|
|
2020-08-20 03:42:16 +08:00
|
|
|
|
|
|
|
public static void Register(UIParticle particle)
|
|
|
|
{
|
|
|
|
if (!particle) return;
|
|
|
|
s_ActiveParticles.Add(particle);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Unregister(UIParticle particle)
|
|
|
|
{
|
|
|
|
if (!particle) return;
|
|
|
|
s_ActiveParticles.Remove(particle);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
[UnityEditor.InitializeOnLoadMethod]
|
|
|
|
#endif
|
|
|
|
[RuntimeInitializeOnLoadMethod]
|
|
|
|
private static void InitializeOnLoad()
|
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
MeshHelper.Init();
|
|
|
|
MeshPool.Init();
|
|
|
|
CombineInstanceArrayPool.Init();
|
|
|
|
|
2020-08-20 03:42:16 +08:00
|
|
|
Canvas.willRenderCanvases -= Refresh;
|
|
|
|
Canvas.willRenderCanvases += Refresh;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void Refresh()
|
|
|
|
{
|
2020-09-02 13:15:30 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Refresh");
|
2020-08-20 03:42:16 +08:00
|
|
|
for (var i = 0; i < s_ActiveParticles.Count; i++)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Refresh(s_ActiveParticles[i]);
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Debug.LogException(e);
|
|
|
|
}
|
|
|
|
}
|
2020-09-02 13:15:30 +08:00
|
|
|
Profiler.EndSample();
|
2020-08-20 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void Refresh(UIParticle particle)
|
|
|
|
{
|
2020-09-01 12:50:54 +08:00
|
|
|
if (!particle || !particle.canvas || !particle.canvasRenderer) return;
|
2020-08-20 03:42:16 +08:00
|
|
|
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Modify scale");
|
2020-08-20 03:42:16 +08:00
|
|
|
ModifyScale(particle);
|
|
|
|
Profiler.EndSample();
|
|
|
|
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Bake mesh");
|
2020-08-28 13:38:13 +08:00
|
|
|
BakeMesh(particle);
|
2020-08-20 03:42:16 +08:00
|
|
|
Profiler.EndSample();
|
|
|
|
|
|
|
|
if (QualitySettings.activeColorSpace == ColorSpace.Linear)
|
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Modify color space to linear");
|
2020-08-20 03:42:16 +08:00
|
|
|
particle.bakedMesh.ModifyColorSpaceToLinear();
|
|
|
|
Profiler.EndSample();
|
|
|
|
}
|
|
|
|
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Set mesh to CanvasRenderer");
|
2020-08-28 13:38:13 +08:00
|
|
|
particle.canvasRenderer.SetMesh(particle.bakedMesh);
|
2020-08-20 03:42:16 +08:00
|
|
|
Profiler.EndSample();
|
|
|
|
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Update Animatable Material Properties");
|
2020-09-14 17:29:16 +08:00
|
|
|
particle.UpdateMaterialProperties();
|
2020-08-20 03:42:16 +08:00
|
|
|
Profiler.EndSample();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void ModifyScale(UIParticle particle)
|
|
|
|
{
|
2020-08-28 13:38:13 +08:00
|
|
|
if (!particle.ignoreCanvasScaler || !particle.canvas) return;
|
2020-08-20 03:42:16 +08:00
|
|
|
|
|
|
|
// Ignore Canvas scaling.
|
2020-08-28 13:38:13 +08:00
|
|
|
var s = particle.canvas.rootCanvas.transform.localScale;
|
|
|
|
var modifiedScale = new Vector3(
|
|
|
|
Mathf.Approximately(s.x, 0) ? 1 : 1 / s.x,
|
|
|
|
Mathf.Approximately(s.y, 0) ? 1 : 1 / s.y,
|
|
|
|
Mathf.Approximately(s.z, 0) ? 1 : 1 / s.z);
|
2020-08-20 03:42:16 +08:00
|
|
|
|
|
|
|
// Scale is already modified.
|
2020-08-28 13:38:13 +08:00
|
|
|
var transform = particle.transform;
|
|
|
|
if (Mathf.Approximately((transform.localScale - modifiedScale).sqrMagnitude, 0)) return;
|
2020-08-20 03:42:16 +08:00
|
|
|
|
2020-08-28 13:38:13 +08:00
|
|
|
transform.localScale = modifiedScale;
|
2020-08-20 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
2020-08-28 13:38:13 +08:00
|
|
|
private static Matrix4x4 GetScaledMatrix(ParticleSystem particle)
|
2020-08-20 03:42:16 +08:00
|
|
|
{
|
|
|
|
var transform = particle.transform;
|
2020-08-28 13:38:13 +08:00
|
|
|
var main = particle.main;
|
2020-08-20 03:42:16 +08:00
|
|
|
var space = main.simulationSpace;
|
|
|
|
if (space == ParticleSystemSimulationSpace.Custom && !main.customSimulationSpace)
|
|
|
|
space = ParticleSystemSimulationSpace.Local;
|
|
|
|
|
|
|
|
switch (space)
|
|
|
|
{
|
|
|
|
case ParticleSystemSimulationSpace.Local:
|
2020-08-28 13:38:13 +08:00
|
|
|
return Matrix4x4.Rotate(transform.rotation).inverse
|
|
|
|
* Matrix4x4.Scale(transform.lossyScale).inverse;
|
2020-08-20 03:42:16 +08:00
|
|
|
case ParticleSystemSimulationSpace.World:
|
|
|
|
return transform.worldToLocalMatrix;
|
|
|
|
case ParticleSystemSimulationSpace.Custom:
|
|
|
|
// #78: Support custom simulation space.
|
|
|
|
return transform.worldToLocalMatrix
|
|
|
|
* Matrix4x4.Translate(main.customSimulationSpace.position);
|
|
|
|
default:
|
|
|
|
return Matrix4x4.identity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 13:38:13 +08:00
|
|
|
private static void BakeMesh(UIParticle particle)
|
2020-08-20 03:42:16 +08:00
|
|
|
{
|
|
|
|
// Clear mesh before bake.
|
|
|
|
MeshHelper.Clear();
|
2020-08-28 13:38:13 +08:00
|
|
|
particle.bakedMesh.Clear(false);
|
2020-08-20 03:42:16 +08:00
|
|
|
|
|
|
|
// Get camera for baking mesh.
|
2020-08-28 13:38:13 +08:00
|
|
|
var camera = BakingCamera.GetCamera(particle.canvas);
|
|
|
|
var root = particle.transform;
|
|
|
|
var rootMatrix = Matrix4x4.Rotate(root.rotation).inverse
|
|
|
|
* Matrix4x4.Scale(root.lossyScale).inverse;
|
2020-09-15 20:17:44 +08:00
|
|
|
var scale = particle.ignoreCanvasScaler
|
|
|
|
? particle.canvas.rootCanvas.transform.localScale.x * particle.scale
|
|
|
|
: particle.scale;
|
|
|
|
var scaleMatrix = Matrix4x4.Scale(scale * Vector3.one);
|
2020-08-28 13:38:13 +08:00
|
|
|
|
|
|
|
// Cache position
|
|
|
|
var position = particle.transform.position;
|
2020-09-15 20:17:44 +08:00
|
|
|
var diff = (position - particle.cachedPosition) * (1 - 1 / scale);
|
2020-08-28 13:38:13 +08:00
|
|
|
particle.cachedPosition = position;
|
|
|
|
|
|
|
|
for (var i = 0; i < particle.particles.Count; i++)
|
2020-08-20 03:42:16 +08:00
|
|
|
{
|
2020-08-28 13:38:13 +08:00
|
|
|
// No particle to render.
|
|
|
|
var currentPs = particle.particles[i];
|
|
|
|
if (!currentPs || !currentPs.IsAlive() || currentPs.particleCount == 0) continue;
|
2020-08-20 03:42:16 +08:00
|
|
|
|
2020-08-28 13:38:13 +08:00
|
|
|
// Calc matrix.
|
|
|
|
var matrix = rootMatrix;
|
|
|
|
if (currentPs.transform != root)
|
|
|
|
{
|
|
|
|
if (currentPs.main.simulationSpace == ParticleSystemSimulationSpace.Local)
|
|
|
|
{
|
|
|
|
var relativePos = root.InverseTransformPoint(currentPs.transform.position);
|
|
|
|
matrix = Matrix4x4.Translate(relativePos) * matrix;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
matrix = matrix * Matrix4x4.Translate(-root.position);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
matrix = GetScaledMatrix(currentPs);
|
|
|
|
}
|
|
|
|
|
2020-09-02 01:39:05 +08:00
|
|
|
matrix = scaleMatrix * matrix;
|
2020-08-28 13:38:13 +08:00
|
|
|
|
|
|
|
// Extra world simulation.
|
|
|
|
if (currentPs.main.simulationSpace == ParticleSystemSimulationSpace.World && 0 < diff.sqrMagnitude)
|
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Bake Mesh > Extra world simulation");
|
2020-08-28 13:38:13 +08:00
|
|
|
var count = currentPs.particleCount;
|
|
|
|
if (s_Particles.Length < count)
|
|
|
|
{
|
|
|
|
var size = Mathf.NextPowerOfTwo(count);
|
|
|
|
s_Particles = new ParticleSystem.Particle[size];
|
|
|
|
}
|
|
|
|
|
|
|
|
currentPs.GetParticles(s_Particles);
|
|
|
|
for (var j = 0; j < count; j++)
|
|
|
|
{
|
|
|
|
var p = s_Particles[j];
|
|
|
|
p.position += diff;
|
|
|
|
s_Particles[j] = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
currentPs.SetParticles(s_Particles, count);
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.EndSample();
|
2020-08-28 13:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bake main particles.
|
|
|
|
var r = currentPs.GetComponent<ParticleSystemRenderer>();
|
|
|
|
if (CanBakeMesh(r))
|
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Bake Mesh > Bake Main Particles");
|
|
|
|
var hash = currentPs.GetMaterialHash(false);
|
|
|
|
if (hash != 0)
|
2020-08-29 02:55:46 +08:00
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
var m = MeshHelper.GetTemporaryMesh();
|
|
|
|
r.BakeMesh(m, camera, true);
|
|
|
|
MeshHelper.Push(i * 2, hash, m, matrix);
|
2020-08-29 02:55:46 +08:00
|
|
|
}
|
2020-09-02 01:39:05 +08:00
|
|
|
|
|
|
|
Profiler.EndSample();
|
2020-08-28 13:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bake trails particles.
|
|
|
|
if (currentPs.trails.enabled)
|
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Bake Mesh > Bake Trails Particles");
|
|
|
|
var hash = currentPs.GetMaterialHash(true);
|
|
|
|
if (hash != 0)
|
2020-08-28 13:38:13 +08:00
|
|
|
{
|
2020-09-02 01:39:05 +08:00
|
|
|
var m = MeshHelper.GetTemporaryMesh();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
r.BakeTrailsMesh(m, camera, true);
|
|
|
|
MeshHelper.Push(i * 2 + 1, hash, m, matrix);
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
MeshHelper.DiscardTemporaryMesh(m);
|
|
|
|
}
|
2020-08-28 13:38:13 +08:00
|
|
|
}
|
2020-09-02 01:39:05 +08:00
|
|
|
|
|
|
|
Profiler.EndSample();
|
2020-08-28 13:38:13 +08:00
|
|
|
}
|
2020-08-20 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
2020-08-28 13:38:13 +08:00
|
|
|
// Set active indices.
|
|
|
|
particle.activeMeshIndices = MeshHelper.activeMeshIndices;
|
|
|
|
|
|
|
|
// Combine
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.BeginSample("[UIParticle] Bake Mesh > CombineMesh");
|
2020-08-28 13:38:13 +08:00
|
|
|
MeshHelper.CombineMesh(particle.bakedMesh);
|
2020-09-03 00:02:59 +08:00
|
|
|
MeshHelper.Clear();
|
2020-09-02 01:39:05 +08:00
|
|
|
Profiler.EndSample();
|
2020-08-20 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private static bool CanBakeMesh(ParticleSystemRenderer renderer)
|
|
|
|
{
|
|
|
|
// #69: Editor crashes when mesh is set to null when `ParticleSystem.RenderMode = Mesh`
|
2020-08-28 13:38:13 +08:00
|
|
|
if (renderer.renderMode == ParticleSystemRenderMode.Mesh && renderer.mesh == null) return false;
|
2020-08-20 03:42:16 +08:00
|
|
|
|
|
|
|
// #61: When `ParticleSystem.RenderMode = None`, an error occurs
|
|
|
|
if (renderer.renderMode == ParticleSystemRenderMode.None) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|