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"
|
2009-03-01 09:27:53 +01:00
|
|
|
#include "Prefs.h"
|
2009-02-13 08:57:40 +01:00
|
|
|
#include "menu.h"
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-03-01 16:47:50 +01:00
|
|
|
#if defined(GEKKO)
|
|
|
|
# include <wiiuse/wpad.h>
|
|
|
|
#endif
|
|
|
|
|
2009-01-24 21:57:23 +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
|
|
|
|
2009-02-08 12:27:56 +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;
|
|
|
|
|
2009-03-08 20:02:19 +01:00
|
|
|
this->InitNetwork();
|
|
|
|
|
2009-04-09 15:42:49 +02:00
|
|
|
Network::is_master = is_master;
|
2009-02-08 12:27:56 +01:00
|
|
|
this->connected = false;
|
2009-02-01 20:47:21 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
/* "big enough" buffer */
|
2009-01-24 16:48:43 +01:00
|
|
|
this->ud = (NetworkUpdate*)malloc( size );
|
2009-04-10 13:39:46 +02:00
|
|
|
assert(this->ud);
|
2009-01-26 22:00:23 +01:00
|
|
|
|
2009-01-24 16:48:43 +01:00
|
|
|
this->ResetNetworkUpdate();
|
2009-01-30 18:49:47 +01:00
|
|
|
this->traffic = 0;
|
|
|
|
this->last_traffic = 0;
|
2009-04-13 12:57:01 +02:00
|
|
|
this->target_kbps = 160000; /* kilobit per seconds */
|
2009-01-30 18:49:47 +01:00
|
|
|
this->kbps = 0;
|
2009-01-25 11:07:51 +01:00
|
|
|
|
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);
|
|
|
|
|
2009-03-28 13:37:06 +01:00
|
|
|
/* Go from lower right to upper left */
|
|
|
|
this->refresh_square = N_SQUARES_W * N_SQUARES_H - 1;
|
2009-01-25 11:07:51 +01:00
|
|
|
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));
|
2009-02-01 20:47:21 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2009-04-26 08:02:57 +02:00
|
|
|
Network::networking_started = true;
|
2009-02-08 12:27:56 +01:00
|
|
|
/* Peer addresses, if it fails we are out of luck */
|
|
|
|
if (this->InitSocket(remote_host, port) == false)
|
2009-02-07 19:24:50 +01:00
|
|
|
{
|
2009-02-08 12:27:56 +01:00
|
|
|
fprintf(stderr, "Could not init the socket\n");
|
|
|
|
exit(1);
|
2009-02-07 19:24:50 +01:00
|
|
|
}
|
2009-02-16 20:20:00 +01:00
|
|
|
this->network_connection_state = CONN_CONNECT_TO_BROKER;
|
2009-04-04 09:40:17 +02:00
|
|
|
this->connection_error_message = "Connection OK";
|
2009-01-24 16:48:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Network::~Network()
|
|
|
|
{
|
|
|
|
free(this->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);
|
2009-02-01 20:47:21 +01:00
|
|
|
free(this->screen);
|
|
|
|
|
|
|
|
this->CloseSocket();
|
2009-03-28 10:34:31 +01:00
|
|
|
this->ShutdownNetwork();
|
2009-01-24 16:48:43 +01:00
|
|
|
}
|
|
|
|
|
2009-01-30 18:49:47 +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;
|
|
|
|
}
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
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];
|
|
|
|
|
|
|
|
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++;
|
2009-04-11 13:50:10 +02:00
|
|
|
/* Abort if the encoding becomes larger than the raw encoding */
|
|
|
|
if (len >= buf_len)
|
|
|
|
return buf_len + 2;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
2009-01-26 22:00:23 +01:00
|
|
|
if (len != 0)
|
|
|
|
{
|
|
|
|
dst->data[out] = len;
|
|
|
|
dst->data[out + 1] = volume;
|
|
|
|
|
|
|
|
out += 2;
|
|
|
|
}
|
2009-04-10 13:39:46 +02:00
|
|
|
InitNetworkUpdate(dst, SOUND_UPDATE_RLE,
|
|
|
|
sizeof(struct NetworkUpdate) + out);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
size_t Network::EncodeSoundRaw(struct NetworkUpdate *dst,
|
2009-01-19 07:44:19 +01:00
|
|
|
Uint8 *buffer, size_t len)
|
|
|
|
{
|
2009-04-10 13:39:46 +02:00
|
|
|
InitNetworkUpdate(dst, SOUND_UPDATE_RAW,
|
|
|
|
sizeof(struct NetworkUpdate) + len);
|
2009-01-19 07:44:19 +01:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
bool Network::DecodeDisplayDiff(struct NetworkUpdate *src,
|
2009-01-25 11:07:51 +01:00
|
|
|
int x_start, int y_start)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
|
2009-01-25 11:07:51 +01:00
|
|
|
int p = 0;
|
|
|
|
int x = x_start;
|
|
|
|
int y = y_start;
|
2009-02-03 19:10:09 +01:00
|
|
|
int sz = src->size - sizeof(NetworkUpdate) - sizeof(NetworkUpdateDisplay);
|
2009-01-25 11:07:51 +01:00
|
|
|
|
|
|
|
/* Something is wrong if this is true... */
|
|
|
|
if (sz % 2 != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
while (p < sz)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
Uint8 len = dp->data[p];
|
|
|
|
Uint8 color = dp->data[p+1];
|
2009-01-25 11:07:51 +01:00
|
|
|
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;
|
2009-04-13 08:31:12 +02:00
|
|
|
this->screen[y * DISPLAY_X + x] = color;
|
2009-01-25 11:07:51 +01:00
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
bool Network::DecodeDisplayRLE(struct NetworkUpdate *src,
|
2009-01-19 07:44:19 +01:00
|
|
|
int x_start, int y_start)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
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;
|
2009-02-03 19:10:09 +01:00
|
|
|
int sz = src->size - sizeof(NetworkUpdate) - sizeof(NetworkUpdateDisplay);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
|
|
|
/* Something is wrong if this is true... */
|
2009-01-24 21:57:23 +01:00
|
|
|
if (sz % 2 != 0)
|
2009-01-19 07:44:19 +01:00
|
|
|
return false;
|
|
|
|
|
2009-01-24 21:57:23 +01:00
|
|
|
while (p < sz)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
Uint8 len = dp->data[p];
|
|
|
|
Uint8 color = dp->data[p+1];
|
2009-01-19 07:44:19 +01:00
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
{
|
2009-04-13 08:31:12 +02:00
|
|
|
this->screen[y * DISPLAY_X + x] = color;
|
2009-01-19 07:44:19 +01:00
|
|
|
len--;
|
|
|
|
x++;
|
|
|
|
if ((x - x_start) % SQUARE_W == 0)
|
|
|
|
{
|
|
|
|
x = x_start;
|
|
|
|
y++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
bool Network::DecodeDisplayRaw(struct NetworkUpdate *src,
|
2009-01-19 07:44:19 +01:00
|
|
|
int x_start, int y_start)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
struct NetworkUpdateDisplay *dp = (struct NetworkUpdateDisplay *)src->data;
|
2009-01-19 07:44:19 +01:00
|
|
|
const int raw_w = SQUARE_W / 2;
|
|
|
|
|
2009-01-24 21:57:23 +01:00
|
|
|
for (int y = y_start; y < y_start + SQUARE_H; y++)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-01-24 21:57:23 +01:00
|
|
|
for (int x = x_start; x < x_start + SQUARE_W; x += 2)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +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
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
this->screen[ y * DISPLAY_X + x ] = a;
|
|
|
|
this->screen[ y * DISPLAY_X + x + 1 ] = b;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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++)
|
|
|
|
{
|
2009-01-25 11:07:51 +01:00
|
|
|
for (int x = 0; x < SQUARE_W; x += 4)
|
2009-01-24 16:48:43 +01:00
|
|
|
{
|
2009-01-25 11:07:51 +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
|
|
|
|
2009-01-24 21:57:23 +01:00
|
|
|
if (va != vb)
|
2009-01-24 16:48:43 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
void Network::EncodeDisplay(Uint8 *master, Uint8 *remote)
|
2009-01-24 16:48:43 +01:00
|
|
|
{
|
2009-04-09 15:42:49 +02:00
|
|
|
if (!Network::is_master)
|
2009-02-01 20:47:21 +01:00
|
|
|
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) ];
|
2009-01-26 22:00:23 +01:00
|
|
|
Uint8 *p_remote = &remote[ SQUARE_TO_Y(sq) * DISPLAY_X + SQUARE_TO_X(sq) ];
|
2009-01-24 16:48:43 +01:00
|
|
|
|
2009-03-28 13:37:06 +01:00
|
|
|
/* Refresh periodically or if the squares differ */
|
|
|
|
if ( (this->refresh_square == sq && this->kbps < this->target_kbps * 0.7) ||
|
|
|
|
this->CompareSquare(p_master, p_remote) == false)
|
2009-01-24 16:48:43 +01:00
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
NetworkUpdate *dst = (NetworkUpdate *)this->cur_ud;
|
2009-01-24 16:48:43 +01:00
|
|
|
|
|
|
|
/* Updated, encode this */
|
2009-03-28 13:37:06 +01:00
|
|
|
this->EncodeDisplaySquare(dst, master, remote, sq,
|
2009-03-28 14:03:50 +01:00
|
|
|
this->refresh_square != sq);
|
2009-01-26 22:00:23 +01:00
|
|
|
this->AddNetworkUpdate(dst);
|
2009-03-28 13:37:06 +01:00
|
|
|
|
|
|
|
/* This has been refreshed, move to the next one */
|
|
|
|
if (this->refresh_square == sq)
|
|
|
|
{
|
|
|
|
this->refresh_square--;
|
|
|
|
if (this->refresh_square < 0)
|
|
|
|
this->refresh_square = N_SQUARES_H * N_SQUARES_W - 1;
|
|
|
|
}
|
2009-01-24 16:48:43 +01:00
|
|
|
}
|
2009-01-25 11:07:51 +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,
|
2009-03-28 13:37:06 +01:00
|
|
|
Uint8 *screen, Uint8 *remote, int square,
|
|
|
|
bool use_diff)
|
2009-01-28 21:57:48 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
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;
|
2009-03-28 13:37:06 +01:00
|
|
|
if (use_diff && (diff_sz < rle_sz && diff_sz < RAW_SIZE))
|
2009-01-28 21:57:48 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
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)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
memcpy(dp->data, this->rle_buf, rle_sz);
|
2009-01-28 21:57:48 +01:00
|
|
|
type = DISPLAY_UPDATE_RLE;
|
|
|
|
out = rle_sz;
|
|
|
|
}
|
|
|
|
else
|
2009-02-03 19:10:09 +01:00
|
|
|
memcpy(dp->data, this->raw_buf, RAW_SIZE);
|
2009-01-28 21:57:48 +01:00
|
|
|
|
|
|
|
/* Setup the structure */
|
2009-02-03 19:10:09 +01:00
|
|
|
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-04-13 08:31:12 +02:00
|
|
|
bool Network::DecodeDisplayUpdate(struct NetworkUpdate *src)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +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);
|
|
|
|
|
2009-01-25 11:07:51 +01:00
|
|
|
if (src->type == DISPLAY_UPDATE_DIFF)
|
2009-04-13 08:31:12 +02:00
|
|
|
return this->DecodeDisplayDiff(src, square_x, square_y);
|
2009-01-25 11:07:51 +01:00
|
|
|
else if (src->type == DISPLAY_UPDATE_RAW)
|
2009-04-13 08:31:12 +02:00
|
|
|
return this->DecodeDisplayRaw(src, square_x, square_y);
|
2009-01-25 11:07:51 +01:00
|
|
|
else if (src->type == DISPLAY_UPDATE_RLE)
|
2009-04-13 08:31:12 +02:00
|
|
|
return this->DecodeDisplayRLE(src, square_x, square_y);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
|
|
|
/* Error */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
size_t Network::EncodeSoundBuffer(struct NetworkUpdate *dst, Uint8 *buf, size_t len)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
|
|
|
size_t out;
|
|
|
|
|
|
|
|
/* Try encoding as RLE, but if it's too large, go for RAW */
|
2009-04-10 13:39:46 +02:00
|
|
|
out = this->EncodeSoundRLE(dst, buf, len);
|
|
|
|
if (out > len)
|
2009-01-19 07:44:19 +01:00
|
|
|
out = this->EncodeSoundRaw(dst, buf, len);
|
2009-04-10 13:39:46 +02:00
|
|
|
return out;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
|
2009-04-11 13:50:10 +02:00
|
|
|
size_t Network::GetSoundBufferSize()
|
|
|
|
{
|
|
|
|
if (Network::sample_tail > Network::sample_head)
|
|
|
|
return NETWORK_SOUND_BUF_SIZE - Network::sample_tail + Network::sample_head;
|
|
|
|
return Network::sample_head- Network::sample_tail;
|
|
|
|
}
|
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
void Network::EncodeTextMessage(char *str)
|
|
|
|
{
|
|
|
|
NetworkUpdate *dst = (NetworkUpdate *)this->cur_ud;
|
|
|
|
char *p = (char*)dst->data;
|
|
|
|
size_t len = strlen(str) + 1;
|
|
|
|
|
|
|
|
len += (len & 3);
|
|
|
|
dst = InitNetworkUpdate(dst, TEXT_MESSAGE,
|
|
|
|
sizeof(NetworkUpdate) + len);
|
|
|
|
memset(p, 0, len);
|
|
|
|
strncpy(p, str, len - 1);
|
|
|
|
|
|
|
|
this->AddNetworkUpdate(dst);
|
|
|
|
}
|
|
|
|
|
2009-02-02 20:51:58 +01:00
|
|
|
void Network::EncodeSound()
|
|
|
|
{
|
2009-04-09 15:42:49 +02:00
|
|
|
NetworkUpdate *dst = (NetworkUpdate *)this->cur_ud;
|
|
|
|
static Uint8 tmp_buf[NETWORK_SOUND_BUF_SIZE];
|
|
|
|
int offset = 0;
|
|
|
|
|
2009-04-13 10:57:01 +02:00
|
|
|
/* This is not enabled yet... */
|
|
|
|
return;
|
2009-02-02 20:51:58 +01:00
|
|
|
/* Nothing to encode? */
|
2009-04-09 15:42:49 +02:00
|
|
|
if (!Network::is_master ||
|
2009-04-11 13:50:10 +02:00
|
|
|
this->GetSoundBufferSize() < NETWORK_SOUND_BUF_SIZE / 2)
|
2009-02-02 20:51:58 +01:00
|
|
|
return;
|
2009-04-09 15:42:49 +02:00
|
|
|
|
|
|
|
if (Network::sample_tail > Network::sample_head)
|
2009-02-02 20:51:58 +01:00
|
|
|
{
|
2009-04-09 15:42:49 +02:00
|
|
|
memcpy(tmp_buf + offset, Network::sample_buf + Network::sample_tail,
|
|
|
|
NETWORK_SOUND_BUF_SIZE - Network::sample_tail);
|
|
|
|
offset += NETWORK_SOUND_BUF_SIZE - Network::sample_tail;
|
|
|
|
Network::sample_tail = 0;
|
2009-02-02 20:51:58 +01:00
|
|
|
}
|
2009-04-09 15:42:49 +02:00
|
|
|
memcpy(tmp_buf + offset, Network::sample_buf + Network::sample_tail,
|
|
|
|
Network::sample_head - Network::sample_tail);
|
|
|
|
offset += Network::sample_head - Network::sample_tail;
|
|
|
|
Network::sample_tail = Network::sample_head;
|
|
|
|
|
|
|
|
this->EncodeSoundBuffer(dst, tmp_buf, offset);
|
|
|
|
this->AddNetworkUpdate(dst);
|
2009-02-02 20:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Network::PushSound(uint8 vol)
|
|
|
|
{
|
|
|
|
Network::sample_buf[Network::sample_head] = vol;
|
|
|
|
Network::sample_head = (Network::sample_head + 1) % NETWORK_SOUND_BUF_SIZE;
|
|
|
|
}
|
|
|
|
|
2009-01-29 22:11:04 +01:00
|
|
|
void Network::EncodeJoystickUpdate(Uint8 v)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-01-29 22:11:04 +01:00
|
|
|
struct NetworkUpdate *dst = this->cur_ud;
|
2009-02-03 19:10:09 +01:00
|
|
|
struct NetworkUpdateJoystick *j = (NetworkUpdateJoystick *)dst->data;
|
2009-01-29 22:11:04 +01:00
|
|
|
|
2009-04-09 15:42:49 +02:00
|
|
|
if (Network::is_master || this->cur_joystick_data == v)
|
2009-02-01 20:47:21 +01:00
|
|
|
return;
|
2009-02-03 19:10:09 +01:00
|
|
|
dst = InitNetworkUpdate(dst, JOYSTICK_UPDATE,
|
|
|
|
sizeof(NetworkUpdate) + sizeof(NetworkUpdateJoystick));
|
|
|
|
j->val = v;
|
2009-01-29 22:11:04 +01:00
|
|
|
|
|
|
|
this->AddNetworkUpdate(dst);
|
2009-02-01 20:47:21 +01:00
|
|
|
this->cur_joystick_data = v;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
|
2009-04-10 13:39:46 +02:00
|
|
|
size_t Network::DecodeSoundRLE(struct NetworkUpdate *src, MOS6581 *dst)
|
|
|
|
{
|
|
|
|
int p = 0;
|
|
|
|
int sz = src->size - sizeof(NetworkUpdate);
|
|
|
|
|
|
|
|
while (p < sz)
|
|
|
|
{
|
|
|
|
Uint8 len = src->data[p + 0];
|
|
|
|
Uint8 volume = src->data[p + 1];
|
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
{
|
|
|
|
dst->PushVolume(volume);
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
}
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-04-09 15:42:49 +02:00
|
|
|
size_t Network::DecodeSoundUpdate(struct NetworkUpdate *src, MOS6581 *dst)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
|
|
|
size_t out;
|
|
|
|
|
|
|
|
if (src->type == SOUND_UPDATE_RAW)
|
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
out = src->size - sizeof(struct NetworkUpdate);
|
2009-04-09 15:42:49 +02:00
|
|
|
for (int i = 0; i < out; i++)
|
|
|
|
dst->PushVolume(src->data[i]);
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
2009-04-10 13:39:46 +02:00
|
|
|
else if (src->type == SOUND_UPDATE_RLE)
|
|
|
|
out = this->DecodeSoundRLE(src, dst);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
|
|
|
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);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-02-03 19:10:09 +01:00
|
|
|
this->cur_ud = InitNetworkUpdate(this->ud, STOP, sizeof(NetworkUpdate));
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
|
2009-01-25 11:07:51 +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];
|
2009-01-26 22:00:23 +01:00
|
|
|
SDL_Rect size = {x, y, 2 * ((raw & 0xffff) / 17), 4};
|
2009-01-25 11:07:51 +01:00
|
|
|
Uint32 color = 4;
|
|
|
|
|
2009-01-28 21:57:48 +01:00
|
|
|
if ((raw >> 16) == DISPLAY_UPDATE_RLE)
|
2009-01-25 11:07:51 +01:00
|
|
|
color = 5;
|
2009-01-28 21:57:48 +01:00
|
|
|
else if ((raw >> 16) == DISPLAY_UPDATE_DIFF)
|
2009-01-25 11:07:51 +01:00
|
|
|
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
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
bool Network::ReceiveUpdate()
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
memset(&tv, 0, sizeof(tv));
|
2009-02-08 12:27:56 +01:00
|
|
|
return this->ReceiveUpdate(this->ud, NETWORK_UPDATE_SIZE, &tv);
|
|
|
|
}
|
2009-02-02 19:36:51 +01:00
|
|
|
|
2009-02-08 12:52:09 +01:00
|
|
|
bool Network::ReceiveUpdate(struct timeval *tv)
|
2009-02-08 12:27:56 +01:00
|
|
|
{
|
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)
|
2009-01-24 21:57:23 +01:00
|
|
|
{
|
2009-03-16 21:56:04 +01:00
|
|
|
Uint8 *p = (Uint8*)dst;
|
2009-02-07 12:08:50 +01:00
|
|
|
size_t sz_left = total_sz;
|
2009-03-16 21:56:04 +01:00
|
|
|
bool has_stop = false;
|
2009-01-26 22:00:23 +01:00
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
if (this->Select(this->sock, tv) == false)
|
2009-01-26 22:00:23 +01:00
|
|
|
return false;
|
|
|
|
|
2009-02-07 19:24:50 +01:00
|
|
|
if (sz_left <= 0)
|
|
|
|
return false;
|
2009-01-26 22:00:23 +01:00
|
|
|
|
2009-02-07 19:24:50 +01:00
|
|
|
/* Receive the header */
|
2009-03-16 21:56:04 +01:00
|
|
|
do {
|
|
|
|
size_t actual_sz = this->ReceiveFrom(p, this->sock,
|
|
|
|
4096, NULL);
|
2009-03-28 16:18:50 +01:00
|
|
|
if (actual_sz <= 0)
|
2009-03-16 21:56:04 +01:00
|
|
|
return false;
|
2009-01-26 22:00:23 +01:00
|
|
|
|
2009-03-16 21:56:04 +01:00
|
|
|
if (this->DeMarshalAllData((NetworkUpdate*)p, actual_sz,
|
2009-04-04 09:40:17 +02:00
|
|
|
&has_stop) == false) {
|
|
|
|
printf("Demarshal error\n");
|
2009-03-16 21:56:04 +01:00
|
|
|
return false;
|
2009-04-04 09:40:17 +02:00
|
|
|
}
|
2009-03-16 21:56:04 +01:00
|
|
|
sz_left -= actual_sz;
|
|
|
|
p = p + actual_sz;
|
|
|
|
} while (!has_stop);
|
2009-01-26 22:00:23 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
bool Network::SendUpdate()
|
2009-01-26 22:00:23 +01:00
|
|
|
{
|
|
|
|
NetworkUpdate *src = this->ud;
|
2009-02-03 19:10:09 +01:00
|
|
|
NetworkUpdate *stop = InitNetworkUpdate(this->cur_ud, STOP, sizeof(NetworkUpdate));
|
2009-01-26 22:00:23 +01:00
|
|
|
size_t sz;
|
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
/* Nothing to send, that's OK */
|
|
|
|
if ( src == stop )
|
|
|
|
return true;
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
/* 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;
|
2009-03-16 21:56:04 +01:00
|
|
|
size_t cur_sz = 0;
|
|
|
|
Uint8 *p = (Uint8*)src;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
size_t size_to_send = this->FillNetworkBuffer((NetworkUpdate*)p);
|
|
|
|
ssize_t v;
|
|
|
|
|
|
|
|
v = this->SendTo((void*)p, this->sock,
|
|
|
|
size_to_send, &this->connection_addr);
|
|
|
|
if (v < 0 || v != size_to_send)
|
|
|
|
return false;
|
|
|
|
cur_sz += size_to_send;
|
|
|
|
p += size_to_send;
|
|
|
|
} while (cur_sz < sz);
|
|
|
|
this->traffic += cur_sz;
|
2009-01-26 22:00:23 +01:00
|
|
|
|
|
|
|
return true;
|
2009-01-24 21:57:23 +01:00
|
|
|
}
|
|
|
|
|
2009-03-16 21:56:04 +01:00
|
|
|
size_t Network::FillNetworkBuffer(NetworkUpdate *cur)
|
|
|
|
{
|
|
|
|
size_t sz = 0;
|
|
|
|
size_t cur_sz;
|
|
|
|
int cnt = 0;
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
cur_sz = ntohl(cur->size);
|
|
|
|
|
|
|
|
if (sz + cur_sz >= 4096)
|
|
|
|
break;
|
|
|
|
|
|
|
|
cnt++;
|
|
|
|
sz += cur_sz;
|
|
|
|
if (ntohs(cur->type) == STOP)
|
|
|
|
break;
|
|
|
|
cur = (NetworkUpdate*)((Uint8*)cur + cur_sz);
|
|
|
|
}
|
|
|
|
assert(sz <= 4096);
|
|
|
|
|
|
|
|
return sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
void Network::AddNetworkUpdate(NetworkUpdate *update)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
Uint8 *next = (Uint8*)this->cur_ud + update->size;
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
this->cur_ud = (NetworkUpdate*)next;
|
|
|
|
}
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-01-26 22:00:23 +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:
|
2009-01-29 19:04:31 +01:00
|
|
|
case DISCONNECT:
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONNECT_TO_PEER:
|
2009-04-13 08:31:12 +02:00
|
|
|
case TEXT_MESSAGE:
|
2009-01-26 22:00:23 +01:00
|
|
|
case STOP:
|
|
|
|
break;
|
2009-03-28 16:18:50 +01:00
|
|
|
case PING:
|
|
|
|
case ACK:
|
|
|
|
{
|
|
|
|
NetworkUpdatePingAck *pa = (NetworkUpdatePingAck *)p->data;
|
|
|
|
pa->seq = htonl(pa->seq);
|
|
|
|
} break;
|
2009-02-28 19:45:26 +01:00
|
|
|
case SELECT_PEER:
|
|
|
|
{
|
|
|
|
NetworkUpdateSelectPeer *sp = (NetworkUpdateSelectPeer *)p->data;
|
2009-02-28 20:42:11 +01:00
|
|
|
sp->server_id = htonl(sp->server_id);
|
2009-02-28 19:45:26 +01:00
|
|
|
} 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);
|
2009-03-28 14:03:50 +01:00
|
|
|
peer->server_id = htonl(peer->server_id);
|
2009-04-04 09:40:17 +02:00
|
|
|
peer->version = htonl(peer->version);
|
2009-02-07 12:08:50 +01:00
|
|
|
}
|
|
|
|
lp->n_peers = htonl(lp->n_peers);
|
|
|
|
lp->your_port = htons(lp->your_port);
|
|
|
|
} break;
|
2009-02-28 19:45:26 +01:00
|
|
|
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);
|
2009-04-04 09:40:17 +02:00
|
|
|
pi->version = htonl(pi->version);
|
2009-02-28 19:45:26 +01:00
|
|
|
} break;
|
2009-01-26 22:00:23 +01:00
|
|
|
default:
|
|
|
|
/* Unknown data... */
|
|
|
|
fprintf(stderr, "Got unknown data %d while marshalling. Something is wrong\n",
|
|
|
|
p->type);
|
2009-02-28 19:45:26 +01:00
|
|
|
exit(0); // FIXME! TMP!!
|
2009-01-26 22:00:23 +01:00
|
|
|
return false;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
2009-01-26 22:00:23 +01:00
|
|
|
|
2009-02-03 19:10:09 +01:00
|
|
|
p->size = htonl(p->size);
|
|
|
|
p->magic = htons(p->magic);
|
|
|
|
p->type = htons(p->type);
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
return true;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
bool Network::MarshalAllData(NetworkUpdate *ud)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
NetworkUpdate *p = ud;
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
while (p->type != STOP)
|
2009-01-19 07:44:19 +01:00
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
NetworkUpdate *nxt = this->GetNext(p);
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
if (this->MarshalData(p) == false)
|
|
|
|
return false;
|
|
|
|
p = nxt;
|
|
|
|
}
|
2009-01-19 07:44:19 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
/* The stop tag */
|
|
|
|
return this->MarshalData(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Network::DeMarshalData(NetworkUpdate *p)
|
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
p->size = ntohl(p->size);
|
|
|
|
p->magic = ntohs(p->magic);
|
|
|
|
p->type = ntohs(p->type);
|
|
|
|
|
|
|
|
if (p->magic != FRODO_NETWORK_MAGIC)
|
|
|
|
return false;
|
2009-01-26 22:00:23 +01:00
|
|
|
|
|
|
|
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:
|
2009-01-29 19:04:31 +01:00
|
|
|
case DISCONNECT:
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONNECT_TO_PEER:
|
2009-04-13 08:31:12 +02:00
|
|
|
case TEXT_MESSAGE:
|
2009-01-26 22:00:23 +01:00
|
|
|
case STOP:
|
|
|
|
/* Nothing to do, just bytes */
|
|
|
|
break;
|
2009-03-28 16:18:50 +01:00
|
|
|
case PING:
|
|
|
|
case ACK:
|
|
|
|
{
|
|
|
|
NetworkUpdatePingAck *pa = (NetworkUpdatePingAck *)p->data;
|
|
|
|
pa->seq = ntohl(pa->seq);
|
|
|
|
} break;
|
2009-03-28 12:32:59 +01:00
|
|
|
case SELECT_PEER:
|
|
|
|
{
|
|
|
|
NetworkUpdateSelectPeer *sp = (NetworkUpdateSelectPeer *)p->data;
|
|
|
|
sp->server_id = ntohl(sp->server_id);
|
|
|
|
} 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);
|
2009-03-28 13:55:11 +01:00
|
|
|
peer->server_id = ntohl(peer->server_id);
|
2009-04-04 09:40:17 +02:00
|
|
|
peer->version = ntohl(peer->version);
|
2009-02-07 12:08:50 +01:00
|
|
|
}
|
|
|
|
lp->your_port = ntohs(lp->your_port);
|
|
|
|
} break;
|
2009-01-26 22:00:23 +01:00
|
|
|
default:
|
|
|
|
/* Unknown data... */
|
2009-02-28 19:45:26 +01:00
|
|
|
printf("Got unknown data: %d\n", p->type);
|
2009-01-26 22:00:23 +01:00
|
|
|
return false;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
2009-01-26 22:00:23 +01:00
|
|
|
|
|
|
|
return true;
|
2009-01-19 07:44:19 +01:00
|
|
|
}
|
|
|
|
|
2009-03-16 21:56:04 +01:00
|
|
|
bool Network::DeMarshalAllData(NetworkUpdate *ud, size_t max_size,
|
|
|
|
bool *has_stop)
|
2009-02-07 19:24:50 +01:00
|
|
|
{
|
|
|
|
NetworkUpdate *p = ud;
|
2009-03-16 21:56:04 +01:00
|
|
|
int cnt = 0;
|
|
|
|
size_t sz = 0;
|
2009-02-07 19:24:50 +01:00
|
|
|
|
2009-03-16 21:56:04 +01:00
|
|
|
while (ntohs(p->type) != STOP &&
|
|
|
|
sz + ntohl(p->size) < max_size)
|
2009-02-07 19:24:50 +01:00
|
|
|
{
|
|
|
|
if (this->DeMarshalData(p) == false)
|
|
|
|
return false;
|
2009-03-16 21:56:04 +01:00
|
|
|
sz += p->size;
|
|
|
|
cnt++;
|
2009-02-07 19:24:50 +01:00
|
|
|
p = this->GetNext(p);
|
|
|
|
}
|
|
|
|
|
2009-03-16 21:56:04 +01:00
|
|
|
/* The stop tag (maybe) */
|
|
|
|
*has_stop = (ntohs(p->type) == STOP);
|
2009-02-07 19:24:50 +01:00
|
|
|
return this->DeMarshalData(p);
|
|
|
|
}
|
|
|
|
|
2009-04-13 08:31:12 +02:00
|
|
|
bool Network::DecodeUpdate(C64Display *display, uint8 *js, MOS6581 *dst)
|
2009-01-24 21:57:23 +01:00
|
|
|
{
|
2009-01-26 22:00:23 +01:00
|
|
|
NetworkUpdate *p = this->ud;
|
2009-01-29 19:04:31 +01:00
|
|
|
bool out = true;
|
2009-01-24 21:57:23 +01:00
|
|
|
|
2009-01-26 22:00:23 +01:00
|
|
|
while (p->type != STOP)
|
2009-01-24 21:57:23 +01:00
|
|
|
{
|
|
|
|
switch(p->type)
|
|
|
|
{
|
2009-04-10 13:39:46 +02:00
|
|
|
case SOUND_UPDATE_RAW:
|
|
|
|
case SOUND_UPDATE_RLE:
|
|
|
|
/* No sound updates _to_ the master */
|
|
|
|
if (Network::is_master)
|
|
|
|
break;
|
|
|
|
if (this->DecodeSoundUpdate(p, dst) == false)
|
|
|
|
out = false;
|
|
|
|
break;
|
2009-01-24 21:57:23 +01:00
|
|
|
case DISPLAY_UPDATE_RAW:
|
|
|
|
case DISPLAY_UPDATE_RLE:
|
2009-01-25 11:07:51 +01:00
|
|
|
case DISPLAY_UPDATE_DIFF:
|
2009-02-01 20:47:21 +01:00
|
|
|
/* No screen updates _to_ the master */
|
2009-04-09 15:42:49 +02:00
|
|
|
if (Network::is_master)
|
2009-01-29 21:48:58 +01:00
|
|
|
break;
|
2009-04-13 08:31:12 +02:00
|
|
|
if (this->DecodeDisplayUpdate(p) == false)
|
2009-01-29 19:04:31 +01:00
|
|
|
out = false;
|
|
|
|
break;
|
2009-01-29 22:11:04 +01:00
|
|
|
case JOYSTICK_UPDATE:
|
2009-02-01 20:47:21 +01:00
|
|
|
/* No joystick updates _from_ the master */
|
2009-04-09 15:42:49 +02:00
|
|
|
if (js && Network::is_master)
|
2009-02-03 19:10:09 +01:00
|
|
|
{
|
|
|
|
NetworkUpdateJoystick *j = (NetworkUpdateJoystick *)p->data;
|
|
|
|
*js = j->val;
|
|
|
|
}
|
2009-01-29 22:11:04 +01:00
|
|
|
break;
|
2009-04-13 09:49:19 +02:00
|
|
|
case TEXT_MESSAGE:
|
2009-04-13 12:10:08 +02:00
|
|
|
{
|
|
|
|
static char display_buf[80];
|
|
|
|
|
|
|
|
strncpy(display_buf, (char*)p->data, 80);
|
|
|
|
display->display_status_string(display_buf, 4);
|
|
|
|
} break;
|
2009-02-07 12:08:50 +01:00
|
|
|
case LIST_PEERS:
|
|
|
|
{
|
|
|
|
} break;
|
|
|
|
case PING:
|
2009-03-28 16:18:50 +01:00
|
|
|
/* FIXME! Send an ack */
|
2009-02-07 12:08:50 +01:00
|
|
|
break;
|
|
|
|
case ACK: /* Should never receive this */
|
2009-01-29 19:04:31 +01:00
|
|
|
case DISCONNECT:
|
|
|
|
out = false;
|
2009-01-24 21:57:23 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-01-26 22:00:23 +01:00
|
|
|
p = this->GetNext(p);
|
2009-01-24 21:57:23 +01:00
|
|
|
}
|
2009-01-29 19:04:31 +01:00
|
|
|
|
|
|
|
return out;
|
2009-01-24 21:57:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-13 08:57:40 +01:00
|
|
|
bool Network::ConnectToBroker()
|
|
|
|
{
|
|
|
|
NetworkUpdate *ud = InitNetworkUpdate(this->ud, CONNECT_TO_BROKER,
|
|
|
|
sizeof(NetworkUpdate) + sizeof(NetworkUpdatePeerInfo));
|
|
|
|
NetworkUpdatePeerInfo *pi = (NetworkUpdatePeerInfo *)ud->data;
|
|
|
|
bool out;
|
|
|
|
|
2009-04-09 15:42:49 +02:00
|
|
|
pi->is_master = Network::is_master;
|
2009-03-01 16:47:50 +01:00
|
|
|
pi->key = ThePrefs.NetworkKey;
|
2009-04-04 09:40:17 +02:00
|
|
|
pi->version = FRODO_NETWORK_PROTOCOL_VERSION;
|
2009-03-01 09:27:53 +01:00
|
|
|
strcpy((char*)pi->name, ThePrefs.NetworkName);
|
2009-02-13 08:57:40 +01:00
|
|
|
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];
|
2009-02-16 20:20:00 +01:00
|
|
|
char *endp;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
tmp[0] = ip_in[i * 2];
|
|
|
|
tmp[1] = ip_in[i * 2 + 1];
|
|
|
|
tmp[2] = '\0';
|
|
|
|
ip[i] = strtoul(tmp, &endp, 16);
|
2009-02-16 20:20:00 +01:00
|
|
|
if (endp == (const char*)tmp)
|
2009-02-13 08:57:40 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-02-28 19:45:26 +01:00
|
|
|
sprintf(dst, "%d.%d.%d.%d", ip[3], ip[2], ip[1], ip[0]);
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-28 16:18:50 +01:00
|
|
|
/* OK, this is a pretty ugly special case, but it's only used when
|
|
|
|
* communicating with the broker before a peer connection. */
|
|
|
|
void Network::SendPingAck(int seq)
|
|
|
|
{
|
|
|
|
this->ResetNetworkUpdate();
|
|
|
|
|
|
|
|
NetworkUpdate *ud = InitNetworkUpdate(this->ud, ACK,
|
|
|
|
sizeof(NetworkUpdate) + sizeof(NetworkUpdatePingAck));
|
|
|
|
NetworkUpdatePingAck *p = (NetworkUpdatePingAck*)ud->data;
|
|
|
|
|
|
|
|
p->seq = seq;
|
|
|
|
this->AddNetworkUpdate(ud);
|
|
|
|
this->SendUpdate();
|
|
|
|
this->ResetNetworkUpdate();
|
|
|
|
}
|
|
|
|
|
2009-04-04 09:40:17 +02:00
|
|
|
network_connection_error_t Network::WaitForPeerAddress()
|
2009-02-13 08:57:40 +01:00
|
|
|
{
|
|
|
|
NetworkUpdateListPeers *pi;
|
|
|
|
|
|
|
|
this->ResetNetworkUpdate();
|
2009-04-04 10:23:51 +02:00
|
|
|
if (this->ReceiveUpdate() == false)
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-03-28 16:18:50 +01:00
|
|
|
if (this->ud->type == PING)
|
|
|
|
{
|
|
|
|
NetworkUpdatePingAck *p = (NetworkUpdatePingAck*)ud->data;
|
|
|
|
/* Send ack and go back to this state again */
|
|
|
|
this->SendPingAck(p->seq);
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-03-28 16:18:50 +01:00
|
|
|
}
|
|
|
|
if (this->ud->type != LIST_PEERS)
|
2009-04-04 09:40:17 +02:00
|
|
|
return SERVER_GARBAGE_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
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);
|
2009-04-04 09:40:17 +02:00
|
|
|
return SERVER_GARBAGE_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
2009-04-04 09:40:17 +02:00
|
|
|
if (pi->peers[0].version != FRODO_NETWORK_PROTOCOL_VERSION)
|
|
|
|
return VERSION_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
/* Setup the peer info */
|
|
|
|
char buf[128];
|
|
|
|
|
|
|
|
/* Not sure what to do if this fails */
|
|
|
|
this->IpToStr(buf, pi->peers[0].public_ip);
|
2009-03-08 20:02:19 +01:00
|
|
|
printf("Converted ip to %s:%d\n", buf, pi->peers[0].public_port);
|
2009-04-04 09:40:17 +02:00
|
|
|
if (this->InitSockaddr(&this->connection_addr, buf,
|
|
|
|
pi->peers[0].public_port) == false)
|
|
|
|
{
|
|
|
|
printf("Init sockaddr error\n");
|
|
|
|
return SERVER_GARBAGE_ERROR;
|
|
|
|
}
|
|
|
|
return OK;
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
|
|
|
|
2009-02-28 19:45:26 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-04-04 09:40:17 +02:00
|
|
|
network_connection_error_t Network::WaitForPeerList()
|
2009-01-24 16:48:43 +01:00
|
|
|
{
|
2009-02-13 08:57:40 +01:00
|
|
|
NetworkUpdateListPeers *pi;
|
2009-02-08 12:52:09 +01:00
|
|
|
struct timeval tv;
|
2009-02-13 08:57:40 +01:00
|
|
|
const char **msgs;
|
2009-02-08 12:52:09 +01:00
|
|
|
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
2009-02-11 21:07:28 +01:00
|
|
|
|
2009-02-13 08:57:40 +01:00
|
|
|
this->ResetNetworkUpdate();
|
|
|
|
if (this->ReceiveUpdate(&tv) == false)
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-03-28 16:18:50 +01:00
|
|
|
if (this->ud->type == PING)
|
|
|
|
{
|
|
|
|
NetworkUpdatePingAck *p = (NetworkUpdatePingAck*)ud->data;
|
|
|
|
/* Send ack and go back to this state again */
|
|
|
|
this->SendPingAck(p->seq);
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-03-28 16:18:50 +01:00
|
|
|
}
|
2009-02-16 20:20:00 +01:00
|
|
|
if (ud->type != LIST_PEERS)
|
2009-04-04 09:40:17 +02:00
|
|
|
return SERVER_GARBAGE_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
pi = (NetworkUpdateListPeers *)this->ud->data;
|
2009-04-04 13:18:03 +02:00
|
|
|
if (pi->n_peers == 0)
|
|
|
|
return NO_PEERS_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
msgs = (const char**)calloc(pi->n_peers + 1, sizeof(const char*));
|
|
|
|
|
2009-02-28 19:45:26 +01:00
|
|
|
for (int i = 0; i < pi->n_peers; i++) {
|
2009-02-16 20:20:00 +01:00
|
|
|
msgs[i] = (const char*)pi->peers[i].name;
|
2009-04-04 09:40:17 +02:00
|
|
|
if (pi->peers[i].version != FRODO_NETWORK_PROTOCOL_VERSION)
|
|
|
|
{
|
|
|
|
free(msgs);
|
|
|
|
return VERSION_ERROR;
|
|
|
|
}
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
|
|
|
int sel = menu_select(msgs, NULL);
|
|
|
|
free(msgs);
|
|
|
|
|
|
|
|
/* FIXME! What to do here??? */
|
|
|
|
if (sel < 0)
|
2009-04-04 09:40:17 +02:00
|
|
|
return SERVER_GARBAGE_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
/* Setup the peer info */
|
|
|
|
char buf[128];
|
2009-02-28 19:45:26 +01:00
|
|
|
uint16 port = pi->peers[sel].public_port;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
/* Not sure what to do if this fails */
|
|
|
|
this->IpToStr(buf, pi->peers[sel].public_ip);
|
2009-02-28 19:45:26 +01:00
|
|
|
|
|
|
|
/* Finally tell the broker who we selected */
|
|
|
|
this->SelectPeer(pi->peers[sel].server_id);
|
2009-04-04 09:40:17 +02:00
|
|
|
if (this->InitSockaddr(&this->connection_addr, buf,
|
|
|
|
port) == false)
|
|
|
|
return SERVER_GARBAGE_ERROR;
|
|
|
|
return OK;
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2009-02-16 20:20:00 +01:00
|
|
|
sizeof(NetworkUpdate));
|
|
|
|
bool out;
|
2009-02-13 08:57:40 +01:00
|
|
|
|
|
|
|
this->AddNetworkUpdate(ud);
|
|
|
|
out = this->SendUpdate();
|
|
|
|
this->ResetNetworkUpdate();
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2009-04-04 09:40:17 +02:00
|
|
|
network_connection_error_t Network::ConnectFSM()
|
2009-02-13 08:57:40 +01:00
|
|
|
{
|
2009-04-04 09:40:17 +02:00
|
|
|
network_connection_error_t err;
|
|
|
|
|
2009-02-11 21:07:28 +01:00
|
|
|
/* See http://www.brynosaurus.com/pub/net/p2pnat/ for how this works.
|
|
|
|
*
|
2009-02-13 08:57:40 +01:00
|
|
|
* 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
|
2009-02-11 21:07:28 +01:00
|
|
|
*/
|
2009-02-13 08:57:40 +01:00
|
|
|
switch(this->network_connection_state)
|
|
|
|
{
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_CONNECT_TO_BROKER:
|
2009-02-13 08:57:40 +01:00
|
|
|
if (this->ConnectToBroker() == true)
|
|
|
|
{
|
2009-04-09 15:42:49 +02:00
|
|
|
if (Network::is_master)
|
2009-02-16 20:20:00 +01:00
|
|
|
this->network_connection_state = CONN_WAIT_FOR_PEER_ADDRESS;
|
2009-02-13 08:57:40 +01:00
|
|
|
else
|
2009-02-16 20:20:00 +01:00
|
|
|
this->network_connection_state = CONN_WAIT_FOR_PEER_LIST;
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
|
|
|
break;
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_WAIT_FOR_PEER_ADDRESS:
|
2009-04-04 09:40:17 +02:00
|
|
|
err = this->WaitForPeerAddress();
|
|
|
|
if (err == OK)
|
|
|
|
this->network_connection_state = CONN_CONNECT_TO_PEER;
|
|
|
|
else
|
|
|
|
return err;
|
2009-02-13 08:57:40 +01:00
|
|
|
break;
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_WAIT_FOR_PEER_LIST:
|
2009-02-28 19:45:26 +01:00
|
|
|
/* Also tells the broker that we want to connect */
|
2009-04-04 09:40:17 +02:00
|
|
|
err = this->WaitForPeerList();
|
|
|
|
if (err == OK)
|
|
|
|
this->network_connection_state = CONN_CONNECT_TO_PEER;
|
|
|
|
else
|
|
|
|
return err;
|
2009-02-13 08:57:40 +01:00
|
|
|
break;
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_CONNECT_TO_PEER:
|
2009-02-13 08:57:40 +01:00
|
|
|
if (this->ConnectToPeer() == false)
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
/* Allow some transit time */
|
|
|
|
sleep(1);
|
2009-02-16 20:20:00 +01:00
|
|
|
this->network_connection_state = CONN_WAIT_FOR_PEER_REPLY;
|
2009-02-13 08:57:40 +01:00
|
|
|
break;
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_WAIT_FOR_PEER_REPLY:
|
2009-02-13 08:57:40 +01:00
|
|
|
/* Connect again in case the first sent was dropped on
|
|
|
|
* its way to the peer */
|
|
|
|
if (this->ConnectToPeer() == false)
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
|
|
|
if (this->WaitForPeerReply() == true)
|
|
|
|
this->network_connection_state = CONN_CONNECTED;
|
|
|
|
else
|
|
|
|
return AGAIN_ERROR;
|
2009-02-13 08:57:40 +01:00
|
|
|
break;
|
2009-02-16 20:20:00 +01:00
|
|
|
case CONN_CONNECTED:
|
2009-02-13 08:57:40 +01:00
|
|
|
default:
|
2009-04-04 09:40:17 +02:00
|
|
|
return OK;
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
2009-02-08 12:52:09 +01:00
|
|
|
|
2009-04-04 09:40:17 +02:00
|
|
|
return AGAIN_ERROR;
|
2009-01-24 16:48:43 +01:00
|
|
|
}
|
|
|
|
|
2009-02-13 08:57:40 +01:00
|
|
|
bool Network::Connect()
|
2009-01-29 19:04:31 +01:00
|
|
|
{
|
2009-04-04 13:18:03 +02:00
|
|
|
this->network_connection_state = CONN_CONNECT_TO_BROKER;
|
2009-03-01 12:04:47 +01:00
|
|
|
while (1)
|
2009-02-13 08:57:40 +01:00
|
|
|
{
|
2009-03-01 12:04:47 +01:00
|
|
|
SDL_FillRect(real_screen, 0, SDL_MapRGB(real_screen->format,
|
|
|
|
0x00, 0x80, 0x80));
|
2009-03-29 10:07:07 +02:00
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 30,
|
2009-03-01 12:04:47 +01:00
|
|
|
"Connecting... Hold Esc or 1 to abort");
|
2009-04-09 15:42:49 +02:00
|
|
|
if (Network::is_master)
|
2009-03-29 10:07:07 +02:00
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 50,
|
|
|
|
"(Waiting for client connection)");
|
2009-03-01 12:04:47 +01:00
|
|
|
SDL_Flip(real_screen);
|
|
|
|
#if defined(GEKKO)
|
|
|
|
WPADData *wpad, *wpad_other;
|
2009-03-01 16:47:50 +01:00
|
|
|
Uint32 remote_keys;
|
2009-03-01 12:04:47 +01:00
|
|
|
|
|
|
|
WPAD_ScanPads();
|
|
|
|
|
|
|
|
wpad = WPAD_Data(WPAD_CHAN_0);
|
|
|
|
wpad_other = WPAD_Data(WPAD_CHAN_1);
|
|
|
|
remote_keys = wpad->btns_d | wpad_other->btns_d;
|
|
|
|
|
|
|
|
if (remote_keys & WPAD_BUTTON_1)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
SDL_PumpEvents();
|
|
|
|
if (SDL_GetKeyState(NULL)[SDLK_ESCAPE])
|
|
|
|
return false;
|
|
|
|
|
2009-02-13 08:57:40 +01:00
|
|
|
/* Run the state machine */
|
2009-04-04 09:40:17 +02:00
|
|
|
switch (this->ConnectFSM())
|
|
|
|
{
|
|
|
|
case OK:
|
|
|
|
return true;
|
|
|
|
case AGAIN_ERROR:
|
|
|
|
break;
|
2009-04-04 13:18:03 +02:00
|
|
|
case NO_PEERS_ERROR:
|
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 70,
|
|
|
|
"No servers to connect to.");
|
|
|
|
sleep(1);
|
|
|
|
return false;
|
2009-04-04 09:40:17 +02:00
|
|
|
case VERSION_ERROR:
|
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 70,
|
|
|
|
"Your frodo is too old.");
|
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 90,
|
|
|
|
"See http://frodo-wii.googlecode.com");
|
|
|
|
sleep(1);
|
|
|
|
return false;
|
|
|
|
case SERVER_GARBAGE_ERROR:
|
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 70,
|
|
|
|
"Network error");
|
|
|
|
sleep(1);
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
menu_print_font(real_screen, 255,255,0, 30, 70,
|
|
|
|
"Unknown network error");
|
|
|
|
sleep(1);
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-13 08:57:40 +01:00
|
|
|
}
|
|
|
|
|
2009-02-16 20:20:00 +01:00
|
|
|
return false;
|
2009-01-29 19:04:31 +01:00
|
|
|
}
|
2009-01-24 16:48:43 +01:00
|
|
|
|
2009-02-01 20:47:21 +01:00
|
|
|
void Network::Disconnect()
|
2009-01-29 19:04:31 +01:00
|
|
|
{
|
2009-02-03 19:10:09 +01:00
|
|
|
NetworkUpdate *disconnect = InitNetworkUpdate(this->cur_ud, DISCONNECT,
|
|
|
|
sizeof(NetworkUpdate));
|
2009-01-29 19:04:31 +01:00
|
|
|
|
|
|
|
/* 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-04-09 15:42:49 +02:00
|
|
|
bool Network::is_master = true; /* Assume until set false */
|
2009-04-26 08:02:57 +02:00
|
|
|
bool Network::networking_started = false;
|
2009-02-02 20:51:58 +01:00
|
|
|
|
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
|