Jump to content

[1.12] Get world age in days


Jacky2611

Recommended Posts

Quick question, is there any way to get a worlds age in days?

I know that I can use getTotalWorldTime() to get the real time the world has existed, but that totally ignores sleeping and cheating admins.

Right now I am thinking about using the world tick event to check all 100 ticks if the world time is smaller than it was the last time I checked, and if yes increase the worlds day counter by one.

 

Is there any better solution? Andwould the overworlds time keep running if all my players are in a different dimension?

Edited by Jacky2611

Here could be your advertisement!

Link to comment
Share on other sites

World#getTotalWorldTime() / 24000

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

Are you sure @Draco18s? I just tried that in a world and whenever I changed the time of day it had absolutely no effect on getTotalWorldTime.

 

 


[05:24:06] [Server thread/INFO]: [STDOUT]: total world time is 103200
[05:24:11] [Server thread/INFO]: [STDOUT]: total world time is 103300
[05:24:16] [Server thread/INFO]: [Player357: Added 300 to the time]
[05:24:16] [main/INFO]: [CHAT] Added 300 to the time
[05:24:16] [Server thread/INFO]: [STDOUT]: total world time is 103400

Here could be your advertisement!

Link to comment
Share on other sites

Sorry, try World.# getWorldTime()

I get the two confused sometimes.

 

And yes, it accounts for sleeping.

Edited by Draco18s

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

19 minutes ago, shultzy said:

Actucally, according to the source code this refers to WorldInfo#worldTime which is in the range of 0-23999 (in ticks) or a full day.

Well, that's the funny thing about it. I also thought that it would be in the range of 0-23999 ticks, but apparently it keeps counting up in most cases. I have to get the long back into the range on my own to make my own code work.

 

here is what I wrote to get a proper day count for my worlds. I call updateCurrentTime all 200 ticks from inside a world tick event with the worlds current time.

 

public class DayCounterWorldSavedData extends WorldSavedData {
	private static final String DATA_NAME = DSMain.MODID + "_ExampleData";
	  
	private int ageInDays = 0;
	long lastTime=0;
	
	// Required constructors
	public DayCounterWorldSavedData() {
		super(DATA_NAME);
	}

	public DayCounterWorldSavedData(String s) {
		super(s);
	}
	  
	  
	@Override
	public void readFromNBT(NBTTagCompound nbt) {
		this.ageInDays=nbt.getInteger("ageInDays");
		this.lastTime=nbt.getLong("lastTime");

		
	}
	
	@Override
	public NBTTagCompound writeToNBT(NBTTagCompound compound) {
		NBTTagCompound nbt = new NBTTagCompound();
		
		nbt.setInteger("ageInDays", this.ageInDays);
		nbt.setLong("lastTime", this.lastTime);

		
		return nbt;
	}

	
	public static DayCounterWorldSavedData get(World world) {
		  MapStorage storage = world.getPerWorldStorage();
		  DayCounterWorldSavedData instance = (DayCounterWorldSavedData) storage.getOrLoadData(DayCounterWorldSavedData.class, DATA_NAME);

		  if (instance == null) {
		    instance = new DayCounterWorldSavedData();
		    storage.setData(DATA_NAME, instance);
		  }
		  
		  return instance;
	}
	
	public int getAgeInDays() {
		return this.ageInDays;
	}
	
	public void updateCurrentTime(long currentTime) {
		
		System.out.println("last time: " + this.lastTime);
		System.out.println("current time: " + currentTime);
		
		//we get values above 23999, TO-DO: get it back in range here
		currentTime=currentTime%24000;
		
		if(currentTime<this.lastTime)
    		this.addDay();
    			
		this.lastTime=currentTime;
	}
	
	public void addDay() {
		this.addDays(1);
	}

	public void addDays(int i) {
		this.ageInDays+=1;
		this.markDirty();
		
		System.out.println("The worlds age is "+this.getAgeInDays() +" day(s).");
	}
}

 

Edited by Jacky2611

Here could be your advertisement!

Link to comment
Share on other sites

48 minutes ago, shultzy said:

Actucally, according to the source code this refers to WorldInfo#worldTime which is in the range of 0-23999 (in ticks) or a full day.

The javadoc on that method is wrong. If you follow where it gets its value from you'll find that nothing modulates it down below 24,000.

 

46 minutes ago, Jacky2611 said:

Interesting. It looks like sleepingDoesntResetTheTimeCounter.

But as soon as someone does use a command we are back to 0. Looks like I have to write my own solution.


You mean /time set 0? Well...yeah...

Edited by Draco18s

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

