summaryrefslogtreecommitdiff
path: root/NW4RTools/Models/VertexData.cs
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-02-04 15:40:12 +0100
committerTreeki <treeki@gmail.com>2011-02-04 15:40:12 +0100
commitdb8fc350b2bffda63d27797bfe7ae4afb4af327e (patch)
treea0a89cd83615e7794d9507d10c329e30c4226670 /NW4RTools/Models/VertexData.cs
downloadnw4rtools-db8fc350b2bffda63d27797bfe7ae4afb4af327e.tar.gz
nw4rtools-db8fc350b2bffda63d27797bfe7ae4afb4af327e.zip
Initial commit of NW4RTools.
Supports BRRES reading for: Model Bytecode, Model Nodes, Model Vertex Data, and incomplete Materials. Writing is completely unimplemented so far.
Diffstat (limited to 'NW4RTools/Models/VertexData.cs')
-rw-r--r--NW4RTools/Models/VertexData.cs46
1 files changed, 46 insertions, 0 deletions
diff --git a/NW4RTools/Models/VertexData.cs b/NW4RTools/Models/VertexData.cs
new file mode 100644
index 0000000..d8733b3
--- /dev/null
+++ b/NW4RTools/Models/VertexData.cs
@@ -0,0 +1,46 @@
+using System;
+
+namespace NW4RTools.Models {
+ public class VertexDataBase {
+ public UInt32 Index;
+
+ public UInt32 ComponentCount, ComponentType; // todo: enums
+ public byte Fraction /* Not used for colours */, EntrySize;
+ public UInt16 EntryCount;
+
+ // Todo, decode data when reading
+ public byte[] Data;
+
+ public VertexDataBase() {
+ }
+ }
+
+
+ public class VertexPosData : VertexDataBase {
+ public Vec3 Minimum, Maximum;
+
+ public VertexPosData() {
+ }
+ }
+
+
+ public class VertexNrmData : VertexDataBase {
+ public VertexNrmData() {
+ }
+ }
+
+
+ public class VertexClrData : VertexDataBase {
+ public VertexClrData() {
+ }
+ }
+
+
+ public class VertexTexCoordData : VertexDataBase {
+ public Vec2 Minimum, Maximum;
+
+ public VertexTexCoordData() {
+ }
+ }
+}
+