OpenTTD Source  1.11.0-beta2
network_base.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD 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, version 2.
4  * OpenTTD 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.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef NETWORK_BASE_H
11 #define NETWORK_BASE_H
12 
13 #include "network_type.h"
14 #include "core/address.h"
15 #include "../core/pool_type.hpp"
16 #include "../company_type.h"
17 
21 
23 struct NetworkClientInfo : NetworkClientInfoPool::PoolItem<&_networkclientinfo_pool> {
26  byte client_lang;
29 
36 
38 };
39 
40 #endif /* NETWORK_BASE_H */
NetworkClientInfoPool
Pool< NetworkClientInfo, ClientIndex, 8, MAX_CLIENT_SLOTS, PT_NCLIENT > NetworkClientInfoPool
Type for the pool with client information.
Definition: network_base.h:19
INVALID_CLIENT_ID
@ INVALID_CLIENT_ID
Client is not part of anything.
Definition: network_type.h:40
NetworkClientInfo::client_playas
CompanyID client_playas
As which company is this client playing (CompanyID)
Definition: network_base.h:27
_networkclientinfo_pool
NetworkClientInfoPool _networkclientinfo_pool
Make sure both pools have the same size.
NetworkClientInfo::client_name
char client_name[NETWORK_CLIENT_NAME_LENGTH]
Name of the client.
Definition: network_base.h:25
NetworkClientInfo::join_date
Date join_date
Gamedate the client has joined.
Definition: network_base.h:28
NETWORK_CLIENT_NAME_LENGTH
static const uint NETWORK_CLIENT_NAME_LENGTH
The maximum length of a client's name, in bytes including '\0'.
Definition: config.h:47
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
NetworkClientInfo::~NetworkClientInfo
~NetworkClientInfo()
Basically a client is leaving us right now.
Definition: network.cpp:108
NetworkClientInfo::GetByClientID
static NetworkClientInfo * GetByClientID(ClientID client_id)
Return the CI given it's client-identifier.
Definition: network.cpp:119
NetworkClientInfo::client_lang
byte client_lang
The language of the client.
Definition: network_base.h:26
address.h
ClientID
ClientID
'Unique' identifier to be given to clients
Definition: network_type.h:39
Date
int32 Date
The type to store our dates in.
Definition: date_type.h:14
NetworkClientInfo::NetworkClientInfo
NetworkClientInfo(ClientID client_id=INVALID_CLIENT_ID)
Create a new client.
Definition: network_base.h:34
NetworkClientInfo::client_id
ClientID client_id
Client identifier (same as ClientState->client_id)
Definition: network_base.h:24
Pool
Base class for all pools.
Definition: pool_type.hpp:81
Pool::PoolItem
Base class for all PoolItems.
Definition: pool_type.hpp:226
NetworkClientInfo
Container for all information known about a client.
Definition: network_base.h:23
network_type.h