README 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Hey! This README is for those looking to work on the code. For actual plugin
  2. documentation, you’ll want to look at the website, which currently exists in a
  3. semi-temporary state at https://mikes.software/sst — or ask for help in a
  4. relevant speedrunning community.
  5. NOTE: Please read and understand LICENCE before redistributing this software!
  6. ════ Compiling ════
  7. Windows:
  8. • Install the Windows 10 SDK and MSVC toolset via the Visual Studio Installer
  9. (if you don’t care what else gets installed, installing the C++ Desktop
  10. workload should be fine).
  11. • Install native Clang from https://clang.llvm.org (NOT MinGW/MSYS2 Clang!).
  12. • Run compile.bat (in lieu of a better build tool, to be added later).
  13. Linux:
  14. • Install Clang (and LLD) via your system package manager. Technically, GCC
  15. might be able to compile this too, but Clang is heavily preferred in the name
  16. of consistency and using GCC will require a decent amount of fiddling. It’s
  17. also not tested and might break and I probably won’t care that much.
  18. • Install 32-bit C libraries and the C library headers if they're not already
  19. installed.
  20. • Run ./compile (in lieu of a better build tool, to be added later).
  21. NOTE: Linux builds currently produce a binary that most definitely does not
  22. work, along with a whole host of warnings; there’s a bunch of code that needs to
  23. be written. See also TODO/linux.
  24. ════ How and where to install ════
  25. IMPORTANT: If your game supports multiplayer, always launch with -insecure as a
  26. launch option before loading this plugin! Newer Source builds shouldn’t let you
  27. connect to a server with plugins loaded or even let you load plugins without
  28. insecure mode at all, but older ones do, at which point you might still get VAC
  29. banned. ALWAYS launch with -insecure or load the plugin AT YOUR OWN RISK OF
  30. BEING BANNED!
  31. Very old Source builds load plugins from the top-level bin/ folder, while
  32. relatively modern builds load them from the mod-specific directory, e.g.
  33. left4dead2/, hl2/. Left 4 Dead and later branches *ALSO* try to load from the
  34. top-level game directory where the EXE is, if other paths don’t work.
  35. Since this plugin is designed to be universal, a reasonable recommendation is to
  36. always put it in bin/ and then use the command `plugin_load ../bin/sst`. The way
  37. the paths work out, that always works no matter what, thus taking all the
  38. thought out of it. It’s also a sensible way to share the plugin between multiple
  39. mods in an engine installation, where relevant.
  40. It’s additionally possible to back out of the game installation with `../../`
  41. etcetera and load from anywhere you want, as long as it’s not on a different
  42. Windows drive letter. This is especially handy if you're building from source
  43. and don't want to copy it over every time.
  44. Note: some very old (and very new) Source builds don’t have a plugin_load
  45. command. For the time being, these versions are unsupported.