BKCommonLib
BKCommonLib is no longer being updated on dev.bukkit.org.
If you want to use the latest version, use spigot.
Latest version: 1.57
CraftBukkit/SportBukkit/Spigot/MCPC+ build: CB 1.6.4 R1.0 / CB 1.6.4 R2.1 / Spigot 1.7
Older builds available: CB 1.5.2-R1.0 / CB 1.6.2-R1.0
Tekkit: Untested and thus unsupported, some features may not work as expected
Description
This utility library shares all the common code needs for various plugins, and having them in one library heavily reduces the amount of duplicated code. The featured utilities are varied, and whenever something is missing in Bukkit, it is added in BKCommonLib. This is one of the reasons why it has become this large: there are simply a lot of things Bukkit doesn't (want to) offer.
BKCommonLib has versioning on a per-plugin basis, so when a certain plugin needs version 2, and version 1 is installed, the server owner is automatically notified and the plugin is not enabled. This prevents the common mishaps with outdated BKCommonLib versions.
Other than utilities and services, this library offers a wide variety of reflection and user-friendly ways of accessing net.minecraft.server. If your plugin requires the use of the internals, but do not want to risk changing field and method names, you can depend on BKCommonLib to provide them for you. This allows you to remain compatible between CraftBukkit versions automatically, and reduces silent failure hazards.
Reasons for you to depend on this library
- You need to access Minecraft internals in your plugin, and Bukkit has no API for it
- You are tired of re-uploading the same version over again because of the internals changing
- You want to work with Vector/math logic, or need to use other utility classes
- The YAML of Bukkit dislikes you, and you want this to be easier
- You want to easily read and write configuration/data files
- You want easy access to data conversion utilities to convert user input
- You want to work with inventories in an advanced fashion
- You want to work with unique server events
- You want to alter entity behaviour (such as handling block collisions, custom movement, etc.)
- You want plugin messages/permissions to be configurable
- You want to work with (async)tasks without storing IDs
- You want to send and manipulate packets
Features
- General
- PluginBase for easy access to metrics, permissions, localization and more
- Permission defaults for storing the permissions a plugin uses
- Localization for making the messages of a plugin configurable
- Utilities
- General utilities for String, Logic, BlockFace and Math operations
- Block utilities for Block-related operations (states, data, etc.)
- ItemUtil for Inventory, Items and Item Transfer utilities
- RecipeUtil to work with crafting and furnace recipes
- Various Collections for auto-filtering, converting and even interpolation
- Data storage
- Configuration API with nodes, headers and other goodies
- NBT API designed after the configuration API
- (Compressed)DataReader/DataWriter to read and write data from/to file
- Entities
- CommonEntity implementations with added utilities
- EntityController for altering entity behaviour
- EntityNetworkController for altering entity network logic
- Services
- Metrics for keeping track of plugin statistics
- Conversion for conversions between all types of data
- Events and Listeners to keep track of changes on the server
- Packet services and API to keep track of packets
- Task class for easier task scheduling
- Scoreboard services to setup scoreboards without criteria
- Tab View service to alter what is shown when players press tab
Getting started
To start using BKCommonLib, you have two options (after adding BKCommonLib as dependency in the plugin.yml):
Include the jar file as a dependency
Like any dependency, keep the jar file somewhere on your computer and add it to your classpath. Nothing special here.
Make a (new) maven project and include it
Add the following repository:
<repository> <id>dj-tcraft repository</id> <url>http://ci.dj-tcraft.nl/plugin/repository/everything/</url> </repository>
And the following dependency (may need to update version):
<dependency> <groupId>com.bergerkiller.bukkit</groupId> <artifactId>BKCommonLib</artifactId> <version>1.54-SNAPSHOT</version> <scope>provided</scope> </dependency>
Dependencies BKCommonLib uses
BKCommonLib supports various other plugins and projects. Below all of these are listed:
- Vault - for permission plugin support
- ProtocolLib - to avoid packet listening conflicts
- Showcase(Standalone) - to ignore showcased items
- HyperConomy - to ignore shop items
- BleedingMobs - to ignore particles
- CGLib - for generating nms.Entity classes on-the-fly to supply Entity Controllers
- Objenesis - for generating classes without calling constructors (needed for various fixes inside class constructors)
Plugins that require BKCommonLib to be installed:
Disclaimer
This plugin utilises Hidendra's plugin metrics system, which means that the following information is collected and sent to mcstats.org:
- A unique identifier
- The server's version of Java
- Whether the server is in offline or online mode
- The plugin's version
- The server's version
- The OS version/name and architecture
- The core count for the CPU
- The number of players online
- The Metrics version Opting out of this service can be done by editing plugins/Plugin Metrics/config.yml and changing opt-out to true.
License
This library uses an open license. Feel free to use whatever code you need from it, you do not have to ask me either. If you want me to add certain features, that is fine too. Everyone is allowed to use this Library as a dependency. I do recommend extending 'PluginBase' instead of 'JavaPlugin' then, as it allows you to automatically deal with the BKCommonLib versioning checks. See also: BKCommonLib license file
This product includes software developed by the Apache Software Foundation (http://www.apache.org/)
Links:
Compatibility
BKCommonLib supports ProtocolLib when it is enabled, but if it is not, the player connection is replaced resulting in several incompatibilities. To fix these incompatibility issues, install ProtocolLib next to BKCommonLib. This can not be stressed enough. When incompatibility occurs, BKCommonLib will notify you in the console and will disable itself. The following plugins are known to be incompatible when ProtocolLib is NOT installed:
Metrics
This plugin sends server count and dependency statistics to MCStats.org. You can (globally) opt out in the PluginMetrics/config.yml file.
Banner
I use a banner in my depending plugins. This banner is automatically updated when a new version of BKCommonLib is out. It is a quick and efficient way to keep track of updates for this library. This was needed, too, because a lot of people were using outdated BKCommonLib versions, which resulted in bug reports...too many of them. And I do not want to waste your time with invalid reports. You have a plugin that uses BKCommonLib? Feel free to use the banner on your download page.
[[http://dev.bukkit.org/bukkit-plugins/bkcommonlib/|{{http://ci.dj-tcraft.nl/job/BKCommonLib/lastSuccessfulBuild/artifact/target/BKCommonLibVersion.png|Go to the BKCommonLib Dev-bukkit page}}]]







-
View User Profile
-
Send Message
Posted Apr 20, 2013@BillyGalbreath I have identified the issue, and that is that BKCommonLib loads at STARTUP, and ProtocolLib at POSTWORLD. I'll ask the ProtocolLib dev to use STARTUP as well, or otherwise I'll have to use POSTWORLD as well, which more than likely will result in bugs for other plugins using the library and starting at STARTUP.
@xGamerZ1999 Use the 1.5.1 development build version of BKCommonLib for CraftBukkit 1.5.1 R0.1.
-
View User Profile
-
Send Message
Posted Apr 20, 2013Hey! Can you update this plugin so it can run on 1.5.1 ? :D I got an error like this: 2013-04-20 14:44:21 [INFO] [BKCommonLib] Enabling BKCommonLib v1.5 2013-04-20 14:44:21 [SEVERE] Error occurred while enabling BKCommonLib v1.5 (Is it up to date?) java.lang.NoClassDefFoundError: Could not initialize class com.bergerkiller.bukkit.common.conversion.Conversion at com.bergerkiller.bukkit.common.utils.ParseUtil.convert(ParseUtil.java:542) at com.bergerkiller.bukkit.common.config.ConfigurationNode.get(ConfigurationNode.java:518) at com.bergerkiller.bukkit.common.config.ConfigurationNode.get(ConfigurationNode.java:494) at com.bergerkiller.bukkit.common.PluginBase.setPermissions(PluginBase.java:500) at com.bergerkiller.bukkit.common.PluginBase.onEnable(PluginBase.java:611) at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217) at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:457) at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381) at org.bukkit.craftbukkit.v1_5_R2.CraftServer.loadPlugin(CraftServer.java:282) at org.bukkit.craftbukkit.v1_5_R2.CraftServer.enablePlugins(CraftServer.java:264) at org.bukkit.craftbukkit.v1_5_R2.CraftServer.<init>(CraftServer.java:218) at net.minecraft.server.v1_5_R2.PlayerList.<init>(PlayerList.java:55) at net.minecraft.server.v1_5_R2.DedicatedPlayerList.<init>(SourceFile:11) at net.minecraft.server.v1_5_R2.DedicatedServer.init(DedicatedServer.java:105) at net.minecraft.server.v1_5_R2.MinecraftServer.run(MinecraftServer.java:381) at net.minecraft.server.v1_5_R2.ThreadServerApplication.run(SourceFile:573)
-
View User Profile
-
Send Message
Posted Apr 19, 2013@predawnia
Try build #118
It should be fixed with the commit i pushed about 10 min ago.
-
View User Profile
-
Send Message
Posted Apr 19, 2013@BillyGalbreath
This is because BKCommonLib loads on startup.
BergerKiller made a system that will enable ProtocolLib support as soon as it loads.
owever the SpoutPlugin checks may be called before ProtocolLib is loaded.
-
View User Profile
-
Send Message
Posted Apr 19, 2013@predawnia
I get the exact same thing. BKCommonLib is loading BEFORE ProtocolLib loads, causing this issue. I've even manually changed plugin.yml to make ProtocolLib a 'depend' instead of 'soft-depend' but to no avail.
I even downgraded ProtocolLib back to 2.3.0 (which was working before) and its doing the same thing, which tells me its BKCommonLib's fault 100% here.
EDIT
The last build that actually WORKS with SpoutPlugin installed is build 83. Your build 84 (the one where you changed up the error reporting system) seems to be the problem of this whole thing. Hope that helps narrow down the issue.
-
View User Profile
-
Send Message
Posted Apr 19, 2013@bergerkiller
Even though you said that from #87 onwards ProtocolLib is no longer a requirement, but I need ProtocolLib to run SpoutPlugin. Here is what I get from the latest dev build.
- CB #2759 - Spoutplugin #1439 - BKCommonlib #117
See: http://pastie.org/7660329
I hope this helps.
-
View User Profile
-
Send Message
Posted Apr 18, 2013Why can't I cancelled the VillagerMoveEvent? Is it possible to chance the code?
I would like to freeze the Villager for a Sky PvP map.
-
View User Profile
-
Send Message
Posted Apr 15, 2013@bfree380 Great to hear. Just in case, I added support for it by using a Class-check. At least the error will be gone :)
-
View User Profile
-
Send Message
Posted Apr 15, 2013@bergerkiller
I'm using Multiminecraft to host my server, and am using the most current Dev build that they offer. But I can manually put in the more current build of Bukkit later this evening and see if that works. Thanks again. Appreciate your help and advice on this.
EDIT: Just updated to CB 2754 and the problem seems to be gone. Thanks Again!
-
View User Profile
-
Send Message
Posted Apr 14, 2013@bfree380 Build 2718...that's a while back. Have you tried using the 1.5.1 R0.2 beta version uploaded later on? Or do you have your own reasons for not using that.
(note: I am not sure whether 1.5.1 R0.1 works at all on the latest development build...)
-
View User Profile
-
Send Message
Posted Apr 14, 2013@bergerkiller
This bug doesn't occur in the latest spigot dev build.
-
View User Profile
-
Send Message
Posted Apr 14, 2013@bergerkiller
I'm actually not using spigot, and unless libigot is packaged within other mods, I don't have that one either.
I DO have a few beacon blocks in the world, but they seem to be working properly.
Using CraftBukkit 2718 and BKCommonLib 107.
-
View User Profile
-
Send Message
Posted Apr 14, 2013@saxons12 @bfree380 Apparently I just detected a hidden bug on the Spigot implementation. CraftBeacon exists in CraftBukkit, but not in Spigot...or something. It's odd, and I'll look into it. Note that the error is not fatal, unless you have a beacon block somewhere, then it may spawn errors.
Just in case, are any of you using Libigot? Or an outdated build? It definitely is caused by the server implementation, so I need to know which you are using. Build version would also be useful.
-
View User Profile
-
Send Message
Posted Apr 14, 2013I also get error with Spigot 735, using NoLagg + BKCommonLib #108. Here is startup log:
http://pastebin.com/dvfczn1j
-
View User Profile
-
Send Message
Posted Apr 14, 2013@bergerkiller
It shows this: [SEVERE] java.lang.RuntimeException: Failed to set a valid CB Class: name = block.CraftBeacon
when I load the server, but not when it pops up as I'm just moving around the world. If you want the complete wall of text after that error, let me know. Thanks again.
-
View User Profile
-
Send Message
Posted Apr 13, 2013@bfree380 I could not identify the issue yet, because the problem seems to lie elsewhere. Regardless, I pushed build 107 which now properly shows what class is missing, instead of throwing an uninformative NPE. Please report back what it says in the log. (when enabling, probably)
Expected: "Failed to set a valid CB Class: name = <I NEED THIS NAME>"
@wumboworld Thanks, also this.
-
View User Profile
-
Send Message
Posted Apr 13, 2013I keep getting this error frequently on my server. I'm using the most current Dev build. It doesn't seem mess up anything, but I'm not sure what's causing it:
http://pastebin.com/embed_iframe.php?i=BYy7Y3yM
-
View User Profile
-
Send Message
Posted Apr 13, 2013great job with the plugin. bukkit updated recently and myworlds is v 1.6 if you could update this plugin so that it will work with myworlds that would be awesome! thanks :D
-
View User Profile
-
Send Message
Posted Apr 9, 2013@bergerkiller
No just the CB 1.5.1 R0.1 beta
Still encountering same issue with Build #92
-
View User Profile
-
Send Message
Posted Apr 9, 2013@Darkolosse If you haven't already, update to the latest development build found above. What you have is a bit outdated.