Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/modules/pickup/PickupManager.cc @ 11700

Last change on this file since 11700 was 11700, checked in by landauf, 6 years ago

merged the remaining commits of HUD_HS16 branch back to trunk (except commit r11392 which added DDDialogue that seems to be just a test)

  • Property svn:eol-style set to native
File size: 22.9 KB
Line 
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 *      Damian 'Mozork' Frick
24 *   Co-authors:
25 *      ...
26 *
27*/
28
29/**
30    @file PickupManager.cc
31    @brief Implementation of the PickupManager class.
32*/
33
34#include "PickupManager.h"
35
36#include "core/CoreIncludes.h"
37#include "core/LuaState.h"
38#include "core/GUIManager.h"
39#include "core/class/Identifier.h"
40#include "core/singleton/ScopedSingletonIncludes.h"
41#include "network/Host.h"
42#include "network/NetworkFunctionIncludes.h"
43#include "core/input/KeyBinderManager.h"    //for keybinding
44#include "core/input/KeyBinder.h"           //for keybinding
45#include "core/command/ConsoleCommandIncludes.h"
46
47#include "infos/PlayerInfo.h"
48#include "interfaces/PickupCarrier.h"
49#include "worldentities/pawns/Pawn.h"
50
51#include "CollectiblePickup.h"
52#include "PickupRepresentation.h"
53#include "overlays/hud/HUDPickupSystem.h"
54
55namespace orxonox
56{
57    ManageScopedSingleton(PickupManager, ScopeID::ROOT, false);
58
59    // Initialization of the name of the PickupInventory GUI.
60    /*static*/ const std::string PickupManager::guiName_s = "PickupInventory";
61
62    // Register static network functions that are used to communicate changes to pickups over the network, such that the PickupInventory can display the information about the pickups properly.
63    registerStaticNetworkFunction(PickupManager::pickupChangedUsedNetwork);
64    registerStaticNetworkFunction(PickupManager::pickupChangedPickedUpNetwork);
65    registerStaticNetworkFunction(PickupManager::dropPickupNetworked);
66    registerStaticNetworkFunction(PickupManager::usePickupNetworked);
67
68    RegisterAbstractClass(PickupManager).inheritsFrom<PickupListener>();
69
70    SetConsoleCommand("useUnusePickup", &PickupManager::useUnusePickup).addShortcut().setActive(true);
71
72    /**
73    @brief
74        Constructor. Registers the PickupManager and creates the default PickupRepresentation.
75    */
76    PickupManager::PickupManager() : guiLoaded_(false), pickupHighestIndex_(0), defaultRepresentation_(nullptr)
77    {
78        RegisterObject(PickupManager);
79
80        this->defaultRepresentation_ = new PickupRepresentation();
81
82        orxout(internal_info, context::pickups) << "PickupManager created." << endl;
83    }
84
85    /**
86    @brief
87        Destructor.
88        Destroys the default PickupRepresentation and does some cleanup.
89    */
90    PickupManager::~PickupManager()
91    {
92        // Destroying the default representation.
93        if(this->defaultRepresentation_ != nullptr)
94            this->defaultRepresentation_->destroy();
95
96        this->representations_.clear();
97
98        // Destroying all the PickupInventoryContainers that are still there.
99        for(const auto& mapEntry : this->pickupInventoryContainers_)
100            delete mapEntry.second;
101        this->pickupInventoryContainers_.clear();
102
103        // Destroying all the WeakPointers that are still there.
104        this->pickups_.clear();
105        this->indexes_.clear();
106
107        orxout() << "PickupManager destroyed." << endl;
108    }
109
110    /**
111    @brief
112        Registers a PickupRepresentation.
113    @param name
114        The representation's name.
115    @param representation
116        A pointer to the PickupRepresentation.
117    @return
118        Returns true if successful and false if not.
119    */
120    bool PickupManager::registerRepresentation(const std::string& name, PickupRepresentation* representation)
121    {
122        assert(representation);
123
124        // If the list is not empty and Pickupable already has a Representation registered.
125        if(!this->representations_.empty() && this->representations_.find(name) != this->representations_.end())
126            return false;
127
128        this->representations_[name] = representation;
129
130        orxout(verbose, context::pickups) << "PickupRepresentation &" << representation << " registered with the PickupManager." << endl;
131        return true;
132    }
133
134    /**
135    @brief
136        Unegisters a PickupRepresentation.
137    @param name
138        The representation's name.
139    @return
140        Returns true if successful and false if not.
141    */
142    bool PickupManager::unregisterRepresentation(const std::string& name)
143    {
144        std::map<std::string, PickupRepresentation*>::iterator it = this->representations_.find(name);
145        if(it == this->representations_.end()) // If the Pickupable is not registered in the first place.
146            return false;
147
148        this->representations_.erase(it);
149
150        orxout(verbose, context::pickups) << "PickupRepresentation &" << name << " unregistered with the PickupManager." << endl;
151        return true;
152    }
153
154    /**
155    @brief
156        Get the PickupRepresentation with the given name.
157    @param name
158        The name of the PickupRepresentation.
159    @return
160        Returns a pointer to the PickupRepresentation.
161    */
162    PickupRepresentation* PickupManager::getRepresentation(const std::string& name)
163    {
164        std::map<std::string, PickupRepresentation*>::iterator it = this->representations_.find(name);
165        if(it == this->representations_.end()) // If there is no PickupRepresentation associated with the input name.
166        {
167            orxout(verbose, context::pickups) << "PickupManager::getRepresentation() returned default representation." << endl;
168            return this->defaultRepresentation_;
169        }
170
171        return it->second;
172    }
173
174    /**
175    @brief
176        Is called by the PickupListener to notify the PickupManager, that the input Pickupable has transited to the input used state.
177    @param pickup
178        The Pickupable whose used status changed.
179    @param used
180        The used status the Pickupable changed to.
181    */
182    void PickupManager::pickupChangedUsed(Pickupable* pickup, bool used)
183    {
184        assert(pickup);
185
186        if(!GameMode::isMaster()) // If this is neither standalone nor the server.
187            return;
188
189        CollectiblePickup* collectible = orxonox_cast<CollectiblePickup*>(pickup);
190        // If the Pickupable is part of a PickupCollection it isn't displayed in the PickupInventory, just the PickupCollection is.
191        if(collectible != nullptr && collectible->isInCollection())
192            return;
193
194        // Getting clientId of the host this change of the pickup's used status concerns.
195        PickupCarrier* carrier = pickup->getCarrier();
196        while(carrier->getCarrierParent() != nullptr)
197            carrier = carrier->getCarrierParent();
198        Pawn* pawn = orxonox_cast<Pawn*>(carrier);
199        if(pawn == nullptr)
200            return;
201        PlayerInfo* info = pawn->getPlayer();
202        if(info == nullptr)
203            return;
204        unsigned int clientId = info->getClientID();
205
206        // Get the number identifying the pickup.
207        std::map<Pickupable*, uint32_t>::iterator it = this->indexes_.find(pickup);
208        assert(it != this->indexes_.end());
209        uint32_t index = it->second;
210
211        // If we're either in standalone mode or this is the host whom the change of the pickup's status concerns.
212        if(GameMode::isStandalone() || Host::getPlayerID() == clientId)
213        {
214            PickupManager::pickupChangedUsedNetwork(index, used, pickup->isUsable(), pickup->isUnusable());
215        }
216        // If the concerned host is somewhere in the network, we call pickupChangedUsedNetwork() on its PickupManager.
217        else
218        {
219            callStaticNetworkFunction(&PickupManager::pickupChangedUsedNetwork, clientId, index, used, pickup->isUsable(), pickup->isUnusable());
220        }
221    }
222
223    /**
224    @brief
225        Helper method to react to the change in the used status of a Pickupable.
226        Static method that is used by the server to inform the client it concerns about the status change.
227        The parameters that are given are used to update the information (i.e. the PickupInventoryContainer) the concerning PickupManager has about the Pickupable that changed.
228    @param pickup
229        A number identifying the Pickupable that changed its used status.
230    @param inUse
231        The used status the Pickupable changed to. (i.e. whether the Pickupable is in use or not).
232    @param usable
233        Whether the Pickupable's used status can be changed used in the PickupInventory.
234    @param unusable
235        Whether the Pickupable's used status can be changed to unused in the PickupInventory.
236    */
237    /*static*/ void PickupManager::pickupChangedUsedNetwork(uint32_t pickup, bool inUse, bool usable, bool unusable)
238    {
239        PickupManager& manager = PickupManager::getInstance(); // Get the PickupManager singleton on this host.
240        // If the input Pickupable (i.e its identifier) is not present in the list the PickupManager has.
241        if(manager.pickupInventoryContainers_.find(pickup) == manager.pickupInventoryContainers_.end())
242        {
243            orxout(internal_error, context::pickups) << "Pickupable &(" << pickup << ") was not registered with PickupManager for the PickupInventory, when it changed used." << endl;
244            return;
245        }
246
247        // Update the Pickupable's container with the information transferred.
248        manager.pickupInventoryContainers_[pickup]->inUse = inUse;
249        manager.pickupInventoryContainers_[pickup]->usable = usable;
250        manager.pickupInventoryContainers_[pickup]->unusable = unusable;
251
252        manager.updateGUI(); // Tell the PickupInventory that something has changed.
253    }
254
255    /**
256    @brief
257        Is called by the PickupListener to notify the PickupManager, that the input Pickupable has transited to the input pickedUp state.
258    @param pickup
259        The Pickupable whose pickedUp status changed.
260    @param pickedUp
261        The pickedUp status the Pickupable changed to.
262    */
263    void PickupManager::pickupChangedPickedUp(Pickupable* pickup, bool pickedUp)
264    {
265        assert(pickup);
266
267        orxout() << "just got called"<<endl;
268        for (HUDPickupSystem* hud : ObjectList<HUDPickupSystem>())
269            pickupSystem = hud;
270       
271        if(!GameMode::isMaster()) // If this is neither standalone nor the server.
272            return;
273
274        CollectiblePickup* collectible = orxonox_cast<CollectiblePickup*>(pickup);
275        // If the Pickupable is part of a PickupCollection it isn't displayed in the PickupInventory, just the PickupCollection is.
276        if(collectible != nullptr && collectible->isInCollection())
277            return;
278
279        // Getting clientId of the host this change of the pickup's pickedUp status concerns.
280        PickupCarrier* carrier = pickup->getCarrier();
281        while(carrier->getCarrierParent() != nullptr)
282            carrier = carrier->getCarrierParent();
283        Pawn* pawn = orxonox_cast<Pawn*>(carrier);
284        if(pawn == nullptr)
285            return;
286        PlayerInfo* info = pawn->getFormerPlayer();
287        if(info == nullptr)
288            return;
289        unsigned int clientId = info->getClientID();
290
291        uint32_t index = 0;
292        if(pickedUp) // If the Pickupable has changed to picked up, it is added to the required lists.
293        {
294            index = this->getPickupIndex(); // Get a new identifier (index) for the Pickupable.
295            // Add the Pickupable to the indexes_ and pickups_ lists.
296            this->indexes_[pickup] = index;
297            this->pickups_[index] = pickup;
298
299            this->picks.push_back(pickup);
300
301            if(pickupSystem)
302                pickupSystem->sync(picks, indexes_);
303           
304        }
305        else // If it was dropped, it is removed from the required lists.
306        {
307            // Get the indentifier (index) that identifies the input Pickupable.
308            std::map<Pickupable*, uint32_t>::iterator it = this->indexes_.find(pickup);
309            index = it->second;
310
311            this->indexes_.erase(pickup);
312            this->pickups_.erase(index); //set to null, so that can be identified as free slot by getPickupIndex()
313
314
315            this->picks.erase(std::remove(this->picks.begin(), this->picks.end(), pickup), this->picks.end()); //remove pickup from vector
316
317            if(pickupSystem)
318                pickupSystem->sync(picks, indexes_);
319            orxout() << "end of pickupChangedPickedUp" << endl;
320        }
321
322        // If we're either in standalone mode or this is the host whom the change of the pickup's status concerns.
323        if(GameMode::isStandalone() || Host::getPlayerID() == clientId)
324        {
325            // If there is no PickupRepresentation registered the default representation is used.
326            if(this->representations_.find(pickup->getRepresentationName()) == this->representations_.end())
327                PickupManager::pickupChangedPickedUpNetwork(index, pickup->isUsable(), this->defaultRepresentation_->getObjectID(), pickup->getRepresentationName(), pickedUp);
328            else
329                PickupManager::pickupChangedPickedUpNetwork(index, pickup->isUsable(), this->representations_[pickup->getRepresentationName()]->getObjectID(), pickup->getRepresentationName(), pickedUp);
330        }
331        // If the concerned host is somewhere in the network, we call pickupChangedPickedUpNetwork() on its PickupManager.
332        else
333        {
334            // If there is no PickupRepresentation registered the default representation is used.
335            if(this->representations_.find(pickup->getRepresentationName()) == this->representations_.end())
336            {
337                callStaticNetworkFunction(&PickupManager::pickupChangedPickedUpNetwork, clientId, index, pickup->isUsable(), this->defaultRepresentation_->getObjectID(), pickedUp);
338            }
339            else
340            {
341                callStaticNetworkFunction(&PickupManager::pickupChangedPickedUpNetwork, clientId, index, pickup->isUsable(), this->representations_[pickup->getRepresentationName()]->getObjectID(), pickedUp);
342            }
343        }
344
345    }
346
347    //This function is called by the command line or by the key binding
348    //it uses or unuses the pickup, depending on its current state
349    //or drops it (depends what you comment/uncomment)
350    void PickupManager::useUnusePickup(uint32_t index) 
351    {
352        PickupManager& manager = PickupManager::getInstance();
353
354        if(!manager.pickups_.count(index)) return; //if pickup is no longer here, dont do anything
355
356        Pickupable* pickup=manager.pickups_.find(index)->second;
357        if(pickup==nullptr)
358        {
359            return;                       //pickup does not exist
360        }
361
362        //if the pickup should be dropped upon key press
363        manager.dropPickup(index);
364
365        //if the pickup should be used/unused upon key press
366
367        // if(pickup->isUsed())
368        //     manager.usePickup(index, false);
369        // else
370        //     manager.usePickup(index, true);
371    }
372
373
374    /**
375    @brief
376        Helper method to react to the change in the pickedUp status of a Pickupable.
377        Static method that is used by the server to inform the client it concerns about the status change.
378        The parameters that are given are used to update the information (i.e. the PickupInventoryContainer) the concerning PickupManager has about the Pickupable that changed.
379    @param pickup
380        A number identifying the Pickupable that changed its pickedUp status.
381    @param usable
382        Whether the Pickupable's used status can be changed to used in the PickupInventory.
383    @param representationObjectId
384        The objectId identifying (over the network) the PickupRepresentation that represents this Pickupable.
385    @param representationName
386        The name of the associated PickupRepresentation
387    @param pickedUp
388        The pickedUp status the Pickupable changed to.
389    */
390    /*static*/ void PickupManager::pickupChangedPickedUpNetwork(uint32_t pickup, bool usable, uint32_t representationObjectId, const std::string& representationName, bool pickedUp)
391    {
392        PickupManager& manager = PickupManager::getInstance(); // Get the PickupManager singleton on this host.
393        // If the Pickupable has been picked up, we create a new PickupInventoryContainer for it.
394        if(pickedUp)
395        {
396            // Create a new PickupInventoryContainer for the Pickupable and set all the necessary information.
397            PickupInventoryContainer* container = new PickupInventoryContainer;
398            container->pickup = pickup;
399            container->inUse = false;
400            container->pickedUp = pickedUp;
401            container->usable = usable;
402            container->unusable = false;
403            container->representationObjectId = representationObjectId;
404            container->representationName = representationName;
405            // Insert the container into the pickupInventoryContainers_ list.
406            manager.pickupInventoryContainers_.insert(std::pair<uint32_t, PickupInventoryContainer*>(pickup, container));
407
408            manager.updateGUI(); // Tell the PickupInventory that something has changed.
409        }
410        // If the Pickupable has been dropped, we remove it from the pickupInventoryContainers_ list.
411        else
412        {
413            std::map<uint32_t, PickupInventoryContainer*>::iterator it = manager.pickupInventoryContainers_.find(pickup);
414            if(it != manager.pickupInventoryContainers_.end())
415                delete it->second;
416            manager.pickupInventoryContainers_.erase(pickup);
417
418            manager.updateGUI(); // Tell the PickupInventory that something has changed.
419        }
420    }
421
422    /**
423    @brief
424        Get the number of pickups currently picked up by the player.
425        This method is used in lua to populate the PickupInventory. The intended usage is to call this method to reset the iterator of the list of PickupInventoryContainers and then use popPickup() to get the individual PickupInventoryContainers.
426    @return
427        Returns the number of the players picked up Pickupables.
428    */
429    int PickupManager::getNumPickups(void)
430    {
431        this->pickupsIterator_ = this->pickupInventoryContainers_.begin(); // Reset iterator.
432
433        return this->pickupInventoryContainers_.size();
434    }
435
436    /**
437    @brief
438        Drop the input Pickupable.
439        This method checks whether the input Pickupable still exists and drops it, if so.
440    @param pickup
441        The identifier of the Pickupable to be dropped.
442    */
443    void PickupManager::dropPickup(uint32_t pickup)
444    {
445        // If we're either server or standalone and the list of pickups is not empty, we find and drop the input pickup.
446        if(GameMode::isMaster())
447        {
448            if(this->pickups_.empty())
449                return;
450            Pickupable* pickupable = this->pickups_.find(pickup)->second;
451            if(pickupable != nullptr)
452            {
453                pickupable->drop();
454
455            }
456        }
457        // If we're neither server nor standalone we drop the pickup by calling dropPickupNetworked() of the PickupManager on the server.
458        else
459        {
460            callStaticNetworkFunction(&PickupManager::dropPickupNetworked, 0, pickup);
461        }
462    }
463
464    /**
465    @brief
466        Helper method to drop the input pickup on the server.
467        Static method that is used by clients to instruct the server to drop the input pickup.
468    @param pickup
469        The identifier of the Pickupable to be dropped.
470    */
471    /*static*/ void PickupManager::dropPickupNetworked(uint32_t pickup)
472    {
473        if(GameMode::isServer()) // Obviously we only want to do this on the server.
474        {
475            PickupManager& manager = PickupManager::getInstance();
476            manager.dropPickup(pickup);
477        }
478    }
479
480    /**
481    @brief
482        Use (or unuse) the input Pickupable.
483        This method checks whether the input Pickupable still exists and uses (or unuses) it, if so,
484    @param pickup
485        The identifier of the Pickupable to be used (or unused).
486    @param use
487        If true the input Pickupable is used, if false it is unused.
488    */
489    void PickupManager::usePickup(uint32_t pickup, bool use)
490    {
491        // If we're either server or standalone and the list of pickups is not empty, we find and change the used status of the input pickup.
492        if(GameMode::isMaster())
493        {
494            if(this->pickups_.empty())
495                return;
496            Pickupable* pickupable = this->pickups_.find(pickup)->second;
497            if(pickupable != nullptr)
498                pickupable->setUsed(use);
499        }
500        // If we're neither server nor standalone we change the used status of the pickup by calling usePickupNetworked() of the PickupManager on the server.
501        else
502        {
503            callStaticNetworkFunction(&PickupManager::usePickupNetworked, 0, pickup, use);
504        }
505    }
506
507    /**
508    @brief
509        Helper method to use (or unuse) the input Pickupable on the server.
510        Static method that is used by clients to instruct the server to use (or unuse) the input pickup.
511    @param pickup
512        The identifier of the Pickupable to be used (or unused).
513    @param use
514        If true the input Pickupable is used, if false it is unused.
515    */
516    /*static*/ void PickupManager::usePickupNetworked(uint32_t pickup, bool use)
517    {
518        if(GameMode::isServer())
519        {
520            PickupManager& manager = PickupManager::getInstance();
521            manager.usePickup(pickup, use);
522        }
523    }
524
525    /**
526    @brief
527        Updates the PickupInventory GUI.
528        Also loads the PickupInventory GUI if is hasn't been done already.
529    */
530    inline void PickupManager::updateGUI(void)
531    {
532        // We only need to update (and load) the GUI if this host shows graphics.
533        if(GameMode::showsGraphics())
534        {
535            if(!this->guiLoaded_) // If the GUI hasn't been loaded, yet, we load it.
536            {
537                GUIManager::getInstance().loadGUI(PickupManager::guiName_s);
538                this->guiLoaded_ = true;
539            }
540
541            // Update the GUI.
542            GUIManager::getInstance().getLuaState()->doString(PickupManager::guiName_s + ".update()");
543        }
544    }
545
546    /**
547    @brief
548        Get a new index between 0 and 9 for a Pickupable.
549        If all slots are occupied, the Pickupable in the first slot will be dropped.
550    @return
551        Returns the new index.
552    */
553    uint32_t PickupManager::getPickupIndex(void)
554    {
555        //check if there are free slots available
556
557        for(uint32_t i=0; i<10; i++)
558        {
559            if(!pickups_.count(i)) return i;
560        }
561        //all slots are full and we have to drop sth
562        orxout(internal_info, context::pickups) << "everything was full and we have now dropped the first element" << endl;
563        this->dropPickup(0);
564        return 0;
565    }
566
567}
Note: See TracBrowser for help on using the repository browser.