// Ryzom - MMORPG Framework // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . #include "module_core.h" #include "module_parent.h" #include "module.h" //---------------------------------------------------------------------------- CModuleParent::~CModuleParent() { MODULE_INFO( "Module parent destruction : calling the Ondestruction handler for all modules" ); // as module could be removed from thi parent in IModule::onParentDestruction, we have do remove modules with this strange way std::vector< NLMISC::CRefPtr > modules = _Modules; for (uint i = 0; i < modules.size(); i++ ) { if ( modules[i] ) { modules[i]->onParentDestruction(); } } } //---------------------------------------------------------------------------- void CModuleParent::removeChildModule(IModule* module) { MODULE_INFO( "Module parent : simply removing a child module" ); MODULE_AST( module ); MODULE_AST(_Owner); NLMISC::CRefPtr ref(module); std::vector< NLMISC::CRefPtr >::iterator it( std::find( _Modules.begin(), _Modules.end(), ref ) ); if ( it == _Modules.end() ) { nlwarning(" cant find the module to remove"); return; } _Modules.erase(it); } //---------------------------------------------------------------------------- void CModuleParent::addChildModule(IModule* module) { MODULE_INFO( "Module parent : simply adding a child module" ); MODULE_AST( module ); #ifdef RY_MODULE_DEBUG NLMISC::CRefPtr ref(module); std::vector< NLMISC::CRefPtr >::iterator it( std::find( _Modules.begin(), _Modules.end(), ref ) ); if ( it != _Modules.end() ) nlerror("a module was added twice"); #endif _Modules.push_back(module); }