Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

How can I get a block from a String?

 

Example:

String config = "minecraft:water;minecraft:grass;biomesoplenty:gem_block:7;ore:logWood";

 

I tried:

	public static List<ItemStack> getBlockConfig(String config) {
		System.out.println(config);
		List<ItemStack> allBlocks = new ArrayList<Integer>();
		String[] blockList = config.split(";");
		if(!(blockList.length <= 0)) {
			for(String block : blockList) {
				if(block.startsWith("ore:")) {
					String[] split = block.split(":");
					allBlocks.addAll(getBlockListFromOredict(split[1]));
				} else {
					String[] split = block.split(":");
					if(split.length > 2) {
						ItemStack blockItem = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]), 1, Integer.parseInt(split[2]));
						allBlocks.add(blockItem);
					} else if(split.length == 2){
						ItemStack blockItem = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]));
						allBlocks.add(blockItem);
					}
				}
			}
		}
		return allBlocks;
	}	

 

But for blocks like water & flowers, it returns Air.

Tried using blockstate, but it don't work with oredict, because crashs in logWood using .getStateFromMeta.

 

Crash:

Quote

Caused by: java.lang.IllegalArgumentException: Cannot set property PropertyEnum{name=variant, clazz=class net.minecraft.block.BlockPlanks$EnumType, values=[acacia, dark_oak]} to oak on block minecraft:log2, it is not an allowed value
    at net.minecraft.block.state.BlockStateContainer$StateImplementation.withProperty(BlockStateContainer.java:233)
    at net.minecraft.block.BlockNewLog.getStateFromMeta(BlockNewLog.java:74)
    at com.focamacho.mysticaladaptations.util.BlockCheck.getStateListFromOredict(BlockCheck.java:190)
    at com.focamacho.mysticaladaptations.util.BlockCheck.getBlockConfig(BlockCheck.java:168)
    at com.focamacho.mysticaladaptations.util.BlockCheck.<clinit>(BlockCheck.java:22)
    ... 48 more


I need a list of blocks defined in the configuration file, for comparison with a Right-Clicked block.

Well, there are two logs: "minecraft:log" and "minecraft:log2"

One of them is oak, spruce, jungle, and birch, the other is acacia and dark oak. You're trying to set log2 to oak, which is not an allowed variant.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author

How should I do it?

	public static List<IBlockState> getBlockListFromOredict(String ore) {
		List<IBlockState> oreBlocks = new ArrayList<IBlockState>();
		List<ItemStack> oreItems = OreDictionary.getOres(ore);
		for(ItemStack item : oreItems) {
			oreBlocks.add(Block.getBlockFromItem(item.getItem()).getStateFromMeta(item.getMetadata());
		}
		return oreBlocks;
	}

 

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

  • Author

There's no BlockStateArgument.

I'm using 1.12.2 - 14.23.5.2768

Edited by Focamacho

  • Author

This code only crashs with ore:logWood 

	public static List<IBlockState> getBlockListFromOredict(String ore) {
		List<IBlockState> oreBlocks = new ArrayList<IBlockState>();
		List<ItemStack> oreItems = OreDictionary.getOres(ore);
		for(ItemStack item : oreItems) {
			oreBlocks.add(Block.getBlockFromItem(item.getItem()).getStateFromMeta(item.getMetadata());
		}
		return oreBlocks;
	}
  • Author

I'm trying to get a list of blocks from a configuration file, using a String:

water_seeds = config.get(category, "water_seeds", "minecraft:water").getString();
wood_seeds = config.get(category, "wood_seeds", "ore:logWood").getString();

 

BlockCheck.java

public static final List<ItemStack> Water = getBlockConfig(ModConfig.water_seeds);
public static final List<ItemStack> Wood = getBlockConfig(ModConfig.wood_seeds);
  
public static List<ItemStack> getBlockConfig(String config) {
		List<ItemStack> allBlocks = new ArrayList<ItemStack>();
		String[] blockList = config.split(";");
		if(!(blockList.length <= 0)) {
			for(String block : blockList) {
				if(block.startsWith("ore:")) {
					String[] split = block.split(":");
					allBlocks.addAll(getBlockListFromOredict(split[1]));
				} else {
					String[] split = block.split(":");
					if(split.length > 2) {
						ItemStack blockA = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]), 1, Integer.parseInt(split[2]));
						allBlocks.add(blockA);
					} else if(split.length == 2){
						ItemStack blockA = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]));
						allBlocks.add(blockA);
					}
				}
			}
		}
		return allBlocks;
	}
	
	public static List<ItemStack> getBlockListFromOredict(String ore) {
		List<ItemStack> oreItems = OreDictionary.getOres(ore);
		return oreItems;
	}

 

