Go to file
Jan 30e58ac08b
Clean up wsock proxy code and move wsock build system logic (#671)
- moves `WSockProxy` to `wsockproxy/CmakeLists`
- remove exepath stuff from dllmain
  + its still done in loader.cpp because its used when reporting failure
- Disabled any Thread Library calls
  + we don't need to know about threads at all in the proxy
- yoink `wsock32.asm` into outer space
  + turns out, we can just call the function in a void shim since that wont touch the registers
- stop copying `wsock32.dll` to the game directory
  + this should improve the state of things when using the EA App
2024-02-18 22:11:09 +01:00
.github Add cmake format check to CI (#630) 2024-01-04 00:10:06 +01:00
primedev Clean up wsock proxy code and move wsock build system logic (#671) 2024-02-18 22:11:09 +01:00
.clang-format Set a better `AccessModifierOffset` in `clang-format` (#619) 2023-12-20 15:01:01 +01:00
.cmake-format.json Add cmake format check to CI (#630) 2024-01-04 00:10:06 +01:00
.editorconfig Define indent size in editorconfig (#550) 2023-10-04 13:57:34 +02:00
.git-blame-ignore-revs Ignore folder rename (#245) 2022-08-24 23:36:27 +02:00
.gitattributes Update gitattributes vendored code path (#496) 2023-07-01 20:06:37 -04:00
.gitignore Move to cmake (#467) 2023-06-22 11:47:46 +02:00
.gitmodules Folder restructuring from primedev (#624) 2023-12-27 01:32:01 +01:00
BUILD.md Linux build instructions in `BUILD.md` (#531) 2023-09-14 21:11:59 +02:00
CMakeLists.txt Format cmake files 2024-01-03 23:54:41 +01:00
CMakeSettings.json Add RelWithDebInfo configuration (#483) 2023-06-28 23:16:30 -04:00
Dockerfile Linux build instructions in `BUILD.md` (#531) 2023-09-14 21:11:59 +02:00
LICENSE Initial commit 2021-07-08 15:05:39 +01:00
README.md Folder restructuring from primedev (#624) 2023-12-27 01:32:01 +01:00

README.md

NorthstarLauncher

Build Status

Launcher used to modify Titanfall 2 to allow Northstar mods and custom content to be loaded.

Build

Check BUILD.md for instructions on how to compile, you can also download binaries built by GitHub Actions.

Format

This project uses clang-format, make sure you run clang-format -i --style=file --exclude=primedev/include primedev/*.cpp primedev/*.h when opening a Pull Request. Check the tool's website for instructions on how to integrate it with your IDE.