summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol_1_12.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update submodules (#4727)peterbell102020-05-091-6/+4
| | | | | | | | | | | | | 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.
* Fix one definition rule violationsTiger Wang2020-05-041-4/+4
|
* Add Zombie VillagersBond-0092020-04-101-3/+17
|
* Initial resource pack support (#4622)Mat2020-04-071-2/+4
|
* Implement wither skeletons (#4563)Mat2020-04-041-11/+2
|
* Use LastSentPos for mob spawn packet in 1.11+ (#4490)Mat2020-03-051-100/+0
|
* Protocol: Use logical outgoing packet types.Mattes D2019-09-101-11/+93
|
* Fix building with clang 8.0 (#4346)Bond-0092019-08-111-4/+6
|
* Prefer static_cast to reinterpret_cast (#4223)peterbell102018-05-021-32/+32
| | | | | | | * 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.
* Rewrite cClientHandle::HandleRightClick (#4089)9caihezi2018-01-081-1/+1
| | | | | | | | | | | | | * 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.
* Add support for release 1.12.2 (#4041)peterbell102017-09-211-0/+76
|
* Fix switch warnings (#4013)peterbell102017-09-141-33/+65
| | | | | | | | | | | | | | | * 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
* GetPacketID for protocol packet IDs (#3977)Lane Kolbly2017-09-021-1107/+4
| | | | | | | | | | | | | | | | | | | | | | | | * 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.
* Implement Forge protocol handshake support (#3869)satoshinm2017-08-271-0/+2
|
* Leashes work in 1.12.1mathiascode2017-08-261-24/+48
|
* Fully implemented leashes (#3798)Pablo Beltrán2017-08-211-0/+24
|
* Add support for 1.12.1 (#3908)Bond-0092017-08-171-3/+756
|
* Tentative fix for player-limit race condition (#3862)Tiger Wang2017-07-281-3/+3
| | | | | | | | | | * Attempts to fix #2257 Derived from d233e9843148313c71fbaba96ccff660e47b07b1 * Changed player count type to int * Clarified certain actions
* Added basic ocelot behavior (#3829)Bond-0092017-07-121-0/+18
|
* Send player message when clicking on advancements or green book. (#3845)Lukas Pioch2017-07-121-2/+22
|
* Added bed entity (#3823)Lukas Pioch2017-07-071-0/+27
| | | | | | | | | | * 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
* Added missing 1.12 packet changesmathiascode2017-06-141-0/+28
|
* Added support for protocol 1.12 (#3757)Lukas Pioch2017-06-141-0/+1509