Compiler for JMC (JavaScript-like Minecraft Function), a mcfunction extension language for making Minecraft Datapack.
Project description
JMC ·
(JavaScript-like Minecraft Function)
JMC (JavaScript-like Minecraft Function) is a mcfunction extension language for making Minecraft Datapack.
Code example:
Text.tellraw(@a, "everything outside the function");
say "just goes into the load function";
function myFunc() { // function
execute as @a at @s run {
Text.tellraw(@a, "&<green,bold> this text is green and bold");
say "this is a function executed through execute as @a";
}
}
function varOperations() {
// this variable x is equal to the number of items in hand ;
$x = data get entity @s SelectedItem.Count;
$y = 100; // this is the second variable
$random_int = Math.random($x, $y);
Text.tellraw(@a, "random number from &<$x> to 100: &<$random_int>");
}
class folder {
function funcInFolder() {
if ($x < $y && $random_int <= 50) {
printf("X is less than Y and random number is less than or equal to 50");
} else if ($y > $x || $x == 69) {
printf("X is greater than Y or X is equal to 69");
} else {
printf("other cases"); // "printf" is shortcut for "tellraw @a"
}
}
}
function folder.raycast() {
Raycast.simple(
onHit=()=>{
printf("i hit some block");
},
onStep=()=>{
particle happy_villager ~ ~ ~;
}
interval=0.5,
maxIter=100,
stopAtBlock=true,
);
}
Documentation: https://jmc.wingedseal.com
Trailer: https://www.youtube.com/watch?v=cFgvCScpirw&ab_channel=WingedSeal
Why use JMC?
- Avoid repetitive tasks
- Superior Syntax
- Low learning curve
- Many more features
JMC allows you to write minecraft functions in a better language (.jmc) which is more readable and easier to write.
Documentation
Everything you need to know about JMC can be found at https://jmc.wingedseal.com
Installation
- Executable
In "datapacks" folder of your world file (Usually .minecraft/saves/world_name/datapacks
). Create a new datapack folder. And put JMC.exe in that folder then run it.
- Python 3.10+
pip install jmcfunction --pre
Latest unreleased build:
pip install git+https://github.com/WingedSeal/jmc.git#subdirectory=src
Build
Executable
If you would like to build the executable yourself (on Windows).
- Install Python 3.10
- Install GNU compiler
- Open command prompt as administrator
- Go to repository directory using
cd
- Run
pip install -r build_requirements.txt
- Run
build
Python
If you would like to use latest unreleased feature, you can install jmc directly from github repository.
- Install Python 3.10
- Open a terminal (command prompt as administrator on Windows)
- Go to repository directory using
cd
- Run
cd ./src
- Run
pip install setuptools
- Run
python setup.py install
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jmcfunction-1.2.17a1.tar.gz
.
File metadata
- Download URL: jmcfunction-1.2.17a1.tar.gz
- Upload date:
- Size: 98.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 234d16cd91807f47caed9f212a48f638f5d9e05eaff719f76e798ab07f189eee |
|
MD5 | 9e15bcbd8ce429573e05f5768ace5756 |
|
BLAKE2b-256 | 90729971bf5528ec4075e34f7488762aa837278c79ed6622ed02be6d8ec45c2a |
File details
Details for the file jmcfunction-1.2.17a1-py3-none-any.whl
.
File metadata
- Download URL: jmcfunction-1.2.17a1-py3-none-any.whl
- Upload date:
- Size: 113.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0093b2a2fc45d57a46b3c883140399baa6c81fd7e27e91e040d418effcb4bb94 |
|
MD5 | 2fbcae909f6e734872a72256a55e129c |
|
BLAKE2b-256 | 049188e055666eabfc5b3b7204f6c587ebf766037d9f5be30fe1aa42ef177faf |