summaryrefslogtreecommitdiff
path: root/src/koopatlas/mapdata.h
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-07-23 03:09:38 +0200
committerTreeki <treeki@gmail.com>2012-07-23 03:09:38 +0200
commit873b0352478f0bf27ee3123e46d3bae5cb2720fb (patch)
tree4061ff0ec393ea8db6782e54b8c9d3fe16831b9d /src/koopatlas/mapdata.h
parent1b80d8bc9a41497a8394af371e6ddca2c75a2b72 (diff)
downloadkamek-873b0352478f0bf27ee3123e46d3bae5cb2720fb.tar.gz
kamek-873b0352478f0bf27ee3123e46d3bae5cb2720fb.zip
added Level Node Extra stuff. untested in game, but it compiles
Diffstat (limited to '')
-rw-r--r--src/koopatlas/mapdata.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/koopatlas/mapdata.h b/src/koopatlas/mapdata.h
index 9f40433..6739086 100644
--- a/src/koopatlas/mapdata.h
+++ b/src/koopatlas/mapdata.h
@@ -7,6 +7,8 @@
// forward declarations
struct dKPLayer_s;
+class dKPNodeExtra_c;
+
/******************************************************************************
* Doodads
******************************************************************************/
@@ -68,6 +70,11 @@ struct dKPNode_s {
dKPLayer_s *tileLayer, *doodadLayer;
NodeTypes type;
+
+ dKPNodeExtra_c *extra;
+
+ // The union is placed at the very end so we can leave out padding in the
+ // kpbin
union {
struct { u8 levelNumber[2]; };
// FORWARDS COMPATIBILITY:
@@ -208,10 +215,20 @@ class dKPMapData_c {
dDvdLoader_c bgLoader;
dDvdLoader_c nodeLoader;
+ dKPNodeExtra_c *levelNodeExtraArray;
+
dKPMapData_c();
bool load(const char *filename);
~dKPMapData_c();
};
+
+// Currently only available for LEVEL nodes
+class dKPNodeExtra_c {
+ public:
+ mMtx matrix;
+ m3d::mdl_c model;
+};
+
#endif