Jump to content

Invisible blocks bug


Vinz243

Recommended Posts

Hi,

 

I'm trying to make a mod, and I added it to my server (with a dozen others). It doesn't change the logic or modify the world except after using a command where it will repeatedly call World.setBlock

 

Problem is, after disabling the logic some blocks are invisible. Like at  some places the server knows there is this block but  I can't see it and when I try and put a block in its place (since my client thinks it's air), either :

- the new block turns to the invisible one

- I can't put the block

- I can palce it and it won't change,  but destroying it will leave the ghost block again

 

There are some ghost blocks which will block me, other not.

 

Using worldedit, I can //set 0 and it works, no more bug but I can't do it for all the ghosts. Using //distr shows me it's for example andesite (when I still see air).

 

Only restarting the server has any effect.

 

I was wondering if I was missing something, like a method to synchronize the model with the view.

 

I'm sorry if this is not really detailed, but there is not a lot more code to it, without dropping everything here.


Thanks in advance

 

EDIT: oddly enough, when I restart the server the ghosts blocks are now visible and it turns out that said blocks where built after deactivating my logic. Which would leave me to think it's not an issue with my mod, but I never encountered that before.

 

Edited by Vinz243
Link to comment
Share on other sites

Well I'd have a better idea if I saw the code, but it sounds to me like the server itself is changing the blocks, but not sending the updated block data to the clients.  I know there's a method that does that somewhere (but I've never needed it so don't know where)...maybe it's not getting called correctly.

 

I found this bit of code in one of @Draco18s's examples, which may or may not be helpful to you (and now that I pinged him, he can probably tell you whether it will, if he's not busy):

private void sendUpdates()
{
	worldObj.markBlockRangeForRenderUpdate(pos, pos);
	worldObj.notifyBlockUpdate(pos, getState(), getState(), 3);
	worldObj.scheduleBlockUpdate(pos,this.getBlockType(),0,0);
	markDirty();
}

And here is a link to the full example

https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/farming/entities/TileEntityTanner.java#L94

 

Edit 1 ===================================================

By the way, if it's what I suspect, then having a client log off and on to the server should (temporarily) fix the invisible blocks.  I would also think that if the client moves far enough away for the chunks to unload and comes back, that would probably also (temporarily) fix the blocks.  If neither of those (temporarily) fix the blocks, then you may be looking at some other issue which I cannot fathom.

Edited by Laike_Endaril
Link to comment
Share on other sites

Well this piece of code is interesting, even though I tried again and the same issue arise, and again I needed to restart server.

 

I will try this code, even though it's true that if this was what I was missing leaving and joining back should solve the issue.


The code is fully available here if you have time to take a look https://github.com/vinz243/chiseledit/tree/0832065331c0b1ed723180153aa94bfa947ddec8 (keep this commit, after the code has totally changed)

 

The main logic is in https://github.com/vinz243/chiseledit/blob/0832065331c0b1ed723180153aa94bfa947ddec8/src/main/java/org/vinz243/chiseledit/tesa/TessellatorContainer.java

 

EDIT: it may be that when devoluting/revoluting a block (placing it three times around an axis), every  block replicated will call the event again and then fire another revolution ? This might be a source of issue but I hardly see how it would cause this one. But how would it know the player who placed it (which is required for the event).

Edited by Vinz243
Link to comment
Share on other sites

Unfortunately I think actually working on your existing code is beyond me; I'd probably have to mess with it for days just to acclimate with that much code, since I'm not used to forge modding yet.

 

Not sure if you're right about the devolution/revolution thing, because if every call to a method recursively calls itself, you're going to crash fast (unless there are some conditions to break the cycle?).  Maybe I misunderstood though.

 

But I really do think your issue lies solely in the server not sending the client the new blocks, I just don't have enough experience with minecraft/forge modding to point at a spot in your code.  I suppose one thing to keep in mind is that the client doesn't "clear" blocks (set them to air) automagically either, so your server is telling the client that the blocks are air (or possibly null, though I would assume that would cause larger issues if it were the case), but that may just be a little submethod on the backend somewhere when you're eg. replacing a block with another or something.

 

