2 * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 * All trademarks are property of their respective owners
9 #include "vg/vg_stdint.h"
11 #include "network_msg.h"
12 #include "highscores.h"
13 #include "addon_types.h"
15 #define NETWORK_MAX_REQUESTS 8
20 //#define SR_USE_LOCALHOST
22 /* Call it at start; Connects us to the gameserver */
23 static void network_init(void);
25 /* Run this from main loop */
26 static void network_update(void);
28 /* Call it at shutdown */
29 static void network_end(void);
32 * Can buffer up a bunch of these by calling many times, they will be
33 * sent at the next connection
35 static void network_submit_highscore( u32 trackid
, u16 points
, u16 time
);
38 * Game endpoints are provided with the same names to allow running without a
43 u8 app_symmetric_key
[ 1024 ];
45 EServerMode auth_mode
;
47 HSteamNetConnection remote
;
48 ESteamNetworkingConnectionState state
;
50 f64 last_attempt
, last_frame
;
55 struct network_request
{
56 vg_pool_node poolnode
;
57 void (*callback
)( netmsg_request
*res
, vg_msg
*body
, u64 userdata
);
64 char server_adress
[64];
66 static network_client
= {
67 .auth_mode
= eServerModeAuthentication
,
68 .state
= k_ESteamNetworkingConnectionState_None
,
69 .server_adress
= "46.101.34.155:27402"
72 static int packet_minsize( SteamNetworkingMessage_t
*msg
, u32 size
);
73 static void network_send_item( enum netmsg_playeritem_type type
);
74 static void network_request_scoreboard( const char *mod_uid
,
75 const char *route_uid
,
76 u32 week
, u64 userdata
);
77 static void network_publish_laptime( const char *mod_uid
,
78 const char *route_uid
, f64 lap_time
);
80 static int network_connected(void){
81 return network_client
.state
== k_ESteamNetworkingConnectionState_Connected
;
84 #endif /* NETWORK_H */