OK, I just realized that days don't have to be 24000 ticks long in all dimensions. (I am way too tired for this) Which means that my code above is mostly useless should I ever want to use it somewhere else since there is no way to figure out how many ticks are in another dimension sun cycle.

 

What I could do instead is to trigger a new day whenever the isDaytime boolean for a world changes. If I combine that with my current approach (in order to notice should someone just skip an entire day/night) my system should be (mostly) foolproof.

 

EDIT:

Even /time set day sets it back down to 0. And users don't even have to use commands. As soon as another mod starts messing around with time I am screwed. And as I already said above, I can't rely on the tick count because not all dimension have to have the same day cycle.

 

What I did now is to rely on the world#isDaytime boolean to catch normal day changes while also triggering a change should someone mess around with the server time. This is what my sleep deprived mind came up with.

	public void updateCurrentTime(long currentTime, boolean currentDay) {
		
		//check if someone used a command to reset time or if the night/day switched to day
		if((currentTime<this.lastTime) || ((this.isDay!=currentDay))&&currentDay)
    		    this.addDay();
    			
		this.lastTime=currentTime;
		this.isDay = currentDay;
	}

 

And did I write my reply above in camel case o.O?

Edited by Jacky2611

Here could be your advertisement!

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

    • I am migrating a mod from 1.16.5 to 1.20.2 The version for 1.16.5 can be found here https://github.com/beothorn/automataCraft For the block called automata_start, it uses TileEntities and has blockstates, model/block and textures on json files. This is currently working fine on 1.16.5 https://github.com/beothorn/automataCraft/tree/master/src/main/resources/assets/automata For 1.20.2 I migrated the logic from TileEntities to BlockEntity. The mod is working fine. All blocks and Items are working with the correct textures except for the textures for each state of the automata_start block. No changes where made to the json files. This is the branch I am working on (there were some refactorings, but all is basically the same): https://github.com/beothorn/automataCraft/tree/1_20/src/main/resources/assets/automata The only difference I can think that may be related is that i had to implement createBlockStateDefinition on the BaseEntityBlock: https://github.com/beothorn/automataCraft/blob/1_20/src/main/java/br/com/isageek/automata/automata/AutomataStartBlock.java#L43 This is driving me crazy. I know the jsons are being loaded as I put a breakpoint at `net.minecraft.client.resources.model.ModelBakery#loadModel` and I can see BlockModelDefinition.fromJsonElement being called with automata_start. I also printed the state from the arguments of the tick function call and they look correct (https://github.com/beothorn/automataCraft/blob/1_20/src/main/java/br/com/isageek/automata/automata/Ticker.java#L32 ): blockState Block{automata:automata_start}[state=loadreplaceables] In game, all I see is the no textures. I think it is weird it is not the "missing texture" texture so I think it may be related to the material, but I had no success tweaking it (). So my cry for help is, anyone has any ideas? Is there a way to easily debug this, for example somewhere where I can list the textures for a given state, or make sure this is loaded.
    • FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'forge-1.8.9-11.15.1.2318-1.8.9-mdk'. > Could not resolve all dependencies for configuration ':classpath'. > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. Required by: :forge-1.8.9-11.15.1.2318-1.8.9-mdk:unspecified > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. > Unable to load Maven meta-data from https://jcenter.bintray.com/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml. > Could not GET 'https://jcenter.bintray.com/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml'. > peer not authenticated > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. > Unable to load Maven meta-data from http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml. > Could not GET 'http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml'. > peer not authenticated * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 2.78 secs This is the error I got. Any help would be appreciated!
    • Greetings, ladies and gentlemen. I know firsthand how distressing it can be to lose Bitcoin (BTC) to a phony online trading site. Thank God, when I became a victim of internet scammers, I came across genuine reviews of Captain WebGenesis. The Experts reviews on google were generally positive and reliable. Captain WebGenesis, a licensed cryptocurrency expert, helps persons who have fallen prey to investment scams recover their stolen funds. Captain WebGenesis miraculously recovered my wallet and all of my Bitcoins in roughly 48 hours. Captain WebGenesis is tried, trusted, and accessible to all victims of Bitcoin fraud. The service charge was pricey, but it was well worth it. If you need his help, get in touch with the Expert. SMS / Call; +1 (701)314-2729 Email; (captainwebgenesis(@)hackermail.com) Homepage; captainwebgenesis.com Salutations, Captain WebGenesis.
    • The mod causing the problem was (supplementaries-1.20-2.8.10). The solution I found is deleting it.
    • So I downloaded forge 1.20.6 today on my pc and it said that I was on beta but I had forge on my laptop (same version) and it didnt day anything about beta Anyone know what it is and how to fix it?  
  • Topics

×
×
  • Create New...

Important Information

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