[2937] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Oliver Scheuss <scheusso [at] ee.ethz.ch>, (C) 2008 |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #include "FunctionCallManager.h" |
---|
| 30 | #include "packet/FunctionCalls.h" |
---|
[7495] | 31 | #include "core/GameMode.h" |
---|
[7801] | 32 | #include "GamestateHandler.h" |
---|
[8403] | 33 | #include "Host.h" |
---|
| 34 | #include "util/OrxAssert.h" |
---|
[2937] | 35 | |
---|
| 36 | namespace orxonox { |
---|
[6417] | 37 | |
---|
[7801] | 38 | std::map<uint32_t, packet::FunctionCalls*> FunctionCallManager::sPeerMap_; |
---|
[11071] | 39 | std::vector<std::pair<FunctionCall, std::pair<uint32_t, uint32_t>>> FunctionCallManager::sIncomingFunctionCallBuffer_; |
---|
[2937] | 40 | |
---|
[2949] | 41 | |
---|
[10624] | 42 | void FunctionCallManager::addCall(uint32_t functionID, uint32_t objectID, uint32_t peerID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4, const MultiType& mt5) |
---|
[6417] | 43 | { |
---|
[12027] | 44 | // If the peerID doesn't exist yet in the map... |
---|
| 45 | if(sPeerMap_.find(peerID) == sPeerMap_.end()) |
---|
[2937] | 46 | { |
---|
[12027] | 47 | // ... add a new FunctionCalls packet for the peer |
---|
[7801] | 48 | FunctionCallManager::sPeerMap_[peerID] = new packet::FunctionCalls; |
---|
| 49 | FunctionCallManager::sPeerMap_[peerID]->setPeerID(peerID); |
---|
[6417] | 50 | } |
---|
[12027] | 51 | |
---|
| 52 | // Add a new function call to the peer |
---|
[10624] | 53 | FunctionCallManager::sPeerMap_[peerID]->addCall(functionID, objectID, mt1, mt2, mt3, mt4, mt5); |
---|
[2937] | 54 | } |
---|
| 55 | |
---|
[12027] | 56 | /** |
---|
| 57 | * Send all function calls in sPeerMap_ to a given host, then clear sPeerMap_ |
---|
| 58 | * @param host The host to send the function calls to |
---|
| 59 | */ |
---|
[7801] | 60 | void FunctionCallManager::sendCalls(orxonox::Host* host) |
---|
[2937] | 61 | { |
---|
[11071] | 62 | for (const auto& mapEntry : FunctionCallManager::sPeerMap_ ) |
---|
[2944] | 63 | { |
---|
[7801] | 64 | assert(!FunctionCallManager::sPeerMap_.empty()); |
---|
[11071] | 65 | mapEntry.second->send(host); |
---|
[2944] | 66 | } |
---|
[7801] | 67 | FunctionCallManager::sPeerMap_.clear(); |
---|
[2937] | 68 | } |
---|
| 69 | |
---|
[12027] | 70 | /** |
---|
| 71 | * Place an incoming function call in the queue for processing. |
---|
| 72 | */ |
---|
[7801] | 73 | void FunctionCallManager::bufferIncomingFunctionCall(const orxonox::FunctionCall& fctCall, uint32_t minGamestateID, uint32_t peerID) |
---|
[7495] | 74 | { |
---|
[11071] | 75 | FunctionCallManager::sIncomingFunctionCallBuffer_.emplace_back(fctCall, std::make_pair(minGamestateID, peerID)); |
---|
[7495] | 76 | } |
---|
[2937] | 77 | |
---|
[12027] | 78 | /** |
---|
| 79 | * Process queue of incoming function calls. |
---|
| 80 | */ |
---|
[7495] | 81 | void FunctionCallManager::processBufferedFunctionCalls() |
---|
| 82 | { |
---|
[11071] | 83 | std::vector<std::pair<FunctionCall, std::pair<uint32_t, uint32_t>>>::iterator it = FunctionCallManager::sIncomingFunctionCallBuffer_.begin(); |
---|
[12027] | 84 | while( it != FunctionCallManager::sIncomingFunctionCallBuffer_.end() ) |
---|
[7495] | 85 | { |
---|
[8403] | 86 | OrxAssert( Host::getActiveInstance(), "No Host class existing" ); |
---|
| 87 | if( it->second.first <= Host::getActiveInstance()->getLastReceivedGamestateID(it->second.second) && it->first.execute() ) |
---|
[11784] | 88 | FunctionCallManager::sIncomingFunctionCallBuffer_.erase(it++); |
---|
[7495] | 89 | else |
---|
[7801] | 90 | { |
---|
[7495] | 91 | ++it; |
---|
[7801] | 92 | } |
---|
[7495] | 93 | } |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | |
---|
[2937] | 97 | } //namespace orxonox |
---|