Auto full-combo Koibumi2000 in Taiko no Tatsujin CS5

Dependencies:   fll mbed-rtos mbed

Revision:
10:79bb44beb08b
Child:
11:21b3b0494baa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/taiko.h	Sun Feb 15 06:53:27 2015 +0000
@@ -0,0 +1,28 @@
+// Toolkit for Taiko no Tatsujin
+
+#pragma once
+
+#include "fll.h"
+#include "fll_producers.h"
+
+enum Taiko {
+    Don = 0x01,
+    Ka = 0x10,
+};
+
+typedef struct _note {
+    Taiko taiko;
+    float length;
+} note;
+
+class TaikoSource : public Producer {
+private:
+    note** note_seq;
+    int index;
+    int size;
+    int bpm;
+    int frame_i;
+public:
+    TaikoSource(note** ns, int s, int b);
+    virtual button_t await();
+};
\ No newline at end of file