| [230] | 1 | // |
|---|
| 2 | // C++ Implementation: Server |
|---|
| 3 | // |
|---|
| [285] | 4 | // Description: |
|---|
| [230] | 5 | // |
|---|
| 6 | // |
|---|
| 7 | // Author: Oliver Scheuss, (C) 2007 |
|---|
| 8 | // |
|---|
| 9 | // Copyright: See COPYING file that comes with this distribution |
|---|
| 10 | // |
|---|
| 11 | // |
|---|
| 12 | |
|---|
| 13 | |
|---|
| [285] | 14 | #include "Server.h" |
|---|
| [230] | 15 | |
|---|
| 16 | namespace network{ |
|---|
| [285] | 17 | |
|---|
| [230] | 18 | /** |
|---|
| 19 | * Constructor for default values (bindaddress is set to ENET_HOST_ANY |
|---|
| [285] | 20 | * |
|---|
| [230] | 21 | */ |
|---|
| 22 | Server::Server(){ |
|---|
| [369] | 23 | connection = ConnectionManager(); |
|---|
| 24 | gamestates = GameStateManager(); |
|---|
| 25 | packet_gen = PacketGenerator(); |
|---|
| [230] | 26 | } |
|---|
| [285] | 27 | |
|---|
| [230] | 28 | /** |
|---|
| 29 | * Constructor |
|---|
| 30 | * @param port Port to listen on |
|---|
| 31 | * @param bindAddress Address to listen on |
|---|
| 32 | */ |
|---|
| [369] | 33 | Server::Server(int port, std::string bindAddress){ |
|---|
| 34 | connection = ConnectionManager(port, bindAddress); |
|---|
| 35 | gamestates = GameStateManager(); |
|---|
| 36 | packet_gen = PacketGenerator(); |
|---|
| [230] | 37 | } |
|---|
| [285] | 38 | |
|---|
| [230] | 39 | /** |
|---|
| 40 | * Constructor |
|---|
| 41 | * @param port Port to listen on |
|---|
| 42 | * @param bindAddress Address to listen on |
|---|
| 43 | */ |
|---|
| [369] | 44 | Server::Server(int port, const char *bindAddress){ |
|---|
| 45 | connection = ConnectionManager(port, bindAddress); |
|---|
| 46 | gamestates = GameStateManager(); |
|---|
| 47 | packet_gen = PacketGenerator(); |
|---|
| [230] | 48 | } |
|---|
| [369] | 49 | |
|---|
| 50 | /** |
|---|
| 51 | * This function opens the server by creating the listener thread |
|---|
| 52 | */ |
|---|
| 53 | void Server::open(){ |
|---|
| 54 | connection.createListener(); |
|---|
| 55 | return; |
|---|
| 56 | } |
|---|
| 57 | |
|---|
| 58 | /** |
|---|
| 59 | * This function closes the server |
|---|
| 60 | */ |
|---|
| 61 | void Server::close(){ |
|---|
| 62 | connection.quitListener(); |
|---|
| 63 | return; |
|---|
| 64 | } |
|---|
| 65 | |
|---|
| 66 | /** |
|---|
| 67 | * This function sends out a message to all clients |
|---|
| 68 | * @param msg message |
|---|
| 69 | * @return true/false |
|---|
| 70 | */ |
|---|
| 71 | bool Server::sendMSG(std::string msg){ |
|---|
| 72 | ENetPacket *packet = packet_gen.chatMessage(msg.c_str()); |
|---|
| 73 | connection.addPacketAll(packet); |
|---|
| 74 | return connection.sendPackets(); |
|---|
| 75 | } |
|---|
| 76 | /** |
|---|
| 77 | * This function sends out a message to all clients |
|---|
| 78 | * @param msg message |
|---|
| 79 | * @return true/false |
|---|
| 80 | */ |
|---|
| 81 | bool Server::sendMSG(const char *msg){ |
|---|
| 82 | ENetPacket *packet = packet_gen.chatMessage(msg); |
|---|
| 83 | connection.addPacketAll(packet); |
|---|
| 84 | return connection.sendPackets(); |
|---|
| 85 | } |
|---|
| 86 | |
|---|
| 87 | void Server::tick(){ |
|---|
| 88 | } |
|---|
| 89 | |
|---|
| [230] | 90 | } |
|---|