blob: 488e407f1663890817fff95551d5f97a3f7aa489 (
plain)
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
|
/*
core/player.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2.
*/
#include "sys/sys.h"
#include "core/player.h"
namespace core
{
Player::Player()
{
clear();
}
Player::~Player()
{
clear();
}
void Player::clear()
{
player_id = 0;
player_name.clear();
player_dirty = false;
player_control = 0;
}
void Player::serialize_client_update(std::ostream & os) const
{
os << " " << player_color << " \"" << player_name << "\"";
}
void Player::recieve_client_update(std::istream &is)
{
is >> player_color;
std::string n;
char c;
while ( (is.get(c)) && (c != '"'));
while ( (is.get(c)) && (c != '"'))
n += c;
if (n.size())
player_name = n;
}
void Player::serialize_server_update(std::ostream & os) const
{
unsigned int co;
if (player_control)
co = player_control->id();
else
co = 0;
os << player_id << " " << co << " " << player_color << " \"" << player_name << "\"";
}
void Player::recieve_server_update(std::istream &is)
{
is >> player_id;
unsigned int co = 0;
is >> co;
if (co) {
Entity *e = Entity::find(co);
if (e && e->type() == Entity::Controlable) {
player_control = (EntityControlable *) e;
} else {
player_control = 0;
con_warn << "control set to unknown entity " << co << "\n";
}
} else {
player_control = 0;
}
is >> player_color;
std::string n;
char c;
while ( (is.get(c)) && (c != '"'));
while ( (is.get(c)) && (c != '"'))
n += c;
if (n.size())
player_name = n;
}
}
|