mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-26 12:55:18 -05:00
Add 'Export unitypackage' which exports UniVRM, UniJSON, UniGLTF and UniHumanoid
This commit is contained in:
8
Assets/VRM/UniVRM/DevOnly/Editor.meta
Normal file
8
Assets/VRM/UniVRM/DevOnly/Editor.meta
Normal file
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 06ab989f8674a4fadb6cc64b1becb4c4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
187
Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs
Normal file
187
Assets/VRM/UniVRM/DevOnly/Editor/VRMExportUnityPackage.cs
Normal file
@@ -0,0 +1,187 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using UnityEditor;
|
||||
#if UNITY_2018_1_OR_NEWER
|
||||
using UnityEditor.Build.Reporting;
|
||||
#endif
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRM.DevOnly.PackageExporter
|
||||
{
|
||||
public static class StringExtensionsForUnity
|
||||
{
|
||||
public static bool EndsWithAndMeta(this string str, string terminator)
|
||||
{
|
||||
if (str.EndsWith(terminator))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return str.EndsWith(terminator + ".meta");
|
||||
}
|
||||
}
|
||||
|
||||
public static class VRMExportUnityPackage
|
||||
{
|
||||
const string DATE_FORMAT = "yyyyMMdd";
|
||||
|
||||
static string GetDesktop()
|
||||
{
|
||||
return Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "/VRM";
|
||||
}
|
||||
|
||||
static string System(string workingDir, string fileName, string args)
|
||||
{
|
||||
// Start the child process.
|
||||
using(var p = new System.Diagnostics.Process()) {
|
||||
// Redirect the output stream of the child process.
|
||||
p.StartInfo.UseShellExecute = false;
|
||||
p.StartInfo.RedirectStandardOutput = true;
|
||||
p.StartInfo.RedirectStandardError = true;
|
||||
p.StartInfo.FileName = fileName;
|
||||
p.StartInfo.Arguments = args;
|
||||
p.StartInfo.WorkingDirectory = workingDir;
|
||||
|
||||
p.Start();
|
||||
|
||||
// Do not wait for the child process to exit before
|
||||
// reading to the end of its redirected stream.
|
||||
// p.WaitForExit();
|
||||
// Read the output stream first and then wait.
|
||||
string output = p.StandardOutput.ReadToEnd();
|
||||
string err = p.StandardError.ReadToEnd();
|
||||
p.WaitForExit();
|
||||
|
||||
if (p.ExitCode != 0 || string.IsNullOrEmpty(output)) {
|
||||
throw new Exception(err);
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
}
|
||||
|
||||
static string GetGitHash(string path)
|
||||
{
|
||||
return System(path, "git", "rev-parse HEAD").Trim();
|
||||
}
|
||||
|
||||
static string MakePackagePathName(string folder, string prefix)
|
||||
{
|
||||
//var date = DateTime.Today.ToString(DATE_FORMAT);
|
||||
|
||||
var path = string.Format("{0}/{1}-{2}_{3}.unitypackage",
|
||||
folder,
|
||||
prefix,
|
||||
VRMVersion.VERSION,
|
||||
GetGitHash(Application.dataPath + "/VRM").Substring(0, 4)
|
||||
).Replace("\\", "/");
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
static readonly string[] ignoredFilesForGrob = new string[] {
|
||||
".git",
|
||||
".circleci",
|
||||
"DevOnly",
|
||||
"doc",
|
||||
"Profiling",
|
||||
};
|
||||
|
||||
static IEnumerable<string> GrobFiles(string path)
|
||||
{
|
||||
var fileName = Path.GetFileName(path);
|
||||
|
||||
// Domain specific filter logic
|
||||
if (ignoredFilesForGrob.Any(f => fileName.EndsWithAndMeta(f))) {
|
||||
yield break;
|
||||
}
|
||||
|
||||
if (Directory.Exists(path))
|
||||
{
|
||||
foreach (var child in Directory.GetFileSystemEntries(path))
|
||||
{
|
||||
foreach (var x in GrobFiles(child))
|
||||
{
|
||||
yield return x;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (Path.GetExtension(path).ToLower() == ".meta")
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
|
||||
yield return path.Replace("\\", "/");
|
||||
}
|
||||
}
|
||||
|
||||
[MenuItem(VRMVersion.VRM_VERSION + "/Export unitypackage")]
|
||||
public static void CreateUnityPackageWithBuild()
|
||||
{
|
||||
var folder = GetDesktop();
|
||||
if (!Directory.Exists(folder))
|
||||
{
|
||||
Directory.CreateDirectory(folder);
|
||||
}
|
||||
|
||||
CreateUnityPackages(folder, true);
|
||||
}
|
||||
|
||||
public static void CreateUnityPackage()
|
||||
{
|
||||
CreateUnityPackages(Path.GetFullPath(Path.Combine(Application.dataPath, "..")), false);
|
||||
}
|
||||
|
||||
static bool EndsWith(string path, params string[] exts)
|
||||
{
|
||||
foreach(var ext in exts)
|
||||
{
|
||||
if (path.EndsWith(ext))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if(path.EndsWith(ext + ".meta"))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public static void CreateUnityPackages(string outputDir, bool build)
|
||||
{
|
||||
// UniVRM and sub packages
|
||||
{
|
||||
var basePath = "Assets/VRM";
|
||||
var packages = new Dictionary<string, string[]> () {
|
||||
{"UniVRM", new string[] {""}}, // All
|
||||
{"UniJSON", new string[] {"UniJSON"}},
|
||||
{"UniHumanoid", new string[] {"UniHumanoid"}},
|
||||
{"UniGLTF", new string[] {"UniGLTF", "UniHumanoid", "UniJSON", "UniUnlit", "DepthFirstScheduler"}},
|
||||
};
|
||||
|
||||
var fileNames = GrobFiles(basePath).ToArray();
|
||||
foreach(var packagePair in packages) {
|
||||
CreateUnityPackage(outputDir, packagePair.Key, packagePair.Value, basePath, fileNames);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void CreateUnityPackage(string outputDir, string name, string[] containsPath, string basePath, string[] fileNames) {
|
||||
var containsPathWithBase = containsPath.Select(c => string.Format("{0}/{1}", basePath, c)).ToArray();
|
||||
var targetFileNames = fileNames
|
||||
.Where(fileName => containsPathWithBase.Any(c => fileName.StartsWith(c)))
|
||||
.ToArray();
|
||||
|
||||
Debug.LogFormat("Package '{0}' will include {1} files...", name, targetFileNames.Count());
|
||||
Debug.LogFormat("{0}", string.Join("", targetFileNames.Select((x, i) => string.Format("[{0:##0}] {1}\n", i, x)).ToArray()));
|
||||
|
||||
var path = MakePackagePathName(outputDir, name);
|
||||
AssetDatabase.ExportPackage(targetFileNames, path, ExportPackageOptions.Default);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3d2c627c6adaf4962bea0144a492bad2
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user