mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-27 23:25:50 +03:00
lsteamclient: Forward SteamUtils interfaces
This commit is contained in:
parent
f5bbcfd4b9
commit
e1be52a909
@ -109,30 +109,9 @@ files = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
aliases = {
|
aliases = {
|
||||||
#Some interface versions are not present in the public SDK
|
#these interfaces are undocumented and binary compatible
|
||||||
#headers, but are actually requested by games. It would be nice
|
"SteamUtils004":["SteamUtils003"],
|
||||||
#to verify that these interface versions are actually binary
|
"SteamUtils002":["SteamUtils001"],
|
||||||
#compatible. Lacking that, we hope the next highest version
|
|
||||||
#is compatible.
|
|
||||||
"SteamClient012":["SteamClient013"],
|
|
||||||
"SteamUtils004":["SteamUtils003"], # TimeShift uses SteamUtils003
|
|
||||||
|
|
||||||
|
|
||||||
#leaving these commented-out. let's see if they turn up in practice,
|
|
||||||
#and handle them correctly if so.
|
|
||||||
|
|
||||||
# "SteamFriends011":["SteamFriends010"],
|
|
||||||
# "SteamFriends013":["SteamFriends012"],
|
|
||||||
# "SteamGameServer008":["SteamGameServer007", "SteamGameServer006"],
|
|
||||||
# "SteamMatchMaking004":["SteamMatchMaking003"],
|
|
||||||
# "SteamMatchMaking006":["SteamMatchMaking005"],
|
|
||||||
# "STEAMREMOTESTORAGE_INTERFACE_VERSION004":["STEAMREMOTESTORAGE_INTERFACE_VERSION003"],
|
|
||||||
# "STEAMREMOTESTORAGE_INTERFACE_VERSION008":["STEAMREMOTESTORAGE_INTERFACE_VERSION007"],
|
|
||||||
# "STEAMREMOTESTORAGE_INTERFACE_VERSION010":["STEAMREMOTESTORAGE_INTERFACE_VERSION009"],
|
|
||||||
# "STEAMUGC_INTERFACE_VERSION005":["STEAMUGC_INTERFACE_VERSION004"],
|
|
||||||
# "STEAMUGC_INTERFACE_VERSION007":["STEAMUGC_INTERFACE_VERSION006"],
|
|
||||||
# "SteamUser016":["SteamUser015"],
|
|
||||||
# "STEAMUSERSTATS_INTERFACE_VERSION009":["STEAMUSERSTATS_INTERFACE_VERSION008"],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# these structs are manually confirmed to be equivalent
|
# these structs are manually confirmed to be equivalent
|
||||||
@ -848,14 +827,14 @@ for sdkver in sdk_versions:
|
|||||||
if not os.path.isfile(input_name):
|
if not os.path.isfile(input_name):
|
||||||
continue
|
continue
|
||||||
index = clang.cindex.Index.create()
|
index = clang.cindex.Index.create()
|
||||||
linux_build = index.parse(input_name, args=['-x', 'c++', '-m32', '-Isteamworks_sdk_%s/' % sdkver, '-I/usr/lib/clang/7.0.0/include/'])
|
linux_build = index.parse(input_name, args=['-x', 'c++', '-m32', '-Isteamworks_sdk_%s/' % sdkver, '-I/usr/lib/clang/7.0.1/include/'])
|
||||||
|
|
||||||
diagnostics = list(linux_build.diagnostics)
|
diagnostics = list(linux_build.diagnostics)
|
||||||
if len(diagnostics) > 0:
|
if len(diagnostics) > 0:
|
||||||
print('There were parse errors')
|
print('There were parse errors')
|
||||||
pprint.pprint(diagnostics)
|
pprint.pprint(diagnostics)
|
||||||
else:
|
else:
|
||||||
windows_build = index.parse(input_name, args=['-x', 'c++', '-m32', '-Isteamworks_sdk_%s/' % sdkver, '-I/usr/lib/clang/7.0.0/include/', '-mms-bitfields', '-U__linux__', '-Wno-incompatible-ms-struct'])
|
windows_build = index.parse(input_name, args=['-x', 'c++', '-m32', '-Isteamworks_sdk_%s/' % sdkver, '-I/usr/lib/clang/7.0.1/include/', '-mms-bitfields', '-U__linux__', '-Wno-incompatible-ms-struct'])
|
||||||
diagnostics = list(windows_build.diagnostics)
|
diagnostics = list(windows_build.diagnostics)
|
||||||
if len(diagnostics) > 0:
|
if len(diagnostics) > 0:
|
||||||
print('There were parse errors (windows build)')
|
print('There were parse errors (windows build)')
|
||||||
|
@ -52,7 +52,6 @@
|
|||||||
{"STEAMUGC_INTERFACE_VERSION002", &create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002},
|
{"STEAMUGC_INTERFACE_VERSION002", &create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002},
|
||||||
{"SteamClient014", &create_winISteamClient_SteamClient014},
|
{"SteamClient014", &create_winISteamClient_SteamClient014},
|
||||||
{"SteamClient012", &create_winISteamClient_SteamClient012},
|
{"SteamClient012", &create_winISteamClient_SteamClient012},
|
||||||
{"SteamClient013", &create_winISteamClient_SteamClient012}, /* alias */
|
|
||||||
{"SteamUtils006", &create_winISteamUtils_SteamUtils006},
|
{"SteamUtils006", &create_winISteamUtils_SteamUtils006},
|
||||||
{"STEAMUGC_INTERFACE_VERSION001", &create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001},
|
{"STEAMUGC_INTERFACE_VERSION001", &create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001},
|
||||||
{"SteamGameServer011", &create_winISteamGameServer_SteamGameServer011},
|
{"SteamGameServer011", &create_winISteamGameServer_SteamGameServer011},
|
||||||
@ -105,6 +104,7 @@
|
|||||||
{"SteamClient007", &create_winISteamClient_SteamClient007},
|
{"SteamClient007", &create_winISteamClient_SteamClient007},
|
||||||
{"SteamUser011", &create_winISteamUser_SteamUser011},
|
{"SteamUser011", &create_winISteamUser_SteamUser011},
|
||||||
{"SteamUtils002", &create_winISteamUtils_SteamUtils002},
|
{"SteamUtils002", &create_winISteamUtils_SteamUtils002},
|
||||||
|
{"SteamUtils001", &create_winISteamUtils_SteamUtils002}, /* alias */
|
||||||
{"STEAMUSERSTATS_INTERFACE_VERSION004", &create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004},
|
{"STEAMUSERSTATS_INTERFACE_VERSION004", &create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004},
|
||||||
{"STEAMAPPS_INTERFACE_VERSION002", &create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002},
|
{"STEAMAPPS_INTERFACE_VERSION002", &create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002},
|
||||||
{"SteamFriends004", &create_winISteamFriends_SteamFriends004},
|
{"SteamFriends004", &create_winISteamFriends_SteamFriends004},
|
||||||
|
Loading…
Reference in New Issue
Block a user