MinecraftFunctionPlusPlus / MCFPP

MCFPP is a brand new objected-oriented language that can be compiled into Minecraft Datapack.
https://www.mcfpp.top
GNU General Public License v3.0
201 stars 14 forks source link
antlr4 compiler java kotlin languange minecraft

简体中文

Introduce

MCFPP is a brand new objected-oriented language that can be compiled into Minecraft Datapack. It aims to write datapacks in a syntax similar to C language, and introduces commonly used concepts in programming, thereby making the writing of datapacks more efficient.

This project is still in the early stage of development and cannot be used for actual use. Some functions have not been implemented, and features may change in future versions. The library is also not complete.

QuickStart

MCFPP API

Relative Projects

MCSharp

MCSharp is a CSharp library. Using MCSharp, developers can develop datapacks using CSharp. However, this project has been stopped due to technical issues. MCFPP inherits part of the ideas of MCSharp.

justMCF

JustMCF is a project to simplify mcfunction projects. Using JustMCF, you can not only use the original commands, but also use the simplified commands designed by the project, which can make your commands more concise and efficient.

Update Plan

Features

Basic logical statements

func example(){
  int i = @s.nbt.pos[0];
  if(i > 0){
    @s.say("Hello Minecraft!");
  }
}

Object-oriented programming

class Example{
  int i;
  public Example(int i){
    this.i = i;
  }
  public func print(){
    print(this.i);
  }
}

Libraries

import mcfpp.math;

void example{
    float i = 1.5;
    float out;
    out = pow(i, 2);
    print(out);
}

Generics

class Example<type T>{
  T i;
  public Example(T i){
    this.i = i;
  }
  public func print(){
    print(this.i);
  }
}

func test<type T>(T i){
    print(i);
}

Original Minecraft Command

func test(){
  /execute as @a run say Hello Minecraft!
}

To see more features, please refer to the MCFPP API