2024-03-28 01:17:17 +01:00
|
|
|
//! Compiler for `ShulkerScript`
|
|
|
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2024-04-03 13:46:57 +02:00
|
|
|
use shulkerbox::datapack::{self, Command, Datapack, Execute};
|
2024-03-28 01:17:17 +01:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
base::{source_file::SourceElement, Handler},
|
|
|
|
syntax::syntax_tree::{declaration::Declaration, program::Program, statement::Statement},
|
|
|
|
};
|
|
|
|
|
2024-04-03 01:27:02 +02:00
|
|
|
use super::error::{self, TranspileError};
|
2024-03-28 01:17:17 +01:00
|
|
|
|
2024-04-03 01:27:02 +02:00
|
|
|
/// A transpiler for `ShulkerScript`.
|
2024-03-28 01:17:17 +01:00
|
|
|
#[derive(Debug, Clone, Default)]
|
2024-04-03 01:27:02 +02:00
|
|
|
pub struct Transpiler {
|
|
|
|
functions: HashMap<String, (Vec<Statement>, AnnotationMap)>,
|
2024-03-28 01:17:17 +01:00
|
|
|
}
|
2024-04-03 01:27:02 +02:00
|
|
|
type AnnotationMap = HashMap<String, Option<String>>;
|
2024-03-28 01:17:17 +01:00
|
|
|
|
2024-04-03 01:27:02 +02:00
|
|
|
impl Transpiler {
|
2024-04-03 13:46:57 +02:00
|
|
|
/// Creates a new transpiler.
|
2024-03-28 01:17:17 +01:00
|
|
|
#[must_use]
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
functions: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-03 13:46:57 +02:00
|
|
|
/// Transpiles the given program.
|
2024-03-28 01:17:17 +01:00
|
|
|
///
|
|
|
|
/// # Errors
|
2024-04-03 01:27:02 +02:00
|
|
|
/// - [`TranspileError::MissingMainFunction`] If the main function is missing.
|
|
|
|
pub fn transpile(
|
2024-03-28 01:17:17 +01:00
|
|
|
&mut self,
|
|
|
|
program: &Program,
|
2024-04-03 01:27:02 +02:00
|
|
|
handler: &impl Handler<error::TranspileError>,
|
|
|
|
) -> Result<Datapack, TranspileError> {
|
2024-03-28 01:17:17 +01:00
|
|
|
for declaration in program.declarations() {
|
|
|
|
match declaration {
|
2024-04-03 01:27:02 +02:00
|
|
|
Declaration::Function(function) => {
|
|
|
|
let name = function.identifier().span().str().to_string();
|
|
|
|
let statements = function.block().statements().clone();
|
|
|
|
let annotations = function
|
|
|
|
.annotations()
|
|
|
|
.iter()
|
|
|
|
.map(|annotation| {
|
|
|
|
let key = annotation.identifier();
|
|
|
|
let value = annotation.value();
|
|
|
|
(
|
|
|
|
key.span().str().to_string(),
|
2024-04-03 13:46:57 +02:00
|
|
|
value.as_ref().map(|(_, ref v)| v.str_content().to_string()),
|
2024-04-03 01:27:02 +02:00
|
|
|
)
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
self.functions.insert(name, (statements, annotations))
|
|
|
|
}
|
2024-03-28 01:17:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-04-03 01:27:02 +02:00
|
|
|
let Some((main_function, main_annotations)) = self.functions.get("main") else {
|
|
|
|
handler.receive(TranspileError::MissingMainFunction);
|
|
|
|
return Err(TranspileError::MissingMainFunction);
|
2024-03-28 01:17:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
let main_commands = compile_function(main_function);
|
|
|
|
// TODO: change this
|
|
|
|
let mut datapack = shulkerbox::datapack::Datapack::new("shulkerscript-pack", 27);
|
|
|
|
let namespace = datapack.namespace_mut("shulkerscript");
|
|
|
|
let main_function = namespace.function_mut("main");
|
|
|
|
main_function.get_commands_mut().extend(main_commands);
|
|
|
|
|
2024-04-03 01:27:02 +02:00
|
|
|
if main_annotations.contains_key("tick") {
|
|
|
|
datapack.add_tick("shulkerscript:main");
|
|
|
|
}
|
|
|
|
if main_annotations.contains_key("load") {
|
|
|
|
datapack.add_load("shulkerscript:main");
|
|
|
|
}
|
|
|
|
|
2024-03-28 01:17:17 +01:00
|
|
|
Ok(datapack)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile_function(statements: &[Statement]) -> Vec<Command> {
|
|
|
|
let mut commands = Vec::new();
|
|
|
|
for statement in statements {
|
2024-03-29 18:26:43 +01:00
|
|
|
commands.extend(compile_statement(statement));
|
|
|
|
}
|
|
|
|
commands
|
|
|
|
}
|
|
|
|
|
|
|
|
fn compile_statement(statement: &Statement) -> Option<Command> {
|
|
|
|
match statement {
|
|
|
|
Statement::LiteralCommand(literal_command) => Some(literal_command.clean_command().into()),
|
|
|
|
Statement::Block(_) => {
|
|
|
|
unreachable!("Only literal commands are allowed in functions at this time.")
|
|
|
|
}
|
|
|
|
Statement::Conditional(cond) => {
|
|
|
|
let (_, cond, block, el) = cond.clone().dissolve();
|
|
|
|
let (_, cond, _) = cond.dissolve();
|
|
|
|
let statements = block.statements();
|
|
|
|
|
|
|
|
let el = el
|
|
|
|
.and_then(|el| {
|
|
|
|
let (_, block) = el.dissolve();
|
|
|
|
let statements = block.statements();
|
|
|
|
if statements.is_empty() {
|
|
|
|
None
|
|
|
|
} else if statements.len() == 1 {
|
|
|
|
compile_statement(&statements[0]).map(|cmd| Execute::Run(Box::new(cmd)))
|
|
|
|
} else {
|
|
|
|
let commands = statements.iter().filter_map(compile_statement).collect();
|
|
|
|
Some(Execute::Runs(commands))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(Box::new);
|
|
|
|
|
|
|
|
if statements.is_empty() {
|
|
|
|
if el.is_none() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(Command::Execute(Execute::If(
|
2024-04-03 13:46:57 +02:00
|
|
|
datapack::Condition::from(cond),
|
2024-03-29 18:26:43 +01:00
|
|
|
Box::new(Execute::Runs(Vec::new())),
|
|
|
|
el,
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let run = if statements.len() > 1 {
|
|
|
|
let commands = statements.iter().filter_map(compile_statement).collect();
|
|
|
|
Execute::Runs(commands)
|
|
|
|
} else {
|
|
|
|
Execute::Run(Box::new(compile_statement(&statements[0])?))
|
|
|
|
};
|
|
|
|
|
|
|
|
Some(Command::Execute(Execute::If(
|
2024-04-03 13:46:57 +02:00
|
|
|
datapack::Condition::from(cond),
|
2024-03-29 18:26:43 +01:00
|
|
|
Box::new(run),
|
|
|
|
el,
|
|
|
|
)))
|
2024-03-28 01:17:17 +01:00
|
|
|
}
|
|
|
|
}
|
2024-04-03 00:45:34 +02:00
|
|
|
Statement::DocComment(doccomment) => {
|
|
|
|
let content = doccomment.content();
|
|
|
|
Some(Command::Comment(content.to_string()))
|
|
|
|
}
|
2024-04-03 01:09:13 +02:00
|
|
|
Statement::Grouping(group) => {
|
|
|
|
let statements = group.block().statements();
|
|
|
|
let commands = statements
|
|
|
|
.iter()
|
|
|
|
.filter_map(compile_statement)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
if commands.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(Command::Group(commands))
|
|
|
|
}
|
|
|
|
}
|
2024-03-28 01:17:17 +01:00
|
|
|
}
|
|
|
|
}
|