-
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'valence-rs:main' into fix-extractor
- Loading branch information
Showing
38 changed files
with
4,745 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[package] | ||
name = "valence_command" | ||
description = "Command management for Valence" | ||
readme = "README.md" | ||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
documentation.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
bevy_app.workspace = true | ||
bevy_derive.workspace = true | ||
bevy_ecs.workspace = true | ||
byteorder.workspace = true | ||
ordered-float.workspace = true | ||
petgraph.workspace = true | ||
thiserror.workspace = true | ||
tracing.workspace = true | ||
|
||
valence_server.workspace = true | ||
valence_text.workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Valence Command | ||
|
||
This plugin manages the command system for a valence server. It is responsible for parsing, storing, managing and | ||
dispatching commands. | ||
|
||
#### This plugin manages the following: | ||
|
||
- Registering commands to a Command Graph which is used parse commands. | ||
- Receiving commands from the client and turning them into events. | ||
- Parsing commands and dispatching them in the registered executable format. | ||
- Sending the command graph to clients. | ||
|
||
See the module level documentation for more information. |
Oops, something went wrong.