Files
Nicholas Hastings 39fcfa564e Modernize build/CI, support SourceMod 1.13, deprecate ForceHeartbeat
Rework the build and CI: swap to SourceMod's safetyhook-based CDetour and
drop the vendored CDetour/asm sources, the old Makefile, Travis config, and
buildbot perl scripts. Add GitHub Actions building and releasing x86 and
x86_64 against SM 1.12 and 1.13, plus dependabot. Split the Windows and Linux
packages and tidy naming.

Gate IPluginManager::FindPluginByContext on the extension API version so the
extension builds against both SM 1.12 (API 8) and 1.13 (API 9), and shim
DETOUR_CREATE_STATIC_FIXED over the address overload safetyhook exposes.

Deprecate SteamWorks_ForceHeartbeat: newer Steamworks SDKs removed
ISteamGameServer::ForceHeartbeat, so make the native a no-op and mark it
deprecated in the include.
2026-07-12 10:56:36 -04:00

97 lines
3.8 KiB
Python

# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os
# --- SafetyHook -----------------------------------------------------------------
# The extension's detours use SourceMod's safetyhook-based CDetour, which handles
# both x86 and x86_64, replacing the old x86-only asm trampolines. Build safetyhook
# as a static library straight out of the SourceMod tree.
sh_root = os.path.join(SteamWorks.sm_root, 'public', 'safetyhook')
libsafetyhook = builder.StaticLibraryProject('safetyhook')
libsafetyhook.sources += [
os.path.join(sh_root, 'src', 'allocator.cpp'),
os.path.join(sh_root, 'src', 'easy.cpp'),
os.path.join(sh_root, 'src', 'inline_hook.cpp'),
os.path.join(sh_root, 'src', 'mid_hook.cpp'),
os.path.join(sh_root, 'src', 'utility.cpp'),
os.path.join(sh_root, 'src', 'vmt_hook.cpp'),
os.path.join(sh_root, 'zydis', 'Zydis.c'),
]
sh_binary = libsafetyhook.Configure(builder.cxx, 'safetyhook',
'Release - {0}'.format(builder.cxx.target.arch))
sh_cxx = sh_binary.compiler
# safetyhook is third-party; compile it with its own flag set.
sh_cxx.cxxflags = []
sh_cxx.cflags = []
sh_cxx.defines = []
sh_cxx.includes = []
sh_cxx.cxxincludes = []
if builder.options.debug != '1':
sh_cxx.defines += ['NDEBUG']
if sh_cxx.target.platform == 'windows':
sh_cxx.cflags += ['/W4']
sh_cxx.cflags += ['/MTd' if builder.options.debug == '1' else '/MT']
sh_cxx.cxxflags += ['/EHsc', '/permissive-', '/std:c++17']
sh_binary.sources += [os.path.join(sh_root, 'src', 'os.windows.cpp')]
elif sh_cxx.target.platform == 'linux':
sh_cxx.cflags += ['-fPIC', '-Wall', '-Wno-unused-function', '-Wno-unused-const-variable']
sh_cxx.cflags += ['-m64' if sh_cxx.target.arch == 'x86_64' else '-m32']
sh_cxx.cxxflags += ['-std=c++17', '-Wno-format']
sh_binary.sources += [os.path.join(sh_root, 'src', 'os.linux.cpp')]
sh_cxx.includes += [os.path.join(sh_root, 'include'), os.path.join(sh_root, 'zydis')]
safetyhook_tasks = builder.Add(libsafetyhook)
# --- SteamWorks extension -------------------------------------------------------
project = SteamWorks.HL2Project(builder, 'SteamWorks.ext')
project.sources += [
'extension.cpp',
'swgameserver.cpp',
'swgamedata.cpp',
'swforwards.cpp',
'gsnatives.cpp',
'swgshooks.cpp',
'swgsdetours.cpp',
'ssnatives.cpp',
'gcnatives.cpp',
'swhttp.cpp',
'swhttprequest.cpp',
'swgchooks.cpp',
'sdk/smsdk_ext.cpp',
os.path.join(SteamWorks.sm_root, 'public', 'CDetour', 'detours.cpp'),
]
binary = SteamWorks.HL2Config(project, builder.cxx, 'SteamWorks.ext')
# The Steam API headers all come from the SteamWorks SDK; the extension is built
# with META_NO_HL2SDK, so no HL2SDK is required.
binary.compiler.defines += ['META_NO_HL2SDK', 'SOURCEMOD_BUILD', 'VERSION_SAFE_STEAM_API_INTERFACES']
binary.compiler.cxxincludes += [os.path.join(SteamWorks.steamworks_root, 'public', 'steam')]
binary.compiler.cxxincludes += [os.path.join(SteamWorks.sm_root, 'public', 'safetyhook', 'include')]
# Link the matching-arch safetyhook static library.
for task in safetyhook_tasks:
if task.target.arch == binary.compiler.target.arch:
binary.compiler.linkflags += [task.binary]
break
steamworks_bin = os.path.join(SteamWorks.steamworks_root, 'redistributable_bin')
arch = binary.compiler.target.arch
if binary.compiler.target.platform == 'linux':
if arch == 'x86_64':
binary.compiler.postlink += [os.path.join(steamworks_bin, 'linux64', 'libsteam_api.so')]
else:
binary.compiler.postlink += [os.path.join(steamworks_bin, 'linux32', 'libsteam_api.so')]
if binary.compiler.target.platform == 'windows':
if arch == 'x86_64':
binary.compiler.postlink += [os.path.join(steamworks_bin, 'win64', 'steam_api64.lib')]
else:
binary.compiler.postlink += [os.path.join(steamworks_bin, 'steam_api.lib')]
SteamWorks.extensions += builder.Add(project)