update helpers/location to 'frosted' ui
[carveJwlIkooP6JGAAIwe30JlM.git] / steam.h
diff --git a/steam.h b/steam.h
index 8720c08aef8314c6dfc924781958a6af9dd0ac7e..e2ed9822ceed634aa84106aa87ab91cdb2e8925a 100644 (file)
--- a/steam.h
+++ b/steam.h
@@ -1,86 +1,19 @@
 /*
- * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
+ * Copyright (C) 2021-2024 Mt.ZERO Software, Harry Godden - All Rights Reserved
  * All trademarks are property of their respective owners
  */
-
-#ifndef STEAM_H
-#define STEAM_H
-
-#include "vg/vg_steam.h"
-#include "vg/vg_steam_utils.h"
-#include "vg/vg_steam_networking.h"
-#include "vg/vg_steam_auth.h"
-#include "vg/vg_steam_http.h"
-
-/*
- * We only want to use steamworks if building for the networked version,
- * theres not much point otherwise. We mainly want steamworks for setting
- * achievements etc.. so that includes our own server too.
- *
- * This file also wraps the functions and interfaces that we want to use to 
- * make them a bit easier to read, since they are the flat API they have very 
- * long names. in non-networked builds they will return default errors or do
- * nothing.
- */
-
-static void recv_steam_warning( int severity, const char *msg )
-{
-   if( severity == 0 )
-      vg_low( "%s\n", msg );
-   else
-      vg_info( "%s\n", msg );
-}
-
-static int steam_ready = 0;
-static void *hSteamNetworkingSockets,
-            *hSteamUser;
-
-static HSteamPipe hSteamClientPipe;
-
-static int steam_init(void)
-{
-#ifdef SR_NETWORKED
-   vg_info( "Initializing steamworks\n" );
-
-   if( !SteamAPI_Init() )
-   {
-      printf("\n");
-      vg_error( "Steamworks failed to initialize\n" );
-      return 1;
-   }
-
-   steam_ready = 1;
-
-   SteamAPI_ManualDispatch_Init();
-
-   /* Connect interfaces */
-   hSteamClientPipe = SteamAPI_GetHSteamPipe();
-   hSteamNetworkingSockets = SteamAPI_SteamNetworkingSockets_SteamAPI();
-   hSteamUser = SteamAPI_SteamUser();
-
-   ISteamUtils *utils = SteamAPI_SteamUtils();
-   SteamAPI_ISteamUtils_SetWarningMessageHook( utils, recv_steam_warning );
-
-   printf("\n");
-   vg_success( "\nSteamworks API running\n" );
-#endif
-
-   return 1;
-}
-
-static void steam_update(void)
-{
-   if( steam_ready )
-      steamworks_event_loop( hSteamClientPipe );
-}
-
-static void steam_end(void *nothing)
-{
-   if( steam_ready )
-   {
-      vg_info( "Shutting down\n..." );
-      SteamAPI_Shutdown();
-   }
-}
-
-#endif /* STEAM_H */
+#pragma once
+
+extern int steam_ready, steam_stats_ready;
+extern void *hSteamNetworkingSockets, *hSteamUser, *hSteamUserStats;
+extern char steam_username_at_startup[128];
+
+int steam_init(void);
+void steam_update(void);
+void steam_end(void);
+u32 str_utf8_collapse( const char *str, char *buf, u32 length );
+int steam_achievement_ccmd( int argc, char const *argv[] );
+void steam_print_all_achievements(void);
+void steam_clear_achievement( const char *name );
+void steam_set_achievement( const char *name );
+void steam_store_achievements(void);