summaryrefslogtreecommitdiff
path: root/TestApp/Main.cs
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-02-12 13:53:39 +0100
committerTreeki <treeki@gmail.com>2011-02-12 13:53:39 +0100
commitf809b701c4116fc993d449a8b36e395b55984f42 (patch)
tree5ee4417571b97dfcee4b17a8230ef16737a7382e /TestApp/Main.cs
parent3b5195f442b263807dda1675b05e0301c902c58f (diff)
downloadnw4rtools-f809b701c4116fc993d449a8b36e395b55984f42.tar.gz
nw4rtools-f809b701c4116fc993d449a8b36e395b55984f42.zip
half-assed node support
Diffstat (limited to 'TestApp/Main.cs')
-rw-r--r--TestApp/Main.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/TestApp/Main.cs b/TestApp/Main.cs
index a4d9545..1196f08 100644
--- a/TestApp/Main.cs
+++ b/TestApp/Main.cs
@@ -7,9 +7,13 @@ namespace TestApp {
public static void Main(string[] args) {
string mdlPath = "/home/me/Games/Newer/ModelRev/";
- string mdlName = "CS_W1";
+ // NOTE: CS_W7 is broken!!
+
+ string mdlName = "CS_W7";
//string mdlName = "bgB_4502";
+ string whatever = (mdlName == "CS_W2" || mdlName == "CS_W3" || mdlName == "CS_W6") ? "a" : "";
+
byte[] file = File.ReadAllBytes(mdlPath + mdlName + ".brres");
ResFile rf = BrresReader.LoadFile(file);
@@ -17,7 +21,7 @@ namespace TestApp {
var objFile = File.Open(mdlPath + mdlName + ".dae", FileMode.OpenOrCreate);
//var sw = new StreamWriter(objFile);
//ObjWriter.WriteModel(sw, rf, mdlName);
- ColladaWriter.WriteModel(objFile, rf, mdlName);
+ ColladaWriter.WriteModel(objFile, rf, mdlName + whatever);
objFile.Close();
}
}