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 Jul 19, 2013@Bibbi9090
That's for plugin developers, not server owners. Do you even know what BKCommonLib does?
-
View User Profile
-
Send Message
Posted Jul 19, 2013@hasann
Use dev builds
-
View User Profile
-
Send Message
Posted Jul 19, 2013Need 1.6.2 version please quickly please
-
View User Profile
-
Send Message
Posted Jul 18, 2013I dont get this make a new maven project shit
-
View User Profile
-
Send Message
Posted Jul 18, 2013@semirotta Well there are changes - package path changes and a few field name changes. When I say 'hardly any changes' I mean that there are no big changes apart from naming changes.
-
View User Profile
-
Send Message
Posted Jul 15, 2013Currently i am moving the build server to a new location
-
View User Profile
-
Send Message
Posted Jul 14, 2013@bergerkiller
I just wonder why 1.6.1 version wont work in 1.6.2 if there is about no changes. :( I just want to update my server so people could play again in the newest version. Hate these silly minecraft updates which are not really even needed.. Just brings new issues all the time LOL
-
View User Profile
-
Send Message
Posted Jul 14, 2013@semirotta Because many servers were still running 1.6.1 ... and why not? There were practically no changes from 1.6.1 to 1.6.2, and since it somewhat worked, I hastily finished off a 1.6.1 version too.
And a 1.6.2 build can be found on the build server. I think it's pretty much done already, but I need to verify some issues related to network controllers. (passengers don't stay in minecarts) I fear it's a Minecraft client bug though.
-
View User Profile
-
Send Message
Posted Jul 14, 2013Wait I must ask, why the heck did you update to 1.6.1 instead of 1.6.2 straight since 1.6.2 fixed a lot of bugs and it is the main version right now?.. :D
-
View User Profile
-
Send Message
Posted Jul 12, 2013When will bkcommonlib for 1.6.2 come out anyone know?
-
View User Profile
-
Send Message
Posted Jul 12, 2013@thezorch
Perhaps you should politely talk to your admin right now because the rest of us have learned that the MC upgrade cycle is a slow one. However, kudos to the bukkit team for having a dev build of 1.6.1 out so quickly this time.
If your "admin" was smart he would have a test server setup that he can rsync the main server to, and then do plugin testing to determine when you can upgrade to a new(er) version. I would be happy to provide the bash script to him if he PMs me.
I apologize if I seem harsh, but no amount of complaining will make this process any faster. In fact it will hamper the process or drive the devs away. They need plenty of thanks for all the hard work they do. They have to maintain school/jobs and family lives as well as being devs for free products. Though some do take donations most folks don't donate.
-SDpyro
-
View User Profile
-
Send Message
Posted Jul 12, 2013@bergerkiller
1.54?
-
View User Profile
-
Send Message
Posted Jul 11, 2013@toxictroop 1.6.2 are on the development builds server
-
View User Profile
-
Send Message
Posted Jul 11, 2013when can we expect 1.6.2 im still at 1.5.2 because 1.6.1 is unstable
-
View User Profile
-
Send Message
Posted Jul 10, 2013@thezorch Yep, what softvelvet posted is a link to it. It's under approval though. I do recommend updating to 1.6.2 instead though if you CAN, because CraftBukkit 1.6.1 is kinda unstable.
-
View User Profile
-
Send Message
Posted Jul 10, 2013@thezorch
http://dev.bukkit.org/bukkit-plugins/bkcommonlib/files/42-v1-53/
Follow that link, and click on the "download" text
-
View User Profile
-
Send Message
Posted Jul 10, 2013Your page here says a 1.6.1 Development Build of BKCommonLib exists, but after spending 6 frustrating hours we can't find it. What gives? You say its there but its not. Our server is in limbo, and our admin is raging mad right now because this means we may have to downgrade everything to 1.5.4 until a 1.6.1 compatible version of this library finally surfaces (if at all).
If the 1.6.1 build exists please post the link to it on this page. We're not the only ones looking for it. MyWorlds has the features we need and we're stuck in limbo until we can get a compatible BKCommonLib to use with it.
We were planning on taking our server public, but without a 1.6.1 BKCommonLib those plans are on hold.
--Michael "TheZorch" Haney, Senior Staff Writer/Creativity Director
Mystic Island Games LLC
-
View User Profile
-
Send Message
Posted Jul 10, 2013@SPGEARClub Did have some issues that needed fixing though, but they are now all resolved. Issues were related to missing packet API and attachment packets causing errors. (all related to TrainCarts, which now works on 1.6.2 properly)
-
View User Profile
-
Send Message
Posted Jul 10, 2013@Bagmaster12
http://ci.dj-tcraft.nl/job/BKCommonLib/lastSuccessfulBuild/artifact/target/BKCommonLib-1.54-SNAPSHOT.jar
It's a dev, but it's stable. For example, I use it and it works just fine. (So yes, the next 10 min lol)
And when I posted this it was only like 24 min. released
-
View User Profile
-
Send Message
Posted Jul 10, 2013@Bagmaster12
Neope.