Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 21, 2011, 11:56:59 PM (13 years ago)
Author:
landauf
Message:

change some output's level to verbose: 1. in Language.cc because it is printed a lot during the first startup of orxonox. 2. in InputManager.cc because the reloading happens each time the in game menu is opened or closed.
fixed possible "mass = 0" warning in presentationDM.oxw and fixed squared scaling of asteroid's size (?) because the scale was used for MovableEntity AND Model.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/core/input/InputManager.cc

    r8806 r8854  
    143143    void InputManager::loadDevices()
    144144    {
    145         orxout(internal_info, context::input) << "InputManager: Loading input devices..." << endl;
     145        orxout(verbose, context::input) << "InputManager: Loading input devices..." << endl;
    146146
    147147        // When loading the devices they should not already be loaded
     
    196196            // Exception-safety
    197197            Loki::ScopeGuard guard = Loki::MakeGuard(OIS::InputManager::destroyInputSystem, oisInputManager_);
    198             orxout(internal_info, context::input) << "Created OIS input manager." << endl;
     198            orxout(verbose, context::input) << "Created OIS input manager." << endl;
    199199
    200200            if (oisInputManager_->getNumberOfDevices(OIS::OISKeyboard) > 0)
     
    219219        this->updateActiveStates();
    220220
    221         orxout(internal_info, context::input) << "Input devices loaded." << endl;
     221        orxout(verbose, context::input) << "Input devices loaded." << endl;
    222222    }
    223223
     
    306306    void InputManager::destroyDevices()
    307307    {
    308         orxout(internal_info, context::input) << "InputManager: Destroying devices..." << endl;
     308        orxout(verbose, context::input) << "InputManager: Destroying devices..." << endl;
    309309
    310310        BOOST_FOREACH(InputDevice*& device, devices_)
     
    315315            delete device;
    316316            device = 0;
    317             orxout(internal_info, context::input) << className << " destroyed." << endl;
     317            orxout(verbose, context::input) << className << " destroyed." << endl;
    318318        }
    319319        devices_.resize(InputDeviceEnumerator::FirstJoyStick);
     
    332332
    333333        internalState_ |= Bad;
    334         orxout(internal_info, context::input) << "Destroyed devices." << endl;
     334        orxout(verbose, context::input) << "Destroyed devices." << endl;
    335335    }
    336336
     
    351351    void InputManager::reloadInternal()
    352352    {
    353         orxout(internal_info, context::input) << "InputManager: Reloading ..." << endl;
     353        orxout(verbose, context::input) << "InputManager: Reloading ..." << endl;
    354354
    355355        this->destroyDevices();
     
    357357
    358358        internalState_ &= ~Bad;
    359         orxout(internal_info, context::input) << "InputManager: Reloading complete." << endl;
     359        orxout(verbose, context::input) << "InputManager: Reloading complete." << endl;
    360360    }
    361361
Note: See TracChangeset for help on using the changeset viewer.