From 53f45e11dd99609907dc5fc74817cd5bc7026122 Mon Sep 17 00:00:00 2001 From: Harrison Date: Sun, 23 Feb 2020 14:48:16 -0500 Subject: [PATCH] Added pipeline information structures. --- .../Pipeline/Information/NinePatchInfo.cs | 14 ++++++++ .../Pipeline/Information/TextureMapInfo.cs | 32 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 RecrownedGTK/Pipeline/Information/NinePatchInfo.cs create mode 100644 RecrownedGTK/Pipeline/Information/TextureMapInfo.cs diff --git a/RecrownedGTK/Pipeline/Information/NinePatchInfo.cs b/RecrownedGTK/Pipeline/Information/NinePatchInfo.cs new file mode 100644 index 0000000..6922dc9 --- /dev/null +++ b/RecrownedGTK/Pipeline/Information/NinePatchInfo.cs @@ -0,0 +1,14 @@ +namespace RecrownedGTK.Pipeline.Information { + public struct NinePatchInfo { + public int leftBound, rightBound, bottomBound, topBound; + public string name; + + public NinePatchInfo(string name, int leftBound, int rightBound, int bottomBound, int topBound) { + this.leftBound = leftBound; + this.rightBound = rightBound; + this.bottomBound = bottomBound; + this.topBound = topBound; + this.name = name; + } + } +} \ No newline at end of file diff --git a/RecrownedGTK/Pipeline/Information/TextureMapInfo.cs b/RecrownedGTK/Pipeline/Information/TextureMapInfo.cs new file mode 100644 index 0000000..9258ad8 --- /dev/null +++ b/RecrownedGTK/Pipeline/Information/TextureMapInfo.cs @@ -0,0 +1,32 @@ +using RecrownedGTK.Types; + +namespace RecrownedGTK.Pipeline.Information { + public struct TextureMapInfo { + public string pathToMap; + public MapRegionInfo[] regionInfos; + public TextureMapInfo(string pathToMap, params MapRegionInfo[] regionInfos) { + this.pathToMap = pathToMap; + this.regionInfos = regionInfos; + } + + public struct MapRegionInfo { + public string name; + public NinePatchInfo ninePatchInfo; + public int x, y, width, height; + public MapRegionInfo(string name, int x, int y, int width, int height, NinePatchInfo ninePatchInfo = default(NinePatchInfo)) { + this.name = name; + this.ninePatchInfo = ninePatchInfo; + this.x = x; + this.y = y; + this.width = width; + this.height = height; + } + public void SetBounds(int x, int y, int width, int height) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + } + } + } +} \ No newline at end of file