100+ results for 'minecraft logger.getlogger'
Not the results you expected?
ShallowObjectReport.java (git://github.com/sk89q/worldguard.git) Java · 59 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
29 public class ShallowObjectReport extends DataReport {
31 private static final Logger log = Logger.getLogger(ShallowObjectReport.class.getCanonicalName());
33 public ShallowObjectReport(String title, Object object) {
ChangeGameMode.java
(https://bitbucket.org/zachman1221/gamemodechanger.git)
Java · 436 lines
✨ Summary
This Java code is a plugin for a Minecraft server that allows players to change their game mode (Survival, Creative) using commands. It also provides help and changelog functionality. The console can toggle between game modes as well. The plugin checks player permissions before allowing them to use certain commands. It logs changes to the game mode in the server’s log.
This Java code is a plugin for a Minecraft server that allows players to change their game mode (Survival, Creative) using commands. It also provides help and changelog functionality. The console can toggle between game modes as well. The plugin checks player permissions before allowing them to use certain commands. It logs changes to the game mode in the server’s log.
Shutdown.java (http://l1j-tw-99nets.googlecode.com/svn/trunk/) Java · 329 lines
Main.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 145 lines
40 log("Missing minecraft_servero.jar, Downloading minecraft_server.jar...");
41 downloadFile("https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft_server.jar", "minecraft_server.jar");
42 checkCRC32("minecraft_server.jar", minecraft_server);
44 log("Finished downloading minecraft_server.jar, start converting minecraft_server.jar to minecraft_servero.jar...");
45 } else
46 log("Missing minecraft_servero.jar, start converting minecraft_server.jar to minecraft_servero.jar...");
48 try {
49 com.tonicsystems.jarjar.Main.main(new String[] { "process", "rules.rules", "minecraft_server.jar", "minecraft_servero.jar" });
50 } catch (Throwable t) {
51 log.log(Level.SEVERE, null, t);
53 checkCRC32("minecraft_servero.jar", minecraft_servero);
55 log("Finished converting minecraft_server.jar, Starting minecraft server...");
56 dynamicLoadJar("minecraft_servero.jar");
PlayerModesListener.java (git://github.com/sk89q/worldguard.git) Java · 83 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
34 public class PlayerModesListener extends AbstractListener {
36 private static final Logger log = Logger.getLogger(PlayerModesListener.class.getCanonicalName());
38 private static final String INVINCIBLE_PERMISSION = "worldguard.auto-invincible";
DataSource.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 432 lines
7 import java.util.logging.Logger;
9 import net.minecraft.server.MinecraftServer;
11 /**
16 public abstract class DataSource {
18 protected static final Logger log = Logger.getLogger("Minecraft");
19 protected List<Group> groups = new ArrayList<Group>();
20 protected List<Kit> kits = new ArrayList<Kit>();
23 protected List<Ban> bans = new ArrayList<Ban>();
24 protected Map<String, Integer> items = new HashMap<String, Integer>();
25 protected MinecraftServer server;
26 protected final Object groupLock = new Object(), kitLock = new Object(), banLock = new Object();
27 protected final Object homeLock = new Object(), warpLock = new Object(), itemLock = new Object();
EJBClientReconnectionTestCase.java (git://github.com/jbossas/jboss-as.git) Java · 152 lines
ScpTool.java (git://github.com/bytemine/bytemine-manager.git) Java · 275 lines
SimpleFlagRegistry.java (git://github.com/sk89q/worldguard.git) Java · 164 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
37 public class SimpleFlagRegistry implements FlagRegistry {
39 private static final Logger log = Logger.getLogger(SimpleFlagRegistry.class.getCanonicalName());
41 private final Object lock = new Object();
WorldGuardCommands.java (git://github.com/sk89q/worldguard.git) Java · 139 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
29 import org.bukkit.entity.Player;
31 import com.sk89q.minecraft.util.commands.Command;
32 import com.sk89q.minecraft.util.commands.CommandContext;
33 import com.sk89q.minecraft.util.commands.CommandException;
34 import com.sk89q.minecraft.util.commands.CommandPermissions;
64 handler = new LoggerToChatHandler(sender);
65 handler.setLevel(Level.ALL);
66 minecraftLogger = Logger.getLogger("Minecraft");
67 minecraftLogger.addHandler(handler);
ClassPathInjector.java (https://gitlab.com/LiteLoader/LiteLoaderMirror.git) Java · 143 lines
Flags.java (git://github.com/sk89q/worldguard.git) Java · 65 lines
FileHandler.java (git://github.com/webbukkit/dynmap.git) Java · 0 lines
SaveHandler.java (http://phantom-labs-mc.googlecode.com/svn/trunk/) Java · 252 lines
1 package net.minecraft.src;
3 import java.io.*;
8 {
9 /** Reference to the logger. */
10 private static final Logger logger = Logger.getLogger("Minecraft");
12 /** The path to the current savegame directory */
90 if (datainputstream.readLong() != initializationTime)
91 {
92 throw new MinecraftException("The save is being accessed from another location, aborting");
93 }
94 }
100 catch (IOException ioexception)
101 {
102 throw new MinecraftException("Failed to check session lock, aborting");
103 }
104 }
SendMessageHandler.java (git://github.com/webbukkit/dynmap.git) Java · 0 lines
WorldGuardWorldListener.java (git://github.com/sk89q/worldguard.git) Java · 104 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
35 public class WorldGuardWorldListener implements Listener {
37 private static final Logger log = Logger.getLogger(WorldGuardWorldListener.class.getCanonicalName());
38 private WorldGuardPlugin plugin;
ServerConsoleCommands.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 277 lines
PropertiesFile.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 441 lines
SaveHandler.java (https://gitlab.com/BGCX261/zombie-craft-svn-to-git.git) Java · 178 lines
1 package net.minecraft.src;
2 // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
3 // Jad home page: http://www.kpdus.com/jad.html
61 if(datainputstream.readLong() != field_22157_d)
62 {
63 throw new MinecraftException("The save is being accessed from another location, aborting");
64 }
65 }
71 catch(IOException ioexception)
72 {
73 throw new MinecraftException("Failed to check session lock, aborting");
74 }
75 }
171 }
173 private static final Logger field_22156_a = Logger.getLogger("Minecraft");
174 private final File field_22155_b;
175 private final File field_22158_c;
SSHTool.java (git://github.com/bytemine/bytemine-manager.git) Java · 126 lines
UpdateChecker.java (https://gitlab.com/kidaa/Multiverse-3.git) Java · 130 lines
AbstractMigration.java (git://github.com/sk89q/worldguard.git) Java · 83 lines
1 /*
2 * WorldGuard, a suite of tools for Minecraft
3 * Copyright (C) sk89q <http://www.sk89q.com>
4 * Copyright (C) WorldGuard team and contributors
36 abstract class AbstractMigration implements Migration {
38 private static final Logger log = Logger.getLogger(AbstractMigration.class.getCanonicalName());
39 private final RegionDriver driver;
DataSource.java (https://gitlab.com/bickelj/libjitsi.git) Java · 224 lines
DeadLockDetector.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 74 lines
Log.java (git://github.com/webbukkit/dynmap.git) Java · 0 lines
ChatTools.java (https://github.com/Theino/Towny-Obsidian.git) Java · 103 lines
BoundInputStream.java (git://github.com/webbukkit/dynmap.git) Java · 0 lines
SimpleTest.java (http://mobicents.googlecode.com/svn/trunk/) Java · 113 lines
ChatClickData.java (http://phantom-labs-mc.googlecode.com/svn/trunk/) Java · 80 lines
MobRandomizer.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 204 lines
5 import com.prupe.mcpatcher.TexturePackChangeHandler;
6 import com.prupe.mcpatcher.mal.biome.BiomeAPI;
7 import net.minecraft.src.Entity;
8 import net.minecraft.src.EntityLivingBase;
9 import net.minecraft.src.NBTTagCompound;
10 import net.minecraft.src.ResourceLocation;
19 public class MobRandomizer {
20 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
21 private static final LinkedHashMap<String, ResourceLocation> cache = new LinkedHashMap<String, ResourceLocation>();
ClassPathMod.java (https://gitlab.com/LiteLoader/LiteLoaderMirror.git) Java · 110 lines
8 import java.util.zip.ZipFile;
10 import net.minecraft.launchwrapper.LaunchClassLoader;
12 import com.google.common.base.Charsets;
24 private static final long serialVersionUID = -4759310661966590773L;
26 private static final Logger logger = Logger.getLogger("liteloader");
28 ClassPathMod(File file, String fallbackName)
32 if (this.modName == null) this.modName = fallbackName;
33 if (this.targetVersion == null) this.targetVersion = LiteLoaderBootstrap.VERSION.getMinecraftVersion();
34 }
TownyListener.java (https://github.com/Theino/Towny-Obsidian.git) Java · 173 lines
TreeDropsProps.java (https://github.com/darkdiplomat/TreeDrops.git) Java · 94 lines
ONetworkListenThread.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 87 lines
6 import java.util.logging.Logger;
8 import net.minecraft.server.MinecraftServer;
10 public class ONetworkListenThread {
12 public static Logger a = Logger.getLogger("Minecraft");
13 private ServerSocket d;
14 private Thread e;
17 private ArrayList<ONetLoginHandler> g = new ArrayList<ONetLoginHandler>();
18 private ArrayList<ONetServerHandler> h = new ArrayList<ONetServerHandler>();
19 public MinecraftServer c;
21 // hMod: These static methods are here because dx.java is calling them
34 }
36 public ONetworkListenThread(MinecraftServer paramMinecraftServer, InetAddress paramInetAddress, int paramInt) {
37 c = paramMinecraftServer;
WallGen.java (https://github.com/Theino/Towny-Obsidian.git) Java · 294 lines
NoSpeedKick.java
(https://bitbucket.org/zachman1221/nospeedkick.git)
Java · 43 lines
✨ Summary
This Java code is a Minecraft plugin that prevents players from speeding up their movement speed using certain commands, such as “nsk” or “nospeedkick”. When these commands are executed, the plugin displays its version and authors information to the sender. It also registers an event listener for player kicks, which can be used to track kick events on the server.
This Java code is a Minecraft plugin that prevents players from speeding up their movement speed using certain commands, such as “nsk” or “nospeedkick”. When these commands are executed, the plugin displays its version and authors information to the sender. It also registers an event listener for player kicks, which can be used to track kick events on the server.
Settings.java (https://bitbucket.org/Skriglitz/globaleconomy.git) Java · 219 lines
Util.java (https://gitlab.com/kidaa/Multiverse-Inventories.git) Java · 62 lines
8 package com.onarandombox.multiverseinventories.util;
10 import com.dumptruckman.minecraft.util.Logging;
12 import java.util.logging.ConsoleHandler;
19 private Util() {}
21 //public static final Logger logger = Logger.getLogger("MV-Test");
22 public static final Logger logger = Logging.getLogger();
TinyModPacket.java (https://gitlab.com/Michiyo/lanteacraft.git) Java · 105 lines
8 import java.util.logging.Logger;
10 import net.minecraft.network.packet.Packet250CustomPayload;
11 import pcl.common.util.WorldLocation;
92 bytes.write(outbuff.toByteArray());
93 } catch (IOException e) {
94 Logger.getLogger("pcl.common").log(Level.WARNING, "Exception when writing packet!", e);
95 }
96 pkt.data = bytes.toByteArray();
TreeFellerBlockListener.java (https://bitbucket.org/Waizujin/treefeller.git) Java · 303 lines
PlayerNBTManager.java
(https://code.google.com/p/minecraft-smp-mocreatures/)
Java · 255 lines
✨ Summary
This Java code defines a class PlayerNBTManager
that manages player data for Minecraft. It handles tasks such as saving and loading player data, checking session locks, and updating world information. The class uses NBT (Name-Based Tagging) to store and retrieve player data in compressed format.
This Java code defines a class PlayerNBTManager
that manages player data for Minecraft. It handles tasks such as saving and loading player data, checking session locks, and updating world information. The class uses NBT (Name-Based Tagging) to store and retrieve player data in compressed format.
3 // Decompiler options: packimports(3) braces deadcode
5 package net.minecraft.src;
7 import java.io.*;
9 import java.util.logging.Logger;
11 // Referenced classes of package net.minecraft.src:
12 // CompressedStreamTools, WorldInfo, EntityPlayer, IPlayerFileData,
13 // NBTTagCompound, ChunkLoader, MinecraftException, WorldProviderHell,
247 }
249 private static final Logger logger = Logger.getLogger("Minecraft");
250 private final File worldDir;
251 private final File worldFile;
LineRenderer.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 173 lines
HmodConfigurationImpl.java (git://github.com/sk89q/craftbook.git) Java · 138 lines
SpleefData.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 296 lines
PostHttp.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 107 lines
MinersHelmet.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 174 lines
1 import java.util.logging.Level;
2 import java.util.logging.Logger;
3 import net.minecraft.server.MinecraftServer;
4 import java.util.ArrayList;
5 import java.io.*;
10 private MinersHelmetListener listener = new MinersHelmetListener();
12 static final Logger log = Logger.getLogger("Minecraft");
13 static MinecraftServer mcworld = etc.getMCServer();
EnderEngine.java (https://bitbucket.org/ZackRuybal/dynamiceconomy.git) Java · 212 lines
Spleef.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 140 lines
AlphaLog.java (https://bitbucket.org/thatonekid/projectalpha.git) Java · 94 lines
Repair.java (https://github.com/lostaris/AutoRepair.git) Java · 310 lines
ResourceList.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 250 lines
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import com.prupe.mcpatcher.TexturePackAPI;
6 import net.minecraft.src.*;
8 import java.io.File;
14 public class ResourceList {
15 private static final MCLogger logger = MCLogger.getLogger("Texture Pack");
17 private static ResourceList instance;
76 private ResourceList(DefaultResourcePack resourcePack) {
77 this.resourcePack = resourcePack;
78 String version = MCPatcherUtils.getMinecraftVersion();
79 File jar = MCPatcherUtils.getMinecraftPath("versions", version, version + ".jar");
ConfigReader.java (https://gitlab.com/N3X15/Spout.git) Java · 223 lines
iProperty.java (https://github.com/Nijikokun/iConomy.git) Java · 209 lines
38 public final class iProperty {
40 private static final Logger log = Logger.getLogger("Minecraft");
41 private Properties properties;
42 private String fileName;
64 public void save() {
65 try {
66 this.properties.store(new FileOutputStream(this.fileName), "Minecraft Properties File");
67 } catch (IOException ex) {
68 log.log(Level.SEVERE, "Unable to save " + this.fileName, ex);
AAHelper.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 137 lines
4 import com.prupe.mcpatcher.MCLogger;
5 import com.prupe.mcpatcher.MCPatcherUtils;
6 import net.minecraft.src.Resource;
7 import net.minecraft.src.ResourceLocation;
8 import net.minecraft.src.SimpleResource;
9 import net.minecraft.src.TextureAtlasSprite;
15 public class AAHelper {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.MIPMAP);
18 private static final int debugColor = Config.getBoolean(MCPatcherUtils.EXTENDED_HD, "debugBorder", false) ? 0xff0000ff : 0;
GhastHandler.java (https://gitlab.com/N3X15/MobDisguise.git) Java · 37 lines
CreeperHandler.java (https://gitlab.com/N3X15/MobDisguise.git) Java · 86 lines
WorldNBTStorage.java (https://bitbucket.org/agaricusb/mcpc-1.4.5.git) Java · 295 lines
WaypointPlugin.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 368 lines
16 public class WaypointPlugin extends Plugin
17 {
18 private static Logger a = Logger.getLogger("Minecraft");
19 private Dictionary<String, User> users = new Hashtable<String, User>();
20 private boolean initialized = false;
35 location.rotY = 0.0F;
36 } catch (NumberFormatException e) {
37 Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
38 }
39 } else if(locs.length == 4)
47 location.rotY = 0.0F;
48 } catch (NumberFormatException e) {
49 Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
50 }
51 }
NetworkListenThread.java
(https://code.google.com/p/minecraft-smp-mocreatures/)
Java · 117 lines
✨ Summary
This Java code defines a NetworkListenThread
class that listens for incoming network connections on a specified port and address. It handles pending connections, processes packets, and logs errors. The thread is responsible for managing player connections and packet handling in a Minecraft server. It uses multiple threads to handle different tasks concurrently.
This Java code defines a NetworkListenThread
class that listens for incoming network connections on a specified port and address. It handles pending connections, processes packets, and logs errors. The thread is responsible for managing player connections and packet handling in a Minecraft server. It uses multiple threads to handle different tasks concurrently.
11 import java.util.logging.Level;
12 import java.util.logging.Logger;
13 import net.minecraft.server.MinecraftServer;
15 // Referenced classes of package net.minecraft.src:
19 {
21 public NetworkListenThread(MinecraftServer minecraftserver, InetAddress inetaddress, int i) throws IOException
22 {
23 field_973_b = false;
105 }
107 public static Logger logger = Logger.getLogger("Minecraft");
108 private ServerSocket serverSocket;
109 private Thread networkAcceptThread;
Nation.java (https://github.com/Theino/Towny-Obsidian.git) Java · 191 lines
TownyProperties.java (https://github.com/Theino/Towny-Obsidian.git) Java · 190 lines
WorldNBTStorage.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 232 lines
MobRuleList.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 189 lines
6 import com.prupe.mcpatcher.WeightedIndex;
7 import com.prupe.mcpatcher.mal.biome.BiomeAPI;
8 import net.minecraft.src.ResourceLocation;
10 import java.util.*;
12 class MobRuleList {
13 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
15 public static final String ALTERNATIVES_REGEX = "_(eyes|overlay|tame|angry|collar|fur|invulnerable|shooting)\\.properties$";
DroneDestructor.java (https://github.com/arquillian/arquillian_deprecated.git) Java · 132 lines
DedicatedServerConnectionThread.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 119 lines
1 package net.minecraft.server;
3 import java.io.IOException;
14 public class DedicatedServerConnectionThread extends Thread {
16 private static Logger a = Logger.getLogger("Minecraft");
17 private final List b = Collections.synchronizedList(new ArrayList());
18 private final HashMap c = new HashMap();
OConsoleLogManager.java (git://github.com/traitor/Minecraft-Server-Mod.git) Java · 38 lines
Colorizer.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 207 lines
3 import com.prupe.mcpatcher.*;
4 import net.minecraft.src.Potion;
5 import net.minecraft.src.ResourceLocation;
9 public class Colorizer {
10 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
12 static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
ShopLog.java (https://bitbucket.org/thatonekid/ms-kitpvpshop.git) Java · 86 lines
ColorMapBase.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 435 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.IBlockAccess;
6 import net.minecraft.src.ResourceLocation;
14 abstract public class ColorMapBase {
15 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
17 public static final int DEFAULT_HEIGHT = 64;
EnchantmentList.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 161 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.ItemStack;
7 import java.util.*;
9 final class EnchantmentList {
10 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_ITEM_TEXTURES, "CIT");
12 private static final float PI = (float) Math.PI;
LeadingSensorPoint.java (https://bitbucket.org/c3uv_admin/c3uvorca) Java · 149 lines
Lightmap.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 139 lines
5 import com.prupe.mcpatcher.MCPatcherUtils;
6 import com.prupe.mcpatcher.TexturePackAPI;
7 import net.minecraft.client.Minecraft;
8 import net.minecraft.src.EntityRenderer;
9 import net.minecraft.src.ResourceLocation;
10 import net.minecraft.src.World;
15 public final class Lightmap {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
18 private static final String LIGHTMAP_FORMAT = "lightmap/world%d.png";
78 float torch = Colorizer.clamp(renderer.torchFlickerX + 0.5f) * (width - 1);
79 float nightVisionStrength = renderer.getNightVisionStrength(partialTick);
80 float gamma = Colorizer.clamp(Minecraft.getInstance().gameSettings.gammaSetting);
81 for (int i = 0; i < LIGHTMAP_SIZE; i++) {
82 interpolate(origMap, i * width, sun, sunrgb, 3 * i);
HTTPUnitRequest.java (https://bitbucket.org/AMinecraftDev/discordbot.git) Java · 182 lines
1 package net.aminecraftdev.spigot.site.http;
3 import com.gargoylesoftware.htmlunit.*;
5 import com.gargoylesoftware.htmlunit.util.Cookie;
6 import com.gargoylesoftware.htmlunit.util.NameValuePair;
7 import net.aminecraftdev.spigot.site.SpigotSiteCore;
8 import org.jsoup.Jsoup;
9 import org.jsoup.nodes.Document;
29 webClient.getOptions().setThrowExceptionOnScriptError(false);
30 webClient.getOptions().setPrintContentOnFailingStatusCode(false);
31 java.util.logging.Logger.getLogger("com.gargoylesoftware").setLevel(Level.OFF);
32 }
FaceInfo.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 280 lines
HttpUtilities.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 89 lines
SaveHandler.java
(https://code.google.com/p/minecraft-smp-mocreatures/)
Java · 207 lines
✨ Summary
This Java code defines a SaveHandler
class that manages data for Minecraft saves. It creates directories, writes and reads data to files, and handles chunk loading and world information loading. The class also checks for session locks and ensures data integrity when saving and loading worlds. It uses various utility classes and methods from the Minecraft API.
This Java code defines a SaveHandler
class that manages data for Minecraft saves. It creates directories, writes and reads data to files, and handles chunk loading and world information loading. The class also checks for session locks and ensures data integrity when saving and loading worlds. It uses various utility classes and methods from the Minecraft API.
3 // Decompiler options: packimports(3) braces deadcode
5 package net.minecraft.src;
7 import java.io.*;
9 import java.util.logging.Logger;
11 // Referenced classes of package net.minecraft.src:
12 // ISaveHandler, MinecraftException, WorldProviderHell, ChunkLoader,
69 if(datainputstream.readLong() != now)
70 {
71 throw new MinecraftException("The save is being accessed from another location, aborting");
72 }
73 }
198 }
200 private static final Logger logger = Logger.getLogger("Minecraft");
201 private final File saveDirectory;
202 private final File playersDirectory;
CommonOres.java (https://gitlab.com/mcupdater/commonores.git) Java · 124 lines
12 import net.minecraftforge.common.Configuration;
13 import net.minecraftforge.common.MinecraftForge;
15 import org.mcupdater.commonores.data.DefaultSettings;
25 import cpw.mods.fml.common.network.NetworkMod;
27 @Mod(modid = Version.MOD_ID, name = Version.MOD_NAME, version = Version.VERSION, acceptedMinecraftVersions = "[1.6,1.7],", dependencies = "")
28 @NetworkMod(clientSideRequired = true, serverSideRequired = true)
29 public class CommonOres {
30 public static Configuration config;
31 public static Logger log = Logger.getLogger(Version.MOD_NAME);
33 @Mod.EventHandler
107 }
109 MinecraftForge.EVENT_BUS.register(this);
110 }
NoOPs.java (https://bitbucket.org/Skriglitz/no-ops.git) Java · 162 lines
ScalaMC.scala (git://github.com/PneumatiCraft/ScalaMC.git) Scala · 51 lines
MobRandomizer.java (https://github.com/pclewis/mcpatcher.git) Java · 214 lines
4 import com.pclewis.mcpatcher.MCPatcherUtils;
5 import com.pclewis.mcpatcher.TexturePackAPI;
6 import net.minecraft.src.EntityLiving;
7 import net.minecraft.src.NBTTagCompound;
16 public class MobRandomizer {
17 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
18 private static final HashMap<EntityLiving, String> cache = new HashMap<EntityLiving, String>();
IndigoBlockBan.java (https://gitlab.com/Luca_Lumetti/indigoblockban.git) Java · 37 lines
Vault.java (https://bitbucket.org/iseries/imonies.git) Java · 232 lines
AutoSaveThread.java (https://bitbucket.org/agaricusb/autoworldsave.git) Java · 168 lines
NetLoginHandler.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 195 lines
1 package net.minecraft.server;
3 import java.io.Serializable;
17 private byte[] d;
18 public static Logger logger = Logger.getLogger("Minecraft");
19 private static Random random = new Random();
20 public NetworkManager networkManager;
21 public boolean c = false;
22 private MinecraftServer server;
23 private int g = 0;
24 private String h = null;
27 private SecretKey k = null;
29 public NetLoginHandler(MinecraftServer minecraftserver, Socket socket, String s) {
30 this.server = minecraftserver;
ColorMapBase.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 435 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.IBlockAccess;
6 import net.minecraft.src.ResourceLocation;
14 abstract class ColorMapBase {
15 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
17 static final int DEFAULT_HEIGHT = 64;
BiomeAPI.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 252 lines
4 import com.prupe.mcpatcher.MCLogger;
5 import com.prupe.mcpatcher.MCPatcherUtils;
6 import net.minecraft.client.Minecraft;
7 import net.minecraft.src.BiomeGenBase;
8 import net.minecraft.src.IBlockAccess;
9 import net.minecraft.src.Position;
15 abstract public class BiomeAPI {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
17 private static final BiomeAPI instance = MAL.newInstance(BiomeAPI.class, "biome");
91 public static IBlockAccess getWorld() {
92 return Minecraft.getInstance().theWorld;
93 }
XLogger.java (https://gitlab.com/N3X15/Bukkit-Plugin-Utilities.git) Java · 86 lines
32 public XLogger(String loggerName, String pluginName) {
33 this(Logger.getLogger(loggerName), pluginName, "");
34 }
36 public XLogger(String pluginName) {
37 this("Minecraft", pluginName);
38 }
78 public void enableMsg() {
79 this.info(this.pluginName + (MinecraftUtil.isSet(this.version) ? " " : "") + this.version + " enabled");
80 }
SaveHandler.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 261 lines
3 // Decompiler options: packimports(3) braces deadcode fieldsfirst
5 package net.minecraft.src;
7 import java.io.*;
9 import java.util.logging.Logger;
11 // Referenced classes of package net.minecraft.src:
12 // IPlayerFileData, ISaveHandler, MinecraftException, CompressedStreamTools,
18 {
20 private static final Logger field_1003_a = Logger.getLogger("Minecraft");
21 private final File field_22099_b;
22 private final File field_1002_b;
77 if(datainputstream.readLong() != field_22100_d)
78 {
79 throw new MinecraftException("The save is being accessed from another location, aborting");
80 }
81 }
CraftBookDelegateListener.java (https://github.com/yofreke/craftbook.git) Java · 114 lines
User.java (https://github.com/albatrossen/commandhelper.git) Java · 101 lines
45 } catch (Exception ex) {
46 player.sendMessage("Could not add the alias. Please check the error logs for more information.");
47 Logger.getLogger("Minecraft").log(Level.SEVERE, null, ex);
48 return -1;
49 }
95 persist.save();
96 } catch (Exception ex) {
97 Logger.getLogger(User.class.getName()).log(Level.SEVERE, null, ex);
98 }
99 }
NetworkListenThread.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 153 lines
7 import java.util.logging.Level;
8 import java.util.logging.Logger;
9 import net.minecraft.server.MinecraftServer;
11 public class NetworkListenThread
12 {
13 /** Reference to the logger. */
14 public static Logger logger = Logger.getLogger("Minecraft");
15 private ServerSocket serverSocket;
16 private Thread networkAcceptThread;
30 private HashMap field_35506_i;
32 public NetworkListenThread(MinecraftServer par1MinecraftServer, InetAddress par2InetAddress, int par3) throws IOException
33 {
34 isListening = false;
EnchantmentList.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 178 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.Item;
6 import net.minecraft.src.ItemStack;
10 final class EnchantmentList {
11 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_ITEM_TEXTURES, "CIT");
13 private static final float PI = (float) Math.PI;
CTMUtils.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 226 lines
13 import com.prupe.mcpatcher.mal.resource.TexturePackChangeHandler;
14 import com.prupe.mcpatcher.mal.tile.TileLoader;
15 import net.minecraft.src.*;
17 import java.util.*;
19 public class CTMUtils {
20 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CONNECTED_TEXTURES, "CTM");
22 private static final boolean enableStandard = Config.getBoolean(MCPatcherUtils.CONNECTED_TEXTURES, "standard", true);
BanList.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 128 lines
1 package net.minecraft.server;
3 import java.io.BufferedReader;
92 }
93 } catch (IOException ioexception) {
94 Logger.getLogger("Minecraft").log(Level.SEVERE, "Could not load ban list", ioexception);
95 }
96 }
109 if (flag) {
110 printwriter.println("# Updated " + (new SimpleDateFormat()).format(new Date()) + " by Minecraft " + "1.4.5");
111 printwriter.println("# victim name | ban date | banned by | banned until | reason");
112 printwriter.println();
123 printwriter.close();
124 } catch (IOException ioexception) {
125 Logger.getLogger("Minecraft").log(Level.SEVERE, "Could not save ban list", ioexception);
126 }
127 }
ColorizeBlock18.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 302 lines
13 import com.prupe.mcpatcher.mal.resource.TexturePackChangeHandler;
14 import com.prupe.mcpatcher.mal.tessellator.TessellatorAPI;
15 import net.minecraft.src.*;
17 import java.util.List;
19 public class ColorizeBlock18 {
20 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
22 private static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
139 public static void reset() {
140 try {
141 grassBlock = BlockAPI.getFixedBlock("minecraft:grass");
142 mycelBlock = BlockAPI.getFixedBlock("minecraft:mycelium");
Start.java (https://gitlab.com/LiteLoader/LiteLoaderMirror.git) Java · 65 lines
5 import java.util.logging.Logger;
7 import net.minecraft.launchwrapper.Launch;
9 import com.mumfrey.liteloader.launch.LiteLoaderTweaker;
12 /**
13 * Wrapper class for LaunchWrapper Main class, which logs into minecraft.net first so that online shizzle can be tested
14 *
15 * @author Adam Mummery-Smith
18 public abstract class Start
19 {
20 private static Logger logger = Logger.getLogger("liteloader");
22 /**
jimtest.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 262 lines
MagicCarpet.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 176 lines
ServerGUI.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 93 lines
1 package net.minecraft.server;
3 import java.awt.BorderLayout;
17 public class ServerGUI extends JComponent {
19 public static Logger a = Logger.getLogger("Minecraft");
20 private static boolean b = false;
21 private DedicatedServer c;
32 b = true;
33 JFrame jframe = new JFrame("Minecraft server");
35 jframe.add(servergui);
SpleefLeague.java (https://bitbucket.org/DarthAffe/spleefleague) Java · 157 lines
CommandDebug.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 130 lines
1 package net.minecraft.server;
3 import java.io.File;
28 if (astring[0].equals("start")) {
29 a(icommandlistener, "commands.debug.start", new Object[0]);
30 MinecraftServer.getServer().ai();
31 this.a = System.currentTimeMillis();
32 this.b = MinecraftServer.getServer().ah();
36 if (astring[0].equals("stop")) {
37 if (!MinecraftServer.getServer().methodProfiler.a) {
38 throw new CommandException("commands.debug.notStarted", new Object[0]);
39 }
65 filewriter.close();
66 } catch (Throwable throwable) {
67 Logger.getLogger("Minecraft").log(Level.SEVERE, "Could not save profiler results to " + file1, throwable);
68 }
69 }
CrimsonAdmin.java (https://bitbucket.org/DylanHolmes/crimsoncore.git) Java · 92 lines
BorderedTexture.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 122 lines
BlockListener.java (https://gitlab.com/columnwireless/columnwireless.git) Java · 108 lines
50 class BlockListener implements Listener {
51 // Logger log=Logger.getLogger("Minecraft"); // TMP TODO DELETE
53 @EventHandler(priority=EventPriority.NORMAL)
101 ((Lever)b.getState().getData()).setPowered(currentState);
102 b.getState().update();
103 net.minecraft.server.World w = ((net.minecraft.server.World) ((org.bukkit.craftbukkit.CraftWorld) b.getWorld()).getHandle());
104 w.applyPhysics(b.getX(), b.getY(), b.getZ(), b.getTypeId());
105 }
HttpServer.java (https://github.com/flames/dynmap.git) Java · 192 lines
MCCraftPacket103SetSlot.java (https://github.com/d4l3k/SpoutPlugin.git) Java · 185 lines
22 import java.util.logging.Logger;
24 import net.minecraft.server.Packet;
25 import net.minecraft.server.Packet103SetSlot;
38 private int rawWindow, rawSlot;
39 private net.minecraft.server.ItemStack notchStack;
40 private ItemStack bukkitStack;
41 private Slot slot;
58 catch (Exception ex)
59 {
60 Logger.getLogger("Minecraft").log(Level.WARNING, "org.getspout.spout.packet.standard.MCCraftPacket103SetSlot\nError accessing net.minecraft.server.Packet103SetSlot.");
61 }
62 }
145 notchStack = null;
146 else
147 notchStack = new net.minecraft.server.ItemStack(bukkitStack.getTypeId(), bukkitStack.getAmount(), bukkitStack.getDurability());
148 try
149 {
BiomeHelper.java (https://github.com/pclewis/mcpatcher.git) Java · 142 lines
3 import com.pclewis.mcpatcher.MCLogger;
4 import com.pclewis.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.BiomeGenBase;
6 import net.minecraft.src.IBlockAccess;
7 import net.minecraft.src.WorldChunkManager;
9 abstract class BiomeHelper {
10 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
12 static BiomeHelper instance;
Add.java (https://bitbucket.org/iseries/ianimalprotect.git) Java · 51 lines
Resident.java (https://github.com/Theino/Towny-Obsidian.git) Java · 104 lines
NoEnderDragon.java (https://bitbucket.org/dtaylor1984/noenderdragon.git) Java · 41 lines
Lightmap.java (https://github.com/pclewis/mcpatcher.git) Java · 139 lines
4 import com.pclewis.mcpatcher.MCPatcherUtils;
5 import com.pclewis.mcpatcher.TexturePackAPI;
6 import net.minecraft.src.EntityRenderer;
7 import net.minecraft.src.World;
12 public final class Lightmap {
13 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
15 private static final String LIGHTMAP_FORMAT = "/environment/lightmap%d.png";
76 float torch = Colorizer.clamp(renderer.torchFlickerX + 0.5f) * (width - 1);
77 float nightVisionStrength = renderer.getNightVisionStrength(partialTick);
78 float gamma = Colorizer.clamp(MCPatcherUtils.getMinecraft().gameSettings.gammaSetting);
79 for (int i = 0; i < LIGHTMAP_SIZE; i++) {
80 interpolate(origMap, i * width, sun, sunrgb, 3 * i);
115 }
116 }
117 MCPatcherUtils.getMinecraft().renderEngine.createTextureFromBytes(newMap, LIGHTMAP_SIZE, LIGHTMAP_SIZE, renderer.lightmapTexture);
118 return true;
119 }
Close.java (https://bitbucket.org/iseries/ianimalprotect.git) Java · 53 lines
MainClass.java (https://bitbucket.org/LucidDevelopment/lucidalts.git) Java · 64 lines
BlockRespawn.java (https://bitbucket.org/SwiftSwamp/blockrespawn.git) Java · 152 lines
Stats.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 251 lines
BukkitBasiksTeleports.java (https://github.com/theblackhatman/Bukkit-Basiks.git) Java · 174 lines
35 private YamlConfiguration teleportsConfig;
36 static final Logger log = Logger.getLogger("Minecraft");
37 Server server = Bukkit.getServer();
38 File dataFolder = new File(server.getWorldContainer().getPath() + File.separator + "plugins" + File.separator + "Bukkit Basiks");
51 teleportsConfig.save(teleportsConfigFile);
52 } catch (FileNotFoundException ex) {
53 Logger.getLogger(BukkitBasiksTeleports.class.getName()).log(Level.SEVERE, null, ex);
54 } catch (IOException ex) {
55 Logger.getLogger(BukkitBasiksTeleports.class.getName()).log(Level.SEVERE, null, ex);
56 } catch (InvalidConfigurationException ex) {
57 Logger.getLogger(BukkitBasiksTeleports.class.getName()).log(Level.SEVERE, null, ex);
58 }
59 }
PropertyManager.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 102 lines
1 package net.minecraft.server;
3 import java.io.File;
11 public class PropertyManager {
13 public static Logger a = Logger.getLogger("Minecraft");
14 private Properties properties = new Properties();
15 private File c;
51 try {
52 fileoutputstream = new FileOutputStream(this.c);
53 this.properties.store(fileoutputstream, "Minecraft server properties");
54 } catch (Exception exception) {
55 a.log(Level.WARNING, "Failed to save " + this.c, exception);
FMLRelaunchLog.java (https://bitbucket.org/agaricusb/mcpc-1.4.5.git) Java · 228 lines
113 /**
114 * Our special logger for logging issues to. We copy various assets from the
115 * Minecraft logger to acheive a similar appearance.
116 */
117 public static FMLRelaunchLog log = new FMLRelaunchLog();
119 static File minecraftHome;
120 private static boolean configured;
134 {
135 LogManager.getLogManager().reset();
136 Logger globalLogger = Logger.getLogger(Logger.GLOBAL_LOGGER_NAME);
137 globalLogger.setLevel(Level.OFF);
BanEntry.java (https://bitbucket.org/agaricusb/mc-dev.git) Java · 132 lines
MechanicalFixes.java (https://gitlab.com/mechanicalfixes/mechanicalfixes.git) Java · 68 lines
ProtectedBlockJDBC.java (https://github.com/mbax/Essentials.git) Java · 435 lines
TownyDataSource.java (https://github.com/Theino/Towny-Obsidian.git) Java · 91 lines
TileLoader.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 167 lines
5 import com.prupe.mcpatcher.MCPatcherUtils;
6 import com.prupe.mcpatcher.TexturePackAPI;
7 import net.minecraft.src.*;
8 import org.lwjgl.opengl.GL11;
15 public class TileLoader {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CONNECTED_TEXTURES, "CTM");
18 private static final boolean debugTextures = Config.getBoolean(MCPatcherUtils.CONNECTED_TEXTURES, "debugTextures", false);
ColorizeItem.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 118 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.MapColor;
6 import net.minecraft.src.Potion;
7 import net.minecraft.src.PotionHelper;
9 import java.util.*;
11 public class ColorizeItem {
12 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
14 private static final Map<Integer, String> entityNamesByID = new HashMap<Integer, String>();
IMPPlugin.java (https://bitbucket.org/jyc/imp) Java · 146 lines
39 @Override
40 public void onEnable() {
41 this.log = Logger.getLogger("Minecraft");
42 PluginDescriptionFile pdf = this.getDescription();
112 /**
113 * Logs a message to the server's logger ("Minecraft").
114 * @param level The log level (Level.INFO, Level.SEVERE, etc.).
115 * @param message The message to log.
123 /**
124 * Logs a message to the server's logger ("Minecraft").
125 * @param level The log level to log with.
126 * @param message The message to log.
TessellatorUtils.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 165 lines
1 package com.prupe.mcpatcher;
3 import net.minecraft.src.Icon;
4 import net.minecraft.src.Tessellator;
5 import net.minecraft.src.TextureAtlas;
7 import java.lang.reflect.Field;
14 public class TessellatorUtils {
15 private static final MCLogger logger = MCLogger.getLogger("Tilesheet");
17 private static final Integer MAGIC_VALUE = 0x12345678;
StreamClient.java (https://bitbucket.org/DarthAffe/mcreplay) Java · 66 lines
EssentialsGeoIPPlayerListener.java (https://github.com/mbax/Essentials.git) Java · 230 lines
PendingConnection.java (https://bitbucket.org/thecityservers/craftbukkit.git) Java · 218 lines
1 package net.minecraft.server;
3 import java.io.Serializable;
17 private byte[] d;
18 public static Logger logger = Logger.getLogger("Minecraft");
19 private static Random random = new Random();
20 public NetworkManager networkManager;
21 public boolean c = false;
22 private MinecraftServer server;
23 private int g = 0;
24 private String h = null;
29 public String hostname = ""; // CraftBukkit - add field
31 public PendingConnection(MinecraftServer minecraftserver, Socket socket, String s) throws java.io.IOException { // CraftBukkit - throws IOException
32 this.server = minecraftserver;
AdminControlsListener.java (https://gitlab.com/N3X15/Minecart-Mania-Admin-Controls.git) Java · 199 lines
EssentialsProtect.java (https://github.com/mbax/Essentials.git) Java · 158 lines
15 public class EssentialsProtect extends JavaPlugin implements IProtect
16 {
17 private static final Logger LOGGER = Logger.getLogger("Minecraft");
18 private static com.mchange.v2.log.MLogger C3P0logger;
19 //private final transient Map<ProtectConfig, Boolean> settingsBoolean = new EnumMap<ProtectConfig, Boolean>(ProtectConfig.class);
TimeCop.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 182 lines
1 import java.util.logging.Level;
2 import java.util.logging.Logger;
3 import net.minecraft.server.MinecraftServer;
4 import java.util.ArrayList;
5 import java.io.*;
10 private TimeCopListener listener = new TimeCopListener();
12 static final Logger log = Logger.getLogger("Minecraft");
13 static MinecraftServer mcworld = etc.getMCServer();
PropertyManager.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 137 lines
1 package net.minecraft.src;
3 import java.io.*;
9 {
10 /** Reference to the logger. */
11 public static Logger logger = Logger.getLogger("Minecraft");
13 /** The server properties object. */
57 try
58 {
59 serverProperties.store(new FileOutputStream(serverPropertiesFile), "Minecraft server properties");
60 }
61 catch (Exception exception)
creeper.java (https://github.com/goosegg/Bukkit-Plugin.git) Java · 83 lines
LogFilter.java (https://bitbucket.org/DaAllexx/logfilter.git) Java · 128 lines
BlockThread.java (https://github.com/Theino/Towny-Obsidian.git) Java · 101 lines
ColorizeItem.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 152 lines
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import com.prupe.mcpatcher.mal.resource.PropertiesFile;
6 import net.minecraft.src.MapColor;
7 import net.minecraft.src.Potion;
8 import net.minecraft.src.PotionHelper;
10 import java.util.ArrayList;
15 public class ColorizeItem {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
18 private static final Map<Integer, String> entityNamesByID = new HashMap<Integer, String>();
Colorizer.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 211 lines
PersonasPlugin.java (https://github.com/simplyianm/Personas.git) Java · 192 lines
SignBlockListener.java (https://github.com/mbax/Essentials.git) Java · 266 lines
Stargate.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 84 lines
SignCasino.java (https://github.com/darkdiplomat/SignCasino.git) Java · 75 lines
PropertyHandler.java (https://bitbucket.org/jyc/gastronomic) Java · 274 lines
15 public final class PropertyHandler
16 {
17 private static final Logger log = Logger.getLogger("Minecraft");
18 private Properties properties;
19 private String fileName;
56 try {
57 this.properties.store(new FileOutputStream(this.fileName),
58 "Minecraft Properties File");
59 } catch (IOException ex) {
60 log.log(Level.SEVERE, "Unable to save " + this.fileName, ex);
ScriptLoader.java (https://github.com/stephank/jxpl.git) Java · 90 lines
CITUtils18.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 115 lines
8 import com.prupe.mcpatcher.mal.resource.TexturePackAPI;
9 import com.prupe.mcpatcher.mal.tile.FaceInfo;
10 import net.minecraft.src.*;
12 public class CITUtils18 {
13 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_ITEM_TEXTURES, "CIT");
15 private static ItemStack currentItem;
FireworksHelper.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 53 lines
3 import com.prupe.mcpatcher.*;
4 import net.minecraft.src.EntityFX;
5 import net.minecraft.src.EntityFireworkOverlayFX;
6 import net.minecraft.src.EntityFireworkSparkFX;
7 import net.minecraft.src.ResourceLocation;
15 private static final ResourceLocation PARTICLE_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("particle.properties");
17 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.BETTER_SKIES);
18 private static final boolean enable = Config.getBoolean(MCPatcherUtils.BETTER_SKIES, "brightenFireworks", true);
19 private static BlendMethod blendMethod;
TreeFeller.java (https://bitbucket.org/Waizujin/treefeller.git) Java · 151 lines
20 public class TreeFeller extends JavaPlugin {
21 public final Logger log = Logger.getLogger("Minecraft");
22 public static mcMMO mcMMO;
23 public static TreeFeller plugin;
75 playerSettings.save(playerSettingsFile);
76 } catch(IOException ex) {
77 Logger.getLogger(JavaPlugin.class.getName()).log(Level.SEVERE, "Could not save config to " + playerSettingsFile, ex);
78 }
79 }
CleanKraft.java (https://bitbucket.org/dblencowe/cleankraft.git) Java · 81 lines
QuickWarp.java (https://github.com/Relick/QuickWarp.git) Java · 109 lines
AntiLogger.java (https://bitbucket.org/itskafei/antipvplogger.git) Java · 171 lines
StargateData.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 280 lines
ServerGUI.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 121 lines
7 import javax.swing.border.EtchedBorder;
8 import javax.swing.border.TitledBorder;
9 import net.minecraft.server.MinecraftServer;
11 public class ServerGUI extends JComponent implements ICommandListener
12 {
13 /** Reference to the logger. */
14 public static Logger logger = Logger.getLogger("Minecraft");
16 /** Reference to the MinecraftServer object. */
20 * Initialises the GUI components.
21 */
22 public static void initGui(MinecraftServer par0MinecraftServer)
23 {
24 try
BorderedTexture.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 137 lines
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import com.prupe.mcpatcher.mal.tile.IconAPI;
6 import net.minecraft.src.Texture;
7 import net.minecraft.src.TextureAtlasSprite;
11 public class BorderedTexture extends TextureAtlasSprite {
12 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.MIPMAP);
14 private float minU;
DroneDestructor.java (https://github.com/john7doe/arquillian-extension-drone.git) Java · 127 lines
PostHttp.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 101 lines
PostHttp.java (https://bitbucket.org/vkorolik/twoleanfour-client.git) Java · 101 lines
Jump.java (https://github.com/ricin/minecraft-hey0-plugins.git) Java · 142 lines
KapitalSettings.java (https://github.com/Master-Guy/Kapital.git) Java · 165 lines
33 propStrings.put(KapitalSettings.Str.MYSQL_USER, "user");
34 propStrings.put(KapitalSettings.Str.MYSQL_PASS, "pass");
35 propStrings.put(KapitalSettings.Str.MYSQL_DB, "minecraft");
36 }
85 public class KapitalSettings {
86 public static final Logger log = Logger.getLogger("Minecraft"); // Logger
87 private String curLine; // A line in the file
TexturePackChangeHandler.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 177 lines
1 package com.prupe.mcpatcher;
3 import net.minecraft.client.Minecraft;
4 import net.minecraft.src.*;
8 abstract public class TexturePackChangeHandler {
9 private static final MCLogger logger = MCLogger.getLogger("Texture Pack");
11 private static final ArrayList<TexturePackChangeHandler> handlers = new ArrayList<TexturePackChangeHandler>();
48 public static void scheduleTexturePackRefresh() {
49 MCPatcherUtils.getMinecraft().scheduleTexturePackRefresh();
50 }
52 public static void register(TexturePackChangeHandler handler) {
53 if (handler != null) {
54 if (Minecraft.getInstance().getResourceManager() != null) {
55 try {
56 logger.info("initializing %s...", handler.name);
TexturePackChangeHandler.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 184 lines
3 import com.prupe.mcpatcher.mal.resource.ResourceList;
4 import net.minecraft.client.Minecraft;
5 import net.minecraft.src.*;
9 abstract public class TexturePackChangeHandler {
10 private static final MCLogger logger = MCLogger.getLogger("Texture Pack");
12 private static final ArrayList<TexturePackChangeHandler> handlers = new ArrayList<TexturePackChangeHandler>();
49 public static void scheduleTexturePackRefresh() {
50 Minecraft.getInstance().scheduleTexturePackRefresh();
51 }
53 public static void register(TexturePackChangeHandler handler) {
54 if (handler != null) {
55 if (Minecraft.getInstance().getResourceManager() != null) {
56 try {
57 logger.info("initializing %s...", handler.name);
CommandPrognuke.java (https://bitbucket.org/simplyianm/perditio.git) Java · 117 lines
11 import java.util.logging.Level;
12 import java.util.logging.Logger;
13 import net.minecraft.src.Block;
14 import net.minecraft.src.Packet14BlockDig;
53 String toggleMessage = toggled ? "enabled" : "disabled";
54 perditio.getMinecraft().thePlayer.addChatMessage(ChatColor.RED + this.getLabel() + " " + toggleMessage + ".");
55 }
74 @Override
75 public void run() {
76 int playerX = (int) perditio.getMinecraft().thePlayer.posX;
77 int playerZ = (int) perditio.getMinecraft().thePlayer.posZ;
91 for (int curBlockZ = minZ; curBlockZ < maxZ; curBlockZ++) {
93 int theCurBlockID = perditio.getMinecraft().theWorld.getBlockId(curBlockX, curBlockY, curBlockZ);
94 Block blok = theCurBlockID <= 0 ? null : Block.blocksList[theCurBlockID];
95 if(blok != null) {//Check if block is valid to send to the instant break queue
MobRuleList.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 190 lines
7 import com.prupe.mcpatcher.mal.resource.TexturePackAPI;
8 import com.prupe.mcpatcher.mal.util.WeightedIndex;
9 import net.minecraft.src.ResourceLocation;
11 import java.util.*;
13 class MobRuleList {
14 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
16 public static final String ALTERNATIVES_REGEX = "_(eyes|overlay|tame|angry|collar|fur|invulnerable|shooting)\\.properties$";
SaveHandler.java (https://bitbucket.org/xXRogueCoderXx/expiration-1.3.2-v1r2.git) Java · 350 lines
1 package net.minecraft.src;
3 import java.io.DataInputStream;
12 {
13 /** Reference to the logger. */
14 private static final Logger logger = Logger.getLogger("Minecraft");
16 /** The path to the current savegame directory */
83 * Checks the session lock to prevent save collisions
84 */
85 public void checkSessionLock() throws MinecraftException
86 {
87 try
94 if (var2.readLong() != this.initializationTime)
95 {
96 throw new MinecraftException("The save is being accessed from another location, aborting");
97 }
98 }
HelpInput.java (https://github.com/mbax/Essentials.git) Java · 180 lines
23 private final transient List<String> chapters = new ArrayList<String>();
24 private final transient Map<String, Integer> bookmarks = new HashMap<String, Integer>();
25 private final static Logger logger = Logger.getLogger("Minecraft");
27 public HelpInput(final IUser user, final String match, final IEssentials ess) throws IOException
EssentialsXMPP.java (https://github.com/mbax/Essentials.git) Java · 152 lines
MCDocs.java (https://bitbucket.org/atajsic/bukkit-plugins.git) Java · 70 lines
PropertiesFile.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 182 lines
3 import com.prupe.mcpatcher.MCLogger;
4 import com.prupe.mcpatcher.MCPatcherUtils;
5 import net.minecraft.src.ResourceLocation;
7 import java.util.Map;
12 final public class PropertiesFile {
13 private static final MCLogger staticLogger = MCLogger.getLogger("Texture Pack");
15 private final MCLogger logger;
Permission.java (https://bitbucket.org/jyc/gastronomic) Java · 87 lines
18 Plugin test = server.getPluginManager().getPlugin("Permissions");
19 if (test != null) {
20 Logger log = Logger.getLogger("Minecraft");
21 permissionsPlugin = (Permissions)test;
22 permissionsEnabled = true;
23 log.log(Level.INFO, "[Gastronomic]: Permissions enabled.");
24 } else {
25 Logger log = Logger.getLogger("Minecraft");
26 log.log(Level.SEVERE,
27 "[Gastronomic]: Nijikokuns' Permissions plugin isn't loaded, only ops can use commands.");
MainClass.java (https://bitbucket.org/LucidDevelopment/lucideco.git) Java · 128 lines
DedicatedServerConnectionThread.java (https://bitbucket.org/agaricusb/mcpc-1.4.5.git) Java · 132 lines
1 package net.minecraft.server;
3 import java.io.IOException;
15 public class DedicatedServerConnectionThread extends Thread {
17 private static Logger a = Logger.getLogger("Minecraft");
18 private final List b = Collections.synchronizedList(new ArrayList());
19 private final HashMap c = new HashMap();
69 // CraftBukkit start
70 if (((MinecraftServer) this.f.d()).server == null) {
71 socket.close();
72 continue;
73 }
75 connectionThrottle = ((MinecraftServer) this.f.d()).server.getConnectionThrottle();
76 // CraftBukkit end
ModListResponsePacket.java (https://bitbucket.org/agaricusb/mcpc-1.4.5.git) Java · 131 lines
10 import java.util.logging.Logger;
12 import net.minecraft.server.NetHandler;
13 import net.minecraft.server.NetLoginHandler;
14 import net.minecraft.server.INetworkManager;
15 import net.minecraft.server.Packet1Login;
111 {
112 pkt.data = FMLPacket.makePacket(MOD_MISSING, missingClientMods, versionIncorrectMods);
113 Logger.getLogger("Minecraft").info(String.format("User %s connection failed: missing %s, bad versions %s", userName, missingClientMods, versionIncorrectMods));
114 FMLLog.info("User %s connection failed: missing %s, bad versions %s", userName, missingClientMods, versionIncorrectMods);
115 // Mark this as bad
119 {
120 pkt.data = FMLPacket.makePacket(MOD_IDENTIFIERS, netHandler);
121 Logger.getLogger("Minecraft").info(String.format("User %s connecting with mods %s", userName, modVersions.keySet()));
122 FMLLog.info("User %s connecting with mods %s", userName, modVersions.keySet());
123 }
MagicRPG.java (https://bitbucket.org/DylanHolmes/magicrpg.git) Java · 110 lines
SecuritySettings.java (https://github.com/ddark008/eLauncher.git) Java · 123 lines
1 package net.minecraft;
3 //Файл SecuritySettings.java
60 dcipher.init(Cipher.DECRYPT_MODE, key);
61 } catch (InvalidKeyException ex) {
62 Logger.getLogger(SecuritySettings.class.getName()).log(
63 Level.SEVERE, null, ex);
64 } catch (NoSuchAlgorithmException ex) {
65 Logger.getLogger(SecuritySettings.class.getName()).log(
66 Level.SEVERE, null, ex);
67 } catch (NoSuchPaddingException ex) {
68 Logger.getLogger(SecuritySettings.class.getName()).log(
69 Level.SEVERE, null, ex);
70 }
AuthServer.java (https://bitbucket.org/yetanotherx/mcbauthserver) Java · 100 lines
3 import com.beust.jcommander.JCommander;
4 import com.mcbouncer.auth.mcbauthserver.console.ConsoleLogManager;
5 import com.mcbouncer.auth.mcbauthserver.net.MinecraftPipelineFactory;
6 import com.mcbouncer.auth.mcbauthserver.net.SessionRegistry;
7 import java.net.InetSocketAddress;
20 public final class AuthServer {
22 public static final Logger log = Logger.getLogger("MCBAuthServer");
23 public static CLIArgs settings;
24 public static int PROTOCOL_VERSION;
47 bootstrap.setFactory(factory);
49 ChannelPipelineFactory pipelineFactory = new MinecraftPipelineFactory(this);
50 bootstrap.setPipelineFactory(pipelineFactory);
Colorizer.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 168 lines
9 import com.prupe.mcpatcher.mal.resource.TexturePackAPI;
10 import com.prupe.mcpatcher.mal.resource.TexturePackChangeHandler;
11 import net.minecraft.src.Potion;
12 import net.minecraft.src.ResourceLocation;
14 public class Colorizer {
15 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
17 static final ResourceLocation COLOR_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("color.properties");
NoCreep.java (https://bitbucket.org/DThielke/nocreep.git) Java · 43 lines
SimpleMedic.java (https://github.com/bmx-atvman14/Simple-Medic.git) Java · 145 lines
Log4jLogger.java
(http://mycila.googlecode.com/svn/)
Java · 73 lines
✨ Summary
This Java class, Log4jLogger
, extends an abstract logger and provides a custom implementation for logging messages using the Log4j library. It allows you to log messages at different levels (TRACE, DEBUG, INFO, WARN, ERROR) with customizable formatting and includes checks for whether logging is enabled for each level.
This Java class, Log4jLogger
, extends an abstract logger and provides a custom implementation for logging messages using the Log4j library. It allows you to log messages at different levels (TRACE, DEBUG, INFO, WARN, ERROR) with customizable formatting and includes checks for whether logging is enabled for each level.