From ed27e085d84e6ce370fae55fa4188448321dd19f Mon Sep 17 00:00:00 2001 From: Mike Baldwin <7369476+ropemonkey@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:46:19 -0800 Subject: [PATCH] Updated to v1.63 --- configs/SteamClient.json | 8 --- configs/SteamFriends.json | 8 --- configs/SteamMatchmaking.json | 4 -- configs/SteamTimeline.json | 119 ++++++++++++++++++++++++++++++---- configs/SteamUGC.json | 10 +++ configs/SteamUserStats.json | 3 - 6 files changed, 117 insertions(+), 35 deletions(-) diff --git a/configs/SteamClient.json b/configs/SteamClient.json index a704724..2b6daf6 100644 --- a/configs/SteamClient.json +++ b/configs/SteamClient.json @@ -89,10 +89,6 @@ "name": "GetISteamScreenshots", "args": ["SteamAPI.GetHSteamUser()", "SteamAPI.GetHSteamPipe()", "Constants.STEAMSCREENSHOTS_INTERFACE_VERSION"] }, - { - "name": "GetISteamGameSearch", - "args": ["SteamAPI.GetHSteamUser()", "SteamAPI.GetHSteamPipe()", "Constants.STEAMGAMESEARCH_INTERFACE_VERSION"] - }, { "name": "GetIPCCallCount", "label": true @@ -125,10 +121,6 @@ "name": "GetISteamMusic", "args": ["SteamAPI.GetHSteamUser()", "SteamAPI.GetHSteamPipe()", "Constants.STEAMMUSIC_INTERFACE_VERSION"] }, - { - "name": "GetISteamMusicRemote", - "args": ["SteamAPI.GetHSteamUser()", "SteamAPI.GetHSteamPipe()", "Constants.STEAMMUSICREMOTE_INTERFACE_VERSION"] - }, { "name": "GetISteamHTMLSurface", "args": ["SteamAPI.GetHSteamUser()", "SteamAPI.GetHSteamPipe()", "Constants.STEAMHTMLSURFACE_INTERFACE_VERSION"] diff --git a/configs/SteamFriends.json b/configs/SteamFriends.json index 466ec2d..de96491 100644 --- a/configs/SteamFriends.json +++ b/configs/SteamFriends.json @@ -29,10 +29,6 @@ "name": "GetPersonaName", "label": true }, - { - "name": "SetPersonaName", - "args": ["SteamFriends.GetPersonaName()"] - }, { "name": "GetPersonaState", "label": true @@ -255,10 +251,6 @@ "label": true, "args": ["m_Clan", "0"] }, - { - "name": "GetUserRestrictions", - "label": true - }, { "name": "SetRichPresence", "args": ["\"status\"", "\"Testing 1.. 2.. 3..\""] diff --git a/configs/SteamMatchmaking.json b/configs/SteamMatchmaking.json index 4cf90e5..bbb6718 100644 --- a/configs/SteamMatchmaking.json +++ b/configs/SteamMatchmaking.json @@ -172,10 +172,6 @@ { "name": "SetLinkedLobby", "args": ["m_Lobby", "m_Lobby"] - }, - { - "name": "CheckForPSNGameBootInvite", - "skip": "PS3 Only." } ], diff --git a/configs/SteamTimeline.json b/configs/SteamTimeline.json index c083253..cdbbf34 100644 --- a/configs/SteamTimeline.json +++ b/configs/SteamTimeline.json @@ -1,31 +1,126 @@ { + "variables": + [ + ["TimelineEventHandle_t", "m_RangeEvent"] + ], + + "callresults": + [ + "SteamTimelineEventRecordingExists_t", + "SteamTimelineGamePhaseRecordingExists_t" + ], + "functions": [ { - "name": "SetTimelineStateDescription", + "name": "SetTimelineTooltip", "args": [ - "\"Description\"", + "\"Tooltip Description\"", "0.0f" ] }, { - "name": "ClearTimelineStateDescription", + "name": "ClearTimelineTooltip", "args": [ "0.0f" ] }, { - "name": "AddTimelineEvent", + "name": "SetTimelineGameMode", + "args": [ "ETimelineGameMode.k_ETimelineGameMode_Menus" ] + }, + { + "name": "AddInstantaneousTimelineEvent", "args": [ - "\"steam_marker\"", - "\"Test Event\"", - "\"Test Description\"", + "\"Test Inst Event\"", + "\"Test Inst Description\"", + "\"\"", + "0" + ] + }, + { + "name": "AddRangeTimelineEvent", + "args": [ + "\"Test Range Event\"", + "\"Test Range Description\"", + "\"\"", + "0" + ], + "returnname": "m_RangeEvent" + }, + { + "name": "StartRangeTimelineEvent", + "args": [ + "\"Test Range Event\"", + "\"Test Range Description\"", + "\"\"", "0", - "-5.0f", - "5.0f", - "ETimelineEventClipPriority.k_ETimelineEventClipPriority_Standard" + "0.0f", + "ETimelineEventClipPriority.k_ETimelineEventClipPriority_None" + ], + "returnname": "m_RangeEvent" + }, + { + "name": "UpdateRangeTimelineEvent", + "args": [ + "m_RangeEvent", + "\"Test Updated Event\"", + "\"Test Updated Description\"", + "\"\"", + "0", + "ETimelineEventClipPriority.k_ETimelineEventClipPriority_None" ] }, { - "name": "SetTimelineGameMode", - "args": [ "ETimelineGameMode.k_ETimelineGameMode_Playing" ] + "name": "EndRangeTimelineEvent", + "args": [ + "m_RangeEvent", + "0.0f" + ] + }, + { + "name": "RemoveTimelineEvent", + "args": [ "m_RangeEvent" ] + }, + { + "name": "DoesEventRecordingExist", + "args": [ "m_RangeEvent" ] + }, + { + "name": "StartGamePhase" + }, + { + "name": "EndGamePhase" + }, + { + "name": "SetGamePhaseID", + "args": [ "\"Test Game Phase\"" ] + }, + { + "name": "DoesGamePhaseRecordingExist", + "args": [ "\"Test Game Phase\"" ] + }, + { + "name": "AddGamePhaseTag", + "args": [ + "\"Tag\"", + "\"\"", + "\"Tag Group\"", + "0" + ] + }, + { + "name": "SetGamePhaseAttribute", + "args": [ + "\"Attr Group\"", + "\"Attr Value\"", + "0" + ] + }, + { + "name": "OpenOverlayToGamePhase", + "args": [ "\"Test Game Phase\"" ] + }, + { + "name": "OpenOverlayToTimelineEvent", + "args": [ "m_RangeEvent" ] } ] } diff --git a/configs/SteamUGC.json b/configs/SteamUGC.json index 3c9b687..72aa4df 100644 --- a/configs/SteamUGC.json +++ b/configs/SteamUGC.json @@ -439,6 +439,16 @@ "name": "GetUserContentDescriptorPreferences", "outargs": [["EUGCContentDescriptorID[]", "pvecDescriptors = new EUGCContentDescriptorID[100]"]], "args": ["pvecDescriptors", "(uint)pvecDescriptors.Length"] + }, + { + "name": "SetItemsDisabledLocally", + "precall": ["PublishedFileId_t[] PublishedFileIds = new PublishedFileId_t[] { TestConstants.Instance.k_PublishedFileId_Champions };"], + "args": ["PublishedFileIds", "(uint)PublishedFileIds.Length", "false"] + }, + { + "name": "SetSubscriptionsLoadOrder", + "precall": ["PublishedFileId_t[] PublishedFileIds = new PublishedFileId_t[] { TestConstants.Instance.k_PublishedFileId_Champions };"], + "args": ["PublishedFileIds", "(uint)PublishedFileIds.Length"] } ], diff --git a/configs/SteamUserStats.json b/configs/SteamUserStats.json index e46587c..01eea56 100644 --- a/configs/SteamUserStats.json +++ b/configs/SteamUserStats.json @@ -11,9 +11,6 @@ "functions": [ - { - "name": "RequestCurrentStats" - }, { "name": "GetStat", "label": true,