Compare commits

..

No commits in common. "92d7f6acc4514990d2240b8cad12660a3ce3179a" and "5e66e7355016c16152084207b59c35b534d25709" have entirely different histories.

2 changed files with 101 additions and 101 deletions

View file

@ -1,4 +1,4 @@
use serde::{Deserialize, Serialize}; use serde::{Serialize,Deserialize};
use std::collections::HashMap; use std::collections::HashMap;
/// The root object. /// The root object.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)] #[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -12,7 +12,7 @@ pub struct Mcmeta {
/// (optional) Section for specifying the overlays, which are sub-packs applied over the "normal" contents of a pack. /// (optional) Section for specifying the overlays, which are sub-packs applied over the "normal" contents of a pack.
pub overlays: Option<McmetaOverlays>, pub overlays: Option<McmetaOverlays>,
/// (optional) Only present in resource packs — Contains additional languages to add to the language menu. /// (optional) Only present in resource packs — Contains additional languages to add to the language menu.
pub language: Option<HashMap<String, McmetaLanguage>>, pub language: Option<HashMap<String,McmetaLanguage>>
} }
/// Holds the pack information. /// Holds the pack information.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)] #[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -26,7 +26,7 @@ pub struct McmetaPack {
/// (optional) Describes a range for pack formats that this pack supports. /// (optional) Describes a range for pack formats that this pack supports.
/// ///
/// The range has to include the value of [`McmetaPack::pack_format`]. /// The range has to include the value of [`McmetaPack::pack_format`].
pub supported_formats: Option<McmetaPackSupportedformats>, pub supported_formats: Option<McmetaPackSupportedformats>
} }
/// Determines the version(s) of Minecraft that this pack is compatible with. /// Determines the version(s) of Minecraft that this pack is compatible with.
/// ///
@ -36,7 +36,7 @@ pub struct McmetaPackDescription {
/// The text in the description. /// The text in the description.
pub text: String, pub text: String,
/// The colour of the text in the description. /// The colour of the text in the description.
pub color: Option<String>, pub color: Option<String>
} }
/// (optional) Describes a range for pack formats that this pack supports. /// (optional) Describes a range for pack formats that this pack supports.
/// ///
@ -46,7 +46,7 @@ pub struct McmetaPackSupportedformats {
/// Minimum Pack format number /// Minimum Pack format number
pub min_inclusive: u8, pub min_inclusive: u8,
/// Maximum pack format number /// Maximum pack format number
pub max_inclusive: u8, pub max_inclusive: u8
} }
// I don't what this looks like // I don't what this looks like
@ -56,7 +56,7 @@ pub struct McmetaFeatures {
/// List of enabled feature flags. /// List of enabled feature flags.
/// ///
/// Each item in the Vec is a location of a feature flag. /// Each item in the Vec is a location of a feature flag.
pub enabled: Vec<String>, pub enabled: Vec<String>
} }
// I don't what this looks like // I don't what this looks like
@ -66,7 +66,7 @@ pub struct McmetaFilter {
/// Vector of patterns. /// Vector of patterns.
/// ///
/// Any file that matches one of the patterns inside [`McmetaFilter::block`] is treated as if it was not present in the pack at all. /// Any file that matches one of the patterns inside [`McmetaFilter::block`] is treated as if it was not present in the pack at all.
pub block: Vec<McmetaFilterBlock>, pub block: Vec<McmetaFilterBlock>
} }
/// A pattern. /// A pattern.
/// ///
@ -76,7 +76,7 @@ pub struct McmetaFilterBlock {
/// A regular expression for the namespace of files to be filtered out. If unspecified, it applies to every namespace. /// A regular expression for the namespace of files to be filtered out. If unspecified, it applies to every namespace.
pub namespace: String, pub namespace: String,
/// A regular expression for the paths of files to be filtered out. If unspecified, it applies to every file. /// A regular expression for the paths of files to be filtered out. If unspecified, it applies to every file.
pub path: String, pub path: String
} }
// I don't what this looks like // I don't what this looks like
@ -86,7 +86,7 @@ pub struct McmetaFilterBlock {
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)] #[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
pub struct McmetaOverlays { pub struct McmetaOverlays {
/// Vector of overlays. The order is important, as the first in the list is applied first. /// Vector of overlays. The order is important, as the first in the list is applied first.
pub entries: Vec<McmetaOverlaysEntries>, pub entries: Vec<McmetaOverlaysEntries>
} }
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)] #[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
/// An overlay. /// An overlay.
@ -94,7 +94,7 @@ pub struct McmetaOverlaysEntries {
/// Describes a range for pack formats when this overlay should be active. /// Describes a range for pack formats when this overlay should be active.
pub formats: McmetaOverlaysEntriesFormats, pub formats: McmetaOverlaysEntriesFormats,
/// The directory to overlay for the respective versions (allowed characters: a-z, 0-9, _ and -). In this directory, pack.mcmeta and pack.png are ignored. /// The directory to overlay for the respective versions (allowed characters: a-z, 0-9, _ and -). In this directory, pack.mcmeta and pack.png are ignored.
pub directory: String, pub directory: String
} }
/// Describes a range for pack formats when this overlay should be active. /// Describes a range for pack formats when this overlay should be active.
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)] #[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
@ -102,7 +102,7 @@ pub struct McmetaOverlaysEntriesFormats {
/// Minimum Pack format number. /// Minimum Pack format number.
pub min_inclusive: u8, pub min_inclusive: u8,
/// Maximum Pack format number. /// Maximum Pack format number.
pub max_inclusive: u8, pub max_inclusive: u8
} }
// I don't what this looks like // I don't what this looks like
@ -114,5 +114,5 @@ pub struct McmetaLanguage {
/// The country or region name /// The country or region name
pub region: String, pub region: String,
/// If true, the language reads right to left. /// If true, the language reads right to left.
pub bidirectional: bool, pub bidirectional: bool
} }