implement boolean storage variable
This commit is contained in:
parent
8ae065f582
commit
c72fbfd148
|
@ -38,7 +38,7 @@ path-absolutize = "3.1.1"
|
||||||
pathdiff = "0.2.3"
|
pathdiff = "0.2.3"
|
||||||
serde = { version = "1.0.217", features = ["derive"], optional = true }
|
serde = { version = "1.0.217", features = ["derive"], optional = true }
|
||||||
# shulkerbox = { version = "0.1.0", default-features = false, optional = true }
|
# shulkerbox = { version = "0.1.0", default-features = false, optional = true }
|
||||||
shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox", rev = "811d71508208f8415d881f7c4d73429f1a73f36a", default-features = false, optional = true }
|
shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox", rev = "cf8c922704a38980def3c6267cee2eeba304394c", default-features = false, optional = true }
|
||||||
strsim = "0.11.1"
|
strsim = "0.11.1"
|
||||||
strum = { version = "0.27.0", features = ["derive"] }
|
strum = { version = "0.27.0", features = ["derive"] }
|
||||||
thiserror = "2.0.11"
|
thiserror = "2.0.11"
|
||||||
|
|
|
@ -36,6 +36,8 @@ pub enum TranspileError {
|
||||||
MismatchedTypes(#[from] MismatchedTypes),
|
MismatchedTypes(#[from] MismatchedTypes),
|
||||||
#[error(transparent)]
|
#[error(transparent)]
|
||||||
FunctionArgumentsNotAllowed(#[from] FunctionArgumentsNotAllowed),
|
FunctionArgumentsNotAllowed(#[from] FunctionArgumentsNotAllowed),
|
||||||
|
#[error(transparent)]
|
||||||
|
AssignmentError(#[from] AssignmentError),
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The result of a transpilation operation.
|
/// The result of a transpilation operation.
|
||||||
|
@ -227,3 +229,25 @@ impl Display for FunctionArgumentsNotAllowed {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl std::error::Error for FunctionArgumentsNotAllowed {}
|
impl std::error::Error for FunctionArgumentsNotAllowed {}
|
||||||
|
|
||||||
|
/// An error that occurs when an expression can not evaluate to the wanted type.
|
||||||
|
#[expect(clippy::module_name_repetitions)]
|
||||||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
pub struct AssignmentError {
|
||||||
|
pub identifier: Span,
|
||||||
|
pub message: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Display for AssignmentError {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
write!(f, "{}", Message::new(Severity::Error, &self.message))?;
|
||||||
|
|
||||||
|
write!(
|
||||||
|
f,
|
||||||
|
"\n{}",
|
||||||
|
SourceCodeDisplay::new(&self.identifier, Option::<u8>::None)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl std::error::Error for AssignmentError {}
|
||||||
|
|
|
@ -38,7 +38,9 @@ use super::{
|
||||||
/// A transpiler for `Shulkerscript`.
|
/// A transpiler for `Shulkerscript`.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Transpiler {
|
pub struct Transpiler {
|
||||||
|
pub(super) main_namespace_name: String,
|
||||||
pub(super) datapack: shulkerbox::datapack::Datapack,
|
pub(super) datapack: shulkerbox::datapack::Datapack,
|
||||||
|
pub(super) setup_cmds: Vec<Command>,
|
||||||
/// Top-level [`Scope`] for each program identifier
|
/// Top-level [`Scope`] for each program identifier
|
||||||
scopes: BTreeMap<String, Arc<Scope<'static>>>,
|
scopes: BTreeMap<String, Arc<Scope<'static>>>,
|
||||||
/// Key: (program identifier, function name)
|
/// Key: (program identifier, function name)
|
||||||
|
@ -51,8 +53,11 @@ impl Transpiler {
|
||||||
/// Creates a new transpiler.
|
/// Creates a new transpiler.
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn new(main_namespace_name: impl Into<String>, pack_format: u8) -> Self {
|
pub fn new(main_namespace_name: impl Into<String>, pack_format: u8) -> Self {
|
||||||
|
let main_namespace_name = main_namespace_name.into();
|
||||||
Self {
|
Self {
|
||||||
|
main_namespace_name: main_namespace_name.clone(),
|
||||||
datapack: shulkerbox::datapack::Datapack::new(main_namespace_name, pack_format),
|
datapack: shulkerbox::datapack::Datapack::new(main_namespace_name, pack_format),
|
||||||
|
setup_cmds: Vec::new(),
|
||||||
scopes: BTreeMap::new(),
|
scopes: BTreeMap::new(),
|
||||||
functions: BTreeMap::new(),
|
functions: BTreeMap::new(),
|
||||||
aliases: HashMap::new(),
|
aliases: HashMap::new(),
|
||||||
|
@ -119,6 +124,14 @@ impl Transpiler {
|
||||||
self.get_or_transpile_function(&identifier_span, None, &scope, handler)?;
|
self.get_or_transpile_function(&identifier_span, None, &scope, handler)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !self.setup_cmds.is_empty() {
|
||||||
|
let main_namespace = self.datapack.namespace_mut(&self.main_namespace_name);
|
||||||
|
let setup_fn = main_namespace.function_mut("shu/setup");
|
||||||
|
setup_fn.get_commands_mut().extend(self.setup_cmds.clone());
|
||||||
|
self.datapack
|
||||||
|
.add_load(format!("{}:shu/setup", self.main_namespace_name));
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -218,8 +231,8 @@ impl Transpiler {
|
||||||
Declaration::Tag(tag) => {
|
Declaration::Tag(tag) => {
|
||||||
let namespace = self
|
let namespace = self
|
||||||
.datapack
|
.datapack
|
||||||
.namespace_mut(&namespace.namespace_name().str_content());
|
.namespace_mut(namespace.namespace_name().str_content());
|
||||||
let sb_tag = namespace.tag_mut(&tag.name().str_content(), tag.tag_type());
|
let sb_tag = namespace.tag_mut(tag.name().str_content(), tag.tag_type());
|
||||||
|
|
||||||
if let Some(list) = &tag.entries().list {
|
if let Some(list) = &tag.entries().list {
|
||||||
for value in list.elements() {
|
for value in list.elements() {
|
||||||
|
|
|
@ -8,12 +8,12 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use chksum_md5 as md5;
|
use chksum_md5 as md5;
|
||||||
use shulkerbox::prelude::Command;
|
use shulkerbox::prelude::{Command, Condition, Execute};
|
||||||
use strum::EnumIs;
|
use strum::EnumIs;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
base::{self, source_file::SourceElement as _, Handler},
|
base::{self, source_file::SourceElement as _, Handler},
|
||||||
lexical::token::KeywordKind,
|
lexical::token::{Identifier, KeywordKind},
|
||||||
syntax::syntax_tree::{
|
syntax::syntax_tree::{
|
||||||
expression::{Expression, Primary},
|
expression::{Expression, Primary},
|
||||||
statement::{SingleVariableDeclaration, VariableDeclaration},
|
statement::{SingleVariableDeclaration, VariableDeclaration},
|
||||||
|
@ -21,8 +21,9 @@ use crate::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
error::IllegalAnnotationContent, expression::DataLocation, FunctionData,
|
error::{AssignmentError, IllegalAnnotationContent},
|
||||||
TranspileAnnotationValue, TranspileError, TranspileResult, Transpiler,
|
expression::DataLocation,
|
||||||
|
FunctionData, TranspileAnnotationValue, TranspileError, TranspileResult, Transpiler,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Stores the data required to access a variable.
|
/// Stores the data required to access a variable.
|
||||||
|
@ -184,7 +185,6 @@ impl Transpiler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[expect(clippy::too_many_lines)]
|
|
||||||
fn transpile_single_variable_declaration(
|
fn transpile_single_variable_declaration(
|
||||||
&mut self,
|
&mut self,
|
||||||
single: &SingleVariableDeclaration,
|
single: &SingleVariableDeclaration,
|
||||||
|
@ -209,14 +209,140 @@ impl Transpiler {
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
return Err(error);
|
||||||
}
|
}
|
||||||
let (name, target) = if let Some(deobfuscate_annotation) = deobfuscate_annotation {
|
let (name, target) =
|
||||||
|
get_single_data_location_identifiers(single, program_identifier, scope, handler)?;
|
||||||
|
|
||||||
|
match variable_type {
|
||||||
|
KeywordKind::Int => {
|
||||||
|
if !self.datapack.scoreboards().contains_key(&name) {
|
||||||
|
self.datapack
|
||||||
|
.register_scoreboard(&name, None::<&str>, None::<&str>);
|
||||||
|
}
|
||||||
|
|
||||||
|
scope.set_variable(
|
||||||
|
single.identifier().span.str(),
|
||||||
|
VariableData::ScoreboardValue {
|
||||||
|
objective: name.clone(),
|
||||||
|
target,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
KeywordKind::Bool => {
|
||||||
|
let setup_cmd = Command::Execute(Execute::If(
|
||||||
|
Condition::Not(Box::new(Condition::Atom(
|
||||||
|
format!(
|
||||||
|
"data storage {namespace}:{name} {target}",
|
||||||
|
namespace = self.main_namespace_name
|
||||||
|
)
|
||||||
|
.into(),
|
||||||
|
))),
|
||||||
|
Box::new(Execute::Run(Box::new(Command::Raw(format!(
|
||||||
|
r#"data merge storage {namespace}:{name} {{"{target}": 0b}}"#,
|
||||||
|
namespace = self.main_namespace_name
|
||||||
|
))))),
|
||||||
|
None,
|
||||||
|
));
|
||||||
|
self.setup_cmds.push(setup_cmd);
|
||||||
|
|
||||||
|
scope.set_variable(
|
||||||
|
single.identifier().span.str(),
|
||||||
|
VariableData::BooleanStorage {
|
||||||
|
storage_name: name,
|
||||||
|
path: target,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
_ => todo!("implement other variable types"),
|
||||||
|
}
|
||||||
|
|
||||||
|
single.assignment().as_ref().map_or_else(
|
||||||
|
|| Ok(Vec::new()),
|
||||||
|
|assignment| {
|
||||||
|
self.transpile_assignment(
|
||||||
|
single.identifier(),
|
||||||
|
assignment.expression(),
|
||||||
|
scope,
|
||||||
|
handler,
|
||||||
|
)
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn transpile_assignment(
|
||||||
|
&mut self,
|
||||||
|
identifier: &Identifier,
|
||||||
|
expression: &crate::syntax::syntax_tree::expression::Expression,
|
||||||
|
scope: &Arc<Scope>,
|
||||||
|
handler: &impl Handler<base::Error>,
|
||||||
|
) -> TranspileResult<Vec<Command>> {
|
||||||
|
if let Some(target) = scope.get_variable(identifier.span.str()) {
|
||||||
|
let data_location = match target.as_ref() {
|
||||||
|
VariableData::BooleanStorage { storage_name, path } => Ok(DataLocation::Storage {
|
||||||
|
storage_name: storage_name.to_owned(),
|
||||||
|
path: path.to_owned(),
|
||||||
|
r#type: super::expression::StorageType::Boolean,
|
||||||
|
}),
|
||||||
|
VariableData::ScoreboardValue { objective, target } => {
|
||||||
|
Ok(DataLocation::ScoreboardValue {
|
||||||
|
objective: objective.to_owned(),
|
||||||
|
target: target.to_owned(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
VariableData::Function { .. } | VariableData::FunctionArgument { .. } => {
|
||||||
|
Err(TranspileError::AssignmentError(AssignmentError {
|
||||||
|
identifier: identifier.span(),
|
||||||
|
message: format!(
|
||||||
|
"Cannot assign to a {}.",
|
||||||
|
if matches!(target.as_ref(), VariableData::Function { .. }) {
|
||||||
|
"function"
|
||||||
|
} else {
|
||||||
|
"function argument"
|
||||||
|
}
|
||||||
|
),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
_ => todo!("implement other variable types"),
|
||||||
|
}?;
|
||||||
|
self.transpile_expression(expression, &data_location, scope, handler)
|
||||||
|
} else {
|
||||||
|
Err(TranspileError::AssignmentError(AssignmentError {
|
||||||
|
identifier: identifier.span(),
|
||||||
|
message: "Variable does not exist.".to_string(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_single_data_location_identifiers(
|
||||||
|
single: &SingleVariableDeclaration,
|
||||||
|
program_identifier: &str,
|
||||||
|
scope: &Arc<Scope>,
|
||||||
|
handler: &impl Handler<base::Error>,
|
||||||
|
) -> TranspileResult<(String, String)> {
|
||||||
|
let mut deobfuscate_annotations = single
|
||||||
|
.annotations()
|
||||||
|
.iter()
|
||||||
|
.filter(|a| a.has_identifier("deobfuscate"));
|
||||||
|
|
||||||
|
let variable_type = single.variable_type().keyword;
|
||||||
|
|
||||||
|
let deobfuscate_annotation = deobfuscate_annotations.next();
|
||||||
|
|
||||||
|
if let Some(duplicate) = deobfuscate_annotations.next() {
|
||||||
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
|
annotation: duplicate.span(),
|
||||||
|
message: "Multiple deobfuscate annotations are not allowed.".to_string(),
|
||||||
|
});
|
||||||
|
handler.receive(error.clone());
|
||||||
|
return Err(error);
|
||||||
|
}
|
||||||
|
if let Some(deobfuscate_annotation) = deobfuscate_annotation {
|
||||||
let deobfuscate_annotation_value =
|
let deobfuscate_annotation_value =
|
||||||
TranspileAnnotationValue::from(deobfuscate_annotation.assignment().value.clone());
|
TranspileAnnotationValue::from(deobfuscate_annotation.assignment().value.clone());
|
||||||
|
|
||||||
if let TranspileAnnotationValue::Map(map) = deobfuscate_annotation_value {
|
if let TranspileAnnotationValue::Map(map) = deobfuscate_annotation_value {
|
||||||
if map.len() > 2 {
|
if map.len() > 2 {
|
||||||
let error =
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
|
||||||
annotation: deobfuscate_annotation.span(),
|
annotation: deobfuscate_annotation.span(),
|
||||||
message: "Deobfuscate annotation must have at most 2 key-value pairs."
|
message: "Deobfuscate annotation must have at most 2 key-value pairs."
|
||||||
.to_string(),
|
.to_string(),
|
||||||
|
@ -250,14 +376,14 @@ impl Transpiler {
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
return Err(error);
|
||||||
}
|
}
|
||||||
(name_eval, target_eval)
|
Ok((name_eval, target_eval))
|
||||||
} else {
|
} else {
|
||||||
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
annotation: deobfuscate_annotation.span(),
|
annotation: deobfuscate_annotation.span(),
|
||||||
message: "Deobfuscate annotation 'name' or 'target' could not have been evaluated at compile time.".to_string()
|
message: "Deobfuscate annotation 'name' or 'target' could not have been evaluated at compile time.".to_string()
|
||||||
});
|
});
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
Err(error)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
|
@ -265,18 +391,16 @@ impl Transpiler {
|
||||||
message: "Deobfuscate annotation 'name' and 'target' must be compile time expressions.".to_string()
|
message: "Deobfuscate annotation 'name' and 'target' must be compile time expressions.".to_string()
|
||||||
});
|
});
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
Err(error)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let error =
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
|
||||||
annotation: deobfuscate_annotation.span(),
|
annotation: deobfuscate_annotation.span(),
|
||||||
message:
|
message: "Deobfuscate annotation must have both 'name' and 'target' keys."
|
||||||
"Deobfuscate annotation must have both 'name' and 'target' keys."
|
|
||||||
.to_string(),
|
.to_string(),
|
||||||
});
|
});
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
Err(error)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
|
||||||
|
@ -284,69 +408,18 @@ impl Transpiler {
|
||||||
message: "Deobfuscate annotation must be a map.".to_string(),
|
message: "Deobfuscate annotation must be a map.".to_string(),
|
||||||
});
|
});
|
||||||
handler.receive(error.clone());
|
handler.receive(error.clone());
|
||||||
return Err(error);
|
Err(error)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let name =
|
let hashed = md5::hash(program_identifier).to_hex_lowercase();
|
||||||
"shu_values_".to_string() + &md5::hash(program_identifier).to_hex_lowercase();
|
let name = "shu_values_".to_string() + &hashed;
|
||||||
let target = md5::hash((Arc::as_ptr(scope) as usize).to_le_bytes())
|
let mut target = md5::hash((Arc::as_ptr(scope) as usize).to_le_bytes()).to_hex_lowercase();
|
||||||
.to_hex_lowercase()
|
|
||||||
.split_off(16);
|
|
||||||
|
|
||||||
(name, target)
|
if matches!(variable_type, KeywordKind::Int) {
|
||||||
};
|
target.split_off(16);
|
||||||
|
|
||||||
match variable_type {
|
|
||||||
KeywordKind::Int => {
|
|
||||||
if !self.datapack.scoreboards().contains_key(&name) {
|
|
||||||
self.datapack.register_scoreboard(&name, None, None);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
scope.set_variable(
|
Ok((name, target))
|
||||||
single.identifier().span.str(),
|
|
||||||
VariableData::ScoreboardValue {
|
|
||||||
objective: name.clone(),
|
|
||||||
target,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
_ => todo!("implement other variable types"),
|
|
||||||
}
|
|
||||||
|
|
||||||
single.assignment().as_ref().map_or_else(
|
|
||||||
|| Ok(Vec::new()),
|
|
||||||
|assignment| {
|
|
||||||
self.transpile_assignment(
|
|
||||||
single.identifier().span.str(),
|
|
||||||
assignment.expression(),
|
|
||||||
scope,
|
|
||||||
handler,
|
|
||||||
)
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn transpile_assignment(
|
|
||||||
&mut self,
|
|
||||||
name: &str,
|
|
||||||
expression: &crate::syntax::syntax_tree::expression::Expression,
|
|
||||||
scope: &Arc<Scope>,
|
|
||||||
handler: &impl Handler<base::Error>,
|
|
||||||
) -> TranspileResult<Vec<Command>> {
|
|
||||||
let target = scope.get_variable(name).unwrap();
|
|
||||||
let data_location = match target.as_ref() {
|
|
||||||
VariableData::BooleanStorage { storage_name, path } => DataLocation::Storage {
|
|
||||||
storage_name: storage_name.to_owned(),
|
|
||||||
path: path.to_owned(),
|
|
||||||
r#type: super::expression::StorageType::Boolean,
|
|
||||||
},
|
|
||||||
VariableData::ScoreboardValue { objective, target } => DataLocation::ScoreboardValue {
|
|
||||||
objective: objective.to_owned(),
|
|
||||||
target: target.to_owned(),
|
|
||||||
},
|
|
||||||
_ => todo!("implement other variable types"),
|
|
||||||
};
|
|
||||||
self.transpile_expression(expression, &data_location, scope, handler)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue