mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
585 lines
24 KiB
C#
585 lines
24 KiB
C#
/******************************************************************************
|
|
* Spine Runtimes License Agreement
|
|
* Last updated May 1, 2019. Replaces all prior versions.
|
|
*
|
|
* Copyright (c) 2013-2019, Esoteric Software LLC
|
|
*
|
|
* Integration of the Spine Runtimes into software or otherwise creating
|
|
* derivative works of the Spine Runtimes is permitted under the terms and
|
|
* conditions of Section 2 of the Spine Editor License Agreement:
|
|
* http://esotericsoftware.com/spine-editor-license
|
|
*
|
|
* Otherwise, it is permitted to integrate the Spine Runtimes into software
|
|
* or otherwise create derivative works of the Spine Runtimes (collectively,
|
|
* "Products"), provided that each user of the Products must obtain their own
|
|
* Spine Editor license and redistribution of the Products in any form must
|
|
* include this license and copyright notice.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY ESOTERIC SOFTWARE LLC "AS IS" AND ANY EXPRESS
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
|
|
* NO EVENT SHALL ESOTERIC SOFTWARE LLC BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, BUSINESS
|
|
* INTERRUPTION, OR LOSS OF USE, DATA, OR PROFITS) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*****************************************************************************/
|
|
|
|
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
using System.Collections;
|
|
|
|
namespace Spine.Unity.AttachmentTools {
|
|
|
|
public static class AtlasUtilities {
|
|
internal const TextureFormat SpineTextureFormat = TextureFormat.RGBA32;
|
|
internal const float DefaultMipmapBias = -0.5f;
|
|
internal const bool UseMipMaps = false;
|
|
internal const float DefaultScale = 0.01f;
|
|
|
|
const int NonrenderingRegion = -1;
|
|
|
|
public static AtlasRegion ToAtlasRegion (this Texture2D t, Material materialPropertySource, float scale = DefaultScale) {
|
|
return t.ToAtlasRegion(materialPropertySource.shader, scale, materialPropertySource);
|
|
}
|
|
|
|
public static AtlasRegion ToAtlasRegion (this Texture2D t, Shader shader, float scale = DefaultScale, Material materialPropertySource = null) {
|
|
var material = new Material(shader);
|
|
if (materialPropertySource != null) {
|
|
material.CopyPropertiesFromMaterial(materialPropertySource);
|
|
material.shaderKeywords = materialPropertySource.shaderKeywords;
|
|
}
|
|
|
|
material.mainTexture = t;
|
|
var page = material.ToSpineAtlasPage();
|
|
|
|
float width = t.width;
|
|
float height = t.height;
|
|
|
|
var region = new AtlasRegion();
|
|
region.name = t.name;
|
|
region.index = -1;
|
|
region.rotate = false;
|
|
|
|
// World space units
|
|
Vector2 boundsMin = Vector2.zero, boundsMax = new Vector2(width, height) * scale;
|
|
|
|
// Texture space/pixel units
|
|
region.width = (int)width;
|
|
region.originalWidth = (int)width;
|
|
region.height = (int)height;
|
|
region.originalHeight = (int)height;
|
|
region.offsetX = width * (0.5f - InverseLerp(boundsMin.x, boundsMax.x, 0));
|
|
region.offsetY = height * (0.5f - InverseLerp(boundsMin.y, boundsMax.y, 0));
|
|
|
|
// Use the full area of the texture.
|
|
region.u = 0;
|
|
region.v = 1;
|
|
region.u2 = 1;
|
|
region.v2 = 0;
|
|
region.x = 0;
|
|
region.y = 0;
|
|
|
|
region.page = page;
|
|
|
|
return region;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Spine.AtlasRegion that uses a premultiplied alpha duplicate of the Sprite's texture data.</summary>
|
|
public static AtlasRegion ToAtlasRegionPMAClone (this Texture2D t, Material materialPropertySource, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps) {
|
|
return t.ToAtlasRegionPMAClone(materialPropertySource.shader, textureFormat, mipmaps, materialPropertySource);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Spine.AtlasRegion that uses a premultiplied alpha duplicate of the Sprite's texture data.</summary>
|
|
public static AtlasRegion ToAtlasRegionPMAClone (this Texture2D t, Shader shader, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps, Material materialPropertySource = null) {
|
|
var material = new Material(shader);
|
|
if (materialPropertySource != null) {
|
|
material.CopyPropertiesFromMaterial(materialPropertySource);
|
|
material.shaderKeywords = materialPropertySource.shaderKeywords;
|
|
}
|
|
var newTexture = t.GetClone(textureFormat, mipmaps);
|
|
newTexture.ApplyPMA(true);
|
|
|
|
newTexture.name = t.name + "-pma-";
|
|
material.name = t.name + shader.name;
|
|
|
|
material.mainTexture = newTexture;
|
|
var page = material.ToSpineAtlasPage();
|
|
|
|
var region = newTexture.ToAtlasRegion(shader);
|
|
region.page = page;
|
|
|
|
return region;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Spine.AtlasPage from a UnityEngine.Material. If the material has a preassigned texture, the page width and height will be set.</summary>
|
|
public static AtlasPage ToSpineAtlasPage (this Material m) {
|
|
var newPage = new AtlasPage {
|
|
rendererObject = m,
|
|
name = m.name
|
|
};
|
|
|
|
var t = m.mainTexture;
|
|
if (t != null) {
|
|
newPage.width = t.width;
|
|
newPage.height = t.height;
|
|
}
|
|
|
|
return newPage;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Spine.AtlasRegion from a UnityEngine.Sprite.</summary>
|
|
public static AtlasRegion ToAtlasRegion (this Sprite s, AtlasPage page) {
|
|
if (page == null) throw new System.ArgumentNullException("page", "page cannot be null. AtlasPage determines which texture region belongs and how it should be rendered. You can use material.ToSpineAtlasPage() to get a shareable AtlasPage from a Material, or use the sprite.ToAtlasRegion(material) overload.");
|
|
var region = s.ToAtlasRegion();
|
|
region.page = page;
|
|
return region;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Spine.AtlasRegion from a UnityEngine.Sprite. This creates a new AtlasPage object for every AtlasRegion you create. You can centralize Material control by creating a shared atlas page using Material.ToSpineAtlasPage and using the sprite.ToAtlasRegion(AtlasPage) overload.</summary>
|
|
public static AtlasRegion ToAtlasRegion (this Sprite s, Material material) {
|
|
var region = s.ToAtlasRegion();
|
|
region.page = material.ToSpineAtlasPage();
|
|
return region;
|
|
}
|
|
|
|
public static AtlasRegion ToAtlasRegionPMAClone (this Sprite s, Material materialPropertySource, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps) {
|
|
return s.ToAtlasRegionPMAClone(materialPropertySource.shader, textureFormat, mipmaps, materialPropertySource);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Spine.AtlasRegion that uses a premultiplied alpha duplicate of the Sprite's texture data.</summary>
|
|
public static AtlasRegion ToAtlasRegionPMAClone (this Sprite s, Shader shader, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps, Material materialPropertySource = null) {
|
|
var material = new Material(shader);
|
|
if (materialPropertySource != null) {
|
|
material.CopyPropertiesFromMaterial(materialPropertySource);
|
|
material.shaderKeywords = materialPropertySource.shaderKeywords;
|
|
}
|
|
|
|
var tex = s.ToTexture(textureFormat, mipmaps);
|
|
tex.ApplyPMA(true);
|
|
|
|
tex.name = s.name + "-pma-";
|
|
material.name = tex.name + shader.name;
|
|
|
|
material.mainTexture = tex;
|
|
var page = material.ToSpineAtlasPage();
|
|
|
|
var region = s.ToAtlasRegion(true);
|
|
region.page = page;
|
|
|
|
return region;
|
|
}
|
|
|
|
internal static AtlasRegion ToAtlasRegion (this Sprite s, bool isolatedTexture = false) {
|
|
var region = new AtlasRegion();
|
|
region.name = s.name;
|
|
region.index = -1;
|
|
region.rotate = s.packed && s.packingRotation != SpritePackingRotation.None;
|
|
|
|
// World space units
|
|
Bounds bounds = s.bounds;
|
|
Vector2 boundsMin = bounds.min, boundsMax = bounds.max;
|
|
|
|
// Texture space/pixel units
|
|
Rect spineRect = s.rect.SpineUnityFlipRect(s.texture.height);
|
|
region.width = (int)spineRect.width;
|
|
region.originalWidth = (int)spineRect.width;
|
|
region.height = (int)spineRect.height;
|
|
region.originalHeight = (int)spineRect.height;
|
|
region.offsetX = spineRect.width * (0.5f - InverseLerp(boundsMin.x, boundsMax.x, 0));
|
|
region.offsetY = spineRect.height * (0.5f - InverseLerp(boundsMin.y, boundsMax.y, 0));
|
|
|
|
if (isolatedTexture) {
|
|
region.u = 0;
|
|
region.v = 1;
|
|
region.u2 = 1;
|
|
region.v2 = 0;
|
|
region.x = 0;
|
|
region.y = 0;
|
|
} else {
|
|
Texture2D tex = s.texture;
|
|
Rect uvRect = TextureRectToUVRect(s.textureRect, tex.width, tex.height);
|
|
region.u = uvRect.xMin;
|
|
region.v = uvRect.yMax;
|
|
region.u2 = uvRect.xMax;
|
|
region.v2 = uvRect.yMin;
|
|
region.x = (int)spineRect.x;
|
|
region.y = (int)spineRect.y;
|
|
}
|
|
|
|
return region;
|
|
}
|
|
|
|
#region Runtime Repacking
|
|
/// <summary>
|
|
/// Fills the outputAttachments list with new attachment objects based on the attachments in sourceAttachments, but mapped to a new single texture using the same material.</summary>
|
|
/// <param name="sourceAttachments">The list of attachments to be repacked.</param>
|
|
/// <param name = "outputAttachments">The List(Attachment) to populate with the newly created Attachment objects.</param>
|
|
///
|
|
/// <param name="materialPropertySource">May be null. If no Material property source is provided, no special </param>
|
|
public static void GetRepackedAttachments (List<Attachment> sourceAttachments, List<Attachment> outputAttachments, Material materialPropertySource, out Material outputMaterial, out Texture2D outputTexture, int maxAtlasSize = 1024, int padding = 2, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps, string newAssetName = "Repacked Attachments", bool clearCache = false, bool useOriginalNonrenderables = true) {
|
|
if (sourceAttachments == null) throw new System.ArgumentNullException("sourceAttachments");
|
|
if (outputAttachments == null) throw new System.ArgumentNullException("outputAttachments");
|
|
|
|
// Use these to detect and use shared regions.
|
|
var existingRegions = new Dictionary<AtlasRegion, int>();
|
|
var regionIndexes = new List<int>();
|
|
var texturesToPack = new List<Texture2D>();
|
|
var originalRegions = new List<AtlasRegion>();
|
|
|
|
outputAttachments.Clear();
|
|
outputAttachments.AddRange(sourceAttachments);
|
|
|
|
int newRegionIndex = 0;
|
|
for (int i = 0, n = sourceAttachments.Count; i < n; i++) {
|
|
var originalAttachment = sourceAttachments[i];
|
|
|
|
if (IsRenderable(originalAttachment)) {
|
|
var newAttachment = originalAttachment.GetCopy(true);
|
|
var region = newAttachment.GetRegion();
|
|
int existingIndex;
|
|
if (existingRegions.TryGetValue(region, out existingIndex)) {
|
|
regionIndexes.Add(existingIndex); // Store the region index for the eventual new attachment.
|
|
} else {
|
|
originalRegions.Add(region);
|
|
texturesToPack.Add(region.ToTexture()); // Add the texture to the PackTextures argument
|
|
existingRegions.Add(region, newRegionIndex); // Add the region to the dictionary of known regions
|
|
regionIndexes.Add(newRegionIndex); // Store the region index for the eventual new attachment.
|
|
newRegionIndex++;
|
|
}
|
|
|
|
outputAttachments[i] = newAttachment;
|
|
} else {
|
|
outputAttachments[i] = useOriginalNonrenderables ? originalAttachment : originalAttachment.GetCopy(true);
|
|
regionIndexes.Add(NonrenderingRegion); // Output attachments pairs with regionIndexes list 1:1. Pad with a sentinel if the attachment doesn't have a region.
|
|
}
|
|
}
|
|
|
|
// Fill a new texture with the collected attachment textures.
|
|
var newTexture = new Texture2D(maxAtlasSize, maxAtlasSize, textureFormat, mipmaps);
|
|
newTexture.mipMapBias = AtlasUtilities.DefaultMipmapBias;
|
|
newTexture.name = newAssetName;
|
|
// Copy settings
|
|
if (texturesToPack.Count > 0) {
|
|
newTexture.anisoLevel = texturesToPack[0].anisoLevel;
|
|
}
|
|
var rects = newTexture.PackTextures(texturesToPack.ToArray(), padding, maxAtlasSize);
|
|
|
|
// Rehydrate the repacked textures as a Material, Spine atlas and Spine.AtlasAttachments
|
|
Shader shader = materialPropertySource == null ? Shader.Find("Spine/Skeleton") : materialPropertySource.shader;
|
|
var newMaterial = new Material(shader);
|
|
if (materialPropertySource != null) {
|
|
newMaterial.CopyPropertiesFromMaterial(materialPropertySource);
|
|
newMaterial.shaderKeywords = materialPropertySource.shaderKeywords;
|
|
}
|
|
|
|
newMaterial.name = newAssetName;
|
|
newMaterial.mainTexture = newTexture;
|
|
var page = newMaterial.ToSpineAtlasPage();
|
|
page.name = newAssetName;
|
|
|
|
var repackedRegions = new List<AtlasRegion>();
|
|
for (int i = 0, n = originalRegions.Count; i < n; i++) {
|
|
var oldRegion = originalRegions[i];
|
|
var newRegion = UVRectToAtlasRegion(rects[i], oldRegion.name, page, oldRegion.offsetX, oldRegion.offsetY, oldRegion.rotate);
|
|
repackedRegions.Add(newRegion);
|
|
}
|
|
|
|
// Map the cloned attachments to the repacked atlas.
|
|
for (int i = 0, n = outputAttachments.Count; i < n; i++) {
|
|
var a = outputAttachments[i];
|
|
if (IsRenderable(a))
|
|
a.SetRegion(repackedRegions[regionIndexes[i]]);
|
|
}
|
|
|
|
// Clean up.
|
|
if (clearCache)
|
|
AtlasUtilities.ClearCache();
|
|
|
|
outputTexture = newTexture;
|
|
outputMaterial = newMaterial;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates and populates a duplicate skin with cloned attachments that are backed by a new packed texture atlas comprised of all the regions from the original skin.</summary>
|
|
/// <remarks>GetRepackedSkin is an expensive operation, preferably call it at level load time. No Spine.Atlas object is created so there is no way to find AtlasRegions except through the Attachments using them.</remarks>
|
|
public static Skin GetRepackedSkin (this Skin o, string newName, Material materialPropertySource, out Material outputMaterial, out Texture2D outputTexture, int maxAtlasSize = 1024, int padding = 2, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps, bool useOriginalNonrenderables = true) {
|
|
return GetRepackedSkin(o, newName, materialPropertySource.shader, out outputMaterial, out outputTexture, maxAtlasSize, padding, textureFormat, mipmaps, materialPropertySource, useOriginalNonrenderables);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates and populates a duplicate skin with cloned attachments that are backed by a new packed texture atlas comprised of all the regions from the original skin.</summary>
|
|
/// <remarks>GetRepackedSkin is an expensive operation, preferably call it at level load time. No Spine.Atlas object is created so there is no way to find AtlasRegions except through the Attachments using them.</remarks>
|
|
public static Skin GetRepackedSkin (this Skin o, string newName, Shader shader, out Material outputMaterial, out Texture2D outputTexture, int maxAtlasSize = 1024, int padding = 2, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps, Material materialPropertySource = null, bool clearCache = false, bool useOriginalNonrenderables = true) {
|
|
if (o == null) throw new System.NullReferenceException("Skin was null");
|
|
var skinAttachments = o.Attachments;
|
|
var newSkin = new Skin(newName);
|
|
|
|
// Use these to detect and use shared regions.
|
|
var existingRegions = new Dictionary<AtlasRegion, int>();
|
|
var regionIndexes = new List<int>();
|
|
|
|
// Collect all textures from the attachments of the original skin.
|
|
var repackedAttachments = new List<Attachment>();
|
|
var texturesToPack = new List<Texture2D>();
|
|
var originalRegions = new List<AtlasRegion>();
|
|
int newRegionIndex = 0;
|
|
|
|
foreach (var skinEntry in skinAttachments) {
|
|
var originalKey = skinEntry.Key;
|
|
var originalAttachment = skinEntry.Value;
|
|
|
|
Attachment newAttachment;
|
|
if (IsRenderable(originalAttachment)) {
|
|
newAttachment = originalAttachment.GetCopy(true);
|
|
var region = newAttachment.GetRegion();
|
|
int existingIndex;
|
|
if (existingRegions.TryGetValue(region, out existingIndex)) {
|
|
regionIndexes.Add(existingIndex); // Store the region index for the eventual new attachment.
|
|
} else {
|
|
originalRegions.Add(region);
|
|
texturesToPack.Add(region.ToTexture()); // Add the texture to the PackTextures argument
|
|
existingRegions.Add(region, newRegionIndex); // Add the region to the dictionary of known regions
|
|
regionIndexes.Add(newRegionIndex); // Store the region index for the eventual new attachment.
|
|
newRegionIndex++;
|
|
}
|
|
|
|
repackedAttachments.Add(newAttachment);
|
|
newSkin.SetAttachment(originalKey.SlotIndex, originalKey.Name, newAttachment);
|
|
} else {
|
|
newSkin.SetAttachment(originalKey.SlotIndex, originalKey.Name, useOriginalNonrenderables ? originalAttachment : originalAttachment.GetCopy(true));
|
|
}
|
|
}
|
|
|
|
// Fill a new texture with the collected attachment textures.
|
|
var newTexture = new Texture2D(maxAtlasSize, maxAtlasSize, textureFormat, mipmaps);
|
|
newTexture.mipMapBias = AtlasUtilities.DefaultMipmapBias;
|
|
newTexture.anisoLevel = texturesToPack[0].anisoLevel;
|
|
newTexture.name = newName;
|
|
var rects = newTexture.PackTextures(texturesToPack.ToArray(), padding, maxAtlasSize);
|
|
|
|
// Rehydrate the repacked textures as a Material, Spine atlas and Spine.AtlasAttachments
|
|
var newMaterial = new Material(shader);
|
|
if (materialPropertySource != null) {
|
|
newMaterial.CopyPropertiesFromMaterial(materialPropertySource);
|
|
newMaterial.shaderKeywords = materialPropertySource.shaderKeywords;
|
|
}
|
|
|
|
newMaterial.name = newName;
|
|
newMaterial.mainTexture = newTexture;
|
|
var page = newMaterial.ToSpineAtlasPage();
|
|
page.name = newName;
|
|
|
|
var repackedRegions = new List<AtlasRegion>();
|
|
for (int i = 0, n = originalRegions.Count; i < n; i++) {
|
|
var oldRegion = originalRegions[i];
|
|
var newRegion = UVRectToAtlasRegion(rects[i], oldRegion.name, page, oldRegion.offsetX, oldRegion.offsetY, oldRegion.rotate);
|
|
repackedRegions.Add(newRegion);
|
|
}
|
|
|
|
// Map the cloned attachments to the repacked atlas.
|
|
for (int i = 0, n = repackedAttachments.Count; i < n; i++) {
|
|
var a = repackedAttachments[i];
|
|
if (IsRenderable(a))
|
|
a.SetRegion(repackedRegions[regionIndexes[i]]);
|
|
}
|
|
|
|
// Clean up.
|
|
if (clearCache)
|
|
AtlasUtilities.ClearCache();
|
|
|
|
outputTexture = newTexture;
|
|
outputMaterial = newMaterial;
|
|
return newSkin;
|
|
}
|
|
|
|
public static Sprite ToSprite (this AtlasRegion ar, float pixelsPerUnit = 100) {
|
|
return Sprite.Create(ar.GetMainTexture(), ar.GetUnityRect(), new Vector2(0.5f, 0.5f), pixelsPerUnit);
|
|
}
|
|
|
|
static Dictionary<AtlasRegion, Texture2D> CachedRegionTextures = new Dictionary<AtlasRegion, Texture2D>();
|
|
static List<Texture2D> CachedRegionTexturesList = new List<Texture2D>();
|
|
|
|
public static void ClearCache () {
|
|
foreach (var t in CachedRegionTexturesList) {
|
|
UnityEngine.Object.Destroy(t);
|
|
}
|
|
CachedRegionTextures.Clear();
|
|
CachedRegionTexturesList.Clear();
|
|
}
|
|
|
|
/// <summary>Creates a new Texture2D object based on an AtlasRegion.
|
|
/// If applyImmediately is true, Texture2D.Apply is called immediately after the Texture2D is filled with data.</summary>
|
|
public static Texture2D ToTexture (this AtlasRegion ar, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps) {
|
|
Texture2D output;
|
|
|
|
CachedRegionTextures.TryGetValue(ar, out output);
|
|
if (output == null) {
|
|
Texture2D sourceTexture = ar.GetMainTexture();
|
|
Rect r = ar.GetUnityRect(sourceTexture.height);
|
|
int width = (int)r.width;
|
|
int height = (int)r.height;
|
|
output = new Texture2D(width, height, textureFormat, mipmaps) { name = ar.name };
|
|
AtlasUtilities.CopyTexture(sourceTexture, r, output);
|
|
CachedRegionTextures.Add(ar, output);
|
|
CachedRegionTexturesList.Add(output);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
static Texture2D ToTexture (this Sprite s, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps) {
|
|
var spriteTexture = s.texture;
|
|
var r = s.textureRect;
|
|
var newTexture = new Texture2D((int)r.width, (int)r.height, textureFormat, mipmaps);
|
|
AtlasUtilities.CopyTexture(spriteTexture, r, newTexture);
|
|
return newTexture;
|
|
}
|
|
|
|
static Texture2D GetClone (this Texture2D t, TextureFormat textureFormat = SpineTextureFormat, bool mipmaps = UseMipMaps) {
|
|
var newTexture = new Texture2D((int)t.width, (int)t.height, textureFormat, mipmaps);
|
|
AtlasUtilities.CopyTexture(t, new Rect(0, 0, t.width, t.height), newTexture);
|
|
return newTexture;
|
|
}
|
|
|
|
static void CopyTexture (Texture2D source, Rect sourceRect, Texture2D destination) {
|
|
if (SystemInfo.copyTextureSupport == UnityEngine.Rendering.CopyTextureSupport.None) {
|
|
// GetPixels fallback for old devices.
|
|
Color[] pixelBuffer = source.GetPixels((int)sourceRect.x, (int)sourceRect.y, (int)sourceRect.width, (int)sourceRect.height);
|
|
destination.SetPixels(pixelBuffer);
|
|
destination.Apply();
|
|
} else {
|
|
Graphics.CopyTexture(source, 0, 0, (int)sourceRect.x, (int)sourceRect.y, (int)sourceRect.width, (int)sourceRect.height, destination, 0, 0, 0, 0);
|
|
}
|
|
}
|
|
|
|
static bool IsRenderable (Attachment a) {
|
|
return a is IHasRendererObject;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a rect with flipped Y so that a Spine atlas rect gets converted to a Unity Sprite rect and vice versa.</summary>
|
|
static Rect SpineUnityFlipRect (this Rect rect, int textureHeight) {
|
|
rect.y = textureHeight - rect.y - rect.height;
|
|
return rect;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the Rect of an AtlasRegion according to Unity texture coordinates (x-right, y-up).
|
|
/// This overload relies on region.page.height being correctly set.</summary>
|
|
static Rect GetUnityRect (this AtlasRegion region) {
|
|
return region.GetSpineAtlasRect().SpineUnityFlipRect(region.page.height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the Rect of an AtlasRegion according to Unity texture coordinates (x-right, y-up).</summary>
|
|
static Rect GetUnityRect (this AtlasRegion region, int textureHeight) {
|
|
return region.GetSpineAtlasRect().SpineUnityFlipRect(textureHeight);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a Rect of the AtlasRegion according to Spine texture coordinates. (x-right, y-down)</summary>
|
|
static Rect GetSpineAtlasRect (this AtlasRegion region, bool includeRotate = true) {
|
|
if (includeRotate && region.rotate)
|
|
return new Rect(region.x, region.y, region.height, region.width);
|
|
else
|
|
return new Rect(region.x, region.y, region.width, region.height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Denormalize a uvRect into a texture-space Rect.</summary>
|
|
static Rect UVRectToTextureRect (Rect uvRect, int texWidth, int texHeight) {
|
|
uvRect.x *= texWidth;
|
|
uvRect.width *= texWidth;
|
|
uvRect.y *= texHeight;
|
|
uvRect.height *= texHeight;
|
|
return uvRect;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Normalize a texture Rect into UV coordinates.</summary>
|
|
static Rect TextureRectToUVRect (Rect textureRect, int texWidth, int texHeight) {
|
|
textureRect.x = Mathf.InverseLerp(0, texWidth, textureRect.x);
|
|
textureRect.y = Mathf.InverseLerp(0, texHeight, textureRect.y);
|
|
textureRect.width = Mathf.InverseLerp(0, texWidth, textureRect.width);
|
|
textureRect.height = Mathf.InverseLerp(0, texHeight, textureRect.height);
|
|
return textureRect;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Spine AtlasRegion according to a Unity UV Rect (x-right, y-up, uv-normalized).</summary>
|
|
static AtlasRegion UVRectToAtlasRegion (Rect uvRect, string name, AtlasPage page, float offsetX, float offsetY, bool rotate) {
|
|
var tr = UVRectToTextureRect(uvRect, page.width, page.height);
|
|
var rr = tr.SpineUnityFlipRect(page.height);
|
|
|
|
int x = (int)rr.x, y = (int)rr.y;
|
|
int w, h;
|
|
if (rotate) {
|
|
w = (int)rr.height;
|
|
h = (int)rr.width;
|
|
} else {
|
|
w = (int)rr.width;
|
|
h = (int)rr.height;
|
|
}
|
|
|
|
return new AtlasRegion {
|
|
page = page,
|
|
name = name,
|
|
|
|
u = uvRect.xMin,
|
|
u2 = uvRect.xMax,
|
|
v = uvRect.yMax,
|
|
v2 = uvRect.yMin,
|
|
|
|
index = -1,
|
|
|
|
width = w,
|
|
originalWidth = w,
|
|
height = h,
|
|
originalHeight = h,
|
|
offsetX = offsetX,
|
|
offsetY = offsetY,
|
|
x = x,
|
|
y = y,
|
|
|
|
rotate = rotate
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Convenience method for getting the main texture of the material of the page of the region.</summary>
|
|
static Texture2D GetMainTexture (this AtlasRegion region) {
|
|
var material = (region.page.rendererObject as Material);
|
|
return material.mainTexture as Texture2D;
|
|
}
|
|
|
|
static void ApplyPMA (this Texture2D texture, bool applyImmediately = true) {
|
|
var pixels = texture.GetPixels();
|
|
for (int i = 0, n = pixels.Length; i < n; i++) {
|
|
Color p = pixels[i];
|
|
float a = p.a;
|
|
p.r = p.r * a;
|
|
p.g = p.g * a;
|
|
p.b = p.b * a;
|
|
pixels[i] = p;
|
|
}
|
|
texture.SetPixels(pixels);
|
|
if (applyImmediately)
|
|
texture.Apply();
|
|
}
|
|
#endregion
|
|
|
|
static float InverseLerp (float a, float b, float value) {
|
|
return (value - a) / (b - a);
|
|
}
|
|
}
|
|
}
|