diff options
Diffstat (limited to '')
-rw-r--r-- | TestApp/Main.cs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/TestApp/Main.cs b/TestApp/Main.cs index 8e144f9..e99e797 100644 --- a/TestApp/Main.cs +++ b/TestApp/Main.cs @@ -27,7 +27,7 @@ namespace TestApp { File.WriteAllBytes(mdlPath + "SMGoldwood.brres", BrresWriter.WriteFile(rf));*/ - + /* for (int i = 0; i < 10; i++) { string filename = "MMFullWorld"; string resmdlname = "WorldBase"; @@ -38,6 +38,8 @@ namespace TestApp { var m = rf.GetModelGroup()["WorldBase"]; var bc = m.Bytecode["DrawOpa"]; + var blah = bc.Instructions[2] as NW4RTools.Models.ByteCode.DrawShapeInstruction; + blah.MaterialID = (ushort)m.Materials.IndexOfKey("Material__76"); // trash most entries var newList = new List<NW4RTools.Models.ByteCode.Instruction>(); for (int j = 0; j < i; j++) { @@ -48,11 +50,12 @@ namespace TestApp { File.WriteAllBytes(mdlPath + "base" + i.ToString() + ".brres", BrresWriter.WriteFile(rf)); } + //*/ - /*ResFile rf2 = BrresReader.LoadFile(File.ReadAllBytes(mdlPath + filename + ".brres")); + ResFile rf2 = BrresReader.LoadFile(File.ReadAllBytes(mdlPath + "base2.brres")); using (var gw = new RenderWindow()) { - gw.Title = filename; - gw.SetModel(rf2, resmdlname); + gw.Title = "whatever"; + gw.SetModel(rf2, "WorldBase"); gw.Run(1, 1); } //*/ |