diff options
| author | Comment <tim@gray.(none)> | 2012-12-04 14:53:44 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2012-12-04 14:53:44 +0000 |
| commit | 7e99d4291172f4dadb59b81cf525817dd8a210e5 (patch) | |
| tree | 75fb43c04330250a25f745228e59a30902d783d0 /vfg/src/testApp.h | |
| parent | f7bee21ada14851da8626a3784821ded25333fe6 (diff) | |
dress rehearsal version
Diffstat (limited to 'vfg/src/testApp.h')
| -rwxr-xr-x | vfg/src/testApp.h | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/vfg/src/testApp.h b/vfg/src/testApp.h index c287fb1..4852073 100755 --- a/vfg/src/testApp.h +++ b/vfg/src/testApp.h @@ -73,14 +73,19 @@ class testApp : public ofxFensterListener{ void gotMessage(ofMessage msg); void drawBackgroundLayers(); + void activateGame(); + void activatePractice(); + void switchAnimals(); ofVideoPlayer intro; ofVideoPlayer advert; + ofSoundPlayer backgroundmusic; ofVideoPlayer background; ofImage vignette; vector<song*> songs; + song practiceSong; vector<Animal> penguins; @@ -96,6 +101,7 @@ class testApp : public ofxFensterListener{ vector<Billboard*> logos; puppetSprite banner; + puppetSprite wirebirds; Billboard* lyricspanel; @@ -103,12 +109,15 @@ class testApp : public ofxFensterListener{ int currentlevel; Asterisk game; + int gamepoll; bool showFPS; bool showVis; bool fullscreenoutput; - int currentsong,nextsong,gamestate,segmentStartTime,fadelength; + int currentsong,nextsong,gamestate,segmentStartTime; + + float fadelength; guiWindow *guiWin; ofxPanel gui; @@ -132,6 +141,19 @@ public: void draw(); void dragEvent(ofDragInfo dragInfo,ofxFenster* win); void windowMoved(int x, int y); + string levelnames[11]={ + "STARTINGINTRO", + "INTRO", + "ENDINGINTRO", + "READY", + "STARTINGADVERT", + "ADVERT", + "ENDINGADVERT", + "STARTPLAYING", + "PRACTICE", + "PLAYING", + "ENDPLAYING" + }; }; |
