From 9a78b3cd136a9b7d4da9afb135ba43aa69769017 Mon Sep 17 00:00:00 2001 From: Carmine Date: Sat, 24 Feb 2018 21:17:26 +0100 Subject: [PATCH] Added BuildInstances, AddGrassBatch and RemoveGrassBatch, removed lodoffset in grass batches extents calculation --- .../GameFiles/FileTypes/YmapFile.cs | 67 ++++++++++++++++++- 1 file changed, 64 insertions(+), 3 deletions(-) diff --git a/CodeWalker.Core/GameFiles/FileTypes/YmapFile.cs b/CodeWalker.Core/GameFiles/FileTypes/YmapFile.cs index b7ebf45..1d032b0 100644 --- a/CodeWalker.Core/GameFiles/FileTypes/YmapFile.cs +++ b/CodeWalker.Core/GameFiles/FileTypes/YmapFile.cs @@ -29,6 +29,7 @@ namespace CodeWalker.GameFiles public Unk_975711773[] CBoxOccluders { get; set; } public Unk_2741784237[] COccludeModels { get; set; } + public rage__fwGrassInstanceListDef[] GrassInstanceList { get; set; } public string[] Strings { get; set; } @@ -571,6 +572,26 @@ namespace CodeWalker.GameFiles } } + public void BuildInstances() + { + if (GrassInstanceBatches == null) + { + GrassInstanceList = null; + return; + } + + if (PropInstanceBatches == null) + { } + + int count = GrassInstanceBatches.Length; + GrassInstanceList = new rage__fwGrassInstanceListDef[count]; + for (int i = 0; i < count; i++) + { + GrassInstanceList[i] = GrassInstanceBatches[i].Batch; + } + + } + public byte[] Save() { //direct save to a raw, compressed ymap file (openIV-compatible format) @@ -909,6 +930,46 @@ namespace CodeWalker.GameFiles } + public void AddGrassBatch(YmapGrassInstanceBatch newbatch) + { + List batches = new List(); + if (GrassInstanceBatches != null) batches.AddRange(GrassInstanceBatches); + newbatch.Ymap = this; + batches.Add(newbatch); + GrassInstanceBatches = batches.ToArray(); + + HasChanged = true; + } + + public bool RemoveGrassBatch(YmapGrassInstanceBatch batch) + { + if (batch == null) return false; + + List batches = new List(); + + if (GrassInstanceBatches != null) + { + for (int i = 0; i < GrassInstanceBatches.Length; i++) + { + var gb = GrassInstanceBatches[i]; + if (gb != batch) + { + batches.Add(gb); + } + } + if (batches.Count == GrassInstanceBatches.Length) + { + return false; //nothing removed... wasn't present? + } + } + + + GrassInstanceBatches = batches.ToArray(); + + HasChanged = true; + + return true; + } @@ -1049,14 +1110,14 @@ namespace CodeWalker.GameFiles if (GrassInstanceBatches != null) { - var lodoffset = Vector3.Zero;// new Vector3(0, 0, 100); //IDK WHY -neos7 //dexy: i guess it's not completely necessary... + //var lodoffset = Vector3.Zero;// new Vector3(0, 0, 100); //IDK WHY -neos7 //dexy: i guess it's not completely necessary... //blame neos foreach (var batch in GrassInstanceBatches) //thanks to Neos7 { emin = Vector3.Min(emin, batch.AABBMin); emax = Vector3.Max(emax, batch.AABBMax); - smin = Vector3.Min(smin, (batch.AABBMin - batch.Batch.lodDist) + lodoffset); - smax = Vector3.Min(smax, (batch.AABBMax + batch.Batch.lodDist) - lodoffset); + smin = Vector3.Min(smin, (batch.AABBMin - batch.Batch.lodDist)); // + lodoffset + smax = Vector3.Min(smax, (batch.AABBMax + batch.Batch.lodDist)); // - lodoffset } }