/* * 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: * Oliver Scheuss , (C) 2008 * Co-authors: * ... * */ #include "FunctionCallManager.h" #include "packet/FunctionCalls.h" #include "core/GameMode.h" #include "GamestateHandler.h" namespace orxonox { std::map FunctionCallManager::sPeerMap_; std::vector > > FunctionCallManager::sIncomingFunctionCallBuffer_; // Static calls void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallStatic(functionID); } void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID, const MultiType& mt1) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager:: sPeerMap_[peerID]->addCallStatic(functionID, &mt1); } void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager:: sPeerMap_[peerID]->addCallStatic(functionID, &mt1, &mt2); } void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager:: sPeerMap_[peerID]->addCallStatic(functionID, &mt1, &mt2, &mt3); } void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager:: sPeerMap_[peerID]->addCallStatic(functionID, &mt1, &mt2, &mt3, &mt4); } void FunctionCallManager::addCallStatic(uint32_t functionID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4, const MultiType& mt5) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager:: sPeerMap_[peerID]->addCallStatic(functionID, &mt1, &mt2, &mt3, &mt4, &mt5); } // MemberCalls void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID); } void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID, &mt1); } void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID, &mt1, &mt2); } void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID, &mt1, &mt2, &mt3); } void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID, &mt1, &mt2, &mt3, &mt4); } void FunctionCallManager::addCallMember(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4, const MultiType& mt5) { if(sPeerMap_.find(peerID)==sPeerMap_.end()) { FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); } FunctionCallManager::sPeerMap_[peerID]->addCallMember(functionID, objectID, &mt1, &mt2, &mt3, &mt4, &mt5); } // Send calls void FunctionCallManager::sendCalls(orxonox::Host* host) { std::map::iterator it; for (it = FunctionCallManager::sPeerMap_.begin(); it != FunctionCallManager::sPeerMap_.end(); ++it ) { assert(!FunctionCallManager::sPeerMap_.empty()); it->second->send(host); } FunctionCallManager::sPeerMap_.clear(); } void FunctionCallManager::bufferIncomingFunctionCall(const orxonox::FunctionCall& fctCall, uint32_t minGamestateID, uint32_t peerID) { FunctionCallManager::sIncomingFunctionCallBuffer_.push_back( std::make_pair(fctCall, std::make_pair(minGamestateID, peerID))); } void FunctionCallManager::processBufferedFunctionCalls() { std::vector > >::iterator it = FunctionCallManager::sIncomingFunctionCallBuffer_.begin(); while( it!=FunctionCallManager::sIncomingFunctionCallBuffer_.end() ) { if( it->first.execute() ) FunctionCallManager::sIncomingFunctionCallBuffer_.erase(it); else { ++it; } } } } //namespace orxonox