2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2011-11-21 01:55:26 +00:00
|
|
|
import static com.earth2me.essentials.I18n._;
|
2012-09-15 21:04:18 +00:00
|
|
|
import com.earth2me.essentials.Util;
|
|
|
|
import java.lang.management.ManagementFactory;
|
2012-05-17 10:25:02 +00:00
|
|
|
import org.bukkit.ChatColor;
|
2011-03-19 22:39:51 +00:00
|
|
|
import org.bukkit.Server;
|
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
|
|
|
|
|
|
public class Commandgc extends EssentialsCommand
|
|
|
|
{
|
|
|
|
public Commandgc()
|
|
|
|
{
|
|
|
|
super("gc");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-11-18 12:06:59 +00:00
|
|
|
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
2011-03-19 22:39:51 +00:00
|
|
|
{
|
2012-05-17 10:33:40 +00:00
|
|
|
float tps = ess.getTimer().getAverageTPS();
|
2012-05-17 10:25:02 +00:00
|
|
|
ChatColor color;
|
|
|
|
if (tps >= 18)
|
|
|
|
{
|
|
|
|
color = ChatColor.GREEN;
|
|
|
|
}
|
|
|
|
else if (tps >= 15)
|
|
|
|
{
|
|
|
|
color = ChatColor.YELLOW;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
color = ChatColor.RED;
|
|
|
|
}
|
2012-09-15 21:04:18 +00:00
|
|
|
|
|
|
|
sender.sendMessage(_("uptime", Util.formatDateDiff(ManagementFactory.getRuntimeMXBean().getStartTime())));
|
2012-05-17 10:25:02 +00:00
|
|
|
sender.sendMessage(_("tps", "" + color + tps));
|
2011-11-21 01:55:26 +00:00
|
|
|
sender.sendMessage(_("gcmax", (Runtime.getRuntime().maxMemory() / 1024 / 1024)));
|
|
|
|
sender.sendMessage(_("gctotal", (Runtime.getRuntime().totalMemory() / 1024 / 1024)));
|
2012-09-15 21:04:18 +00:00
|
|
|
sender.sendMessage(_("gcfree", (Runtime.getRuntime().freeMemory() / 1024 / 1024)));
|
2011-11-21 01:55:26 +00:00
|
|
|
|
This is a big refactoring of the user class and more.
Many commands have been cleaned.
File changes:
- all user data has been moved from users.yml to userdata folder
- all files in userdata folder are lower case
Both changes should be done automatically.
Class changes:
- Moved all user data functions to UserData class
- Moved all user teleport functions to Teleport class
- Moved the user list to Essentials class
- Less static functions for better testing
- EssentialsCommand now has ess Property (Essentials class)
- New NotEnoughArgumentsException, that will show command description and syntax
New commands:
- /seen, shows the last login or logout
- /tempban, temporarily ban someone
- /tjail and mute, temporarily option added
Other changes:
- ban reason is saved
- don't show "You have xxx mail" on login, if user doesn't have essentials.mail permission
- time will be parsed: years, months (mo), weeks, days, hours, minutes (m), seconds, these can be shortened and combined, example: 2 days 5h 30m
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1300 e251c2fe-e539-e718-e476-b85c1f46cddb
2011-05-01 21:07:30 +00:00
|
|
|
for (World w : server.getWorlds())
|
2011-03-19 22:39:51 +00:00
|
|
|
{
|
2012-08-06 10:54:55 +00:00
|
|
|
String worldType = "World";
|
|
|
|
switch (w.getEnvironment())
|
|
|
|
{
|
|
|
|
case NETHER:
|
|
|
|
worldType = "Nether";
|
|
|
|
break;
|
|
|
|
case THE_END:
|
|
|
|
worldType = "The End";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-03-19 22:39:51 +00:00
|
|
|
sender.sendMessage(
|
2012-09-09 15:15:12 +00:00
|
|
|
"\u00a76" + worldType + " \"" + w.getName() + "\": "
|
2011-11-21 01:55:26 +00:00
|
|
|
+ w.getLoadedChunks().length + _("gcchunks")
|
|
|
|
+ w.getEntities().size() + _("gcentities"));
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|
2012-09-15 21:04:18 +00:00
|
|
|
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|
|
|
|
}
|