All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sk89q.worldedit.cli.CLIBlockRegistry Maven / Gradle / Ivy

Go to download

Blazingly fast Minecraft world manipulation for artists, builders and everyone else.

The newest version!
/*
 * WorldEdit, a Minecraft world manipulation toolkit
 * Copyright (C) sk89q 
 * Copyright (C) WorldEdit team and contributors
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package com.sk89q.worldedit.cli;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.sk89q.worldedit.cli.data.FileRegistries;
import com.sk89q.worldedit.registry.state.BooleanProperty;
import com.sk89q.worldedit.registry.state.DirectionalProperty;
import com.sk89q.worldedit.registry.state.EnumProperty;
import com.sk89q.worldedit.registry.state.IntegerProperty;
import com.sk89q.worldedit.registry.state.Property;
import com.sk89q.worldedit.util.Direction;
import com.sk89q.worldedit.world.block.BlockType;
import com.sk89q.worldedit.world.registry.BundledBlockRegistry;

import javax.annotation.Nullable;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

public class CLIBlockRegistry extends BundledBlockRegistry {

    private Property createProperty(String type, String key, List values) {
        switch (type) {
            case "int": {
                List fixedValues = values.stream().map(Integer::parseInt).collect(Collectors.toList());
                return new IntegerProperty(key, fixedValues);
            }
            case "bool": {
                List fixedValues = values.stream().map(Boolean::parseBoolean).collect(Collectors.toList());
                return new BooleanProperty(key, fixedValues);
            }
            case "enum": {
                return new EnumProperty(key, values);
            }
            case "direction": {
                List fixedValues = values
                        .stream()
                        .map(String::toUpperCase)
                        .map(Direction::valueOf)
                        .collect(Collectors.toList());
                return new DirectionalProperty(key, fixedValues);
            }
            default:
                throw new RuntimeException("Failed to create property");
        }
    }

    @Nullable
    @Override
    public Map> getProperties(BlockType blockType) {
        Map properties =
                CLIWorldEdit.inst.getFileRegistries().getDataFile().blocks.get(blockType.id()).properties;
        Maps.EntryTransformer> entryTransform =
                (key, value) -> createProperty(value.type, key, value.values);
        return ImmutableMap.copyOf(Maps.transformEntries(properties, entryTransform));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy