Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/network/dummyserver3.cc @ 1061

Last change on this file since 1061 was 1056, checked in by landauf, 18 years ago

don't panic, no codechanges!
added a link to www.orxonox.net

File size: 1.8 KB
RevLine 
[1056]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, (C) 2007
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[440]29#include <iostream>
[777]30
31#include "util/Sleep.h"
[475]32#include "PacketManager.h"
[781]33#include "PacketTypes.h"
[440]34#include "Server.h"
35
[777]36namespace network
37{
[533]38
[777]39  class dummyserver3 : public Server
40  {
[440]41  public:
[777]42    dummyserver3();
43    ~dummyserver3();
44    void loop();
[440]45  private:
[777]46    void tick();
47    void processChat( chat *data, int clientId);
[440]48
49
[777]50  };
51
52  dummyserver3::dummyserver3(){
[444]53  }
[777]54  dummyserver3::~dummyserver3(){
55  }
[440]56
[777]57  void dummyserver3::loop(){
58    open();
59    while(true){
60      tick();
61      usleep(100);
62    }
63  }
[440]64
[777]65  void dummyserver3::processChat( chat *data, int clientId){
66    std::cout << "Client " << clientId << " sent: " << data->message << std::endl;
67    sendMSG(data->message);
68  }
[440]69
[777]70  void dummyserver3::tick(){
71    processQueue();
72  }
[441]73
[440]74}
75
[441]76int main(int argc, char **argv[]){
77  network::dummyserver3 server;
78  server.loop();
[1056]79  return 0;
[440]80}
Note: See TracBrowser for help on using the repository browser.