 0256dacba4
			
		
	
	
		0256dacba4
		
			
		
	
	
	
	
		
			
			# Objective - Fix some doc warnings - Add doc-scrape-examples to all examples Moved from #12692 I run `cargo +nightly doc --workspace --all-features --no-deps -Zunstable-options -Zrustdoc-scrape-examples` <details> ``` warning: public documentation for `GzAssetLoaderError` links to private item `GzAssetLoader` --> examples/asset/asset_decompression.rs:24:47 | 24 | /// Possible errors that can be produced by [`GzAssetLoader`] | ^^^^^^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` = note: `#[warn(rustdoc::private_intra_doc_links)]` on by default warning: `bevy` (example "asset_decompression") generated 1 warning warning: unresolved link to `shape::Quad` --> examples/2d/mesh2d.rs:3:15 | 3 | //! [`Quad`]: shape::Quad | ^^^^^^^^^^^ no item named `shape` in scope | = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default warning: `bevy` (example "mesh2d") generated 1 warning warning: unresolved link to `WorldQuery` --> examples/ecs/custom_query_param.rs:1:49 | 1 | //! This example illustrates the usage of the [`WorldQuery`] derive macro, which allows | ^^^^^^^^^^ no item named `WorldQuery` in scope | = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default warning: `bevy` (example "custom_query_param") generated 1 warning warning: unresolved link to `shape::Quad` --> examples/2d/mesh2d_vertex_color_texture.rs:4:15 | 4 | //! [`Quad`]: shape::Quad | ^^^^^^^^^^^ no item named `shape` in scope | = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default warning: `bevy` (example "mesh2d_vertex_color_texture") generated 1 warning warning: public documentation for `TextPlugin` links to private item `CoolText` --> examples/asset/processing/asset_processing.rs:48:9 | 48 | /// * [`CoolText`]: a custom RON text format that supports dependencies and embedded dependencies | ^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` = note: `#[warn(rustdoc::private_intra_doc_links)]` on by default warning: public documentation for `TextPlugin` links to private item `Text` --> examples/asset/processing/asset_processing.rs:49:9 | 49 | /// * [`Text`]: a "normal" plain text file | ^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` warning: public documentation for `TextPlugin` links to private item `CoolText` --> examples/asset/processing/asset_processing.rs:51:57 | 51 | /// It also defines an asset processor that will load [`CoolText`], resolve embedded dependenc... | ^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` warning: `bevy` (example "asset_processing") generated 3 warnings warning: public documentation for `CustomAssetLoaderError` links to private item `CustomAssetLoader` --> examples/asset/custom_asset.rs:20:47 | 20 | /// Possible errors that can be produced by [`CustomAssetLoader`] | ^^^^^^^^^^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` = note: `#[warn(rustdoc::private_intra_doc_links)]` on by default warning: public documentation for `BlobAssetLoaderError` links to private item `CustomAssetLoader` --> examples/asset/custom_asset.rs:61:47 | 61 | /// Possible errors that can be produced by [`CustomAssetLoader`] | ^^^^^^^^^^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` ``` ``` warning: `bevy` (example "mesh2d") generated 1 warning warning: public documentation for `log_layers_ecs` links to private item `update_subscriber` --> examples/app/log_layers_ecs.rs:6:18 | 6 | //! Inside the [`update_subscriber`] function we will create a [`mpsc::Sender`] and a [`mpsc::R... | ^^^^^^^^^^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` = note: `#[warn(rustdoc::private_intra_doc_links)]` on by default warning: unresolved link to `AdvancedLayer` --> examples/app/log_layers_ecs.rs:7:72 | 7 | ... will go into the [`AdvancedLayer`] and the [`Receiver`](mpsc::Receiver) will | ^^^^^^^^^^^^^ no item named `AdvancedLayer` in scope | = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default warning: unresolved link to `LogEvents` --> examples/app/log_layers_ecs.rs:8:42 | 8 | //! go into a non-send resource called [`LogEvents`] (It has to be non-send because [`Receiver`... | ^^^^^^^^^ no item named `LogEvents` in scope | = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` warning: public documentation for `log_layers_ecs` links to private item `transfer_log_events` --> examples/app/log_layers_ecs.rs:9:30 | 9 | //! From there we will use [`transfer_log_events`] to transfer log events from [`LogEvents`] to... | ^^^^^^^^^^^^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` warning: unresolved link to `LogEvents` --> examples/app/log_layers_ecs.rs:9:82 | 9 | ...nsfer log events from [`LogEvents`] to an ECS event called [`LogEvent`]. | ^^^^^^^^^ no item named `LogEvents` in scope | = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` warning: public documentation for `log_layers_ecs` links to private item `LogEvent` --> examples/app/log_layers_ecs.rs:9:119 | 9 | ...nts`] to an ECS event called [`LogEvent`]. | ^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` warning: public documentation for `log_layers_ecs` links to private item `LogEvent` --> examples/app/log_layers_ecs.rs:11:49 | 11 | //! Finally, after all that we can access the [`LogEvent`] event from our systems and use it. | ^^^^^^^^ this item is private | = note: this link will resolve properly if you pass `--document-private-items` ``` <details/>
		
			
				
	
	
		
			251 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			251 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! This example illustrates how to define custom `AssetLoader`s, `AssetTransformer`s, and `AssetSaver`s, how to configure them, and how to register asset processors.
 | |
