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 May 21, 2013@laurensvh Ah I see, bug in TrainCarts as I don't disable the minecart network controllers when disabling. So when you reload the server, it will cause issues like you are seeing. I recommend not using /reload for now.
-
View User Profile
-
Send Message
Posted May 21, 2013Hello,
I got a error with the plugin BCCommonLib. The plugin works but this error is spamming the console. When i saw the error i wass using BCCommonlib v1.52
Here is the error on pastebin: http://pastebin.com/DNChjQip
-
View User Profile
-
Send Message
Posted May 19, 2013@Kheleidon
His alternative downloads are listed right above the comments page and below the dev builds link.
Alternatively
[Removed external download links]
-
View User Profile
-
Send Message
Posted May 18, 2013The development builds link doesnt work for me :( any help?
-
View User Profile
-
Send Message
Posted May 18, 2013Could not load 'plugins/BKCommonLib-1.51.jar' in folder 'plugins' org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_5_R2/inventory/CraftItemStack at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:184) at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:305) at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:230) at org.bukkit.craftbukkit.v1_5_R3.CraftServer.loadPlugins(CraftServer.java:239) at org.bukkit.craftbukkit.v1_5_R3.CraftServer.<init>(CraftServer.java:217) at net.minecraft.server.v1_5_R3.PlayerList.<init>(PlayerList.java:55) at net.minecraft.server.v1_5_R3.DedicatedPlayerList.<init>(SourceFile:11) at net.minecraft.server.v1_5_R3.DedicatedServer.init(DedicatedServer.java:106) at net.minecraft.server.v1_5_R3.MinecraftServer.run(MinecraftServer.java:382) at net.minecraft.server.v1_5_R3.ThreadServerApplication.run(SourceFile:573) Caused by: java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_5_R2/inventory/CraftItemStack at com.bergerkiller.bukkit.common.conversion.type.WrapperConverter.<clinit>(WrapperConverter.java:224) at com.bergerkiller.bukkit.common.conversion.type.ConversionTypes.<clinit>(ConversionTypes.java:90) at com.bergerkiller.bukkit.common.utils.StringUtil.<clinit>(StringUtil.java:31) at com.bergerkiller.bukkit.common.ModuleLogger.<init>(ModuleLogger.java:29) at com.bergerkiller.bukkit.common.ModuleLogger.<init>(ModuleLogger.java:25) at com.bergerkiller.bukkit.common.internal.CommonPlugin.<clinit>(CommonPlugin.java:63) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:266) at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:173) ... 9 more Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_5_R2.inventory.CraftItemStack at org.bukkit.plugin.java.PluginClassLoader.findClass0(PluginClassLoader.java:70) at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:53) at java.lang.ClassLoader.loadClass(ClassLoader.java:423) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) ... 18 more 2013-05-19 01:12:09 [SEVERE] Could not load 'plugins/NoLagg-1.89.9.jar' in folder 'plugins' org.bukkit.plugin.UnknownDependencyException: BKCommonLib at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:195) at org.bukkit.craftbukkit.v1_5_R3.CraftServer.loadPlugins(CraftServer.java:239) at org.bukkit.craftbukkit.v1_5_R3.CraftServer.<init>(CraftServer.java:217) at net.minecraft.server.v1_5_R3.PlayerList.<init>(PlayerList.java:55) at net.minecraft.server.v1_5_R3.DedicatedPlayerList.<init>(SourceFile:11) at net.minecraft.server.v1_5_R3.DedicatedServer.init(DedicatedServer.java:106) at net.minecraft.server.v1_5_R3.MinecraftServer.run(MinecraftServer.java:382) at net.minecraft.server.v1_5_R3.ThreadServerApplication.run(SourceFile:573) geting this error... pls help
-
View User Profile
-
Send Message
Posted May 17, 2013Any chance of getting this to work with mcpc for 1.4.7
-
View User Profile
-
Send Message
Posted May 14, 2013@x_clucky Use latest NoLagg build with latest BKCommonLib build. See development builds.
-
View User Profile
-
Send Message
Posted May 13, 2013Is there a such thing as a BKCommonLib build that doesn't crash my server that is compatible with 1.5.2? Speaking of which, server worked perfectly fine before downloading new dev build, now it seems my whole world wont load. Thanks a bunch for that! http://dev.bukkit.org/paste/7760/
-
View User Profile
-
Send Message
Posted May 12, 2013Build server is back up. In case it ever goes down again, I have an alternative page ready for that.
-
View User Profile
-
Send Message
Posted May 11, 2013@lordkronox
Give me the dev link please? i can't find it!
-
View User Profile
-
Send Message
Posted May 11, 2013Can somebody give me a link to all the dev builds? Ive been looking for 3 days and can't find anything compatible with 1.5.2.
Please help somebody :(
-
View User Profile
-
Send Message
Posted May 11, 2013Dev link is down =( Please fix it =/
-
View User Profile
-
Send Message
Posted May 10, 2013The poll is pretty clear about it: many people want it to work on MCPC+. Priority list:
No idea when I'll be done with that. Don't expect it very soon though, because there are also other projects that need some attention...
If anyone out there started off with an MCPC+ version for BKC, let me know, and perhaps we can work on it in a group. My first task will be separation, so it is easier to see what has to be implemented. But it really won't be easy, dependencies use a lot of reflection.
-
View User Profile
-
Send Message
Posted May 9, 2013Why diz dunot work in 1.5.2 ????
Just kidding :) Works perfectly. I love it.
-
View User Profile
-
Send Message
Posted May 7, 2013@bergerkiller
Some people are just so idiotic, if you don't ignore them, they will drive you insane...
-
View User Profile
-
Send Message
Posted May 7, 2013@ThePersonally For the love of god look at the top of the main page.
-
View User Profile
-
Send Message
Posted May 7, 2013Dont work on 1.5.2 ?
-
View User Profile
-
Send Message
Posted May 6, 2013@HitArrow Yes, I plan on implementing this at some point. To do this, however, requires splitting BKCommonLib into an API and implementation, so that has to be done in advance. Furthermore, NoLagg might stop functioning then on MCPC+, since it relies on many internal NMS classes and fields.
@godgodgodgo Latest NoLagg build should fix this. (updated a few hours ago)
-
View User Profile
-
Send Message
Posted May 5, 2013Hello,is there a chance that you make your plugin works with mcpc+ builds?
-
View User Profile
-
Send Message
Posted May 5, 2013@godgodgodgo
This only happens after /nolagg examine? Uff! I will put it back, my server is getting too laggy without it