diff options
| author | mat <git@matdoes.dev> | 2025-12-15 13:53:46 +0930 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-15 13:53:46 +0930 |
| commit | aab9f56da20a36347fe31557377e07a47c114dc6 (patch) | |
| tree | 15c81634d92eed995a85a65b05584ae216207163 /azalea | |
| parent | 9745766cff8907e6c6bb87b4ab852acaeadd6ef9 (diff) | |
| download | azalea-drasl-aab9f56da20a36347fe31557377e07a47c114dc6.tar.xz | |
improve docs by enabling scraped examples and bevy trait tags
Diffstat (limited to 'azalea')
| -rw-r--r-- | azalea/Cargo.toml | 6 | ||||
| -rw-r--r-- | azalea/README.md | 62 | ||||
| -rw-r--r-- | azalea/src/builder.rs | 13 | ||||
| -rw-r--r-- | azalea/src/swarm/builder.rs | 4 |
4 files changed, 46 insertions, 39 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index 15627bc1..e4adb426 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -59,6 +59,12 @@ serde = ["dep:serde", "azalea-registry/serde", "azalea-world/serde"] packet-event = ["azalea-client/packet-event"] online-mode = ["azalea-client/online-mode"] +[[example]] +name = "testbot" +# setting this to true for one example makes it work for all of them. +# see https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#scrape-examples +doc-scrape-examples = true + [[bench]] name = "pathfinder" harness = false diff --git a/azalea/README.md b/azalea/README.md index e44036c3..ca081f8e 100644 --- a/azalea/README.md +++ b/azalea/README.md @@ -1,35 +1,6 @@ Azalea is a framework for creating Minecraft bots. -Also see the project [README](https://github.com/azalea-rs/azalea) for a higher-level overview of Azalea. - -# Installation - -First, install Rust nightly with `rustup install nightly` and `rustup default nightly`. - -Then, use one of the following commands to add Azalea to your project: - -- Latest bleeding-edge version (recommended): `cargo add azalea --git=https://github.com/azalea-rs/azalea` -- Latest "stable" release: `cargo add azalea` - -## Optimization - -For faster compile times, create a `.cargo/config.toml` file in your project and copy -[this file](https://github.com/azalea-rs/azalea/blob/main/.cargo/config_fast_builds.toml) -into it. You may have to install the LLD linker. - -For faster performance in debug mode, add the following code to your -Cargo.toml: - -```toml -[profile.dev] -opt-level = 1 -[profile.dev.package."*"] -opt-level = 3 -``` - -# Documentation - -The documentation for the latest Azalea crates.io release is available at [docs.rs/azalea](https://docs.rs/azalea/latest/azalea/) and the docs for the latest bleeding-edge (git) version are at [azalea.matdoes.dev](https://azalea.matdoes.dev/azalea/). +See the project [README](https://github.com/azalea-rs/azalea) for a higher-level overview of Azalea. # Examples @@ -81,6 +52,35 @@ async fn handle(bot: Client, event: Event, state: State) -> anyhow::Result<()> { There are more examples in the [examples directory](https://github.com/azalea-rs/azalea/tree/main/azalea/examples). You may also find it helpful to read the code for [other people's Azalea bots](https://github.com/azalea-rs/azalea#real-world-bots-using-azalea). +# Installation + +First, install Rust nightly with `rustup install nightly` and `rustup default nightly`. + +Then, use one of the following commands to add Azalea to your project: + +- Latest bleeding-edge version (recommended): `cargo add azalea --git=https://github.com/azalea-rs/azalea` +- Latest "stable" release: `cargo add azalea` + +## Optimization + +For faster compile times, create a `.cargo/config.toml` file in your project and copy +[this file](https://github.com/azalea-rs/azalea/blob/main/.cargo/config_fast_builds.toml) +into it. You may have to install the LLD linker. + +For faster performance in debug mode, add the following code to your +Cargo.toml: + +```toml +[profile.dev] +opt-level = 1 +[profile.dev.package."*"] +opt-level = 3 +``` + +# Documentation + +The documentation for the latest Azalea crates.io release is available at [docs.rs/azalea](https://docs.rs/azalea/latest/azalea/) and the docs for the latest bleeding-edge (git) version are at [azalea.matdoes.dev](https://azalea.matdoes.dev/azalea/). + # Swarms Azalea lets you create "swarms", which are a group of bots in the same world that can perform actions together. See [testbot](https://github.com/azalea-rs/azalea/blob/main/azalea/examples/testbot/main.rs) for an example. Also, if you're using swarms, you should also `use` both `azalea::prelude::*` and `azalea::swarm::prelude::*`. @@ -89,7 +89,7 @@ Azalea lets you create "swarms", which are a group of bots in the same world tha Azalea uses [Bevy ECS](https://docs.rs/bevy_ecs) internally to store information about the world and clients. Bevy plugins are more powerful than async handler functions, but more difficult to use. See [pathfinder](https://github.com/azalea-rs/azalea/blob/main/azalea/src/pathfinder/mod.rs) as an example of how to make a plugin. You can then enable a plugin by adding `.add_plugin(ExamplePlugin)` in your client/swarm builder. -Everything in Azalea is implemented as a Bevy plugin, which means you can disable default behaviors (like, physics or chat signing) by disabling built-in plugins. See [`SwarmBuilder::new_without_plugins`] to learn how to do that. +Everything in Azalea is implemented as a Bevy plugin, which means you can disable default behaviors (like, physics or chat signing) by disabling built-in plugins. See [`SwarmBuilder::new_without_plugins`](swarm::SwarmBuilder::new_without_plugins) to learn how to do that. Also note that just because something is an entity in the ECS doesn't mean that it's a Minecraft entity. You can filter for that by having `With<MinecraftEntityId>` as a filter. diff --git a/azalea/src/builder.rs b/azalea/src/builder.rs index d0318424..91fb9d5e 100644 --- a/azalea/src/builder.rs +++ b/azalea/src/builder.rs @@ -11,8 +11,8 @@ use crate::{ swarm::{self, SwarmBuilder}, }; -/// A builder for creating new [`Client`]s. This is the recommended way of -/// making a bot. +/// A builder for creating new [`Client`](crate::Client)s. This is the +/// recommended way of making a bot. /// /// ```no_run /// # use azalea::prelude::*; @@ -84,8 +84,9 @@ impl ClientBuilder<NoState, ()> { } } - /// Set the function that's called every time a bot receives an [`Event`]. - /// This is the way to handle normal per-bot events. + /// Set the function that's called every time a bot receives an + /// [`Event`](crate::Client). This is the way to handle normal per-bot + /// events. /// /// Currently, you can have up to one client handler. /// @@ -156,8 +157,8 @@ where self } - /// Build this `ClientBuilder` into an actual [`Client`] and join the given - /// server. + /// Build this `ClientBuilder` into an actual [`Client`](crate::Client) and + /// join the given server. /// /// If the client can't join, it'll keep retrying forever until it can. /// diff --git a/azalea/src/swarm/builder.rs b/azalea/src/swarm/builder.rs index 412ec67e..4eae7eab 100644 --- a/azalea/src/swarm/builder.rs +++ b/azalea/src/swarm/builder.rs @@ -137,8 +137,8 @@ where SS: Default + Send + Sync + Clone + Resource + 'static, { /// Set the function that's called every time a bot receives an - /// [`enum@Event`]. This is the intended way to handle normal per-bot - /// events. + /// [`Event`](crate::Event). This is the intended way to handle + /// normal per-bot events. /// /// Currently you can have up to one handler. /// |
