well yeah i guess
[carveJwlIkooP6JGAAIwe30JlM.git] / network.h
index ee0f334d5cb04156dda91cac833cdcbd8cd04b9c..b47f518dd514b5003923f523cb12d8fa9fc1866b 100644 (file)
--- a/network.h
+++ b/network.h
@@ -1,28 +1,35 @@
+/*
+ * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
+ * All trademarks are property of their respective owners
+ */
+
 #ifndef NETWORK_H
 #define NETWORK_H
 
 #include "vg/vg_stdint.h"
 #include "steam.h"
 #include "network_msg.h"
+#include "highscores.h"
 
 /* 
  * Interface
  */
+//#define SR_USE_LOCALHOST
 
 /* Call it at start; Connects us to the gameserver */
-static void network_init(void);
+VG_STATIC void network_init(void);
 
 /* Run this from main loop */
-static void network_update(void);
+VG_STATIC void network_update(void);
 
 /* Call it at shutdown */
-static void network_end(void);
+VG_STATIC void network_end(void*_);
 
 /* 
  * Can buffer up a bunch of these by calling many times, they will be
  * sent at the next connection 
  */
-static void network_submit_highscore( u32 trackid, u16 points, u16 time );
+VG_STATIC void network_submit_highscore( u32 trackid, u16 points, u16 time );
 
 /*
  * Game endpoints are provided with the same names to allow running without a
@@ -33,20 +40,21 @@ static void network_submit_highscore( u32 trackid, u16 points, u16 time );
 /* 
  * Runtime connection stuff
  */
-static u8 steam_app_ticket[ 1024 ];
-static u32 steam_app_ticket_length;
+VG_STATIC u8 steam_app_ticket[ 1024 ];
+VG_STATIC u32 steam_app_ticket_length;
+VG_STATIC int network_name_update = 1;
 
-static HSteamNetConnection cremote;
-static ESteamNetworkingConnectionState cremote_state = 
+VG_STATIC HSteamNetConnection cremote;
+VG_STATIC ESteamNetworkingConnectionState cremote_state = 
      k_ESteamNetworkingConnectionState_None;
 
 /* 
  * Implementation
  */
 
-static void scores_update(void);
+VG_STATIC void scores_update(void);
 
-static void on_auth_ticket_recieved( void *result, void *context )
+VG_STATIC void on_auth_ticket_recieved( void *result, void *context )
 {
    EncryptedAppTicketResponse_t *response = result;
 
@@ -74,7 +82,7 @@ static void on_auth_ticket_recieved( void *result, void *context )
    }
 }
 
