implement boolean storage variable

This commit is contained in:
Moritz Hölting 2025-03-07 16:47:48 +01:00
parent 8ae065f582
commit c72fbfd148
4 changed files with 221 additions and 111 deletions

View File

@ -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"

View File

@ -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 {}

View File

@ -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() {

View File

@ -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,97 +209,14 @@ 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) =
let deobfuscate_annotation_value = get_single_data_location_identifiers(single, program_identifier, scope, handler)?;
TranspileAnnotationValue::from(deobfuscate_annotation.assignment().value.clone());
if let TranspileAnnotationValue::Map(map) = deobfuscate_annotation_value {
if map.len() > 2 {
let error =
TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation must have at most 2 key-value pairs."
.to_string(),
});
handler.receive(error.clone());
return Err(error);
}
if let (Some(name), Some(target)) = (map.get("name"), map.get("target")) {
if let (
TranspileAnnotationValue::Expression(objective),
TranspileAnnotationValue::Expression(target),
) = (name, target)
{
if let (Some(name_eval), Some(target_eval)) =
(objective.comptime_eval(), target.comptime_eval())
{
// TODO: change invalid criteria if boolean
if !crate::util::is_valid_scoreboard_name(&name_eval) {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' must be a valid scoreboard name.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
if !crate::util::is_valid_player_name(&target_eval) {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'target' must be a valid player name.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
(name_eval, target_eval)
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' or 'target' could not have been evaluated at compile time.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' and 'target' must be compile time expressions.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
} else {
let error =
TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message:
"Deobfuscate annotation must have both 'name' and 'target' keys."
.to_string(),
});
handler.receive(error.clone());
return Err(error);
}
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation must be a map.".to_string(),
});
handler.receive(error.clone());
return Err(error);
}
} else {
let name =
"shu_values_".to_string() + &md5::hash(program_identifier).to_hex_lowercase();
let target = md5::hash((Arc::as_ptr(scope) as usize).to_le_bytes())
.to_hex_lowercase()
.split_off(16);
(name, target)
};
match variable_type { match variable_type {
KeywordKind::Int => { KeywordKind::Int => {
if !self.datapack.scoreboards().contains_key(&name) { if !self.datapack.scoreboards().contains_key(&name) {
self.datapack.register_scoreboard(&name, None, None); self.datapack
.register_scoreboard(&name, None::<&str>, None::<&str>);
} }
scope.set_variable( scope.set_variable(
@ -310,6 +227,31 @@ impl Transpiler {
}, },
); );
} }
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"), _ => todo!("implement other variable types"),
} }
@ -317,7 +259,7 @@ impl Transpiler {
|| Ok(Vec::new()), || Ok(Vec::new()),
|assignment| { |assignment| {
self.transpile_assignment( self.transpile_assignment(
single.identifier().span.str(), single.identifier(),
assignment.expression(), assignment.expression(),
scope, scope,
handler, handler,
@ -328,25 +270,156 @@ impl Transpiler {
fn transpile_assignment( fn transpile_assignment(
&mut self, &mut self,
name: &str, identifier: &Identifier,
expression: &crate::syntax::syntax_tree::expression::Expression, expression: &crate::syntax::syntax_tree::expression::Expression,
scope: &Arc<Scope>, scope: &Arc<Scope>,
handler: &impl Handler<base::Error>, handler: &impl Handler<base::Error>,
) -> TranspileResult<Vec<Command>> { ) -> TranspileResult<Vec<Command>> {
let target = scope.get_variable(name).unwrap(); if let Some(target) = scope.get_variable(identifier.span.str()) {
let data_location = match target.as_ref() { let data_location = match target.as_ref() {
VariableData::BooleanStorage { storage_name, path } => DataLocation::Storage { VariableData::BooleanStorage { storage_name, path } => Ok(DataLocation::Storage {
storage_name: storage_name.to_owned(), storage_name: storage_name.to_owned(),
path: path.to_owned(), path: path.to_owned(),
r#type: super::expression::StorageType::Boolean, r#type: super::expression::StorageType::Boolean,
}, }),
VariableData::ScoreboardValue { objective, target } => DataLocation::ScoreboardValue { VariableData::ScoreboardValue { objective, target } => {
objective: objective.to_owned(), Ok(DataLocation::ScoreboardValue {
target: target.to_owned(), objective: objective.to_owned(),
}, target: target.to_owned(),
_ => todo!("implement other variable types"), })
}; }
self.transpile_expression(expression, &data_location, scope, handler) 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 =
TranspileAnnotationValue::from(deobfuscate_annotation.assignment().value.clone());
if let TranspileAnnotationValue::Map(map) = deobfuscate_annotation_value {
if map.len() > 2 {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation must have at most 2 key-value pairs."
.to_string(),
});
handler.receive(error.clone());
return Err(error);
}
if let (Some(name), Some(target)) = (map.get("name"), map.get("target")) {
if let (
TranspileAnnotationValue::Expression(objective),
TranspileAnnotationValue::Expression(target),
) = (name, target)
{
if let (Some(name_eval), Some(target_eval)) =
(objective.comptime_eval(), target.comptime_eval())
{
// TODO: change invalid criteria if boolean
if !crate::util::is_valid_scoreboard_name(&name_eval) {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' must be a valid scoreboard name.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
if !crate::util::is_valid_player_name(&target_eval) {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'target' must be a valid player name.".to_string()
});
handler.receive(error.clone());
return Err(error);
}
Ok((name_eval, target_eval))
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' or 'target' could not have been evaluated at compile time.".to_string()
});
handler.receive(error.clone());
Err(error)
}
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation 'name' and 'target' must be compile time expressions.".to_string()
});
handler.receive(error.clone());
Err(error)
}
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation must have both 'name' and 'target' keys."
.to_string(),
});
handler.receive(error.clone());
Err(error)
}
} else {
let error = TranspileError::IllegalAnnotationContent(IllegalAnnotationContent {
annotation: deobfuscate_annotation.span(),
message: "Deobfuscate annotation must be a map.".to_string(),
});
handler.receive(error.clone());
Err(error)
}
} else {
let hashed = md5::hash(program_identifier).to_hex_lowercase();
let name = "shu_values_".to_string() + &hashed;
let mut target = md5::hash((Arc::as_ptr(scope) as usize).to_le_bytes()).to_hex_lowercase();
if matches!(variable_type, KeywordKind::Int) {
target.split_off(16);
}
Ok((name, target))
} }
} }