https://github.com/igorsaux/bt
C++ BYOND topic encoder library
https://github.com/igorsaux/bt
byond cxx cxx20 net network ss13
Last synced: about 1 month ago
JSON representation
C++ BYOND topic encoder library
- Host: GitHub
- URL: https://github.com/igorsaux/bt
- Owner: igorsaux
- License: apache-2.0
- Created: 2024-09-17T20:35:19.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-12-24T11:32:47.000Z (4 months ago)
- Last Synced: 2025-01-21T05:27:17.657Z (3 months ago)
- Topics: byond, cxx, cxx20, net, network, ss13
- Language: C++
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BT

A C++ library for decoding/encoding the binary "BYOND Topic" format. It supports both the response and request
packets.There is also a command line tool for sending "topics".
## Requirements
- GCC 14 / MSVC 19.0
- CMake 3.28 or newer
- Ninja## Building
```sh
cmake -G Ninja -B ./cmake-build -DCMAKE_BUILD_TYPE=Release
``````sh
cmake --build ./cmake-build
```## Testing
Tests written with [Catch2](https://github.com/catchorg/Catch2), which can be installed with vcpkg. Configure with
`-DBT_TESTS:BOOL=ON` to enable them.