OvrAvatarMaterialManager.cs
17.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Rendering;
public class OvrAvatarMaterialManager : MonoBehaviour
{
private Renderer TargetRenderer;
private AvatarTextureArrayProperties[] TextureArrays;
public enum TextureType
{
DiffuseTextures = 0,
NormalMaps,
RoughnessMaps,
Count
}
// Material properties required to render a single component
public struct AvatarComponentMaterialProperties
{
public ovrAvatarBodyPartType TypeIndex;
public Color Color;
public Texture2D[] Textures;
public float DiffuseIntensity;
public float RimIntensity;
public float ReflectionIntensity;
}
// Texture arrays
public struct AvatarTextureArrayProperties
{
public Texture2D[] Textures;
public Texture2DArray TextureArray;
}
// Material property arrays that are pushed to the shader
public struct AvatarMaterialPropertyBlock
{
public Vector4[] Colors;
public float[] DiffuseIntensities;
public float[] RimIntensities;
public float[] ReflectionIntensities;
}
private readonly string[] TextureTypeToShaderProperties =
{
"_MainTex", // TextureType.DiffuseTextures = 0
"_NormalMap", // TextureType.NormalMaps
"_RoughnessMap" // TextureType.RoughnessMaps
};
// Container class for all the data relating to an avatar material description
[System.Serializable]
public class AvatarMaterialConfig
{
public AvatarComponentMaterialProperties[] ComponentMaterialProperties;
public AvatarMaterialPropertyBlock MaterialPropertyBlock;
}
// Local config that this manager instance will render
public AvatarMaterialConfig LocalAvatarConfig = new AvatarMaterialConfig();
public List<ReflectionProbeBlendInfo> ReflectionProbes = new List<ReflectionProbeBlendInfo>();
// Cache the previous shader when swapping in the loading shader.
private Shader CombinedShader;
// Shader properties
public static string AVATAR_SHADER_LOADER = "OvrAvatar/Avatar_Mobile_Loader";
public static string AVATAR_SHADER_MAINTEX = "_MainTex";
public static string AVATAR_SHADER_NORMALMAP = "_NormalMap";
public static string AVATAR_SHADER_ROUGHNESSMAP = "_RoughnessMap";
public static string AVATAR_SHADER_COLOR = "_BaseColor";
public static string AVATAR_SHADER_DIFFUSEINTENSITY = "_DiffuseIntensity";
public static string AVATAR_SHADER_RIMINTENSITY = "_RimIntensity";
public static string AVATAR_SHADER_REFLECTIONINTENSITY = "_ReflectionIntensity";
public static string AVATAR_SHADER_CUBEMAP = "_Cubemap";
public static string AVATAR_SHADER_ALPHA = "_Alpha";
public static string AVATAR_SHADER_LOADING_DIMMER = "_LoadingDimmer";
public static string AVATAR_SHADER_IRIS_COLOR = "_MaskColorIris";
public static string AVATAR_SHADER_LIP_COLOR = "_MaskColorLips";
public static string AVATAR_SHADER_BROW_COLOR = "_MaskColorBrows";
public static string AVATAR_SHADER_LASH_COLOR = "_MaskColorLashes";
public static string AVATAR_SHADER_SCLERA_COLOR = "_MaskColorSclera";
public static string AVATAR_SHADER_GUM_COLOR = "_MaskColorGums";
public static string AVATAR_SHADER_TEETH_COLOR = "_MaskColorTeeth";
public static string AVATAR_SHADER_LIP_SMOOTHNESS = "_LipSmoothness";
// Diffuse Intensity constants: body, clothes, eyewear, hair, beard
public static float[] DiffuseIntensities = new[] {0.3f, 0.1f, 0f, 0.15f, 0.15f};
// Rim Intensity constants: body, clothes, eyewear, hair, beard
public static float[] RimIntensities = new[] {5f, 2f, 2.84f, 4f, 4f};
// Reflection Intensity constants: body, clothes, eyewear, hair, beard
public static float[] ReflectionIntensities = new[] {0f, 0.3f, 0.4f, 0f, 0f};
// Loading animation
private const float LOADING_ANIMATION_AMPLITUDE = 0.5f;
private const float LOADING_ANIMATION_PERIOD = 0.35f;
private const float LOADING_ANIMATION_CURVE_SCALE = 0.25f;
private const float LOADING_ANIMATION_DIMMER_MIN = 0.3f;
public void CreateTextureArrays()
{
const int componentCount = (int)ovrAvatarBodyPartType.Count;
const int textureTypeCount = (int)TextureType.Count;
LocalAvatarConfig.ComponentMaterialProperties = new AvatarComponentMaterialProperties[componentCount];
LocalAvatarConfig.MaterialPropertyBlock.Colors = new Vector4[componentCount];
LocalAvatarConfig.MaterialPropertyBlock.DiffuseIntensities = new float[componentCount];
LocalAvatarConfig.MaterialPropertyBlock.RimIntensities = new float[componentCount];
LocalAvatarConfig.MaterialPropertyBlock.ReflectionIntensities = new float[componentCount];
for (int i = 0; i < LocalAvatarConfig.ComponentMaterialProperties.Length; ++i)
{
LocalAvatarConfig.ComponentMaterialProperties[i].Textures = new Texture2D[textureTypeCount];
}
TextureArrays = new AvatarTextureArrayProperties[textureTypeCount];
}
public void SetRenderer(Renderer renderer)
{
TargetRenderer = renderer;
TargetRenderer.GetClosestReflectionProbes(ReflectionProbes);
}
public void OnCombinedMeshReady()
{
InitTextureArrays();
SetMaterialPropertyBlock();
// Callback to delete texture set once the avatar is fully loaded
StartCoroutine(RunLoadingAnimation(DeleteTextureSet));
}
// Add a texture ID so that it's managed for deletion
public void AddTextureIDToTextureManager(ulong assetID, bool isSingleComponent)
{
OvrAvatarSDKManager.Instance.GetTextureCopyManager().AddTextureIDToTextureSet(
GetInstanceID(), assetID, isSingleComponent);
}
// Once avatar loading is completed trigger the texture set for deletion
private void DeleteTextureSet()
{
OvrAvatarSDKManager.Instance.GetTextureCopyManager().DeleteTextureSet(GetInstanceID());
}
// Prepare texture arrays and copy to GPU
public void InitTextureArrays()
{
var localProps = LocalAvatarConfig.ComponentMaterialProperties[0];
for (int i = 0; i < TextureArrays.Length && i < localProps.Textures.Length; i++)
{
TextureArrays[i].TextureArray = new Texture2DArray(
localProps.Textures[0].height, localProps.Textures[0].width,
LocalAvatarConfig.ComponentMaterialProperties.Length,
localProps.Textures[0].format,
true,
QualitySettings.activeColorSpace == ColorSpace.Gamma ? false : true
) { filterMode = FilterMode.Trilinear,
//Can probably get away with 4 for roughness maps as well, once we switch
//to BC7/ASTC4x4 texture compression.
anisoLevel = (TextureType)i == TextureType.RoughnessMaps ? 16 : 4 };
//So a name shows up in Renderdoc
TextureArrays[i].TextureArray.name = string.Format("Texture Array Type: {0}", (TextureType)i);
TextureArrays[i].Textures
= new Texture2D[LocalAvatarConfig.ComponentMaterialProperties.Length];
for (int j = 0; j < LocalAvatarConfig.ComponentMaterialProperties.Length; j++)
{
TextureArrays[i].Textures[j]
= LocalAvatarConfig.ComponentMaterialProperties[j].Textures[i];
//So a name shows up in Renderdoc
TextureArrays[i].Textures[j].name = string.Format("Texture Type: {0} Component: {1}", (TextureType)i, j);
}
ProcessTexturesWithMips(
TextureArrays[i].Textures,
localProps.Textures[i].height,
TextureArrays[i].TextureArray);
}
}
private void ProcessTexturesWithMips(
Texture2D[] textures,
int texArrayResolution,
Texture2DArray texArray)
{
for (int i = 0; i < textures.Length; i++)
{
int currentMipSize = texArrayResolution;
int correctNumberOfMips = textures[i].mipmapCount - 1;
// Add mips to copyTexture queue in low-high order from correctNumberOfMips..0
for (int mipLevel = correctNumberOfMips; mipLevel >= 0; mipLevel--)
{
int mipSize = texArrayResolution / currentMipSize;
OvrAvatarSDKManager.Instance.GetTextureCopyManager().CopyTexture(
textures[i],
texArray,
mipLevel,
mipSize,
i,
false);
currentMipSize /= 2;
}
}
}
private void SetMaterialPropertyBlock()
{
if (TargetRenderer != null)
{
for (int i = 0; i < LocalAvatarConfig.ComponentMaterialProperties.Length; i++)
{
LocalAvatarConfig.MaterialPropertyBlock.Colors[i]
= LocalAvatarConfig.ComponentMaterialProperties[i].Color;
LocalAvatarConfig.MaterialPropertyBlock.DiffuseIntensities[i] = DiffuseIntensities[i];
LocalAvatarConfig.MaterialPropertyBlock.RimIntensities[i] = RimIntensities[i];
LocalAvatarConfig.MaterialPropertyBlock.ReflectionIntensities[i] = ReflectionIntensities[i];
}
}
}
private void ApplyMaterialPropertyBlock()
{
MaterialPropertyBlock materialPropertyBlock = new MaterialPropertyBlock();
materialPropertyBlock.SetVectorArray(AVATAR_SHADER_COLOR,
LocalAvatarConfig.MaterialPropertyBlock.Colors);
materialPropertyBlock.SetFloatArray(AVATAR_SHADER_DIFFUSEINTENSITY,
LocalAvatarConfig.MaterialPropertyBlock.DiffuseIntensities);
materialPropertyBlock.SetFloatArray(AVATAR_SHADER_RIMINTENSITY,
LocalAvatarConfig.MaterialPropertyBlock.RimIntensities);
materialPropertyBlock.SetFloatArray(AVATAR_SHADER_REFLECTIONINTENSITY,
LocalAvatarConfig.MaterialPropertyBlock.ReflectionIntensities);
TargetRenderer.GetClosestReflectionProbes(ReflectionProbes);
if (ReflectionProbes != null && ReflectionProbes.Count > 0 && ReflectionProbes[0].probe.texture != null)
{
materialPropertyBlock.SetTexture(AVATAR_SHADER_CUBEMAP, ReflectionProbes[0].probe.texture);
}
for (int i = 0; i < TextureArrays.Length; i++)
{
materialPropertyBlock.SetTexture(TextureTypeToShaderProperties[i],
TextureArrays[(int)(TextureType)i].TextureArray);
}
TargetRenderer.SetPropertyBlock(materialPropertyBlock);
}
// Return a component type based on name
public static ovrAvatarBodyPartType GetComponentType(string objectName)
{
if (objectName.Contains("0"))
{
return ovrAvatarBodyPartType.Body;
}
else if (objectName.Contains("1"))
{
return ovrAvatarBodyPartType.Clothing;
}
else if (objectName.Contains("2"))
{
return ovrAvatarBodyPartType.Eyewear;
}
else if (objectName.Contains("3"))
{
return ovrAvatarBodyPartType.Hair;
}
else if (objectName.Contains("4"))
{
return ovrAvatarBodyPartType.Beard;
}
return ovrAvatarBodyPartType.Count;
}
UInt64 GetTextureIDForType(ovrAvatarPBSMaterialState materialState, TextureType type)
{
if (type == TextureType.DiffuseTextures)
{
return materialState.albedoTextureID;
}
else if (type == TextureType.NormalMaps)
{
return materialState.normalTextureID;
}
else if (type == TextureType.RoughnessMaps)
{
return materialState.metallicnessTextureID;
}
return 0;
}
public void ValidateTextures(ovrAvatarPBSMaterialState[] materialStates)
{
var props = LocalAvatarConfig.ComponentMaterialProperties;
int[] heights = new int[(int)TextureType.Count];
TextureFormat[] formats = new TextureFormat[(int)TextureType.Count];
for (var propIndex = 0; propIndex < props.Length; propIndex++)
{
for (var index = 0; index < props[propIndex].Textures.Length; index++)
{
if (props[propIndex].Textures[index] == null)
{
throw new System.Exception(
props[propIndex].TypeIndex.ToString()
+ "Invalid: "
+ ((TextureType)index).ToString());
}
heights[index] = props[propIndex].Textures[index].height;
formats[index] = props[propIndex].Textures[index].format;
}
}
for (int textureIndex = 0; textureIndex < (int)TextureType.Count; textureIndex++)
{
for (var propIndex = 1; propIndex < props.Length; propIndex++)
{
if (props[propIndex - 1].Textures[textureIndex].height
!= props[propIndex].Textures[textureIndex].height)
{
throw new System.Exception(
props[propIndex].TypeIndex.ToString()
+ " Mismatching Resolutions: "
+ ((TextureType)textureIndex).ToString()
+ " "
+ props[propIndex - 1].Textures[textureIndex].height
+ " (ID: "
+ GetTextureIDForType(materialStates[propIndex - 1], (TextureType)textureIndex)
+ ") vs "
+ props[propIndex].Textures[textureIndex].height
+ " (ID: "
+ GetTextureIDForType(materialStates[propIndex], (TextureType)textureIndex)
+ ") Ensure you are using ASTC texture compression on Android or turn off CombineMeshes");
}
if (props[propIndex - 1].Textures[textureIndex].format
!= props[propIndex].Textures[textureIndex].format)
{
throw new System.Exception(
props[propIndex].TypeIndex.ToString()
+ " Mismatching Formats: "
+ ((TextureType)textureIndex).ToString()
+ " "
+ props[propIndex - 1].Textures[textureIndex].format
+ " (ID: "
+ GetTextureIDForType(materialStates[propIndex - 1], (TextureType)textureIndex)
+ ") vs "
+ props[propIndex].Textures[textureIndex].format
+ " (ID: "
+ GetTextureIDForType(materialStates[propIndex], (TextureType)textureIndex)
+ ") Ensure you are using ASTC texture compression on Android or turn off CombineMeshes");
}
}
}
}
// Loading animation on the Dimmer properyt
// Smooth sine lerp every 0.3 seconds between 0.25 and 0.5
private IEnumerator RunLoadingAnimation(Action callBack)
{
// Set the material to single component while the avatar loads
CombinedShader = TargetRenderer.sharedMaterial.shader;
// Save shader properties
int srcBlend = TargetRenderer.sharedMaterial.GetInt("_SrcBlend");
int dstBlend = TargetRenderer.sharedMaterial.GetInt("_DstBlend");
string lightModeTag = TargetRenderer.sharedMaterial.GetTag("LightMode", false);
string renderTypeTag = TargetRenderer.sharedMaterial.GetTag("RenderType", false);
string renderQueueTag = TargetRenderer.sharedMaterial.GetTag("Queue", false);
string ignoreProjectorTag = TargetRenderer.sharedMaterial.GetTag("IgnoreProjector", false);
int renderQueue = TargetRenderer.sharedMaterial.renderQueue;
bool transparentQueue = TargetRenderer.sharedMaterial.IsKeywordEnabled("_ALPHATEST_ON");
// Swap in loading shader
TargetRenderer.sharedMaterial.shader = Shader.Find(AVATAR_SHADER_LOADER);
TargetRenderer.sharedMaterial.SetColor(AVATAR_SHADER_COLOR, Color.white);
while (OvrAvatarSDKManager.Instance.GetTextureCopyManager().GetTextureCount() > 0)
{
float distance = (LOADING_ANIMATION_AMPLITUDE * Mathf.Sin(Time.timeSinceLevelLoad / LOADING_ANIMATION_PERIOD) +
LOADING_ANIMATION_AMPLITUDE) * (LOADING_ANIMATION_CURVE_SCALE) + LOADING_ANIMATION_DIMMER_MIN;
TargetRenderer.sharedMaterial.SetFloat(AVATAR_SHADER_LOADING_DIMMER, distance);
yield return null;
}
// Swap back main shader
TargetRenderer.sharedMaterial.SetFloat(AVATAR_SHADER_LOADING_DIMMER, 1f);
TargetRenderer.sharedMaterial.shader = CombinedShader;
// Restore shader properties
TargetRenderer.sharedMaterial.SetInt("_SrcBlend", srcBlend);
TargetRenderer.sharedMaterial.SetInt("_DstBlend", dstBlend);
TargetRenderer.sharedMaterial.SetOverrideTag("LightMode", lightModeTag);
TargetRenderer.sharedMaterial.SetOverrideTag("RenderType", renderTypeTag);
TargetRenderer.sharedMaterial.SetOverrideTag("Queue", renderQueueTag);
TargetRenderer.sharedMaterial.SetOverrideTag("IgnoreProjector", ignoreProjectorTag);
if (transparentQueue)
{
TargetRenderer.sharedMaterial.EnableKeyword("_ALPHATEST_ON");
TargetRenderer.sharedMaterial.EnableKeyword("_ALPHABLEND_ON");
TargetRenderer.sharedMaterial.EnableKeyword("_ALPHAPREMULTIPLY_ON");
}
else
{
TargetRenderer.sharedMaterial.DisableKeyword("_ALPHATEST_ON");
TargetRenderer.sharedMaterial.DisableKeyword("_ALPHABLEND_ON");
TargetRenderer.sharedMaterial.DisableKeyword("_ALPHAPREMULTIPLY_ON");
}
TargetRenderer.sharedMaterial.renderQueue = renderQueue;
ApplyMaterialPropertyBlock();
if (callBack != null)
{
callBack();
}
}
}