Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/water/src/lib/network/udp_server_socket.cc @ 8467

Last change on this file since 8467 was 8362, checked in by bensch, 18 years ago

orxonox/trunk: removed stupid included in base_object.h
this should lead to faster compile-times

File size: 6.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Christoph Renner
13   co-programmer:
14*/
15
16#include "udp_server_socket.h"
17#include "debug.h"
18
19
20
21/**
22 * constructor
23 * @param port port to listen on
24 */
25UdpServerSocket::UdpServerSocket( int port ) : ServerSocket( port )
26{
27  packet = SDLNet_AllocPacket( UDP_PACKET_SIZE );
28
29  if ( !packet )
30  {
31    PRINTF(1)("SDLNet_AllocPacket: %s\n", SDLNet_GetError());
32
33    assert( false );
34    bOk = false;
35  }
36
37  memset( packet->data, 0, UDP_PACKET_SIZE );
38
39  listen( port );
40}
41
42/**
43 * default destructor
44 */
45UdpServerSocket::~UdpServerSocket( )
46{
47  for ( int i = 0; i < (int)packetBuffer.size(); i++ )
48    removeUserPackets( i );
49
50  if ( packet )
51    SDLNet_FreePacket( packet );
52
53  if ( socket )
54    SDLNet_UDP_Close( socket );
55}
56
57/**
58 * tell udpServerSocket to recieve packets on port
59 * @param port port
60 * @return true on success
61 */
62bool UdpServerSocket::listen( unsigned int port )
63{
64  socket = SDLNet_UDP_Open( port );
65
66  PRINTF(0)("listening on port: %d\n", port);
67
68  if ( !socket )
69  {
70
71    bOk = false;
72    return false;
73  }
74
75  return true;
76}
77
78/**
79 * get newly connected socket. note
80 * @return new socket or NULL if no new socket exists
81 */
82NetworkSocket * UdpServerSocket::getNewSocket( void )
83{
84  NetworkSocket * result = NULL;
85
86  if ( newSocketList.size() > 0 )
87  {
88    result = newSocketList.front();
89
90    newSocketList.pop_front();
91  }
92
93  return result;
94}
95
96/**
97 * stop listening on server
98 */
99void UdpServerSocket::close( )
100{
101
102  for ( int i = 0; i < (int)packetBuffer.size(); i++ )
103    removeUserPackets( i );
104
105  packetBuffer.clear();
106  userList.clear();
107
108  SDLNet_UDP_Close( socket );
109  socket = NULL;
110}
111
112/**
113 * clean up users buffer
114 * @param userId users userid
115 */
116void UdpServerSocket::removeUserPackets( int userId )
117{
118  if ( userId >= (int)packetBuffer.size() )
119    return;
120
121  for ( NetworkPacketList::iterator it = packetBuffer[userId].begin(); it!=packetBuffer[userId].end(); it++ )
122  {
123    if ( it->data )
124    {
125      free( it->data );
126      it->data = NULL;
127    }
128  }
129
130  packetBuffer[userId].clear();
131}
132
133/**
134 * get next packet for user
135 * @param userId user id
136 * @return recieved packet or packet with length 0 if no packet available
137 */
138NetworkPacket UdpServerSocket::getPacket( int userId )
139{
140  NetworkPacket res;
141  res.data = NULL;
142  res.length = 0;
143
144  if ( (int)packetBuffer.size() > userId && (int)packetBuffer[userId].size() > 0 )
145  {
146    res.data = packetBuffer[userId].front().data;
147    res.length = packetBuffer[userId].front().length;
148    packetBuffer[userId].pop_front();
149
150    if ( res.length == 0 )
151      res.length = -1;
152  }
153
154  return res;
155}
156
157/**
158 * get number of packets recieved for user
159 * @param userId user id
160 * @return number of packets in buffer
161 */
162int UdpServerSocket::getPacketCount( int userId )
163{
164  if ( userId >= (int)packetBuffer.size() )
165    return -1;
166
167  return packetBuffer[userId].size();
168}
169
170/**
171 * will set user state
172 * @param userId users id
173 * @param ip users host / port
174 */
175void UdpServerSocket::initUser( int userId, IPaddress ip )
176{
177  int channel = SDLNet_UDP_Bind( socket, userId, &ip );
178  if( channel != userId )
179  {
180    PRINTF(1)("SDLNet_UDP_Bind: %s\n", SDLNet_GetError());
181    assert(false);
182    return;
183  }
184
185  if ( userId < (int)packetBuffer.size() )
186    removeUserPackets( userId );
187
188  if ( (int)packetBuffer.size() <= userId )
189    packetBuffer.resize( userId + 1 );
190
191  if ( (int)userList.size() <= userId )
192    userList.resize( userId + 1 );
193
194  userList[ userId ] = ip;
195}
196
197/**
198 * remove user from list
199 * @param userId user id
200 */
201void UdpServerSocket::removeUser( int userId )
202{
203  removeUserPackets( userId );
204
205  if ( userId >= (int)userList.size() )
206    return;
207
208  userList[userId].host = 0;
209  userList[userId].port = 0;
210
211  SDLNet_UDP_Unbind( socket, userId );
212}
213
214/**
215 * send one packet to client associated to userId
216 * @param networkPacket packet to send
217 * @param userId users id
218 * @return true on success
219 */
220bool UdpServerSocket::sendPacket( NetworkPacket networkPacket , int userId )
221{
222  assert( networkPacket.length <= UDP_PACKET_SIZE );
223
224  memcpy( packet->data, networkPacket.data, networkPacket.length );
225  packet->len = networkPacket.length;
226  packet->channel = -1;
227
228  if ( SDLNet_UDP_Send( socket, userId, packet ) == 0 )
229  {
230    PRINTF(1)("SDLNet_UDP_Send: %s\n", SDLNet_GetError());
231    return false;
232  }
233
234  return true;
235}
236
237/**
238 * do periodically things
239 */
240void UdpServerSocket::update( )
241{
242  int res;
243  int newConn = 0;
244
245  for ( res = SDLNet_UDP_Recv( socket, packet ); res == 1; res = SDLNet_UDP_Recv( socket, packet ) )
246  {
247    int userId;
248    bool isNewConnection = false;
249
250    for ( userId =0; userId < (int)userList.size(); userId++ )
251      if ( userList[userId].host == packet->address.host && userList[userId].port == packet->address.port )
252        break;
253
254    if ( userId >= (int)userList.size() )
255    {
256
257      newConn++;
258      isNewConnection = true;
259
260      if ( newConn > MAX_NEW_CONNECTIONS )
261      {
262        PRINTF(2)("Too many new connections. Dropping packet\n");
263        continue;
264      }
265
266      for ( userId =0; userId < (int)userList.size(); userId++ )
267        if ( userList[userId].host == 0 && userList[userId].port == 0 )
268          break;
269
270      initUser( userId, packet->address );
271      UdpSocket * sock = new UdpSocket( this, packet->address, userId );
272      newSocketList.push_back( sock );
273      PRINTF(0)("NEW CONNECTION %x\n", packet->address.host );
274    }
275
276    //add new packet to packetbuffer
277
278    NetworkPacket networkPacket;
279    networkPacket.length = packet->len;
280    if ( packet->len != 0 )
281    {
282      networkPacket.data = (byte*)malloc( packet->len );
283      assert( networkPacket.data );
284    }
285    else
286    {
287      networkPacket.data = NULL;
288    }
289    memcpy( networkPacket.data, packet->data, packet->len );
290    packetBuffer[userId].push_back( networkPacket );
291
292  }
293
294  assert( res == 0 );
295}
Note: See TracBrowser for help on using the repository browser.