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 Dec 11, 2013@bergerkiller
Oh, my bad. Updated, works like a charm. Thank you.
-
View User Profile
-
Send Message
Posted Dec 11, 2013I made several changes to BKCommonLib that will hopefully restore all packet support when using ProtocolLib. Build 322 allows TrainCarts to function properly (player exit) so I <think> it is all good.
@stgram Build 322 no longer uses the old deprecated methods, which will likely fix this problem too. The error was related to me not setting listener options, which I fixed in build 322. (321 was untested, I stated it so. 322 is tested)
The only thing I still need to do is fix the slow-performance way of identifying the packet type of packets.
-
View User Profile
-
Send Message
Posted Dec 11, 2013@aadnk
@bergerkiller
Oh, I missed that line about the "tag"...so its updated, got the #176 on PL and #321 on BCL oo, the following error disabled BCL completely: http://pastebin.com/YabL4V9A There is a 50/50 chance it will turn out that I missed something, but it cant hurt to ask the more knowledged ones.
-
View User Profile
-
Send Message
Posted Dec 11, 2013@stgram
@bergerkiller
The error is occurring in TagAPI:
Which is due to the fact that TagAPI didn't update the ProtocolLib packet listener for 1.7.2, only its own injection method. This has been fixed in the development build of TagAPI.
-
View User Profile
-
Send Message
Posted Dec 11, 2013@stgram Problem in ProtocolLib, definitely.
-
View User Profile
-
Send Message
Posted Dec 10, 2013I've no idea if it is yours or aadnk's plugin this time.... http://pastebin.com/CFwVjT1K
But it works. (almost, Citizens is ok but NameTags are not active, plugin is green in the list but simply not active)
-
View User Profile
-
Send Message
Posted Dec 9, 2013@bergerkiller
It is your call, I dont really get java, despite the fact that I do well on PHP and Cpp. All I know is that you have/had a lot of work. I am just going to sit quietly and test your builds after midnight until everything is okay. :)
But that shouldnt stop you on reporting the current situation with a few sentences, gibberish feedback is always better than no feedback. ^_^
-
View User Profile
-
Send Message
Posted Dec 9, 2013@stgram Hmn let me fix the errors at least and replace them with a single warning instead.
EDIT
build 320 stops the errors, it will log the packet that was wrongly received only once.
-
View User Profile
-
Send Message
Posted Dec 9, 2013with bkcommonlib Build #319 and protocollib Build #172, got again a lot of errors: http://pastebin.com/pkfqJCNE I miss my NPCs :/ Good luck and thank you for all your efforts so far.
-
View User Profile
-
Send Message
Posted Dec 9, 2013@bergerkiller
Thanks! I can't wait I assume the one update today was not the actual fix so I will keep waiting since I still get the spam :)
-
View User Profile
-
Send Message
Posted Dec 9, 2013@Kane_Hart Actually, I found that the error is not at all an error but rather a debug line in BKC...but the debug line shouldn´t be fired regardless. I know what to fix, and it will be fixed today.
-
View User Profile
-
Send Message
Posted Dec 8, 2013@bergerkiller I'm getting this: http://pastebin.com/NxDJEvtY
-
View User Profile
-
Send Message
Posted Dec 8, 2013nvm.
-
View User Profile
-
Send Message
Posted Dec 8, 2013Please help me, I have a 1.7.2 server and I need you to get me a snapshot of it!!
-
View User Profile
-
Send Message
Posted Dec 6, 2013BergerKiller,
Hi, so I have an error with the Statues plugin, it says it cannot recognize the code USE_ENTITY. Pls help.
Thanks!
-
View User Profile
-
Send Message
Posted Dec 6, 2013@FallenWarrior03
You are right FallenWarrior, I was stressed out by updating my server so I let my steam out and you got the heat. So, I apologize :) But that sign is really huge :D
-
View User Profile
-
Send Message
Posted Dec 6, 2013@InfroCZE
Well InfroCZE I did not see that there when I posted this question. So why don't you just calm down. Unless your name is bergerkiller or lenis0012 then I wasn't talking to you anyway. You know it takes less effort to be courteous than it does to put all that effort into trying to bring someone down with you.
-
View User Profile
-
Send Message
Posted Dec 6, 2013@Hopp00 Can you post the full error stacktrace using pastebin.com?
@NoHoPeLess Semi-caused by protocollib for MC 1.7.2 for which I did not add full support yet. I will look into adding support this afternoon. Then BKC + ProtocolLib is already good-to-go for 1.7.2, and I can start working on my own packet listening logic for when protocollib is not found.
-
View User Profile
-
Send Message
Posted Dec 6, 2013I join my testserver and then extremly loop this: LOOP
-
View User Profile
-
Send Message
Posted Dec 5, 2013I keep getting this warning on bootup: "BKCommonLib is not enabled - Plugin Instance can not be obtained! (disjointed Class state?)" I also cannot find a plugin.yml on my server, so Idk what to do.