Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 2, 2008, 12:09:55 AM (16 years ago)
Author:
rgrieder
Message:

Finally managed to have a master InputState which enables:

  • Console always opens
  • Debug overlay toggles visibility in gui mode too

Had to change several other code:

  • ConfigFileManager uses special class instead of enum for ConfigFileType
  • You can add an arbitrary config file and get the ConfigFileType
  • ConfigFileManager is an Ogre singleton too. Created in Main.cc
  • CommandLineArgument "optionsFile" specifies another file for command line arguments
  • CommandLineArgument "settingsFile" declares the file used for settings (orxonox.ini)
  • changed all fileNames to filenames
  • "Loaded config file blah" now uses COUT(3) instead of COUT(0)
  • fixed a bug in ConfigFileManager::load() that cause orxonox.ini to double its size after every call
Location:
code/branches/objecthierarchy/src/audio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/audio/AudioBuffer.cc

    r1784 r2101  
    3131namespace audio
    3232{
    33     AudioBuffer::AudioBuffer(std::string fileName)
     33    AudioBuffer::AudioBuffer(std::string filename)
    3434    {
    3535        // Load wav data into buffers.
     
    4040
    4141        //FIXME deprecated; seems unneeded
    42 //        alutLoadWAVFile((ALbyte*)fileName.c_str(), &format, &data, &size, &freq, &loop);
     42//        alutLoadWAVFile((ALbyte*)filename.c_str(), &format, &data, &size, &freq, &loop);
    4343        alBufferData(buffer, format, data, size, freq);
    4444        //FIXME deprecated; seems unneeded
  • code/branches/objecthierarchy/src/audio/AudioBuffer.h

    r1784 r2101  
    4040    {
    4141    public:
    42         AudioBuffer(std::string fileName);
     42        AudioBuffer(std::string filename);
    4343        ~AudioBuffer();
    4444
Note: See TracChangeset for help on using the changeset viewer.