-static void request_auth_ticket(void)
+VG_STATIC void request_auth_ticket(void)
 {
    /* 
     * TODO Check for one thats cached on the disk and load it.
@@ -89,14 +97,131 @@ static void request_auth_ticket(void)
                                                               NULL, 0 );
 }
 
-static void server_connect(void)
+VG_STATIC void send_auth_ticket(void)
 {
-   /* Connect to server if not connected */
+   u32 size = sizeof(netmsg_auth) + steam_app_ticket_length;
+   netmsg_auth *auth = alloca(size);
+
+   auth->inetmsg_id = k_inetmsg_auth;
+   auth->ticket_length = steam_app_ticket_length; 
+   for( int i=0; i<steam_app_ticket_length; i++ )
+      auth->ticket[i] = steam_app_ticket[i];
+
+   SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
+         hSteamNetworkingSockets, cremote, auth, size,
+         k_nSteamNetworkingSend_Reliable, NULL );
+}
+
+VG_STATIC void send_score_request(void)
+{
+   vg_info( "Requesting scores\n" );
+   netmsg_scores_request req;
+   req.inetmsg_id = k_inetmsg_scores_request;
+
+   SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
+         hSteamNetworkingSockets, cremote, &req, sizeof(netmsg_scores_request),
+         k_nSteamNetworkingSend_Reliable, NULL );
+}
+
+VG_STATIC void send_score_update(void)
+{
+   vg_info( "Sending scores\n" );
+   u32 size = sizeof(netmsg_set_score) + 
+                  vg_list_size(track_infos)*sizeof(struct netmsg_score_record);
+   netmsg_set_score *setscore = alloca( size );
+   setscore->inetmsg_id = k_inetmsg_set_score;
+
+   int count = 0;
+   for( u32 i=0; i<vg_list_size(track_infos); i++ )
+   {
+      if( track_infos[i].push )
+      {
+         track_infos[i].push = 0;
+         highscore_record *user_record = highscore_find_user_record( 0, i );
+
+         if( !user_record )
+         {
+            vg_error( "No score set but tried to upload for track %u\n", i );
+            continue;
+         }
+
+         setscore->records[count].trackid = i;
+         setscore->records[count].playerid = 0;
+         setscore->records[count].points = user_record->points;
+         setscore->records[count].time = user_record->time;
+
+         count ++;
+      }
+   }
+
+   if( count == 0 )
+      return;
+
+   u32 send_size = sizeof(netmsg_set_score) +
+                  count*sizeof(struct netmsg_score_record);
+   setscore->record_count = count;
+
+   SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
+         hSteamNetworkingSockets, cremote, setscore, send_size,
+         k_nSteamNetworkingSend_Reliable, NULL );
+}
+
+VG_STATIC void send_nickname(void)
+{
+   netmsg_set_nickname nick;
+   nick.inetmsg_id = k_inetmsg_set_nickname;
+
+   memset( nick.nickname, 0, 16 );
+   vg_strncpy( steam_username_at_startup, nick.nickname, 16 );
    
+   SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
+         hSteamNetworkingSockets, cremote, &nick, sizeof(netmsg_set_nickname),
+         k_nSteamNetworkingSend_Reliable, NULL );
+
+   network_name_update = 0;
+}
+
+VG_STATIC void server_routine_update(void)
+{
+   send_auth_ticket();
+
+   if( network_name_update )
+      send_nickname();
+
+   send_score_update();
+   send_score_request();
+}
+
+VG_STATIC void on_server_connect_status( CallbackMsg_t *msg )
+{
+   SteamNetConnectionStatusChangedCallback_t *info = (void *)msg->m_pubParam;
+   vg_info( "  Connection status changed for %lu\n", info->m_hConn );
+   vg_info( "  %s -> %s\n", 
+         string_ESteamNetworkingConnectionState(info->m_eOldState),
+         string_ESteamNetworkingConnectionState(info->m_info.m_eState) );
+
+   if( info->m_hConn == cremote )
+   {
+      cremote_state = info->m_info.m_eState;
+      if( info->m_info.m_eState ==
+            k_ESteamNetworkingConnectionState_Connected )
+      {
+         vg_success("  Connected to remote server.. running updates\n");
+         server_routine_update();
+      }
+   }
+   else
+   {
+      vg_warn( "  Recieved signal from unknown connection\n" );
+   }
+}
+
+VG_STATIC void network_connect_gc(void)
+{
+   /* Connect to server if not connected */
    SteamNetworkingIPAddr remoteAddr;
 
-#define USE_LOCALHOST
-#ifdef USE_LOCALHOST
+#ifdef SR_USE_LOCALHOST
    SteamAPI_SteamNetworkingIPAddr_SetIPv6LocalHost( &remoteAddr, 27402 );
 #else
    const char *server_lon1 = "46.101.34.155:27402";
@@ -111,58 +236,43 @@ static void server_connect(void)
                   hSteamNetworkingSockets, &remoteAddr, 0, NULL );
 }
 
-static void send_auth_ticket(void)
+VG_STATIC void on_inet_scoreboard( SteamNetworkingMessage_t *msg )
 {
-   u32 size = sizeof(netmsg_auth) + steam_app_ticket_length;
-   netmsg_auth *auth = malloc(size);
+   netmsg_scoreboard *sb = msg->m_pData;
 
-   auth.inetmsg_id = k_inetmsg_auth;
-   auth.ticket_length = steam_app_ticket_length; 
-   for( int i=0; i<steam_app_ticket_length; i++ )
-      auth.ticket[i] = steam_app_ticket[i];
-
-   SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
-         hSteamNetworkingSockets, cremote, auth, size,
-         k_nSteamNetworkingSend_Reliable, NULL );
-   
-   free( auth );
-}
+   u32 base_size = sizeof(netmsg_scoreboard)-
+      sizeof(struct netmsg_board)*vg_list_size(track_infos),
+       expected = base_size+sizeof(struct netmsg_board)*sb->board_count;
 
-static void scores_update(void)
-{
-   vg_log( "scores_update()\n" );
-
-   if( cremote_state == k_ESteamNetworkingConnectionState_Connected )
+   if( msg->m_cbSize != expected )
    {
-      /*
-       * request updated scores, this does not require any authentication.
-       */
-      netmsg_scores_request req;
-      req.inetmsg_id = k_inetmsg_scores_request;
-
-      SteamAPI_ISteamNetworkingSockets_SendMessageToConnection(
-            hSteamNetworkingSockets, cremote, &req, 
-            sizeof(netmsg_scores_request),
-            k_nSteamNetworkingSend_Reliable, NULL );
-
-      /*
-       * Send record update, it requires authentication
-       */
-      if( steam_app_ticket_length )
-      {
-      }
+      vg_error( "Server scoreboard was corrupted. Size: %u != %u\n",
+            msg->m_cbSize, expected );
    }
    else
    {
-      /* 
-       * if we are not connected, make a connection to the server and then in 
-       * the future this function will be called again when it is connected 
-       */
-      server_connect();
+      if( vg_list_size(track_infos) > sb->board_count )
+         vg_warn( "Server is out of date, not enough boards recieved\n");
+      else if( vg_list_size(track_infos) < sb->board_count )
+         vg_warn( "Client out of date, server sent more boards than we have\n");
+      else
+         vg_success( "Recieved new scoreboards from server\n" );
+
+      for( int i=0; i < vg_min(sb->board_count,vg_list_size(track_infos)); i++)
+      {
+         scoreboard_client_data.boards[i] = sb->boards[i];
+         highscores_board_printf( stdout, sb->boards[i].data, 10 );
+      }
    }
+
+   /* We dont need to stay on the server currently */
+   SteamAPI_ISteamNetworkingSockets_CloseConnection(
+         hSteamNetworkingSockets, cremote, 0, NULL, 1 );
+
+   network_scores_updated = 1;
 }
 
