Jump to content

[1.13.2] converting mod from 1.12.2 How to fix the errors?


Recommended Posts

Posted (edited)

I now setup a workspace for the newest version (1.13.2).

then i replaced the example-stuff in the src-folder there with the java files and resurces of my mod (i replaced the whole content of that folder).

But now it shows more than 1000 java-errors in the console.

Most of them are from the type "[name] cannot be resolved".

In my previous 1.12.2 workspace i had no errors and could run a minecraft-instance and use my mod in there.

 

Did i use a wrong way to get my stuff into a workspace for 1.13.2

Edited by Drachenbauer
Posted

Delete all your imports and reimport them with your IDE.

Some tips:

  Reveal hidden contents

 

Posted

Send a screenshot.

 

Also specify "[name]".

Some tips:

  Reveal hidden contents

 

Posted (edited)

the thing with the missing Javadoc

pops up, if i hover the mouse over my imports.

But it seems like the errors in my code don´t belong to this.

 

Theese are my errors:

  Reveal hidden contents

 

And this are the Java-files, where the errors are in:

 

This is my Bockbase

  Reveal hidden contents

 

 

This is one of my blocks, the others are very similar, just other vaules in some of their propertys

  Reveal hidden contents

 

My EntityInit:

  Reveal hidden contents

Here it doesn´t any more know "EntityRegistry".

How do i now register my entitys with theese propertys (name, eggcolors, id, ...)?

  Reveal hidden contents

Here it doesn´t any more know "registerItemRenderer".

 

This is where i create my list of custom blocks:

  Reveal hidden contents

 

Edited by Drachenbauer
Posted (edited)

Don't expect your 1.12.2 code to work in 1.13 without issues, there have been major changes. For example let's look at your block class:

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

setSoundType(SoundType.CLOTH);

setHardness(0.1f);

setResistance(0.5f);

Expand  

All of these are now set through the Block.Properties passed to the constructor. As they are now final their setters are gone.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

@Override

public AxisAlignedBB getBoundingBox (IBlockState state, IBlockAccess source, BlockPos pos)

{

    return BALLOON_BLOCK_AABB;

}

 

@Nullable

@Override

public AxisAlignedBB getCollisionBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)

{

    return BALLOON_BLOCK_AABB;

}

Expand  

These are now controlled by the new VoxelShape class and thus the methods you need are Block#getShape and Block#getCollisionShape. To create custom simple VoxelShape instances use Block.makeCuboidShape.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

@Override

protected BlockStateContainer createBlockState()

{

    return new BlockStateContainer(this, new IProperty[] { FACING});

}

Expand  

BlockStateContainer isn't constructed manually anymore. Override Block#fillStateContainer and append your properties to the builder.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

public IBlockState getStateFromMeta(int meta)

{

    return this.getDefaultState().withProperty(FACING, EnumFacing.getHorizontal(meta));

}

 

public int getMetaFromState(IBlockState state)

{

    return ((EnumFacing) state.getValue(FACING)).getHorizontalIndex();

}

Expand  

Metadata doesn't exist in 1.13 thus these are completely pointless.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

Here it doesn´t any more know "EntityRegistry".

 

Expand  

EntityRegistry is thankfully finally gone and replaced by the registry events(to be fair it was replaced in 1.12 too). Construct and register EntityType instances in the appropriate registry events.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

Here it doesn´t any more know "registerItemRenderer".

 

Expand  

For now models for items are registered automatically so the stupid IHasModel can finally rest in pieces. You don't need to register your models manually anymore. As for the more complex models the api isn't done yet I suspect.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

This is where i create my list of custom blocks:

  Reveal hidden contents
Expand  

Don't. Instantinate your stuff in the appropriate registry events, not in a static initializer. 

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

It has no errors, but i don´t know, what i should use for the "null" at the end of the lines...

 

Expand  

These are block properties like hardness, sound, etc. See how vanilla constructs them in the Block class.

 

Give me a bit of time and I will post a detailed response to your error list.

Edited by V0idWa1k3r
Posted
  On 2/17/2019 at 12:21 PM, Drachenbauer said:

blockState cannot be resolved or is not a field

Expand  

Block.blockState is now Block.stateContainer.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

BlockStateContainer cannot be resolved to a type

Expand  

As stated in my previous reply this is done through a builder now.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

CreativeTabs cannot be resolved to a variable

Expand  

CreativeTabs is now called ItemGroup.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

EntityRegistry cannot be resolved

Expand  

As stated in my previous reply EntityRegistry is gone.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

FACING cannot be resolved or is not a field

Expand  

I don't know where you were importing FACING from but you can get all vanilla blockstate properties from the BlockStateProperties class.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

IBlockAccess cannot be resolved to a type

Expand  

Instead of a single IBlockAccess there are now a lot of various interfaces that the world implements. I don't know which methods of yours needed the IBlockAccess so I can't tell for sure what it needs now but I suspect it needs a IBlockReader.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

Instance cannot be resolved or is not a field

Expand  

As far as I can tell from your code that points into your main mod class so you've removed that field yourself.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

IProperty cannot be resolved to a type

Expand  

As stated above this is done through a builder now. Also that syntax was never needed in the first place.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

PropertyDirection cannot be resolved to a type

Expand  

PropertyDirection is now DirectionProperty.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

proxy cannot be resolved or is not a field

Expand  

Again, that points towards your main mod class, you've removed the field yourself but left the reference.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The constructor BlockStateContainer(BalloonBlock, IProperty[]) is undefined

Expand  

As stated above this is done through a builder now. 

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The import net.minecraft.world.IBlockAccess cannot be resolved

