medium sized dollop
[carveJwlIkooP6JGAAIwe30JlM.git] / network.h
index 1ffb06b8bb496d5996016adc27ff231d66e96c42..42bee347766226016a3b85b522a437062ecf21e1 100644 (file)
--- a/network.h
+++ b/network.h
@@ -9,16 +9,16 @@
 /* 
  * Interface
  */
-//#define SR_USE_LOCALHOST
+#define SR_USE_LOCALHOST
 
 /* Call it at start; Connects us to the gameserver */
-static void network_init(void);
+static int network_init(void);
 
 /* Run this from main loop */
 static void network_update(void);
 
 /* Call it at shutdown */
-static void network_end(void);
+static void network_end(void*_);
 
 /* 
  * Can buffer up a bunch of these by calling many times, they will be
@@ -263,6 +263,8 @@ static void on_inet_scoreboard( SteamNetworkingMessage_t *msg )
    /* 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)
@@ -318,7 +320,7 @@ static void network_update(void)
          }
          else
          {
-            vg_log( "Not making remote connection; app ticket not gotten\n" );
+            vg_low( "Not making remote connection; app ticket not gotten\n" );
          }
       }
 
@@ -332,7 +334,7 @@ static void network_update(void)
    }
 }
 
-static void network_init(void)
+static int network_init(void)
 {
    if( steam_ready )
    {
@@ -340,9 +342,11 @@ static void network_init(void)
                                on_server_connect_status );
       request_auth_ticket();
    }
+
+   return 1;
 }
 
-static void network_end(void)
+static void network_end(void*_)
 {
    /* TODO: Fire off any buffered highscores that need to be setn */
    if( cremote_state == k_ESteamNetworkingConnectionState_Connected ||
@@ -355,9 +359,9 @@ static void network_end(void)
 
 #else /* SR_NETWORKED */
 
-static void network_init(void){}
+static int network_init(void){ return 1; }
 static void network_update(void){}
-static void network_end(void){}
+static void network_end(void*_){}
 
 #endif /* SR_NETWORKED */
 #endif /* NETWORK_H */