Bevy Talks
[!WARNING]
Be aware thatbevy_talks
's API is still undergoing revisions (with possibly big architectural changes). Feedback on its ergonomics and developer experience (DX) is highly appreciated.
This Bevy plugin provides a way to create dialogues and conversations in your game as graphs.
You can imagine a Talk between the player and NPCs as a directed graph where each node is an action that can be performed such as saying a line, joining/leaving the conversation, or a choice the player can make.
The most common action is text being displayed on the screen, and a simple Talk is just a sequence of texts forming a conversation between actors.
You can have multiple entities each with their own Talk graph. Or you can make a VN-like game with one single big dialogue graph in the game.
[!NOTE] A more in-depth documentation is being slowly written as an mdbook here! Help is appreciated :)
Actions and Actors
Talks are made up of actions that are translated into graph nodes.
Actions can be defined either via the TalkBuilder
of with asset files and they have this form:
You won't be writing this struct directly, but you can see that it contains several fields that define the kind of action it can be, the relevant actors, text or choices and the next action to perform (where to go in the graph after).
The actors are quite simple right now. It is just the name and an identifier (the slug).
The Actor
struct is a simple struct that contains the name of the actor and the asset to display on the screen.
Having a well defined Talk with actions and actors will result in spawning a graph where all the nodes are entities. Each action will be an entity "node", and each actor is also an entity.
All the action nodes will be connected with each other with a aery relationship (called FollowedBy), following the graph structure given by the actions next and id fields, and each action with actors will result in the corresponding entity being connected with the actors entity with another aery relationship (called PerformedBy).
Finally all the action entities in the graph will be a child of a main entity that represents the Talk itself, with the Talk component attached to it.
The Talk Component
This parent Talk component that "encapsulates" the graph is the main component that you will use to interact with the dialogue system. With it you can keep track of the current node data, and use it to send events to advance the dialogue (through the related entity).
/// The Talk component. It's used to identify the parent entity of dialogue entity graphs.
Build Talks from talk.ron files
The plugin can parse ron files to create TalkData
assets, which can then be used to build the graph.
The files must have the extension: talk.ron
.
Here's an example:
The plugin adds an AssetLoader
for these ron files, so it's as easy as:
let handle: = asset_server.load;
Then you can use Talk::builder()
to create a TalkBuilder
, which has the fill_with_talk_data
method.
You can retrieve the TalkData
from the assets collection talks: Res<Assets<TalkData>>
.
With the builder ready, you can use the Commands extension to spawn the dialogue graph in the world:
use *;
use *;
// We stored the previously loaded handle of a TalkData asset in this resource
Spawning that talk graph will result in this:
graph LR;
A[Narrator Talks] --> B[Alice,Bob Join];
B --> C[Bob Talks];
C --> D[Choice];
D --> E[Narrator Talks];
D --> F[Narrator Talks];
F --> G[Narrator Talks];
E --> G;
Usage
With the Talk
component you can get the current text/actor/choices for the current action in a talk.
Together with the Change Detection System, you can react to changes in the Talk
component to update your UI.
To interact with the dialogue graphs you can send 2 different events to advance the Talk to the next node or to jump to a specific node:
To move forward to the next action:
;
To jump to a specific action (used with choices):
You pass the entity with the Talk
component in these events, plus the next node entity in case of the choose event.
Check out the examples
folder to see how to use the plugin.
- simple.rs shows how to use the plugin to create a simple, linear conversation.
- choices.rs shows how to use the plugin to create a conversation with choices (jumps in the graph).
- full.rs shows a Talk where all the action kinds are used.
- ingame.rs shows how to use the plugin with more than one talk you can interact with.
Roadmap
Some nice-to-haves from the top of my head:
- Use the built-in bevy_ecs relations (when one day we will have them)
- Dialogue UIs
- Extensible Interaction/Trigger system (to activate/advance dialogues)
- Graphical editor to create the asset files
- Voice lines/sound support
- More node kinds (and a custom node kind system)
- Support other asset formats (?)
- More examples
- Extensive documentation/manual wiki (always in progress...)
- Localization with Fluent
Bevy Version Support
Compatibility of bevy_talks
versions:
bevy_talks |
bevy |
---|---|
main |
0.12 |
0.4.0 |
0.12 |
0.3.1 |
0.12 |
0.3.0 |
0.11 |
0.2.0 |
0.11 |
0.1.1 |
0.11 |
bevy_main |
main |
License
Dual-licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.