/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ /** @file @brief Implementation of orxonox::ScopeManager. */ #include "ScopeManager.h" #include "Scope.h" namespace orxonox { ScopeManager* ScopeManager::singletonPtr_s = nullptr; void ScopeManager::addScope(ScopeID::Value scope) { this->activeScopes_.insert(scope); this->activateListenersForScope(scope); } void ScopeManager::removeScope(ScopeID::Value scope) { this->activeScopes_.erase(scope); this->deactivateListenersForScope(scope); } bool ScopeManager::isActive(ScopeID::Value scope) { return this->activeScopes_.find(scope) != this->activeScopes_.end(); } void ScopeManager::addListener(ScopeListener* listener, ScopeID::Value scope) { this->listeners_[scope].insert(listener); if (this->isActive(scope)) this->activateListener(listener); } void ScopeManager::removeListener(ScopeListener* listener, ScopeID::Value scope) { if (this->isActive(scope)) this->deactivateListener(listener); this->listeners_[scope].erase(listener); } void ScopeManager::activateListenersForScope(ScopeID::Value scope) { for (ScopeListener* listener : this->listeners_[scope]) this->activateListener(listener); } void ScopeManager::deactivateListenersForScope(ScopeID::Value scope) { for (ScopeListener* listener : this->listeners_[scope]) this->deactivateListener(listener); } void ScopeManager::activateListener(ScopeListener* listener) { listener->activated(); listener->bActivated_ = true; } void ScopeManager::deactivateListener(ScopeListener* listener) { if (listener->bActivated_) { try { listener->deactivated(); } catch (...) { orxout(internal_warning) << "ScopeListener::deactivated() failed! This MUST NOT happen, fix it!" << endl; } listener->bActivated_ = false; } } }