Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/mergeFS18/src/libraries/network/ClientConnectionListener.cc

Last change on this file was 12027, checked in by merholzl, 6 years ago

Merged Masterserver, refresh button had to be removed

  • Property svn:eol-style set to native
File size: 2.0 KB
RevLine 
[2896]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
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[1938]29#include "ClientConnectionListener.h"
[3214]30
[1938]31#include "core/CoreIncludes.h"
[2896]32#include "core/GameMode.h"
[1938]33
[5929]34namespace orxonox
35{
[10624]36    RegisterAbstractClass(ClientConnectionListener).inheritsFrom<Listable>();
[9667]37
[12027]38    /**
39     * Constructor
40     * Register the object
41     */
[5929]42    ClientConnectionListener::ClientConnectionListener()
[6417]43    {
[9667]44        RegisterObject(ClientConnectionListener);
[5929]45    }
[1938]46
[12027]47    /**
48     * Call clientConnected() on all ClientConnectionListeners.
49     * @param clientID The ID of the newly connected client
50     */
[5929]51    void ClientConnectionListener::broadcastClientConnected(unsigned int clientID)
52    {
[11071]53        for (ClientConnectionListener* listener : ObjectList<ClientConnectionListener>())
54            listener->clientConnected(clientID);
[5929]55    }
[6417]56
[12027]57    /**
58     * Call clientDisconnected() on all ClientConnectionListeners.
59     * @param clientID The ID of the newly disconnected client
60     */
[5929]61    void ClientConnectionListener::broadcastClientDisconnected(unsigned int clientID)
62    {
[11071]63        for (ClientConnectionListener* listener : ObjectList<ClientConnectionListener>())
64            listener->clientDisconnected(clientID);
[5929]65    }
[1938]66}
67
68
Note: See TracBrowser for help on using the repository browser.