Add webp and json generation options to the map renderer (#10367)
This commit is contained in:
100
Content.MapRenderer/CommandLineArguments.cs
Normal file
100
Content.MapRenderer/CommandLineArguments.cs
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
using Content.MapRenderer.Extensions;
|
||||||
|
|
||||||
|
namespace Content.MapRenderer;
|
||||||
|
|
||||||
|
public sealed class CommandLineArguments
|
||||||
|
{
|
||||||
|
public List<string> Maps { get; set; } = new();
|
||||||
|
public OutputFormat Format { get; set; } = OutputFormat.png;
|
||||||
|
public bool ExportViewerJson { get; set; } = false;
|
||||||
|
|
||||||
|
public string OutputPath { get; set; } = DirectoryExtensions.MapImages().FullName;
|
||||||
|
|
||||||
|
public static bool TryParse(IReadOnlyList<string> args, [NotNullWhen(true)] out CommandLineArguments? parsed)
|
||||||
|
{
|
||||||
|
parsed = new CommandLineArguments();
|
||||||
|
|
||||||
|
if (args.Count == 0)
|
||||||
|
{
|
||||||
|
PrintHelp();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
using var enumerator = args.GetEnumerator();
|
||||||
|
|
||||||
|
while (enumerator.MoveNext())
|
||||||
|
{
|
||||||
|
var argument = enumerator.Current;
|
||||||
|
switch (argument)
|
||||||
|
{
|
||||||
|
case "--format":
|
||||||
|
enumerator.MoveNext();
|
||||||
|
|
||||||
|
if (!Enum.TryParse<OutputFormat>(enumerator.Current, out var format))
|
||||||
|
{
|
||||||
|
Console.WriteLine("Invalid format specified for option: {0}", argument);
|
||||||
|
parsed = null;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
parsed.Format = format;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "--viewer":
|
||||||
|
parsed.ExportViewerJson = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "-o":
|
||||||
|
case "--output":
|
||||||
|
enumerator.MoveNext();
|
||||||
|
parsed.OutputPath = enumerator.Current;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "-h":
|
||||||
|
case "--help":
|
||||||
|
PrintHelp();
|
||||||
|
return false;
|
||||||
|
|
||||||
|
default:
|
||||||
|
parsed.Maps.Add(argument);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void PrintHelp()
|
||||||
|
{
|
||||||
|
Console.WriteLine(@"Content.MapRenderer <options> [map names]
|
||||||
|
Options:
|
||||||
|
--format <png|webp>
|
||||||
|
Specifies the format the map images will be exported as.
|
||||||
|
Defaults to: png
|
||||||
|
--viewer
|
||||||
|
Causes the map renderer to create the map.json files required for use with the map viewer.
|
||||||
|
Also puts the maps in the required directory structure.
|
||||||
|
-o / --output <output path>
|
||||||
|
Changes the path the rendered maps will get saved to.
|
||||||
|
Defaults to Resources/MapImages
|
||||||
|
-h / --help
|
||||||
|
Displays this help text");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CommandLineArgumentException : Exception
|
||||||
|
{
|
||||||
|
public CommandLineArgumentException(string? message) : base(message)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||||
|
public enum OutputFormat
|
||||||
|
{
|
||||||
|
png,
|
||||||
|
webp
|
||||||
|
}
|
||||||
150
Content.MapRenderer/MapViewerData.cs
Normal file
150
Content.MapRenderer/MapViewerData.cs
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Robust.Shared.Maths;
|
||||||
|
using SixLabors.ImageSharp;
|
||||||
|
using SixLabors.ImageSharp.PixelFormats;
|
||||||
|
|
||||||
|
namespace Content.MapRenderer;
|
||||||
|
|
||||||
|
public sealed class MapViewerData
|
||||||
|
{
|
||||||
|
public string Id { get; set; } = string.Empty;
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
public List<GridLayer> Grids { get; set; } = new();
|
||||||
|
public string? Attributions { get; set; }
|
||||||
|
public List<LayerGroup> ParallaxLayers { get; set; } = new();
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class GridLayer
|
||||||
|
{
|
||||||
|
public string GridId { get; set; } = string.Empty;
|
||||||
|
public Position Offset { get; set; }
|
||||||
|
public bool Tiled { get; set; } = false;
|
||||||
|
public string Url { get; set; }
|
||||||
|
public Extent Extent { get; set; }
|
||||||
|
|
||||||
|
public GridLayer(RenderedGridImage<Rgba32> gridImage, string url)
|
||||||
|
{
|
||||||
|
//Get the internal _uid as string
|
||||||
|
if (gridImage.GridUid.HasValue)
|
||||||
|
GridId = gridImage.GridUid.Value.GetHashCode().ToString();
|
||||||
|
|
||||||
|
Offset = new Position(gridImage.Offset);
|
||||||
|
Extent = new Extent(gridImage.Image.Width, gridImage.Image.Height);
|
||||||
|
Url = url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class LayerGroup
|
||||||
|
{
|
||||||
|
public Position Scale { get; set; } = Position.One();
|
||||||
|
public Position Offset { get; set; } = Position.Zero();
|
||||||
|
public bool Static { get; set; } = false;
|
||||||
|
public float? MinScale { get; set; }
|
||||||
|
public GroupSource Source { get; set; } = new();
|
||||||
|
public List<Layer> Layers { get; set; } = new();
|
||||||
|
|
||||||
|
public static LayerGroup DefaultParallax()
|
||||||
|
{
|
||||||
|
return new LayerGroup()
|
||||||
|
{
|
||||||
|
Scale = new Position(0.1f, 0.1f),
|
||||||
|
Source = new GroupSource()
|
||||||
|
{
|
||||||
|
Url = "https://i.imgur.com/3YO8KRd.png",
|
||||||
|
Extent = new Extent(6000, 4000)
|
||||||
|
},
|
||||||
|
Layers = new List<Layer>()
|
||||||
|
{
|
||||||
|
new Layer()
|
||||||
|
{
|
||||||
|
Url = "https://i.imgur.com/IannmmK.png"
|
||||||
|
},
|
||||||
|
new Layer()
|
||||||
|
{
|
||||||
|
Url = "https://i.imgur.com/T3W6JsE.png",
|
||||||
|
Composition = "lighter",
|
||||||
|
ParallaxScale = new Position(0.2f, 0.2f)
|
||||||
|
},
|
||||||
|
new Layer()
|
||||||
|
{
|
||||||
|
Url = "https://i.imgur.com/T3W6JsE.png",
|
||||||
|
Composition = "lighter",
|
||||||
|
ParallaxScale = new Position(0.3f, 0.3f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class GroupSource
|
||||||
|
{
|
||||||
|
public string Url { get; set; } = string.Empty;
|
||||||
|
public Extent Extent { get; set; } = new();
|
||||||
|
}
|
||||||
|
|
||||||
|
public sealed class Layer
|
||||||
|
{
|
||||||
|
public string Url { get; set; } = string.Empty;
|
||||||
|
public string Composition { get; set; } = "source-over";
|
||||||
|
public Position ParallaxScale { get; set; } = new(0.1f, 0.1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
public readonly struct Extent
|
||||||
|
{
|
||||||
|
public readonly float X1;
|
||||||
|
public readonly float Y1;
|
||||||
|
public readonly float X2;
|
||||||
|
public readonly float Y2;
|
||||||
|
|
||||||
|
public Extent()
|
||||||
|
{
|
||||||
|
X1 = 0;
|
||||||
|
Y1 = 0;
|
||||||
|
X2 = 0;
|
||||||
|
Y2 = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Extent(float x2, float y2)
|
||||||
|
{
|
||||||
|
X1 = 0;
|
||||||
|
Y1 = 0;
|
||||||
|
X2 = x2;
|
||||||
|
Y2 = y2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Extent(float x1, float y1, float x2, float y2)
|
||||||
|
{
|
||||||
|
X1 = x1;
|
||||||
|
Y1 = y1;
|
||||||
|
X2 = x2;
|
||||||
|
Y2 = y2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public readonly struct Position
|
||||||
|
{
|
||||||
|
public readonly float X;
|
||||||
|
public readonly float Y;
|
||||||
|
|
||||||
|
public Position(float x, float y)
|
||||||
|
{
|
||||||
|
X = x;
|
||||||
|
Y = y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Position(Vector2 vector2)
|
||||||
|
{
|
||||||
|
X = vector2.X;
|
||||||
|
Y = vector2.Y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Position Zero()
|
||||||
|
{
|
||||||
|
return new Position(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Position One()
|
||||||
|
{
|
||||||
|
return new Position(0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -19,7 +19,7 @@ namespace Content.MapRenderer.Painters
|
|||||||
{
|
{
|
||||||
public sealed class MapPainter
|
public sealed class MapPainter
|
||||||
{
|
{
|
||||||
public async IAsyncEnumerable<Image> Paint(string map)
|
public async IAsyncEnumerable<RenderedGridImage<Rgba32>> Paint(string map)
|
||||||
{
|
{
|
||||||
var stopwatch = new Stopwatch();
|
var stopwatch = new Stopwatch();
|
||||||
stopwatch.Start();
|
stopwatch.Start();
|
||||||
@@ -80,7 +80,7 @@ namespace Content.MapRenderer.Painters
|
|||||||
// Skip empty grids
|
// Skip empty grids
|
||||||
if (grid.LocalAABB.IsEmpty())
|
if (grid.LocalAABB.IsEmpty())
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Warning: Grid {grid.Index} was empty. Skipping image rendering.");
|
Console.WriteLine($"Warning: Grid {grid.GridEntityId} was empty. Skipping image rendering.");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -107,7 +107,11 @@ namespace Content.MapRenderer.Painters
|
|||||||
gridCanvas.Mutate(e => e.Flip(FlipMode.Vertical));
|
gridCanvas.Mutate(e => e.Flip(FlipMode.Vertical));
|
||||||
});
|
});
|
||||||
|
|
||||||
yield return gridCanvas;
|
var renderedImage = new RenderedGridImage<Rgba32>(gridCanvas);
|
||||||
|
renderedImage.GridUid = grid.GridEntityId;
|
||||||
|
renderedImage.Offset = grid.WorldPosition;
|
||||||
|
|
||||||
|
yield return renderedImage;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We don't care if it fails as we have already saved the images.
|
// We don't care if it fails as we have already saved the images.
|
||||||
|
|||||||
@@ -3,10 +3,13 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Content.MapRenderer.Extensions;
|
using Content.MapRenderer.Extensions;
|
||||||
using Content.MapRenderer.Painters;
|
using Content.MapRenderer.Painters;
|
||||||
|
using Newtonsoft.Json;
|
||||||
using SixLabors.ImageSharp;
|
using SixLabors.ImageSharp;
|
||||||
|
using SixLabors.ImageSharp.Formats.Webp;
|
||||||
|
|
||||||
namespace Content.MapRenderer
|
namespace Content.MapRenderer
|
||||||
{
|
{
|
||||||
@@ -24,82 +27,80 @@ namespace Content.MapRenderer
|
|||||||
Console.WriteLine("Didn't specify any maps to paint! Provide map names (as map prototype names).");
|
Console.WriteLine("Didn't specify any maps to paint! Provide map names (as map prototype names).");
|
||||||
}
|
}
|
||||||
|
|
||||||
// var created = Environment.GetEnvironmentVariable(MapsAddedEnvKey);
|
if (!CommandLineArguments.TryParse(args, out var arguments))
|
||||||
// var modified = Environment.GetEnvironmentVariable(MapsModifiedEnvKey);
|
return;
|
||||||
//
|
|
||||||
// var yamlStream = new YamlStream();
|
|
||||||
//
|
|
||||||
// if (created != null)
|
|
||||||
// {
|
|
||||||
// yamlStream.Load(new StringReader(created));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// if (modified != null)
|
|
||||||
// {
|
|
||||||
// yamlStream.Load(new StringReader(modified));
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// var files = new YamlSequenceNode();
|
|
||||||
//
|
|
||||||
// foreach (var doc in yamlStream.Documents)
|
|
||||||
// {
|
|
||||||
// var filesModified = (YamlSequenceNode) doc.RootNode;
|
|
||||||
//
|
|
||||||
// foreach (var node in filesModified)
|
|
||||||
// {
|
|
||||||
// files.Add(node);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// var maps = new List<string>();
|
await Run(arguments);
|
||||||
|
|
||||||
// foreach (var node in files)
|
|
||||||
// {
|
|
||||||
// var fileName = node.AsString();
|
|
||||||
//
|
|
||||||
// if (!fileName.StartsWith("Resources/Maps/") ||
|
|
||||||
// !fileName.EndsWith("yml"))
|
|
||||||
// {
|
|
||||||
// continue;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// maps.Add(fileName);
|
|
||||||
// }
|
|
||||||
|
|
||||||
await Run(new List<string>(args));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task Run(List<string> maps)
|
private static async Task Run(CommandLineArguments arguments)
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Creating images for {maps.Count} maps");
|
|
||||||
|
Console.WriteLine($"Creating images for {arguments.Maps.Count} maps");
|
||||||
|
|
||||||
var mapNames = new List<string>();
|
var mapNames = new List<string>();
|
||||||
foreach (var map in maps)
|
foreach (var map in arguments.Maps)
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Painting map {map}");
|
Console.WriteLine($"Painting map {map}");
|
||||||
|
|
||||||
int i = 0;
|
var mapViewerData = new MapViewerData()
|
||||||
await foreach (var grid in MapPainter.Paint(map))
|
|
||||||
{
|
{
|
||||||
var directory = DirectoryExtensions.MapImages().FullName;
|
Id = map,
|
||||||
|
Name = Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(map)
|
||||||
|
};
|
||||||
|
|
||||||
|
mapViewerData.ParallaxLayers.Add(LayerGroup.DefaultParallax());
|
||||||
|
var directory = Path.Combine(arguments.OutputPath, map);
|
||||||
|
Directory.CreateDirectory(directory);
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
await foreach (var renderedGrid in MapPainter.Paint(map))
|
||||||
|
{
|
||||||
|
var grid = renderedGrid.Image;
|
||||||
Directory.CreateDirectory(directory);
|
Directory.CreateDirectory(directory);
|
||||||
|
|
||||||
var fileName = Path.GetFileNameWithoutExtension(map);
|
var fileName = Path.GetFileNameWithoutExtension(map);
|
||||||
var savePath = $"{directory}{Path.DirectorySeparatorChar}{fileName}-{i}.png";
|
var savePath = $"{directory}{Path.DirectorySeparatorChar}{fileName}-{i}.{arguments.Format.ToString()}";
|
||||||
|
|
||||||
Console.WriteLine($"Writing grid of size {grid.Width}x{grid.Height} to {savePath}");
|
Console.WriteLine($"Writing grid of size {grid.Width}x{grid.Height} to {savePath}");
|
||||||
|
|
||||||
|
switch (arguments.Format)
|
||||||
|
{
|
||||||
|
case OutputFormat.webp:
|
||||||
|
var encoder = new WebpEncoder
|
||||||
|
{
|
||||||
|
Method = WebpEncodingMethod.BestQuality,
|
||||||
|
FileFormat = WebpFileFormatType.Lossless,
|
||||||
|
TransparentColorMode = WebpTransparentColorMode.Preserve
|
||||||
|
};
|
||||||
|
|
||||||
|
await grid.SaveAsync(savePath, encoder);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
case OutputFormat.png:
|
||||||
await grid.SaveAsPngAsync(savePath);
|
await grid.SaveAsPngAsync(savePath);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
grid.Dispose();
|
grid.Dispose();
|
||||||
|
|
||||||
|
mapViewerData.Grids.Add(new GridLayer(renderedGrid, Path.Combine(map, Path.GetFileName(savePath))));
|
||||||
|
|
||||||
mapNames.Add(fileName);
|
mapNames.Add(fileName);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (arguments.ExportViewerJson)
|
||||||
|
{
|
||||||
|
var json = JsonConvert.SerializeObject(mapViewerData);
|
||||||
|
await File.WriteAllTextAsync(Path.Combine(arguments.OutputPath, map, "map.json"), json);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var mapNamesString = $"[{string.Join(',', mapNames.Select(s => $"\"{s}\""))}]";
|
var mapNamesString = $"[{string.Join(',', mapNames.Select(s => $"\"{s}\""))}]";
|
||||||
Console.WriteLine($@"::set-output name=map_names::{mapNamesString}");
|
Console.WriteLine($@"::set-output name=map_names::{mapNamesString}");
|
||||||
Console.WriteLine($"Created {maps.Count} map images.");
|
Console.WriteLine($"Created {arguments.Maps.Count} map images.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
Content.MapRenderer/RenderedGridImage.cs
Normal file
18
Content.MapRenderer/RenderedGridImage.cs
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
using Robust.Shared.GameObjects;
|
||||||
|
using Robust.Shared.Maths;
|
||||||
|
using SixLabors.ImageSharp;
|
||||||
|
using SixLabors.ImageSharp.PixelFormats;
|
||||||
|
|
||||||
|
namespace Content.MapRenderer;
|
||||||
|
|
||||||
|
public sealed class RenderedGridImage <T> where T : unmanaged, IPixel<T>
|
||||||
|
{
|
||||||
|
public Image<T> Image;
|
||||||
|
public Vector2 Offset { get; set; } = Vector2.Zero;
|
||||||
|
public EntityUid? GridUid { get; set; }
|
||||||
|
|
||||||
|
public RenderedGridImage(Image<T> image)
|
||||||
|
{
|
||||||
|
Image = image;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user