Expand  

Instead of a single IBlockAccess there are now a lot of various interfaces that the world implements. I don't know which methods of yours needed the IBlockAccess so I can't tell for sure what it needs now but I suspect it needs a IBlockReader.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method createBlockState() of type BalloonBlock must override or implement a supertype method  

Expand  

As stated in my previous reply this is now done through Block#fillStateContainer

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method getHorizontal(int) is undefined for the type EnumFacing

Expand  

Since metadata is now gone those helper methods to convert to and from metadata are gone too.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method getValue(DirectionProperty) is undefined for the type IBlockState

Expand  

IBlockState#getValue is now IBlockState#get.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method isOpaqueCube(IBlockState) of type EggBlock must override or implement a supertype method  

Expand  

Block#isOpaqueCube is now controlled through it's VoxelShape returned by Block#getRenderShape and simply checks if the given shape is a full cube. It will also return false if Block#isSolid returns false.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method setHardness(float) is undefined for the type BalloonBlock 

Expand  

Since hardness is now final the setters are gone, use Block.Properties passed to the constructor to control it.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method setResistance(float) is undefined for the type BalloonBlock

Expand  

Same here.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method setSoundType(SoundType) is undefined for the type BalloonBlock

Expand  

And same here too.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method setUnlocalizedName(String) is undefined for the type BlockBase 

Expand  

Unlocalized names are now gone. Instead they are controlled by Block#getTranslationKey which uses the registry name (block.REGISTRY_NAME). This is done for you automatically, you don't need to set anything.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method withProperty(DirectionProperty, EnumFacing) is undefined for the type IBlockState 

Expand  

IBlockState#withProperty is now IBlockState#with.

 

  On 2/17/2019 at 12:21 PM, Drachenbauer said:

The method getItemFromBlock(Block) from the type Item is deprecated

Expand  

I don't know what you were using this for but be wary of an ongoing issue:

https://github.com/MinecraftForge/MinecraftForge/issues/5470

  • Like 1
Posted (edited)

Can you write, what exactly the registration of entitys (with all theese propertys) now have to look like and where in the blocks exactly i have to use Block#getShape and Block#getCollisionShape?

 

It does not help me, jyut to say, what i have to use, if it´s not a directly replacement of another word.

 

I need working examples to see, where and how i have to use some of the stuff, you told me.

Edited by Drachenbauer
Posted
  On 2/17/2019 at 1:53 PM, Drachenbauer said:

where in the blocks exactly i have to use Block#getShape and Block#getCollisionShape?

Expand  

These are methods, you override them just as you would with any other method.

 

  On 2/17/2019 at 1:53 PM, Drachenbauer said:

what exactly the registration of entitys (with all theese propertys) now have to look like

Expand  
//In your registry event
event.getRegistry().register(EntityType.Builder.create(YourEntityClass.class, YourEntityClass::new).tracker(range, frequency, sendvelocity).build("modid:name"));

 

Posted
  On 2/17/2019 at 2:35 PM, Drachenbauer said:

for register entitys i need more surrounding, that i see, where in the registry event i haveto place this

 

Expand  

It's a registry event. You are already using these for your blocks and items, and there is one for entities too.

  On 2/17/2019 at 2:35 PM, Drachenbauer said:

 do i need to add one for each entity, i want to register?

 

Expand  

If you are talking about events then no, you don't.

 

  On 2/17/2019 at 2:35 PM, Drachenbauer said:

 And where to place the egg-colors?

Expand  

Since the flattening each egg is now it's own item. So you just register a new instance of ItemSpawnEgg in your item registry event. They do need the EntityType in their constructor though so I guess you'll have to instantinate them in the item registry event too, but register in their registry event. Just store them in a field(don't instantinate them in that field though). The other two parameters are the colours of the egg.

Posted (edited)

i get errors, if i do this in my registry events:

@SubscribeEvent
		public static void registerEntities(final RegistryEvent.Register<Entity> event)
		{
			event.getRegistry().register(EntityType.Builder.create(YourEntityClass.class, YourEntityClass::new).tracker(range, frequency, sendvelocity).build("modid:name"));
			LOGGER.info("Entities registered.");
		}

i copyed the registerBlocks thing and changed everywhere "Block" into "Entity"

and than i pasted the line, you told me as the right event-line-look

it has a problem with the blue written word "Entity" (i imported it, but it does not help) and with some stuff in the line, you told me to take

Edited by Drachenbauer
Posted
  On 2/17/2019 at 2:52 PM, Drachenbauer said:

RegistryEvent.Register<Entity>

Expand  

Entity is not a RegistryEntry thus it can't be used as a parameter for the registry event. use EntityType.

 

  On 2/17/2019 at 2:52 PM, Drachenbauer said:

and than i pasted the line, you told me as the right event-line-look

 

Expand  

Well obviously you don't just copy-paste my explanatory-example line. Replace the placeholder variable names with what you actually need.

Posted (edited)

if i replace "Entity" with "EntityType" it still has problems with that

And i thaught, because i need only one of your line, there must be placeholders, that i can replace them with the specific parameters of each of my entitys later in another location.

 

can you just show me a whole registry-event area with block, item and entity - events correctly added

Edited by Drachenbauer
Posted

Which of the substitutions don’t you know the value of?

About Me

  Reveal hidden contents

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)

Posted

You could put that code in a method, or write it out for every entity

About Me

  Reveal hidden contents

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)

Posted

Take the code, and put it in a method, substituting the variables for parameters. If you need more help, google “java method”

About Me

  Reveal hidden contents

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)

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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