Jump to content

[Not solved but im done.]How to save integers to a file.


deadrecon98

Recommended Posts

  • Replies 87
  • Created
  • Last Reply

Top Posters In This Topic

Seriously go learn Java!!!

 

Or at least learn to google basic java questions..

This has little to do with the forge API and is purely a Java question, a basic such as well..

 

Here ya go anyways -_-

[lmgtfy=save int to file java]Saving ints to file[/lmgtfy]

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

Seriously go learn Java!!!

 

Or at least learn to google basic java questions..

This has little to do with the forge API and is purely a Java question, a basic such as well..

 

Here ya go anyways -_-

[lmgtfy=save int to file java]Saving ints to file[/lmgtfy]

 

Im trying my best here dude, no need to be rude. And I have googled that at least 6 different ways and nothing I try works.

Link to comment
Share on other sites

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

 

 

 

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

Link to comment
Share on other sites

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Link to comment
Share on other sites

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

 

Its strictly singleplayer.

Link to comment
Share on other sites

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

 

If a config won't work then a hashmap maybe?

Link to comment
Share on other sites

Why do you need it saved to a file?? Oh right, you need some way of doing NBT saves.

 

Try doing something like so:

[urlhttps://github.com/ModderPenguin/MinePG/blob/master/source/minepg/rpg_common/rpg/playerinfo/PlayerInformation.java[/url]

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Link to comment
Share on other sites

Why do you need it saved to a file?? Oh right, you need some way of doing NBT saves.

 

Try doing something like so:

[urlhttps://github.com/ModderPenguin/MinePG/blob/master/source/minepg/rpg_common/rpg/playerinfo/PlayerInformation.java[/url]

That source code is a bust, its very hard to understand someone elses coding when it gets to that level. I need someone to explain this to me so that Im learning. Not being a scriptkitty, im trying to get out of that.

Link to comment
Share on other sites

That source code is a bust, its very hard to understand someone elses coding when it gets to that level. I need someone to explain this to me so that Im learning. Not being a scriptkitty, im trying to get out of that.

 

I also am not being rude, but you should never accuse anyone of being rude when asking for help through a text means... that is actually rude in itself, but forgivable as it is frustrating getting something to work. If you cannot be bothered reading other peoples code then no one will want to help you... I don't think that's what you meant at all but if you are seriously considering modding, then you'll need to read a lot of other peoples code, and it will sometimes be very long and complex but should be well documented with comments. This API is not official and it's very obscured still. I understand your need to learn to gain the satisfaction of progress however, as you probably know, we all cannot help as much as we might like as we are working on projects, feeding family, working, and doing other things important to our own progress. Keep that in mind first and foremost when asking a question. Also, give a very good indication of your current skills, knowledge, and exactly what it is you want to achieve in your code. Saving an int to a file is generic. It would help to know what the purpose of doing so is and think how that feature may evolve later.

 

It's good to want to get better but I'd have to know a lot more about your current knowledge of java and forge to help teach you something. Have you done all of the Basic tutorials? http://www.minecraftforge.net/wiki/Tutorials. Indispensable. If it becomes frustrating to follow just keep trying. You can teach yourself anything if you apply yourself and do not allow frustration to set in. I have a feeling if you have a decent enough base knowledge of java that following the basic tutorials will allow you to intuitively discover your solutions for quite sometime. I do understand the frustration that can come if you are just getting into things as a new coder. I guess the idea is that if someone does it for you you won't learn anything, but no one should have a problem if you don't understand a particular class, in giving you some ideas or help.

 

If you are simply wanting persistent data that saves and loads on a save game, you should grok the classes for NBTTagCompounds.  This is how Vanilla saves most of it's persistent/unique data when the game saves. If you have something else in mind that minecraft doesn't already do then you may need your own data file system... however I doubt it would be necessary. It does require knowledge of java's file input/output classes. If you don't understand them, I suggest you try a basic java app first then play with the classes. If your knowledge of java is up to snuff then I'd master all the knowledge gained from the Basic Tutorials then amaze yourself at how much can be learned with a bit of patience and persistence.

 

Also, let the vanilla source guide you. ctrl+H in eclipse will let you search for text in all the packages open in your project. It's probably done me more good than the tutorials...

 

Update:

I just remembered something important. I understand that you are making a SSP mod. It is important to understand that a client and server are running even in SSP. Not much gets sent to the Client but rendering data. Even the levels, skills, other info would be on the server and the server value would be passed to the client either through a datawatcher or packet. I think the concept works best mentally if you say that the client cannot be trusted. The server is the master in this case and does all the saving of data. It's probably less intuitive but things got easier for me when dealing with Server/Client relations when I thought of it that way. But that could just be me.

Link to comment
Share on other sites

Dude I've tried literally everything that I can think of. Hashmap's, NBT, FileWriter. But none of it seems to work for me. I've just never worked with these elements before and can't find anyone who knows or is willing to help me here. And btw I did read that guys code, actually I stripped it down and tried it then but it was still broken.

Link to comment
Share on other sites

Step 1: get a reference to the player (object type EntityPlayer)

Step 2: get a reference to the player's NBT data:

player.getEntityData()

Step 3: write an integer to it:

nbt.setInteger("MiningLevel",lv);

Step 4: anywhere you need to reference the mining level, read it from the NBT:

nbt.getInteger("MiningLevel");

Step 5: if it changes, go to step 3.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Step 1: get a reference to the player (object type EntityPlayer)

Step 2: get a reference to the player's NBT data:

player.getEntityData()

Step 3: write an integer to it:

nbt.setInteger("MiningLevel",lv);

Step 4: anywhere you need to reference the mining level, read it from the NBT:

nbt.getInteger("MiningLevel");

Step 5: if it changes, go to step 3.

 

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

Link to comment
Share on other sites

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

 

Well you're kinda missing the entire read/write nbt parts...

 

 public static void hashSaving(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              nbt.setInteger("MiningXp", MiningXp);
              nbt.setInteger("MiningLevel", MiningLevel);
              nbt.setInteger("SmithingXp", SmithingXp);
              nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public int getMiningXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("MiningXp");
    }
    public int getSmithingXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("SmithingXp");
    }

 

Edit: Tab-space derp

Link to comment
Share on other sites

deadrecon, I don't suppose I could see the whole class could I? I'm trying to figure out the whole NBT on the player thing atm, can't quite figure it out... :P

 

Yes you may see it. If you need anything else just ask, I really want to get this done so that I can start working on the modding API for it :P

 

package mods.cyphereion.cyphscape.levels;

import java.util.HashMap;
import java.util.Set;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.world.World;
import net.minecraftforge.common.IExtendedEntityProperties;

public final class Levels {
  
/**
 * Creates the hashmap.
 */
public static HashMap map = new HashMap();

 /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;
    
    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;
    
    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;
    
    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;
    
    public static void hashSaving(EntityPlayer player, World par2World){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }
}

 

Btw im not using nbt im attempting to use a hashmap

Link to comment
Share on other sites

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

 

Well you're kinda missing the entire read/write nbt parts...

 

 public static void hashSaving(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              nbt.setInteger("MiningXp", MiningXp);
              nbt.setInteger("MiningLevel", MiningLevel);
              nbt.setInteger("SmithingXp", SmithingXp);
              nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public int getMiningXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("MiningXp");
    }
    public int getSmithingXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("SmithingXp");
    }

 

