Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 31, 2007, 7:40:23 PM (16 years ago)
Author:
rgrieder
Message:
  • added dll support to the network library
  • improved header file dependency in network
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/dummyclient2.cc

    r660 r777  
    11/*
    2  *   ORXONOX - the hottest 3D action shooter ever to exist
    3  *
    4  *
    5  *   License notice:
    6  *
    7  *   This program is free software; you can redistribute it and/or
    8  *   modify it under the terms of the GNU General Public License
    9  *   as published by the Free Software Foundation; either version 2
    10  *   of the License, or (at your option) any later version.
    11  *
    12  *   This program is distributed in the hope that it will be useful,
    13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
    14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15  *   GNU General Public License for more details.
    16  *
    17  *   You should have received a copy of the GNU General Public License
    18  *   along with this program; if not, write to the Free Software
    19  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    20  *
    21  *   Author:
    22  *      Oliver Scheuss, (C) 2007
    23  *   Co-authors:
    24  *      ...
    25  *
    26  */
     2*   ORXONOX - the hottest 3D action shooter ever to exist
     3*
     4*
     5*   License notice:
     6*
     7*   This program is free software; you can redistribute it and/or
     8*   modify it under the terms of the GNU General Public License
     9*   as published by the Free Software Foundation; either version 2
     10*   of the License, or (at your option) any later version.
     11*
     12*   This program is distributed in the hope that it will be useful,
     13*   but WITHOUT ANY WARRANTY; without even the implied warranty of
     14*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15*   GNU General Public License for more details.
     16*
     17*   You should have received a copy of the GNU General Public License
     18*   along with this program; if not, write to the Free Software
     19*   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
     20*
     21*   Author:
     22*      Oliver Scheuss, (C) 2007
     23*   Co-authors:
     24*      ...
     25*
     26*/
    2727
    2828//
     
    3434#include <string>
    3535#include <enet/enet.h>
     36
     37#include "util/Sleep.h"
    3638#include "PacketManager.h"
    3739#include "ClientConnection.h"
    38 
    39 #ifdef WIN32
    40 #include <windows.h>
    41 #define usleep(x) Sleep((x)/1000)
    42 #else
    43 #include <unistd.h>
    44 #endif
    4540
    4641using namespace network;
     
    7166
    7267  for(int i=0; i<10; i++){
    73         // weihnachtsmann bringt packete
    74         // extend the packet and append the string foo to it
    75         // send packet to peer on channel id 0
     68    // weihnachtsmann bringt packete
     69    // extend the packet and append the string foo to it
     70    // send packet to peer on channel id 0
    7671    client.addPacket(pck.chatMessage("test"));
    77         // keep the timeout very small for low delay
     72    // keep the timeout very small for low delay
    7873    if(client.sendPackets(&event)){
    7974      std::cout << "successfully sent: " << event.type << std::endl;
     
    8176      std::cout << "failed sending" << std::endl;
    8277    }
    83 //    usleep(1000000);
     78    //    usleep(1000000);
    8479  }
    8580  usleep(1000000);
    86         // now disconnect
     81  // now disconnect
    8782  if(client.closeConnection())
    8883    std::cout << "Connection successfully closed" << std::endl;
     
    9085    std::cout << "Connection closing failed" << std::endl;
    9186
    92         // 3 seconds timeout
     87  // 3 seconds timeout
    9388  return 0;
    9489}
Note: See TracChangeset for help on using the changeset viewer.