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 2, 2013@lenis0012
Link for the jenkins dev build?
-
View User Profile
-
Send Message
Posted May 2, 2013@Aquarius77
check the jenkins server from ProtocolLib
-
View User Profile
-
Send Message
Posted May 2, 2013Where can i find protcollib 2.4.2 ? Have the same issue with spoutplugin Thanks for your help
-
View User Profile
-
Send Message
Posted May 2, 2013Started working on 1.5.2 builds.
First builda available on Jenkins.
Help us testing to get a 1.5.2 stable build out faster and report all bugs you can find.
-
View User Profile
-
Send Message
Posted May 1, 2013@bergerkiller
Thanks. Build #67 of ProtocolLib 2.4.2 Snapshot resolves the problem :)
-
View User Profile
-
Send Message
Posted May 1, 2013@Schlumpf9 Make sure to download the very latest ProtocolLib, and see if that fixes it then. The author added support fixes a while back, you could be using an outdated version that does not have this.
-
View User Profile
-
Send Message
Posted May 1, 2013@bergerkiller
I got the same problem, I am also using as predawnia Spout and ProtocolLib is installed with the newest Version, but I also get this error and predawnia has also installed ProtocolLib?!
-
View User Profile
-
Send Message
Posted Apr 30, 2013@Pocketkid2
Yiu can check the docs (under Features), github or do what BergerKiller said
-
View User Profile
-
Send Message
Posted Apr 30, 2013@predawnia Pay a close look to what BKCommonLib logged. The answer is there.
@Pocketkid2 BKCommonLib pretty much is implementation and API in one for now, I plan on separating it at some point once I start looking into MCPC+ support, which most likely requires this.
I recommend using maven to add the dependency, and simply downloading the BKC source locally so the Javadocs are there. Sadly, I have no idea how I can make javadocs downloadable or publicly accessible... :/
If you need to know where to find what, the main page contains links to the sections of interest, which in turn link to the classes you can find them. In general, all features are contained in the [Name]Util classes.
-
View User Profile
-
Send Message
Posted Apr 30, 2013Where can I find the API?
-
View User Profile
-
Send Message
Posted Apr 30, 2013@bergerkiller
Hi. I am having issues on BKCommonLib with SpoutPlugin, even when used with ProtocolLib. This issue started after build #83
Without SpoutPlugin http://pastie.org/7742606
With SpoutPlugin http://pastie.org/7742607
How can this be resolved?
-
View User Profile
-
Send Message
Posted Apr 28, 2013Finally, an official BKCommonLib built is now in the approval phase. Mind you: it's 1.1 mb, so it'll take a while. I wish them good luck with it, the loss of generics makes some of the code rather hard to read when de-obfuscated...
EDIT
Aaaaand I screwed something up, finding out about it a tad too late. Re-uploading it is I suppose. Found out that the FALSE permission default is now broken because all OP-players have the *-permissions by default. Sigh. I'm terribly sorry for the person that had to sift through all that...
-
View User Profile
-
Send Message
Posted Apr 27, 2013@Simonsigge Are you using Spigot by chance? Also, in case there is an incompatibility, see if installing protocollib helps.
EDIT
Looks like a combination of both, but I need a little bit more information to find out what the issue is. It could be something/someone else already removed the connection and there is nothing wrong, but it's still odd. For the error, it appears to be some sort of world corruption issue, as I can't track it down to BKCommonLib or any other plugin.
-
View User Profile
-
Send Message
Posted Apr 27, 2013@Simonsigge
I cant even login to my own server ;/
-
View User Profile
-
Send Message
Posted Apr 27, 2013@bergerkiller
2013-04-27 21:50:33 [INFO] Simonsigge[/90.224.171.151:27623] logged in with entity id 34707 at ([world] 352.5, 67.0, 484.5) 2013-04-27 21:50:33 [INFO] Disconnecting Simonsigge [/90.224.171.151:27623]: Internal server error 2013-04-27 21:50:33 [WARNING] Failed to handle packet for Simonsigge [/90.224.171.151:27623]: java.lang.ArrayIndexOutOfBoundsException: -2757546 java.lang.ArrayIndexOutOfBoundsException: -2757546 at java.util.ArrayList.elementData(ArrayList.java:371) at java.util.ArrayList.set(ArrayList.java:399) at net.minecraft.server.v1_5_R2.RegionFile.<init>(RegionFile.java:76) at net.minecraft.server.v1_5_R2.RegionFileCache.a(SourceFile:61) at net.minecraft.server.v1_5_R2.ChunkRegionLoader.chunkExists(ChunkRegionLoader.java:39) at net.minecraft.server.v1_5_R2.ChunkProviderServer.getChunkAt(ChunkProviderServer.java:98) at net.minecraft.server.v1_5_R2.PlayerChunk.<init>(PlayerChunk.java:24) at net.minecraft.server.v1_5_R2.PlayerChunkMap.a(PlayerChunkMap.java:69) at net.minecraft.server.v1_5_R2.PlayerChunkMap.addPlayer(PlayerChunkMap.java:112) at net.minecraft.server.v1_5_R2.PlayerList.a(PlayerList.java:169) at net.minecraft.server.v1_5_R2.PlayerList.c(PlayerList.java:219) at net.minecraft.server.v1_5_R2.PlayerList.a(PlayerList.java:100) at net.minecraft.server.v1_5_R2.PendingConnection.d(PendingConnection.java:129) at net.minecraft.server.v1_5_R2.PendingConnection.c(PendingConnection.java:44) at net.minecraft.server.v1_5_R2.DedicatedServerConnectionThread.a(DedicatedServerConnectionThread.java:41) at net.minecraft.server.v1_5_R2.DedicatedServerConnection.b(SourceFile:29) at net.minecraft.server.v1_5_R2.MinecraftServer.r(MinecraftServer.java:580) at net.minecraft.server.v1_5_R2.DedicatedServer.r(DedicatedServer.java:225) at net.minecraft.server.v1_5_R2.MinecraftServer.q(MinecraftServer.java:476) at net.minecraft.server.v1_5_R2.MinecraftServer.run(MinecraftServer.java:409) at net.minecraft.server.v1_5_R2.ThreadServerApplication.run(SourceFile:573) 2013-04-27 21:50:33 [SEVERE] [BKCommonLib] Failed to (un)register PlayerConnection proxy...bad things may happen!
-
View User Profile
-
Send Message
Posted Apr 27, 2013@Recolance Will be fixed in next update.
@Simonsigge Some of the stack trace is missing, can you post the rest to pastebin.com?
-
View User Profile
-
Send Message
Posted Apr 27, 2013Hey!
I have no idea why, but some players cant join the server. This is the error:
2013-04-27 21:38:28 [INFO] malcolm619[/83.177.131.107:65131] logged in with entity id 26255519 at ([world] 352.04205047322665, 72.10408037809304, 135.4194603375717) 2013-04-27 21:38:28 [INFO] Disconnecting malcolm619 [/83.177.131.107:65131]: Internal server error 2013-04-27 21:38:28 [WARNING] Failed to handle packet for malcolm619 [/83.177.131.107:65131]: java.lang.ArrayIndexOutOfBoundsException java.lang.ArrayIndexOutOfBoundsException 2013-04-27 21:38:28 [SEVERE] [BKCommonLib] Failed to (un)register PlayerConnection proxy...bad things may happen!
-
View User Profile
-
Send Message
Posted Apr 27, 2013Happens when user rides another player with plugin PlayerRider. Also doesn allow for selection of statues on your statue plugin.
-
View User Profile
-
Send Message
Posted Apr 21, 2013@xcanner See top page + development builds.
-
View User Profile
-
Send Message
Posted Apr 21, 2013Is there coming an update for 1.5.1-R0.2?