Development/Tutorials/Games/KALEngine: Difference between revisions

    From KDE TechBase
    No edit summary
    No edit summary
    (17 intermediate revisions by 4 users not shown)
    Line 23: Line 23:


    ==Abstract==
    ==Abstract==
    Phonon is not really designed to handle multiple sounds at the same time. KALEngine is made for games and create one thread per sound, using the excellent openAL librairy. you also get all the other openAL goodness like 3D sounds, effects and multichannel.
    Phonon is not really designed to handle multiple sounds at the same time. KALEngine is made for games and create one thread per sound, using the openAL library. You also get all the other openAL goodness like 3D sounds, effects and multichannel.


    ==Installation==
    ==Installation==


    1: Be sure you have installed dependent librairy.
    1: You need to have the following libraries installed.
    * openAL ( sound api)
    * openAL (sound api)
    * alut (openal toolkit)
    * alut (openAL toolkit)
    * libSndFile (load sound file).
    * libSndFile (load sound file).
    You can install them, from your package manager.
    for exemple in kubuntu :


    <code> sudo apt-get install libalut0-dev libopenal1-dev libsndfile1-dev </code>
    If you're using a Debian-based distribution, you can install them that way :


    2: compile and install kalengine from svn :
    <syntaxhighlight lang="text">sudo apt-get install libalut0-dev libopenal1-dev libsndfile1-dev libvorbis-dev libvorbisfile libogg-dev</syntaxhighlight>
    <code>svn co svn://anonsvn.kde.org/home/kde/trunk/trunk/playground/games/KALEngine/</code>


    *cmake
    2: Build and install KALEngine from svn :
    *make
    <syntaxhighlight lang="text">svn co svn://anonsvn.kde.org/home/kde/trunk/playground/games/KALEngine/</syntaxhighlight>
    *sudo make install
     
    * cmake -DCMAKE_INSTALL_PREFIX=$(kde-config --prefix)
    * make
    * sudo make install


    == Hello Word ==
    == Hello Word ==


    In this exemple, we will play an "hello word". We don't need any sound, it's the default exemple of openAL.
    In this example, we will play a "Hello Word". We don't need to specify any sound file, openAL provides a default sound itself.


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">


    #include <KALEngine>
    #include <KALEngine>
    Line 55: Line 55:
    int main(int argc, char **argv)
    int main(int argc, char **argv)
    {
    {
        // create an OpenAL object
        KALEngine soundEngine;
        // initialize OpenAL context and device
        soundEngine.init();


         KALEngine snd; //create an openAL object
         // create a sound, since we haven't specified any filename in the constructor, it will play the "Hello World"
         snd.init(); // Initialize OpenAL Context + Device!
         KALSource *sound = new KALSource();


         KALSource *son = new KALSource(); // create a sample, if no argument, It will play an "hello world"
         // play the sound
         son->play(); // play the sound!!
         sound->play();


        // print the elapsed time until the sound has finished playing
         while (son->getStatus() == AL_PLAYING) // wait while sound is playing
         while (sound->status() == AL_PLAYING)
         {
         {
          kDebug()<<son->getElapsedTime(); //print the elapsed time.
            kDebug() << sound->elapsedTime();
         }
         }


        // clear the buffer
        delete sound;
        // ...and close the device
        soundEngine.shutdown();


         delete son; //when it finished! Don't forget to clear the buffer!!
         return 0;
        snd.shutdown(); // and close the device!!
    }




        return 0;
    </syntaxhighlight>
    }


    - First, we initialize the sound engine. The init() function can optionally takes one argument, the device name. You can retrieve the list of devices, using this static function :


    </code>
    <syntaxhighlight lang="cpp-qt">
    QStringList devicesList().
    </syntaxhighlight>


    -At the first line, we initialize the sound engine. KALengine::init(QString device) take in arguments the deviceName. If you want recover the list of device, you can call the static function :
    - Then, we create a KALsource. KALSource can be used for playing small sounds(shoot, scream, tic, walk, etc). It will load the entire file inside a buffer, so be careful if you try to play a big file using it.


    <code cppqt>
    If you want to try playing something else than the default "Hello World", you can download this short simple : [[http://ktank.free.fr/kalengine/ocean.wav ocean.wav]] and replace the sound object definition by:
    QStringList KALEngine::getDevicesList().
    </code>


    -At the second time, we create a KALsource. KALSource is the base of openAL, for playing small sound, like shoot, scream, tic, walk ..... It load all the file sound inside a buffer! Then, be carefull if you try to load a Big music with it.
    <syntaxhighlight lang="cpp-qt">
    If you play your own sound, download a short song : <a href=http://ktank.free.fr/kalengine/ocean.wav>ocean</a> and do like this :
        KALSource *sound = new KALSource("ocean.wav");
    </syntaxhighlight>


    <code cppqt>
    You can only use it to play wav file at the moment, but we hope to bring ogg support soon.
      KALSource *son = new KALSource("ocean.wav");
    For playing music, please wait until KALStream tutorial is up.
    </code >


    So, currently, it can only play wav file. But, in few time, maybe 1 day..., it will play ogg files.
    - The sound can now be played by simply calling <b>play()</b>. This function is asynchronous, meaning your program doesn't have to wait until the sound has finished playing to continue.
    If you want to play music, please wait tutorial for KALStream.


    - And now, we can play the sound by calling :
    - Then, to know when the sound has ended, we create a loop using <b>status()</b> which returns ever <b>AL_PLAYING</b> or <b>AL_STOPED</b>.


    <b>KALSource::play()</b>
    - Inside the loop, we print the time since the sound started playing using <b>elapsedTime()</b>. It returns an ALfloat with the elapsed time expressed in seconds.


    This work like a thread! It doesn't wait the end of the song, the programm continue to work.
    - Finally, we have to clear the KALSource buffer by deleting the KALSource pointer and close the device by calling <b>shutdown()</b>.


    == Multi-channel ==


    Then, we must to create a loop for waiting the end of the song.
    sound1->play();
    KALSource->getStatus() return the status of the song. <b>AL_PLAYING</b> or <b>AL_STOPED</b>.
    sound2->play();


    -For wait inside the loop, we can print the elapsed time of playing by call :
    ...to develop
    KALSource::getElapsedTime(). It return in second the duration.
    == 3d sound ==


    - At the end, we must clear the buffer of the KALSource , by calling :
    KALSource->setPosition(x,y,z)
    delete son. And close the device by calling : KALEngine::shutdown().
    ...to develop




    {{tip|For more information on how OpenAL works, see the documentation [[http://connect.creativelabs.com/openal/Documentation/OpenAL_Programmers_Guide.pdf OpenAL programmers Guide ]]}}


    {{tip|For more information on how the openAL works, look the documentation [[http://www.google.fr]] article}}
    {{TODO|Create KALStream}}

    Revision as of 08:36, 26 September 2011

    KALEngine tutorial
    Tutorial Series   KALEngine developement
    Prerequisites   None
    What's Next   Nothing at the moment
    Further Reading   KGLEngine2d's code

    Abstract

    Phonon is not really designed to handle multiple sounds at the same time. KALEngine is made for games and create one thread per sound, using the openAL library. You also get all the other openAL goodness like 3D sounds, effects and multichannel.

    Installation

    1: You need to have the following libraries installed.

    • openAL (sound api)
    • alut (openAL toolkit)
    • libSndFile (load sound file).

    If you're using a Debian-based distribution, you can install them that way :

    sudo apt-get install libalut0-dev libopenal1-dev libsndfile1-dev libvorbis-dev libvorbisfile libogg-dev
    

    2: Build and install KALEngine from svn :

    svn co svn://anonsvn.kde.org/home/kde/trunk/playground/games/KALEngine/
    
    • cmake -DCMAKE_INSTALL_PREFIX=$(kde-config --prefix)
    • make
    • sudo make install

    Hello Word

    In this example, we will play a "Hello Word". We don't need to specify any sound file, openAL provides a default sound itself.

    #include <KALEngine>
    #include <KALSource>
    #include <KDebug>
    
    int main(int argc, char **argv)
    {
        // create an OpenAL object
        KALEngine soundEngine;
        // initialize OpenAL context and device
        soundEngine.init(); 
    
        // create a sound, since we haven't specified any filename in the constructor, it will play the "Hello World"
        KALSource *sound = new KALSource();
    
        // play the sound
        sound->play();
    
        // print the elapsed time until the sound has finished playing
        while (sound->status() == AL_PLAYING)
        {
            kDebug() << sound->elapsedTime();
        }
    
        // clear the buffer
        delete sound;
        // ...and close the device
        soundEngine.shutdown();
    
        return 0;
    }
    

    - First, we initialize the sound engine. The init() function can optionally takes one argument, the device name. You can retrieve the list of devices, using this static function :

    QStringList devicesList().
    

    - Then, we create a KALsource. KALSource can be used for playing small sounds(shoot, scream, tic, walk, etc). It will load the entire file inside a buffer, so be careful if you try to play a big file using it.

    If you want to try playing something else than the default "Hello World", you can download this short simple : [ocean.wav] and replace the sound object definition by:

        KALSource *sound = new KALSource("ocean.wav");
    

    You can only use it to play wav file at the moment, but we hope to bring ogg support soon. For playing music, please wait until KALStream tutorial is up.

    - The sound can now be played by simply calling play(). This function is asynchronous, meaning your program doesn't have to wait until the sound has finished playing to continue.

    - Then, to know when the sound has ended, we create a loop using status() which returns ever AL_PLAYING or AL_STOPED.

    - Inside the loop, we print the time since the sound started playing using elapsedTime(). It returns an ALfloat with the elapsed time expressed in seconds.

    - Finally, we have to clear the KALSource buffer by deleting the KALSource pointer and close the device by calling shutdown().

    Multi-channel

    sound1->play(); sound2->play();

    ...to develop

    3d sound

    KALSource->setPosition(x,y,z) ...to develop


    Tip
    For more information on how OpenAL works, see the documentation [OpenAL programmers Guide ]


    noframe
    noframe
     
    TODO
    Create KALStream