Datapack.Net 0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Datapack.Net --version 0.1.1                
NuGet\Install-Package Datapack.Net -Version 0.1.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Datapack.Net" Version="0.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Datapack.Net --version 0.1.1                
#r "nuget: Datapack.Net, 0.1.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Datapack.Net as a Cake Addin
#addin nuget:?package=Datapack.Net&version=0.1.1

// Install Datapack.Net as a Cake Tool
#tool nuget:?package=Datapack.Net&version=0.1.1                

Datapack.Net

A Minecraft datapack generator and utility library. Also contains an experimental C# to commands "transpiler" for high level vanilla programming.

Datapack.Net still has a long way to go, so feel free to play around and catch bugs. I might notice when bug reports are made.

Features

  • .NET 8
  • Datpack generation
  • C# to commands generator
  • Typesafe commands
    • As well as blocks, block states, biomes, and entities
    • Full target selector support
    • Not all commands have been created yet. Some commands are:
      • /data
      • /execute
      • /function
      • /random
      • /return
      • /say
      • /scoreboard
      • /tellraw
        • Tellraw formatting is incomplete
  • NBT writing
    • Reading is not implemented
  • Datapack optimizer
    • Currently only removes empty functions and commands that reference them
  • Supports 1.20.4
    • 1.20.5+ support is limited due to the new item components replacing NBT. Most things should still work

Installation

Datapack.Net can be installed via NuGet here. The CubeLib analyzer is a separate package (not yet published).

If cloning locally, you need to build the project and restart your IDE for the source generator to come into effect.

For the time being, I recommend cloning and editing the TNTCannon example/testing project if you just want to play around.

Usage

This is basic datapack creation and building. Scroll down for the more interesting stuff.

Creating a datapack:

var pack = new DP("The best description", "out.zip");

Creating a .mcfunction file:

var func = new MCFunction(new NamespacedID("namespace", "test"));
// Alternatively new("namespace", "test") can be used, and will be for the rest of the documentation where possible.

Adding a command:

func.Add(new Execute().As(new NamedTarget("player")).Run(new SayCommand("Hi")));

Adding the function to the pack:

pack.GetResource<Functions>().Add(func);

Building the pack:

pack.Build();

See the tests for examples of commands and other features.

CubeLib

Have you ever struggled to multiply a score by a constant number? Have you ever wanted better control flow? With the recent addition of function macros in Minecraft, everything is possible. CubeLib is a system to achieve just that by dynamically generating commands based on function calls. It's optional and fully separate from the rest of the library under the Datapack.Net.CubeLib namespace.

A quick example:

var x = Local(17);
x.Mul(45);
Print("Value: ", x);

If(x > 20, () => Print("Big number"))
.Else(() => Print("Small number"));

Language Features

  • main and tick functions
  • Custom functions with optional arguments and return values
    • Source generator for dynamically creating wrappers for custom functions
  • Local and global variables
  • Control flow and scopes
    • If
    • For
    • While
    • As
  • Project dependencies
  • Standard macro library
    • Not usually used directly by the end user
  • String concatenation
  • Dynamic heap allocation and memory management using modern datapack tools like macros and storage
    • C-style. No handholding or garbage collection
    • Object oriented programming
      • No inheritance yet
    • Statically typed runtime lists (MCList<T>)
    • Pointers
      • HeapPointer<T>: Stored as a single local variable. Limited, but fast
      • RuntimePointer<T>: Allocated onto the heap. A universal pointer with overhead
    • Custom classes with method and property support
    • Persistant global objects
    • Don't accidentally create a memory leak :)
  • Entity reference and utilities WIP
  • Optional basic debugging tools and error catching
    • Error checking is currently broken, but macro argument verification works.
  • And much more

Setup

The TNTCannon project is where I do my testing, so it's a good place to see an example. Eventually it will have an actual function.

Creating a project:

[Project]
public partial class MyProject(DP pack) : Project(pack)
{
    public override string Namespace => "test";

    protected override void Init()
    {
        // Initialize global variables here
    }

    protected override void Main()
    {
        // Ran on reload
        // Do not set class properties here because this function is not guaranteed to be ran before others
    }

    protected override void Tick()
    {
        // Ran on tick
    }
}

Compiling the project:

var pack = new DP("Wow", "test.zip");

// Optional, but very useful if something goes wrong
Project.Settings.VerifyMacros = true;

var proj = Project.Create<MyProject>(pack);
proj.Build();

// Optional, but nice
pack.Optimize();
pack.Build();

Custom functions:

[DeclareMC("test")]
private void _Test(MyObject obj)
{
    obj.SomeProperty = 7;
    Print(obj);
}

Custom functions are declared as private and with a leading underscore in their name (custom object methods are also static to prevent confusing states with each other). This is so the source generator can generate wrapper methods for easier use. If the source generators are not used, then they can be public. In the future, the source generator will contain an analyzer to catch this error.

Which then can be called as follows anywhere:

Test(obj);

Pointers:

var ptr = Alloc<NBTString>();
ptr.Set("Boo");
ptr.Copy(otherPointer);
ptr.Free();

Objects are allocated using AllocObj<T> instead because they have additional requirements. They will also be allocated using a RuntimePointer<T> for efficiency reasons, so that means two objects will be allocated (the pointer and the object).

Custom objects (as seen in TNTCannon):

[RuntimeObject("funny")]
public partial class Funny(IPointer<Funny> prop) : RuntimeObject<TNTProject, Funny>(prop)
{
    internal sealed class Props
    {
        [RuntimeProperty("prop")]
        public int Prop { get; set; }

        [RuntimeProperty("str")]
        public string Str { get; set; }

        [RuntimeProperty("other")]
        public Funny Other { get; set; }
    }

    // These get placed into folder in your namespace which corresponds to the name of the object
    // Example: this will be saved as tnt:funny/say
    // Datapack.Net will catch duplicate functions and throw an error
    [DeclareMC("say")]
    private static void _Say(Funny self)
    {
        State.Print(self.Prop);
    }

    // Optional constructor:
    // [DeclareMC("init")]
    // private static void _Init(MCList<T> self)
    // {
    //
    // }
}

Register the objects in your project:

protected override void Init()
{
    RegisterObject<Funny>();
}

If your object is generic like MCList<T>, then pick a type like NBTType. Methods are not regenerated for each generic combination. See MCList<T> for an example of how to implement a generic object properly.

NBT types are stored by value, and custom objects (basically fancy pointers) are passed and stored by reference.

More information can be found in the wiki (WIP)

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.2 96 6/25/2024
0.1.1 97 6/21/2024
0.1.0 117 6/19/2024