2 * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 * All trademarks are property of their respective owners
7 #include "vg/vg_platform.h"
8 #include "vg/vg_steam_networking.h"
10 #include "network_common.h"
11 #include "network_msg.h"
12 #include "addon_types.h"
14 #define NETWORK_MAX_REQUESTS 8
20 /* Call it at start; Connects us to the gameserver */
21 void network_init(void);
23 /* Run this from main loop */
24 void network_update(void);
26 /* Call it at shutdown */
27 void network_end(void);
30 * Can buffer up a bunch of these by calling many times, they will be
31 * sent at the next connection
33 void network_submit_highscore( u32 trackid
, u16 points
, u16 time
);
36 * Game endpoints are provided with the same names to allow running without a
42 u8 app_symmetric_key
[ 1024 ];
44 EServerMode auth_mode
;
46 HSteamNetConnection remote
;
47 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];
67 k_server_intent_offline
,
68 k_server_intent_online
71 f64 last_intent_change
;
72 f32 fintent
; /* yeah this shit really shouldnt be here but oh well */
74 extern network_client
;
76 int packet_minsize( SteamNetworkingMessage_t
*msg
, u32 size
);
77 void network_send_item( enum netmsg_playeritem_type type
);
78 void network_request_scoreboard( const char *mod_uid
,
79 const char *route_uid
,
80 u32 week
, u64 userdata
);
81 void network_publish_laptime( const char *mod_uid
,
82 const char *route_uid
, f64 lap_time
);
83 void chat_send_message( const char *message
);
84 void render_server_status_gui(void);
85 void network_status_string( vg_str
*str
, u32
*colour
);
86 void network_send_region(void);
88 static inline int network_connected(void)
90 if( network_client
.remote_version
!= NETWORK_SKATERIFT_VERSION
) return 0;
91 return network_client
.state
== k_ESteamNetworkingConnectionState_Connected
;