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

    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. 📈 Skills: RPG-style skill system that enhances your gaming experience! 🎮 Leaderboards: Compete and shine! Top players are rewarded weekly! 🏆 Random Teleporter: Travel instantly across different worlds with a click! 🌐 Custom World Generation: Beautifully generated world. 🌍 Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. 🏰 Kits: Unlock ranks and gain access to various kits. 🛠️ Fishing Tournament: Compete in a friendly fishing tournament! 🎣 Chat Games: Enjoy games right within the chat! 🎲 Minions: Get some help from your loyal minions. 👥 Piñata Party: Enjoy a festive party with Piñatas! 🎉 Quests: Over 1000 quests that you can complete! 📜 Bounty Hunter: Set a bounty on a player's head. 💰 Tags: Displayed on nametags, in the tab list, and in chat. 🏷️ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! 🟢 Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. 🔲✨[ Player Warp: Set your own warp points for other players to teleport to. 🌟 Display Shop: Create your own shop and sell to other players! 🛒 Item Skins: Customize your items with unique skins. 🎨 Pets: Your cute loyal companion to follow you wherever you go! 🐾 Cosmetics: Enhance the look of your character with beautiful cosmetics! 💄 XP-Bottle: Store your exp safely in a bottle for later use! 🍶 Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! 📦 Glowing: Stand out from other players with a colorful glow! ✨ Player Particles: Over 100 unique particle effects to show off. 🎇 Portable Inventories: Over virtual inventories with ease. 🧳 And a lot more! Become part of our growing community today! Discord: https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working   I am not familiar with Linux - check for similar/related issues  
    • Create a new instance and start with Embeddium/Oculus and Valkyrien Skies Try different builds of Embeddium/Valkyrien Skies until you find a working combination - then add the rest of your mods one by one or in groups
    • There are some mods missing Missing or unsupported mandatory dependencies: Mod ID: 'octolib', Requested by: 'ramcompat', Expected range: '[0.1,)', Actual version: '[MISSING]' Mod ID: 'forge', Requested by: 'tfc', Expected range: '[47.1.3,47.1.6),[47.1.81,47.2.0),[47.2.6,)', Actual version: '47.2.0' Mod ID: 'relics', Requested by: 'ramcompat', Expected range: '[0.6.5,)', Actual version: '[MISSING]' Add octolib and relics and update tfc to build 47.2.6
    • Make a test with adding LMFT https://www.curseforge.com/minecraft/mc-mods/lmft
  • Topics

×
×
  • Create New...

Important Information

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