But, when I create a ItemStack from things like "minecraft:water" or "minecraft:lava" it returns a tile.air:

Quote

[12:25:10] [main/INFO] [STDOUT]: [com.focamacho.mysticaladaptations.util.BlockCheck:getBlockConfig:186]: minecraft:water itemstack: 1xtile.air@0

[12:25:10] [main/INFO] [STDOUT]: [com.focamacho.mysticaladaptations.util.BlockCheck:getBlockConfig:186]: minecraft:lava itemstack: 1xtile.air@0:

 

And I need use the List<ItemStack> to compare a right-clicked block with the blocks in the list.

SeedExtractor.java

	       	........
			ItemStack blockItem = iblockstate.getBlock().getPickBlock(iblockstate, raytraceresult, worldIn, pos, player);
	       	if(player.canPlayerEdit(pos, raytraceresult.sideHit, itemstack)) {
				if(checkBlockAndTier(itemstack, blockItem, BlockCheck.Wood, Type.WOOD)) seed = returnSeedItem(Type.WOOD);
				else if(checkBlockAndTier(itemstack, blockItem, BlockCheck.Water, Type.WATER)) seed = returnSeedItem(Type.WATER);
				else if(checkBlockAndTier(itemstack, blockItem, BlockCheck.Fire, Type.FIRE)) seed = returnSeedItem(Type.FIRE);
			........


	public boolean checkBlockAndTier(ItemStack extractor, ItemStack block, List<ItemStack> blockList, CropType.Type seed) {
		if(checkBlock(block, blockList) && verifyTier(seed, extractor) && seed.isEnabled()) return true;
		else return false;
	}
      
	public boolean checkBlock(ItemStack block, List<ItemStack> blockList) {
		if(blockList == null || blockList.isEmpty()) return false;
		else {
			for(ItemStack b : blockList) {
				if(OreDictionary.itemMatches(b, block, true)) {
					return true;
				}
			}
		}
		return false;
	}

 

to result in this:

cF8Cjbz.gif

 

 

Edited by Focamacho

  • Author

I'm using 1.12.2. I found a way to fix my problem, I don't know if it's the best way, but it works.

I create a new List<Block> for each seed, and get his values using:

	public static List<Block> getBlockConfig2(String config) {
		List<Block> allBlocks = new ArrayList<Block>();
		String[] blockList = config.split(";");
		if(!(blockList.length <= 0)) {
			for(String block : blockList) {
				if(block.startsWith("ore:")) {
					//nothing
				} else {
					String[] split = block.split(":");
					if(split.length > 2) {
						ItemStack blockA = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]), 1, Integer.parseInt(split[2]));
						if(blockA.getItem() == Items.AIR) {
							Block blockB = Block.getBlockFromName(split[0] + ":" + split[1]);
							if(blockB != null) {
								allBlocks.add(blockB);
							}
						}
					} else if(split.length == 2){
						ItemStack blockA = new ItemStack(Item.getByNameOrId(split[0] + ":" + split[1]));
						if(blockA.getItem() == Items.AIR) {
							Block blockB = Block.getBlockFromName(split[0] + ":" + split[1]);
							if(blockB != null) {
								allBlocks.add(blockB);
							}
						}
					}
				}
			}
		}
		return allBlocks;
	}

 

https://github.com/Focamacho/MysticalAdaptations/commit/f4f233d76ce057ba79b10379c571cc62cfe18522

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.