All this is just conjecture and possibly superstition, so take it with a grain of salt.  Good luck!

Link to comment
Share on other sites

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I am not using hardcoded recipes, I'm using Vanilla's already existing code for leather armor dying. (via extending and implementing DyeableArmorItem / DyeableLeatherItem respectively) I have actually figured out that it's something to do with registering item colors to the ItemColors instance, but I'm trying to figure out where exactly in my mod's code I would be placing a call to the required event handler. Unfortunately the tutorial is criminally undescriptive. The most I've found is that it has to be done during client initialization. I'm currently trying to do the necessary setup via hijacking the item registry since trying to modify the item classes directly (via using SubscribeEvent in the item's constructor didn't work. Class so far: // mrrp mrow - mcmod item painter v1.0 - catzrule ch package catzadvitems.init; import net.minecraft.client.color.item.ItemColors; import net.minecraft.world.item.Item; import net.minecraftforge.registries.ObjectHolder; import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.client.event.ColorHandlerEvent; import catzadvitems.item.DyeableWoolArmorItem; @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD) public class Painter { @ObjectHolder("cai:dyeable_wool_chestplate") public static final Item W_CHEST = null; @ObjectHolder("cai:dyeable_wool_leggings") public static final Item W_LEGS = null; @ObjectHolder("cai:dyeable_wool_boots") public static final Item W_SOCKS = null; public Painter() { // left blank, idk if forge throws a fit if constructors are missing, not taking the chance of it happening. } @SubscribeEvent public static void init(FMLClientSetupEvent event) { new Painter(); } @Mod.EventBusSubscriber private static class ForgeBusEvents { @SubscribeEvent public static void registerItemColors(ColorHandlerEvent.Item event) { ItemColors col = event.getItemColors(); col.register(DyeableUnderArmorItem::getItemDyedColor, W_CHEST, W_LEGS, W_SOCKS); //placeholder for other dye-able items here later.. } } } (for those wondering, i couldn't think of a creative wool helmet name)
    • nvm found out it was because i had create h and not f
    • Maybe there's something happening in the 'leather armor + dye' recipe itself that would be updating the held item texture?
    • @SubscribeEvent public static void onRenderPlayer(RenderPlayerEvent.Pre e) { e.setCanceled(true); model.renderToBuffer(e.getPoseStack(), pBuffer, e.getPackedLight(), 0f, 0f, 0f, 0f, 0f); //ToaPlayerRenderer.render(); } Since getting the render method from a separate class is proving to be bit of a brick wall for me (but seems to be the solution in older versions of minecraft/forge) I've decided to try and pursue using the renderToBuffer method directly from the model itself. I've tried this route before but can't figure out what variables to feed it for the vertexConsumer and still can't seem to figure it out; if this is even a path to pursue.  The vanilla model files do not include any form of render methods, and seem to be fully constructed from their layer definitions? Their renderer files seem to take their layers which are used by the render method in the vanilla MobRenderer class. But for modded entities we @Override this function and don't have to feed the method variables because of that? I assume that the render method in the extended renderer takes the layer definitions from the renderer classes which take those from the model files. Or maybe instead of trying to use a render method I should be calling the super from the renderer like   new ToaPlayerRenderer(context, false); Except I'm not sure what I would provide for context? There's a context method in the vanilla EntityRendererProvider class which doesn't look especially helpful. I've been trying something like <e.getEntity(), model<e.getEntity()>> since that generally seems to be what is provided to the renderers for context, but I don't know if it's THE context I'm looking for? Especially since the method being called doesn't want to take this or variations of this.   In short; I feel like I'm super super close but I have to be missing something obvious? Maybe this insane inane ramble post will provide some insight into this puzzle?
  • Topics

×
×
  • Create New...

Important Information

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