66 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.server.gui;
 | |
| 
 | |
| import java.awt.Color;
 | |
| import java.awt.Dimension;
 | |
| import java.awt.Graphics;
 | |
| import java.text.DecimalFormat;
 | |
| import java.text.DecimalFormatSymbols;
 | |
| import java.util.Locale;
 | |
| import javax.swing.JComponent;
 | |
| import javax.swing.Timer;
 | |
| import net.minecraft.Util;
 | |
| import net.minecraft.server.MinecraftServer;
 | |
| import net.minecraft.util.TimeUtil;
 | |
| 
 | |
| public class StatsComponent extends JComponent {
 | |
| 	private static final DecimalFormat DECIMAL_FORMAT = Util.make(
 | |
| 		new DecimalFormat("########0.000"), decimalFormat -> decimalFormat.setDecimalFormatSymbols(DecimalFormatSymbols.getInstance(Locale.ROOT))
 | |
| 	);
 | |
| 	private final int[] values = new int[256];
 | |
| 	private int vp;
 | |
| 	private final String[] msgs = new String[11];
 | |
| 	private final MinecraftServer server;
 | |
| 	private final Timer timer;
 | |
| 
 | |
| 	public StatsComponent(MinecraftServer server) {
 | |
| 		this.server = server;
 | |
| 		this.setPreferredSize(new Dimension(456, 246));
 | |
| 		this.setMinimumSize(new Dimension(456, 246));
 | |
| 		this.setMaximumSize(new Dimension(456, 246));
 | |
| 		this.timer = new Timer(500, actionEvent -> this.tick());
 | |
| 		this.timer.start();
 | |
| 		this.setBackground(Color.BLACK);
 | |
| 	}
 | |
| 
 | |
| 	private void tick() {
 | |
| 		long l = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory();
 | |
| 		this.msgs[0] = "Memory use: " + l / 1024L / 1024L + " mb (" + Runtime.getRuntime().freeMemory() * 100L / Runtime.getRuntime().maxMemory() + "% free)";
 | |
| 		this.msgs[1] = "Avg tick: " + DECIMAL_FORMAT.format((double)this.server.getAverageTickTimeNanos() / TimeUtil.NANOSECONDS_PER_MILLISECOND) + " ms";
 | |
| 		this.values[this.vp++ & 0xFF] = (int)(l * 100L / Runtime.getRuntime().maxMemory());
 | |
| 		this.repaint();
 | |
| 	}
 | |
| 
 | |
| 	public void paint(Graphics graphics) {
 | |
| 		graphics.setColor(new Color(16777215));
 | |
| 		graphics.fillRect(0, 0, 456, 246);
 | |
| 
 | |
| 		for (int i = 0; i < 256; i++) {
 | |
| 			int j = this.values[i + this.vp & 0xFF];
 | |
| 			graphics.setColor(new Color(j + 28 << 16));
 | |
| 			graphics.fillRect(i, 100 - j, 1, j);
 | |
| 		}
 | |
| 
 | |
| 		graphics.setColor(Color.BLACK);
 | |
| 
 | |
| 		for (int i = 0; i < this.msgs.length; i++) {
 | |
| 			String string = this.msgs[i];
 | |
| 			if (string != null) {
 | |
| 				graphics.drawString(string, 32, 116 + i * 16);
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	public void close() {
 | |
| 		this.timer.stop();
 | |
| 	}
 | |
| }
 |