Modding:Advanced Items: Difference between revisions

From Vintage Story Wiki
No edit summary
No edit summary
Line 1: Line 1:
__FORCETOC__
__FORCETOC__


It's highly recommended to read [[Basic Item]] first. Additionally this tutorial requires a development environment. If you don't have one already you should read the tutorial [[Setting up a dev environment]].
It's highly recommended to read [[Basic Item]] first. Additionally this tutorial requires a development environment. If you don't have one already you should read the tutorial [[Setting up your Development Environment]].


= Tunnel pickaxe =
= Tunnel pickaxe =

Revision as of 10:36, 10 July 2018


It's highly recommended to read Basic Item first. Additionally this tutorial requires a development environment. If you don't have one already you should read the tutorial Setting up your Development Environment.

Tunnel pickaxe

Let's create an item, which allows you to dig a 3x3 tunnel by mining just one block.

Item Assets

First of all we need to create a new item, including a texture and a lang file. Those assets are pretty straight forward and you can download them here. Just place the file in your mods folder and you are ready to start programming.

There is only one new property in your json item file called class:

	class: "tunnler",

We will create this class, to give the item the desired functionality, so if you pick a different name make sure it matches the one below.

The Item Class

If you have read the Advanced Blocks Tutorial already, this should be fimilar to you.

In order to register your item class, we need to create a mod, which is basically a class exendting ModBase:

public class TunnlerMod : ModBase
{
    
}

By overriding the Start(ICoreAPI) method, we can register our class. Remember if you have picked a different class name you have to use that one instead.

public class TunnlerMod : ModBase
{
    public override void Start(ICoreAPI api)
    {
        base.Start(api);
        api.RegisterItemClass("tunnler", typeof(TunnlerItem));
    }
}

This should be marked as a syntax error because there is no TunnlerItem class yet.

The Item Class

Let's create our item class itself which of course has to extend Item:

public class TunnlerItem : Item
{

}

This should solve all syntax errors.

So what should our tool do? Once the player mines a block with this tool every block around it should be mined as well. This is rather easy to implement by overriding the method void OnBlockBroken(IWorldAccessor world, IEntity byEntity, IItemSlot itemslot, BlockSelection blockSel).

We need to take care of the facing (which side the player is focusing) and if the player is in creative or survival mode (whether items should be dropped or not). Before we are going to override OnBlockBroken we should create a method which destroys all blocks between two block positions (min & max). It should also only drop items if the player is in survival mode:

public void destroyBlocks(IWorldAccessor world, BlockPos min, BlockPos max, IPlayer player)
{
    BlockPos tempPos = new BlockPos();
    for (int x = min.X; x <= max.X; x++)
    {
        for (int y = min.Y; y <= max.Y; y++)
        {
            for (int z = min.Z; z <= max.Z; z++)
            {
                tempPos.Set(x, y, z);
                if (player.WorldData.CurrentGameMode == EnumGameMode.Creative)
                    world.BlockAccessor.SetBlock(0, tempPos);
                else
                    world.BlockAccessor.BreakBlock(tempPos, player);
            }
        }
    }
}

Now we can implement OnBlockBroken rather easily, by taken care of every possible axis the player could face:

public override void OnBlockBroken(IWorldAccessor world, IEntity byEntity, IItemSlot itemslot, BlockSelection blockSel)
{
    base.OnBlockBroken(world, byEntity, itemslot, blockSel);
    if (byEntity is IEntityPlayer)
    {
        IPlayer player = world.PlayerByUid((byEntity as IEntityPlayer).PlayerUID);
        switch (blockSel.Face.Axis)
        {
            case EnumAxis.X:
                destroyBlocks(world, blockSel.Position.AddCopy(0, -1, -1), blockSel.Position.AddCopy(0, 1, 1), player);
                break;
            case EnumAxis.Y:
                destroyBlocks(world, blockSel.Position.AddCopy(-1, 0, -1), blockSel.Position.AddCopy(1, 0, 1), player);
                break;
            case EnumAxis.Z:
                destroyBlocks(world, blockSel.Position.AddCopy(-1, -1, 0), blockSel.Position.AddCopy(1, 1, 0), player);
                break;
        }
    }       
}



If you have done everything right, your file should look similar to this:

using Vintagestory.API.Common;
using Vintagestory.API.Common.Entities;
using Vintagestory.API.MathTools;

namespace ExampleMods
{
    public class TunnlerMod : ModBase
    {

        public override void Start(ICoreAPI api)
        {
            base.Start(api);
            api.RegisterItemClass("tunnler", typeof(TunnlerItem));
        }

    }

    public class TunnlerItem : Item
    {

        public void destroyBlocks(IWorldAccessor world, BlockPos min, BlockPos max, IPlayer player)
        {
            BlockPos tempPos = new BlockPos();
            for (int x = min.X; x <= max.X; x++)
            {
                for (int y = min.Y; y <= max.Y; y++)
                {
                    for (int z = min.Z; z <= max.Z; z++)
                    {
                        tempPos.Set(x, y, z);
                        if (player.WorldData.CurrentGameMode == EnumGameMode.Creative)
                            world.BlockAccessor.SetBlock(0, tempPos);
                        else
                            world.BlockAccessor.BreakBlock(tempPos, player);
                    }
                }
            }
        }

        public override void OnBlockBroken(IWorldAccessor world, IEntity byEntity, IItemSlot itemslot, BlockSelection blockSel)
        {
            base.OnBlockBroken(world, byEntity, itemslot, blockSel);
            if (byEntity is IEntityPlayer)
            {
                IPlayer player = world.PlayerByUid((byEntity as IEntityPlayer).PlayerUID);
                switch (blockSel.Face.Axis)
                {
                    case EnumAxis.X:
                        destroyBlocks(world, blockSel.Position.AddCopy(0, -1, -1), blockSel.Position.AddCopy(0, 1, 1), player);
                        break;
                    case EnumAxis.Y:
                        destroyBlocks(world, blockSel.Position.AddCopy(-1, 0, -1), blockSel.Position.AddCopy(1, 0, 1), player);
                        break;
                    case EnumAxis.Z:
                        destroyBlocks(world, blockSel.Position.AddCopy(-1, -1, 0), blockSel.Position.AddCopy(1, 1, 0), player);
                        break;
                }
            }       
        }

    }
}

You can also download the file directly: Tunnler.cs.

Testing

This is how it looks ingame:

Distribution

In order to finish your mod, you need to place your *.cs file in the zip archive. Once that is done you can share it with other people. It will work in the same way as ordinary mods, you can install it by copying it into the mods folder.

Here is the complete example mod: Tunnler.zip


Icon Sign.png

Wondering where some links have gone?
The modding navbox is going through some changes! Check out Navigation Box Updates for more info and help finding specific pages.