|
@@ -1,4 +1,5 @@
|
|
|
using System;
|
|
|
+using System.Collections.Generic;
|
|
|
using System.IO;
|
|
|
using ICSharpCode.SharpZipLib.Zip;
|
|
|
using TriLibCore.General;
|
|
@@ -29,6 +30,96 @@ namespace TriLibCore
|
|
|
if (zipLoadCustomContextData.Stream != null) {
|
|
|
zipLoadCustomContextData.Stream.Close();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ AssetUnloader au = assetLoaderContext.RootGameObject.GetComponent<AssetUnloader>();
|
|
|
+ if (assetLoaderContext.LoadedMaterials.Count == 1)
|
|
|
+ {
|
|
|
+ foreach (var tName in AssetLoaderZip.memoryStreamList.Keys)
|
|
|
+ {
|
|
|
+ au.Allocations.Add(AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ if (tName.Contains("albedo")|| tName.Contains("Base"))
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ foreach (var m in assetLoaderContext.LoadedMaterials)
|
|
|
+ {
|
|
|
+ m.Value.SetTexture("_MainTex", AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ m.Value.SetColor("_Color", Color.white);
|
|
|
+ m.Value.DisableKeyword("_EMISSION");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ else if (tName.Contains("AO"))
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ foreach (var m in assetLoaderContext.LoadedMaterials)
|
|
|
+ {
|
|
|
+ m.Value.SetTexture("AO", AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ else if (tName.Contains("metallic"))
|
|
|
+ {
|
|
|
+ foreach (var m in assetLoaderContext.LoadedMaterials)
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if (tName.Contains("normal"))
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ foreach (var m in assetLoaderContext.LoadedMaterials)
|
|
|
+ {
|
|
|
+ m.Value.SetTexture("_BumpMap", AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ else if (tName.Contains("roughness"))
|
|
|
+ {
|
|
|
+
|
|
|
+ try
|
|
|
+ {
|
|
|
+ foreach (var m in assetLoaderContext.LoadedMaterials)
|
|
|
+ {
|
|
|
+ m.Value.SetTexture("roughness", AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ foreach (var tName in AssetLoaderZip.memoryStreamList.Keys)
|
|
|
+ {
|
|
|
+ au.Allocations.Add(AssetLoaderZip.memoryStreamList[tName]);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
if (zipLoadCustomContextData.OnMaterialsLoad != null)
|
|
|
{
|
|
|
zipLoadCustomContextData.OnMaterialsLoad(assetLoaderContext);
|
|
@@ -247,6 +338,8 @@ namespace TriLibCore
|
|
|
return assetLoaderContext;
|
|
|
}
|
|
|
|
|
|
+ public static Dictionary<string, Texture2D> memoryStreamList;
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -268,8 +361,30 @@ namespace TriLibCore
|
|
|
{
|
|
|
stream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read);
|
|
|
}
|
|
|
+ Debug.Log("checkingFileExtension====>" + path);
|
|
|
var validExtensions = Readers.Extensions;
|
|
|
zipFile = new ZipFile(stream);
|
|
|
+
|
|
|
+ List<string> picList = new List<string>();
|
|
|
+ picList.Add("png");
|
|
|
+ picList.Add("jpg");
|
|
|
+ picList.Add("jpeg");
|
|
|
+ memoryStreamList = new Dictionary<string,Texture2D>();
|
|
|
+ foreach (ZipEntry zipEntry in zipFile)
|
|
|
+ {
|
|
|
+ if (!zipEntry.IsFile)
|
|
|
+ {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ var checkingFileExtension = FileUtils.GetFileExtension(zipEntry.Name, false);
|
|
|
+ if (picList.Contains(checkingFileExtension))
|
|
|
+ {
|
|
|
+ Debug.Log("zipEntry.Name===>" + zipEntry.Name);
|
|
|
+ Stream memoryStreamPic = ZipFileEntryToStream(out fileExtension, zipEntry, zipFile);
|
|
|
+ memoryStreamList.Add(zipEntry.Name,StreamToTexture(memoryStreamPic));
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
Stream memoryStream = null;
|
|
|
modelZipEntry = null;
|
|
|
foreach (ZipEntry zipEntry in zipFile)
|
|
@@ -297,8 +412,39 @@ namespace TriLibCore
|
|
|
onError?.Invoke(new ContextualizedError<string>(exception, "Error"));
|
|
|
}
|
|
|
return memoryStream;
|
|
|
- }
|
|
|
+ }
|
|
|
+ public static Texture2D StreamToTexture(Stream stream)
|
|
|
+ {
|
|
|
+
|
|
|
+ Texture2D texture = new Texture2D(2, 2);
|
|
|
|
|
|
+
|
|
|
+ byte[] bytes = ReadStreamToBytes(stream);
|
|
|
+ if (bytes != null)
|
|
|
+ {
|
|
|
+
|
|
|
+ if (texture.LoadImage(bytes))
|
|
|
+ {
|
|
|
+ return texture;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static byte[] ReadStreamToBytes(Stream stream)
|
|
|
+ {
|
|
|
+ byte[] buffer = new byte[4096];
|
|
|
+ using (MemoryStream memoryStream = new MemoryStream())
|
|
|
+ {
|
|
|
+ int bytesRead;
|
|
|
+ while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0)
|
|
|
+ {
|
|
|
+ memoryStream.Write(buffer, 0, bytesRead);
|
|
|
+ }
|
|
|
+ return memoryStream.ToArray();
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|