Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/bugger/src/network/packet/Welcome.cc @ 2532

Last change on this file since 2532 was 2531, checked in by rgrieder, 16 years ago

Merged revision 2371 to bugger branch.

  • Property svn:eol-style set to native
File size: 2.5 KB
RevLine 
[1711]1
2
3/*
4 *   ORXONOX - the hottest 3D action shooter ever to exist
5 *                    > www.orxonox.net <
6 *
7 *
8 *   License notice:
9 *
10 *   This program is free software; you can redistribute it and/or
11 *   modify it under the terms of the GNU General Public License
12 *   as published by the Free Software Foundation; either version 2
13 *   of the License, or (at your option) any later version.
14 *
15 *   This program is distributed in the hope that it will be useful,
16 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 *   GNU General Public License for more details.
19 *
20 *   You should have received a copy of the GNU General Public License
21 *   along with this program; if not, write to the Free Software
22 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
23 *
24 *   Author:
25 *      Oliver Scheuss, (C) 2008
26 *   Co-authors:
27 *      ...
28 *
29 */
30
31
[1705]32#include "Welcome.h"
[1711]33#include "network/Host.h"
[2531]34#include "network/synchronisable/Synchronisable.h"
[1732]35#include "core/CoreIncludes.h"
[1709]36#include <assert.h>
[1705]37
[2171]38namespace orxonox {
[1705]39namespace packet {
40
41#define PACKET_FLAGS_CLASSID  ENET_PACKET_FLAG_RELIABLE
42#define _PACKETID             0
43#define _CLIENTID             _PACKETID + sizeof(ENUM::Type)
[1907]44#define _SHIPID               _CLIENTID + sizeof(uint32_t)
[2531]45#define _ENDIANTEST           _SHIPID + sizeof(uint32_t)
[1705]46 
47  Welcome::Welcome( unsigned int clientID, unsigned int shipID )
[1711]48 : Packet()
[1705]49{
50  flags_ = flags_ | PACKET_FLAGS_CLASSID;
[1709]51  assert(getSize());
[1907]52  data_=new uint8_t[ getSize() ];
[1709]53  assert(data_);
[1713]54  *(packet::ENUM::Type *)(data_ + _PACKETID ) = packet::ENUM::Welcome;
[2531]55  *(uint32_t *)(data_ + _CLIENTID ) = clientID;
56  *(uint32_t *)(data_ + _SHIPID ) = shipID;
57  *(uint32_t *)(data_ + _ENDIANTEST ) = 0xFEDC4321;
[1705]58}
59
[1907]60Welcome::Welcome( uint8_t* data, unsigned int clientID )
[1711]61  : Packet(data, clientID)
[1705]62{
63}
64
65Welcome::~Welcome()
66{
67}
68
[1907]69uint8_t *Welcome::getData(){
[1705]70  return data_;
71}
72
73unsigned int Welcome::getSize() const{
[2531]74  return sizeof(packet::ENUM::Type) + 3*sizeof(uint32_t);
[1705]75}
76
77bool Welcome::process(){
78  unsigned int shipID, clientID;
[1907]79  clientID = *(uint32_t *)&data_[ _CLIENTID ];
80  shipID = *(uint32_t *)&data_[ _SHIPID ];
[2531]81  assert(*(uint32_t *)(data_ + _ENDIANTEST ) == 0xFEDC4321);
[1711]82  Host::setClientID(clientID);
83  Host::setShipID(shipID);
[1732]84  COUT(3) << "Welcome set clientId: " << clientID << " shipID: " << shipID << std::endl;
[1751]85  Synchronisable::setClient(true);
[1711]86  delete this;
[1705]87  return true;
88}
89
90
91} //namespace packet
[2171]92}//namespace orxonox
Note: See TracBrowser for help on using the repository browser.