Jump to content

Return on Server/Client


American2050

Recommended Posts

Few questions about the return for methods (Example: onBlockActivated) on the Block class.

 

Should we always return the same boolean server and Client side? If no, what would be exceptions to this.

 

Also. When we do need to return the same boolean both sides, what's the best way to do it, when some of our code should run only Server side?

 

Example: onBlockActivated and under certain conditions the method will spawn items (Entities) on the world, thing that should happen only Server side.

 

I do the conditions check on both sides, then I wrap my spawn entities on server side only and then outside this I return true?

 

Link to comment
Share on other sites

1 minute ago, American2050 said:

I do the conditions check on both sides, then I wrap my spawn entities on server side only and then outside this I return true?

Do it the other way around. Check if you're on server and then check the conditions.

 

Frankly it can be hard to know which methods run and return valid values on each side unless you trace it. If you have a couple methods you are specifically concerned about, just use the debugger or some console print statements to confirm. In the console statements it will tell you if it is running on the server or client ("main" thread).

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

1 minute ago, jabelar said:

Do it the other way around. Check if you're on server and then check the conditions.

 

Frankly it can be hard to know which methods run and return valid values on each side unless you trace it. If you have a couple methods you are specifically concerned about, just use the debugger or some console print statements to confirm. In the console statements it will tell you if it is running on the server or client ("main" thread).

 

But if I do the conditions check, only server side, how do I know client side if the conditions check on server triggered some action or not so I can return same boolean both sides?

Link to comment
Share on other sites

Just now, American2050 said:

 

But if I do the conditions check, only server side, how do I know client side if the conditions check on server triggered some action or not so I can return same boolean both sides?

What are you trying to do? Are you making custom blocks and worried about where the results will be used? Or are you using methods from blocks and wanting to make sure they lead to result you want?

 

Generally, if you're writing a method for custom blocks you should have it return the logically correct value. You shouldn't worry about which side it will be used.

 

Remember, the reason any game logic runs on the client is because the client needs to predict what the server will do. So best is to make sure client gets same values as server. Then if the client does use that method it gets the right value, and if it doesn't use the method then who cares?

 

In what case would you want the client to get a result that doesn't match the server?

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

Well I noticed in this case, when I right click on a block and the server does nothing, then the block I have in my hand gets placed next to my block, when I right click with other conditions, like holding a panel (an item) that goes into my block, everything is working correctly.

 

However, and as I'm doing like the Vanilla Furnace does and I check if world is client side, return true (100% the time) I notice that, when a block is placed, it doesn't plays the sound of a block been placed

 

Vanilla doesn't worry about it, because a right click on a furnace will always open a gui, but that's not the case for my block.

 

Quote

In what case would you want the client to get a result that doesn't match the server?

 

PS: That's what I was asking, I guess one case would be when I want something to happen on the block, but I don't want the player "swing" the hand? Isn't that one of the things that returning true client side in that method handles? it makes the player swing the hand, and maybe other stuff?

Link to comment
Share on other sites

Okay, that is an interesting situation. You basically want some of the vanilla block interaction but not all of it.

 

In this case I would recommend handling the RightClickBlock event and handling the case of your block (and cancel the event to avoid the further processing). On the client you would not return the SUCCESS since that would cause the arm swing, but on the server you would.

 

I think you can make that work, but still might be a bit tricky. Normally you don't use events on your own things, but in this case it does seem the best way to intercept the vanilla behavior.

Edited by jabelar

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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

    • Hello, I was trying to play a MOD in my preferred language, but I see that only some items are translated, and I go to debug and I get this information (the only thing that is translated is the bestiary):   [14sep.2024 17:14:36.415] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: mowziesmobs:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 394 column 2 path $.config.mowziesmobs.ice_crystal_attack_multiplier) [14sep.2024 17:14:36.421] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: iceandfire:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 1349 column 4 path $.iceandfire.sound.subtitle.dragonflute)   Is that the reason why everything is not translated? , and is there any way to fix it? Thanks
    • I got my model to render from the models renderToBuffer method. But still not quite what I want. I want to render the model from my renderer's render method. I feel that having access to the renderer and its methods will open some doors for me later down the line. //EntityRendererProvider.Context pContext = ; I want this //ToaPlayerRenderer render = new ToaPlayerRenderer(pContext, false); // if I can get the above line to work, having the methods from the renderer class would be incredibly helpful down the line RenderType rendertype = model.renderType(p.getSkinTextureLocation()); // this should be something like render.getTextureLocation() VertexConsumer vertexconsumer = buffer.getBuffer(rendertype); model.renderToBuffer(stack, vertexconsumer, paLights, 1, 1, 1, 1, 1); // I don't want the render to happen here since it doesn't use the renderer //model.render(p, 1f, pTicks, stack, buffer, paLights); I want to render the model using this It is certainly getting closer though. Probably. I am still worried that even if pContext is initialized this new instance of the renderer class will still hit me with the classic and all too familiar "can't use static method in non-static context"
    • Hello, I am learning how to create Multipart Entities and I tried creating a PartEntity based on the EnderDragonPart code. However, when I tested summoning the entity in the game, the PartEntity appeared at position x 0, y 0, z 0 within the game. I tried to make it follow the main entity, and after testing again, the part entity followed the main entity but seemed to teleport back to x 0, y 0, z 0 every tick (I'm just guessing). I don't know how to fix this can someone help me? My github https://github.com/SteveKK666/Forge-NewWorld-1.20.1/tree/master/src/main/java/net/kk/newworldmod/entity/custom Illustration  https://drive.google.com/file/d/157SPvyQCE8GcsRXyQQkD4Dyhalz6LjBn/view?usp=drive_link Sorry for my English; I’m not very good at it. 
    • its still crashing with the same message
  • Topics

×
×
  • Create New...

Important Information

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