An open API service indexing awesome lists of open source software.

https://github.com/moderocky/craftscript

A tiny scripting language for writing user-centered scripts in minecraft.
https://github.com/moderocky/craftscript

Last synced: 19 days ago
JSON representation

A tiny scripting language for writing user-centered scripts in minecraft.

Awesome Lists containing this project

README

          

CraftScript
=====

### Opus #26

A tiny scripting language for writing user-centered scripts in Minecraft.

## Documentation

Comprehensive language documentation (and some introductory tutorials) are
available [here](https://craftscript.kenzie.mx).

## Maven Information

```xml

kenzie
Kenzie's Repository
https://repo.kenzie.mx/releases

```

```xml

mx.kenzie
craftscript
1.0.0

```

## Introduction

CraftScript is a contextualised, functional script engine.
It can function either as an interpreted scripting language or a compiled programming language.

It is designed for the game 'Minecraft' to run small, non-invasive scripts from the context of a player.
However, the parser and script engine are easy to modify or extend so that domains may create their own additional
functionality.

Its principle feature is the 'context' -- the situation and environment that code is running in, including the
variables, functions and keywords that are available during runtime.
This allows for an unusual form of *ad hoc* polymorphism: the same interpreted code can be used to do an entirely
different thing
depending on its context.
Rather than overloading two separate functions (e.g. `fn(int)` and `fn(string)`) CraftScript can feed different
parameters, variables, known types and even language keywords to an executable statement.

## Motivations

CraftScript was designed for players in the game 'Minecraft' to write scripts to be run from their in-game avatar.

With this in mind, the actions available in a script are limited to what the executor is capable of doing.
This adds a layer of safety to the language, since a player's permissions can be limited in order to prevent destructive
actions.

I made CraftScript for a public server in which users can write, upload and run their own scripts in order
to create macros or special behaviour.

The language is designed to be fairly simple but also unambiguous, and imitates the style of Minecraft's native
commands, selectors and keys. \
There is some deviation from this, since CraftScript has several features that do not exist in the `.mcfunction` format.

## Language Type

Scripts are designed to be interpreted into an executable structure.
However, in some situations it may be preferable to compile the script into a JVM class.

Currently, there is one built-in simple script compiler.
This turns a script into bytecode that can be saved in the Java class format or loaded directly into the machine.
While this does allow a script to be stored and loaded significantly more quickly, it still requires CraftScript as a
dependency to run.

The simple script compiler assembles the executable statements _in situ_ -- when they are required -- rather than
storing them ahead of time.

This has the advantages of not keeping all the statement objects in memory and potentially benefiting from some JVM
optimisation, however, if the JVM is unable to optimise it properly, it will require more CPU resources and could be
slower to execute than an interpreted script. This is because the memory block has to be allocated for a statement
before it can be run.