Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy2/src/orxonox/PlayerManager.cc @ 2461

Last change on this file since 2461 was 2344, checked in by rgrieder, 15 years ago

Completed destruction of static elements like XMLPort, Identifier, etc.
Of initially about 250 memory leaks (not in the actual meaning but the memory was never freed anyway) only 1 remains in TinyCpp.

  • Core class is now a normal Singleton that gets created and destroyed in main.
  • The same goes for Language, LuaBind, SignalHandler and PlayerManager.
  • Added a new std::set to the CommandExecutor so that the external ConsoleCommands can get destroyed too.
  • Code for destroying CommandLineArguments
  • Added destruction code for ConstructionCallbacks in Identifier
  • Moved internal identifier map (the one with the typeid(.) names) in a static function in Identifier. This was necessary in order to destroy ALL Identifiers with the static destruction function. Before it was possible to create an Identifier with having a class instance (that would call RegisterObject) for instance by simply accessing it via getIdentifier.
  • Removed a big memory leak in Button (forgot to destroy the ConfigValueContainers)
  • Added destruction code for InputBufferListenerTuples in InputBuffer destructor.
  • Added destruction code for load and save executors in both XMLPortParam and XMLPortObject
  • Added destruction code for ConsoleCommands in GSRoot, GSGraphics and GSLevel (temporary solution anyway)
  • Deleting the CEGUILua script module seems to work properly now, one memory leak less (GUIManager.cc)
  • Added global destruction calls in Main.cc
  • Property svn:eol-style set to native
File size: 3.3 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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "OrxonoxStableHeaders.h"
30#include "PlayerManager.h"
31
32#include "LevelManager.h"
33#include "core/Core.h"
34#include "core/CoreIncludes.h"
35#include "objects/Level.h"
36#include "objects/infos/HumanPlayer.h"
37
38namespace orxonox
39{
40    PlayerManager* PlayerManager::singletonRef_s = 0;
41
42    PlayerManager::PlayerManager()
43    {
44        RegisterRootObject(PlayerManager);
45
46        assert(singletonRef_s == 0);
47        singletonRef_s = this;
48
49        this->getConnectedClients();
50    }
51
52    PlayerManager::~PlayerManager()
53    {
54        assert(singletonRef_s);
55        singletonRef_s = 0;
56    }
57
58    void PlayerManager::clientConnected(unsigned int clientID)
59    {
60        if (Core::isMaster())
61        {
62            COUT(3) << "client connected" << std::endl;
63
64            // create new HumanPlayer instance
65            HumanPlayer* player = new HumanPlayer(0);
66            player->setClientID(clientID);
67
68            // add to clients-map
69            assert(!this->clients_[clientID]);
70            this->clients_[clientID] = player;
71
72            if (LevelManager::getInstancePtr() && LevelManager::getInstance().getActiveLevel())
73                LevelManager::getInstance().getActiveLevel()->playerEntered(player);
74        }
75    }
76
77    void PlayerManager::clientDisconnected(unsigned int clientID)
78    {
79        if (Core::isMaster())
80        {
81            COUT(3) << "client disconnected" << std::endl;
82
83            // remove from clients-map
84            PlayerInfo* player = this->clients_[clientID];
85            this->clients_.erase(clientID);
86
87            if (LevelManager::getInstancePtr() && LevelManager::getInstance().getActiveLevel())
88                LevelManager::getInstance().getActiveLevel()->playerLeft(player);
89
90            // delete PlayerInfo instance
91            if (player)
92                delete player;
93        }
94    }
95
96
97    PlayerInfo* PlayerManager::getClient(unsigned int clientID) const
98    {
99        if (Core::isMaster())
100        {
101            std::map<unsigned int, PlayerInfo*>::const_iterator it = this->clients_.find(clientID);
102            if (it != this->clients_.end())
103                return it->second;
104        }
105        else
106        {
107            for (ObjectList<PlayerInfo>::iterator it = ObjectList<PlayerInfo>::begin(); it != ObjectList<PlayerInfo>::end(); ++it)
108                if (it->getClientID() == clientID)
109                    return (*it);
110        }
111        return 0;
112    }
113}
Note: See TracBrowser for help on using the repository browser.