Edit: Tab-space derp

 

.... thats a hashmap dude not an nbt compound

Link to comment
Share on other sites

You don't need the hashmap though, if you're saving and getting from the NBT compound!

 

package mods.cyphereion.cyphscape.levels;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;

public final class Levels {
    /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;

    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;

    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;

    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;

    public static void saveLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
        nbt.setInteger("MiningLevel", MiningLevel);
        nbt.setInteger("SmithingXp", SmithingXp);
        nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public static void getLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        MiningXp = nbt.getInteger("MiningXp");
        MiningLevel = nbt.getInteger("MiningLevel");
        SmithingXp = nbt.getInteger("SmithingXp");
        SmithingLevel = nbt.getInteger("SmithingLevel");
    }

    public int getMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("MiningXp");
    }

    public void saveMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
    }
    
    public int getSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("SmithingXp");
    }

    public void saveSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("SmithingXp", SmithingXp);
    }
}

Link to comment
Share on other sites

You don't need the hashmap though, if you're saving and getting from the NBT compound!

 

package mods.cyphereion.cyphscape.levels;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;

public final class Levels {
    /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;

    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;

    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;

    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;

    public static void saveLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
        nbt.setInteger("MiningLevel", MiningLevel);
        nbt.setInteger("SmithingXp", SmithingXp);
        nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public static void getLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        MiningXp = nbt.getInteger("MiningXp");
        MiningLevel = nbt.getInteger("MiningLevel");
        SmithingXp = nbt.getInteger("SmithingXp");
        SmithingLevel = nbt.getInteger("SmithingLevel");
    }

    public int getMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("MiningXp");
    }

    public void saveMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
    }
    
    public int getSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("SmithingXp");
    }

    public void saveSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("SmithingXp", SmithingXp);
    }
}

 