-static void poll_connection(void)
+VG_STATIC void poll_connection(void)
 {
    SteamNetworkingMessage_t *messages[32];
    int len;
@@ -181,57 +291,55 @@ static void poll_connection(void)
 
          if( msg->m_cbSize < sizeof(netmsg_blank) )
          {
-            vg_warn( "Discarding message (too small: %d)\n", 
-                  msg->m_cbSize );
+            vg_warn( "Discarding message (too small: %d)\n", msg->m_cbSize );
             continue;
          }
 
          netmsg_blank *tmp = msg->m_pData;
-         if( tmp->inetmsg_id == k_inetmsg_scores_info )
-         {
-            netmsg_scores_info *info = msg->m_pData;
-            vg_log( "Recieved %u score records\n", info->record_count );
 
-            SteamAPI_ISteamNetworkingSockets_CloseConnection(
-                  hSteamNetworkingSockets, cremote, 0, NULL, 1 );
-            cremote_state = k_ESteamNetworkingConnectionState_None;
-         }
+         if( tmp->inetmsg_id == k_inetmsg_scoreboard )
+            on_inet_scoreboard( msg );
 
          SteamAPI_SteamNetworkingMessage_t_Release( msg );
       }
    }
 }
 
-static u64 in_server_ticks( double seconds )
+/*
+ * Subroutine to be connected to main game loop, runs all routines on timers
+ */
+VG_STATIC void network_update(void)
 {
-   return (u64)(seconds / 0.1);
-}
+   if( steam_ready )
+   {
+      static double last_update = 0.0;
+      poll_connection();
+      
+      if( vg.time > (last_update + 60.0) )
+      {
+         last_update = vg.time;
 
-static void on_server_connect_status( CallbackMsg_t *msg )
-{
-   SteamNetConnectionStatusChangedCallback_t *info = (void *)msg->m_pubParam;
-   vg_info( "  Connection status changed for %lu\n", info->m_hConn );
-   vg_info( "  %s -> %s\n", 
-         string_ESteamNetworkingConnectionState(info->m_info.m_eState),
-         string_ESteamNetworkingConnectionState(info->m_eOldState) );
+         if( steam_app_ticket_length )
+         {
+            network_connect_gc();
+         }
+         else
+         {
+            vg_low( "Not making remote connection; app ticket not gotten\n" );
+         }
+      }
 
-   if( info->m_hConn == cremote )
-   {
-      cremote_state = info->m_info.m_eState;
-      if( info->m_info.m_eState ==
-            k_ESteamNetworkingConnectionState_Connected )
+      if( vg.time > (last_update + 10.0) && 
+            (cremote_state == k_ESteamNetworkingConnectionState_Connected ))
       {
-         vg_success("  Connected to remote server\n");
-         scores_update();
+         vg_warn( "Connected to server but no return... disconnecting\n" );
+         SteamAPI_ISteamNetworkingSockets_CloseConnection(
+               hSteamNetworkingSockets, cremote, 0, NULL, 1 );
       }
    }
-   else
-   {
-      vg_warn( "  Recieved signal from unknown connection\n" );
-   }
 }
 
-static void network_init(void)
+VG_STATIC void network_init(void)
 {
    if( steam_ready )
    {
@@ -241,25 +349,22 @@ static void network_init(void)
    }
 }
 
-static void network_update(void)
+VG_STATIC void network_end(void*_)
 {
-   if( steam_ready )
+   /* TODO: Fire off any buffered highscores that need to be setn */
+   if( cremote_state == k_ESteamNetworkingConnectionState_Connected ||
+       cremote_state == k_ESteamNetworkingConnectionState_Connecting )
    {
-      static double last_update = -9000.0;
-      poll_connection();
-      
-      if( vg_time > (last_update + 60.0) )
-      {
-         last_update = vg_time;
-         scores_update();
-      }
+      SteamAPI_ISteamNetworkingSockets_CloseConnection(
+            hSteamNetworkingSockets, cremote, 0, NULL, 1 );
    }
 }
 
-static void network_end(void)
-{
-   /* TODO: Fire off any buffered highscores that need to be setn */
-}
+#else /* SR_NETWORKED */
 
-#endif
+VG_STATIC void network_init(void){}
+VG_STATIC void network_update(void){}
+VG_STATIC void network_end(void*_){}
+
+#endif /* SR_NETWORKED */
 #endif /* NETWORK_H */