]> Dogcows Code - chaz/yoink/blobdiff - src/YoinkApp.cc
more featureful sound class
[chaz/yoink] / src / YoinkApp.cc
index 9ea4b373d90ec15e2a53cb5eba8c03e8155cb359..d36f6da3ef8f52f9f8e61d82c85a4f5cb6f655b4 100644 (file)
 
 #include "YoinkApp.hh"
 
-#include <SDL/SDL_sound.h>
-#include <AL/al.h>
-#include <AL/alut.h>
-
 #if HAVE_CONFIG_H
 #include "config.h"
 #endif
@@ -106,18 +102,16 @@ static std::string iconFile()
 
 YoinkApp::YoinkApp(int argc, char* argv[]) :
        Mf::Engine(argc, argv, configFiles(), PACKAGE_STRING, iconFile()),
-       music("NightFusion"),
+       music("NightFusionIntro"),
        punchSound("RobotPunch")
 {
        Mf::dispatcher::addHandler("video.context_recreated",
                        boost::bind(&YoinkApp::contextRecreated, this, _1), this);
        setupGL();
 
-       Mf::Scalar fade[2] = {0.0, 1.0};
-       musicFade.init(fade, 0.0);
-       music.play();
-
-       state = 0.0;
+       music.setLooping(true);
+       music.enqueue("NightFusionLoop");
+       music.stream();
 
        heroine = Character::alloc("RobotTrooper");
        heroine->getAnimation().startSequence("Run");
@@ -189,17 +183,14 @@ void YoinkApp::contextRecreated(const Mf::Notification* note)
 
 void YoinkApp::update(Mf::Scalar t, Mf::Scalar dt)
 {
-       //dt *= 0.2;
+       //dt *= 0.5;
 
-       musicFade.update(dt);
        music.update(t, dt);
-       music.setGain(musicFade.getValue());
-       
        fadeIn.update(dt);
-
        camera.update(t, dt);
-
        heroine->update(t, dt);
+
+       // reinsert heroine
        heroine->treeNode = testScene->getOctree()->reinsert(heroine, heroine->treeNode);
        testScene->getOctree()->print(heroine->treeNode);
        
@@ -209,45 +200,26 @@ void YoinkApp::update(Mf::Scalar t, Mf::Scalar dt)
        interp.update(dt);
        hud.setBar1Progress(interp.getValue());
        hud.setBar2Progress(1.0 - interp.getValue());
-
-       prevstate = state;
-       state += dt;
 }
 
 
 void YoinkApp::draw(Mf::Scalar alpha)
 {
-       //Mf::Vector4 meh;
-       //meh.random(0.0, 1.0);
-       //static Mf::Vector4 c1(meh);
-
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
 
-       //Mf::Scalar drawstate = cml::lerp(prevstate, state, alpha);
-       //Mf::Scalar sinstate = std::sin(drawstate);
-       //Mf::Scalar cosstate = std::cos(drawstate);
-       
-
        glMatrixMode(GL_MODELVIEW);
-       //glLoadIdentity();
-
-       //glRotatef(drawstate*15.0f, 0.0, 1.0, 0.0);
-       //glTranslatef(x, y, z);
        glLoadMatrix(camera.getModelviewMatrix().data());
 
        // DRAW THE SCENE
        Mf::Texture::resetBind();
        testScene->draw(alpha, camera);
 
-
-
        //heroine->draw(alpha);
        heroine->getAabb().draw();
 
-
        hud.draw();
 
-
+       // DRAW FADE
        glEnable(GL_BLEND);
        glMatrixMode(GL_PROJECTION);
        glPushMatrix();
@@ -272,123 +244,6 @@ void YoinkApp::draw(Mf::Scalar alpha)
        glPopMatrix();
        glMatrixMode(GL_MODELVIEW);
        glPopMatrix();
-
-       /*
-       glLoadIdentity();
-       
-       someChar->getTilemap().bind();
-       glColor3f(1.0, 1.0, 1.0);
-
-       Mf::Tilemap::Index heroFrame = someChar->getAnimation().getFrame();
-
-       Mf::Scalar coords[8];
-       someChar->getTilemap().getTileCoords(heroFrame, coords);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3f(-1.0, 0.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3f(0.0, 0.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3f(0.0, 1.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3f(-1.0, 1.0, 0.0);
-       glEnd();
-
-
-       someChar->getTilemap().getTileCoords(heroFrame, coords,
-                       Mf::Tilemap::REVERSE);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3f(0.0, 0.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3f(1.0, 0.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3f(1.0, 1.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3f(0.0, 1.0, 0.0);
-       glEnd();
-
-       glColor4f(1.0,0.0,0.0,0.5);
-
-       glBindTexture(GL_TEXTURE_2D, 0);
-       glColor4v(c1.data());
-
-       glRectd(-cosstate, -sinstate, sinstate, cosstate);
-       glRectf(0.0f, 0.0f, sinstate, cosstate);
-
-       font->bind();
-       
-       font->getTileCoords('c', coords);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3f(-1.0, 0.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3f(0.0, 0.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3f(0.0, 1.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3f(-1.0, 1.0, 0.0);
-       glEnd();
-
-       font->getTileCoords('h', coords);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3f(0.0, 0.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3f(1.0, 0.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3f(1.0, 1.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3f(0.0, 1.0, 0.0);
-       glEnd();
-
-       font->getTileCoords('a', coords);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3f(-1.0, -1.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3f(0.0, -1.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3f(0.0, 0.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3f(-1.0, 0.0, 0.0);
-       glEnd();
-
-       font->getTileCoords('z', coords);
-
-       glBegin(GL_QUADS);
-               glTexCoord2f(coords[0], coords[1]);
-               glVertex3(0.0, -1.0, 0.0);
-               glTexCoord2f(coords[2], coords[3]);
-               glVertex3(1.0, -1.0, 0.0);
-               glTexCoord2f(coords[4], coords[5]);
-               glVertex3(1.0, 0.0, 0.0);
-               glTexCoord2f(coords[6], coords[7]);
-               glVertex3(0.0, 0.0, 0.0);
-       glEnd();
-
-       glEnable(GL_BLEND);
-       glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
-       glDisable(GL_DEPTH_TEST);
-       
-       glBindTexture(GL_TEXTURE_2D, 0);
-       glColor4f(0.0f, 0.0f, 0.0f, 1.0f);
-
-       glBegin(GL_LINES);
-               glVertex2f(0.0f, 0.0f);
-               glVertex2v(interp.getState(alpha).data());
-       glEnd();
-
-       glColor4f(0.0f, 0.0f, 0.0f, fadeIn.getState(alpha));
-       glRectf(-1.0f, -1.0f, 1.0f, 1.0f);
-
-       glDisable(GL_BLEND);
-       glEnable(GL_DEPTH_TEST);*/
 }
 
 void YoinkApp::handleEvent(const Mf::Event& event)
@@ -424,7 +279,7 @@ void YoinkApp::handleEvent(const Mf::Event& event)
                        }
                        else if (event.key.keysym.sym == SDLK_p)
                        {
-                               music.togglePlayPause();
+                               music.toggle();
                                break;
                        }
                        else if (event.key.keysym.sym == SDLK_l)
@@ -464,8 +319,16 @@ int main(int argc, char* argv[])
                          << "Send patches and bug reports to <"
                          PACKAGE_BUGREPORT << ">." << std::endl << std::endl;
 
-#if ! NDEBUG
+#if            YOINK_LOGLEVEL >= 4
        Mf::setLogLevel(Mf::LOG_DEBUG);
+#elif  YOINK_LOGLEVEL >= 3
+       Mf::setLogLevel(Mf::LOG_INFO);
+#elif  YOINK_LOGLEVEL >= 2
+       Mf::setLogLevel(Mf::LOG_WARNING);
+#elif  YOINK_LOGLEVEL >= 1
+       Mf::setLogLevel(Mf::LOG_ERROR);
+#elif  YOINK_LOGLEVEL
+       Mf::setLogLevel(Mf::LOG_NONE);
 #endif
 
        int status = 0;
This page took 0.021355 seconds and 4 git commands to generate.