frodo-wii/Src/Network.cpp

1005 lines
23 KiB
C++
Raw Normal View History

2009-01-19 07:44:19 +01:00
/*
* Network.h - Network handling
*
* Frodo (C) 2009 Simon Kagstrom
*
* This program 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
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sysdeps.h"
#include "Network.h"
#include "Display.h"
#include "menu.h"
2009-01-19 07:44:19 +01:00
#define N_SQUARES_W 16
#define N_SQUARES_H 8
2009-01-19 07:44:19 +01:00
#define SQUARE_W (DISPLAY_X / N_SQUARES_W)
#define SQUARE_H (DISPLAY_Y / N_SQUARES_H)
#define SQUARE_TO_X(square) ( ((square) % N_SQUARES_W) * SQUARE_W )
#define SQUARE_TO_Y(square) ( ((square) / N_SQUARES_W) * SQUARE_H )
2009-01-28 21:57:48 +01:00
/* Worst cases for RLE and DIFF */
#define RAW_SIZE ( (SQUARE_W * SQUARE_H) / 2 )
#define RLE_SIZE ( RAW_SIZE * 4 + 8)
#define DIFF_SIZE ( RAW_SIZE * 4 + 8)
2009-01-19 07:44:19 +01:00
Network::Network(const char *remote_host, int port, bool is_master)
2009-01-24 16:48:43 +01:00
{
const size_t size = NETWORK_UPDATE_SIZE;
this->is_master = is_master;
this->connected = false;
/* "big enough" buffer */
2009-01-24 16:48:43 +01:00
this->ud = (NetworkUpdate*)malloc( size );
this->tmp_ud = (NetworkUpdate*)malloc( size );
assert(this->ud && this->tmp_ud);
2009-01-24 16:48:43 +01:00
this->ResetNetworkUpdate();
this->traffic = 0;
this->last_traffic = 0;
this->target_kbps = 120000; /* kilobit per seconds */
this->kbps = 0;
2009-01-28 21:57:48 +01:00
this->raw_buf = (Uint8*)malloc(RAW_SIZE);
this->rle_buf = (Uint8*)malloc(RLE_SIZE);
this->diff_buf = (Uint8*)malloc(DIFF_SIZE);
assert(this->raw_buf && this->rle_buf && this->diff_buf);
this->square_updated = (Uint32*)malloc( N_SQUARES_W * N_SQUARES_H * sizeof(Uint32));
assert(this->square_updated);
memset(this->square_updated, 0, N_SQUARES_W * N_SQUARES_H * sizeof(Uint32));
this->screen = (Uint8 *)malloc(DISPLAY_X * DISPLAY_Y);
assert(this->screen);
/* Assume black screen */
memset(this->screen, 0, DISPLAY_X * DISPLAY_Y);
2009-02-07 12:08:50 +01:00
/* Peer addresses, if it fails we are out of luck */
if (this->InitSocket(remote_host, port) == false)
{
fprintf(stderr, "Could not init the socket\n");
exit(1);
}
this->network_connection_state = CONN_CONNECT_TO_BROKER;
2009-01-24 16:48:43 +01:00
}
Network::~Network()
{
free(this->ud);
free(this->tmp_ud);
2009-01-28 21:57:48 +01:00
free(this->square_updated);
free(this->raw_buf);
free(this->rle_buf);
free(this->diff_buf);
free(this->screen);
this->CloseSocket();
2009-01-24 16:48:43 +01:00
}
void Network::Tick(int ms)
{
int last_kbps = ((this->traffic - this->last_traffic) * 8) * (1000 / ms);
/* 1/3 of the new value, 2/3 of the old */
this->kbps = 2 * (this->kbps / 3) + (last_kbps / 3);
this->last_traffic = this->traffic;
}
size_t Network::EncodeSoundRLE(struct NetworkUpdate *dst,
2009-01-19 07:44:19 +01:00
Uint8 *buffer, size_t buf_len)
{
size_t out = 0;
size_t len = 0;
Uint8 volume = buffer[0];
printf("Not implemented\n");
2009-01-19 07:44:19 +01:00
dst->type = SOUND_UPDATE_RLE;
for (unsigned int i = 0; i < buf_len; i++)
{
if (volume != buffer[i] ||
len >= 255)
{
dst->data[out] = len;
dst->data[out + 1] = volume;
out += 2;
len = 0;
volume = buffer[i];
}
len++;
}
if (len != 0)
{
dst->data[out] = len;
dst->data[out + 1] = volume;
out += 2;
}
2009-01-19 07:44:19 +01:00
return out;
}
size_t Network::EncodeSoundRaw(struct NetworkUpdate *dst,
2009-01-19 07:44:19 +01:00
Uint8 *buffer, size_t len)
{
printf("Not implemented\n");
2009-01-19 07:44:19 +01:00
dst->type = SOUND_UPDATE_RAW;
memcpy(dst->data, buffer, len);
return len;
}
bool Network::DecodeDisplayDiff(Uint8 *screen, struct NetworkUpdate *src,
int x_start, int y_start)
{
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
int p = 0;
int x = x_start;
int y = y_start;
int sz = src->size - sizeof(NetworkUpdate) - sizeof(NetworkUpdateDisplay);
/* Something is wrong if this is true... */
if (sz % 2 != 0)
return false;
while (p < sz)
{
Uint8 len = dp->data[p];
Uint8 color = dp->data[p+1];
int x_diff = (x - x_start + len) % SQUARE_W;
int y_diff = (x - x_start + len) / SQUARE_W;
x = x_start + x_diff;
y = y + y_diff;
screen[y * DISPLAY_X + x] = color;
p += 2;
}
return true;
}
2009-01-19 07:44:19 +01:00
bool Network::DecodeDisplayRLE(Uint8 *screen, struct NetworkUpdate *src,
2009-01-19 07:44:19 +01:00
int x_start, int y_start)
{
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
2009-01-19 07:44:19 +01:00
int p = 0;
int x = x_start;
int y = y_start;
int sz = src->size - sizeof(NetworkUpdate) - sizeof(NetworkUpdateDisplay);
2009-01-19 07:44:19 +01:00
/* Something is wrong if this is true... */
if (sz % 2 != 0)
2009-01-19 07:44:19 +01:00
return false;
while (p < sz)
2009-01-19 07:44:19 +01:00
{
Uint8 len = dp->data[p];
Uint8 color = dp->data[p+1];
2009-01-19 07:44:19 +01:00
while (len > 0)
{
screen[y * DISPLAY_X + x] = color;
len--;
x++;
if ((x - x_start) % SQUARE_W == 0)
{
x = x_start;
y++;
}
}
p += 2;
}
return true;
}
bool Network::DecodeDisplayRaw(Uint8 *screen, struct NetworkUpdate *src,
2009-01-19 07:44:19 +01:00
int x_start, int y_start)
{
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
2009-01-19 07:44:19 +01:00
const int raw_w = SQUARE_W / 2;
for (int y = y_start; y < y_start + SQUARE_H; y++)
2009-01-19 07:44:19 +01:00
{
for (int x = x_start; x < x_start + SQUARE_W; x += 2)
2009-01-19 07:44:19 +01:00
{
Uint8 v = dp->data[(y - y_start) * raw_w + (x - x_start) / 2];
2009-01-20 18:42:21 +01:00
Uint8 a = v >> 4;
Uint8 b = v & 0xf;
2009-01-19 07:44:19 +01:00
screen[ y * DISPLAY_X + x ] = a;
screen[ y * DISPLAY_X + x + 1 ] = b;
}
}
return true;
}
2009-01-24 16:48:43 +01:00
bool Network::CompareSquare(Uint8 *a, Uint8 *b)
{
for (int y = 0; y < SQUARE_H; y++)
{
for (int x = 0; x < SQUARE_W; x += 4)
2009-01-24 16:48:43 +01:00
{
Uint32 va = *((Uint32*)&a[ y * DISPLAY_X + x ]);
Uint32 vb = *((Uint32*)&b[ y * DISPLAY_X + x ]);
2009-01-24 16:48:43 +01:00
if (va != vb)
2009-01-24 16:48:43 +01:00
return false;
}
}
return true;
}
void Network::EncodeDisplay(Uint8 *master, Uint8 *remote)
2009-01-24 16:48:43 +01:00
{
if (!this->is_master)
return;
2009-01-24 16:48:43 +01:00
for ( int sq = 0; sq < N_SQUARES_H * N_SQUARES_W; sq++ )
{
Uint8 *p_master = &master[ SQUARE_TO_Y(sq) * DISPLAY_X + SQUARE_TO_X(sq) ];
Uint8 *p_remote = &remote[ SQUARE_TO_Y(sq) * DISPLAY_X + SQUARE_TO_X(sq) ];
2009-01-24 16:48:43 +01:00
if (this->CompareSquare(p_master, p_remote) == false)
{
NetworkUpdate *dst = (NetworkUpdate *)this->cur_ud;
2009-01-24 16:48:43 +01:00
/* Updated, encode this */
this->EncodeDisplaySquare(dst, master, remote, sq);
this->AddNetworkUpdate(dst);
2009-01-24 16:48:43 +01:00
}
else
this->square_updated[sq] = 0;
2009-01-24 16:48:43 +01:00
}
memcpy(remote, master, DISPLAY_X * DISPLAY_Y);
}
2009-01-28 21:57:48 +01:00
size_t Network::EncodeDisplaySquare(struct NetworkUpdate *dst,
Uint8 *screen, Uint8 *remote, int square)
{
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)dst->data;
2009-01-28 21:57:48 +01:00
const int x_start = SQUARE_TO_X(square);
const int y_start = SQUARE_TO_Y(square);
Uint8 rle_color = screen[ y_start * DISPLAY_X + x_start ];
int rle_len = 0, diff_len = 0;
size_t rle_sz = 0, diff_sz = 0;
const int raw_w = SQUARE_W / 2;
int type = DISPLAY_UPDATE_RAW;
size_t out;
for (int y = y_start; y < y_start + SQUARE_H; y++)
{
memset( &this->raw_buf[(y - y_start) * raw_w], 0, raw_w );
for (int x = x_start; x < x_start + SQUARE_W; x++)
{
Uint8 col_s = screen[ y * DISPLAY_X + x ];
Uint8 col_r = remote[ y * DISPLAY_X + x ];
bool is_odd = (x & 1) == 1;
int raw_shift = (is_odd ? 0 : 4);
/* Every second is shifted */
this->raw_buf[ (y - y_start) * raw_w + (x - x_start) / 2 ] |=
(col_s << raw_shift);
if (rle_color != col_s ||
rle_len >= 255)
{
this->rle_buf[rle_sz] = rle_len;
this->rle_buf[rle_sz + 1] = rle_color;
rle_sz += 2;
rle_len = 0;
rle_color = col_s;
}
if (col_r != col_s || diff_len >= 255)
{
this->diff_buf[diff_sz] = diff_len;
this->diff_buf[diff_sz + 1] = col_s;
diff_sz += 2;
diff_len = 0;
}
diff_len++;
rle_len++;
}
}
/* The last section for RLE */
if (rle_len != 0)
{
this->rle_buf[rle_sz] = rle_len;
this->rle_buf[rle_sz + 1] = rle_color;
rle_sz += 2;
}
out = RAW_SIZE;
if (diff_sz < rle_sz && diff_sz < RAW_SIZE)
{
memcpy(dp->data, this->diff_buf, diff_sz);
2009-01-28 21:57:48 +01:00
type = DISPLAY_UPDATE_DIFF;
out = diff_sz;
}
else if (rle_sz < RAW_SIZE)
{
memcpy(dp->data, this->rle_buf, rle_sz);
2009-01-28 21:57:48 +01:00
type = DISPLAY_UPDATE_RLE;
out = rle_sz;
}
else
memcpy(dp->data, this->raw_buf, RAW_SIZE);
2009-01-28 21:57:48 +01:00
/* Setup the structure */
dp->square = square;
dst = InitNetworkUpdate(dst, type,
sizeof(struct NetworkUpdate) + sizeof(struct NetworkUpdateDisplay) + out);
2009-01-28 21:57:48 +01:00
this->square_updated[square] = out | (type << 16);
return dst->size;
}
2009-01-19 07:44:19 +01:00
bool Network::DecodeDisplayUpdate(Uint8 *screen,
struct NetworkUpdate *src)
2009-01-19 07:44:19 +01:00
{
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
int square = dp->square;
2009-01-19 07:44:19 +01:00
const int square_x = SQUARE_TO_X(square);
const int square_y = SQUARE_TO_Y(square);
if (src->type == DISPLAY_UPDATE_DIFF)
return this->DecodeDisplayDiff(screen, src, square_x, square_y);
else if (src->type == DISPLAY_UPDATE_RAW)
2009-01-19 07:44:19 +01:00
return this->DecodeDisplayRaw(screen, src, square_x, square_y);
else if (src->type == DISPLAY_UPDATE_RLE)
2009-01-19 07:44:19 +01:00
return this->DecodeDisplayRLE(screen, src, square_x, square_y);
/* Error */
return false;
}
size_t Network::EncodeSoundBuffer(struct NetworkUpdate *dst, Uint8 *buf, size_t len)
2009-01-19 07:44:19 +01:00
{
size_t out;
printf("Not implemented\n");
2009-01-19 07:44:19 +01:00
dst->size = 0;
/* Try encoding as RLE, but if it's too large, go for RAW */
out = this->EncodeSoundRLE(dst, buf, len);
if (out > len)
out = this->EncodeSoundRaw(dst, buf, len);
dst->size = out + sizeof(struct NetworkUpdate);
2009-01-19 07:44:19 +01:00
return dst->size;
}
2009-02-02 20:51:58 +01:00
void Network::EncodeSound()
{
/* Nothing to encode? */
if (!this->is_master ||
Network::sample_head == Network::sample_tail)
return;
while (Network::sample_tail != Network::sample_head)
{
Network::sample_tail = (Network::sample_tail + 1) % NETWORK_SOUND_BUF_SIZE;
}
}
void Network::PushSound(uint8 vol)
{
Network::sample_buf[Network::sample_head] = vol;
Network::sample_head = (Network::sample_head + 1) % NETWORK_SOUND_BUF_SIZE;
}
void Network::EncodeJoystickUpdate(Uint8 v)
2009-01-19 07:44:19 +01:00
{
struct NetworkUpdate *dst = this->cur_ud;
struct NetworkUpdateJoystick *j = (NetworkUpdateJoystick *)dst->data;
if (this->is_master || this->cur_joystick_data == v)
return;
dst = InitNetworkUpdate(dst, JOYSTICK_UPDATE,
sizeof(NetworkUpdate) + sizeof(NetworkUpdateJoystick));
j->val = v;
this->AddNetworkUpdate(dst);
this->cur_joystick_data = v;
2009-01-19 07:44:19 +01:00
}
size_t Network::DecodeSoundUpdate(struct NetworkUpdate *src, char *buf)
2009-01-19 07:44:19 +01:00
{
size_t out;
if (src->type == SOUND_UPDATE_RAW)
{
out = src->size - sizeof(struct NetworkUpdate);
2009-01-19 07:44:19 +01:00
memcpy(buf, src->data, out);
}
else
out = 0;
return out;
}
2009-01-24 16:48:43 +01:00
void Network::ResetNetworkUpdate(void)
2009-01-19 07:44:19 +01:00
{
2009-01-24 16:48:43 +01:00
memset(this->ud, 0, NETWORK_UPDATE_SIZE);
memset(this->tmp_ud, 0, NETWORK_UPDATE_SIZE);
2009-01-19 07:44:19 +01:00
this->cur_ud = InitNetworkUpdate(this->ud, STOP, sizeof(NetworkUpdate));
2009-01-19 07:44:19 +01:00
}
void Network::DrawTransferredBlocks(SDL_Surface *screen)
{
const int x_border = (DISPLAY_X - FULL_DISPLAY_X / 2);
const int y_border = (DISPLAY_Y - FULL_DISPLAY_Y / 2);
for (int sq = 0; sq < N_SQUARES_W * N_SQUARES_H; sq++)
{
int x = SQUARE_TO_X(sq) * 2 - x_border;
int y = SQUARE_TO_Y(sq) * 2 - y_border;
int w = SQUARE_W * 2;
int h = SQUARE_H * 2;
if (this->square_updated[sq])
{
SDL_Rect l = {x, y, 1, h};
SDL_Rect r = {x + w, y, 1, h};
SDL_Rect u = {x, y, w, 1};
SDL_Rect d = {x, y + h, w, 1};
Uint32 raw = this->square_updated[sq];
SDL_Rect size = {x, y, 2 * ((raw & 0xffff) / 17), 4};
Uint32 color = 4;
2009-01-28 21:57:48 +01:00
if ((raw >> 16) == DISPLAY_UPDATE_RLE)
color = 5;
2009-01-28 21:57:48 +01:00
else if ((raw >> 16) == DISPLAY_UPDATE_DIFF)
color = 6;
SDL_FillRect(screen, &l, 19);
SDL_FillRect(screen, &r, 19);
SDL_FillRect(screen, &u, 19);
SDL_FillRect(screen, &d, 19);
SDL_FillRect(screen, &size, color);
}
}
}
2009-01-19 07:44:19 +01:00
bool Network::ReceiveUpdate()
2009-01-19 07:44:19 +01:00
{
struct timeval tv;
memset(&tv, 0, sizeof(tv));
return this->ReceiveUpdate(this->ud, NETWORK_UPDATE_SIZE, &tv);
}
2009-02-08 12:52:09 +01:00
bool Network::ReceiveUpdate(struct timeval *tv)
{
2009-02-08 12:52:09 +01:00
return this->ReceiveUpdate(this->ud, NETWORK_UPDATE_SIZE, tv);
2009-01-19 07:44:19 +01:00
}
2009-02-07 12:08:50 +01:00
bool Network::ReceiveUpdate(NetworkUpdate *dst, size_t total_sz,
struct timeval *tv)
{
Uint8 *pp = (Uint8*)dst;
NetworkUpdate *p;
2009-02-07 12:08:50 +01:00
size_t sz_left = total_sz;
if (this->Select(this->sock, tv) == false)
return false;
p = (NetworkUpdate*)pp;
size_t actual_sz;
if (sz_left <= 0)
return false;
/* Receive the header */
actual_sz = this->ReceiveFrom(pp, this->sock,
sz_left, NULL);
if (actual_sz < 0)
return false;
if (this->DeMarshalAllData(p) == false)
return false;
sz_left -= actual_sz;
pp = pp + actual_sz;
return true;
}
bool Network::SendUpdate()
{
NetworkUpdate *src = this->ud;
NetworkUpdate *stop = InitNetworkUpdate(this->cur_ud, STOP, sizeof(NetworkUpdate));
size_t sz;
/* Nothing to send, that's OK */
if ( src == stop )
return true;
/* Add a stop at the end of the update */
this->AddNetworkUpdate(stop);
if (this->MarshalAllData(src) == false)
return false;
sz = this->GetNetworkUpdateSize();
if (sz <= 0)
return false;
if (this->SendTo((void*)src, this->sock,
sz, &this->connection_addr) < 0)
return false;
this->traffic += sz;
return true;
}
void Network::AddNetworkUpdate(NetworkUpdate *update)
2009-01-19 07:44:19 +01:00
{
Uint8 *next = (Uint8*)this->cur_ud + update->size;
2009-01-19 07:44:19 +01:00
this->cur_ud = (NetworkUpdate*)next;
}
2009-01-19 07:44:19 +01:00
bool Network::MarshalData(NetworkUpdate *p)
{
switch (p->type)
{
case DISPLAY_UPDATE_RAW:
case DISPLAY_UPDATE_RLE:
case DISPLAY_UPDATE_DIFF:
case SOUND_UPDATE_RAW:
case SOUND_UPDATE_RLE:
case JOYSTICK_UPDATE:
case DISCONNECT:
case CONNECT_TO_PEER:
case STOP:
break;
case SELECT_PEER:
{
NetworkUpdateSelectPeer *sp = (NetworkUpdateSelectPeer *)p->data;
sp->server_id = htons(sp->server_id);
} break;
2009-02-07 12:08:50 +01:00
case LIST_PEERS:
{
NetworkUpdateListPeers *lp = (NetworkUpdateListPeers *)p->data;
2009-02-21 08:59:45 +01:00
for (unsigned int i = 0; i < lp->n_peers; i++)
2009-02-07 12:08:50 +01:00
{
NetworkUpdatePeerInfo *peer = &lp->peers[i];
peer->key = htons(peer->key);
peer->private_port = htons(peer->private_port);
peer->public_port = htons(peer->public_port);
peer->is_master = htons(peer->is_master);
}
lp->n_peers = htonl(lp->n_peers);
lp->your_port = htons(lp->your_port);
} break;
case CONNECT_TO_BROKER:
{
NetworkUpdatePeerInfo *pi = (NetworkUpdatePeerInfo *)p->data;
/* The rest is simply ignored */
pi->is_master = htons(pi->is_master);
pi->key = htons(pi->key);
} break;
default:
/* Unknown data... */
fprintf(stderr, "Got unknown data %d while marshalling. Something is wrong\n",
p->type);
exit(0); // FIXME! TMP!!
return false;
2009-01-19 07:44:19 +01:00
}
p->size = htonl(p->size);
p->magic = htons(p->magic);
p->type = htons(p->type);
return true;
2009-01-19 07:44:19 +01:00
}
bool Network::MarshalAllData(NetworkUpdate *ud)
2009-01-19 07:44:19 +01:00
{
NetworkUpdate *p = ud;
2009-01-19 07:44:19 +01:00
while (p->type != STOP)
2009-01-19 07:44:19 +01:00
{
NetworkUpdate *nxt = this->GetNext(p);
2009-01-19 07:44:19 +01:00
if (this->MarshalData(p) == false)
return false;
p = nxt;
}
2009-01-19 07:44:19 +01:00
/* The stop tag */
return this->MarshalData(p);
}
bool Network::DeMarshalData(NetworkUpdate *p)
{
p->size = ntohl(p->size);
p->magic = ntohs(p->magic);
p->type = ntohs(p->type);
if (p->magic != FRODO_NETWORK_MAGIC)
return false;
switch (p->type)
{
case DISPLAY_UPDATE_RAW:
case DISPLAY_UPDATE_RLE:
case DISPLAY_UPDATE_DIFF:
case SOUND_UPDATE_RAW:
case SOUND_UPDATE_RLE:
case JOYSTICK_UPDATE:
case DISCONNECT:
case CONNECT_TO_PEER:
case STOP:
/* Nothing to do, just bytes */
break;
2009-02-07 12:08:50 +01:00
case LIST_PEERS:
{
NetworkUpdateListPeers *lp = (NetworkUpdateListPeers *)p->data;
lp->n_peers = ntohl(lp->n_peers);
2009-02-21 08:59:45 +01:00
for (unsigned int i = 0; i < lp->n_peers; i++)
2009-02-07 12:08:50 +01:00
{
NetworkUpdatePeerInfo *peer = &lp->peers[i];
peer->key = ntohs(peer->key);
peer->private_port = ntohs(peer->private_port);
peer->public_port = ntohs(peer->public_port);
peer->is_master = ntohs(peer->is_master);
}
lp->your_port = ntohs(lp->your_port);
} break;
default:
/* Unknown data... */
printf("Got unknown data: %d\n", p->type);
return false;
2009-01-19 07:44:19 +01:00
}
return true;
2009-01-19 07:44:19 +01:00
}
bool Network::DeMarshalAllData(NetworkUpdate *ud)
{
NetworkUpdate *p = ud;
while (ntohs(p->type) != STOP)
{
if (this->DeMarshalData(p) == false)
return false;
p = this->GetNext(p);
}
/* The stop tag */
return this->DeMarshalData(p);
}
bool Network::DecodeUpdate(uint8 *screen, uint8 *js)
{
NetworkUpdate *p = this->ud;
bool out = true;
while (p->type != STOP)
{
switch(p->type)
{
case DISPLAY_UPDATE_RAW:
case DISPLAY_UPDATE_RLE:
case DISPLAY_UPDATE_DIFF:
/* No screen updates _to_ the master */
if (this->is_master)
break;
if (this->DecodeDisplayUpdate(screen, p) == false)
out = false;
break;
case JOYSTICK_UPDATE:
/* No joystick updates _from_ the master */
if (js && this->is_master)
{
NetworkUpdateJoystick *j = (NetworkUpdateJoystick *)p->data;
*js = j->val;
}
break;
2009-02-07 12:08:50 +01:00
case LIST_PEERS:
{
} break;
case PING:
/* Send an ack */
break;
case ACK: /* Should never receive this */
case DISCONNECT:
out = false;
break;
default:
break;
}
p = this->GetNext(p);
}
return out;
}
bool Network::ConnectToBroker()
{
NetworkUpdate *ud = InitNetworkUpdate(this->ud, CONNECT_TO_BROKER,
sizeof(NetworkUpdate) + sizeof(NetworkUpdatePeerInfo));
NetworkUpdatePeerInfo *pi = (NetworkUpdatePeerInfo *)ud->data;
bool out;
pi->is_master = this->is_master;
pi->key = random() % 0xffff;
strcpy((char*)pi->name, "Mr vobb");
this->AddNetworkUpdate(ud);
out = this->SendUpdate();
this->ResetNetworkUpdate();
return out;
}
bool Network::IpToStr(char *dst, uint8 *ip_in)
{
int ip[4];
for (int i = 0; i < 4; i++)
{
char tmp[3];
char *endp;
tmp[0] = ip_in[i * 2];
tmp[1] = ip_in[i * 2 + 1];
tmp[2] = '\0';
ip[i] = strtoul(tmp, &endp, 16);
if (endp == (const char*)tmp)
return false;
}
sprintf(dst, "%d.%d.%d.%d", ip[3], ip[2], ip[1], ip[0]);
return true;
}
bool Network::WaitForPeerAddress()
{
NetworkUpdateListPeers *pi;
struct timeval tv;
tv.tv_sec = 1;
tv.tv_usec = 0;
this->ResetNetworkUpdate();
if (this->ReceiveUpdate(&tv) == false)
return false;
if (ud->type != LIST_PEERS)
return false;
pi = (NetworkUpdateListPeers *)this->ud->data;
if (pi->n_peers != 1)
{
fprintf(stderr, "There is something wrong with the server: Got %d peers on master connect\n"
"Contact Simon Kagstrom and ask him to correct it\n",
pi->n_peers);
return false;
}
/* Setup the peer info */
char buf[128];
/* Not sure what to do if this fails */
printf("Fläsk: %s:%d\n", pi->peers[0].public_ip, pi->peers[0].public_port);
this->IpToStr(buf, pi->peers[0].public_ip);
return this->InitSockaddr(&this->connection_addr, buf,
pi->peers[0].public_port);
}
bool Network::SelectPeer(uint32 id)
{
NetworkUpdate *ud = InitNetworkUpdate(this->ud, SELECT_PEER,
sizeof(NetworkUpdate) + sizeof(NetworkUpdateSelectPeer));
NetworkUpdateSelectPeer *p = (NetworkUpdateSelectPeer*)ud->data;
bool out;
p->server_id = id;
this->AddNetworkUpdate(ud);
out = this->SendUpdate();
this->ResetNetworkUpdate();
return out;
}
bool Network::WaitForPeerList()
2009-01-24 16:48:43 +01:00
{
NetworkUpdateListPeers *pi;
2009-02-08 12:52:09 +01:00
struct timeval tv;
const char **msgs;
2009-02-08 12:52:09 +01:00
tv.tv_sec = 1;
tv.tv_usec = 0;
this->ResetNetworkUpdate();
if (this->ReceiveUpdate(&tv) == false)
return false;
if (ud->type != LIST_PEERS)
return false;
pi = (NetworkUpdateListPeers *)this->ud->data;
msgs = (const char**)calloc(pi->n_peers + 1, sizeof(const char*));
for (int i = 0; i < pi->n_peers; i++) {
msgs[i] = (const char*)pi->peers[i].name;
}
int sel = menu_select(msgs, NULL);
free(msgs);
/* FIXME! What to do here??? */
if (sel < 0)
return false;
/* Setup the peer info */
char buf[128];
uint16 port = pi->peers[sel].public_port;
/* Not sure what to do if this fails */
printf("Hej: %s:%d\n", pi->peers[sel].public_ip, pi->peers[sel].public_port);
this->IpToStr(buf, pi->peers[sel].public_ip);
/* Finally tell the broker who we selected */
this->SelectPeer(pi->peers[sel].server_id);
return this->InitSockaddr(&this->connection_addr, buf,
port);
}
bool Network::WaitForPeerReply()
{
struct timeval tv;
tv.tv_sec = 3;
tv.tv_usec = 0;
this->ResetNetworkUpdate();
if (this->ReceiveUpdate(&tv) == false)
return false;
if (this->ud->type != CONNECT_TO_PEER)
return false;
return true;
}
bool Network::ConnectToPeer()
{
NetworkUpdate *ud = InitNetworkUpdate(this->ud, CONNECT_TO_PEER,
sizeof(NetworkUpdate));
bool out;
this->AddNetworkUpdate(ud);
out = this->SendUpdate();
this->ResetNetworkUpdate();
return out;
}
bool Network::ConnectFSM()
{
printf("Konnect: %d\n", this->network_connection_state);
/* See http://www.brynosaurus.com/pub/net/p2pnat/ for how this works.
*
* For the server ("master"):
* 1. Send connect to the broker
* 2. Wait for broker to return the peer connection info (private
* and public address)
* 3. Until connected:
* 3.1 Send connection message to peer
* 3.2 Wait for reply from peer
*
* For the client:
* 1. Send connect to the broker
* 2. Wait for the broker to return list of peers
* 3. Tell the broker who to connect to
* 4. Wait for broker to return the peer connection info (private
* and public address)
* 5. Until connected:
* 5.1 Send connection message to peer
* 5.2 Wait for reply from peer
*/
switch(this->network_connection_state)
{
case CONN_CONNECT_TO_BROKER:
if (this->ConnectToBroker() == true)
{
if (this->is_master)
this->network_connection_state = CONN_WAIT_FOR_PEER_ADDRESS;
else
this->network_connection_state = CONN_WAIT_FOR_PEER_LIST;
}
break;
case CONN_WAIT_FOR_PEER_ADDRESS:
if (this->WaitForPeerAddress() == false)
return false;
this->network_connection_state = CONN_CONNECT_TO_PEER;
break;
case CONN_WAIT_FOR_PEER_LIST:
/* Also tells the broker that we want to connect */
if (this->WaitForPeerList() == false)
return false;
this->network_connection_state = CONN_CONNECT_TO_PEER;
break;
case CONN_CONNECT_TO_PEER:
if (this->ConnectToPeer() == false)
return false;
/* Allow some transit time */
sleep(1);
this->network_connection_state = CONN_WAIT_FOR_PEER_REPLY;
break;
case CONN_WAIT_FOR_PEER_REPLY:
/* Connect again in case the first sent was dropped on
* its way to the peer */
if (this->ConnectToPeer() == false)
return false;
if (this->WaitForPeerReply() == false)
return false;
this->network_connection_state = CONN_CONNECTED;
break;
case CONN_CONNECTED:
default:
2009-02-08 12:52:09 +01:00
return true;
}
2009-02-08 12:52:09 +01:00
return true;;
2009-01-24 16:48:43 +01:00
}
bool Network::Connect()
{
for (int i = 0; i < this->is_master ? 120 : 10; i++ )
{
if (this->network_connection_state == CONN_CONNECTED)
return true;
/* Run the state machine */
this->ConnectFSM();
}
return false;
}
2009-01-24 16:48:43 +01:00
void Network::Disconnect()
{
NetworkUpdate *disconnect = InitNetworkUpdate(this->cur_ud, DISCONNECT,
sizeof(NetworkUpdate));
/* Add a stop at the end of the update */
this->AddNetworkUpdate(disconnect);
this->SendUpdate();
}
2009-02-02 20:51:58 +01:00
uint8 Network::sample_buf[NETWORK_SOUND_BUF_SIZE];
int Network::sample_head;
int Network::sample_tail;
2009-02-21 08:59:45 +01:00
#if defined(GEKKO)
2009-02-07 12:28:29 +01:00
#include "NetworkWii.h"
#else
2009-01-19 07:44:19 +01:00
#include "NetworkUnix.h"
2009-02-07 12:28:29 +01:00
#endif