src/proto2/NetworkClient.cc
author terom
Sun, 09 Nov 2008 20:40:46 +0000
changeset 24 b81cb670e6b2
parent 23 8d802b573cf0
child 25 af75a1894a32
permissions -rw-r--r--
the great :retab
21
32c6cc55256a change proto2 network code to use CL_NetSession
terom
parents:
diff changeset
     1
32c6cc55256a change proto2 network code to use CL_NetSession
terom
parents:
diff changeset
     2
#include "NetworkClient.hh"
23
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
     3
#include "Engine.hh"
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
     4
#include "Logger.hh"
21
32c6cc55256a change proto2 network code to use CL_NetSession
terom
parents:
diff changeset
     5
32c6cc55256a change proto2 network code to use CL_NetSession
terom
parents:
diff changeset
     6
NetworkClient::NetworkClient (GameState &state, const CL_IPAddress &connect_to) : 
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
     7
    NetworkCore(state), server(netsession.connect(connect_to)) {
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
     8
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
     9
    // connect slots
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    10
    slots.connect(netobjs.sig_create_object(), this, &NetworkClient::on_create_object);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    11
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    12
    // XXX: sig_disconnected
21
32c6cc55256a change proto2 network code to use CL_NetSession
terom
parents:
diff changeset
    13
}
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    14
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    15
void NetworkClient::on_create_object (CL_NetObject_Client &obj, int msg_type, CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    16
    switch (msg_type) {
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    17
        case NETMSG_SERVER_HELLO:
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    18
            on_server_hello(obj, pkt);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    19
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    20
            break;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    21
        
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    22
        case NETMSG_PLAYER_INFO:
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    23
            on_player_info(obj, pkt);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    24
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    25
            break;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    26
        
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    27
        case NETMSG_PLAYER_JOIN:
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    28
            on_player_join(obj, pkt);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    29
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    30
            break;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    31
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    32
        default:
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    33
            Engine::log(WARN, "client.on_create_object") << "unknown msg_type=" << msg_type << " for obj=" << obj;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    34
    }
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    35
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    36
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    37
void NetworkClient::on_server_hello (CL_NetObject_Client &obj, CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    38
    // read the packet
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    39
    uint32_t x = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    40
    uint32_t y = pkt.input.read_uint32();
23
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
    41
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    42
    Coordinate initial_position(x, y);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    43
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    44
    Engine::log(INFO, "client.on_server_hello") << "obj=" << obj << ", pos=" << initial_position;
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    45
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    46
    // create the LocalPlayer object
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    47
    NetworkClientLocalPlayer *player = new NetworkClientLocalPlayer(*this, obj, initial_position);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    48
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    49
    // inform state
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    50
    state.newLocalPlayer(player);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    51
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    52
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    53
void NetworkClient::on_player_info (CL_NetObject_Client &obj, CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    54
    // read the packet
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    55
    uint32_t x = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    56
    uint32_t y = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    57
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    58
    Coordinate initial_position(x, y);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    59
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    60
    Engine::log(INFO, "client.on_player_info") << "obj=" << obj << ", pos=" << initial_position;
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    61
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    62
    // create the LocalPlayer object
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    63
    NetworkClientRemotePlayer *player = new NetworkClientRemotePlayer(*this, obj, initial_position);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    64
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    65
    // inform state
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    66
    state.newRemotePlayer(player);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    67
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    68
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    69
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    70
void NetworkClient::on_player_join (CL_NetObject_Client &obj, CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    71
    // read the packet
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    72
    uint32_t x = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    73
    uint32_t y = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    74
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    75
    Coordinate initial_position(x, y);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    76
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    77
    Engine::log(INFO, "client.on_player_join") << "obj=" << obj << ", pos=" << initial_position;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    78
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    79
    // create the RemotePlayer object
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    80
    NetworkClientRemotePlayer *player = new NetworkClientRemotePlayer(*this, obj, initial_position);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    81
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    82
    // inform state
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    83
    state.newRemotePlayer(player);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    84
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    85
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    86
void NetworkClient::player_quit (NetworkClientRemotePlayer *player) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    87
    // inform state
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    88
    state.removePlayer(player);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    89
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    90
    // delete
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    91
    // XXX: leak because deleting the slot while it's being called breaks ClanLib
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    92
    //  delete player;
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    93
}
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    94
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
    95
NetworkClientLocalPlayer::NetworkClientLocalPlayer (NetworkClient &client, CL_NetObject_Client &obj, Coordinate initial_position) :
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    96
    LocalPlayer(initial_position, true), client(client), obj(obj) {
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    97
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    98
    // receive messages
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
    99
    slots.connect(obj.sig_received_message(NETMSG_PLAYER_POSITION), this, &NetworkClientLocalPlayer::on_position);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   100
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   101
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   102
void NetworkClientLocalPlayer::move (PositionDelta d) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   103
    CL_NetPacket pkt;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   104
    pkt.output.write_uint32(d.dx);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   105
    pkt.output.write_uint32(d.dy);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   106
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   107
    obj.send(NETMSG_CLIENT_MOVE, pkt, false);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   108
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   109
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   110
void NetworkClientLocalPlayer::on_position (CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   111
    uint32_t x = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   112
    uint32_t y = pkt.input.read_uint32();
23
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
   113
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   114
    Coordinate pos (x, y);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   115
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   116
    Engine::log(INFO, "client_player.on_position") << "obj=" << obj << ", pos=" << pos;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   117
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   118
    updatePosition(pos);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   119
}
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   120
        
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   121
NetworkClientRemotePlayer::NetworkClientRemotePlayer (NetworkClient &client, CL_NetObject_Client &obj, Coordinate initial_position) :
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   122
    RemotePlayer(initial_position, true), client(client), obj(obj) {
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   123
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   124
    // receive messages
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   125
    slots.connect(obj.sig_received_message(NETMSG_PLAYER_POSITION), this, &NetworkClientRemotePlayer::on_position);
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   126
    slots.connect(obj.sig_received_message(NETMSG_PLAYER_QUIT), this, &NetworkClientRemotePlayer::on_quit);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   127
}
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   128
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   129
void NetworkClientRemotePlayer::on_position (CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   130
    uint32_t x = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   131
    uint32_t y = pkt.input.read_uint32();
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   132
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   133
    Coordinate pos (x, y);
23
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
   134
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   135
    Engine::log(INFO, "client_player.on_position") << "obj=" << obj << ", pos=" << pos;
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   136
    
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   137
    updatePosition(pos);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   138
}
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   139
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   140
void NetworkClientRemotePlayer::on_quit (CL_NetPacket &pkt) {
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   141
    // pkt is empty
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   142
    (void) pkt;
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   143
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   144
    Engine::log(INFO, "client_player.on_quit") << "obj=" << obj;
23
8d802b573cf0 fixed more network code, there's actually a high probability of it working now
terom
parents: 22
diff changeset
   145
24
b81cb670e6b2 the great :retab
terom
parents: 23
diff changeset
   146
    client.player_quit(this);
22
b70d30e1b0fe all the network code is now there, although it doesn't quite work
terom
parents: 21
diff changeset
   147
}