MCFPP
MCFPP copied to clipboard
MCFPP is a brand new objected-oriented language that can be compiled into Minecraft Datapack.
简体中文
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
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
- [ ] Code optimization
- [ ] Garbage collection mechanism
- [ ] More variable features (const, dynamic, import)
- [ ] Interface
- [ ] Inheritance and polymorphism
- [ ] Struct
- [ ] Operator overload
- [ ] Inline Function
- [ ] Sandbox
-
- [ ] Syntactic sugar form of native
- [ ] Versioned compilation
- [ ] Basic library
- [ ] Enum
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