diff options
author | Treeki <treeki@gmail.com> | 2011-02-11 01:10:44 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-02-11 01:10:44 +0100 |
commit | 0d017deb24e7f6f8e049616a71691f1401c50b6a (patch) | |
tree | 8b107dcb3d51163831ffcce96010367f3779585e /TestApp | |
parent | 58dead7b909861732011325f5d4844eae21a9bc2 (diff) | |
download | nw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.tar.gz nw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.zip |
tons of stuff: more work on shapes, unfinished OBJ exporter, ...
Diffstat (limited to 'TestApp')
-rw-r--r-- | TestApp/Main.cs | 12 | ||||
-rwxr-xr-x | TestApp/bin/Debug/NW4RTools.dll | bin | 31744 -> 36352 bytes | |||
-rw-r--r-- | TestApp/bin/Debug/NW4RTools.dll.mdb | bin | 11043 -> 12427 bytes | |||
-rwxr-xr-x | TestApp/bin/Debug/TestApp.exe | bin | 3584 -> 4096 bytes | |||
-rw-r--r-- | TestApp/bin/Debug/TestApp.exe.mdb | bin | 416 -> 447 bytes |
5 files changed, 9 insertions, 3 deletions
diff --git a/TestApp/Main.cs b/TestApp/Main.cs index e6fa82f..f608262 100644 --- a/TestApp/Main.cs +++ b/TestApp/Main.cs @@ -1,13 +1,19 @@ using System; +using System.IO; using NW4RTools; namespace TestApp { class MainClass { public static void Main(string[] args) { - //byte[] file = System.IO.File.ReadAllBytes("/home/me/Games/Newer/miscStuff/CS_W1/g3d/model.brres"); - //byte[] file = System.IO.File.ReadAllBytes("/mnt/h/ISOs/NSMBWii/ais0.1.3/model.brres"); - byte[] file = System.IO.File.ReadAllBytes("/home/me/Games/Newer/miscStuff/bgB_4502/g3d/bgB_4502.brres"); + //byte[] file = File.ReadAllBytes("/home/me/Games/Newer/miscStuff/CS_W1/g3d/model.brres"); + //byte[] file = File.ReadAllBytes("/mnt/h/ISOs/NSMBWii/ais0.1.3/model.brres"); + byte[] file = File.ReadAllBytes("/home/me/Games/Newer/miscStuff/bgB_4502/g3d/bgB_4502.brres"); ResFile rf = BrresReader.LoadFile(file); + + var objFile = File.Open("/home/me/Games/Newer/miscStuff/bgB_4502/g3d/bgB_4502.obj", FileMode.OpenOrCreate); + var sw = new StreamWriter(objFile); + ObjWriter.WriteModel(sw, rf, "bgB_4502"); + objFile.Close(); } } } diff --git a/TestApp/bin/Debug/NW4RTools.dll b/TestApp/bin/Debug/NW4RTools.dll Binary files differindex cb655f9..1db8d9a 100755 --- a/TestApp/bin/Debug/NW4RTools.dll +++ b/TestApp/bin/Debug/NW4RTools.dll diff --git a/TestApp/bin/Debug/NW4RTools.dll.mdb b/TestApp/bin/Debug/NW4RTools.dll.mdb Binary files differindex 06fe2a2..847598a 100644 --- a/TestApp/bin/Debug/NW4RTools.dll.mdb +++ b/TestApp/bin/Debug/NW4RTools.dll.mdb diff --git a/TestApp/bin/Debug/TestApp.exe b/TestApp/bin/Debug/TestApp.exe Binary files differindex 37f5a57..2fd506e 100755 --- a/TestApp/bin/Debug/TestApp.exe +++ b/TestApp/bin/Debug/TestApp.exe diff --git a/TestApp/bin/Debug/TestApp.exe.mdb b/TestApp/bin/Debug/TestApp.exe.mdb Binary files differindex ed77ca1..c12c7f1 100644 --- a/TestApp/bin/Debug/TestApp.exe.mdb +++ b/TestApp/bin/Debug/TestApp.exe.mdb |