mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Move map mode icon creation to image utilities
This commit is contained in:
parent
cf77e9c1a0
commit
8eb5ba8ee8
@ -1,16 +1,13 @@
|
|||||||
using NewHorizons.Components.ShipLog;
|
using NewHorizons.Components.ShipLog;
|
||||||
using NewHorizons.External;
|
using NewHorizons.External;
|
||||||
using NewHorizons.External.Modules;
|
using NewHorizons.External.Modules;
|
||||||
using NewHorizons.External.Modules.VariableSize;
|
|
||||||
using NewHorizons.Handlers;
|
using NewHorizons.Handlers;
|
||||||
using NewHorizons.Utility;
|
using NewHorizons.Utility;
|
||||||
using NewHorizons.Utility.Files;
|
using NewHorizons.Utility.Files;
|
||||||
using NewHorizons.Utility.OuterWilds;
|
using NewHorizons.Utility.OuterWilds;
|
||||||
using NewHorizons.Utility.OWML;
|
using NewHorizons.Utility.OWML;
|
||||||
using OWML.ModHelper;
|
using OWML.ModHelper;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
@ -170,49 +167,6 @@ namespace NewHorizons.Builder.ShipLog
|
|||||||
return newGameObject;
|
return newGameObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Texture2D GetCachedOutlineOrCreate(NewHorizonsBody body, Texture2D original, string originalPath)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(originalPath))
|
|
||||||
{
|
|
||||||
Texture2D defaultTexture = null;
|
|
||||||
if (body.Config.Star != null)
|
|
||||||
{
|
|
||||||
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModeStarOutline.png");
|
|
||||||
}
|
|
||||||
else if (body.Config.Atmosphere != null)
|
|
||||||
{
|
|
||||||
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModNoAtmoOutline.png");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModePlanetOutline.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
return defaultTexture;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var cachedPath = Path.Combine(body.Mod.ModHelper.Manifest.ModFolderPath, $"TextureCache_{Main.Instance.CurrentStarSystem}", originalPath);
|
|
||||||
var outlineTexture = ImageUtilities.GetTexture(body.Mod, cachedPath);
|
|
||||||
|
|
||||||
if (outlineTexture == null)
|
|
||||||
{
|
|
||||||
NHLogger.LogVerbose($"Caching outline to {cachedPath}");
|
|
||||||
|
|
||||||
var newTexture = ImageUtilities.MakeOutline(original, Color.white, 10);
|
|
||||||
|
|
||||||
Directory.CreateDirectory(Path.GetDirectoryName(cachedPath));
|
|
||||||
File.WriteAllBytes(cachedPath, newTexture.EncodeToPNG());
|
|
||||||
|
|
||||||
return newTexture;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return outlineTexture;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static ShipLogAstroObject AddShipLogAstroObject(GameObject gameObject, NewHorizonsBody body, Material greyScaleMaterial, int layer)
|
private static ShipLogAstroObject AddShipLogAstroObject(GameObject gameObject, NewHorizonsBody body, Material greyScaleMaterial, int layer)
|
||||||
{
|
{
|
||||||
if (body.Object == null)
|
if (body.Object == null)
|
||||||
@ -239,10 +193,10 @@ namespace NewHorizons.Builder.ShipLog
|
|||||||
string outlinePath = body.Config.ShipLog?.mapMode?.outlineSprite;
|
string outlinePath = body.Config.ShipLog?.mapMode?.outlineSprite;
|
||||||
|
|
||||||
if (imagePath != null) image = ImageUtilities.GetTexture(body.Mod, imagePath);
|
if (imagePath != null) image = ImageUtilities.GetTexture(body.Mod, imagePath);
|
||||||
if (image == null) image = AutoGenerateMapModePicture(body);
|
if (image == null) image = ImageUtilities.AutoGenerateMapModePicture(body);
|
||||||
|
|
||||||
if (outlinePath != null) outline = ImageUtilities.GetTexture(body.Mod, outlinePath);
|
if (outlinePath != null) outline = ImageUtilities.GetTexture(body.Mod, outlinePath);
|
||||||
if (outline == null) outline = GetCachedOutlineOrCreate(body, image, imagePath);
|
if (outline == null) outline = ImageUtilities.GetCachedOutlineOrCreate(body, image, imagePath);
|
||||||
|
|
||||||
astroObject._imageObj = CreateImage(gameObject, image, body.Config.name + " Revealed", layer);
|
astroObject._imageObj = CreateImage(gameObject, image, body.Config.name + " Revealed", layer);
|
||||||
astroObject._outlineObj = CreateImage(gameObject, outline, body.Config.name + " Outline", layer);
|
astroObject._outlineObj = CreateImage(gameObject, outline, body.Config.name + " Outline", layer);
|
||||||
@ -290,10 +244,10 @@ namespace NewHorizons.Builder.ShipLog
|
|||||||
string outlinePath = info.outlineSprite;
|
string outlinePath = info.outlineSprite;
|
||||||
|
|
||||||
if (imagePath != null) image = ImageUtilities.GetTexture(body.Mod, imagePath);
|
if (imagePath != null) image = ImageUtilities.GetTexture(body.Mod, imagePath);
|
||||||
else image = AutoGenerateMapModePicture(body);
|
else image = ImageUtilities.AutoGenerateMapModePicture(body);
|
||||||
|
|
||||||
if (outlinePath != null) outline = ImageUtilities.GetTexture(body.Mod, outlinePath);
|
if (outlinePath != null) outline = ImageUtilities.GetTexture(body.Mod, outlinePath);
|
||||||
else outline = ImageUtilities.MakeOutline(image, Color.white, 10);
|
else outline = ImageUtilities.GetCachedOutlineOrCreate(body, image, imagePath);
|
||||||
|
|
||||||
Image revealedImage = CreateImage(detailGameObject, image, "Detail Revealed", parent.gameObject.layer).GetComponent<Image>();
|
Image revealedImage = CreateImage(detailGameObject, image, "Detail Revealed", parent.gameObject.layer).GetComponent<Image>();
|
||||||
Image outlineImage = CreateImage(detailGameObject, outline, "Detail Outline", parent.gameObject.layer).GetComponent<Image>();
|
Image outlineImage = CreateImage(detailGameObject, outline, "Detail Outline", parent.gameObject.layer).GetComponent<Image>();
|
||||||
@ -649,77 +603,6 @@ namespace NewHorizons.Builder.ShipLog
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private static Texture2D AutoGenerateMapModePicture(NewHorizonsBody body)
|
|
||||||
{
|
|
||||||
Texture2D texture;
|
|
||||||
|
|
||||||
if (body.Config.Star != null)
|
|
||||||
{
|
|
||||||
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModeStar.png");
|
|
||||||
}
|
|
||||||
else if (body.Config.Atmosphere != null)
|
|
||||||
{
|
|
||||||
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModNoAtmo.png");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModePlanet.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
var color = GetDominantPlanetColor(body);
|
|
||||||
var darkColor = new Color(color.r / 3f, color.g / 3f, color.b / 3f);
|
|
||||||
|
|
||||||
texture = ImageUtilities.LerpGreyscaleImage(texture, color, darkColor);
|
|
||||||
|
|
||||||
return texture;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Color GetDominantPlanetColor(NewHorizonsBody body)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var starColor = body.Config?.Star?.tint;
|
|
||||||
if (starColor != null) return starColor.ToColor();
|
|
||||||
|
|
||||||
var atmoColor = body.Config.Atmosphere?.atmosphereTint;
|
|
||||||
if (body.Config.Atmosphere?.clouds != null && atmoColor != null) return atmoColor.ToColor();
|
|
||||||
|
|
||||||
if (body.Config?.HeightMap?.textureMap != null)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var texture = ImageUtilities.GetTexture(body.Mod, body.Config.HeightMap.textureMap);
|
|
||||||
var landColor = ImageUtilities.GetAverageColor(texture);
|
|
||||||
if (landColor != null) return landColor;
|
|
||||||
}
|
|
||||||
catch (Exception) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
var waterColor = body.Config.Water?.tint;
|
|
||||||
if (waterColor != null) return waterColor.ToColor();
|
|
||||||
|
|
||||||
var lavaColor = body.Config.Lava?.tint;
|
|
||||||
if (lavaColor != null) return lavaColor.ToColor();
|
|
||||||
|
|
||||||
var sandColor = body.Config.Sand?.tint;
|
|
||||||
if (sandColor != null) return sandColor.ToColor();
|
|
||||||
|
|
||||||
switch (body.Config?.Props?.singularities?.FirstOrDefault()?.type)
|
|
||||||
{
|
|
||||||
case SingularityModule.SingularityType.BlackHole:
|
|
||||||
return Color.black;
|
|
||||||
case SingularityModule.SingularityType.WhiteHole:
|
|
||||||
return Color.white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception)
|
|
||||||
{
|
|
||||||
NHLogger.LogWarning($"Something went wrong trying to pick the colour for {body.Config.name} but I'm too lazy to fix it.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return Color.white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#region Replacement
|
#region Replacement
|
||||||
private static List<(NewHorizonsBody, ModBehaviour, MapModeInfo)> _mapModIconsToUpdate = new();
|
private static List<(NewHorizonsBody, ModBehaviour, MapModeInfo)> _mapModIconsToUpdate = new();
|
||||||
public static void TryReplaceExistingMapModeIcon(NewHorizonsBody body, ModBehaviour mod, MapModeInfo info)
|
public static void TryReplaceExistingMapModeIcon(NewHorizonsBody body, ModBehaviour mod, MapModeInfo info)
|
||||||
|
|||||||
@ -1,9 +1,12 @@
|
|||||||
using NewHorizons.Builder.Props;
|
using NewHorizons.Builder.Props;
|
||||||
|
using NewHorizons.External;
|
||||||
|
using NewHorizons.External.Modules.VariableSize;
|
||||||
using NewHorizons.Utility.OWML;
|
using NewHorizons.Utility.OWML;
|
||||||
using OWML.Common;
|
using OWML.Common;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace NewHorizons.Utility.Files
|
namespace NewHorizons.Utility.Files
|
||||||
@ -91,8 +94,8 @@ namespace NewHorizons.Utility.Files
|
|||||||
DeleteTexture(key, texture);
|
DeleteTexture(key, texture);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void DeleteTexture(string key, Texture2D texture)
|
public static void DeleteTexture(string key, Texture2D texture)
|
||||||
{
|
{
|
||||||
if (_textureCache.ContainsKey(key))
|
if (_textureCache.ContainsKey(key))
|
||||||
{
|
{
|
||||||
if (_textureCache[key] == texture)
|
if (_textureCache[key] == texture)
|
||||||
@ -247,7 +250,7 @@ namespace NewHorizons.Utility.Files
|
|||||||
return texture;
|
return texture;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Texture2D MakeOutline(Texture2D texture, Color color, int thickness)
|
private static Texture2D MakeOutline(Texture2D texture, Color color, int thickness)
|
||||||
{
|
{
|
||||||
var key = $"{texture.name} > outline {color} {thickness}";
|
var key = $"{texture.name} > outline {color} {thickness}";
|
||||||
if (_textureCache.TryGetValue(key, out var existingTexture)) return (Texture2D)existingTexture;
|
if (_textureCache.TryGetValue(key, out var existingTexture)) return (Texture2D)existingTexture;
|
||||||
@ -368,7 +371,7 @@ namespace NewHorizons.Utility.Files
|
|||||||
var pixels = image.GetPixels();
|
var pixels = image.GetPixels();
|
||||||
for (int i = 0; i < pixels.Length; i++)
|
for (int i = 0; i < pixels.Length; i++)
|
||||||
{
|
{
|
||||||
var amount = (i % image.width) / (float) image.width;
|
var amount = (i % image.width) / (float)image.width;
|
||||||
var lightTint = LerpColor(lightTintStart, lightTintEnd, amount);
|
var lightTint = LerpColor(lightTintStart, lightTintEnd, amount);
|
||||||
var darkTint = LerpColor(darkTintStart, darkTintEnd, amount);
|
var darkTint = LerpColor(darkTintStart, darkTintEnd, amount);
|
||||||
|
|
||||||
@ -489,5 +492,119 @@ namespace NewHorizons.Utility.Files
|
|||||||
sprite.name = texture.name;
|
sprite.name = texture.name;
|
||||||
return sprite;
|
return sprite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Texture2D GetCachedOutlineOrCreate(NewHorizonsBody body, Texture2D original, string originalPath)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(originalPath))
|
||||||
|
{
|
||||||
|
Texture2D defaultTexture = null;
|
||||||
|
if (body.Config.Star != null)
|
||||||
|
{
|
||||||
|
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModeStarOutline.png");
|
||||||
|
}
|
||||||
|
else if (body.Config.Atmosphere != null)
|
||||||
|
{
|
||||||
|
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModNoAtmoOutline.png");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
defaultTexture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModePlanetOutline.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
return defaultTexture;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var cachedPath = Path.Combine(body.Mod.ModHelper.Manifest.ModFolderPath, $"TextureCache_{Main.Instance.CurrentStarSystem}", originalPath);
|
||||||
|
var outlineTexture = ImageUtilities.GetTexture(body.Mod, cachedPath);
|
||||||
|
|
||||||
|
if (outlineTexture == null)
|
||||||
|
{
|
||||||
|
NHLogger.LogVerbose($"Caching outline to {cachedPath}");
|
||||||
|
|
||||||
|
var newTexture = ImageUtilities.MakeOutline(original, Color.white, 10);
|
||||||
|
|
||||||
|
Directory.CreateDirectory(Path.GetDirectoryName(cachedPath));
|
||||||
|
File.WriteAllBytes(cachedPath, newTexture.EncodeToPNG());
|
||||||
|
|
||||||
|
return newTexture;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return outlineTexture;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Texture2D AutoGenerateMapModePicture(NewHorizonsBody body)
|
||||||
|
{
|
||||||
|
Texture2D texture;
|
||||||
|
|
||||||
|
if (body.Config.Star != null)
|
||||||
|
{
|
||||||
|
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModeStar.png");
|
||||||
|
}
|
||||||
|
else if (body.Config.Atmosphere != null)
|
||||||
|
{
|
||||||
|
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModNoAtmo.png");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
texture = ImageUtilities.GetTexture(Main.Instance, "Assets/DefaultMapModePlanet.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
var color = GetDominantPlanetColor(body);
|
||||||
|
var darkColor = new Color(color.r / 3f, color.g / 3f, color.b / 3f);
|
||||||
|
|
||||||
|
texture = ImageUtilities.LerpGreyscaleImage(texture, color, darkColor);
|
||||||
|
|
||||||
|
return texture;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Color GetDominantPlanetColor(NewHorizonsBody body)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var starColor = body.Config?.Star?.tint;
|
||||||
|
if (starColor != null) return starColor.ToColor();
|
||||||
|
|
||||||
|
var atmoColor = body.Config.Atmosphere?.atmosphereTint;
|
||||||
|
if (body.Config.Atmosphere?.clouds != null && atmoColor != null) return atmoColor.ToColor();
|
||||||
|
|
||||||
|
if (body.Config?.HeightMap?.textureMap != null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var texture = ImageUtilities.GetTexture(body.Mod, body.Config.HeightMap.textureMap);
|
||||||
|
var landColor = ImageUtilities.GetAverageColor(texture);
|
||||||
|
if (landColor != null) return landColor;
|
||||||
|
}
|
||||||
|
catch (Exception) { }
|
||||||
|
}
|
||||||
|
|
||||||
|
var waterColor = body.Config.Water?.tint;
|
||||||
|
if (waterColor != null) return waterColor.ToColor();
|
||||||
|
|
||||||
|
var lavaColor = body.Config.Lava?.tint;
|
||||||
|
if (lavaColor != null) return lavaColor.ToColor();
|
||||||
|
|
||||||
|
var sandColor = body.Config.Sand?.tint;
|
||||||
|
if (sandColor != null) return sandColor.ToColor();
|
||||||
|
|
||||||
|
switch (body.Config?.Props?.singularities?.FirstOrDefault()?.type)
|
||||||
|
{
|
||||||
|
case SingularityModule.SingularityType.BlackHole:
|
||||||
|
return Color.black;
|
||||||
|
case SingularityModule.SingularityType.WhiteHole:
|
||||||
|
return Color.white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
NHLogger.LogWarning($"Something went wrong trying to pick the colour for {body.Config.name} but I'm too lazy to fix it.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return Color.white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user