2026-06-15 21:09:09 +02:00
|
|
|
|
# VoiceCat
|
|
|
|
|
|
|
|
|
|
|
|
Self-hosted, native voice & text chat in the spirit of classic TeamSpeak / Mumble —
|
|
|
|
|
|
channel-based voice, channel + private text, one server you run yourself. Plain **TCP**
|
|
|
|
|
|
(control) and **UDP** (media), no WebRTC. Encrypted by default. A shared **C++ core**
|
|
|
|
|
|
(`libvoicecat`) drives native clients (Swift on macOS/iOS, C# on Windows) and the server.
|
|
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
> **Status:** Design complete in [`docs/`](docs/). M1–M5 are implemented — real TLS control
|
|
|
|
|
|
> plane, encrypted UDP voice (Opus), multi-stream, TOFU identity pinning, channel tree,
|
|
|
|
|
|
> permissions, moderation, disconnect/keepalive/reaper. Windows WinForms C# client shipped
|
|
|
|
|
|
> (M4). macOS/iOS Swift client is next. See [`PROGRESS.md`](PROGRESS.md) and
|
|
|
|
|
|
> [`docs/roadmap.md`](docs/roadmap.md).
|
2026-06-15 21:09:09 +02:00
|
|
|
|
|
|
|
|
|
|
## Read the design first
|
|
|
|
|
|
|
|
|
|
|
|
The [`docs/`](docs/) folder is the source of truth. Start at [`docs/README.md`](docs/README.md),
|
|
|
|
|
|
then `architecture` → `protocol` → `voice` → `security` → `tech-stack` → `deployment` →
|
|
|
|
|
|
`roadmap`.
|
|
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
## Build
|
2026-06-15 21:09:09 +02:00
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
The default development preset is **`dev`** — it builds everything (server + tools + tests)
|
|
|
|
|
|
with real vcpkg deps. It works on Windows, Linux, and macOS (vcpkg triplet auto-resolved).
|
2026-06-15 21:09:09 +02:00
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-07-03 10:42:42 +01:00
|
|
|
|
# one-time vcpkg setup (bundled as a submodule, pinned to vcpkg.json's builtin-baseline):
|
|
|
|
|
|
git submodule update --init vcpkg
|
|
|
|
|
|
./vcpkg/bootstrap-vcpkg.sh # .bat on Windows
|
2026-06-18 03:16:01 +02:00
|
|
|
|
|
|
|
|
|
|
# configure + build + test:
|
2026-06-15 21:09:09 +02:00
|
|
|
|
cmake --preset dev
|
|
|
|
|
|
cmake --build --preset dev
|
2026-06-18 03:16:01 +02:00
|
|
|
|
ctest --preset dev # 21 behavior tests
|
2026-06-15 21:09:09 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-07-03 10:42:42 +01:00
|
|
|
|
To use an external vcpkg checkout instead, set `VCPKG_ROOT=/path/to/vcpkg` (or
|
|
|
|
|
|
`$env:VCPKG_ROOT` on PowerShell) — it always takes priority over the bundled submodule.
|
|
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
Artifacts land in `build/dev/bin/` (`voicecat-server`, `vccli`, `voicecat-admin`).
|
2026-06-15 21:09:09 +02:00
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
The `skeleton` preset (no vcpkg deps, stubs only) is a fast smoke check that needs no
|
|
|
|
|
|
third-party libraries:
|
2026-06-15 21:09:09 +02:00
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-06-18 03:16:01 +02:00
|
|
|
|
cmake --preset skeleton && cmake --build --preset skeleton && ctest --preset skeleton
|
2026-06-15 21:09:09 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-06-18 03:16:01 +02:00
|
|
|
|
See [`docs/building.md`](docs/building.md) for the full preset matrix (including `release`,
|
|
|
|
|
|
`server-release`, `windows-client`, and Apple platform scaffolding).
|
|
|
|
|
|
|
2026-06-15 21:09:09 +02:00
|
|
|
|
## Layout
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
docs/ design spec (read this)
|
|
|
|
|
|
core/ libvoicecat — the shared C++ core
|
|
|
|
|
|
include/ voicecat.h (the C ABI all clients call)
|
|
|
|
|
|
proto/ voicecat.proto (control-plane wire format, source of truth)
|
|
|
|
|
|
src/ net/ crypto/ codec/ protocol/ session/ audio/ (stubs today)
|
|
|
|
|
|
server/ voicecat-server (headless; links the core)
|
|
|
|
|
|
tools/vccli/ headless test client — drives the protocol from M1 on
|
|
|
|
|
|
clients/ apple/ (Swift, M4) windows/ (C#, M4) — placeholders for now
|
|
|
|
|
|
tests/ CTest targets
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
|
|
Permissive-only dependencies (no GPL/LGPL) so the project can be redistributed freely,
|
|
|
|
|
|
including closed-source. Project license: TBD (see [`docs/tech-stack.md`](docs/tech-stack.md) §5).
|