2010-12-22 16:22:23 +01:00
package net.minecraft.server ;
2012-07-29 09:33:13 +02:00
import java.awt.GraphicsEnvironment ;
2010-12-22 16:22:23 +01:00
import java.io.File ;
2012-07-29 09:33:13 +02:00
import java.security.KeyPair ;
import java.text.SimpleDateFormat ;
2010-12-22 16:22:23 +01:00
import java.util.ArrayList ;
2012-07-29 09:33:13 +02:00
import java.util.Date ;
2010-12-28 20:52:24 +01:00
import java.util.Iterator ;
2010-12-22 16:22:23 +01:00
import java.util.List ;
2012-07-29 09:33:13 +02:00
import java.util.concurrent.Callable ;
2010-12-22 16:22:23 +01:00
import java.util.logging.Level ;
import java.util.logging.Logger ;
2010-12-28 20:52:24 +01:00
2011-01-11 09:25:13 +01:00
// CraftBukkit start
2012-03-14 21:59:14 +01:00
import jline.console.ConsoleReader ;
2011-01-11 09:25:13 +01:00
import joptsimple.OptionSet ;
2012-07-22 08:18:00 +02:00
2011-05-26 14:48:22 +02:00
import org.bukkit.World.Environment ;
2012-01-30 21:51:53 +01:00
import org.bukkit.event.server.RemoteServerCommandEvent ;
2011-03-26 23:20:35 +01:00
import org.bukkit.event.world.WorldSaveEvent ;
2012-08-03 13:24:55 +02:00
import org.bukkit.event.player.PlayerChatEvent ;
2011-07-28 16:35:50 +02:00
// CraftBukkit end
2010-12-22 16:22:23 +01:00
2012-07-29 09:33:13 +02:00
public abstract class MinecraftServer implements Runnable , IMojangStatistics , ICommandListener {
2010-12-22 16:22:23 +01:00
2011-04-20 19:05:14 +02:00
public static Logger log = Logger . getLogger ( " Minecraft " ) ;
2012-07-29 09:33:13 +02:00
private static MinecraftServer l = null ;
public Convertable convertable ; // CraftBukkit - private final -> public
private final MojangStatisticsGenerator n = new MojangStatisticsGenerator ( " server " , this ) ;
public File universe ; // CraftBukkit - private final -> public
private final List p = new ArrayList ( ) ;
private final ICommandHandler q ;
public final MethodProfiler methodProfiler = new MethodProfiler ( ) ;
private String serverIp ;
private int s = - 1 ;
2011-05-28 22:50:08 +02:00
// public WorldServer[] worldServer; // CraftBukkit - removed!
2012-07-29 09:33:13 +02:00
private ServerConfigurationManagerAbstract t ;
2011-04-20 19:05:14 +02:00
private boolean isRunning = true ;
2012-07-29 09:33:13 +02:00
private boolean isStopped = false ;
private int ticks = 0 ;
public String d ;
public int e ;
private boolean onlineMode ;
private boolean spawnAnimals ;
private boolean spawnNPCs ;
private boolean pvpMode ;
private boolean allowFlight ;
private String motd ;
private int D ;
2012-03-01 11:49:23 +01:00
private long E ;
private long F ;
private long G ;
private long H ;
2012-07-29 09:33:13 +02:00
public final long [ ] f = new long [ 100 ] ;
public final long [ ] g = new long [ 100 ] ;
public final long [ ] h = new long [ 100 ] ;
public final long [ ] i = new long [ 100 ] ;
public final long [ ] j = new long [ 100 ] ;
public long [ ] [ ] k ;
private KeyPair I ;
private String J ;
private String K ;
private boolean demoMode ;
private boolean N ;
private boolean O ;
private String P = " " ;
private boolean Q = false ;
private long R ;
private String S ;
private boolean T ;
2010-12-28 20:52:24 +01:00
2011-02-23 13:56:36 +01:00
// CraftBukkit start
2011-05-26 23:15:27 +02:00
public List < WorldServer > worlds = new ArrayList < WorldServer > ( ) ;
2012-07-22 08:18:00 +02:00
public org . bukkit . craftbukkit . CraftServer server ;
2011-01-29 22:50:29 +01:00
public OptionSet options ;
2012-07-22 08:18:00 +02:00
public org . bukkit . command . ConsoleCommandSender console ;
public org . bukkit . command . RemoteConsoleCommandSender remoteConsole ;
2011-02-25 17:12:38 +01:00
public ConsoleReader reader ;
2011-05-09 20:51:01 +02:00
public static int currentTick ;
2012-06-14 04:52:49 +02:00
public final Thread primaryThread ;
2012-08-03 13:24:55 +02:00
public java . util . Queue < PlayerChatEvent > chatQueue = new java . util . concurrent . ConcurrentLinkedQueue < PlayerChatEvent > ( ) ;
2011-05-14 16:29:42 +02:00
// CraftBukkit end
2010-12-22 16:22:23 +01:00
2012-07-29 09:33:13 +02:00
public MinecraftServer ( OptionSet options ) { // CraftBukkit - signature file -> OptionSet
l = this ;
// this.universe = file1; // CraftBukkit
this . q = new CommandDispatcher ( ) ;
// this.convertable = new WorldLoaderServer(server.getWorldContainer()); // CraftBukkit - moved to DedicatedServer.init
2011-02-25 17:12:38 +01:00
2011-06-12 00:02:58 +02:00
// CraftBukkit start
2011-02-25 17:12:38 +01:00
this . options = options ;
try {
2012-03-14 21:59:14 +01:00
this . reader = new ConsoleReader ( System . in , System . out ) ;
this . reader . setExpandEvents ( false ) ; // Avoid parsing exceptions for uncommonly used event designators
2012-05-23 06:44:03 +02:00
} catch ( Exception e ) {
try {
// Try again with jline disabled for Windows users without C++ 2008 Redistributable
System . setProperty ( " jline.terminal " , " jline.UnsupportedTerminal " ) ;
System . setProperty ( " user.language " , " en " ) ;
org . bukkit . craftbukkit . Main . useJline = false ;
this . reader = new ConsoleReader ( System . in , System . out ) ;
this . reader . setExpandEvents ( false ) ;
2012-07-29 09:33:13 +02:00
} catch ( java . io . IOException ex ) {
2012-05-23 06:44:03 +02:00
Logger . getLogger ( MinecraftServer . class . getName ( ) ) . log ( Level . SEVERE , null , ex ) ;
}
2011-02-25 17:12:38 +01:00
}
2012-07-22 08:18:00 +02:00
Runtime . getRuntime ( ) . addShutdownHook ( new org . bukkit . craftbukkit . util . ServerShutdownThread ( this ) ) ;
2012-06-14 04:52:49 +02:00
2012-07-29 09:33:13 +02:00
primaryThread = new ThreadServerApplication ( this , " Server thread " ) ; // Moved from main
2011-02-21 23:30:01 +01:00
}
2012-07-29 09:33:13 +02:00
public abstract PropertyManager getPropertyManager ( ) ; // protected -> public
// CraftBukkit end
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
protected abstract boolean init ( ) throws java . net . UnknownHostException ; // CraftBukkit - throws UnknownHostException
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
protected void c ( String s ) {
if ( this . getConvertable ( ) . isConvertable ( s ) ) {
log . info ( " Converting map! " ) ;
this . d ( " menu.convertingLevel " ) ;
this . getConvertable ( ) . convert ( s , new ConvertProgressUpdater ( this ) ) ;
2011-06-17 05:49:58 +02:00
}
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
protected synchronized void d ( String s ) {
this . S = s ;
}
2011-02-23 03:37:56 +01:00
2012-07-29 09:33:13 +02:00
protected void a ( String s , String s1 , long i , WorldType worldtype ) {
this . c ( s ) ;
this . d ( " menu.loadingLevel " ) ;
2011-11-20 09:01:14 +01:00
// CraftBukkit - removed world and ticktime arrays
2012-07-29 09:33:13 +02:00
IDataManager idatamanager = this . convertable . a ( s , true ) ;
WorldData worlddata = idatamanager . getWorldData ( ) ;
// CraftBukkit start - removed worldsettings
2011-11-24 19:48:01 +01:00
int worldCount = 3 ;
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
for ( int j = 0 ; j < worldCount ; + + j ) {
2011-05-26 14:48:22 +02:00
WorldServer world ;
2011-11-20 09:01:14 +01:00
int dimension = 0 ;
2012-07-29 09:33:13 +02:00
if ( j = = 1 ) {
if ( this . getAllowNether ( ) ) {
2011-11-24 19:48:01 +01:00
dimension = - 1 ;
} else {
continue ;
}
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
if ( j = = 2 ) {
// don't do this in server.properties, do it in bukkit.yml
2011-12-09 18:55:36 +01:00
if ( this . server . getAllowEnd ( ) ) {
dimension = 1 ;
} else {
continue ;
}
2011-11-20 09:01:14 +01:00
}
2011-06-22 19:27:27 +02:00
String worldType = Environment . getEnvironment ( dimension ) . toString ( ) . toLowerCase ( ) ;
String name = ( dimension = = 0 ) ? s : s + " _ " + worldType ;
2012-07-22 08:18:00 +02:00
org . bukkit . generator . ChunkGenerator gen = this . server . getGenerator ( name ) ;
2012-07-29 09:33:13 +02:00
WorldSettings worldsettings = new WorldSettings ( i , this . getGamemode ( ) , this . getGenerateStructures ( ) , false , worldtype ) ;
2011-02-05 19:15:04 +01:00
2012-07-29 09:33:13 +02:00
if ( j = = 0 ) {
if ( this . L ( ) ) { // Strip out DEMO?
// CraftBukkit
world = new DemoWorldServer ( this , new ServerNBTManager ( server . getWorldContainer ( ) , s1 , true ) , s1 , dimension , this . methodProfiler ) ;
} else {
// CraftBukkit
world = new WorldServer ( this , new ServerNBTManager ( server . getWorldContainer ( ) , s1 , true ) , s1 , dimension , worldsettings , this . methodProfiler , org . bukkit . World . Environment . getEnvironment ( dimension ) , gen ) ;
}
2011-05-26 14:48:22 +02:00
} else {
2011-12-19 17:26:11 +01:00
String dim = " DIM " + dimension ;
2011-06-16 22:41:01 +02:00
File newWorld = new File ( new File ( name ) , dim ) ;
File oldWorld = new File ( new File ( s ) , dim ) ;
2011-06-17 08:29:16 +02:00
2011-06-16 22:41:01 +02:00
if ( ( ! newWorld . isDirectory ( ) ) & & ( oldWorld . isDirectory ( ) ) ) {
log . info ( " ---- Migration of old " + worldType + " folder required ---- " ) ;
log . info ( " Unfortunately due to the way that Minecraft implemented multiworld support in 1.6, Bukkit requires that you move your " + worldType + " folder to a new location in order to operate correctly. " ) ;
log . info ( " We will move this folder for you, but it will mean that you need to move it back should you wish to stop using Bukkit in the future. " ) ;
log . info ( " Attempting to move " + oldWorld + " to " + newWorld + " ... " ) ;
if ( newWorld . exists ( ) ) {
log . severe ( " A file or folder already exists at " + newWorld + " ! " ) ;
log . info ( " ---- Migration of old " + worldType + " folder failed ---- " ) ;
} else if ( newWorld . getParentFile ( ) . mkdirs ( ) ) {
if ( oldWorld . renameTo ( newWorld ) ) {
2011-12-19 17:26:11 +01:00
log . info ( " Success! To restore " + worldType + " in the future, simply move " + newWorld + " to " + oldWorld ) ;
2011-06-16 22:41:01 +02:00
log . info ( " ---- Migration of old " + worldType + " folder complete ---- " ) ;
} else {
log . severe ( " Could not move folder " + oldWorld + " to " + newWorld + " ! " ) ;
log . info ( " ---- Migration of old " + worldType + " folder failed ---- " ) ;
}
} else {
log . severe ( " Could not create path for " + newWorld + " ! " ) ;
log . info ( " ---- Migration of old " + worldType + " folder failed ---- " ) ;
}
}
2012-07-29 09:33:13 +02:00
this . c ( name ) ;
2012-03-02 14:17:20 +01:00
2012-07-29 09:33:13 +02:00
// CraftBukkit
world = new SecondaryWorldServer ( this , new ServerNBTManager ( server . getWorldContainer ( ) , name , true ) , name , dimension , worldsettings , this . worlds . get ( 0 ) , this . methodProfiler , org . bukkit . World . Environment . getEnvironment ( dimension ) , gen ) ;
2011-06-22 19:27:27 +02:00
}
if ( gen ! = null ) {
world . getWorld ( ) . getPopulators ( ) . addAll ( gen . getDefaultPopulators ( world . getWorld ( ) ) ) ;
2011-05-26 14:48:22 +02:00
}
2012-08-02 17:14:01 +02:00
this . server . getPluginManager ( ) . callEvent ( new org . bukkit . event . world . WorldInitEvent ( world . getWorld ( ) ) ) ;
2011-05-26 14:48:22 +02:00
world . addIWorldAccess ( new WorldManager ( this , world ) ) ;
2012-07-29 09:33:13 +02:00
if ( ! this . H ( ) ) {
world . getWorldData ( ) . setGameType ( this . getGamemode ( ) ) ;
}
2011-06-27 00:25:01 +02:00
this . worlds . add ( world ) ;
2012-07-29 09:33:13 +02:00
this . t . setPlayerFileData ( this . worlds . toArray ( new WorldServer [ this . worlds . size ( ) ] ) ) ;
// CraftBukkit end
2011-05-26 14:48:22 +02:00
}
2011-02-05 19:15:04 +01:00
2012-07-29 09:33:13 +02:00
this . c ( this . getDifficulty ( ) ) ;
this . d ( ) ;
}
protected void d ( ) {
2011-01-29 22:50:29 +01:00
short short1 = 196 ;
2012-07-29 09:33:13 +02:00
long i = System . currentTimeMillis ( ) ;
this . d ( " menu.generatingTerrain " ) ;
2011-01-29 22:50:29 +01:00
2011-06-18 05:23:34 +02:00
// CraftBukkit start
2012-07-29 09:33:13 +02:00
for ( int j = 0 ; j < this . worlds . size ( ) ; + + j ) {
WorldServer worldserver = this . worlds . get ( j ) ;
log . info ( " Preparing start region for level " + j + " (Seed: " + worldserver . getSeed ( ) + " ) " ) ;
2012-01-12 23:10:13 +01:00
if ( ! worldserver . getWorld ( ) . getKeepSpawnInMemory ( ) ) {
continue ;
}
// CraftBukkit end
ChunkCoordinates chunkcoordinates = worldserver . getSpawn ( ) ;
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
for ( int k = - short1 ; k < = short1 & & this . isRunning ( ) ; k + = 16 ) {
for ( int l = - short1 ; l < = short1 & & this . isRunning ( ) ; l + = 16 ) {
long i1 = System . currentTimeMillis ( ) ;
2011-05-26 14:48:22 +02:00
2012-07-29 09:33:13 +02:00
if ( i1 < i ) {
i = i1 ;
2012-01-12 23:10:13 +01:00
}
2011-01-14 14:31:10 +01:00
2012-07-29 09:33:13 +02:00
if ( i1 > i + 1000L ) {
int j1 = ( short1 * 2 + 1 ) * ( short1 * 2 + 1 ) ;
int k1 = ( k + short1 ) * ( short1 * 2 + 1 ) + l + 1 ;
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
this . a_ ( " Preparing spawn area " , k1 * 100 / j1 ) ;
i = i1 ;
2012-01-12 23:10:13 +01:00
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
worldserver . chunkProviderServer . getChunkAt ( chunkcoordinates . x + k > > 4 , chunkcoordinates . z + l > > 4 ) ;
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
while ( worldserver . updateLights ( ) & & this . isRunning ( ) ) {
2012-01-12 23:10:13 +01:00
;
2011-02-05 19:15:04 +01:00
}
2010-12-22 16:22:23 +01:00
}
2012-01-12 23:10:13 +01:00
}
2010-12-22 16:22:23 +01:00
}
2010-12-28 20:52:24 +01:00
2011-06-27 00:25:01 +02:00
// CraftBukkit start
for ( World world : this . worlds ) {
2012-07-22 08:18:00 +02:00
this . server . getPluginManager ( ) . callEvent ( new org . bukkit . event . world . WorldLoadEvent ( world . getWorld ( ) ) ) ;
2011-06-22 19:33:23 +02:00
}
2011-06-27 00:25:01 +02:00
// CraftBukkit end
2011-06-22 19:33:23 +02:00
2012-07-29 09:33:13 +02:00
this . i ( ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
public abstract boolean getGenerateStructures ( ) ;
public abstract EnumGamemode getGamemode ( ) ;
public abstract int getDifficulty ( ) ;
public abstract boolean isHardcore ( ) ;
protected void a_ ( String s , int i ) {
this . d = s ;
this . e = i ;
2011-04-20 19:05:14 +02:00
log . info ( s + " : " + i + " % " ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
protected void i ( ) {
this . d = null ;
this . e = 0 ;
2011-01-11 09:25:13 +01:00
2012-07-22 08:18:00 +02:00
this . server . enablePlugins ( org . bukkit . plugin . PluginLoadOrder . POSTWORLD ) ; // CraftBukkit
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
protected void saveChunks ( boolean flag ) throws ExceptionWorldConflict { // CraftBukkit - added throws
if ( ! this . O ) {
// CraftBukkit start
for ( int j = 0 ; j < this . worlds . size ( ) ; + + j ) {
WorldServer worldserver = this . worlds . get ( j ) ;
2011-02-05 19:15:04 +01:00
2012-07-29 09:33:13 +02:00
if ( worldserver ! = null ) {
if ( ! flag ) {
log . info ( " Saving chunks for level \ ' " + worldserver . getWorldData ( ) . getName ( ) + " \ '/ " + worldserver . worldProvider ) ;
}
2011-02-19 21:29:51 +01:00
2012-08-08 00:52:53 +02:00
worldserver . save ( false , ( IProgressUpdate ) null ) ; // Queue chunk saving
2012-07-29 09:33:13 +02:00
worldserver . saveLevel ( ) ;
2011-05-26 14:48:22 +02:00
2012-07-29 09:33:13 +02:00
WorldSaveEvent event = new WorldSaveEvent ( worldserver . getWorld ( ) ) ;
this . server . getPluginManager ( ) . callEvent ( event ) ;
}
}
// CraftBukkit end
2011-05-16 23:29:57 +02:00
}
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
public void stop ( ) throws ExceptionWorldConflict { // CraftBukkit - added throws
if ( ! this . O ) {
log . info ( " Stopping server " ) ;
// CraftBukkit start
if ( this . server ! = null ) {
this . server . disablePlugins ( ) ;
}
// CraftBukkit end
2011-02-02 00:32:18 +01:00
2012-07-29 09:33:13 +02:00
if ( this . ac ( ) ! = null ) {
this . ac ( ) . a ( ) ;
}
2011-01-27 22:15:41 +01:00
2012-07-29 09:33:13 +02:00
if ( this . t ! = null ) {
log . info ( " Saving players " ) ;
this . t . savePlayers ( ) ;
this . t . r ( ) ;
}
2011-05-26 14:48:22 +02:00
2012-07-29 09:33:13 +02:00
log . info ( " Saving worlds " ) ;
this . saveChunks ( false ) ;
/ * CraftBukkit start - handled in saveChunks
WorldServer [ ] aworldserver = this . worldServer ;
int i = aworldserver . length ;
for ( int j = 0 ; j < i ; + + j ) {
WorldServer worldserver = aworldserver [ j ] ;
worldserver . saveLevel ( ) ;
}
// CraftBukkit end */
if ( this . n ! = null & & this . n . d ( ) ) {
this . n . e ( ) ;
2012-01-12 23:10:13 +01:00
}
2012-07-29 09:33:13 +02:00
}
}
public String getServerIp ( ) {
return this . serverIp ;
}
public void e ( String s ) {
this . serverIp = s ;
}
public boolean isRunning ( ) {
return this . isRunning ;
2010-12-22 16:22:23 +01:00
}
2011-09-24 23:03:31 +02:00
public void safeShutdown ( ) {
2011-04-20 19:05:14 +02:00
this . isRunning = false ;
2010-12-22 16:22:23 +01:00
}
public void run ( ) {
try {
2011-04-20 19:05:14 +02:00
if ( this . init ( ) ) {
2011-01-29 22:50:29 +01:00
long i = System . currentTimeMillis ( ) ;
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
for ( long j = 0L ; this . isRunning ; this . Q = true ) {
2011-01-29 22:50:29 +01:00
long k = System . currentTimeMillis ( ) ;
long l = k - i ;
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
if ( l > 2000L & & i - this . R > = 15000L ) {
if ( this . server . getWarnOnOverload ( ) ) // CraftBukkit - Added option to suppress warning messages
2011-04-20 19:05:14 +02:00
log . warning ( " Can \ 't keep up! Did the system time change, or is the server overloaded? " ) ;
2011-01-29 22:50:29 +01:00
l = 2000L ;
2012-07-29 09:33:13 +02:00
this . R = i ;
2010-12-22 16:22:23 +01:00
}
2011-01-29 22:50:29 +01:00
if ( l < 0L ) {
2011-04-20 19:05:14 +02:00
log . warning ( " Time ran backwards! Did the system time change? " ) ;
2011-01-29 22:50:29 +01:00
l = 0L ;
2010-12-22 16:22:23 +01:00
}
2011-01-29 22:50:29 +01:00
j + = l ;
i = k ;
2011-05-28 22:50:08 +02:00
if ( this . worlds . get ( 0 ) . everyoneDeeplySleeping ( ) ) { // CraftBukkit
2012-07-29 09:33:13 +02:00
this . p ( ) ;
2011-02-23 03:37:56 +01:00
j = 0L ;
} else {
while ( j > 50L ) {
2011-05-09 20:51:01 +02:00
MinecraftServer . currentTick = ( int ) ( System . currentTimeMillis ( ) / 50 ) ; // CraftBukkit
2011-02-23 03:37:56 +01:00
j - = 50L ;
2012-07-29 09:33:13 +02:00
this . p ( ) ;
2011-02-23 03:37:56 +01:00
}
2010-12-22 16:22:23 +01:00
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
Thread . sleep ( 1L ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
} else {
this . a ( ( CrashReport ) null ) ;
2010-12-22 16:22:23 +01:00
}
2011-02-23 03:37:56 +01:00
} catch ( Throwable throwable ) {
throwable . printStackTrace ( ) ;
2012-07-29 09:33:13 +02:00
log . log ( Level . SEVERE , " Encountered an unexpected exception " + throwable . getClass ( ) . getSimpleName ( ) , throwable ) ;
CrashReport crashreport = null ;
if ( throwable instanceof ReportedException ) {
crashreport = this . b ( ( ( ReportedException ) throwable ) . a ( ) ) ;
} else {
crashreport = this . b ( new CrashReport ( " Exception in server tick loop " , throwable ) ) ;
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
File file1 = new File ( new File ( this . n ( ) , " crash-reports " ) , " crash- " + ( new SimpleDateFormat ( " yyyy-MM-dd_HH.mm.ss " ) ) . format ( new Date ( ) ) + " -server.txt " ) ;
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if ( crashreport . a ( file1 ) ) {
log . severe ( " This crash report has been saved to: " + file1 . getAbsolutePath ( ) ) ;
} else {
log . severe ( " We were unable to save this crash report to disk. " ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
this . a ( crashreport ) ;
2010-12-22 16:22:23 +01:00
} finally {
2011-01-14 14:31:10 +01:00
try {
2011-04-20 19:05:14 +02:00
this . stop ( ) ;
this . isStopped = true ;
2012-07-29 09:33:13 +02:00
} catch ( Throwable throwable1 ) {
throwable1 . printStackTrace ( ) ;
} finally {
2012-03-14 21:59:14 +01:00
// CraftBukkit start - restore terminal to original settings
try {
this . reader . getTerminal ( ) . restore ( ) ;
} catch ( Exception e ) {
}
// CraftBukkit end
2012-07-29 09:33:13 +02:00
this . o ( ) ;
2011-01-14 14:31:10 +01:00
}
2010-12-22 16:22:23 +01:00
}
}
2012-07-29 09:33:13 +02:00
protected File n ( ) {
return new File ( " . " ) ;
}
protected void a ( CrashReport crashreport ) { }
protected void o ( ) { }
protected void p ( ) throws ExceptionWorldConflict { // CraftBukkit - added throws
2011-11-20 09:01:14 +01:00
long i = System . nanoTime ( ) ;
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
AxisAlignedBB . a ( ) . a ( ) ;
Vec3D . a ( ) . a ( ) ;
+ + this . ticks ;
if ( this . T ) {
this . T = false ;
// this.methodProfiler.a = true; // CraftBukkit - not in production code
// this.methodProfiler.a(); // CraftBukkit - not in production code
}
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
// this.methodProfiler.a("root"); // CraftBukkit - not in production code
this . q ( ) ;
if ( this . ticks % 900 = = 0 ) {
// this.methodProfiler.a("save"); // CraftBukkit - not in production code
this . t . savePlayers ( ) ;
this . saveChunks ( true ) ;
// this.methodProfiler.b(); // CraftBukkit - not in production code
2010-12-22 16:22:23 +01:00
}
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
// this.methodProfiler.a("tallying"); // CraftBukkit - not in production code
this . j [ this . ticks % 100 ] = System . nanoTime ( ) - i ;
this . f [ this . ticks % 100 ] = Packet . p - this . E ;
this . E = Packet . p ;
this . g [ this . ticks % 100 ] = Packet . q - this . F ;
this . F = Packet . q ;
this . h [ this . ticks % 100 ] = Packet . n - this . G ;
this . G = Packet . n ;
this . i [ this . ticks % 100 ] = Packet . o - this . H ;
this . H = Packet . o ;
// this.methodProfiler.b(); // CraftBukkit - not in production code
// this.methodProfiler.a("snooper"); // CraftBukkit - not in production code
if ( ! this . n . d ( ) & & this . ticks > 100 ) {
this . n . a ( ) ;
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if ( this . ticks % 6000 = = 0 ) {
this . n . b ( ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
// this.methodProfiler.b(); // CraftBukkit - not in production code
// this.methodProfiler.b(); // CraftBukkit - not in production code
}
2011-02-05 19:15:04 +01:00
2012-07-29 09:33:13 +02:00
public void q ( ) {
// this.methodProfiler.a("levels"); // CraftBukkit - not in production code
2011-08-07 05:45:56 +02:00
2012-07-29 09:33:13 +02:00
// CraftBukkit start - only send timeupdates to the people in that world
this . server . getScheduler ( ) . mainThreadHeartbeat ( this . ticks ) ;
2011-02-07 02:59:06 +01:00
2012-08-03 13:24:55 +02:00
// Fix for old plugins still using deprecated event
while ( ! chatQueue . isEmpty ( ) ) {
PlayerChatEvent event = chatQueue . remove ( ) ;
org . bukkit . Bukkit . getPluginManager ( ) . callEvent ( event ) ;
if ( event . isCancelled ( ) ) {
continue ;
}
String message = String . format ( event . getFormat ( ) , event . getPlayer ( ) . getDisplayName ( ) , event . getMessage ( ) ) ;
console . sendMessage ( message ) ;
if ( ( ( org . bukkit . craftbukkit . util . LazyPlayerSet ) event . getRecipients ( ) ) . isLazy ( ) ) {
for ( Object player : getServerConfigurationManager ( ) . players ) {
( ( EntityPlayer ) player ) . sendMessage ( message ) ;
}
} else {
for ( org . bukkit . entity . Player player : event . getRecipients ( ) ) {
player . sendMessage ( message ) ;
}
}
}
2011-09-23 20:20:18 +02:00
// Send timeupdates to everyone, it will get the right time from the world the player is in.
if ( this . ticks % 20 = = 0 ) {
2012-07-29 09:33:13 +02:00
for ( int i = 0 ; i < this . getServerConfigurationManager ( ) . players . size ( ) ; + + i ) {
EntityPlayer entityplayer = ( EntityPlayer ) this . getServerConfigurationManager ( ) . players . get ( i ) ;
2011-09-23 20:20:18 +02:00
entityplayer . netServerHandler . sendPacket ( new Packet4UpdateTime ( entityplayer . getPlayerTime ( ) ) ) ; // Add support for per player time
}
}
2012-07-29 09:33:13 +02:00
for ( int i = 0 ; i < this . worlds . size ( ) ; + + i ) {
long j = System . nanoTime ( ) ;
// if (i == 0 || this.getAllowNether()) {
WorldServer worldserver = this . worlds . get ( i ) ;
2011-09-23 20:20:18 +02:00
/ * Drop global timeupdates
2012-07-29 09:33:13 +02:00
this . b . a ( worldserver . getWorldData ( ) . j ( ) ) ;
2011-05-28 22:50:08 +02:00
if ( this . ticks % 20 = = 0 ) {
2012-07-29 09:33:13 +02:00
this . b . a ( " timeSync " ) ;
this . t . a ( new Packet4UpdateTime ( worldserver . getTime ( ) ) , worldserver . worldProvider . dimension ) ;
this . b . b ( ) ;
2011-05-26 14:48:22 +02:00
}
2011-09-23 20:20:18 +02:00
// CraftBukkit end */
2011-02-19 21:29:51 +01:00
2012-07-29 09:33:13 +02:00
// this.methodProfiler.a("tick"); // CraftBukkit - not in production code
2011-05-28 22:50:08 +02:00
worldserver . doTick ( ) ;
2012-07-29 09:33:13 +02:00
// this.methodProfiler.c("lights"); // CraftBukkit - not in production code
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
while ( true ) {
2011-11-30 00:17:43 +01:00
if ( ! worldserver . updateLights ( ) ) {
2012-07-29 09:33:13 +02:00
// this.methodProfiler.b(); // CraftBukkit - not in production code
Process entity ticks on worlds without players. Fixes BUKKIT-2031
Both the CB 1.3.1 code, and vanilla 1.3.1 code, have modified the
behavior of entity tick processing in a way that can lead to disabling
of entity cleanup. Specifically, the tickEntities() call in n.m.s.World,
which processes both the entity cleanup (removing from the world entity
list) and tile entity tick processing (furnaces and such) does not get
called by n.m.s.MinecraftServer's q() method (which drives tick
processing calls in general) when no players are on the given world.
This causes a serious memory leak when automation processes, like dynmap
mapping, load and unload chunks - as entities on unloaded chunks are
only cleaned up during entity tick processing. It also will cause issues
with any mods that use persistent chunk loading (that is, keeping chunks
loaded so that tile entities will continue being processed), since such
processing will no longer function without at least one player on the
given world.
In any case, the tickEntities() call should be called in the same
fashion as under 1.2.x (each tick, independent of player population, as
opposed to being suspended indefinitely when no players are on the given
world). The specific memory leak observed, with removing the unloaded
entites from the world, requires this call be made regularly (or, at
least, whenever the entity unload queue (world.g) is not empty.
Closes GH-832
2012-08-03 08:19:10 +02:00
if ( true | | ! worldserver . players . isEmpty ( ) ) { // CraftBukkit - this prevents entity cleanup, other issue on servers with no players
2012-07-29 09:33:13 +02:00
worldserver . tickEntities ( ) ;
}
// this.methodProfiler.a("tracker"); // CraftBukkit - not in production code
worldserver . getTracker ( ) . updatePlayers ( ) ;
// this.methodProfiler.b(); // CraftBukkit - not in production code
// this.methodProfiler.b(); // CraftBukkit - not in production code
2011-11-20 09:01:14 +01:00
break ;
}
2011-05-28 22:50:08 +02:00
}
2012-07-29 09:33:13 +02:00
// } // CraftBukkit
2011-05-26 14:48:22 +02:00
2012-07-29 09:33:13 +02:00
// this.k[i][this.ticks % 100] = System.nanoTime() - j; // CraftBukkit
2011-05-26 14:48:22 +02:00
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
// this.methodProfiler.c("connection"); // CraftBukkit - not in production code
this . ac ( ) . b ( ) ;
// this.methodProfiler.c("players"); // CraftBukkit - not in production code
this . t . tick ( ) ;
// this.methodProfiler.c("tickables"); // CraftBukkit - not in production code
Iterator iterator = this . p . iterator ( ) ;
2010-12-28 20:52:24 +01:00
2012-07-29 09:33:13 +02:00
while ( iterator . hasNext ( ) ) {
IUpdatePlayerListBox iupdateplayerlistbox = ( IUpdatePlayerListBox ) iterator . next ( ) ;
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
iupdateplayerlistbox . a ( ) ;
}
2010-12-22 16:22:23 +01:00
2012-07-29 09:33:13 +02:00
// this.methodProfiler.b(); // CraftBukkit - not in production code
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
public boolean getAllowNether ( ) {
return true ;
2010-12-22 16:22:23 +01:00
}
2010-12-28 20:52:24 +01:00
public void a ( IUpdatePlayerListBox iupdateplayerlistbox ) {
2012-07-29 09:33:13 +02:00
this . p . add ( iupdateplayerlistbox ) ;
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
public static void main ( final OptionSet options ) { // CraftBukkit - replaces main(String[] astring)
2011-04-20 22:47:26 +02:00
StatisticList . a ( ) ;
2010-12-22 16:22:23 +01:00
try {
2012-07-29 09:33:13 +02:00
/ * CraftBukkit start - replace everything
boolean flag = false ;
String s = null ;
String s1 = " . " ;
String s2 = null ;
boolean flag1 = false ;
boolean flag2 = false ;
int i = - 1 ;
for ( int j = 0 ; j < astring . length ; + + j ) {
String s3 = astring [ j ] ;
String s4 = j = = astring . length - 1 ? null : astring [ j + 1 ] ;
boolean flag3 = false ;
if ( ! s3 . equals ( " nogui " ) & & ! s3 . equals ( " --nogui " ) ) {
if ( s3 . equals ( " --port " ) & & s4 ! = null ) {
flag3 = true ;
try {
i = Integer . parseInt ( s4 ) ;
} catch ( NumberFormatException numberformatexception ) {
;
}
} else if ( s3 . equals ( " --singleplayer " ) & & s4 ! = null ) {
flag3 = true ;
s = s4 ;
} else if ( s3 . equals ( " --universe " ) & & s4 ! = null ) {
flag3 = true ;
s1 = s4 ;
} else if ( s3 . equals ( " --world " ) & & s4 ! = null ) {
flag3 = true ;
s2 = s4 ;
} else if ( s3 . equals ( " --demo " ) ) {
flag1 = true ;
} else if ( s3 . equals ( " --bonusChest " ) ) {
flag2 = true ;
}
} else {
flag = false ;
}
if ( flag3 ) {
+ + j ;
}
}
// */
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
DedicatedServer dedicatedserver = new DedicatedServer ( options ) ;
if ( options . has ( " port " ) ) {
int port = ( Integer ) options . valueOf ( " port " ) ;
if ( port > 0 ) {
dedicatedserver . setPort ( port ) ;
}
}
if ( options . has ( " universe " ) ) {
dedicatedserver . universe = ( File ) options . valueOf ( " universe " ) ;
}
if ( options . has ( " world " ) ) {
dedicatedserver . m ( ( String ) options . valueOf ( " world " ) ) ;
}
/ *
if ( s ! = null ) {
dedicatedserver . l ( s ) ;
}
if ( s2 ! = null ) {
dedicatedserver . m ( s2 ) ;
}
2010-12-22 16:22:23 +01:00
2012-07-29 09:33:13 +02:00
if ( i > = 0 ) {
dedicatedserver . setPort ( i ) ;
}
if ( flag1 ) {
dedicatedserver . b ( true ) ;
}
if ( flag2 ) {
dedicatedserver . c ( true ) ;
}
if ( flag ) {
dedicatedserver . aj ( ) ;
}
* /
dedicatedserver . primaryThread . start ( ) ;
// Runtime.getRuntime().addShutdownHook(new ThreadShutdown(dedicatedserver));
// CraftBukkit end
2010-12-28 20:52:24 +01:00
} catch ( Exception exception ) {
2011-04-20 19:05:14 +02:00
log . log ( Level . SEVERE , " Failed to start the minecraft server " , exception ) ;
2010-12-22 16:22:23 +01:00
}
}
2012-07-29 09:33:13 +02:00
public void s ( ) {
// (new ThreadServerApplication(this, "Server thread")).start(); // CraftBukkit - prevent abuse
2010-12-22 16:22:23 +01:00
}
2012-07-29 09:33:13 +02:00
public File f ( String s ) {
return new File ( this . n ( ) , s ) ;
}
public void info ( String s ) {
2011-04-20 19:05:14 +02:00
log . info ( s ) ;
2010-12-22 16:22:23 +01:00
}
2011-11-20 09:01:14 +01:00
public void warning ( String s ) {
2011-04-20 19:05:14 +02:00
log . warning ( s ) ;
2011-03-31 22:40:00 +02:00
}
2011-06-27 00:25:01 +02:00
public WorldServer getWorldServer ( int i ) {
2011-05-28 22:50:08 +02:00
// CraftBukkit start
2011-06-27 00:25:01 +02:00
for ( WorldServer world : this . worlds ) {
2011-05-26 23:15:27 +02:00
if ( world . dimension = = i ) {
return world ;
}
}
2011-05-28 22:50:08 +02:00
2011-06-27 00:25:01 +02:00
return this . worlds . get ( 0 ) ;
2011-05-28 22:50:08 +02:00
// CraftBukkit end
2011-05-26 14:48:22 +02:00
}
2012-07-29 09:33:13 +02:00
public String t ( ) {
return this . serverIp ;
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public int u ( ) {
return this . s ;
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public String v ( ) {
2012-01-14 21:03:48 +01:00
return this . motd ;
2011-11-20 09:01:14 +01:00
}
public String getVersion ( ) {
2012-07-29 09:33:13 +02:00
return " 1.3.1 " ;
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public int x ( ) {
return this . t . getPlayerCount ( ) ;
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public int y ( ) {
return this . t . getMaxPlayers ( ) ;
2011-11-20 09:01:14 +01:00
}
public String [ ] getPlayers ( ) {
2012-07-29 09:33:13 +02:00
return this . t . d ( ) ;
2011-11-20 09:01:14 +01:00
}
public String getPlugins ( ) {
2011-11-06 00:58:13 +01:00
// CraftBukkit start - whole method
StringBuilder result = new StringBuilder ( ) ;
2012-07-22 08:18:00 +02:00
org . bukkit . plugin . Plugin [ ] plugins = server . getPluginManager ( ) . getPlugins ( ) ;
2011-11-06 00:58:13 +01:00
result . append ( server . getName ( ) ) ;
result . append ( " on Bukkit " ) ;
result . append ( server . getBukkitVersion ( ) ) ;
2012-06-09 19:59:52 +02:00
if ( plugins . length > 0 & & this . server . getQueryPlugins ( ) ) {
2011-11-06 00:58:13 +01:00
result . append ( " : " ) ;
for ( int i = 0 ; i < plugins . length ; i + + ) {
if ( i > 0 ) {
result . append ( " ; " ) ;
}
result . append ( plugins [ i ] . getDescription ( ) . getName ( ) ) ;
result . append ( " " ) ;
result . append ( plugins [ i ] . getDescription ( ) . getVersion ( ) . replaceAll ( " ; " , " , " ) ) ;
}
}
return result . toString ( ) ;
// CraftBukkit end
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public String i ( String s ) {
RemoteControlCommandListener . instance . b ( ) ;
2012-01-12 12:02:39 +01:00
// CraftBukkit start
2012-01-30 21:51:53 +01:00
RemoteServerCommandEvent event = new RemoteServerCommandEvent ( this . remoteConsole , s ) ;
2011-12-07 07:01:05 +01:00
this . server . getPluginManager ( ) . callEvent ( event ) ;
2012-01-12 16:27:39 +01:00
ServerCommand servercommand = new ServerCommand ( event . getCommand ( ) , RemoteControlCommandListener . instance ) ;
2012-07-29 09:33:13 +02:00
// this.q.a(RemoteControlCommandListener.instance, s);
2012-01-19 09:32:05 +01:00
this . server . dispatchServerCommand ( this . remoteConsole , servercommand ) ; // CraftBukkit
2011-12-07 07:01:05 +01:00
// CraftBukkit end
2012-07-29 09:33:13 +02:00
return RemoteControlCommandListener . instance . c ( ) ;
2011-11-20 09:01:14 +01:00
}
public boolean isDebugging ( ) {
2012-07-29 09:33:13 +02:00
return this . getPropertyManager ( ) . getBoolean ( " debug " , false ) ; // CraftBukkit - don't hardcode
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public void j ( String s ) {
2011-11-20 09:01:14 +01:00
log . log ( Level . SEVERE , s ) ;
}
2012-07-29 09:33:13 +02:00
public void k ( String s ) {
2011-11-20 09:01:14 +01:00
if ( this . isDebugging ( ) ) {
log . log ( Level . INFO , s ) ;
}
}
2012-07-29 09:33:13 +02:00
public String getServerModName ( ) {
return " craftbukkit " ; // CraftBukkit - cb > vanilla!
}
public CrashReport b ( CrashReport crashreport ) {
crashreport . a ( " Is Modded " , ( Callable ) ( new CrashReportModded ( this ) ) ) ;
crashreport . a ( " Profiler Position " , ( Callable ) ( new CrashReportProfilerPosition ( this ) ) ) ;
if ( this . t ! = null ) {
crashreport . a ( " Player Count " , ( Callable ) ( new CrashReportPlayerCount ( this ) ) ) ;
}
// CraftBukkit start
if ( this . worlds ! = null ) {
for ( int j = 0 ; j < this . worlds . size ( ) ; + + j ) {
WorldServer worldserver = this . worlds . get ( j ) ;
// CraftBukkit end
if ( worldserver ! = null ) {
worldserver . a ( crashreport ) ;
}
}
}
return crashreport ;
}
public List a ( ICommandListener icommandlistener , String s ) {
ArrayList arraylist = new ArrayList ( ) ;
if ( s . startsWith ( " / " ) ) {
s = s . substring ( 1 ) ;
boolean flag = ! s . contains ( " " ) ;
List list = this . q . b ( icommandlistener , s ) ;
if ( list ! = null ) {
Iterator iterator = list . iterator ( ) ;
while ( iterator . hasNext ( ) ) {
String s1 = ( String ) iterator . next ( ) ;
if ( flag ) {
arraylist . add ( " / " + s1 ) ;
} else {
arraylist . add ( s1 ) ;
}
}
}
return arraylist ;
} else {
String [ ] astring = s . split ( " " , - 1 ) ;
String s2 = astring [ astring . length - 1 ] ;
String [ ] astring1 = this . t . d ( ) ;
int i = astring1 . length ;
for ( int j = 0 ; j < i ; + + j ) {
String s3 = astring1 [ j ] ;
if ( CommandAbstract . a ( s2 , s3 ) ) {
arraylist . add ( s3 ) ;
}
}
return arraylist ;
}
2011-11-20 09:01:14 +01:00
}
2012-07-29 09:33:13 +02:00
public static MinecraftServer getServer ( ) {
return l ;
2011-11-20 09:01:14 +01:00
}
2012-06-14 04:52:49 +02:00
2012-07-29 09:33:13 +02:00
public String getName ( ) {
return " Server " ;
}
public void sendMessage ( String s ) {
log . info ( StripColor . a ( s ) ) ;
}
public boolean b ( String s ) {
return true ;
}
public String a ( String s , Object . . . aobject ) {
return LocaleLanguage . a ( ) . a ( s , aobject ) ;
}
public ICommandHandler getCommandHandler ( ) {
return this . q ;
}
public KeyPair E ( ) {
return this . I ;
}
public int F ( ) {
return this . s ;
}
public void setPort ( int i ) {
this . s = i ;
}
public String G ( ) {
return this . J ;
}
public void l ( String s ) {
this . J = s ;
}
public boolean H ( ) {
return this . J ! = null ;
}
public String I ( ) {
return this . K ;
}
public void m ( String s ) {
this . K = s ;
}
public void a ( KeyPair keypair ) {
this . I = keypair ;
}
public void c ( int i ) {
// CraftBukkit start
for ( int j = 0 ; j < this . worlds . size ( ) ; + + j ) {
WorldServer worldserver = this . worlds . get ( j ) ;
// CraftBukkit end
if ( worldserver ! = null ) {
if ( worldserver . getWorldData ( ) . isHardcore ( ) ) {
worldserver . difficulty = 3 ;
worldserver . setSpawnFlags ( true , true ) ;
} else if ( this . H ( ) ) {
worldserver . difficulty = i ;
worldserver . setSpawnFlags ( worldserver . difficulty > 0 , true ) ;
} else {
worldserver . difficulty = i ;
worldserver . setSpawnFlags ( this . getSpawnMonsters ( ) , this . spawnAnimals ) ;
}
}
}
}
protected boolean getSpawnMonsters ( ) {
return true ;
}
public boolean L ( ) {
return this . demoMode ;
}
public void b ( boolean flag ) {
this . demoMode = flag ;
}
public void c ( boolean flag ) {
this . N = flag ;
}
public Convertable getConvertable ( ) {
return this . convertable ;
}
public void O ( ) {
this . O = true ;
this . getConvertable ( ) . d ( ) ;
// CraftBukkit start - This needs review, what does it do? (it's new)
for ( int i = 0 ; i < this . worlds . size ( ) ; + + i ) {
WorldServer worldserver = this . worlds . get ( i ) ;
// CraftBukkit end
if ( worldserver ! = null ) {
worldserver . saveLevel ( ) ;
}
}
this . getConvertable ( ) . e ( this . worlds . get ( 0 ) . getDataManager ( ) . g ( ) ) ;
this . safeShutdown ( ) ;
}
public String getTexturePack ( ) {
return this . P ;
}
public void setTexturePack ( String s ) {
this . P = s ;
}
public void a ( MojangStatisticsGenerator mojangstatisticsgenerator ) {
mojangstatisticsgenerator . a ( " whitelist_enabled " , Boolean . valueOf ( false ) ) ;
mojangstatisticsgenerator . a ( " whitelist_count " , Integer . valueOf ( 0 ) ) ;
mojangstatisticsgenerator . a ( " players_current " , Integer . valueOf ( this . x ( ) ) ) ;
mojangstatisticsgenerator . a ( " players_max " , Integer . valueOf ( this . y ( ) ) ) ;
mojangstatisticsgenerator . a ( " players_seen " , Integer . valueOf ( this . t . getSeenPlayers ( ) . length ) ) ;
mojangstatisticsgenerator . a ( " uses_auth " , Boolean . valueOf ( this . onlineMode ) ) ;
mojangstatisticsgenerator . a ( " gui_state " , this . ae ( ) ? " enabled " : " disabled " ) ;
mojangstatisticsgenerator . a ( " avg_tick_ms " , Integer . valueOf ( ( int ) ( MathHelper . a ( this . j ) * 1 . 0E - 6D ) ) ) ;
mojangstatisticsgenerator . a ( " avg_sent_packet_count " , Integer . valueOf ( ( int ) MathHelper . a ( this . f ) ) ) ;
mojangstatisticsgenerator . a ( " avg_sent_packet_size " , Integer . valueOf ( ( int ) MathHelper . a ( this . g ) ) ) ;
mojangstatisticsgenerator . a ( " avg_rec_packet_count " , Integer . valueOf ( ( int ) MathHelper . a ( this . h ) ) ) ;
mojangstatisticsgenerator . a ( " avg_rec_packet_size " , Integer . valueOf ( ( int ) MathHelper . a ( this . i ) ) ) ;
int i = 0 ;
// CraftBukkit start
for ( int j = 0 ; j < this . worlds . size ( ) ; + + j ) {
// if (this.worldServer[j] != null) {
WorldServer worldserver = this . worlds . get ( j ) ;
// CraftBukkit end
WorldData worlddata = worldserver . getWorldData ( ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][dimension] " , Integer . valueOf ( worldserver . worldProvider . dimension ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][mode] " , worlddata . getGameType ( ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][difficulty] " , Integer . valueOf ( worldserver . difficulty ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][hardcore] " , Boolean . valueOf ( worlddata . isHardcore ( ) ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][generator_name] " , worlddata . getType ( ) . name ( ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][generator_version] " , Integer . valueOf ( worlddata . getType ( ) . getVersion ( ) ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][height] " , Integer . valueOf ( this . D ) ) ;
mojangstatisticsgenerator . a ( " world[ " + i + " ][chunks_loaded] " , Integer . valueOf ( worldserver . F ( ) . getLoadedChunks ( ) ) ) ;
+ + i ;
// } // CraftBukkit
}
mojangstatisticsgenerator . a ( " worlds " , Integer . valueOf ( i ) ) ;
}
public void b ( MojangStatisticsGenerator mojangstatisticsgenerator ) {
mojangstatisticsgenerator . a ( " singleplayer " , Boolean . valueOf ( this . H ( ) ) ) ;
mojangstatisticsgenerator . a ( " server_brand " , this . getServerModName ( ) ) ;
mojangstatisticsgenerator . a ( " gui_supported " , GraphicsEnvironment . isHeadless ( ) ? " headless " : " supported " ) ;
mojangstatisticsgenerator . a ( " dedicated " , Boolean . valueOf ( this . S ( ) ) ) ;
}
public boolean getSnooperEnabled ( ) {
return true ;
}
public int R ( ) {
return 16 ;
}
public abstract boolean S ( ) ;
public boolean getOnlineMode ( ) {
return this . onlineMode ;
}
public void setOnlineMode ( boolean flag ) {
this . onlineMode = flag ;
}
public boolean getSpawnAnimals ( ) {
return this . spawnAnimals ;
}
public void setSpawnAnimals ( boolean flag ) {
this . spawnAnimals = flag ;
}
public boolean getSpawnNPCs ( ) {
return this . spawnNPCs ;
}
public void setSpawnNPCs ( boolean flag ) {
this . spawnNPCs = flag ;
}
public boolean getPvP ( ) {
return this . pvpMode ;
}
public void setPvP ( boolean flag ) {
this . pvpMode = flag ;
}
public boolean getAllowFlight ( ) {
return this . allowFlight ;
}
public void setAllowFlight ( boolean flag ) {
this . allowFlight = flag ;
}
public String getMotd ( ) {
return this . motd ;
}
public void setMotd ( String s ) {
this . motd = s ;
}
public int getMaxBuildHeight ( ) {
return this . D ;
}
public void d ( int i ) {
this . D = i ;
}
public boolean isStopped ( ) {
return this . isStopped ;
}
public ServerConfigurationManagerAbstract getServerConfigurationManager ( ) {
return this . t ;
}
public void a ( ServerConfigurationManagerAbstract serverconfigurationmanagerabstract ) {
this . t = serverconfigurationmanagerabstract ;
}
public void a ( EnumGamemode enumgamemode ) {
// CraftBukkit start
for ( int i = 0 ; i < this . worlds . size ( ) ; + + i ) {
getServer ( ) . worlds . get ( i ) . getWorldData ( ) . setGameType ( enumgamemode ) ;
// CraftBukkit end
}
}
public abstract ServerConnection ac ( ) ;
public boolean ae ( ) {
return false ;
}
public abstract String a ( EnumGamemode enumgamemode , boolean flag ) ;
public int af ( ) {
return this . ticks ;
}
public void ag ( ) {
this . T = true ;
2012-03-30 23:33:51 +02:00
}
2011-11-20 09:01:14 +01:00
2012-07-29 09:33:13 +02:00
public static ServerConfigurationManagerAbstract a ( MinecraftServer minecraftserver ) {
return minecraftserver . t ;
2010-12-28 20:52:24 +01:00
}
2011-01-11 09:25:13 +01:00
}