aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/bscv/commands/BlockSearch.java
blob: 17d1fb018442216ee4fd011fc59847d878084561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package ftbsc.bscv.commands;

import com.google.auto.service.AutoService;
import com.mojang.brigadier.arguments.IntegerArgumentType;
import com.mojang.brigadier.builder.LiteralArgumentBuilder;

import ftbsc.bscv.api.ILoadable;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.command.CommandSource;
import net.minecraft.command.Commands;
import net.minecraft.command.arguments.BlockStateArgument;
import net.minecraft.command.arguments.BlockStateInput;

import static ftbsc.bscv.Boscovicino.log;

@AutoService(ILoadable.class)
public class BlockSearch extends AbstractCommand {

   @Override
   public String getName() { return "block"; }

   public LiteralArgumentBuilder<CommandSource> register(LiteralArgumentBuilder<CommandSource> builder) {
      return builder
         .then(
            Commands.literal("search")
               .then(
                  Commands.argument("id", IntegerArgumentType.integer(0))
                     .executes( ctx -> {
                        int block_id = ctx.getArgument("id", Integer.class);
                        int block_number = block_id >> 4;
                        int block_meta   = block_id & 0b1111;
                        BlockState state = Block.stateById(block_id);
                        log("block #[%d:%d]::%d >> %s", block_number, block_meta, block_id, state.toString());
                        return 1;
                     })
               )
               .then(
                  Commands.argument("number", IntegerArgumentType.integer(0))
                     .then(
                        Commands.argument("meta", IntegerArgumentType.integer(0))
                           .executes( ctx -> {
                              int block_number = ctx.getArgument("number", Integer.class);
                              int block_meta   = ctx.getArgument("meta", Integer.class);
                              int block_id = (block_number << 4) | block_meta;
                              BlockState state = Block.stateById(block_id);
                              log("block #[%d:%d]::%d >> %s", block_number, block_meta, block_id, state.toString());
                              return 1;
                           })
                     )
               )
         )
         .then(
            Commands.literal("id")
               .then(
                  Commands.argument("name", BlockStateArgument.block())
                     .executes( ctx -> {
                        BlockStateInput arg = ctx.getArgument("name", BlockStateInput.class);
                        BlockState state = arg.getState();
                        int block_id = Block.getId(state);
                        log("block #[%d:%d] >> %s", block_id >> 4, block_id & 0xF, state.toString());
                        return 1;
                     })
               )
         )
         .executes(ctx -> {
            log("no block specified");
            return 0;
         });
   }

}