No description
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. ``` Flake lock file updates: • Updated input 'fenix': 'github:nix-community/fenix/0d8227f07b35ab04fee007fff4f9bb18c6d66af1?narHash=sha256-3fgFIijf23nKfJogpcEaUGky1W2BpOzpr0ljgx%2BcmOM%3D' (2024-12-10) → 'github:nix-community/fenix/06de03ede52ce64db6eb65be878a39b5ec944f50?narHash=sha256-4zYEtbxdhYkmmFC5vgv9pmIVHylEuKs%2BiJb1XsKDN7o%3D' (2024-12-14) • Updated input 'fenix/nixpkgs': 'github:nixos/nixpkgs/22c3f2cf41a0e70184334a958e6b124fb0ce3e01?narHash=sha256-Qn3nPMSopRQJgmvHzVqPcE3I03zJyl8cSbgnnltfFDY%3D' (2024-12-07) → 'github:nixos/nixpkgs/5d67ea6b4b63378b9c13be21e2ec9d1afc921713?narHash=sha256-Pj39hSoUA86ZePPF/UXiYHHM7hMIkios8TYG29kQT4g%3D' (2024-12-11) • Updated input 'fenix/rust-analyzer-src': 'github:rust-lang/rust-analyzer/99a6ecd41e5e458b3f4c2142b29a80d77ecda248?narHash=sha256-cK9hSImKm6FkMeIsdjzuRA1tjOKnXI1VHdmJbmpOYqI%3D' (2024-12-09) → 'github:rust-lang/rust-analyzer/fc18d263aa95f7d6de8174bd4c6663dfe865e6d5?narHash=sha256-EZtwXmh9P9FnoXKfbjGxyWksjrjPB4HES2HVIV%2BSTNg%3D' (2024-12-13) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/a73246e2eef4c6ed172979932bc80e1404ba2d56?narHash=sha256-463SNPWmz46iLzJKRzO3Q2b0Aurff3U1n0nYItxq7jU%3D' (2024-12-09) → 'github:nixos/nixpkgs/5d67ea6b4b63378b9c13be21e2ec9d1afc921713?narHash=sha256-Pj39hSoUA86ZePPF/UXiYHHM7hMIkios8TYG29kQT4g%3D' (2024-12-11) • Updated input 'tsunami': 'github:itepastra/tsunami/f87930a290b744248af762b13c2b4a7b6f4f5f27?narHash=sha256-rS51EA9UqtnoPSaYJrSzFij5NRcs5Axosd7m3k5BnnM%3D' (2024-12-10) → 'github:itepastra/tsunami/872017618ae615152dc97b6379f5e92b175a55e9?narHash=sha256-QqnrhOPgvykA%2B2a9iIzpOW8S3Ef8uA7aAFxcRqS8fB8%3D' (2024-12-12) ``` ### Running GitHub Actions on this PR GitHub Actions will not run workflows on pull requests which are opened by a GitHub Action. To run GitHub Actions workflows on this PR, run: ```sh git branch -D update_flake_lock_action git fetch origin git checkout update_flake_lock_action git commit --amend --no-edit git push origin update_flake_lock_action --force ``` |
||
|---|---|---|
| .github/workflows | ||
| .vscode | ||
| assets | ||
| src | ||
| .envrc | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| config.toml | ||
| flake.lock | ||
| flake.nix | ||
| LICENSE | ||
| protocol.md | ||
| README.md | ||
Flurry is a pixelflut compatible server written in rust with a focus on minimizing latency while keeping high performance.
Protocols
Multiple protocols are supported:
- Text: The default protocol, it is compliant with pixelflut but it defines some extra commands
CANVAS <id>: used to change to a completely seperate canvas, the amount and size is defined by the hostPROTOCOL <protocol name>: used to change to different protocols, the useable names are:- text: goes to the Text protocol
- binary: goes to the Binary protocol
- Binary: A binary analog to the text version, about twice as efficient with bandwidth, the commands are
- size:
0x73 <u8 canvas>-><u16 x> <u16 y> - help:
0x68-> help message (in UTF-8) - get pixel:
0x20 <u8 canvas> <u16 x> <u16 y>-><u8 red> <u8 green> <u8 blue> - set pixel rgb:
0x80 <u8 canvas> <u16 x> <u16 y> <u8 red> <u8 green> <u8 blue> - blend pixel rgba:
0x81 <u8 canvas> <u16 x> <u16 y> <u8 red> <u8 green> <u8 blue> <u8 blend> - set pixel grayscale:
0x82 <u8 canvas> <u16 x> <u16 y> <u8 white>
- size: