User Tools

Site Tools


tutorial:blockstate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
tutorial:blockstate [2022/03/20 14:01] – [Adding models for your blockstates] solidblocktutorial:blockstate [2023/06/04 10:38] – [A note about performance] fixed typos terra
Line 1: Line 1:
 ====== Giving a block state ====== ====== Giving a block state ======
-Every type of block in Minecraft is represented by a singular ''Block'' instance. +Every type of block in Minecraft is represented by a singular ''Block'' instance. This makes it impossible to change a specific block's state by simply changing the ''Block'' instance's state, as every other block of that type will be affected! But, what if you //do// want to give a singular block state, so it can change based on some condition? 
-This makes it impossible to change a specific block's state by simply changing the ''Block'' instance's state, + 
-as every other block of that type will be affected! +This is what ''BlockState''s are for. Say we wanted a block that can summon lightning, but only when charged up.   
-But, what if you //do// want to give a singular block state, so it can change based on some condition? +
-This is what ''BlockState''s are for.  +
-Say we wanted a block that can summon lightning, but only when charged up.   +
      
-First we define the boolean property of the block - whether or not it is charged (careful not to import the wrong BooleanProperty!):+First we define the boolean property of the block - whether or not it is charged (careful not to import the wrong ''BooleanProperty''), and register the block within the mod initializer. (If you directly register the block in the static field in the ''ChargeableBlock'' class, the mod initializer may totally ignore it if the class is not initialized.) 
 + 
 +In fact, you can also use existing properties defined in vanilla, which can be found in ''Properties'' (''net.minecraft.state.property.Properties''). If you intend to define other types of properties, you may use ''IntProperty'' or ''EnumProperty''.
 <code java> <code java>
 public class ChargeableBlock extends Block { public class ChargeableBlock extends Block {
     public static final BooleanProperty CHARGED = BooleanProperty.of("charged");     public static final BooleanProperty CHARGED = BooleanProperty.of("charged");
          
-    // The block instance. You can place it anywhere. +    // The block instance. You can place it anywhere. Make the class is initialized
-    public static final ChargeableBlock CHARGEABLE_BLOCK = Registry.register+    public static final ChargeableBlock CHARGEABLE_BLOCK = new ChargeableBlock(FabricBlockSettings.copyOf(Blocks.STONE)); 
-        Registry.BLOCK, +
-        new Identifier("tutorial", "chargeable_block"), +</code> 
-        new ChargeableBlock( /* write anything appropriate here */ ));+<code java> 
 +public class ExampleMod implements ModInitializer { 
 +    @Override 
 +    public void onInitialize() { 
 +        Registry.register(Registries.BLOCK, new Identifier("tutorial", "chargeable_block"), ChargeableBlock.CHARGEABLE_BLOCK); 
 +        Registry.register(Registries.ITEM, new Identifier("tutorial", "chargeable_block"), new BlockItem(ChargeableBlock.CHARGEABLE_BLOCK, new FabricItemSettings()); 
 +    }
 } }
 </code> </code>
Line 36: Line 41:
     public ChargeableBlock(Settings settings) {     public ChargeableBlock(Settings settings) {
         super(settings);         super(settings);
-        setDefaultState(getStateManager().getDefaultState().with(CHARGED, false));+        setDefaultState(getDefaultState().with(CHARGED, false));
     }     }
          
Line 112: Line 117:
  
 ==== A note about performance ==== ==== A note about performance ====
-Every possible state of a block is registered at the start of the game. This means that if you have 14 boolean properties, the block has 2^14 = 16384 different states and 2^14 states are registered. For this reason blocks should not contain too many blockstate properties. Rather, blockstates should be mostly reserved for visuals, and [[tutorial:blockentity|Block Entities]] should be used for more advanced state.+Every possible blockstate for a block is registered when the ''Block'' object is initialized. This means that if you have 14 boolean properties, the block has 2^14 = 16384 different states and 2^14 states are registered. For this reasonblocks should not contain too many blockstate properties. Rather, blockstates should be mostly reserved for visuals, and [[tutorial:blockentity|Block Entities]] should be used for more advanced state
 + 
 +As all possible states have been built, an equal state for a block is a same object, and the ''with'' method returns an existing object, instead of creating a new object - which means, for example, ''CHARGEABLE_BLOCK.getDefaultState().with(CHARGED, true) == CHARGEABLE_BLOCK.getDefaultState().with(CHARGED, true)'' returns ''true''.
tutorial/blockstate.txt · Last modified: 2023/11/18 08:13 by solidblock