Jump to content

Recommended Posts

Posted

In 1.2.5 i made a GUI to change settings in my tileEntity. It worked 100% fine saving and recalling the data when i closed/reopened the gui and restart the game. In 1.3.1 it open just fine, i can change the settings, and they keep as long as i do not restart the game. Which i think has too do with the tileEntity not getting the varables client side. I've set up a packet system but can't really tell if its working. I'm going to keep toying with it till i get it working but just in case i don't can someone check out my code and see what is wrong.

Edit: toyed with it more found the data is making its way to the client but all messed up. However the GUI itself doesn't seem to be saving the data to the server side/keeps vars on client. Which i think i can fix with a packet to the server. Though there is now an issue with the packet data getting all messed up. instead of the 8 separate ints getting assigned to there own varables there merging together.

Pic of GUI

 

BarrackSettings.png

 

 

Code is on gitHub easier to read than to post here gitHub

Posted

Not going to dig through all of your code, so linking to specific files would help.

But I dont get the 'merging together' part, seems to me like you're fucking something up if things are getting merged together.

its not difficult to transfer something over the network and pick it up on the other side.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Not going to dig through all of your code, so linking to specific files would help.

But I dont get the 'merging together' part, seems to me like you're fucking something up if things are getting merged together.

its not difficult to transfer something over the network and pick it up on the other side.

found the issue with the vars merging, end up too do something with writing the int to dataStream as a double. which i don't understand why it cause the variables to start to merge together but telling to write as an int fix that issue. Also by merge i meant there should be 8 vars for example 37xA 15yA 100zA  48xT 45yT 113zT 13W 10C. what i was getting was 3715100xA 0yA 1001527zA 0W 0C.

 

to fix the not saving on restart what i think i need to do is send a packet with the new info too the server. However, i don't know how to send a packet too the local server.

 

Here is the code just involving the tileEntity and gui

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/common/GSM/barrack/TileEntityBarrack.java

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/common/GSM/Network/PacketManager.java

changing line 78 on the above fixed the merge issue

https://github.com/DarkGuardsman/GSM-Guardsman/blob/master/1.3.1/minecraft/GSMClient/GuiBarrackSettings.java

Posted

Im pretty sure FML/ML expose a sendPacket fucntion.

As for sending as Double and reading as a int, well no shit that wont work u.u

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Im pretty sure FML/ML expose a sendPacket fucntion.

As for sending as Double and reading as a int, well no shit that wont work u.u

Just do a cast.

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Posted

Right.. thats retarded.

When you write a double to the stream

It write 8 bytes

When you read a int from the stream

you read 4 bytes

see an issue here?

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Right.. thats retarded.

When you write a double to the stream

It write 8 bytes

When you read a int from the stream

you read 4 bytes

see an issue here?

at least you can be nice about my f' up, it was a copying error from a tut and i forgot to code it to write ints. anyways back to the original issue how to i get the packet to the local server. I'll try the sendPacket it just seem to be too simple seeing as i had to set up a packetManager.class just to send packets to the client.

 

Edit:

is it me or maybe sendPacket is missing/ not added. I'll  keep looking for something to send a packet too the server but tbh i'm not 100% sure what i'm looking for.

 public static void sendPacket(Packet packet) {
        // TODO
//        FMLClientHandler.instance().sendPacket(packet);
    }

Posted

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

Posted

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

 

I'll look into it and tell you if I got any insight on it.

Posted

Try using PacketManager.sendTileEntityPacket from UE...

 

Also, you can read doubles and then cast the read doubles into int after reading so it doesn't mess the stream data up.

i am using a recoded version of your code for my packetHandler. only issue is i can't figure out how to send the settings packet to the server to be saved. I've got sending to the player done just fine and gui gets the old settings. However if i go into the gui and change all the vars in the textboxes, it only keep the new setting as long as game stays on. Which means i need to update the server's TileEntity with the new settings.

 

I'll look into it and tell you if I got any insight on it.

ty without being able to update the Barrack settings the block doesn't work past looking good. Other than that my Guardsman are rendering now :), well except for weapons but that an old error that crops up every update.

 

Edit: i see the modloader.sendPacket now does something instead of being empty. Anyways is the onPackData version for the server side?

Edit2: Fixed it turns out i was not getting the right world so when the packet got there it didn't know which world to send it too.

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 all. I'm currently grappling with the updateShape method in a custom class extending Block.  My code currently looks like this: The conditionals in CheckState are there to switch blockstate properties, which is working fine, as it functions correctly every time in getStateForPlacement.  The problem I'm running into is that when I update a state, the blocks seem to call CheckState with the position of the block which was changed updated last.  If I build a wall I can see the same change propagate across. My question thus is this: is updateShape sending its return to the neighbouring block?  Is each block not independently executing the updateShape method, thus inserting its own current position?  The first statement appears to be true, and the second false (each block is not independently executing the method). I have tried to fix this by saving the block's own position to a variable myPos at inception, and then feeding this in as CheckState(myPos) but this causes a worse outcome, where all blocks take the update of the first modified block, rather than just their neighbour.  This raises more questions than it answers, obviously: how is a different instance's variable propagating here?  I also tried changing it so that CheckState did not take a BlockPos, but had myPos built into the body - same problem. I have previously looked at neighbourUpdate and onNeighbourUpdate, but could not find a way to get this to work at all.  One post on here about updatePostPlacement and other methods has proven itself long superceded.  All other sources on the net seem to be out of date. Many thanks in advance for any help you might offer me, it's been several days now of trying to get this work and several weeks of generally trying to get round this roadblock.  - Sandermall
    • sorry, I might be stupid, but how do I open it? because the only options I have are too X out, copy it, which doesn't work and send crash report, which doesn't show it to me, also, sorry for taking so long.
    • Can you reproduce this with version 55.0.21? A whole lot of plant placement issues were just fixed in this PR.
    • Necro'ing that thread to ask if you found a solution ? I'm encountering the same crash on loading the world. I created the world in Creative to test my MP, went into survival to test combat, died, crashed on respawn and since then crash on loading the world. Deactivating Oculus isn't fixing it either, and I don't have Optifine (Twilight forest is incompatible)
  • Topics

×
×
  • Create New...

Important Information

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