
Crash when viewing Ponder
NielsPilgaard opened this issue ยท 28 comments
A few Enigmatica 6 players reported when leaving our Tiny Dry Rubber Ponder, so... here's the crash log ๐
https://gist.github.com/NillerMedDild/d1bd5abf154dfb14c5bcbce56d1237a2
the tile at the given location doesn't exist at the current time, this could be because you are creating the tile at the same time as you are trying to modify the nbt
(i think, ill take a closer look later)
i will make it throw an exception explaining the error without crashing though
seems like i was right, these:
https://github.com/NillerMedDild/Enigmatica6/blob/4a04264214719daae1aa217e2de75f6d303dc9db/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js#L102-L112
https://github.com/NillerMedDild/Enigmatica6/blob/4a04264214719daae1aa217e2de75f6d303dc9db/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js#L114-L124
create blocks at the same time as they try to modify their NBT. i suggest adding scene.idle(1)
to idle 1 tick before doing that
you should check this
https://github.com/Creators-of-Create/Create/wiki/Internal---Ponder-UI#blocking-and-non-blocking-instructions
it will explain why this is happening, if you dont understand
i tried to debug the values a bit, and to my surprise it started talking about a thermal:energy_cell
whilst the var tank1 = util.grid().at(3, 4, 3);
is set to a tank before the modifyTileNBT
is even made.
(yes i see one of the lines is duplicated, a small mistake in copy pasting each step to debug output, same result tho)
there are some thermal energy cells in that ponder, but they are only ever beneath the lasers and never on the top where the tank (to be nbt edited) is located:
when i change the position of the tank1 variable to 3, 6, 3
instead (the block above it should be one of the lasers, yet it still reports an energy cell: (and even if the center variable isn't for the y axis it should still not be able to hit one of the other 3 energy cells)
[15:35:22] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:136]: {RSControl:{RSMode:0b,RSPower:0b,RSThreshold:0b},Facing:3b,ItemInv:[{Slot:0b,id:"thermal:rf_coil_creative_augment",Count:1b}],Enchantments:[],AmountOut:1000,Security:{SecUUID:"1ef1a6f0-87bc-4e78-0a0b-c6824eb787ea",SecAccess:0b,SecName:"[None]"},Active:0b,Xfer:{XferOut:1b,XferIn:0b},Energy:16000000,x:3,y:2,z:1,id:"thermal:energy_cell",Sides:[B;2B,2B,2B,2B,2B,2B],AmountIn:1000}
[15:35:22] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:137]: null
it appears the first argument to modifyTileNBT
(tank1
) is either being ignored, or possibly locked by a cache when importing the nbt schematic of the scene, i'm not exactly sure what is going on, but this observation should help @kotakotik22 at debugging/understanding this ๐ค
We're pretty sure it crashes as soon as we try to edit NBT on a block, but here's the crash report:
https://gist.github.com/NillerMedDild/4ed628c9a35819b40fd0cbf1a544492f
the line is in the kubejs log, its not in the crash report
Here's the client.txt: https://gist.github.com/NillerMedDild/0bc73ed13f252999b7dc5f76202db4cb
No mention of Ponders sadly
if these lines are removed the laser_drill
ponder doesn't crash right after the last keyframe on the third page:
but in the ./logs/kubejs<client/server/startup>.txt
are no traces of anything gone wrong, in fact it doesn't save any of the 3 when it crashes: (timestamp is 1-2 minutes behind)
^ written when i still had my debug version installed, then i recompiled the normal one, then forgot to add it to mods so i had to reboot yet again, and now here we are 30 minutes later, but even with the code unmodified its still behind & has no mention:
okay so these lines throw the exception:
Ponderjs/src/main/java/com/kotakotik/ponderjs/util/SceneBuilderJS.java
Lines 135 to 138 in 39e9370
but im not sure why it doesnt show the correct message
this is not an issue with the coordinates, but something wrong with the passed in MapJS
nevermind, sorry, misread my own code lol
the problem is that it cant turn the nbt of the block at that position into a MapJS
i dont really know why this could happen, so this would probably be a better question to kubejs devs
oh, sorry, missed that, then its not a kubejs issue
might still be both, it fails to map the mnt of the wrong block, so that block might still be broken even when it tries to edit the right block
the problem is that it cant turn the nbt of the block at that position into a MapJS
its trying to map the wrong block though (an energy cell instead of the fluid tank), or does the code try to map all the nbt blocks in the scene first before trying to edit just one?
I think this might just be a case of kubejs converting the number in the nbt to double. Will test it this evening.
dumped a bunch of System.out.println
in the kubejs code, and this is what i have found:
this is where the nbt enters kubejs:
https://github.com/KubeJS-Mods/KubeJS/blob/main/common/src/main/java/dev/latvian/kubejs/util/MapJS.java#L28
then in this method it gets returned early by one of the ||
's in the very first if:
https://github.com/KubeJS-Mods/KubeJS/blob/main/common/src/main/java/dev/latvian/kubejs/util/UtilsJS.java#L240
then on this line the .getClass().getName()
of o1
is net.minecraft.nbt.CompoundNBT
:
https://github.com/KubeJS-Mods/KubeJS/blob/main/common/src/main/java/dev/latvian/kubejs/util/MapJS.java#L29
here is the output, keep in mind that the lines are slightly off from the above ones since the println shifts them:
[10:11:10] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.UtilsJS:wrap:240]: {RSControl:{RSMode:0b,RSPower:0b,RSThreshold:0b},Facing:3b,ItemInv:[{Slot:0b,id:"thermal:rf_coil_creative_augment",Count:1b}],Enchantments:[],AmountOut:1000,Security:{SecUUID:"1ef1a6f0-87bc-4e78-0a0b-c6824eb787ea",SecAccess:0b,SecName:"[None]"},Active:0b,Xfer:{XferOut:1b,XferIn:0b},Energy:16000000,x:3,y:2,z:1,id:"thermal:energy_cell",Sides:[B;2B,2B,2B,2B,2B,2B],AmountIn:1000}
[10:11:10] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:29]: {RSControl:{RSMode:0b,RSPower:0b,RSThreshold:0b},Facing:3b,ItemInv:[{Slot:0b,id:"thermal:rf_coil_creative_augment",Count:1b}],Enchantments:[],AmountOut:1000,Security:{SecUUID:"1ef1a6f0-87bc-4e78-0a0b-c6824eb787ea",SecAccess:0b,SecName:"[None]"},Active:0b,Xfer:{XferOut:1b,XferIn:0b},Energy:16000000,x:3,y:2,z:1,id:"thermal:energy_cell",Sides:[B;2B,2B,2B,2B,2B,2B],AmountIn:1000}
[10:11:10] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:30]: net.minecraft.nbt.CompoundNBT
but for context here are screenshots of the lines of code responsible for the above output:
it simply appears to return null since CompoundNBT
is not an instance of MapJS
, so i guess kubejs forgot to wrap that, still doesn't explain why it tries to get the nbt of the block that is not the one we're trying to modify though ๐ค
i've tried replacing the thermal energy cells with powah energy cells in the nbt file, but it kept crashing so it doesn't seem to be caused by just the thermal energy cell.
currently i have commented out the last two lines from mapConsumerToNBT
in order to not modify anything but still see all the attempts that are being made:
[12:33:17] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:135]: new mapJsConsumerToNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:31]: {redstone_mode:0,energy_stored_main_energy:9000000000000000000L,side_transfer_type:[I;1,1,1,1,1,1],Size:2,x:3,variant:7,y:2,z:1,Items:[],id:"powah:energy_cell",energy_capacity_main_energy:9000000000000000000L}
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:32]: net.minecraft.nbt.CompoundNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:135]: new mapJsConsumerToNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:31]: {pointer:0,redstoneManager:{LastState:0b,Name:"ignore"},energyStorage:{energy:0},x:3,y:3,workingBar:{MaxProgress:50,Tick:50},z:1,showingArea:0b,id:"industrialforegoing:laser_drill",augmentInventory:{Size:4,FacingModes:{LEFT:"NONE",TOP:"NONE",BACK:"NONE",FRONT:"NONE",RIGHT:"NONE",BOTTOM:"NONE"},Items:[]},target:-824633692101L}
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:32]: net.minecraft.nbt.CompoundNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:135]: new mapJsConsumerToNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:31]: {redstone_mode:0,energy_stored_main_energy:9000000000000000000L,side_transfer_type:[I;1,1,1,1,1,1],Size:2,x:1,variant:7,y:2,z:3,Items:[],id:"powah:energy_cell",energy_capacity_main_energy:9000000000000000000L}
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:32]: net.minecraft.nbt.CompoundNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:135]: new mapJsConsumerToNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:31]: {pointer:0,redstoneManager:{LastState:0b,Name:"ignore"},energyStorage:{energy:0},x:1,y:3,workingBar:{MaxProgress:50,Tick:50},z:3,showingArea:0b,id:"industrialforegoing:laser_drill",augmentInventory:{Size:4,FacingModes:{LEFT:"NONE",TOP:"NONE",BACK:"NONE",FRONT:"NONE",RIGHT:"NONE",BOTTOM:"NONE"},Items:[]},target:-824633692101L}
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:32]: net.minecraft.nbt.CompoundNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [com.kotakotik.ponderjs.util.SceneBuilderJS$WorldInstructionsJS:lambda$mapJsConsumerToNBT$0:135]: new mapJsConsumerToNBT
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:31]: {output:{FluidName:"minecraft:empty",FacingModes:{LEFT:"ENABLED",TOP:"ENABLED",BACK:"ENABLED",FRONT:"ENABLED",RIGHT:"ENABLED",BOTTOM:"ENABLED"},Amount:0},miningDepth:3,redstoneManager:{LastState:0b,Name:"ignore"},catalyst:{Size:1,FacingModes:{LEFT:"NONE",TOP:"NONE",BACK:"NONE",FRONT:"NONE",RIGHT:"NONE",BOTTOM:"NONE"},Items:[]},work:{MaxProgress:20,Tick:0},energyStorage:{energy:0},x:3,y:3,tankBundle:{Input:{Size:1,Items:[]},Bar:{MaxProgress:10,Tick:0},Output:{Size:1,Items:[]}},z:3,id:"industrialforegoing:fluid_laser_base",augmentInventory:{Size:4,FacingModes:{LEFT:"NONE",TOP:"NONE",BACK:"NONE",FRONT:"NONE",RIGHT:"NONE",BOTTOM:"NONE"},Items:[]}}
[12:33:17] [Render thread/INFO] [STDOUT/]: [dev.latvian.kubejs.util.MapJS:of:32]: net.minecraft.nbt.CompoundNBT
as you can see it first tries to modify (or at least map) the nbt for the energy cells, and finally that of the tank itself, but all of them fail since its all CompoundNBT
and MapJS.nbt
only returns a MapJS
instance or null
๐ค
pushed an attempt at a fix: 69579c2, ill put the preview jar here if it builds correctly
compiling a build with the kubejs version still at 1605.3.15-build.104
fixes both our latex & laser ponders, doesn't appear that the version upgrade is required for the compoundnbt fix to work ๐
I'm afraid our Ponder is still causing crashes, with the delay between block placement and NBT editing :/ would you mind having a look at the script, see if you can spot the error?
Here's a more recent report of the issue with more details also: EnigmaticaModpacks/Enigmatica6#3545
i cant find anything wrong, can you try this with the latest ponderjs version? it shouldnt fix this but it should reveal which line exactly the error is at (in the kubejs logs)
We're pretty sure it crashes as soon as we try to edit NBT on a block, but here's the crash report:
https://gist.github.com/NillerMedDild/4ed628c9a35819b40fd0cbf1a544492f