summaryrefslogtreecommitdiff
path: root/src/net/network.cpp
blob: aa18e888b0124c1943fb2121cf4f2333a410d7db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/*
 *  The Mana World
 *  Copyright 2004 The Mana World Development Team
 *
 *  This file is part of The Mana World.
 *
 *  The Mana World is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  The Mana World is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with The Mana World; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  $Id$
 */

#include "network.h"

#include "messagehandler.h"
#include "messagein.h"
#include "messageout.h"

#include "../log.h"

Network::Network():
    mClient(0), mServer(0),
    mAddress(), mPort(0),
    mState(IDLE)
{
}

Network::~Network()
{
    clearHandlers();

    if (mState != IDLE && mState != NET_ERROR)
        disconnect();
}

bool Network::connect(const std::string &address, short port)
{
    if (mState != IDLE && mState != NET_ERROR)
    {
        logger->log("Tried to connect an already connected socket!");
        return false;
    }

    if (address.empty())
    {
        logger->log("Empty address given to Network::connect()!");
        mState = NET_ERROR;
        return false;
    }

    logger->log("Network::Connecting to %s:%i", address.c_str(), port);

    mAddress = address;
    mPort = port;

    mState = CONNECTING;

    mClient = enet_host_create (0, 1, 0, 0);

    if (!mClient)
    {
        logger->error("An error occurred while trying to create an ENet client.");
    }

    ENetAddress enetAddress;

    enet_address_set_host(&enetAddress, address.c_str());
    enetAddress.port = port;

    // Initiate the connection, allocating channel 0.
    mServer = enet_host_connect(mClient, &enetAddress, 1);

    if (mServer == 0)
    {
        logger->log("Unable to initiate connection to the server.");
        mState = NET_ERROR;
        return false;
    }

    return true;
}

void Network::disconnect()
{
    mState = IDLE;

    if (mServer)
    {
        enet_peer_disconnect(mServer, 0);
        enet_host_flush(mClient);
        enet_peer_reset(mServer);
        mServer = 0;
    }
}

void Network::registerHandler(MessageHandler *handler)
{
    const Uint16 *i = handler->handledMessages;

    while(*i)
    {
        mMessageHandlers[*i] = handler;
        i++;
    }

    handler->setNetwork(this);
}

void Network::unregisterHandler(MessageHandler *handler)
{
    for (const Uint16 *i = handler->handledMessages; *i; i++)
    {
        mMessageHandlers.erase(*i);
    }

    handler->setNetwork(0);
}

void Network::clearHandlers()
{
    MessageHandlerIterator i;
    for (i = mMessageHandlers.begin(); i != mMessageHandlers.end(); i++)
    {
        i->second->setNetwork(0);
    }
    mMessageHandlers.clear();
}

void Network::dispatchMessages()
{
    while (!mIncomingPackets.empty())
    {
        ENetPacket *packet = mIncomingPackets.front();
        MessageIn msg((const char *)packet->data, packet->dataLength);

        MessageHandlerIterator iter = mMessageHandlers.find(msg.getId());

        printf("Received packet: %x\n", msg.getId());

        if (iter != mMessageHandlers.end())
            iter->second->handleMessage(&msg);
        else
            logger->log("Unhandled packet: %x", msg.getId());
        mIncomingPackets.pop();
        // Clean up the packet now that we're done using it.
        enet_packet_destroy(packet);
    }
}

void Network::flush()
{
    if (mState == IDLE || mState == NET_ERROR)
    {
        return;
    }

    ENetEvent event;

    // Wait up to 10 milliseconds for an event.
    while (enet_host_service(mClient, &event, 10) > 0)
    {
        switch (event.type)
        {
            case ENET_EVENT_TYPE_CONNECT:
                mState = CONNECTED;
                // Store any relevant server information here.
                event.peer->data = 0;
                break;

            case ENET_EVENT_TYPE_RECEIVE:
                mIncomingPackets.push(event.packet);
                break;
            case ENET_EVENT_TYPE_DISCONNECT:
                mState = IDLE;
                printf("Disconnected\n");
                // Reset the server information.
                event.peer->data = 0;
                break;
            default:
                logger->log("Unhandled enet event.");
                break;
        }
    }

    // If connected, manage incoming and outcoming packets
    if (isConnected())
    {
        while (isConnected() && !mOutgoingPackets.empty())
        {
            ENetPacket *packet = mOutgoingPackets.front();
            enet_peer_send(mServer, 0, packet);
            mOutgoingPackets.pop();
        }

        dispatchMessages();
    }
}

void Network::send(MessageOut *msg)
{
    if (mState == IDLE || mState == NET_ERROR)
    {
        return;
    }

    ENetPacket *packet = enet_packet_create(msg->getData(),
            msg->getDataSize() + 1, ENET_PACKET_FLAG_RELIABLE);
    mOutgoingPackets.push(packet);
}

char *iptostring(int address)
{
    static char asciiIP[16];

    sprintf(asciiIP, "%i.%i.%i.%i",
            (unsigned char)(address),
            (unsigned char)(address >> 8),
            (unsigned char)(address >> 16),
            (unsigned char)(address >> 24));

    return asciiIP;
}