
Big_Bad_E
Members-
Posts
312 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Big_Bad_E
-
I see nothing. my texture looks good, along with the blockstate. Fixed it by swapping the color and the texture, now I just have no textures. I'ma work on that myself I don't think the color is being set.
-
What am I doing wrong? The model was generated in a model generator. I forgot to mention it worked with one texture, then I tried moving it to blockstate with the block properties, which had no texture at all, then I moved it back to models and got the crash.
-
I've created a block, property, model, blockstate, etc... but my models won't load because of model problems Code: Errors:
-
No, the amount is just for display, the player can only use 64 max, as OP will have to make shift clicking only give 64 of the item, and clicking only gives 1.
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
I am still having some problems, the item in QuantumSlot is also in slot 8 in the hotbar, and the GUI isn't updating again. -
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
The data was sent client to server. My problem was the container had updated data but for some reason the GUI's instance of the data wasn't updated, so I manually just got the itemstack from the TileEntity and used it to update the GUI. -
Right, they would have to make an IITemHandler/SlotItemHandler to make it to where the player can only get max of 64 from the slot, but that lets the slot contain more than 64 of an item.
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
Are you sure packets are the way to go? I made some packets, and it updated the server, but not the client's slot. How do I get the slot itself to update? I think there is another ItemStack list somewhere that is called to draw the itemstacks. I am gonna look through the itemstack draw method and the container close/update method cause that also updates it. -
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
My code is updated, I've never used packets with Forge so it will be fun to try -
Well that's a weird glitch. Minecraft drugs mod coming soon!
-
Here is my code: public class ArmorOverlay extends Gui { private List<ItemStack> armor = new ArrayList<ItemStack>(); public ArmorOverlay() { if(Minecraft.getMinecraft().thePlayer != null) for (int i = 0; i < 4; i++) { ItemStack itemArmor = Minecraft.getMinecraft().thePlayer.getCurrentArmor(i); if (itemArmor != null) armor.add(itemArmor); } } public void render() { if (Minecraft.getMinecraft().thePlayer.isDead) return; List<ItemStack> newArmor = new ArrayList<ItemStack>(); for (int i = 0; i < 4; i++) { ItemStack itemArmor = Minecraft.getMinecraft().thePlayer.getCurrentArmor(i); if (itemArmor != null) newArmor.add(itemArmor); } if (!armor.equals(newArmor)) { renderEntity(); for (int i = 0; i < 4; i++) { ItemStack armor = Minecraft.getMinecraft().thePlayer.getCurrentArmor(3 - i); if (armor != null) { drawString(Minecraft.getMinecraft().fontRendererObj, I18n.format(armor.getItem().getUnlocalizedName() + ".name") + " (" + (armor.getMaxDamage() - armor.getItemDamage()) + "/" + armor.getMaxDamage() + ")", 40, 20 + (i * 16), MathHelper.hsvToRGB(Math.max(0.0F, (float) (1.0F - (double) armor.getItemDamage() / (double) armor.getMaxDamage())) / 3.0F, 1.0F, 1.0F)); } } } } private void renderEntity() { try { EntityPlayerSP ent = Minecraft.getMinecraft().thePlayer; int posX = 20; int posY = 80; GlStateManager.enableColorMaterial(); GlStateManager.pushMatrix(); GlStateManager.translate((float) posX, (float) posY, 50.0F); GlStateManager.scale(-30f, 30f, 30f); GlStateManager.rotate(180.0F, 0.0F, 0.0F, 1.0F); Collection<PotionEffect> effects = ent.getActivePotionEffects(); Boolean invisible = ent.isInvisible(); ItemStack item = ent.getHeldItem(); int slot = ent.inventory.currentItem; Field field = Entity.class.getDeclaredField("fire"); field.setAccessible(true); int fire = field.getInt(ent); int arrows = ent.getArrowCountInEntity(); Boolean swing = ent.isSwingInProgress; float f = ent.renderYawOffset; float f1 = ent.rotationYaw; float f2 = ent.rotationPitch; float f3 = ent.prevRotationYawHead; float f4 = ent.rotationYawHead; GlStateManager.rotate(135.0F, 0.0F, 1.0F, 0.0F); RenderHelper.enableStandardItemLighting(); GlStateManager.rotate(-135.0F, 0.0F, 1.0F, 0.0F); ent.clearActivePotions(); field.setInt(ent, 0); ent.getDataWatcher().updateObject(9, (byte) 0); ent.isSwingInProgress = false; ent.getDataWatcher().updateObject(0, (byte) (ent.getDataWatcher().getWatchableObjectByte(0) | 1 << 5)); ent.rotationYaw = 0f; ent.rotationPitch = 0f; ent.rotationYawHead = 0f; ent.prevRotationYawHead = ent.rotationYaw; GlStateManager.translate(0.0F, 0.0F, 0.0F); RenderManager rendermanager = Minecraft.getMinecraft().getRenderManager(); rendermanager.setPlayerViewY(180.0F); rendermanager.setRenderShadow(false); rendermanager.renderEntitySimple(ent, 0f); rendermanager.setRenderShadow(true); if (invisible) { ent.getDataWatcher().updateObject(0, (byte) (ent.getDataWatcher().getWatchableObjectByte(0) | 1 << 5)); } else { ent.getDataWatcher().updateObject(0, (byte) (ent.getDataWatcher().getWatchableObjectByte(0) & ~(1 << 5))); } field.setInt(ent, fire); field.setAccessible(false); ent.getDataWatcher().updateObject(9, (byte) arrows); ent.inventory.setInventorySlotContents(slot, item); ent.renderYawOffset = f; ent.rotationYaw = f1; ent.rotationPitch = f2; ent.prevRotationYawHead = f3; ent.rotationYawHead = f4; ent.isSwingInProgress = swing; ent.clearActivePotions(); for (PotionEffect effect : effects) { ent.addPotionEffect(effect); } GlStateManager.popMatrix(); RenderHelper.disableStandardItemLighting(); GlStateManager.disableRescaleNormal(); GlStateManager.setActiveTexture(OpenGlHelper.lightmapTexUnit); GlStateManager.disableTexture2D(); GlStateManager.setActiveTexture(OpenGlHelper.defaultTexUnit); } catch (NoSuchFieldException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } } } For some reason the player's body will turn instead of staying the same like it should. Also the player will vibrate around whenever I move. And, the player's head's pitch is not working for some reason. I tried setting lastPosX/Y and no luck.
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
Couple questions: How do I update the Container/GUI to display the updated item? How do I stop the block from being placed when I open the GUI? I can fix the shift click problems myself. -
What is line 77? Also if the error is on an if statement space it out to find the problem/null.
-
Why are you using 1.9.4? Just update forge please, it makes modding so much easier.
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
I haven't updated my code cause I haven't coded it yet. And: I did say what I was going to do. -
If you want to change the number of items per slot, make a custom slot and override the getMaxSlotSize in Slot. As for removing the number you would have to probably make your own system to render everything, and that's just a pain. If you want to, I'd suggest overriding drawScreen in GuiContainer, keep it the same except this line: this.itemRender.renderItemOverlayIntoGUI(font, stack, x, y - (this.draggedStack.isEmpty() ? 0 : 8), altText); You have to make your own method for that, removing the string being drawn. Here is some code that might or might not work: public void renderItemOverlayIntoGUI(FontRenderer fr, ItemStack stack, int xPosition, int yPosition, @Nullable String text) { if (!stack.isEmpty()) { if (stack.getItem().showDurabilityBar(stack)) { GlStateManager.disableLighting(); GlStateManager.disableDepth(); GlStateManager.disableTexture2D(); GlStateManager.disableAlpha(); GlStateManager.disableBlend(); Tessellator tessellator = Tessellator.getInstance(); BufferBuilder bufferbuilder = tessellator.getBuffer(); double health = stack.getItem().getDurabilityForDisplay(stack); int rgbfordisplay = stack.getItem().getRGBDurabilityForDisplay(stack); int i = Math.round(13.0F - (float)health * 13.0F); int j = rgbfordisplay; this.draw(bufferbuilder, xPosition + 2, yPosition + 13, 13, 2, 0, 0, 0, 255); this.draw(bufferbuilder, xPosition + 2, yPosition + 13, i, 1, j >> 16 & 255, j >> 8 & 255, j & 255, 255); GlStateManager.enableBlend(); GlStateManager.enableAlpha(); GlStateManager.enableTexture2D(); GlStateManager.enableLighting(); GlStateManager.enableDepth(); } EntityPlayerSP entityplayersp = Minecraft.getMinecraft().player; float f3 = entityplayersp == null ? 0.0F : entityplayersp.getCooldownTracker().getCooldown(stack.getItem(), Minecraft.getMinecraft().getRenderPartialTicks()); if (f3 > 0.0F) { GlStateManager.disableLighting(); GlStateManager.disableDepth(); GlStateManager.disableTexture2D(); Tessellator tessellator1 = Tessellator.getInstance(); BufferBuilder bufferbuilder1 = tessellator1.getBuffer(); this.draw(bufferbuilder1, xPosition, yPosition + MathHelper.floor(16.0F * (1.0F - f3)), 16, MathHelper.ceil(16.0F * f3), 255, 255, 255, 127); GlStateManager.enableTexture2D(); GlStateManager.enableLighting(); GlStateManager.enableDepth(); } } } This code is straight from vanilla classes, I'd suggest looking into them if you are trying to do things like this.
-
https://imgur.com/a/qmk4qaF I think it's looking really cool Needs some refining but thanks for the idea Cadiboo! Quick question, what is the variable for the direction the player's body is facing? Also is it possible to disable a player's death animation?
-
Why? That part renders the GUI, I wanna render a GUI, that looks like the right code. Ohhh, I see what you were thinking. I am not trying to render the armor model, just the texture. Actually that's a great idea. I'ma do that myself. Here's the code GlStateManager.enableColorMaterial(); GlStateManager.pushMatrix(); GlStateManager.translate((float)posX, (float)posY, 50.0F); GlStateManager.scale((float)(-scale), (float)scale, (float)scale); GlStateManager.rotate(180.0F, 0.0F, 0.0F, 1.0F); float f = ent.renderYawOffset; float f1 = ent.rotationYaw; float f2 = ent.rotationPitch; float f3 = ent.prevRotationYawHead; float f4 = ent.rotationYawHead; GlStateManager.rotate(135.0F, 0.0F, 1.0F, 0.0F); RenderHelper.enableStandardItemLighting(); GlStateManager.rotate(-135.0F, 0.0F, 1.0F, 0.0F); GlStateManager.rotate(-((float)Math.atan((double)(mouseY / 40.0F))) * 20.0F, 1.0F, 0.0F, 0.0F); ent.renderYawOffset = (float)Math.atan((double)(mouseX / 40.0F)) * 20.0F; ent.rotationYaw = (float)Math.atan((double)(mouseX / 40.0F)) * 40.0F; ent.rotationPitch = -((float)Math.atan((double)(mouseY / 40.0F))) * 20.0F; ent.rotationYawHead = ent.rotationYaw; ent.prevRotationYawHead = ent.rotationYaw; GlStateManager.translate(0.0F, 0.0F, 0.0F); RenderManager rendermanager = Minecraft.getMinecraft().getRenderManager(); rendermanager.setPlayerViewY(180.0F); rendermanager.setRenderShadow(false); rendermanager.renderEntity(ent, 0.0D, 0.0D, 0.0D, 0.0F, 1.0F, false); rendermanager.setRenderShadow(true); ent.renderYawOffset = f; ent.rotationYaw = f1; ent.rotationPitch = f2; ent.prevRotationYawHead = f3; ent.rotationYawHead = f4; GlStateManager.popMatrix(); RenderHelper.disableStandardItemLighting(); GlStateManager.disableRescaleNormal(); GlStateManager.setActiveTexture(OpenGlHelper.lightmapTexUnit); GlStateManager.disableTexture2D(); GlStateManager.setActiveTexture(OpenGlHelper.defaultTexUnit);
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
That's what i'm doing. -
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
I'd rather just make a single stack. I think it would generally be easier. -
Code from GuiCrafting (in the background drawing code) GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); this.mc.getTextureManager().bindTexture(CRAFTING_TABLE_GUI_TEXTURES); int i = this.guiLeft; int j = (this.height - this.ySize) / 2; this.drawTexturedModalRect(i, j, 0, 0, this.xSize, this.ySize); Trying that and nothing different. I tried setting the resource location to "minecraft", "textures/items/diamond_chestplate.png" and "minecraft:textures/items/diamond_chestpalte.png" but it is not working at all.
-
Help with TileEntity/Container communication?
Big_Bad_E replied to Big_Bad_E's topic in Modder Support
My main problem is that I can't figure out what is wrong with my code, and when I use one solution, tons more pop up. Like implements IItemHandler now the input slot only takes one item which won't disappear, and I can't test output, and for some reason when I close the GUI with an item the amount gets set to -22 and it crashes. I've updated my code but I've just run into a lack of solutions. For some reason slot events aren't being called and I'm just frustrated. Now that I'm thinking about it i'm just going to make a slot with a max item limit of the 32 bit integer limit. -
Texture is in minecraft:textures/entity/chest/ You have to create your own model Here's a good tool: https://mrcrayfish.com/tools?id=mc Put the model in yourmodid:models/blocks/blockname.json Create a blockstate for it, and an item model. Then register it, and it's model, Override blockActivated in the block class, and then put the code: playerIn.openGui(mod instance, 1, worldIn, pos.getX(), pos.getY(), pos.getZ()); where pos is the block's pos and mod instance is the instance of your main class. Then make a TileEntity, GUI, Container, and GuiHandler. Look things up or feel free to ask me about how to do anything I mentioned. Also, is English not you'r first language? If not please use a translator service (like google translate), it is hard to understand you sometimes.
-
No it was called multiple times (I was being dumb and created an instance of it in my event)
-
I have a simple GUI that's supposed to display a player's armor and a picture of it. I know I will have problems with Leather Armor cause it's an overlay but I just wanna get basic things working first (Any help doing that would be appriciated) Here's my code right now: public ArmorOverlay() { Minecraft mc = Minecraft.getMinecraft(); EntityPlayer player = mc.thePlayer; for (int i = 0; i < 4; i++) { ItemStack armor = player.getCurrentArmor(3-i); if (armor != null) { String registryName = armor.getItem().getRegistryName(); mc.renderEngine.bindTexture(new ResourceLocation(registryName.split(":")[0], "textures/items/" + registryName.split(":")[1] + ".png")); drawTexturedModalRect(20, 20 + (i * 16), 0, 0, 16, 16); drawString(Minecraft.getMinecraft().fontRendererObj, I18n.format(armor.getItem().getUnlocalizedName() + ".name") + " (" + (armor.getMaxDamage() - armor.getItemDamage()) + "/" + armor.getMaxDamage() + ")", 40, 20 + (i * 16), MathHelper.hsvToRGB(Math.max(0.0F, (float) (1.0F - (double) armor.getItemDamage()/ (double) armor.getMaxDamage())) / 3.0F, 1.0F, 1.0F)); } } } My problem is the image won't render, and I think it is a problem with the third and fourth args of the drawTexturedModalRect (I tried getTextureManager too). The strings draw with the right color, so what's wrong with the armor? If I set the third/fourth args to random things it gives me colored squares. For a diamond helmet I get blue squares, Leather chestplate gives me green squares, Leather leggings give orange squares, and Diamond boots give me dark green/orange squares