| 
 | |
| use bevy::{
 | |
|     asset::{
 | |
|         embedded_asset,
 | |
|         io::{Reader, Writer},
 | |
|         processor::LoadTransformAndSave,
 | |
|         ron,
 | |
|         saver::{AssetSaver, SavedAsset},
 | |
|         transformer::{AssetTransformer, TransformedAsset},
 | |
|         AssetLoader, AsyncReadExt, AsyncWriteExt, LoadContext,
 | |
|     },
 | |
|     prelude::*,
 | |
|     reflect::TypePath,
 | |
| };
 | |
| use serde::{Deserialize, Serialize};
 | |
| use std::convert::Infallible;
 | |
| use thiserror::Error;
 | |
| 
 | |
| fn main() {
 | |
|     App::new()
 | |
|         // Using the "processed" mode will configure the AssetPlugin to use asset processing.
 | |
|         // If you also enable the `asset_processor` cargo feature, this will run the AssetProcessor
 | |
|         // in the background, run them through configured asset processors, and write the results to
 | |
|         // the `imported_assets` folder. If you also enable the `file_watcher` cargo feature, changes to the
 | |
|         // source assets will be detected and they will be reprocessed.
 | |
|         //
 | |
|         // The AssetProcessor will create `.meta` files automatically for assets in the `assets` folder,
 | |
|         // which can then be used to configure how the asset will be processed.
 | |
|         .add_plugins((
 | |
|             DefaultPlugins.set(AssetPlugin {
 | |
|                 mode: AssetMode::Processed,
 | |
|                 // This is just overriding the default paths to scope this to the correct example folder
 | |
|                 // You can generally skip this in your own projects
 | |
|                 file_path: "examples/asset/processing/assets".to_string(),
 | |
|                 processed_file_path: "examples/asset/processing/imported_assets/Default"
 | |
|                     .to_string(),
 | |
|                 ..default()
 | |
|             }),
 | |
|             TextPlugin,
 | |
|         ))
 | |
|         .add_systems(Startup, setup)
 | |
|         .add_systems(Update, print_text)
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| /// This [`TextPlugin`] defines two assets types:
 | |
| /// * [`CoolText`]: a custom RON text format that supports dependencies and embedded dependencies
 | |
| /// * [`Text`]: a "normal" plain text file
 | |
| ///
 | |
| /// It also defines an asset processor that will load [`CoolText`], resolve embedded dependencies, and write the resulting
 | |
| /// output to a "normal" plain text file. When the processed asset is loaded, it is loaded as a Text (plaintext) asset.
 | |
| /// This illustrates that when you process an asset, you can change its type! However you don't _need_ to change the type.
 | |
| struct TextPlugin;
 | |
| 
 | |
| impl Plugin for TextPlugin {
 | |
|     fn build(&self, app: &mut App) {
 | |
|         embedded_asset!(app, "examples/asset/processing/", "e.txt");
 | |
|         app.init_asset::<CoolText>()
 | |
|             .init_asset::<Text>()
 | |
|             .register_asset_loader(CoolTextLoader)
 | |
|             .register_asset_loader(TextLoader)
 | |
|             .register_asset_processor::<LoadTransformAndSave<CoolTextLoader, CoolTextTransformer, CoolTextSaver>>(
 | |
|                 LoadTransformAndSave::new(CoolTextTransformer, CoolTextSaver),
 | |
|             )
 | |
|             .set_default_asset_processor::<LoadTransformAndSave<CoolTextLoader, CoolTextTransformer, CoolTextSaver>>("cool.ron");
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[derive(Asset, TypePath, Debug)]
 | |
| struct Text(String);
 | |
| 
 | |
| #[derive(Default)]
 | |
| struct TextLoader;
 | |
| 
 | |
| #[derive(Default, Serialize, Deserialize)]
 | |
| struct TextSettings {
 | |
|     text_override: Option<String>,
 | |
| }
 | |
| 
 | |
| impl AssetLoader for TextLoader {
 | |
|     type Asset = Text;
 | |
|     type Settings = TextSettings;
 | |
|     type Error = std::io::Error;
 | |
|     async fn load<'a>(
 | |
|         &'a self,
 | |
|         reader: &'a mut Reader<'_>,
 | |
|         settings: &'a TextSettings,
 | |
|         _load_context: &'a mut LoadContext<'_>,
 | |
|     ) -> Result<Text, Self::Error> {
 | |
|         let mut bytes = Vec::new();
 | |
|         reader.read_to_end(&mut bytes).await?;
 | |
|         let value = if let Some(ref text) = settings.text_override {
 | |
|             text.clone()
 | |
|         } else {
 | |
|             String::from_utf8(bytes).unwrap()
 | |
|         };
 | |
|         Ok(Text(value))
 | |
|     }
 | |
| 
 | |
|     fn extensions(&self) -> &[&str] {
 | |
|         &["txt"]
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[derive(Serialize, Deserialize)]
 | |
| struct CoolTextRon {
 | |
|     text: String,
 | |
|     dependencies: Vec<String>,
 | |
|     embedded_dependencies: Vec<String>,
 | |
| }
 | |
| 
 | |
| #[derive(Asset, TypePath, Debug)]
 | |
| struct CoolText {
 | |
|     text: String,
 | |
|     #[allow(unused)]
 | |
|     dependencies: Vec<Handle<Text>>,
 | |
| }
 | |
| 
 | |
| #[derive(Default)]
 | |
| struct CoolTextLoader;
 | |
| 
 | |
| #[derive(Debug, Error)]
 | |
| enum CoolTextLoaderError {
 | |
|     #[error(transparent)]
 | |
|     Io(#[from] std::io::Error),
 | |
|     #[error(transparent)]
 | |
|     RonSpannedError(#[from] ron::error::SpannedError),
 | |
|     #[error(transparent)]
 | |
|     LoadDirectError(#[from] bevy::asset::LoadDirectError),
 | |
| }
 | |
| 
 | |
| impl AssetLoader for CoolTextLoader {
 | |
|     type Asset = CoolText;
 | |
|     type Settings = ();
 | |
|     type Error = CoolTextLoaderError;
 | |
| 
 | |
|     async fn load<'a>(
 | |
|         &'a self,
 | |
|         reader: &'a mut Reader<'_>,
 | |
|         _settings: &'a Self::Settings,
 | |
|         load_context: &'a mut LoadContext<'_>,
 | |
|     ) -> Result<CoolText, Self::Error> {
 | |
|         let mut bytes = Vec::new();
 | |
|         reader.read_to_end(&mut bytes).await?;
 | |
|         let ron: CoolTextRon = ron::de::from_bytes(&bytes)?;
 | |
|         let mut base_text = ron.text;
 | |
|         for embedded in ron.embedded_dependencies {
 | |
|             let loaded = load_context.load_direct(&embedded).await?;
 | |
|             let text = loaded.get::<Text>().unwrap();
 | |
|             base_text.push_str(&text.0);
 | |
|         }
 | |
|         Ok(CoolText {
 | |
|             text: base_text,
 | |
|             dependencies: ron
 | |
|                 .dependencies
 | |
|                 .iter()
 | |
|                 .map(|p| load_context.load(p))
 | |
|                 .collect(),
 | |
|         })
 | |
|     }
 | |
| 
 | |
|     fn extensions(&self) -> &[&str] {
 | |
|         &["cool.ron"]
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[derive(Default)]
 | |
| struct CoolTextTransformer;
 | |
| 
 | |
| #[derive(Default, Serialize, Deserialize)]
 | |
| struct CoolTextTransformerSettings {
 | |
|     appended: String,
 | |
| }
 | |
| 
 | |
| impl AssetTransformer for CoolTextTransformer {
 | |
|     type AssetInput = CoolText;
 | |
|     type AssetOutput = CoolText;
 | |
|     type Settings = CoolTextTransformerSettings;
 | |
|     type Error = Infallible;
 | |
| 
 | |
|     async fn transform<'a>(
 | |
|         &'a self,
 | |
|         mut asset: TransformedAsset<Self::AssetInput>,
 | |
|         settings: &'a Self::Settings,
 | |
|     ) -> Result<TransformedAsset<Self::AssetOutput>, Self::Error> {
 | |
|         asset.text = format!("{}{}", asset.text, settings.appended);
 | |
|         Ok(asset)
 | |
|     }
 | |
| }
 | |
| 
 | |
| struct CoolTextSaver;
 | |
| 
 | |
| impl AssetSaver for CoolTextSaver {
 | |
|     type Asset = CoolText;
 | |
|     type Settings = ();
 | |
|     type OutputLoader = TextLoader;
 | |
|     type Error = std::io::Error;
 | |
| 
 | |
|     async fn save<'a>(
 | |
|         &'a self,
 | |
|         writer: &'a mut Writer,
 | |
|         asset: SavedAsset<'a, Self::Asset>,
 | |
|         _settings: &'a Self::Settings,
 | |
|     ) -> Result<TextSettings, Self::Error> {
 | |
|         writer.write_all(asset.text.as_bytes()).await?;
 | |
|         Ok(TextSettings::default())
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[derive(Resource)]
 | |
| struct TextAssets {
 | |
|     a: Handle<Text>,
 | |
|     b: Handle<Text>,
 | |
|     c: Handle<Text>,
 | |
|     d: Handle<Text>,
 | |
|     e: Handle<Text>,
 | |
| }
 | |
| 
 | |
| fn setup(mut commands: Commands, assets: Res<AssetServer>) {
 | |
|     // This the final processed versions of `assets/a.cool.ron` and `assets/foo.c.cool.ron`
 | |
|     // Check out their counterparts in `imported_assets` to see what the outputs look like.
 | |
|     commands.insert_resource(TextAssets {
 | |
|         a: assets.load("a.cool.ron"),
 | |
|         b: assets.load("foo/b.cool.ron"),
 | |
|         c: assets.load("foo/c.cool.ron"),
 | |
|         d: assets.load("d.cool.ron"),
 | |
|         e: assets.load("embedded://asset_processing/e.txt"),
 | |
|     });
 | |
| }
 | |
| 
 | |
| fn print_text(
 | |
|     handles: Res<TextAssets>,
 | |
|     texts: Res<Assets<Text>>,
 | |
|     mut asset_events: EventReader<AssetEvent<Text>>,
 | |
| ) {
 | |
|     if !asset_events.is_empty() {
 | |
|         // This prints the current values of the assets
 | |
|         // Hot-reloading is supported, so try modifying the source assets (and their meta files)!
 | |
|         println!("Current Values:");
 | |
|         println!("  a: {:?}", texts.get(&handles.a));
 | |
|         println!("  b: {:?}", texts.get(&handles.b));
 | |
|         println!("  c: {:?}", texts.get(&handles.c));
 | |
|         println!("  d: {:?}", texts.get(&handles.d));
 | |
|         println!("  e: {:?}", texts.get(&handles.e));
 | |
|         println!("(You can modify source assets and their .meta files to hot-reload changes!)");
 | |
|         println!();
 | |
|         asset_events.clear();
 | |
|     }
 | |
| }
 |