Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vikpe/quake_clientinfo

Parse QuakeWorld clientinfo strings.
https://github.com/vikpe/quake_clientinfo

parsing quake quakeworld

Last synced: 27 days ago
JSON representation

Parse QuakeWorld clientinfo strings.

Awesome Lists containing this project

README

        

# quake_clientinfo [![Test](https://github.com/vikpe/quake_clientinfo/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/vikpe/quake_clientinfo/actions/workflows/test.yml) [![crates](https://img.shields.io/crates/v/quake_clientinfo)](https://crates.io/crates/quake_clientinfo) [![docs.rs](https://img.shields.io/docsrs/quake_clientinfo)](https://docs.rs/quake_clientinfo/)

> Parse QuakeWorld clientinfo strings

## Usage

```rust
use quake_clientinfo::Clientinfo;

let info = Clientinfo::from(r#"\team\red\name\Alpha\*spectator\1"#);
assert_eq!(info.name, Some("Alpha".to_string()));
assert_eq!(info.team, Some("red".to_string()));
assert_eq!(info.spectator, Some(1));
assert_eq!(info.topcolor, None);
```

## Fields

```rust
pub struct Clientinfo {
pub name: Option,
pub team: Option,
pub topcolor: Option,
pub bottomcolor: Option,
pub spectator: Option,
pub client: Option,
pub bot: Option,
pub chat: Option,
}
```

## See also

* [quake_serverinfo](https://github.com/vikpe/quake_serverinfo) - Parse QuakeWorld serverinfo strings
* [quake_infostring](https://github.com/vikpe/quake_infostring) - Parse QuakeWorld info strings