Go to the documentation of this file.
10 #ifndef NETWORK_INTERNAL_H
11 #define NETWORK_INTERNAL_H
17 #include "../command_type.h"
18 #include "../command_func.h"
19 #include "../misc/endian_buffer.hpp"
31 #define ENABLE_NETWORK_SYNC_EVERY_FRAME
37 #define NETWORK_SEND_DOUBLE_SEED
47 #ifdef DEBUG_DUMP_COMMANDS
50 #define _ddc_fastforward (false)
57 NETWORK_JOIN_STATUS_CONNECTING,
58 NETWORK_JOIN_STATUS_AUTHORIZING,
59 NETWORK_JOIN_STATUS_WAITING,
60 NETWORK_JOIN_STATUS_DOWNLOADING,
61 NETWORK_JOIN_STATUS_PROCESSING,
62 NETWORK_JOIN_STATUS_REGISTERING,
64 NETWORK_JOIN_STATUS_GETTING_COMPANY_INFO,
65 NETWORK_JOIN_STATUS_END,
78 #ifdef NETWORK_SEND_DOUBLE_SEED
79 extern uint32 _sync_seed_2;
102 void NetworkRebuildHostList();
129 void ShowNetworkError(
StringID error_string);
130 void NetworkTextMessage(
NetworkAction action,
TextColour colour,
bool self_send,
const std::string &name,
const std::string &str =
"", int64 data = 0,
const std::string &data_str =
"");
131 uint NetworkCalculateLag(
const NetworkClientSocket *cs);
134 std::string
GenerateCompanyPasswordHash(
const std::string &password,
const std::string &password_server_id, uint32 password_game_seed);
std::string connection_string
Address of the server.
uint8 _network_join_waiting
The number of clients waiting in front of us.
Commands
List of commands.
std::vector< byte > CommandDataBuffer
Storage buffer for serialized command data.
void NetworkQueryServer(const std::string &connection_string)
Query a server to fetch the game-info.
uint8 _network_reconnect
Reconnect timeout.
std::string NormalizeConnectionString(const std::string &connection_string, uint16 default_port)
Normalize a connection string.
NetworkAction
Actions that can be used for NetworkTextMessage.
uint32 frame
the frame in which this packet is executed
NetworkJoinStatus
Status of the clients during joining.
uint32 _network_join_bytes
The number of bytes we already downloaded.
std::string _network_server_invite_code
Our invite code as indicated by the Game Coordinator.
StringID err_msg
string ID of error message to use.
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
void NetworkDistributeCommands()
Distribute the commands of ourself and the clients.
std::string_view ParseCompanyFromConnectionString(const std::string &connection_string, CompanyID *company_id)
Parse the company part ("#company" postfix) of a connecting string.
bool _network_first_time
Whether we have finished joining or not.
void CommandCallback(Commands cmd, const CommandCost &result, TileIndex tile)
Define a callback function for the client, after the command is finished.
CommandPacket * next
the next command packet (if in queue)
Owner
Enum for all companies/owners.
static void NetworkReplaceCommandClientId(CommandPacket &cp, ClientID client_id)
Insert a client ID into the command data in a command packet.
CompanyID company
company that is executing the command
Everything we need to know about a command to be able to execute it.
std::vector< NetworkAddress > NetworkAddressList
Type for a list of addresses.
ClientID
'Unique' identifier to be given to clients
struct NetworkGameList * NetworkAddServer(const std::string &connection_string, bool manually=true, bool never_expire=false)
Validates an address entered as a string and adds the server to the list.
std::string GenerateCompanyPasswordHash(const std::string &password, const std::string &password_server_id, uint32 password_game_seed)
Hash the given password using server ID and game seed.
bool manually
True if the server was added manually.
std::string _network_server_name
The current name of the server you are on.
CompanyMask _network_company_passworded
Bitmask of the password status of all companies.
bool my_cmd
did the command originate from "me"
void GetBindAddresses(NetworkAddressList *addresses, uint16 port)
Get the addresses to bind to.
ConnectionType
The type of connection the Game Coordinator can detect we have.
NetworkAddress ParseConnectionString(const std::string &connection_string, uint16 default_port)
Convert a string containing either "hostname" or "hostname:ip" to a NetworkAddress.
Class for handling the server side of the game connection.
uint32 StringID
Numeric value that represents a string, independent of the selected language.
#define _ddc_fastforward
Helper variable to make the dedicated server go fast until the (first) join.
Wrapper for (un)resolved network addresses; there's no reason to transform a numeric IP to a string a...
uint32 _last_sync_frame
Used in the server to store the last time a sync packet was sent to clients.
CommandPacket()
Make sure the pointer is nullptr.
CommandDataBuffer data
command parameters.
void NetworkSyncCommandQueue(NetworkClientSocket *cs)
Sync our local command queue to the command queue of the given socket.
uint32 _sync_seed_1
Seed to compare during sync checks.
uint32 _sync_frame
The frame to perform the sync check.
Structure with information shown in the game list (GUI)
NetworkJoinStatus _network_join_status
The status of joining.
uint32 _frame_counter
The current frame.
ConnectionType _network_server_connection_type
What type of connection the Game Coordinator detected we are on.
@ INVALID_COMPANY
An invalid company.
void NetworkExecuteLocalCommandQueue()
Execute all commands on the local command queue that ought to be executed this frame.
StringID GetNetworkErrorMsg(NetworkErrorCode err)
Retrieve the string id of an internal error number.
NetworkAddressList _broadcast_list
List of broadcast addresses.
void UpdateNetworkGameWindow()
Update the network new window because a new server is found on the network.
bool NetworkMakeClientNameUnique(std::string &new_name)
Check whether a name is unique, and otherwise try to make it unique.
CommandCallback * callback
any callback function executed upon successful completion of the command.
uint32 _frame_counter_server
The frame_counter of the server, if in network-mode.
void NetworkFreeLocalCommandQueue()
Free the local command queues.
uint32 _network_join_bytes_total
The total number of bytes to download.
uint32 _frame_counter_max
To where we may go with our clients.
NetworkErrorCode
The error codes we send around in the protocols.
Commands cmd
command being executed.