summaryrefslogtreecommitdiffstats
path: root/src/Protocol/ProtocolRecognizer.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add WakeUp/AddBlock distinctionTiger Wang2020-08-021-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
* 1.14 connection supportTiger Wang2020-07-261-7/+11
|
* 1.13.1, 1.13.2 connection supportTiger Wang2020-07-191-0/+4
|
* Use cMultiVersionProtocol's bufferTiger Wang2020-07-181-2/+2
|
* Delete duplicated status request handlersTiger Wang2020-07-181-26/+26
| | | | Here we go again...
* 1.13 items supportTiger Wang2020-07-181-3/+0
| | | | + Add 1.16 block and item definitions
* cProtocolRecognizer goes on a diet (#4770)Tiger Wang2020-07-171-1023/+175
| | | - Removed inheritance from cProtocol
* Introduce recipe book functionality (#4493)Tobias Wilken2020-07-141-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Update submodules (#4727)peterbell102020-05-091-2/+2
| | | | | | | | | | | | | 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.
* Improve entity position updates (#4701)Tiger Wang2020-05-041-36/+16
| | | | | | | | | * 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
* Unify entity spawn packet sendingTiger Wang2020-05-011-41/+2
|
* Delet SpawnObject paramsTiger Wang2020-04-201-2/+2
| | | | | | * Fix #4679 awkward...
* Using Super.Mattes D2020-04-161-1/+1
|
* Initial resource pack support (#4622)Mat2020-04-071-0/+10
|
* Add protocol mob ID remapping (#4538)Mat2020-03-291-0/+9
|
* Added temporary block type mapping for 1.13+ protocols.Mattes D2020-01-071-1/+18
|
* ProtocolRecognizer: Updated to unique_ptr.Mattes D2020-01-071-23/+13
|
* Initial support for 1.13 clientsTiger Wang2019-09-161-0/+6
| | | | | + Can look at *shape* of world + Can look at *shape* of inventory
* Protocol: Use logical outgoing packet types.Mattes D2019-09-101-3/+22
|
* Force all headers other than "Globals.h" to be included with relative paths (#4269)peterbell102018-08-291-1/+1
| | | | | | | 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.
* Store and pass entity effect duration as an int not a short. (#4293)Alexander Harkness2018-08-261-5/+1
| | | Fixes #4292.
* CheckBasicStyle: Check number of empty lines between functions (#4267)peterbell102018-07-261-1/+2
| | | | Add check for number of empty lines between functions and fix the corresponding failures
* recover hotbar selected slot after reconnect (#4249)changyong guo2018-07-231-0/+11
| | | | | | | 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
* Add support for release 1.12.2 (#4041)peterbell102017-09-211-0/+5
|
* Fully implemented leashes (#3798)Pablo Beltrán2017-08-211-0/+20
|
* Add support for 1.12.1 (#3908)Bond-0092017-08-171-0/+6
|
* Tentative fix for player-limit race condition (#3862)Tiger Wang2017-07-281-2/+2
| | | | | | | | | | * Attempts to fix #2257 Derived from d233e9843148313c71fbaba96ccff660e47b07b1 * Changed player count type to int * Clarified certain actions
* Handle incomplete packets in cProtocolRecognizerpeterbell102017-07-261-42/+55
|
* Protocol: Do not assume anything about unknown packets. (#3647)Mattes D2017-06-161-35/+38
|
* Added support for protocol 1.12 (#3757)Lukas Pioch2017-06-141-0/+7
|
* Use FastWriter instead of StyledWritermathiascode2017-05-161-2/+2
|
* Add 1.11.1/1.11.2 protocol (#3575)mathiascode2017-02-211-0/+6
|
* Initial support for the 1.11 protocol.Mattes D2016-12-161-15/+21
|
* Added SendMessageRaw for sending json string.Lukas Pioch2016-10-211-0/+10
|
* Spectators added (#2852)bibo382016-10-121-0/+9
|
* Added support for the Minecraft 1.10 protocol(#210) (#3348)bibo382016-09-021-5/+12
| | | | | | | | | | * 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.
* Proper respawn packets on dimension travelLogicParrot2016-08-291-2/+2
|
* Dropped 1.7 support (#3253)Mathias2016-07-211-13/+0
|
* 1.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu222016-05-141-65/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Bulk clearing of whitespaceLogicParrot2016-02-051-1/+1
|
* Add enum for Sound and Particle EffectsDave Tucker2015-11-241-1/+1
| | | | | | Fixes #2603 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
* Improved types of utf 16 stringstycho2015-10-021-3/+3
|
* Refactored cProtocol Chat handlingtycho2015-09-211-64/+4
|
* Silenced and fixed many warning messages across multiple files.Samuel Barney2015-07-291-6/+6
|
* Improved mapsTiger Wang2015-07-141-22/+2
|
* Added system and above action bar chat messagesjan642015-06-021-0/+60
|
* Merge pull request #1848 from scottwillmoore/ImplementTitleCommandMattes D2015-05-261-0/+70
|\ | | | | Implement backend for /title command
| * Implement backend for /title commandScott Moore2015-04-131-0/+70
| |
* | Added support for additional data in the ParticleEffect Packettycho2015-05-071-0/+11
|/ | | | Also started refactoring how broadcasts are handled
* Unified cPacketizer across all protocols.Mattes D2015-03-221-0/+12
|
* Fixed signedness warnings in Protocol.Mattes D2015-03-211-2/+2
|
* Unified cByteBuffer types.Mattes D2015-03-211-11/+11
| | | | cByteBuffer now reads and writes any of the [U]Int<N> types.
* En masse NULL -> nullptr replaceTiger Wang2014-10-231-77/+77
|
* Merge pull request #1502 from mc-server/furnacesTiger Wang2014-10-181-1/+1
|\ | | | | Improved furnaces
| * Improved furnacesTiger Wang2014-10-031-1/+1
| | | | | | | | | | | | | | | | * Fixed progress bar on 1.8 * Fixed bugs * Improved code * Fixes #1068 * Fixes #1070
* | cClientHandle: Added protocol version knowledge.Mattes D2014-10-051-0/+1
|/
* Style fixes.madmaxoft2014-09-291-3/+3
|
* Compilation fixTiger Wang2014-09-281-1/+1
|
* Bug fixTiger Wang2014-09-271-2/+15
|
* Dropped support for <1.7.xTiger Wang2014-09-271-202/+3
|
* Fixed players custom name in 1.8Howaner2014-09-261-2/+2
|
* Code improvements.Howaner2014-09-191-1/+1
|
* Merge branch 'master' into 1.8-ProtocolHowaner2014-09-191-1/+1
|\
| * Initial BungeeCord support.madmaxoft2014-09-171-1/+1
| | | | | | | | Ref.: #1392
* | Exported player list states to extra functions.Howaner2014-09-181-2/+42
| |
* | 1.8: Fixed maps.Howaner2014-09-131-4/+4
| |
* | Removed GetProtocolVersion() from the protocols.Howaner2014-09-111-1/+1
| |
* | 1.8: Added ParticleEffect packet.Howaner2014-09-111-2/+2
| |
* | Added the player list to the 1.8 protocol.Howaner2014-09-091-2/+2
| |
* | Added GetProtocolVersion() to cProtocol.Howaner2014-09-081-2/+2
| |
* | Started implementing of the 1.8 protocol.Howaner2014-09-041-1/+24
|/
* Make sure packets are validworktycho2014-09-011-6/+24
| | | Fixes CID 66408, 66409 and 72045
* Merge pull request #1339 from mc-server/HooksSTRWarrior2014-08-201-13/+15
|\ | | | | Added HOOK_SERVER_PING
| * Renamed a_Motd to a_ServerDescription.Howaner2014-08-201-4/+4
| |
| * Added a_ClientHandle to the HOOK_SERVER_PING hook.Howaner2014-08-201-0/+3
| |
| * Added "HOOK_SERVER_PING" call to older protocolsHowaner2014-08-201-13/+12
| |
* | Exported daylight cycle flag to the protocol.Howaner2014-08-111-2/+2
|/
* Merge remote-tracking branch 'origin/master' into portalsTiger Wang2014-07-221-4/+4
|\ | | | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Player.cpp src/Root.cpp src/World.cpp
| * Style: Normalized to no spaces before closing parenthesis.madmaxoft2014-07-211-1/+1
| |
| * Fixed attempts to call c_str on ChatColorsarchshift2014-07-191-2/+2
| |
| * Fixed style: spaces after commas.madmaxoft2014-07-191-1/+1
| |
* | Merge branch 'master' into portalsTiger Wang2014-07-181-11/+9
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/Blocks/WorldInterface.h src/ClientHandle.cpp src/ClientHandle.h src/Entities/Player.cpp src/Entities/Player.h src/Generating/FinishGen.cpp src/Protocol/Protocol.h src/Protocol/Protocol125.cpp src/Protocol/Protocol125.h src/Protocol/Protocol16x.cpp src/Protocol/Protocol16x.h src/Protocol/Protocol17x.cpp src/Protocol/Protocol17x.h src/Protocol/ProtocolRecognizer.cpp src/Protocol/ProtocolRecognizer.h src/Root.h src/World.cpp
| * ProtocolRecognizer.cpp: removed unused NumBytesReadarchshift2014-07-181-2/+0
| |
| * Basic style fixes.madmaxoft2014-07-171-3/+3
| |
| * Changed BroadcastSoundEffect function to take floating pos.Howaner2014-07-131-2/+2
| |
| * Fixed respawningTiger Wang2014-06-291-2/+2
| | | | | | | | * Fixes #1103
| * Added generic entity-collecting.Mattes D2014-06-271-2/+2
| | | | | | | | | | Now any cEntity can be collected, not only cPickups. This should help PR #1098.
* | Merge branch 'master' into portalsTiger Wang2014-06-211-0/+1
|\| | | | | | | | | | | | | Conflicts: src/Chunk.cpp src/Entities/Entity.h src/Entities/Player.h
| * Nullify deleted pointers.archshift2014-06-191-0/+1
| |
| * Fixed deadlock when moving players to other worlds.Mattes D2014-06-081-2/+2
| | | | | | | | Fixes #1039, fixes #851
* | Portals animate and delay correctlyTiger Wang2014-06-121-2/+2
| |
* | Implemented end and nether portalsTiger Wang2014-05-311-2/+2
|/
* Statistic Managerandrew2014-05-111-0/+10
|
* Fixed MSVC 64-bit build warnings.Mattes D2014-05-091-2/+2
|
* Fixed warnings in ClientHandle.madmaxoft2014-05-011-1/+1
|
* Merge remote-tracking branch 'origin/master' into fixesjfhumann2014-04-181-0/+23
|\ | | | | | | | | | | | | | | Conflicts: src/Authenticator.cpp src/ClientHandle.cpp src/Entities/Minecart.cpp src/Protocol/Protocol17x.cpp
| * Implemented the 1.7.6 protocol and authenticator.madmaxoft2014-04-141-0/+10
| | | | | | | | Server works both in online and offline modes with 1.7.9.
| * Initial 1.7.6 protocol support.madmaxoft2014-04-141-0/+13
| | | | | | | | Doesn't work yet because of missing UUIDs.
* | Did some static analysis, fixed some bugs and optimized a lot of codejfhumann2014-04-181-6/+7
|/
* More Clang warning fixes in the protocols.madmaxoft2014-04-041-3/+3
|
* Fixed some Clang warnings in protocols.madmaxoft2014-04-041-1/+1
|
* WarningsTycho2014-03-071-1/+1
|
* Manual merge (Fixed conflicts)andrew2014-02-201-0/+18
|\
| * Implemented paintings, fixes #689Tiger Wang2014-02-181-0/+8
| | | | | | | | + Implemented paintings
| * Implemented cCompositeChat.madmaxoft2014-02-151-0/+10
| | | | | | | | | | This allows plugins to send composite chat messages, containing URLs, commands to run and cmdline suggestions. Fixes #678.
* | Map decorators; Map clientsandrew2014-02-181-0/+10
| |
* | Implementation of in-game mapsandrew2014-02-131-0/+20
|/
* PolarSSL is fully used for 1.3.2 protocol encryption.madmaxoft2014-01-231-1/+1
|
* Merge branch 'master' of https://github.com/mc-server/MCServerandrew2014-01-211-0/+10
|\
| * Removed unneeded paramtersTiger Wang2014-01-191-2/+2
| |
| * Changed SendBlockEntity format slightlyTiger Wang2014-01-191-2/+2
| | | | | | | | | | * Writing NBT is now in Protocol, not BlockEntity files * Fixed a last output bug
| * Improved command blocksTiger Wang2014-01-191-0/+10
| | | | | | | | | | | | | | * 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
* | Scoreboard protocol supportandrew2014-01-211-1/+31
|/
* Added cClientHandle::SendPluginMessage().madmaxoft2014-01-091-0/+10
| | | | It is not yet exported in the API, though.
* Fixed a few MSVC warnings.madmaxoft2014-01-061-1/+1
|
* Implented BroadcastParticleEffectSTRWarrior2013-12-221-0/+10
|
* Added SendEntityEffect and SendRemoveEntityEffect. Also a Player now gets the hunger effect when he has food poison.STRWarrior2013-12-141-0/+20
|
* Renamed animation functionTiger Wang2013-12-071-2/+2
| | | | | Renamed BroadcastPlayerAnimation to BroadcastEntityAnimation. Not just players can have animations, you know.
* Merge remote-tracking branch 'origin/master' into foldermove2Alexander Harkness2013-11-261-0/+10
| | | | | Conflicts: VC2008/MCServer.vcproj
* Merge remote-tracking branch 'origin/master' into foldermove2Alexander Harkness2013-11-241-0/+10
| | | | | Conflicts: GNUmakefile
* Moved source to srcAlexander Harkness2013-11-241-0/+905