aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a4-dance/dance_floor.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dev/a4-dance/dance_floor.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev/a4-dance/dance_floor.h b/dev/a4-dance/dance_floor.h
new file mode 100644
index 0000000..8d992f4
--- /dev/null
+++ b/dev/a4-dance/dance_floor.h
@@ -0,0 +1,28 @@
+#ifndef DANCE_FLOOR_H_
+#define DANCE_FLOOR_H_
+
+#include <mingfx.h>
+
+#include <vector>
+
+class DanceFloor {
+public:
+ DanceFloor(float s, int c);
+
+ void Draw(const Matrix4 &modelMatrix, const Matrix4 &viewMatrix, const Matrix4 &projMatrix);
+
+ Color tile_color(int index);
+
+private:
+
+ float tileSize_;
+ int tileCount_;
+
+ std::vector< std::vector<Color> > colors_;
+
+ Texture2D tex_;
+ Mesh floorMesh_;
+};
+
+
+#endif