summaryrefslogtreecommitdiffstats
path: root/src/Protocol (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-12Unify multiprotocol entity animationsTiger Wang13-198/+397
2021-04-12Streamline player abilities handlingTiger Wang8-114/+37
* Update player list gamemode on world change * Fix invisibility for spectators, use entity metadata * Populate m_World for cPlayers on load - Remove SendPlayerMaxSpeed, a duplicate of SendEntityProperties
2021-04-12Fix sending incorrect date values on world changeTiger Wang3-9/+12
Yak shave: make more things use cTickTime. Fix a couple of incorrect modulo-on-millisecond-value by making them use WorldTickAge.
2021-04-03Basic elytra flight (#5124)Damián Imrich3-16/+41
* Basic elytra flight Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-03-28Unify DoWithBlockEntity (#5168)Tiger Wang2-11/+0
+ DoWith calls now broadcast the block entity and mark the chunk dirty + Add block entity change queue to synchronise BE updates with block updates * Fixed a few incorrect assertions about BE type - Remove manual overloads
2021-03-28Fix Windows XP to 7 compatibility (#5167)Tiger Wang2-2/+2
* Partially reverts 01a4e696b * Unify thread names - Remove use of GetThreadId API
2021-03-20Change TimeOfDay to WorldDate (#5160)Tiger Wang3-6/+8
* Change TimeOfDay to WorldDate * Do not wrap at 20 minutes, continue incrementing * Fixes #4737 * Fixes #5159
2021-03-19Don't send ping updates one packet at a timeTiger Wang3-6/+12
* Use the batch update feature of the packet. * Lengthen interval between time and ping update packets (ref. http://github.com/cuberite/cuberite/issues/4082#issuecomment-348675321).
2021-03-18Deduplicate WriteBlockEntityTiger Wang9-538/+247
2021-03-15Adding basic Banner functionality (#4806)12xx124-7/+60
+ Added item and block for banners Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-03-08Do protocol decryption in-place (with CryptoAPI on Windows) (#5145)Tiger Wang5-156/+145
2021-03-07Some emplace_back replacements (#5149)12xx121-1/+1
* replace push_back with emplace_back when a new object was created in the function call
2021-03-06Mitigate MSVC crash (#5146)Tiger Wang1-8/+8
Reference: http://ci.appveyor.com/project/Cuberite/cuberite/builds/38087390/job/p857ibg3x87naw36/messages
2021-03-05Adding Boss bar (#5025)12xx1212-35/+380
+ Add boss bar Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-03-05Prepare ChunkData for BlockState storage (#5105)Tiger Wang2-155/+200
* Rename ChunkData Creatable test * Add missing Y-check in RedstoneWireHandler * Remove ChunkDef.h dependency in Scoreboard * Prepare ChunkData for BlockState storage + Split chunk block, meta, block & sky light storage + Load the height map from disk - Reduce duplicated code in ChunkData - Remove saving MCSBiomes, there aren't any - Remove the allocation pool, ref #4315, #3864 * fixed build * fixed test * fixed the debug compile Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com>
2021-02-20Mark UNREACHABLE with intrinsicsTiger Wang7-35/+10
2021-02-06Adds playerlist header and footer broadcasting (1.8-1.13)dImrich7-310/+332
2021-01-26Fix debug macro situation (#5114)Tiger Wang1-2/+2
Use the standard NDEBUG.
2021-01-19MultiVersionProtocol: fix two crashesTiger Wang3-82/+58
First one: add missing exception handler in ProcessProtocolIn Second: remove faulty logic dealing with incomplete packets. `a_Data = a_Data.substr(m_Buffer.GetUsedSpace() - m_Buffer.GetReadableSpace());` was incorrect; it attempted to apply a length derived from m_Buffer to an unrelated a_Data. Its purpose was to give cProtocol the data the client sent, minus initial handshake bytes. However, we can use the knowledge that during initial handshake, there is no encryption and every byte can be written unchanged into m_Buffer, to just call cProtocol with a data length of zero. This will cause it to parse from m_Buffer - wherein we have already written everything the client sent - with no a_Data manipulation needed. Additionally, removed UnsupportedButPingableProtocolException (use of exception as control flow) and encode this state as m_Protocol == nullptr, id est "no protocol for this unsupported version", which is then handled by cMultiVersionProtocol itself.
2021-01-12Clarify cClientHandle, cPlayer ownership semanticsTiger Wang3-15/+10
+ A cPlayer, once created, has a strong pointer to the cClientHandle. The player ticks the clienthandle. If he finds the handle destroyed, he destroys himself in turn. Nothing else can kill the player. * The client handle has a pointer to the player. Once a player is created, the client handle never outlasts the player, nor does it manage the player's lifetime. The pointer is always safe to use after FinishAuthenticate, which is also the point where cProtocol is put into the Game state that allows player manipulation. + Entities are once again never lost by constructing a chunk when they try to move into one that doesn't exist. * Fixed a forgotten Super invocation in cPlayer::OnRemoveFromWorld. * Fix SaveToDisk usage in destructor by only saving things cPlayer owns, instead of accessing cWorld.
2021-01-11zlib -> libdeflate (#5085)Tiger Wang16-290/+268
+ Use libdeflate + Use std::byte * Fix passing temporary to string_view + Emulate make_unique_for_overwrite
2020-12-26ViewDistance: unsigned -> signedTiger Wang1-1/+1
2020-12-21Prepare for 1.15+ (#4856)Tiger Wang15-43206/+43211
+ Add type-safe container for states * Split registry Blocks into BlockTypes, BlockStates so the block types enumeration can be #included without too much penalty * Ensure Registry uses type-safe container
2020-12-21Comment and code style fixTiger Wang1-2/+2
+ Add static keyword - Don't capture everything in lambda
2020-12-18Ignore CanFly flag sent by the clientmathiascode1-6/+2
2020-12-18Warnings improvementsTiger Wang5-34/+24
* Turn off global-constructors warning. These are needed to implement cRoot signal handler functionality * Add Clang flags based on version lookup instead of a compile test. The CMake config process is single threaded and slow enough already * Reduced GetStackValue verbosity + Clarify EnchantmentLevel, StayCount, AlwaysTicked, ViewDistance signedness + Give SettingsRepositoryInterface a move constructor to simplify main.cpp code - Remove do {} while (false) construction in redstone handler
2020-11-23Adding new monster types to enum and saving/loading for easier future implementation (#4941)12xx129-24/+436
* added new monster types to enum added string <-> enum conversion in namespace serializer added loading functions added to saving * renamed zombie pigman to zombified piglins in enum Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-11-06Ender Crytal Fix and report proper cmake file for luabindingscheck fail (#5017)12xx125-14/+14
* fixed network fixed explosion fixed ticking added network broadcast to Setter method added nullptr protection using macros in 1.10 Protocol_1_10.cpp revealed functions to LUA API small fixups, typos, less functions used fixed more doc readded info that saving is done only if the beam is displayed made the constructor transfer all needed members fixed wrong commit removed default parameters on SpawnEnderCrystal fixed wrong metadata moved call to destroy in the right place fixed some typos Fixed Ender Crystal * fixed documentation * fixed doc and added proper error message * Parameters, arrows * Parameters Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-10-29Add beam target, configurable base visibility to Ender Crystals (#5010)12xx126-0/+89
* Fixes #4990 Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-10-05Fix cmake not adding Werror on clang, and _lots_ of warnings (#4963)peterbell1014-150/+71
* Fix cmake not adding Werror on clang, and _lots_ of warnings * WIP: Build fixes * Cannot make intermediate blockhandler instance * Tiger's changes * Fix BitIndex check * Handle invalid NextState values in cMultiVersionProtocol Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-10-03Remove SetProperty(...cPlayer)Tiger Wang3-4/+4
Enchantment table, anvil windows are already opened one per-player.
2020-09-20Added end portal and enchanting table block entities12xx122-17/+49
2020-09-18Style, no need to tag struct with sTiger Wang1-9/+9
2020-09-18Remove unused ServerPort argumentTiger Wang5-21/+20
2020-09-18Add State enum to protocolTiger Wang8-62/+55
2020-09-18Remove unused ServerPort memberTiger Wang2-3/+1
2020-09-18Cleanup Protocol classesTiger Wang5-49/+46
* Visibility, static, ordering changes
2020-09-12Use tracing for explosions (#4845)Tiger Wang3-17/+11
* TNT: Implement tracing algorithm + Add intensity tracing * Fix iterating over all players to SendExplosion, even those not in range * Implemented TNT entity interaction * Fixed misaligned destruction tracing * Finalise TNT algorithm - Remove BlockArea and just use chunks Using SetBlock makes it so that we can update everything properly, and does appear to be faster. * BlockInfo learns about explosion attentuation * Rename Explodinator parameters * TNT: pull block destruction into common function Co-authored-by: Alexander Harkness <me@bearbin.net>
2020-08-29Unused/duplicate function cleanupTiger Wang4-26/+2
* FaceIntToBlockFace in 1.8/1.9 protocol merged - Removed undefined permissions stuff in Player header
2020-08-281.13+: Send length-prefixed server Brand stringTiger Wang2-18/+4
Ref: 5176c22656a8fb5485ab04100daa93bb761bb8f6
2020-08-21ChunkDataSerializer: don't repeatedly mallocateTiger Wang2-163/+206
+ Store an instance of the class, the way it seems it is meant to be used.
2020-08-21CompressPacket: reserve CompressedSize, not the uncompressed sizeTiger Wang1-3/+3
+ Assign the length data to a_CompressedData to overwrite it, mirroring the behaviour of cByteBuffer::ReadAll
2020-08-21Consolidate various Chunk serialisers under one roofTiger Wang2-141/+43
* Merge most into WriteSectionDataSeamless
2020-08-21Made cProtocol::Version, EntityMetadata enums less verboseTiger Wang11-273/+273
2020-08-21Remove complex templated SendBlockChangeTiger Wang4-94/+48
If we're sending enough blocks to have virtual calls be an issue, we should resend the chunk instead.
2020-08-19Adding block entity transmission to 1.13 (#4829)12xx122-1/+38
+ Adding block entity transmission to 1.13 + Added HandlePacketSetBeaconEffect Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-08-19Add statistics palette for 1.15 & 1.16Tiger Wang4-6/+171
2020-08-19Add Statistics and Achievements for newer Network standards12xx1213-23/+413
2020-08-06Revert "Hotpatch optional for macOSX builds on buildserver"Alexander Harkness1-4/+4
This reverts commit 5e3f51f5ff39ac7219f1f0fcbc27340949f95ade.
2020-08-05imprementing plugin message to send server brand (#4786)12xx121-2/+6
* fixed issue #4773 Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-08-05Delete unreferenced variableTiger Wang1-1/+0
2020-08-05Adjust incorrect palette inclusionsTiger Wang3-3/+3
2020-08-05Hotpatch optional for macOSX builds on buildserverAlexander Harkness1-4/+4
2020-08-02Add WakeUp/AddBlock distinctionTiger Wang1-1/+0
* WakeUp is for singular changes (block breaking for example). The simulator should check blocks around the position and discover other affected blocks as it sees fit * AddBlock is for when you know a whole area is to be updated; chunk loading, or area wakeups for example + Prepares for correct handling of destroyed blocks after removal of SolidBlockHandler in the redstone simulator
2020-07-28Correct Serialise393/477 version annotationsTiger Wang1-2/+3
2020-07-261.14 connection supportTiger Wang16-64/+560
2020-07-26Fix incorrect big flower translationTiger Wang1-4/+6
* Upgrade palette had incorrect values for upper half of large flowers
2020-07-20Remove some unused inclusionsTiger Wang10-40/+22
2020-07-20Remove GetProtocolVersion unneeded commentsTiger Wang4-7/+4
2020-07-19Remove ProtocolPalettesTiger Wang3-172/+0
2020-07-19Inherit constructors, remove duplicationTiger Wang8-84/+19
2020-07-19Remove Waterlogged value from registryTiger Wang5-19887/+19887
(apparently they're going to remove it, we don't want such a large breaking change) * Also alpha sort ids, parameters
2020-07-19Use 1.13.1 block paletteTiger Wang2-18/+47
2020-07-19Implement "caching" in ChunkDataSerializerTiger Wang6-196/+114
+ When sending a chunk to multiple clients, group them by protocol version and send the same data
2020-07-19Reduce duplication in CompressPacketTiger Wang1-42/+76
- Remove line 1742 that wrote data which was then immediately cleared * Store the compress/no compress threshold in a constant - Remove adding a noncompressed header in SendPacket, CompressPacket handles everything now
2020-07-191.13.1, 1.13.2 connection supportTiger Wang4-13/+185
2020-07-19Add 1.13.1 to 1.15.2 mappingsTiger Wang13-15/+29585
2020-07-18Use cMultiVersionProtocol's bufferTiger Wang4-37/+33
2020-07-18Delete duplicated status request handlersTiger Wang15-535/+181
Here we go again...
2020-07-181.13 items supportTiger Wang16-85/+25686
+ Add 1.16 block and item definitions
2020-07-17Initial work on 1.13 entity metadata (#4539)Mat3-177/+1075
* Initial work on 1.13 entity metadata * Largely complete metadata Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-07-17cProtocolRecognizer goes on a diet (#4770)Tiger Wang6-1153/+235
- Removed inheritance from cProtocol
2020-07-14Introduce recipe book functionality (#4493)Tobias Wilken13-11/+299
* Introduce recipe book functionality The recipe book helps especially new players. Missing it gives the impression that cuberite is not as advanced as it is. The handling of the recipe book uses the following functions: - Unlock Recipes (https://wiki.vg/index.php?title=Protocol&oldid=14204#Unlock_Recipes) to make recipes available and show the notification for new recipes. Initialization is done on player login for known ones, the update is done when new items are discovered. - Craft Recipe Request (https://wiki.vg/index.php?title=Protocol&oldid=14204#Craft_Recipe_Request) when the user selects a recipe from the recipe book to fill the slots. Known recipes are initialized on player login via `Unlock Recipes` with `Action` 0. As soon as a new recipe is discovered this is added via `Unlock Recipes` with `Action` 1. To be able to know and recognize new recipes the player class is extended with `KnownItems` and `KnownRecipes`. As soon as a player touches an item this is compared to the list of `KnownItems`, if the item is unknown the recipes are checked for this item and the other ingredients are checked with the list of `KnownItems`. If a full match is discovered the recipe is unlocked with the client and stored in the `KnownRecipes`. To unlock recipes the recipe ID is sent to the client. A mapping file (for protocol 1.12.2) translated the minecraft recipe names to ids. The crafting.txt is extended with and minecraft recipe names is possible. Limitations: Only a single recipe is added to the crafting area. Multiple clicks or shift click does not increase the number of builds. Co-authored-by: peterbell10 <peterbell10@live.co.uk> * Address first issues mentioned by @peterbell10 - Some linting - Extract loading of recipe specific protocol mapping into a function - Build `RecipeNameMap` only once - Use `std::optional` - Extract `LoadRecipe` from `Window` * Start to implement new suggestions * Update with suggestions from @peterbell10 * Some minor cleanup * Update protocol packet IDs * Remove unused include * Include header in cmake * Change a vector to integer counter * Change dromedaryCase method names to PascalCase * Address suggestions from @madmaxoft * Read Protocol subdirectories to load recipe books To load all recipebooks iterate over the `Protocol` subdirectories to find mapping files. Co-authored-by: peterbell10 <peterbell10@live.co.uk>
2020-07-06Reduced packet spam when entities idleTiger Wang1-1/+1
* Try not to send look packets when nothing's changed.
2020-07-06Made grass spreader prettierTiger Wang2-2/+2
2020-05-29Protocol: Avoid crashing on invalid sign textPeter Bell1-1/+1
2020-05-16Upgrade to C++17 [CMake] (#4717)Tiger Wang1-9/+2
* Make our CMake slightly less insane
2020-05-15Enable some more clang-tidy linter checks (#4738)peterbell104-9/+9
* Avoid inefficient AString -> c_str() -> AString round trip * Avoid redundant string init expressions * Avoid unnecessary return, continue, etc. * Add .clang-format to help with clang-tidy fix-its * Avoid unnecessary passing by value * Avoid unnecessary local copying * Avoid copying in range-for loops * Avoid over-complicated boolean expressions * Some violations missed by my local clang-tidy * Allow unnecessary continue statements * Add brackets * Another expression missed locally * Move BindingsProcessor call into clang-tidy.sh and add space * Fix pushd not found error * Different grouping of CheckBlockInteractionRate
2020-05-09Update submodules (#4727)peterbell1010-52/+41
Closes #4708 This updates jsoncpp, mbedtls, TCLAP and SQLiteCpp to their latest stable release. A few additional changes were needed: * jsoncpp deprecated Reader, FastWriter and StyledWriter which I've replaced with some helper functions in JsonUtils.cpp * SQLiteCpp changed how it builds with external sqlite libraries, now expecting them to be installed. The simplest path was to remove sqlite from cuberite's submodule and just use SQLiteCpp's internal version.
2020-05-06Fixed various MSVC warnings.Mattes D1-0/+1
2020-05-04Fix one definition rule violationsTiger Wang4-18/+14
2020-05-04Improve entity position updates (#4701)Tiger Wang9-208/+200
* Make puking pickups fly nicer * Improve entity position updates * Move determination of whether a delta is too big for a packet into the protocol handlers + Less jittery movement + Generalise CollectEntity to take any entity
2020-05-01Unify entity spawn packet sendingTiger Wang8-367/+212
2020-04-22Unify 1.8 and 1.9Tiger Wang4-2359/+156
- Deleted ridiculous amount of duplicated code
2020-04-20Delet SpawnObject paramsTiger Wang7-8/+8
* Fix #4679 awkward...
2020-04-16Using Super.Mattes D12-36/+49
2020-04-10Use correct value for zombie villager in 1.13Mat1-1/+1
2020-04-10Fix compilation, for real this time.Alexander Harkness4-0/+4
I should go to sleep now...
2020-04-10Add Zombie VillagersBond-0095-18/+86
2020-04-07Initial resource pack support (#4622)Mat11-3/+107
2020-04-04Potion changes (#4601)Mat1-7/+7
* Correct protocol translation for potions * Update brewing recipes
2020-04-04Implement wither skeletons (#4563)Mat6-48/+29
2020-04-03Quick fix to make spawn eggs work (#4611)Mat1-1/+1
2020-04-03Pulled the BlockID and BlockInfo headers from Globals.h. (#4591)Mattes D3-4/+5
The BlockID.h file was removed from Globals.h and renamed to BlockType.h (main change) The BlockInfo.h file was removed from Globals.h (main change) The ENUM_BLOCK_ID and ENUM_ITEM_ID enum names were replaced with ENUM_BLOCK_TYPE and ENUM_ITEM_TYPE (cosmetics) The various enums, such as eDimension, eDamageType and eExplosionSource were moved from BlockType.h to Defines.h, together with the helper functions for converting between them and strings (StringToDimension et al.) (minor) Many inline functions were moved from headers to their respective cpp files, so that BlockType.h could be included only into the cpp file, rather than the header. That broke our tests a bit, since they pick bits and pieces out of the main code and provide stubs for the rest; they had to be re-stubbed and re-verified. eMonsterType values are no longer tied to E_ITEM_SPAWN_EGG_META_* values
2020-03-29Add protocol mob ID remapping (#4538)Mat11-5/+217
2020-03-28Fix build on ClangAlexander Harkness2-8/+8
2020-03-28Inventory changes (#4561)Mat2-12/+12
Co-Authored-By: peterbell10 <peterbell10@live.co.uk>
2020-03-23Enable functional packets in 1.13mathiascode2-30/+0
2020-03-05Use LastSentPos for mob spawn packet in 1.11+ (#4490)Mat3-109/+4
2020-02-24Remove 1.13 from supported protocol listmathiascode1-3/+3
2020-01-07Added temporary block type mapping for 1.13+ protocols.Mattes D11-50/+297
2020-01-07ProtocolRecognizer: Updated to unique_ptr.Mattes D2-36/+20
2019-12-28Moved ProtocolBlockTypePalette functionality into BlockTypePalette.Mattes D3-186/+0
2019-09-24Fix clang8.0 build (#4399)Bond-0091-9/+13
The protocol 13.0 PR broke clang 8.0 builds.
2019-09-22Add ProtocolBlockTypePalette (#4391)E143-0/+187
2019-09-16Protocol 1.9: Alpha-sort, add useful debugging code.Mattes D2-38/+47
2019-09-16Initial support for 1.13 clientsTiger Wang8-6/+669
+ Can look at *shape* of world + Can look at *shape* of inventory
2019-09-10Fixed warnings in ChunkDataSerializer.Mattes D1-2/+2
2019-09-10Protocol: Use logical outgoing packet types.Mattes D17-517/+705
2019-08-11Fix building with clang 8.0 (#4346)Bond-0094-28/+40
2019-04-22Fix player skin sending through BungeeCord (#4328)DaPorkchop_1-5/+10
This fixes sending of player skins through BungeeCord by actually parsing the JSON instead of setting the player properties as a string.
2018-08-29Force all headers other than "Globals.h" to be included with relative paths (#4269)peterbell1013-46/+17
Closes #4236 CMake now creates a header file in the build directory under the path "include/Globals.h" which just includes "src/Globals.h" with an absolute path. Then instead of adding "src/" to the include directories, it adds "include/". #include "Globals.h" still works by including the build generated file and any other src-relative path will not work.
2018-08-26Store and pass entity effect duration as an int not a short. (#4293)Alexander Harkness7-31/+7
Fixes #4292.
2018-07-26CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell106-5/+11
Add check for number of empty lines between functions and fix the corresponding failures
2018-07-23Keep players in gmNotSet (#4248)changyong guo2-4/+4
This allows players game mode to update to the default after portal to another world. Fixes #4207
2018-07-23recover hotbar selected slot after reconnect (#4249)changyong guo8-0/+46
1. implement protocol message SendHeldItemChange 2. add save / load inventory equipped item slot in JSON 3. send held item slot message after player connect to server Fixes #4189
2018-07-22cIsThread: Reset m_ShouldTerminate after the thread has stopped (#4258)peterbell101-2/+1
This allows threads to be restarted after stopping. Fixes #4257
2018-05-02Prefer static_cast to reinterpret_cast (#4223)peterbell105-182/+182
* Change reinterpret_cast -> static_cast wherever possible * Remove more unnecessary `const_cast`s. reinterpret_casts should be avoided for the same reason as c-style casts - they don't do any type-checking. reinterpret_cast was mainly being used for down-casting in inheritance hierarchies but static_cast works just as well while also making sure that there is actually an inheritance relationship there.
2018-02-05Deal with covered switches consistently (#4161)peterbell101-5/+1
* Fixes a number of "<function>: not all control paths return a value" warnings on MSVC. * Introduces the UNREACHABLE global macro and uses it instead of conditionally compiled switch defaults. * Move cNBTParseErrorCategory from FastNBT.h into FastNBT.cpp to prevent bad calls to message()
2018-01-08Rewrite cClientHandle::HandleRightClick (#4089)9caihezi5-8/+39
* Add hand parameter to distinguish main hand/off hand. * Add a new function cClientHandle::HandleUseItem to separate the functionality of using an item without a target block. This matches the protocol with client version >= 1.9 * Always actively update the status of a block if the placement fails (by out of reach or rejected by plugin). * Do not call plugin callback CallHookPlayerRightClick(-1, 255, -1, -1, 0, 0, 0) when using item. The CallHookPlayerUsingItem will still be called. Now at most one of CallHookPlayerRightClick, CallHookPlayerUsingBlock, CallHookPlayerUsingItem and CallHookPlayerEating will be called based on the type of action (not including the used version of callbacks). * Do not count using item as BlockInteractionsRate check (Using item takes time). * Now we can open chests(etc.) when sneaking as long as the player's hand is empty. This is what vanilla server does.
2018-01-03Add the fmt library (#4065)peterbell104-17/+18
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.
2017-12-26Protocol: Fix potion metadata parsing (#4116)peterbell101-2/+2
2017-11-22Store Health as a float (#4073)Fabian1-1/+1
* Fix #4024 * Fix clang error * Add comment * Fix behaviour * Save Health as float * Changed m_Health to float * Remove redundant static_cast * Fix casts
2017-10-21Implement horse inventory (#4053)peterbell102-2/+8
* Implement horse inventory * Fix sign conversions * Add API doc for ItemCategory::IsHorseArmor * Improve HandleOpenHorseInventory comment and style fixes.
2017-10-16Fixed FreeBSD build (#4061)Bond-0091-2/+5
2017-09-21Add support for release 1.12.2 (#4041)peterbell104-3/+108
2017-09-19Removed UTF-8 BOM (#4033)Lukas Pioch1-1/+1
2017-09-14Fix switch warnings (#4013)peterbell106-156/+189
* Fix switch warnings * Fix a variety of -Wswitch and -Wswitch-enum warnings * Remove unneeded -Wno-error flags * Reorganise some eMonsterType switches * Alpha sort eMonsterType cases in WriteMobMetadata and in cNBTChunkSerializer::AddMonsterEntity * List all mob types in protocol 1.12 and NBTChunkSerializer * cStructGenTrees::GetNumTrees: remove switch default * cWSSAnvil::LoadOldMinecartFromNBT: Log unhandled minecart type
2017-09-04Added assert to cProtocolRecognizer::GetPacketId. (#4001)Lane Kolbly5-17/+29
2017-09-02GetPacketID for protocol packet IDs (#3977)Lane Kolbly11-1359/+366
* Added GetPacketId method to protocol, implemented for all protocols. * Moved GetPacketID methods into a single file, alpha-sorted. * Fixed 1.12.1 HandlePacket switch statement. * Added SendLogin to the GetPacketId framework. * Added SpawnObject to GetPacketId framework. * Added missing sendEntityEquipment packet ID update for 1.12.1 * Added LeashEntity packet ID change to 1.12.1 * Alphabetized packet enum, added SpawnGlobalEntity to GetPacketId framework * Fixed clang errors * Indented cases, expanded comment for GetPacketId * Changed dyslexic comment.
2017-08-30Protocol Spawn Position Should Use LastSentPosition (#3929)Lane Kolbly2-24/+32
+ Added GetLastSentPos * Fixed spawn position bug in 1.8.
2017-08-30Update mbedtls to 2.5.1 (#3964)peterbell106-16/+42
* Renaming changes: * macro prefix "POLARSSL" -> "MBEDTLS" * functions now prefixed with "mbedtls_" * rename PolarSSL++ -> mbedTLS++ * rename polarssl submodule * Use mbedtls' AES-CFB8 implementation. * Add cSslConfig to wrap mbedtls_ssl_config * Update cTCPLink and cBlockingSslClientSocket to use cSslConfig * Use cSslConfig in cHTTPServer * Use cSslConfig for cMojangAPI::SecureRequest * CI Fixes * Set -fomit-frame-pointer on the right target
2017-08-27Implement Forge protocol handshake support (#3869)satoshinm8-10/+471
2017-08-26Leashes work in 1.12.1mathiascode2-24/+50
2017-08-25Don't assert when placing beds in older versions (#3916)mathiascode2-0/+2
2017-08-25Add cUUID class (#3871)peterbell1010-229/+126
2017-08-24Minor changes (#3909)mathiascode5-5/+5
2017-08-21Implement protocol level chunk sparsing (#3864)peterbell102-176/+186
2017-08-21Fully implemented leashes (#3798)Pablo Beltrán9-0/+106
2017-08-18Represent cItem::m_Lore as an AStringVector (#3882)peterbell102-26/+7
* Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings
2017-08-17Add support for 1.12.1 (#3908)Bond-0094-6/+825
2017-08-13Replaced includes with forward declarationsLukas Pioch2-2/+5
2017-08-06Removed unneeded includes (#3902)Lukas Pioch1-1/+0
2017-08-03Remove double includes part 2 (#3890)peterbell101-1/+0
2017-08-03Removed unused forward declarations (#3888)Lukas Pioch4-24/+1
2017-08-02Handle Teleport Confirmation Packet (#3884)Lane Kolbly2-4/+26
+ Added code to drop incoming client position packets until the most recent teleport was confirmed.
2017-07-30cParsedNBT: Improved error reporting (#3876)peterbell102-2/+6
* cParsedNBT: Improved error reporting * Fix typos
2017-07-28Tentative fix for player-limit race condition (#3862)Tiger Wang6-24/+24
* Attempts to fix #2257 Derived from d233e9843148313c71fbaba96ccff660e47b07b1 * Changed player count type to int * Clarified certain actions
2017-07-26Handle incomplete packets in cProtocolRecognizerpeterbell102-44/+58
2017-07-21Remove smart pointer macrospeterbell101-1/+1
2017-07-13Handle middle mouse drag (#3847)peterbell102-0/+6
2017-07-12Added basic ocelot behavior (#3829)Bond-0092-0/+36
2017-07-12Send player message when clicking on advancements or green book. (#3845)Lukas Pioch2-2/+24
2017-07-07Added bed entity (#3823)Lukas Pioch3-0/+40
* Added bed entity * Export cBedEntity to lua * Set color of bed through item damage value * Added bed entity to APIDoc * NBT: Added loading and saving * Crafting recipes for the colored beds
2017-07-03Fixes double right click on entities till off-hand actions gets implemented (#3821)Pablo Beltrán1-2/+8
2017-06-16Protocol: Do not assume anything about unknown packets. (#3647)Mattes D1-35/+38
2017-06-14Added missing 1.12 packet changesmathiascode2-0/+30
2017-06-14Protocol 1.12: Fixed missing override specifierMattes D1-3/+3
2017-06-14Added support for protocol 1.12 (#3757)Lukas Pioch5-3/+1589
2017-06-09Added WriteBlockEntity to 1.10 and 1.11 and fixed mob spawnerLukas Pioch6-2/+235
2017-05-24Exported boatLukas Pioch3-3/+3
- NBT: Added saving / loading of material - Added the material in the item handler of the boat - Drop the correct boat if destroyed - APIDoc: Added desc and functions
2017-05-22Spawn eggs works againLukas Pioch1-3/+5
2017-05-21Clang 5.0 fixesLukas Pioch3-3/+3
- Added override keyword - Removed inherited member variables
2017-05-16Use FastWriter instead of StyledWritermathiascode5-8/+9
2017-05-15VarInt metadata written correctly for boats (#3709)peterbell103-9/+9
* Varint metadata written correctly for boats
2017-03-03Add 1.11 entity metadata (#3601)Pokechu224-5/+845
2017-02-26Corrected particles (#3577)mathiascode2-26/+18
Fixes wrong IDs causing particles to become unknown to the server.
2017-02-21Add 1.11.1/1.11.2 protocol (#3575)mathiascode6-13/+86
2017-02-14Added some blocks and items (#3503)mathiascode2-0/+20
2017-01-28Fixed ClientHandle:GetProtocolVersion returning wrong number.Mattes D2-4/+4
2017-01-03Track skin part and main hand preferences (#3498)Pokechu223-6/+38
2017-01-03Track skin part and main hand preferences (#3498)Pokechu223-6/+38
2016-12-16Initial support for the 1.11 protocol.Mattes D13-441/+668
2016-11-18Removed ClientHandle.h dependencies from common headers.Mattes D1-0/+2
2016-10-21Added SendMessageRaw for sending json string.Lukas Pioch7-0/+42
2016-10-12Spectators added (#2852)bibo387-1/+67
2016-09-06Enclosed Clang pragmas with ifdef's (#3373)bibo381-4/+7
Fixes a warning in MSVC
2016-09-02Added support for the Minecraft 1.10 protocol(#210) (#3348)bibo387-37/+959
* Added support for the Minecraft 1.10 protocol(#210) * Fixed the Clang compilation errors * Fixed wrong sound pitch value and fixed SendPlayerSpawn Metadata value. * Prefixed each enum item with the appropriate class name.
2016-08-29Proper respawn packets on dimension travelLogicParrot7-38/+10
2016-08-24Fixed type-casting-related warnings.Mattes D4-26/+22
2016-08-17Fixing string literal catching word letter as hexa-digitElNounch2-2/+2
Was sending "\x08C""uberite" as plugin identifier, aka a String of lenght (Varint 0x8c 0x75 ->) 14988 characters but only 7 provided Now sending "\x08""Cuberite" as plugin identifier, aka a String of lenght (Varint 0x08 ->) 8 characters, with 8 provided Fix BungeeCord compatibility
2016-07-21Dropped 1.7 support (#3253)Mathias7-3662/+2
2016-07-18CMake: Remove needless minimum version specifications.Mattes D1-2/+0
2016-07-18Fixes for boat entities (#3265)beeduck2-3/+87
protocol for vehicles now properly handled, protocol for boat paddles now properly handled, boats can no longer spawn underwater, boats now properly float, boat metadata now properly broadcasted.
2016-05-141.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu2212-78/+5198
* Semistable update to 15w31a I'm going through snapshots in a sequential order since it should make things easier, and since protocol version history is written. * Update to 15w34b protocol Also, fix an issue with the Entity Equipment packet from the past version. Clients are able to connect and do stuff! * Partially update to 15w35e Chunk data doesn't work, but the client joins. I'm waiting to do chunk data because chunk data has an incomplete format until 15w36d. * Add '/blk' debug command This command lets one see what block they are looking at, and makes figuring out what's supposed to be where in a highly broken chunk possible. * Fix CRLF normalization in CheckBasicStyle.lua Normally, this doesn't cause an issue, but when running from cygwin, it detects the CR as whitespace and creates thousands of violations for every single line. Lua, when run on windows, will normalize automatically, but when run via cygwin, it won't. The bug was simply that gsub was returning a replaced version, but not changing the parameter, so the replaced version was ignored. * Update to 15w40b This includes chunk serialization. Fully functional chunk serialization for 1.9. I'm not completely happy with the chunk serialization as-is (correct use of palettes would be great), but cuberite also doesn't skip sending empty chunks so this performance optimization should probably come later. The creation of a full buffer is suboptimal, but it's the easiest way to implement this code. * Write long-by-long rather than creating a buffer This is a bit faster and should be equivalent. However, the code still doesn't look too good. * Update to 15w41a protocol This includes the new set passengers packet, which works off of the ridden entity, not the rider. That means, among other things, that information about the previously ridden vehicle is needed when detaching. So a new method with that info was added. * Update to 15w45a * 15w51b protocol * Update to 1.9.0 protocol Closes #3067. There are still a few things that need to be worked out (picking up items, effects, particles, and most importantly inventory), but in general this should work. I'll make a few more changes tomorrow to get the rest of the protocol set up, along with 1.9.1/1.9.2 (which did make a few changes). Chunks, however, _are_ working, along with most other parts of the game (placing/breaking blocks). * Fix item pickup packet not working That was a silly mistake, but at least it was an easy one. * 1.9.2 protocol support * Fix version info found in server list ping Thus, the client reports that it can connect rather than saying that the server is out of date. This required creating separate classes for 1.9.1 and 1.9.2, unfortunately. * Fix build errors generated by clang These didn't happen in MSVC. * Add protocol19x.cpp and protocol19x.h to CMakeLists * Ignore warnings in protocol19x that are ignored in protocol18x * Document BLOCK_FACE and DIG_STATUS constants * Fix BLOCK_FACE links and add separate section for DIG_STATUS * Fix bat animation and object spawning The causes of both of these are explained in #3135, but the gist is that both were typos. * Implement Use Item packet This means that buckets, bows, fishing rods, and several other similar items now work when not looking at a block. * Handle DIG_STATUS_SWAP_ITEM_IN_HAND * Add support for spawn eggs and potions The items are transformed from the 1.9 version to the 1.8 version when reading and transformed back when sending. * Remove spammy potion debug logging * Fix wolf collar color metadata The wrong type was being used, causing several clientside issues (including the screen going black). * Fix 1.9 chunk sending in the nether The nether and the end don't send skylight. * Fix clang build errors * Fix water bottles becoming mundane potions This happened because the can become splash potion bit got set incorrectly. Water bottles and mundane potions are only differentiated by the fact that water bottles have a metadata of 0, so setting that bit made it a mundane potion. Also add missing break statements to the read item NBT switch, which would otherwise break items with custom names and also cause incorrect "Unimplemented NBT data when parsing!" logging. * Copy Protocol18x as Protocol19x Aditionally, method and class names have been swapped to clean up other diffs. This commit is only added to make the following diffs more readable; it doesn't make any other changes (beyond class names). * Make thrown potions use the correct appearence This was caused by potions now using metadata. * Add missing api doc for cSplashPotionEntity::GetItem * Fix compile error in SplashPotionEntity.cpp * Fix fix of cSplashPotionEntity API doc * Temporarilly disable fall damage particles These were causing issues in 1.9 due to the changed effect ID. * Properly send a kick packet when connecting with an invalid version This means that the client no longer waits on the server screen with no indication whatsoever. However, right now the server list ping isn't implemented for unknown versions, so it'll only load "Old" on the ping. I also added a GetVarIntSize method to cByteBuffer. This helps clean up part of the code here (and I think it could clean up other parts), but it may make sense for it to be moved elsewhere (or declared in a different way). * Handle server list pings from unrecognized versions This isn't the cleanest way of writing it (it feels odd to use ProtocolRecognizer to send packets, and the addition of m_InPingForUnrecognizedVersion feels like the wrong technique), but it works and I can't think of a better way (apart from creating a full separate protocol class to handle only the ping... which would be worse). * Use cPacketizer for the disconnect packet This also should fix clang build errors. * Add 1.9.3 / 1.9.4 support * Fix incorrect indentation in APIDesc
2016-02-05Bulk clearing of whitespaceLogicParrot12-284/+284
2016-01-11Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8bibo382-2/+15
The NBT format now carries the texture data and transmit it to the client. See: http://minecraft.gamepedia.com/Head#Block_entity Related to #2674
2016-01-10Fixed not working packet decompressionbibo381-13/+18
A compressed packed contains always the uncompressed size, but in the code this size was threatened as the compressed data size. This created a failure, when the client compressed a packet. See: http://wiki.vg/Protocol#With_compression Fixes #2841 Fixes #2467
2016-01-06Fixed Clang warnings.Mattes D1-2/+2
2016-01-01Renamed leftover strings to Cuberite / Server, as needed.Mattes D1-1/+1
Also upgraded the user setting file for MSVC to 2013.
2015-12-30Fixed problems in cBlockingSslClientSocket.Mattes D1-2/+2
2015-12-22Added GeoTrust Root Certificateworktycho1-1/+24
2015-12-19Added HTTPS links wherever they are supported.Alexander Harkness1-27/+23
2015-12-17Moved variables into scope, removed unused variables and fixed variablesLukas Pioch1-2/+1
2015-12-15allow horse control (still quite buggy)Gargaj1-1/+5
2015-11-29implement breedingGargaj1-5/+21
2015-11-24fix escaped characters in signs (fixes #1736, fixes #2170)Gargaj1-1/+6
2015-11-24Add enum for Sound and Particle EffectsDave Tucker7-9/+11
Fixes #2603 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
2015-11-16changed mob age from char to intJulian Laubstein1-10/+7
2015-11-09idle/deflating creeper should be -1Gargaj2-2/+2
according to http://wiki.vg/Entities#Creeper
2015-10-26Update Loops required for JsonCPPLukas Pioch2-8/+8
2015-10-02Improved types of utf 16 stringstycho1-3/+3
2015-09-25Compile.sh namechange to cuberiteSafwat Halaby5-11/+11
2015-09-25Namechange to CuberiteMattes D5-11/+11
2015-09-21Refactored cProtocol Chat handlingtycho7-219/+22
2015-09-06added bungeecord support for protocol18xEric Chai1-0/+14
2015-08-20Fixed food drain bugsTiger Wang1-4/+1
2015-08-20Use container-based infrastructure for TravisTiger Wang1-1/+1
2015-08-12Fix old style casts and implicit conversionsMatti Hänninen2-6/+6
2015-07-31Unified the doxy-comment format.Mattes D2-9/+13
2015-07-29Silenced and fixed many warning messages across multiple files.Samuel Barney10-140/+138
2015-07-17 Added Rabbit Metadata values.bibo381-8/+11
Added the Rabbit Types and the MoreCarrotTicks value. Types are selected randomly on creation. Fixes #1867
2015-07-15Leather Armor can now be dyed.Samuel Barney2-4/+24
* Created new color class to handle dye-related coloring
2015-07-15Added CustomName and Health to sended Metadata of Monsters.bibo382-10/+27
Fixes #2113
2015-07-14Improved mapsTiger Wang7-122/+56
2015-07-14Support ageable mobsHallucino1-15/+48
Move ageable stuff in Monster directly
2015-07-09Fixes compilation failures on MacOSX 10.10Samuel Barney1-1/+1
* Replace old c-style casts with c++ casts * Added `-Wno-error=old-style-cast` to Protocol18x.cpp
2015-07-07Fixed warnings generated by 64-bit MSVC.Mattes D2-8/+8
2015-06-25Fixed Middle-Click Button in the ClickWindow-Packet.bibo382-2/+2
See http://wiki.vg/Protocol#Click_Window The MiddleClick has the button 2 and not 0. Now you can max an item in an inventory in Creative mode, without inventory desync. Bugfix #2260
2015-06-18Check the return value of InflateStringTiger Wang1-2/+1
Fixes #2256
2015-06-16Removed version 29 serilizationtycho2-62/+0
This has been unused since support for <1.7 has been dropped.
2015-06-07Fix incorrent experience sending for 1.7 clientsjan641-2/+2
2015-06-03Changed SendAboveActionBarMessage / SendSystemMessage to be a noop for < 1.8 clientsjan641-1/+11
2015-06-02Added system and above action bar chat messagesjan647-4/+196
2015-05-24Made -Weverything an error.tycho1-2/+6
2015-05-23Close Ssl Socket on destroyTiger Wang1-1/+0
* Fixes #2072
2015-05-21Added Equifax root CA.Mattes D2-6/+39
Fixes #2076. Closes #2081. Ref.: #2072.
2015-05-19Make -Werror disabling file onlytycho1-0/+5
Ad fix a load of warnings
2015-05-19Fixed a lot of warningstycho2-3/+3
2015-05-16Fixed inventory handling.Mattes D1-2/+2
Fixes #2035.
2015-05-16Initial implementation of IniFile overloadingtycho4-16/+16
2015-05-12Fixed creative click-outsideTiger Wang1-1/+1
* Fixes #1995
2015-05-09CheckBasicStyle: checks spaces around * and &.Mattes D1-2/+2
2015-05-09More style checking.Mattes D3-6/+6
Spaces around some operators are checked.
2015-05-07Added support for additional data in the ParticleEffect Packettycho7-0/+71
Also started refactoring how broadcasts are handled
2015-05-04Change visual protocol name to include MCServerjan642-3/+3
2015-05-04Entity improvementsTiger Wang1-1/+1
•Pathfinder improvements •Fixes #1217 •Fixes #1933 Merge remote-tracking branch 'SafwatHalaby/water2' into fixes
2015-04-28Updated MC versions in ProtocolRecognizer.hwiseoldman951-1/+1
2015-04-20Protocol 1.8: Limit the amount of displayed data on NBT parse failure.Mattes D1-1/+1
2015-04-17Fixed arm swing animationTiger Wang1-1/+1
* Fixes #1861
2015-04-13Implement backend for /title commandScott Moore7-0/+247
2015-03-22Added VarInt64, normalized cPacketizer datatype names.Mattes D5-673/+682
2015-03-22Unified cPacketizer across all protocols.Mattes D10-757/+857
2015-03-21Fixed signedness warnings in Protocol.Mattes D7-9/+9
2015-03-21Fixed signedness issues in protocols.Mattes D4-60/+74
2015-03-21Unified cByteBuffer types.Mattes D6-185/+241
cByteBuffer now reads and writes any of the [U]Int<N> types.
2015-03-14cPainting saving implementedTiger Wang2-10/+2
Additionally, it now inherits from cHangingEntity.
2015-02-241.8 Protocol: Fixed a possible race condition.Mattes D1-5/+9
Fixes #1759.
2015-02-08Handle client 'leave bed' requestTiger Wang1-3/+1
* Fixes #1728
2015-02-08Protocol 1.7: Fixed Coverity issues.Mattes D1-4/+7
Fixes CID 66411, CID 103166 and CID 103167.
2015-02-07Added IsOnGround() to cEntityHowaner1-6/+6
2015-01-27Removed cFile::ReplaceFileNameInvalidChars().Mattes D1-1/+3
Its only usage in cProtocol18 has been changed to a simple string replace - only the IPv6's colons were causing problems.
2015-01-27Protocol18: Fixed failure with invalig logfile names.Mattes D1-8/+15
2015-01-18Fixed warnings in 1.7 protocol.Mattes D1-106/+127
2015-01-03Fixed Linux compilation.Mattes D2-2/+2
2015-01-03Protocols: Ignore garbage data at the end of PluginMessage packets.Mattes D2-0/+21
Fixes #1692.
2014-12-24Refactored all player block placing to go through hooks.Mattes D2-4/+4
Fixes #1618.
2014-12-21Fixed coverity issues in protocols.Mattes D2-4/+11
Fixes CID 73099, CID 66411.
2014-12-07cMojangAPI: Fixed a possible problem with thread termination order.Mattes D1-5/+17
2014-11-29Removed unused imports.Howaner2-2/+0
2014-11-29Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes.Howaner4-2/+4
2014-11-18Finished mob spawner implementation.Howaner1-0/+13
2014-10-23Merged IniFile into main MCS sources.Mattes D2-2/+2
2014-10-23En masse NULL -> nullptr replaceTiger Wang5-94/+94
2014-10-21Properly exported cItemFrame and cHangingEntity to Lua.Mattes D2-2/+2
2014-10-20En masse NULL -> nullptr replaceTiger Wang5-94/+94
2014-10-17cMojangAPI: Don't update data if server is in offline mode.Mattes D2-3/+6
2014-10-06cMojangAPI: Added periodical refreshes.Mattes D2-19/+132
2014-10-05cClientHandle: Added protocol version knowledge.Mattes D2-1/+2
2014-10-03Improved furnacesTiger Wang7-7/+7
* Fixed progress bar on 1.8 * Fixed bugs * Improved code * Fixes #1068 * Fixes #1070
2014-10-02Optimized chunk loaderHowaner2-0/+2
2014-09-30Fixed a missing semicolon.madmaxoft1-1/+1
2014-09-30Rewritten plugin messages, vanilla are being parsed directly.madmaxoft4-13/+172
This should finally fix the compatibility problems between 1.7 and 1.8 protocols with the changes in the vanilla plugin messages.
2014-09-29Style fixes.madmaxoft1-3/+3
2014-09-28Plugin messages: Vanilla prefixes its payloads with VarInt lengths.madmaxoft1-4/+13
2014-09-28Revert "1.8: Fixed plugin messages."madmaxoft1-1/+3
This reverts commit 04ee8c43dd17eb98d1e3d66ff691898e9f269b95.
2014-09-28Protocol 1.8: Fixed possible crash on malformed packet.madmaxoft1-0/+5
2014-09-28Compilation fixTiger Wang1-1/+1
2014-09-271.8: Fixed plugin messages.Howaner1-3/+4
2014-09-27Bug fixTiger Wang1-2/+15
2014-09-27Dropped support for <1.7.xTiger Wang18-4700/+6
2014-09-26Fixed players custom name in 1.8Howaner9-57/+20
2014-09-25Protocol 1.8: Fixed plugin message packet.madmaxoft1-1/+3
2014-09-25Added cByteBuffer::WriteBEUShort().madmaxoft1-1/+1
2014-09-25Protocol 1.8: Handling packet compression properly.madmaxoft2-14/+39
The compression didn't work with CommLog turned on.
2014-09-25Protocol 1.8: Added checks for values presence.madmaxoft1-2/+8
Reported by @worktycho / Coverity.
2014-09-25Use the json writer to write sign texts.Howaner1-5/+10
Without this change the client disconnects if the text contains "
2014-09-251.8 Protocol: Fixed problems with no-payload packets.madmaxoft1-6/+7
2014-09-251.7 Protocol: fixed potential problems with no-payload packets.madmaxoft1-4/+4
2014-09-23Fixed compiler warnings in 1.8 protocol.madmaxoft1-2/+2
2014-09-22Updated README.mdHowaner1-1/+1
2014-09-22Hotfixed 1.8 item reading.Howaner2-6/+6
2014-09-22Changed metadata reading again.Howaner2-173/+7
2014-09-22Fixed item nbt reading.Howaner2-3/+168
2014-09-19Implemented mob spawner.Howaner1-1/+13
2014-09-19Code improvements.Howaner4-38/+36
2014-09-18Exported player list states to extra functions.Howaner9-426/+616
2014-09-181.8: Simplified item metadata reading.Howaner1-7/+3
2014-09-17Added an explicit setting for allowing BungeeCord handshake.madmaxoft1-1/+1
2014-09-17Added first test to show the object can be createdTycho2-31/+31
2014-09-17Full BungeeCord compatibility.madmaxoft1-0/+4
Fixes #1392. Fixes SpigotMC/BungeeCord#1211.
2014-09-17Initial BungeeCord support.madmaxoft2-1/+10
Ref.: #1392
2014-09-14Simplified WriteUUID()Howaner1-9/+9
2014-09-14Fixed warnings.Howaner1-3/+3
2014-09-131.8: Updated scoreboard packets.Howaner1-3/+7
2014-09-13Moved chat json creating to the CompositeChat class.Howaner4-346/+8
2014-09-131.8: Fixed maps.Howaner9-35/+33
2014-09-12Spawn exp if you break a mob spawner.Howaner1-3/+3
2014-09-12Fixed wrong buffer length in the 1.8 protocol.Howaner1-10/+4
2014-09-121.8: Fixed ReadItem()Howaner1-19/+39
2014-09-121.8: Added difficulty sendingHowaner1-0/+6
2014-09-121.8: Fixed block entities.Howaner1-8/+2
2014-09-121.8: Fixed workbench, enchanting and anvil window.Howaner1-3/+19
2014-09-121.8: Enderman, byte -> shortHowaner1-1/+1
2014-09-121.8: Fixed enderman spawning.Howaner1-1/+1
2014-09-111.8: Fixed inventory open packet.Howaner1-3/+2
2014-09-11Removed GetProtocolVersion() from the protocols.Howaner7-19/+6
2014-09-111.8: Fixed sign placing.Howaner1-1/+1
2014-09-111.8: Fixed hangings.Howaner3-31/+88
2014-09-111.8: Added ParticleEffect packet.Howaner11-26/+103
2014-09-091.8: Added MultiBlockChange packet.Howaner3-51/+82
2014-09-09Added the player list to the 1.8 protocol.Howaner9-21/+92
2014-09-09PlayerSpawn packet: Send the correct uuid.Howaner1-5/+1
2014-09-091.8: Added new uuid field.Howaner2-0/+19
2014-09-08More fixes.Howaner2-1/+6
2014-09-08Recoded cProtocol180 class.Howaner4-589/+2690
2014-09-081.8: Fixed tab complete.Howaner3-2/+20
2014-09-08Fixed more 1.8 packets.Howaner4-35/+243
2014-09-08Updated chunk sending to 1.8Howaner4-26/+22
2014-09-08Added GetProtocolVersion() to cProtocol.Howaner8-26/+29
2014-09-08Implemented packet compression.Howaner7-35/+117
ChunkData packet needs this.
2014-09-06Added Y-wise asserts to signs.Mattes D1-0/+1
This should help detect #1313's second case.
2014-09-06Alpha-sorted protocol 1.7 senders.Mattes D1-7/+7
2014-09-04Fixed client errors.Howaner5-52/+79
2014-09-04Added more 1.8 protocol things.Howaner6-14/+632
2014-09-04Started implementing of the 1.8 protocol.Howaner7-7/+502
2014-09-02Added SetCustomName() to players.Howaner8-25/+45
2014-09-01Added CustomName to cMonster.Howaner1-0/+10
2014-09-01Make sure packets are validworktycho1-6/+24
Fixes CID 66408, 66409 and 72045
2014-08-31Init RankMgr pointer to NULLworktycho1-1/+2
2014-08-25Type warning fixes.Mattes D1-1/+1
2014-08-25Fixed a type warning.Mattes D1-2/+2
2014-08-21Fixed 1.7.2 login packet reading.Mattes D1-1/+5
Fixes #1317.
2014-08-21cMojangAPI updates cRankManager's playernames.Mattes D2-1/+40
2014-08-21cMojangAPI: Fixed MakeUUID___() bindings.Mattes D1-4/+0
ToLua would generate a shadow return value for the input strings.
2014-08-20Renamed a_Motd to a_ServerDescription.Howaner2-7/+7
2014-08-20Added a_ClientHandle to the HOOK_SERVER_PING hook.Howaner2-2/+5
2014-08-20Added "HOOK_SERVER_PING" call to older protocolsHowaner1-13/+12
2014-08-20Cleaned up code.Howaner1-1/+0
2014-08-20Added HOOK_SERVER_PINGHowaner2-29/+72
2014-08-11cProtocol172: Check return values.madmaxoft1-4/+9
Fixes CID 43489, CID 43490, CID 43491, CID 43493, CID 66410, CID 66411, CID 66416, CID 66417, CID 66418, CID 66419, CID 66420, CID 66421, CID 66422, CID 66423, CID 66424, CID 66425, CID 66429, CID 66430, CID 66431
2014-08-11Exported daylight cycle flag to the protocol.Howaner9-10/+24
2014-08-11Gave names to unnamed enumsarchshift1-1/+1
2014-08-04MojangAPI: Fixed PlayerNameToUUID().madmaxoft1-1/+1
2014-08-04Fixed #1286Howaner1-1/+1
2014-08-04Refactored case-conversion functions.madmaxoft2-32/+24
StrToLower() returns a modified copy of the string, InPlaceLowercase() modifies the string in-place.
2014-08-04Changed properties for-loop.Howaner1-1/+1
2014-08-03Fixed skins in mc 1.7.9/1.7.10Howaner1-6/+5
2014-08-03cMojangAPI: Added UUID-to-Name lookup.madmaxoft3-60/+424
Also fixed the bindings, now all functions are static-like.
2014-08-03Added cMojangAPI:GetUUIDFromPlayerName().madmaxoft2-0/+35
This is a simpler way to ask for a single name -> uuid conversion.
2014-07-31Removed trailing whitespace.madmaxoft1-2/+2
2014-07-31MojangAPI: Moved the settings to a separate ini section.madmaxoft1-2/+2
2014-07-31Renamed functions and added beacon json saving.Howaner1-2/+2
2014-07-31MojangAPI: Added a UseCachedOnly param to GetUUIDsFromPlayerNames().madmaxoft2-4/+9
2014-07-30Added beacon.Howaner1-0/+15
2014-07-30MojangAPI: Renamed cache file to MojangAPI.sqlite.madmaxoft1-2/+2
2014-07-30MojangAPI: Clarified the UUID conversion code.madmaxoft2-4/+17
2014-07-30MojangAPI: Implemented UUID shortening and dashing.madmaxoft3-20/+31
2014-07-30Exported cMojangAPI to Lua.madmaxoft1-1/+12
2014-07-30Added a cMojangAPI class for PlayerName -> UUID lookups, with cache.madmaxoft5-237/+556
The cache is persisted into a SQLite DB file on server shutdown.
2014-07-28cAuthenticator: Added GetUUIDsFromPlayerNames().madmaxoft2-3/+116
2014-07-24Removed redundant semicolons and re-added warningarchshift2-2/+2
2014-07-21Style: Normalized to no spaces before closing parenthesis.madmaxoft7-11/+11
2014-07-21Style: Normalized spaces after if, for and while.madmaxoft1-1/+1
2014-07-19Fixed attempts to call c_str on ChatColorsarchshift1-2/+2
2014-07-19Code style: Fixed braces on separate lines.madmaxoft1-1/+2
2014-07-19Fixed spaces after commas in protocol data.madmaxoft1-7/+7
The JSON data is well-formatted with spaces, too; we can afford to waste the few bytes.
2014-07-19Fixed style: spaces after commas.madmaxoft2-2/+2
2014-07-19Authenticator.cpp: Killed a global destructor warningarchshift1-53/+56
2014-07-19Subdirs: Only add_library if not using MSVCarchshift1-1/+3
2014-07-19Protocol/CMakeLists.txt: Replaced glob with list of filesarchshift1-5/+23
2014-07-18Fix failed merge and other issuesTiger Wang7-7/+7
2014-07-18ProtocolRecognizer.cpp: removed unused NumBytesReadarchshift1-2/+0
2014-07-17Fixed tabs used for alignment.madmaxoft2-12/+13
2014-07-17Basic style fixes.madmaxoft6-9/+9
2014-07-17Normalized comments.madmaxoft9-86/+86
This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign.
2014-07-16SuggestionsTiger Wang1-2/+5
2014-07-16Function renameTiger Wang2-3/+3
2014-07-16Unified functionsTiger Wang2-34/+28
Thanks @Howaner!
2014-07-16Store properties as Json::ValueTiger Wang3-12/+20
2014-07-14Player properties are now retrievedTiger Wang3-102/+198
2014-07-13Fixed MSVC warnings in SoundEffect functions.madmaxoft2-14/+6
2014-07-13Changed BroadcastSoundEffect function to take floating pos.Howaner9-24/+25
2014-07-07Implemented trapped chests & othersTiger Wang1-2/+2
+ Added trapped chests * Fixed a bunch of bugs in the redstone simulator concerning wires and repeaters * Other potential bugfixes
2014-07-04Crash and compile fixTiger Wang1-1/+1
2014-06-29Fixed respawningTiger Wang9-15/+15
* Fixes #1103
2014-06-29Send statistics to the player, when he logged in.Howaner1-2/+1
2014-06-27Added generic entity-collecting.Mattes D9-15/+15
Now any cEntity can be collected, not only cPickups. This should help PR #1098.
2014-06-19Nullify deleted pointers.archshift1-0/+1
2014-06-12Portals animate and delay correctlyTiger Wang9-17/+17
2014-06-08Fixed deadlock when moving players to other worlds.Mattes D10-16/+42
Fixes #1039, fixes #851
2014-05-31Implemented end and nether portalsTiger Wang9-13/+13
2014-05-28Fixed a crash in message formatter.madmaxoft1-1/+2
The code would fail if a message is sent to a player not yet added to a world.
2014-05-19cCompositeChat message type is now formattedTiger Wang1-1/+1
2014-05-19Added client translation to achievementsTiger Wang1-0/+29
2014-05-12cEntity::Killed(cEntity *) Handler; Achievement triggers; cPlayer::AwardAchievement()andrew1-5/+1
2014-05-11Statistic Managerandrew7-7/+84
2014-05-09Fixed MSVC 64-bit build warnings.Mattes D2-11/+11
2014-05-08Fixed MSVC 64-bit build warnings.Mattes D2-11/+11
2014-05-07Change m_RepairCost to int.Howaner1-2/+2
2014-05-07Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs.Howaner1-0/+11
2014-05-03Hotfixed Chunked transfer encoding in Yggdrasil.madmaxoft1-1/+1
By using HTTP/1.0, we're disabling the support for the Chunked encoding on the server. This is a hotfix for #979, a proper parser implementation is still needed.
2014-05-03Fixed connection encryption.madmaxoft1-1/+1
Fixes #975.
2014-05-01Fixed warnings in ClientHandle.madmaxoft7-7/+7
2014-04-30Removed the unused cBlockingTCPLink class.madmaxoft1-1/+0
2014-04-29Removed unneeded #includes.madmaxoft1-6/+0
2014-04-29Moved the rest of the Crypto objects into their own respective files.madmaxoft4-23/+14
2014-04-29Moved cRsaPrivateKey to PolarSSL++, rewritten using existing objects.madmaxoft2-2/+2
2014-04-28Added the G1 root cert.madmaxoft1-2/+29
Now the authenticator finally works.
2014-04-28Revert "Changed the old invulnerable methods from the wither to the new."Howaner2-16/+2
This reverts commit d50f8f6f11f69e7e1e56be92fb2d72a5014a3e34.
2014-04-28Fixed projectile source filenames, indentationsarchshift2-3/+3
2014-04-27Rewritten cAuthenticator to use the new PolarSSL++ wrapper classes.madmaxoft1-91/+45
2014-04-27Another attempt at #889.madmaxoft1-3/+5
The packet was being sent after the state was adjusted, so another thread *may* have sent another packet in the meantime.
2014-04-27Moved cFireworkEntity out of ProjectileEntity.harchshift1-0/+1
2014-04-27Moved cArrowEntity out of ProjectileEntity.harchshift2-1/+2
2014-04-26Changed the old invulnerable methods from the wither to the new.Howaner2-2/+16
2014-04-26FixesHowaner2-2/+2
2014-04-26Fixes resource leaks in the yggdrasil authenticator. (CID 43617)jfhumann1-0/+33
2014-04-25Cmake generated projects for IDEs include headers in project files.archshift1-0/+1
2014-04-24Authenticator uses some C++ SSL objects.madmaxoft1-19/+40
2014-04-21Allow 1.6.4 Forge clients to log in.Mattes D2-0/+20
Fixes #913.
2014-04-18Small style changesjfhumann2-7/+7
2014-04-18Did some static analysis, fixed some bugs and optimized a lot of codejfhumann6-77/+100
2014-04-17Modified many thingsdaniel09161-2/+0
2014-04-16Added asserts for proper game state.madmaxoft1-5/+131
This is to help hunt #889.
2014-04-15Attempted fix for the client crash with the new protocols.madmaxoft1-0/+7
2014-04-14Implemented the 1.7.6 protocol and authenticator.madmaxoft8-119/+169
Server works both in online and offline modes with 1.7.9.
2014-04-14A client UUID is generated when the server is in offline mode.madmaxoft1-4/+10
1.7.9 client works with these changes in offline mode.
2014-04-14Initial 1.7.6 protocol support.madmaxoft4-2/+69
Doesn't work yet because of missing UUIDs.
2014-04-14Bug fixesdaniel09161-3/+0
2014-04-13Fixed mistakedaniel09162-2/+2
2014-04-13Fixed Error?daniel09161-2/+2
2014-04-13Code Updatedaniel09161-4/+5
2014-04-13Added Yggdrasil Authentication Systemdaniel09162-0/+418
Code by Howaner. Fixes/Changes by me.
2014-04-07Fixed Errorsdaniel09161-2/+2
2014-04-06Fixed 1.6.4 client crash on composite chat messages.madmaxoft2-0/+14
2014-04-06Fixed crash in protocols sending 64-bit ints.madmaxoft1-1/+1
Fixes #855.
2014-04-04Explicit change record size.madmaxoft1-1/+1
2014-04-04Fixed format string mismatch.madmaxoft1-1/+1
2014-04-04More Clang warning fixes in the protocols.madmaxoft6-81/+82
2014-04-04Fixed CreateHexDump's signedness.madmaxoft1-1/+1
2014-04-04More Clang warning fixes in the protocols.madmaxoft1-28/+37
2014-04-04Fixed some Clang warnings in protocols.madmaxoft10-26/+31
2014-03-31Console logging supports cCompositeChat as its parameters.madmaxoft1-22/+1
2014-03-25Protocol: Wither metadataandrew2-0/+18
2014-03-20Plugins can set flying speed.madmaxoft1-2/+1
2014-03-20Rewritten player speeds to be relative unit-less.madmaxoft2-5/+6
Value of 1 means "default speed", 2 means "double the speed", 0.5 means "half the speed". This allows for easier plugins and is more future-proof.
2014-03-12Added additional macros to support the MSVC size_t format and changed all formats to use the macrosTycho2-7/+7
2014-03-11Fixed a load of format string errorsTycho2-4/+4
2014-03-11Fixed format errors in protocolTycho1-3/+3
2014-03-10Removed unused macroTycho1-13/+0
2014-03-09Hotfix for MSVC compilation.madmaxoft1-0/+1
2014-03-09Adjusted style of switch/caseJan-Fabian Humann3-45/+15
2014-03-08Changed if-else to switch-caseJan-Fabian Humann3-39/+33
2014-03-08Split cClientHandle::HandleEntityAction() into three seperate functions HandleEntityCrouch, HandleEntityLeaveBed and HandleEntitySprinting.Jan-Fabian Humann3-3/+65
2014-03-08Fixed issues with int vs size_t and a few other warningsTycho1-2/+2
2014-03-07WarningsTycho9-12/+25
2014-03-07Add Flower PotsHowaner1-1/+15
2014-02-27Implemented ballistic missiles (fireworks)Tiger Wang1-25/+52
+ Added fireworks
2014-02-23Rename SkullEntity to MobHeadEntityHowaner1-9/+9
2014-02-23Add break to Protocol17x.cpp and use new comment delimiterHowaner1-0/+1
2014-02-23Add Skulls/HeadsHowaner1-0/+14
2014-02-19Rename SkullEntity to MobHeadEntityHowaner1-9/+9
2014-02-19Add break to Protocol17x.cpp and use new comment delimiterHowaner1-0/+1
2014-02-18De-breaked stuffTiger Wang1-2/+0
2014-02-18Map decorators; Map clientsandrew7-1/+60
2014-02-18Implemented paintings, fixes #689Tiger Wang6-0/+28
+ Implemented paintings
2014-02-18Implemented item frames, a part of #689Tiger Wang1-2/+14
+ Implemented Item Frames * Fixed Pitch and Yaw being wrongly flipped in the protocol (XOFT!)
2014-02-17Add Skulls/HeadsHowaner1-0/+14
2014-02-16Add Locale to ClientHandleHowaner3-2/+4
2014-02-16Set max. Players in the Tablist to 60Howaner1-1/+1
2014-02-15Implemented cCompositeChat.madmaxoft7-12/+231
This allows plugins to send composite chat messages, containing URLs, commands to run and cmdline suggestions. Fixes #678.
2014-02-13Implementation of in-game mapsandrew7-0/+91
2014-02-05Improved the signedness conversion.madmaxoft1-2/+2
2014-02-05Fixed a bunch of MSVS warningsTiger Wang1-1/+2
* Possibly also fixed some bugs with pathfinding and TNT, though unlikely
2014-02-04Protocol 1.7: Fixed a signed / unsigned comparison warning.madmaxoft1-2/+2
2014-02-04Protocol 1.7 uses char for blockface.madmaxoft1-2/+2
That should fix #644 on RasPi.
2014-02-04Improved Type safety of eBlockFaceTycho3-5/+5
May Fix #640
2014-02-01added EnchantItemPacket to older Protocolsdaniel09161-1/+4
2014-01-31Some updates for enchanting (2)daniel09164-14/+21
2014-01-29Limited sign lines to 15 chars.madmaxoft1-4/+5
Fixes #598.
2014-01-29Added 1.7.4 to the list of supported protocols.madmaxoft1-1/+1
2014-01-29Protocol 1.7: Encryption is enabled only with auth.madmaxoft1-1/+1
2014-01-28Protocol 1.7: Forced encryption on all connections.madmaxoft2-3/+101
This is for testing purposes only, to find bugs in the encryption. Once the encryption is deemed stable, it will be enabled only for servers with enabled Authentication.
2014-01-26Fixed client packet parsing.madmaxoft1-12/+33
When the packet wouldn't fit the current buffer, the server would mis-parse the next packet. This was the cause for #541. Also modified comm logging, now each direction can be turned on separately.
2014-01-25Comm logging is available in both Debug and Release modes.madmaxoft2-12/+16
2014-01-25Protocol17: Comm logging shows the data left over from previous parse.madmaxoft1-2/+15
2014-01-24Added per-connection comm logging in debug mode.madmaxoft2-0/+69
It is meant for debugging only, so it is compiled only into debug mode. It is activated by starting the server with "/logcomm" parameter.
2014-01-24removed hook from enchanting commitdaniel09161-1/+1
2014-01-24Some updates for enchantingdaniel09162-4/+12
2014-01-23PolarSSL is fully used for 1.3.2 protocol encryption.madmaxoft6-139/+51
2014-01-23Fixed 1.5.x scoreboard packet IDsandrew1-3/+3
2014-01-21Scoreboard SendTo()andrew1-3/+3
2014-01-21Scoreboard protocol supportandrew8-5/+141
2014-01-20Fix a crash but somewhere...Alexander Harkness1-2/+1
2014-01-20first changes for enchanting (not finished)daniel09162-0/+18
- added enchanting table block handler and added it to the blockhandler - added enchanting window - drop item in the slot 0 when the player close the window - added enchanting packet (1.7 only) - some more...
2014-01-19Removed unneeded paramtersTiger Wang6-11/+19
2014-01-19Switched EnchantmentSerilizer to namespaceTycho2-4/+4
2014-01-19Spilt Writing of Enchantments to seperate classTycho2-4/+6
Created a new class cEnchantmentSerializer to serilize Enchantments to NBT. This breaks a dependecy chain between cChunkGenerator and cWorld. cEnchantmentSerializer is seperate from NBTWriter as it needs to access private members of cEnchantments so having it seperate reduces the spread of the frein modifier
2014-01-19Changed SendBlockEntity format slightlyTiger Wang6-13/+46
* Writing NBT is now in Protocol, not BlockEntity files * Fixed a last output bug
2014-01-19Improved command blocksTiger Wang6-0/+42
* Their command and previous output are displayed on the client * They have a BlockHandler implementation, so you can't place blocks on them anymore + As a side effect, implemented UpdateBlockEntity
2014-01-17Removed internal cEntity::GetRot() usage.madmaxoft3-14/+14
2014-01-17Protocol 1.7: More output on unknown packets / protocol states.madmaxoft1-4/+21
2014-01-16Fixed block break packet numberTiger Wang1-1/+1
2014-01-16Changed newline character because of issuesTiger Wang1-3/+3
2014-01-16Protocol 1.7: Unknown packets are dumped to log in Debug mode.madmaxoft1-1/+14
2014-01-16Removed obsoleted functionsTiger Wang3-7/+7
2014-01-16Added packet diagnostics to 1.7 protocol.madmaxoft2-30/+40
When the packet is mis-interpreted, a log message is output about the packet type and lengths.
2014-01-15Implemented custom names and loreTiger Wang1-5/+55
+ Added custom names and lore + Added saving and loading + Added writing and parsing of NBT
2014-01-13Added handshake processing to protocol 1.7.madmaxoft1-2/+23
This fixes #495
2014-01-12Renamed cEmptyMinecart to cRideableMinecartSTRWarrior1-6/+6
2014-01-12EmptyMinecarts should be able to get a block inside of them.STRWarrior1-1/+16
2014-01-09Fixed wrong packet number for PluginMessage packet.madmaxoft1-1/+1
2014-01-09Added cClientHandle::SendPluginMessage().madmaxoft7-0/+40
It is not yet exported in the API, though.
2014-01-07Fixed faviconsTiger Wang1-1/+1
2014-01-07Plugin messages are received and handed to plugins.madmaxoft1-1/+1
Note that MCS doesn't currently handle any channel registrations, this will come later on.
2014-01-07A few more touch upsBill Derouin1-11/+1
2014-01-07Removed unused lineBill Derouin1-1/+0
2014-01-07Implement favicon for 1.7.2Bill Derouin2-0/+14
Favicon data is a png encoded in base64 which is stored in the server and sent in the server response packet
2014-01-07Fixed a few MSVC warnings.madmaxoft2-3/+3
2014-01-06Fixed a few MSVC warnings.madmaxoft4-5/+4
2014-01-05Added warning(push) and warning(pop) around all of the inclusions of cryptopp/*.hDiusrex4-2/+52
I also added a warning(push)/(pop) around crpytlib.cpp because it would go crazy with warnings. So now, the only warning from cryptopp that is not blocked is 'unreferenced local function has been removed', which also occurs at a single function.
2014-01-02More memory alignment fixes.madmaxoft1-3/+3
Ref.: #420.
2013-12-22Implented BroadcastParticleEffectSTRWarrior9-2/+65
2013-12-20Fixed minor warnings.madmaxoft1-2/+2
2013-12-19Fixed PlayerAbilities and creativeTiger Wang1-10/+3
2013-12-19moved protocol to globTycho Bickerstaff1-1/+5
2013-12-17Fixed player falling through the floor on spawn.madmaxoft1-1/+5
The 1.7 client seems to have math issues with exact coords. Adding 0.001 to the Y coord fixed the problem.
2013-12-15Fixed player spawning packet.madmaxoft1-1/+1
The player was spawned 1.62 blocks below their pos. This fixes #323.
2013-12-15Moved reading flags to the protocol.STRWarrior1-1/+19
2013-12-15Added m_IsFlying and m_CanFly. Both have a Get and Set function. Added cClientHandle::SendPlayerAbilities() functionSTRWarrior1-2/+10
2013-12-15Fixed pre 1.7 clients crashing.STRWarrior1-2/+2
2013-12-14Removed leftover debugging messages from cProtocol172.madmaxoft1-4/+0
2013-12-14Added SendEntityEffect and SendRemoveEntityEffect. Also a Player now gets the hunger effect when he has food poison.STRWarrior7-0/+82
2013-12-13Fixed threading issues affecting cProtocol172.madmaxoft2-191/+191
2013-12-12Fixed protocol 1.7 recovery after unknown packet.madmaxoft1-4/+0
2013-12-10more cmakeTycho Bickerstaff1-0/+7
2013-12-08Fixed tabcompletion packet, fixes #356Tiger Wang1-8/+4
2013-12-08Fixed falling block metas, fixes #406Tiger Wang1-1/+1
2013-12-07Renamed animation functionTiger Wang7-10/+10
Renamed BroadcastPlayerAnimation to BroadcastEntityAnimation. Not just players can have animations, you know.
2013-12-02Removed stray printf, again.Samuel Barney1-1/+0
2013-12-02Switched to using provided ReadItem function.Samuel Barney1-17/+3
Fixed misplacing when clicking on the bottom of bottom slabs and the top of top slabs.
2013-12-02Removed stray printf.Samuel Barney1-1/+0
2013-12-02Fixed 1.7 slab and stair placement.Samuel Barney1-0/+19
2013-11-27Fixed the remaining derpsAlexander Harkness4-5/+5
2013-11-27Fixed some of tiger's derpyness.Alexander Harkness1-2/+2
2013-11-25Further attempts to fix compileTiger Wang5-7/+7
2013-11-24Attempt to fix compilationTiger Wang5-8/+8
2013-11-24Moved source to srcAlexander Harkness17-0/+7588