Skip to content

Commit 89447b7

Browse files
committed
fix: push working state for 0.2.0 and improve frame struct
1 parent 5118208 commit 89447b7

12 files changed

+604
-57
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
<!--
9+
Add new changelog entries here.
10+
Each entry may be annotated with "Added", "Changed", "Removed", and "Fixed" titles.
11+
12+
Example:
13+
14+
## [1.0.0] - May 16, 2022
15+
16+
### Added
17+
- New visual identity.
18+
19+
### Changed
20+
- Start using "changelog" over "change log" since it's the common usage.
21+
22+
### Removed
23+
- Section about "changelog" vs "CHANGELOG".
24+
25+
### Fixed
26+
- Fix typos in recent README changes.
27+
- Update outdated unreleased diff link.
28+
-->
29+
30+
## Unreleased
31+
32+
### Added
33+
- Human-readable changelogs.

Cargo.lock

+115
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9+
accelerometer = "0.12.0"
910
bincode = "1.3.3"
1011
chrono = "0.4.31"
12+
nanoid = "0.4.0"
1113
serde = "1.0.195"
1214
serde_derive = "1.0.195"
1315
serde_json = "1.0.111"
16+
uuid = { version = "1.7.0", features = ["serde", "v4"] }

src/client.rs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//! A JSON-serialiable message format for WebSocket communication between master nodes and connected GUI clients.
2+
//!
3+
//! This message frame is simpler than the one used for UWB, as the client messages are only transferred between master nodes and connected GUI clients. Using a client link not only provides
4+
//! a way to control and monitor controller games, it's also useful to run diagnostics and do time-travel debugging, inspecting controller events and game states in real-time.
5+
6+
7+
pub struct ClientFrame {
8+
9+
}
10+
11+
pub struct ClientHeader {
12+
/// A ten-byte long unique message identifier generated by the `nanoid` crate.
13+
pub id: String,
14+
}
15+
16+
pub enum ClientPayload {
17+
/// Set global controller brightness as a percentage between 0.0 and 1.0.
18+
SetBrightness(f32),
19+
}

src/frame/error.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//! Error types for when something goes wrong with an UWB frame, like serialization or deserialization errors.
2+
3+
use serde_derive::{Serialize, Deserialize};
4+
5+
#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
6+
pub enum FrameError {
7+
/// An error occurred while serializing or deserializing the packet.
8+
SerializeError,
9+
/// The magic string "LEDswarm" was not found at the start of the byte buffer, so the received datagram is not a valid LEDswarm UWB packet.
10+
NoMagicString(String),
11+
}

src/frame/header.rs

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
//! A data structure for the header of a frame, which contains metadata about the frame, such as the sender and target IDs, the universe number, and the current tick.
2+
3+
use serde_derive::{Serialize, Deserialize};
4+
use nanoid::nanoid;
5+
use chrono::DateTime;
6+
7+
#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
8+
pub struct FrameHeader {
9+
/// When the frame was sent, as a string representation of a `DateTime` object.
10+
pub timestamp: String,
11+
/// How many times this message will be redirected by the mesh before being dropped.
12+
pub lifetime: u8,
13+
/// A small unique message identifier generated by the `nanoid` crate.
14+
pub message_id: String,
15+
/// The assigned ID of the sender of the frame. If the sender does not have an ID yet (trying to join the mesh), this field is set to 65535.
16+
pub sender_id: u16,
17+
/// The assigned ID of the target of the frame, broadcasting to all nodes if set to `None`.
18+
pub target_id: Option<u16>,
19+
// If set, the sender of the frame expects an acknowledgement from the receiver and will retry until it receives one.
20+
pub requires_acknowledgement: bool,
21+
/// The current repeating synchronization tick as an integer between 0 and 65535.
22+
pub current_tick: u16,
23+
/// Used to separate different logical networks in the same physical network, to play multiple games next to each other without interference.
24+
pub universe: u8,
25+
/// The ranging data from the UWB module, which is used to calculate the distance between the sender and the receiver.
26+
pub ranging_bytes: [u8; 4],
27+
}
28+
29+
/*
30+
self.uwb_out_tx.send(UwbPacket {
31+
sender_id: u16::MAX,
32+
target_id: Some(0),
33+
timestamp: "now".to_string(),
34+
ranging_bytes: [0, 0, 0, 0],
35+
message: UwbMessage::JoinRequest,
36+
lifetime: 1,
37+
}).unwrap(); */
38+
39+
impl FrameHeader {
40+
pub fn new() -> Self {
41+
Self {
42+
timestamp: DateTime::<chrono::Local>::from(chrono::Local::now()).to_rfc3339(),
43+
lifetime: 2,
44+
message_id: nanoid!(10),
45+
sender_id: u16::MAX,
46+
requires_acknowledgement: false,
47+
target_id: None,
48+
current_tick: 0,
49+
universe: 0,
50+
ranging_bytes: [0; 4],
51+
}
52+
}
53+
}

0 commit comments

Comments
 (0)