But with nbt you cant load it from another class file wich is what I need to do.

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.




  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I'm developing a dimension, but it's kinda resource intensive so some times during player teleporting it lags behind making the player phase down into the void, so im trying to implement some kind of pregeneration to force the game loading a small set of chunks in the are the player will teleport to. Some of the things i've tried like using ServerLevel and ServerChunkCache methods like getChunk() dont actually trigger chunk generation if the chunk isn't already on persistent storage (already generated) or placing tickets, but that doesn't work either. Ideally i should be able to check when the task has ended too. I've peeked around some pregen engines, but they're too complex for my current understanding of the system of which I have just a basic understanding (how ServerLevel ,ServerChunkCache  and ChunkMap work) of. Any tips or other classes I should be looking into to understand how to do this correctly?
    • https://mclo.gs/4UC49Ao
    • Way back in the Forge 1.17 days, work started for adding JPMS (Java Platform Module Support) to ModLauncher and ForgeModLoader. This has been used internally by Forge and some libraries for a while now, but mods (those with mods.toml specifically) have not been able to take advantage of it. As of Forge 1.21.1 and 1.21.3, this is now possible!   What is JPMS and what does it mean for modders? JPMS is the Java Platform Module System, introduced in Java 9. It allows you to define modules, which are collections of packages and resources that can be exported or hidden from other modules. This allows for much more fine-tuned control over visibility, cleaner syntax for service declarations and support for sealed types across packages. For example, you might have a mod with a module called `com.example.mod` that exports `com.example.mod.api` and `com.example.mod.impl` to other mods, but hides `com.example.mod.internal` from them. This would allow you to have a clean API for other mods to use, while keeping your internal implementation details hidden from IDE hints, helping prevent accidental usage of internals that might break without prior notice. This is particularly useful if you'd like to use public records with module-private constructors or partially module-private record components, as you can create a sealed interface that only your record implements, having the interface be exported and the record hidden. It's also nice for declaring and using services, as you'll get compile-time errors from the Java compiler for typos and the like, rather than deferring to runtime errors. In more advanced cases, you can also have public methods that are only accessible to specific other modules -- handy if you want internal interactions between multiple of your own mods.   How do I bypass it? We understand there may be drama in implementing a system that prevents mods from accessing each other's internals when necessary (like when a mod is abandoned or you need to fix a compat issue) -- after all, we are already modding a game that doesn't have explicit support for Java mods yet. We have already thought of this and are offering APIs from day one to selectively bypass module restrictions. Let me be clear: Forge mods are not required to use JPMS. If you don't want to use it, you don't have to. The default behaviour is to have fully open, fully exported automatic modules. In Java, you can use the `Add-Opens` and `Add-Exports` manifest attributes to selectively bypass module restrictions of other mods at launch time, and we've added explicit support for these when loading your Forge mods. At compile-time, you can use existing solutions such as the extra-java-module-info Gradle plugin to deal with non-modular dependencies and add extra opens and exports to other modules. Here's an example on how to make the internal package `com.example.examplemod.internal` open to your mod in your build.gradle: tasks.named('jar', Jar) { manifest { attributes([ 'Add-Opens' : 'com.example.examplemod/com.example.examplemod.internal' 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors // (...) ]) } } With the above in your mod's jar manifest, you can now reflectively access the classes inside that internal package. Multiple entries are separated with a space, as per Java's official spec. You can also use Add-Exports to directly call without reflection, however you'd need to use the Gradle plugin mentioned earlier to be able to compile. The syntax for Add-Exports is the same as Add-Opens, and instructions for the compile-time step with the Gradle plugin are detailed later in this post. Remember to prefer the opens and exports keywords inside module-info.java for sources you control. The Add-Opens/Add-Exports attributes are only intended for forcing open other mods.   What else is new with module support? Previously, the runtime module name was always forced to the first mod ID in your `mods.toml` file and all packages were forced fully open and exported. Module names are now distinguished from mod IDs, meaning the module name in your module-info.java can be different from the mod ID in your `mods.toml`. This allows you to have a more descriptive module name that doesn't have to be the same as your mod ID, however we strongly recommend including your mod ID as part of your module name to aid troubleshooting. The `Automatic-Module-Name` manifest attribute is now also honoured, allowing you to specify a module name for your mod without needing to create a `module-info.java` file. This is particularly useful for mods that don't care about JPMS features but want to have a more descriptive module name and easier integration with other mods that do use JPMS.   How do I use it? The first step is to create a `module-info.java` file in your mod's source directory. This file should be in the same package as your main mod class, and should look something like this: open module com.example.examplemod { requires net.minecraftforge.eventbus; requires net.minecraftforge.fmlcore; requires net.minecraftforge.forge; requires net.minecraftforge.javafmlmod; requires net.minecraftforge.mergetool.api; requires org.slf4j; requires logging; } For now, we're leaving the whole module open to reflection, which is a good starting point. When we know we want to close something off, we can remove the open modifier from the module and open or export individual packages instead. Remember that you need to be open to Forge (module name net.minecraftforge.forge), otherwise it can't call your mod's constructor. Next is fixing modules in Gradle. While Forge and Java support modules properly, Gradle does not put automatic modules on the module path by default, meaning that the logging module (from com.mojang:logging) is not found. To fix this, add the Gradle plugin and add a compile-time module definition for that Mojang library: plugins { // (...) id 'org.gradlex.extra-java-module-info' version "1.9" } // (...) extraJavaModuleInfo { failOnMissingModuleInfo = false automaticModule("com.mojang:logging", "logging") } The automatic module override specified in your build.gradle should match the runtime one to avoid errors. You can do the same for any library or mod dependency that is missing either a module-info or explicit Automatic-Module-Name, however be aware that you may need to update your mod once said library adds one. That's all you need to get started with module support in your mods. You can learn more about modules and how to use them at dev.java.
    • Faire la mise à jour grâce à ce lien m'a aider personnellement, merci à @Paint_Ninja. https://www.amd.com/en/support 
    • When I came across the 'Exit Code: I got a 1 error in my Minecraft mods, so I decided to figure out what was wrong. First, I took a look at the logs. In the mods folder (usually where you'd find logs or crash reports), I found the latest.log file or the corresponding crash report. I read it through carefully, looking for any lines with errors or warnings. Then I checked the Minecraft Forge support site, where you can often find info on what causes errors and how to fix them. I then disabled half of my mods and tried running the game. If the error disappeared, it meant that the problem was with the disabled mod. I repeated this several times to find the problem mod.
  • Topics

×
×
  • Create New...

Important Information

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