summaryrefslogtreecommitdiffstats
path: root/Server (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-27Update Minecraft Wiki links to new domain (#5532)Spongecade2-4/+4
* Update Minecraft Wiki links to new domain * Added Spongecade to contributors * Sorted Spongecade
2023-09-26adding endermite (#5460)Debucquoy Anthony tonitch2-0/+11
* First Draft of adding endermite * Update src/Mobs/Endermite.h Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> * Adding Protocols + SpawnEgg TODO: don't forget to put the endermite in core plugin for the summon command * Adding endermite to monster.ini * Adding 5% change of spawning endermite when throwing enderpearl * Spawn endermite at last position instead of Hit Position + .cache to .gitignore * fixup! Spawn endermite at last position instead of Hit Position + .cache to .gitignore * destroy endermite if 2 min, not if name is set * Syntax * Adding Enderman targeting endermite + fixing syntax * Fixing compile error + return error [but crash on enderman spawn] * Fix crash but enderman doesn't target * Enderman targeting endermite finished * checking style because i'm a noob at git... * fixup! checking style because i'm a noob at git... * Added endermite egg meta to docs * Final touches Removed unnecesary imports fixed callback to run only in sight distance and actually check sigtlines * Fixed error after not pulling branch --------- Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> Co-authored-by: Debucquoy <debucqquoy.anthony@gmail.com>
2023-09-26Update CoreMat1-0/+0
2023-05-19cTCPLink and cUrlClient accept list of trusted root CAs for TLS.Mattes D1-1/+6
2023-04-08Implement slime chunks. (#5484)Michal Havlíček1-0/+21
* Implement slime chunks. * add cWorld::IsSlimeChunk * add documentation for cWorld::IsSlimeChunk
2023-03-27Small Team Creation Fixes (#5479)x12xx12x1-1/+1
- Add additional explanation for team creation - error message if team creation fails because team already exists fixes #5466
2023-03-22Handle newlines in cIniFile (#5447)Jomar Milan1-0/+4
* Handle newlines during read and write in cIniFile When reading the ini file, replace \n with newline. When writing, replace the newline with \n. * Use ReplaceString instead of regex in IniFile * Update cIniFile description * Removed duplicate variable * Revert "Removed duplicate variable" This reverts commit de11bac047d871dfbffec28b72f72a2935bd339e. * Removed duplicate variable Now without plugin changes --------- Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com>
2023-01-25TNT minecarts exploding when riding over activator rails (#5469)Michal Havlíček1-0/+4
* TNT Minecarts exploding via activator rails * Fuse animation * Add TNT minecart explosion source to APIDesc
2022-10-28Update Core Plugin (#5453)x12xx12x1-0/+0
2022-10-25rework of the color code with & and standard codes (#5416)Debucquoy Anthony tonitch1-8/+11
* adding build* to gitignore and tags for ctags * Notation Changes * Adding & Parser * Avoid crash when & as first character * Looking for @ in the rest of the project * Formating style * Modifying test to reflect new behaviours * Adding a check for the first part * fixup! Adding & Parser style changes * Update APIDesk.lua * Update src/CompositeChat.cpp Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> * explaination on the antishlash with ampersand * adding old deprecated formating * Update src/CompositeChat.cpp Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> * Update src/CompositeChat.cpp * Update src/CompositeChat.cpp Co-authored-by: Debucquoy <debucqquoy.anthony@gmail.com> Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com>
2022-09-28Update CoreMat1-0/+0
2022-08-29Update CoreMat1-0/+0
2022-07-16ClientHandle: Fix block interaction regressions (#5431)Tiger Wang1-5/+4
* ClientHandle: Fix block interaction regressions * Fix reach distance being halved. * Fix fire extinguish not working, fixes #5422. * AddFaceDirection: deprecate non-vector version
2022-05-07Added check for unexported but documented API (#5418)x12xx12x4-121/+62
Also fixed the errors
2022-05-07Implement ranged attack for snow golems. Fix failed assertion (#5417)DarkoGNU1-1/+1
* Implement ranged attack for snow golemas. Fix failed assertion when stopping the server * Decrease snowball speed * Adjust accuracy for snow golems * Use a getter instead of m_World
2022-04-21Implement farmland trampling (#5401)DarkoGNU1-0/+10
* Add DarkoGNU to CONTRIBUTORS * HandleFarmlandTrampling function & its docs * Fix decimal separators (, -> .) * Fix style. Adjust thresholds. Make function non-virtual * Adjust thresholds again. Prepare for fixing #5402 * Trying to fix falling through farmlands * Another style fix * Add FarmlandTramplingEnabled to world.ini * Docs for IsFarmlandTramplingEnabled * Style * Farmland trampling - handling the random chance * Trampling kinda works, very buggy * Trying to fix clang-tidy * Fix trampling * Trying to fix the 'undocumented API symbol' * Implement bearbin's suggestions * Calculate volume properly * Don't use std::pow for squaring * Improved comments * Really, should comments' style be checked?
2022-01-24Add player permission level (#5358)Simon Pribylski1-3/+3
2021-12-29Improved farmer AI & Fixed entity loading functions (#5351)Persson-dev1-3/+21
* Allow villagers to pickup items * Add farmer villager harvesting * Use of auto keyword * Using for loop to check adjacent crops * Show particules when farmer harvest * Fix area comment * Move constants to header file * Removing unnecessary semicolon * Initialization of CropBlockType variable * Apply 12xx12 suggestion * Fixing area constant size * Refactor bounding box calculation, use vectors. * Add Api documentation * Update lua docs * Rework farmer ai * Fixing lua docs notes * Add missing capitalisation * Add villagers inventory save * Fixing loading entities from disk inconsistencies * Add farmer harvest animation * Fix beetroots grow state Co-authored-by: Alexander Harkness <me@bearbin.net>
2021-11-29Added ExperienceAmount variable to HOOK_PLAYER_FISHING and HOOK_PLAYER_FISHED (#5345)Feyo Korenhof1-2/+2
* Implemented cServer::ScheduleTask() and cServer::TickQueuedTasks() * Fixed formatting and added ScheduleTask to APIDesc * Added feyokorenhof to contributors * Added ExperienceAmount variable to all the hook calls. * Made ExperienceAmount int reference instead of int in HOOK_PLAYER_FISHING. Fixed bug: a_Reward is now a reference * Add documentation, change ItemFishingRod to pass in experience Co-authored-by: Alexander Harkness <me@bearbin.net>
2021-11-22Bind more ClientHandle functions to Lua (#5334)AirOne1-0/+139
+ Bound the following functions to Lua + SendBlockBreakAnim + SendCollectEntity + SendDestroyEntity + SendDetachEntity + SendEditSign + SendLeashEntity + SendThunderbolt + SendUnleashEntity Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
2021-11-11Miscellaneous fixes (#5320)Tiger Wang1-1/+1
* Protocol: update Abilities flags + Add Spectator handling * BioGen: move <iostream> include * ClientHandle: rename Respawn packet dimension check flag * Make it clearer what it's doing. * ClientHandle: move ProcessProtocolIn calls to World * Player: remove some redundant initialisation * Player: UpdateCapabilities enables flight for spectators * Produce growth: improve comments * ClientHandle: run unload checks using delta time * Fix forgotten initialisation of time member
2021-10-03Prevent placing of hangables on illegal blocks and break when support block broken (#5301)Ethan Jones1-0/+18
+ Prevent placing of hangables on illegal items and break when support block is broken Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-10-02Perform bed checks upon respawn (#5300)JK2K2-2/+26
Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-07-25Update Core (#5274)Alexander Harkness1-0/+0
2021-07-23Added y bounds checking for cPlayer::PlaceBlock (#5194)Kiryu1441-11/+3
2021-07-10Chorus fruit teleport (#5259)KingCol131-0/+85
* Outline function for teleporting. * Created new handler for chorus fruit. * Fixed AttemptTeleport failing. * Better names, working sound effect. * Corrected naming. * Remove stray LOGD. * Offset teleport to middle of block. * Style Fixes Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> * Style Fixes 2 Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com> * Move FindTeleportDestination to static cPawn method. * cBoundingBox interface. * Cleanup includes. * Maybe exported to API? * Change a_World to reference, add to APIDesc. Co-authored-by: x12xx12x <44411062+12xx12@users.noreply.github.com>
2021-06-28Documentation: add statistics descriptionsTiger Wang1-76/+76
2021-06-28Documentation: update chat colour linkTiger Wang1-3/+3
2021-06-28Remove orphaned API symbolsTiger Wang1-73/+0
https://github.com/cuberite/cuberite/issues/5195#issue-860458139
2021-06-23Add optional prefix parameter to LOG functions (#5229)x12xx12x3-65/+59
Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-05-29Added standardised way to Log with plugin name (#5227)12xx121-3/+3
* added logging functions to each plugin * added documentation * modified the global LOG macro * updated the way of string composition * removed cloumn * removed capital v
2021-05-26Implemented cServer::ScheduleTask() and cServer::TickQueuedTasks() (#5224)Feyo Korenhof1-0/+15
2021-05-05Move item placement into item handlers (#5184)Tiger Wang1-0/+18
* Move item placement into item handlers + Add appropriate CanBeAt checks in cPlayer::PlaceBlocks, into which all placement handlers call. * Partly addresses #5157 * Fixes #4878 * Fixes #2919 * Fixes #4629 * Fixes #4239 * Fixes #4849 Co-authored-by: changyong guo <guo1487@163.com> Co-authored-by: Xotheus <shady3300@outlook.com> Co-authored-by: Krist Pregracke <krist@tiger-scm.com> * Review fixes * Update APIDesc.lua * Rename Co-authored-by: changyong guo <guo1487@163.com> Co-authored-by: Xotheus <shady3300@outlook.com> Co-authored-by: Krist Pregracke <krist@tiger-scm.com>
2021-05-03Add player statistics to API (#5193)nshah252-35/+392
* Fixed issue #5166 Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-04-12More cProtocol cleanupTiger Wang1-71/+45
* Alpha sort functions * Simplify hand handling * Fix left handed mode client-side display
2021-04-12Streamline player abilities handlingTiger Wang1-10/+0
* 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 Wang2-26/+0
Yak shave: make more things use cTickTime. Fix a couple of incorrect modulo-on-millisecond-value by making them use WorldTickAge.
2021-04-08Obsidian pillars, end fountain, not Ender dragon spawning (#4993)12xx121-0/+0
* added generator for obsidian pillars and central fountain which then is used for the exit portal * checkstyle * checkstyle the second * fixed clang removed magic number added Clamp * make the pillars configurable * fixed clang added warning if there was a unknown value if the tower should have a cage or not * forgot to cancel on unkwon value * fixed clang this time maybe * added new generator to generator test * fixed test * added prefab generation for end fountain * fixed checkstyle and updated the prefab * added ender dragon spawning made the fountain positioning dynamic removed fountain placement functions * added enderdragon stuff to testing * pls compile * added changes suggested by @peterbell10 * fixed clang * added debug for further research on the ARM build * ok - it wasn't my tower placement * checking in setup * readded the fountain schematic * removed finisher * readded generator * removed generator trigger - kept ini file access * using cChunkDef function to calculate abs pos of endercrystal * yes, I know it's unused... * commented everything in the ComposableGenerator.cpp - so only the new class in compiled in but not called at all * don't compile in the new generator at all (removed from CMakeLists.txt) * readded the new generator * readded the new generator * removed debug output * made the towers generate acrocc chunk borders * fixed bad merge * fixed clang * fixed clang * generate the dragon 20 blocks above terrain * trying to fixed weird undefined reference * maybe this fixes the weird behaviour * takes chunk width as parameter now * added new comments with info to generated structures removed ender dragon spawning removed chunkwidth from parameter * fixed linker * maybe fixed linking. tried with gc and clang * fixed ender crystal * fixed test * updated output strings * fixed build * fixed up test * fixed test compile * fixed test - cant get the tests to show up * removed the semicolon * maybe this is the fix? * at this point i have no idea - in MVSC it works * removed the ender dragon Co-authored-by: 12xx12 <12xx12100@gmail.com>
2021-04-03Basic elytra flight (#5124)Damián Imrich1-10/+21
* Basic elytra flight Co-authored-by: 12xx12 <44411062+12xx12@users.noreply.github.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-03-20Change TimeOfDay to WorldDate (#5160)Tiger Wang1-2/+2
* Change TimeOfDay to WorldDate * Do not wrap at 20 minutes, continue incrementing * Fixes #4737 * Fixes #5159
2021-03-15Add heraldry names to banner pattern API docsTiger Wang1-0/+169
2021-03-15Properly deprecate more XYZ parameter'd functions (#5147)Tiger Wang1-64/+12
* Fixes #5144
2021-03-06Update CoreTiger Wang1-0/+0
2021-03-05Adding Boss bar (#5025)12xx121-0/+189
+ Add boss bar Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2021-03-05Add Mushrooms to Generator and fixed up the roofed forest (#5134)12xx121-0/+52
* added generator for mushrooms and aded them to the biomes * removed unused variable * added nEwlY uDocUmEnTeD aPi sYmbOls...
2021-02-06Adds playerlist header and footer broadcasting (1.8-1.13)dImrich2-0/+45
2021-01-11zlib -> libdeflate (#5085)Tiger Wang1-12/+1
+ Use libdeflate + Use std::byte * Fix passing temporary to string_view + Emulate make_unique_for_overwrite
2021-01-05Fixed switch-ups regarding some slab and stair recipes (#5099)Varga Szabolcs1-4/+4
2020-12-18Added the ability for white beds to be dyed (#5077)bwats971-0/+16
+ Added Ability for white beds to be dyed
2020-11-25Added magma block contact damage (#5055)Aiden Neill1-0/+8
* Added magma block contact damage * Fireproof entities do not take damage from magma * Fire resistance prevents magma damage * No magma damage when hovering over magma block
2020-11-23Adding new monster types to enum and saving/loading for easier future implementation (#4941)12xx121-0/+148
* 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-15Add coloured glass pane recipes (#5032)Derek Qu1-0/+17
+ Add coloured glass pane recipes using uncolored glass panes
2020-11-06Add correct implementation of crops (#4802)0ddlyoko1-117/+4
* [FIX] Add correct implementation of seed drops. > Official percentage of drops has been implemented * Fix C++ conventions * Change "Vals" variable to "m_Vals" * [FIX] Add correct implementation of Carrots, Potatoes, Wheat & Beetroots seed * Add Fortune support with crops Add fortune support with Wheat, Carrots, Potatoes & Beetroots seeds * [FIX] Right-clicking on a grown Beetroot in survival consume 2 bone meals Fix #4805 * Add documentation for "cWorld::IsFullGrownPlantAt" method * Fix dispenser that full grown a plant > Change methods cItemDyeHandler::FertilizePlant & cItemDyeHandler::growPlantsAround to static * Display particle even if tree doesn't grow * When right-clicking on a full grown melon / pumpkin seed, no longer produce a melon / pumpkin Before this commit, when you right-click on a melon or a pumpkin seed, a melon / pumpkin block spawned. With this commit, it no longer spawns * [FIX] Do not create melon / pumpkin block when right-clicking with a bone meal This fix will prevent the creation of a melon / pumpkin block when you right-click with a bone meal on a melon / pumpkin plant - It just detect if the plant is full grown. if yes, the method "Grow" is not called - Remove IsFullGrownPlant 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)12xx122-13/+86
* 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-30Corrected type for param Pos on spawn enter crystal (#5012)Lukas Pioch1-1/+1
2020-10-29Add beam target, configurable base visibility to Ender Crystals (#5010)12xx122-1/+23
* Fixes #4990 Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-10-13Added missing return types and fixed param types (#4996)Lukas Pioch3-34/+41
2020-10-11Adding Silverfish Spawning Blocks (#4946)12xx121-0/+12
* added breaking, spawning, animation * checkstyle * added undocumented API symbols * added changes suggested by @peterbell10 * added natural ore like generation * fixed spawning two silverfishes * fixed clang * fixed clang try 2 * updated comment unified offset * final clang fix * added spawning for more silverfishes if one was damaged * fixed spawning on one hit kill * fixed spawning on one hit kill fixed spawning by potion damage * fixed clang * fixed broken build * fixed broken build * I should read the error message properly fixed build now? * added small changes suggested by @peterbell10 Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-10-11Corrected invalid syntax for return types in APIDoc (#4989)Lukas Pioch1-6/+18
2020-10-10Adding more customize options to mob spawners and improving the way to look for surrounding entities (#4955)12xx121-3/+117
* added nearly any customize option * fixed unnecessary diff added comments * removed unnecessary const qualifier * fixed build * changed to ForEachEntityInBox * added docs * updated lua api description * checkstyle * added changes suggested by @peterbell10 And now the player may break the server by setting ridiculous ranges * updated docs changed cast to static cast * fixed clang * fixed clang on WSSAnvil.cpp Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-10-09Add default value nullptr for parameter a_Digger and added digger toLukas Pioch1-12/+40
cWorld:DigBlock in lua api
2020-10-01Add SetBlockMeta warning in documentation (#4943)[IPSA] Chris de Claverie3-5/+9
+ Add SetBlockMeta warning in documentation Co-authored-by: pwnOrbitals <c.de-claverie@pm.me>
2020-09-28Plugin reload <plugin_name> feature (#4942)[IPSA] Chris de Claverie1-0/+11
+ Add `reload <pluginname>` * Fixes #365 Co-authored-by: Alexander Harkness <me@bearbin.net> Co-authored-by: pwnOrbitals <c.de-claverie@pm.me> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-09-21Implement Dropspenser Hook (#4903)KrystilizeNevaDies2-0/+30
* Implement Dropspenser Hook Implemented a hook for dropspensing. HOOK_DROPSPENSE When plugin callback returns true then dropspense is cancelled * Update src/Bindings/PluginManager.h Co-authored-by: peterbell10 <peterbell10@live.co.uk> * Create OnDropSpense.lua * Fix indent * Forgot include Forgot to include the plugin manager. Although now im confused why it was working on my end without including the plugin manager * Update plugins.lua with dropspense * fix typos * haha notepad++ go brr Co-authored-by: peterbell10 <peterbell10@live.co.uk>
2020-09-18Adding Generator For Single Piece Structures (#4830)12xx124-0/+1613
* the beginning of a magnificent work - added basic files and classes without functionality * fixed checkstyle * added imports * moved imports * - Adding SinglePieceStructureGen - Adding a cPrefabChestStructure to generate Chests with contents - Added the options and calls to the ComposableGenerator * moved Globals to .h file * removed the chest thingy from the code (for now) * Update SinglePieceStructureGen.cpp * readded whitespace * renamed to SinglePieceStructuresGen for consistency added new classes to test * fixed small things (mostly style and cleanup) removed loottables * added small changes suggested by madmaxoft * small change to documentation * added check for allowed biomes * check only the biome of the origin position * fixed error on IsBiomeAllowed * added new cubesets * updated structures for with sponging * updated biome names * updated metadata to prevent crashing removed debug output * updated structures with sponging * added sponging to deserterWell to make it disappear in sand * small change in meta * rename DesertTemple -> DesertPyramid * minor style changes Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Alexander Harkness <me@bearbin.net>
2020-09-17Added recipe for the observer. (#4880)KingCol131-0/+2
* Added recipe for the observer. * Forgot mirrored recipe. Co-authored-by: Alexander Harkness <me@bearbin.net>
2020-09-17Fixed snow golems and added documentation to damage type and added damage type for damage from environment to mobs (#4877)12xx121-0/+160
* made snow golems not crashing the server anymore * changed damage type to environment * updated damage in API dopcumentation and changed enderman damage type * removed incidental d in the code Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-09-05Use pitch lookup in noteblock block entity (#4826)12xx121-3/+32
- Removed the calculation in the noteblock block entity I did the calculation in python if anyone is interested where the numbers are from Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-08-28Remove unneeded MarkDirty, SendToClients parameters of SetMetaTiger Wang1-11/+1
Partially reverts #3129, whose addition of these parameters was superseded by #3149 that fixed generated leaves' metas. References: https://github.com/cuberite/cuberite/pull/4417#discussion_r334950513 e0bcd754009f16480437b2c1fa5e7fbedab31496
2020-08-27Changed tree-growing functions in cWorld to use Vector3i coords.Mattes D1-36/+8
2020-08-21Minor typo fixesTiger Wang1-1/+1
* Also DeMorgan'd Emerald ore condition
2020-08-12Add enhanced Gold generation in Mesa-Type Biomes (#4821)12xx121-0/+17
* added enhanced gold generation in mesa-type-biomes * fixed typo in comment * added enhanced gold generation in mesa biomes - fixed small checkstyle errors Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-08-10small issues addressed in #4817 fixed because was merged to fast12xx121-1/+1
2020-08-09Adding Emeralds to generation (#4817)12xx121-0/+17
* Adding Emeralds to generation * fixed crash * fixed documentation and changed function name to match others * forgot to change the name in the doc * removed debug output - sorry build servers Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-08-05Update Coremathiascode1-0/+0
2020-07-23Use string redirection in Windows serviceTiger Wang1-2/+2
+ Localisation support
2020-07-14Introduce recipe book functionality (#4493)Tobias Wilken3-387/+855
* 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-12More CMake cleanupTiger Wang1-5/+21
2020-05-10Remove pkFishingFloat documentation (#4732)Mat1-4/+0
2020-05-08Don't include folder itself in AutoAPI.zipMat1-1/+1
2020-05-08Update CoreAlexander Harkness1-0/+0
2020-05-08Use Vector3 for cLineBlockTracer and cBlockTracer (#4715)mBornand3-31/+161
* cLineBlockTracer uses Vector
2020-05-03Buttons can now be triggered by arrows. (#4670)DrButcher1-0/+10
* Buttons can now be triggered by arrows.
2020-05-03Add cEntity::GetBoundingBox, and use where appropriate. (#4711)Alexander Harkness1-0/+10
* Add cEntity::GetBoundingBox, and use where appropriate.
2020-04-25Corrected furnace recipes for logLukas Pioch1-2/+2
2020-04-19Added check for item damage (#4681)Lukas Pioch1-69/+72
* Added check for item damage Co-authored-by: Mattes D <github@xoft.cz>
2020-04-18Add API documentation for repeater metadata constantsTiger Wang1-0/+20
2020-04-18Extended Vector3 (#4666)Mattes D2-28/+111
2020-04-17More Vector3 in cBlockHandler (#4644)Mattes D2-2/+13
* cBlockHandler.OnUpdate uses Vector3 params. Also slightly changed how block ticking works.
2020-04-14Bindings: Allow coercion between Vector3 subtypes. (#4646)Mattes D2-0/+28
In manually bound functions, allows one to use any Vector3<T> value, as well as a {x, y, z} table, in Lua as any Vector3<T> parameter. Has example in Debuggers' /vector command. Unfortunately doesn't work in auto-bindings.
2020-04-12Fixed entity teleport for just-spawned entities.Mattes D1-0/+21
Includes a test code in the Debuggers plugin - throwing a cake-as-fallingblock.
2020-04-10Update CoreAlexander Harkness1-0/+0
2020-04-10API docs: Fixed eMonsterType relocation.Mattes D1-129/+133
2020-04-10Add Zombie VillagersBond-0092-0/+12
2020-04-09Falling blocks can now be spawned at any position. (#4620)Mattes D3-17/+95
* Falling blocks can now be spawned at any position. * Added a /cake command to Debuggers that throws a cake in a nice slow arc. * Fixed regular falling blocks.
2020-04-04Potion changes (#4601)Mat1-94/+14
* Correct protocol translation for potions * Update brewing recipes
2020-04-04Implement wither skeletons (#4563)Mat2-0/+21
2020-04-03Update Coremathiascode1-0/+0
2020-04-03WebAdmin logo improvements (#4604)Mat3-9/+15
2020-04-03Removed the obsolete cTracer class. (#4594)Mattes D1-15/+1
2020-04-02Update CoreAlexander Harkness1-0/+0
2020-04-02Replace buckets to the selected hotbar slot, rather than the first available. (#4580)Alexander Harkness1-11/+55
* Replace buckets to the selected hotbar slot, rather than the first available. Replicates vanilla behaviour, as well as being more logical. * Refactor cInventory::AddItem. Behaviour is now documented * Add new cInventory::ReplaceOneEquippedItem and ::SetEquippedItem methods * Return empty potion to the same slot after drinking * Replace buckets correctly in other situations, not simply water and lava Uses the new ReplaceOneEquippedItem method * Correct collecting water from source block with bottle * Add cPlayer::ReplaceOneEquippedItemTossRest method * Handle stacked filled buckets (in theory) Use new cPlayer::ReplaceOneEquippedItemTossRest method
2020-04-02Tweak attack rangesmathiascode1-23/+23
2020-03-31Prevent player from being destroyed by plugins (#4584)Alexander Harkness1-2/+2
* Prevent player from being destroyed by plugins Add manual binding, bails out with error message if attempted entity to destroy is player. * Improve warnings and documentation, remove automatic binding * Remove old and unnecessary deprecated function
2020-03-31Added a /boom command to Debuggers. (#4592)Mattes D2-0/+21
2020-03-30Lua API for spectating entities (#4518)Mat1-0/+11
2020-03-27 Lock hopper when powered by redstone (#4347)Bond-0091-0/+29
* Lock hopper when powered by redstone * Add to manual bindings * Add hopper API documentation Co-authored-by: Mat <mail@mathias.is>
2020-03-26Decrease attack cooldown for monsters (#4542)Mat1-31/+30
* Decrease attack cooldown for monsters * Nerf some mobs * Decimal points
2020-03-26Update CoreAlexander Harkness1-0/+0
2020-03-24Send respawn packet by default (#4540)Mat1-1/+1
2020-03-24Update CoreAlexander Harkness1-0/+0
2020-03-23Update .gitignore; new files added to APIDump are no longer ignoredAlexander Harkness1-3/+7
2020-03-23Add missing documentation file.Alexander Harkness1-0/+18
2020-03-23Manual merge of #4498.Alexander Harkness2-0/+5
Credit to @MeMuXin Closes #4498
2020-03-22TNT position fixes (#4519)Mat1-0/+4
* TNT position fixes * Don't add offset to explosion spawn coords * Don't make other entities push TNT * Correct initial TNT speed * Fix typo * Improvements * Revert unwanted change * Style fixes * Update format
2020-03-22Update Coremathiascode1-0/+0
2020-03-22Updated core, fixes #4520Alexander Harkness1-0/+0
2020-03-21Update CoreAlexander Harkness1-0/+0
2020-03-17Update Coremathiascode1-0/+0
2020-03-05Stabilise MoveToWorld (#4004)Mat1-4/+34
* Stabilise MoveToWorld * Fix comments and deprecate ScheduleMoveToWorld * Enhanced thread safety for m_WorldChangeInfo * Return unique_ptr from cAtomicUniquePtr::exchange * cWorld now calls entity cEntity::OnAddToWorld and cEntity::OnRemoveFromWorld. Allows broadcasting entities added to the world from the world's tick thread. This also factors out some common code from cEntity::DoMoveToWorld and cEntity::Initialize. As a consequence, cEntity::Destroy(false) (i.e. Destroying the entity without broadcasting) is impossible. This isn't used anywhere in Cuberite so it's now deprecated. * Update entity position after removing it from the world. Fixes broadcasts being sent to the wrong chunk. * Fix style * cEntity: Update LastSentPosition when sending spawn packet * Add Wno-deprecated-declarations to the lua bindings * Kill uses of ScheduleMoveToWorld
2020-02-27Update ProtectionAreasmathiascode1-0/+0
2020-02-23Update submodulesmathiascode1-0/+0
2020-02-10Remove unused file in Unix executable listMat1-1/+0
2020-01-13Improved the UpgradeBlockTypePalette.Mattes D1-307/+1440
2020-01-07Added temporary block type mapping for 1.13+ protocols.Mattes D3-9/+23
2020-01-02Clean up server folder for Android (#4448)Mat1-0/+17
2019-12-30Remove lang folder (#4445)Mat1-603/+0
2019-12-30Change outdated support linkMat1-1/+1
2019-12-28BlockTypePalette: Load from TSV or original reports' JSON.Mattes D4-1/+20415
2019-12-28Update submodules (#4439)Mat2-0/+0
* Fix AppVeyor debug artifacts * Update submodules * Update AppVeyor badge URL * Revert debug change
2019-12-28Output the binaries into a per-configuration Server subfolder. (#4440)Mattes D14-20/+399
Make links to the original Server subfolder's items from the per-configuration Server subfolder.
2019-12-28WebAdmin improvements (#4433)Mat16-696/+300
* WebAdmin improvements * Remove stray div tag * Revert path change * Remove buildserver link * Further simplification * Reduce horizontal padding * Add svg icons * Remove unneeded css * Make login and logout icons colored * Use same capitalization for Log in and Log out * Remove leftover code from old Webadmin design * Remove more leftover code from earlier Webadmin versions * and don't add earlier leftovers back... * PR test * Fix max width overflow * Add missing css changes
2019-12-12Added CSS to increase the padding on the bottom of the second row (#4436)Arham Jain1-0/+1
Allows users with certain browsers and screen sizes to avoid the footer cutting off page content. Fixes #4068.
2019-10-28Moved growing from cWorld / cChunk to cBlockHandler descendants.Mattes D2-13/+49
2019-10-16Refactored block-to-pickup conversion. (#4417)Mattes D2-8/+70
2019-09-29Refactored more of Entities and BlockEntities to use Vector3. (#4403)Mattes D2-0/+226
2019-09-22Add ProtocolBlockTypePalette (#4391)E141-0/+1
2019-09-16Remove analytics code (#4394)Mathias8-6723/+0
2019-08-10APIDocs: Added missing return type and corrected one (#4353)Lukas Pioch2-1/+7
2019-08-10Added more clamping operations to cCuboid.Mattes D1-0/+22
2019-08-09Removed coord-based API from cCuboid. (#4362)Mattes D1-90/+6
2019-08-05Register vanilla blocks in BlockTypeRegistry.Mattes D1-0/+8
2019-06-11* Sponge: Add water absorbtion (#4333)Zach DeCook1-0/+8
Closes #1411
2019-05-11Create Ender Portal with Eyes of Ender (#4126)Zach DeCook1-0/+40
The algorithm was designed so All portals must be facing the center, no matter which block had the eye inserted in last. Note: Still need to create a block entity so that portals don't become invisible when you relog. Addresses part of #3445 Fixes #3695
2018-09-24Add BurnsInDaylight to Lua API and Monsters.ini (#4295)Muhammad Kaisar Arkhan2-0/+23
* Monster.h: Export SetBurnsInDaylight This commit also adds BurnsInDaylight to check if the Monster burns in daylight or not. Closes https://github.com/cuberite/cuberite/issues/4294 * MonsterConfig.cpp: Add BurnsInDaylight Closes https://github.com/cuberite/cuberite/issues/4294
2018-08-03Fix use item doc error (#4279)peterbell102-4/+0
The documentation now matches what's passed to lua. Fixes #4194
2018-08-02Experience orb (#4259)changyong guo1-0/+55
* Replace cWorld::FindClosesPlayer with cWorld::DoWithClosestPlayer * Implement experience reward splitting into the orb sizes used in vanilla * Modified speed calculation in cExpOrb::Tick to make the orbs fly towards the player Fixes #4216
2018-07-27cWorld: Manually bind deprecated broadcast functions (#4265)peterbell101-0/+56
Ref: https://github.com/cuberite/cuberite/pull/4264#discussion_r204769193
2018-07-23Rewrite explosion knock back (#4251)changyong guo1-0/+10
1. Base knockback on an entity's bounding box intersection with the explosion 2. Armor blast protection reduces knockback 3. Don't apply knockback to players flying in creative mode Fixes #4139
2018-07-19cBlockArea: Write all present data types by default (#4252)peterbell101-2/+2
cBlockArea::Write now defaults to use GetDataTypes() instead of assuming all data types are present. Fixes cuberite/WorldEdit#130
2018-06-24Support swap item between main hand and offhand by press key "F" (#4241)changyong guo1-0/+10
Hi, I found cuberite don't support to press key "F" to swap items on main hand and offhand, so I implemented this feature. Best regards Changyong
2018-04-11Smelting Gives Experience (#4094)Alex Sweet2-71/+81
* Smelting Exp Smelting now gives experience * Furnace.txt update Exp rewards are entered in furnace.txt, Reward calculation is now done is the furnaceentity class * furnace.txt update Changed alignment tabs to spaces Included documentation of exp in recipe * Updated StringToFloat changed strtod to strtof * Explicit Float to Int * Reworked Smelting Rewards * No C casts -Adds new function to the api -Sets reward counter to 0 in furnace constructor * Style and exp lock removed -Fixed style mistakes accoring to PR notes -XP isn't locked to a single player anymore * No Smelter API -Removed SetLastSmelter and GetLastSmelter -Fixed comments -Fixed log reward amounts
2018-02-20cBlockInfo: Deprecate direct access to variables. (#4184)peterbell101-13/+13
2018-01-21cItemGrid: Allocate storage lazily (#4083)peterbell101-4/+4
* cItemGrid: Allocate storage lazily * cItemGrid: Fix spelling, Prioritary -> Priority
2018-01-14Rename cEntity swim states (#3996)Alexander Harkness1-2/+42
* Replace cEntity:m_IsSubmerged with m_IsHeadInWater * Replace cEntity:m_IsSwimming with m_IsInWater * Add API documentation for new symbols * Apply SetSwimState to all entities, not just mobs and players * Pickups now use IsOnFire to check if they are on fire before destruction Fixes #3987
2018-01-06Golden Apple Fixes (#4130)Alexander Harkness1-3/+2
* Do not remove food item until player has been fed * Golden apples now ignore hunger when eating * Removed EnchantedGoldenApple recipe, as it was removed in 1.9 Reference: https://minecraft.gamepedia.com/1.9#Items_2 * Adjust golden apple effects, as they were changed in 1.9 Reference: https://minecraft.gamepedia.com/1.9#Items_2
2017-12-26improve rain simulation (#4017)Alexander Harkness2-16/+50
* Uses vanilla logic to decide which blocks rain falls through. * Rain falls infinitely above the world, and stops at y=0. * Entities will now be extinguished if they are under rain-blocking blocks, and fire will now be extinguished by rain similarly. * Create IsWeatherWetAtXYZ to identify wetness at a particular location. * Use new code for enderman rain detection. * Fixes issue #916 * Disable warnings for global constructors in the fire simulator.
2017-12-25Correct spider eye item ID (#4110)Alexander Harkness1-5/+1
Fixes #4108
2017-12-23Fixed item ID raw rabbit (#4103)Bond-0091-1/+1
2017-10-21Implement horse inventory (#4053)peterbell101-0/+18
* Implement horse inventory * Fix sign conversions * Add API doc for ItemCategory::IsHorseArmor * Improve HandleOpenHorseInventory comment and style fixes.
2017-09-19Changed BroadcastSoundEffect, SendSoundEffect, and CastThunderbolt parameters to vectors (#3959)Lane Kolbly2-4/+94
* Made BroadcastSoundEffect take vector parameters. * Added docs for new vectored methods * Removed old code * Fixed lua warnings * Made old BroadcastSoundEffect not an override. * m_Block to m_BlockPos, used Vector3d constructor where prettier. * a_Block to a_BlockPos * Changed thunderbolt a_Block to a_BlockPos
2017-09-07Made world data paths adjustable, and added API to temporarily disable saving chunks to disk. (#3912)Lane Kolbly3-2/+43
2017-09-07Lighting now generally consistent with vanilla (#3988)Alexander Harkness1-0/+18
* Lighting now generally consistent with vanilla Skylight is now dispersed by some blocks, instead of passing through unimpeded. Some blocks which were not marked as transparent are now marked as such. Water and other such blocks now attenuate light with the correct intensity. Generally changes were based on documentation in the Minecraft Wiki: https://minecraft.gamepedia.com/Opacity#On_block_light , however during play-testing on vanilla lava was found not to attenuate sky or block-light so the attenuation was removed. This fixes #3849 * Add API documentation for IsSkylightDispersant * Rename m_SkylightDispersant to m_IsSkylightDispersant * Update comment for m_Transparent property of Blocks
2017-09-07Fire effect now shown for creative and spectator mode players (#3998)Alexander Harkness1-3/+12
* Fire effect now shown for creative and spectator mode players Fixes #3989 * Add documentation for IsFireproof
2017-09-07Updated APIDoc (#3985)Lukas Pioch2-104/+29
2017-09-07Changed some int parameters to vector parameters (#3937)Bond-0091-38/+88
2017-09-01Update Core pluginAlexander Harkness1-0/+0
/spawn command now works.
2017-08-30Update core plugins to latest version (#3951)Alexander Harkness2-0/+0
* Update core plugins to latest version * Update Core again
2017-08-30Added ShouldSendRespawn parameter to ScheduleMoveToWorld (#3979)Lane Kolbly1-1/+6
2017-08-29APIDump: Removed unneeded Globals prefixLukas Pioch2-13/+13
2017-08-27Implement Forge protocol handshake support (#3869)satoshinm2-0/+58
2017-08-25Add cUUID class (#3871)peterbell103-24/+152
2017-08-24Minor changes (#3909)mathiascode10-27/+27
2017-08-21Fully implemented leashes (#3798)Pablo Beltrán1-1/+83
2017-08-18Represent cItem::m_Lore as an AStringVector (#3882)peterbell101-4/+4
* Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings
2017-08-17Add cLuaWindow OnClicked Callback (#3901)Lane Kolbly3-1/+55
2017-08-17Changed int parameters to vector parameters in cCuboid and simulators (#3874)Lane Kolbly1-32/+56
2017-08-15Updated docs to mention InfoDump for creating README.md, etc. (#3895)William 'psyFi' Hatcher3-6/+32
2017-08-13Update TestLuaRocks.lua (#3903)William 'psyFi' Hatcher1-12/+12
Changed LOG to LOGWARNING when a library was not found Made log text more descriptive Removed unnecessary semicolons
2017-08-07cBlockInfo: Deprecate place soundpeterbell101-11/+1
2017-08-03APIDump: Class types in variables and hooks are now linkified (#3892)Lukas Pioch1-18/+23
2017-07-30Updated plugin CoreLukas Pioch1-0/+0
2017-07-28Added anvil enchantment handling. (#3857)Lane Kolbly1-2/+62
+ Added anvil enchantment handling.
2017-07-28Check for intersection between placed blocks and entities. (#3850)Lane Kolbly1-0/+10
* Check for intersection between placed blocks and entities. + Implemented GetPlacementCollisionBox, to permit custom placement collision boxes for blocks. * Factored block-entity placement checking into another function in cPlayer. - Removed vector min/max functions * Use GetWorld to get the world in DoesPlacingBlocksIntersectEntity. + Added block height checks, allow different cEntity subclasses to decide whether they will prevent block placement.
2017-07-23Updated armor cover calculation. (#3858)Lane Kolbly1-0/+36
* Updated armor damage calculation. + Added lua docs, added casts from float to int. * Changed verbage in docstring and comment.
2017-07-22BlockArea: Added the GetBounds function.Mattes D1-2/+15
2017-07-13Handle middle mouse drag (#3847)peterbell101-0/+124
2017-07-12Lua plugin cColor (#3833)Lane Kolbly1-0/+172
2017-07-12Changing pickup lifetime and combining semantics, making these adjustable in the lua api. (#3843)Lane Kolbly2-0/+102
2017-07-10Implemented draggingitem API.Lane Kolbly1-0/+21
2017-07-07BigFlower fixes (#3826)peterbell101-0/+4
* BigFlowers fixes * Correct upper part meta * Documented parameters to DoesIgnoreBuildCollision
2017-07-07Added bed entity (#3823)Lukas Pioch3-1/+90
* 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-03Added new Cuberite backers from bountysource.Alexander Harkness1-0/+2
2017-06-30Added 1.12 blocks (#3760)Bond-0094-1/+319
2017-06-29Update tolua and export EffectIDpeterbell101-0/+243
2017-06-28Updated cItemGrid API docs to reflect required GetInventory() calls.Lane Kolbly1-2/+4
2017-06-26Corrected APIDoc for cBlockArea and exported missing functions (#3808)Lukas Pioch1-11/+22
2017-06-24cBlockArea supports block entities. (#3795)Mattes D3-1940/+2204
2017-06-14Added missing 1.12 packet changesmathiascode1-1/+1
2017-06-12Corrected check for level of subcommand and fixed multiple levels not working (#3758)Lukas Pioch1-7/+8
* Corrected check for level of subcommand A message instead of an error is printed, if the sub command is unknown * Multiple levels of sub commands now works, too
2017-06-11APIDoc: Corrected param in cBoat:MaterialToStringLukas Pioch1-2/+2
2017-06-09Fixed handling Lua errors in nested callbacks (#3755)Mattes D2-0/+18
2017-06-03New icon colors (#3675)mathiascode5-2/+2
* New icon colors * New Webadmin favicon
2017-05-27Debuggers: Added the "/come" command to test mob pathfinding. (#3734)Mattes D2-0/+56
2017-05-27Add rank prefix and suffix to player name in chat (#3730)Heiko Hund1-0/+20
Fixes issue #1721
2017-05-24Exported boatLukas Pioch2-1/+148
- 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-24Off-hand/shield slot functional, save and load slot, bow + arrow functional (#3725)Pablo Beltrán1-0/+29
Fixes #3714.
2017-05-20Added backermathiascode1-0/+1
2017-05-11Tracer replacement (#3704)Mattes D3-32/+189
* Replaced cTracer usage with cLineBlockTracer. * Exported new cLineBlockTracer utility functions to Lua API.
2017-05-09Exported cFallingBlock and cExpOrb (#3700)Lukas Pioch1-1/+88
2017-05-09Updated Core and ProtectionAreas to latest.Mattes D2-0/+0
2017-05-09APIDump: Add missing 'My' to generated function hook example.Lukas Pioch1-1/+1
2017-05-08Added missing checks for Initialize function and updated APIDocLukas Pioch1-6/+6
2017-05-08Corrected brewingstand and added support for fuelLukas Pioch1-0/+35
2017-05-04Removed binary ToLua++ from build.Mattes D1-0/+1
A local Lua executable is used instead.
2017-05-02APIDoc: Removed non-existent functions and added missing return typesLukas Pioch3-114/+45
2017-04-30APIDoc: Replaced incorrect param cMonster with eMonsterTypeLukas Pioch1-1/+1
2017-04-26Build Lua in C++ mode, use exceptions for error-raising. (#3680)Mattes D1-0/+10
Fixes #3678 .
2017-04-07APIDoc: Corrected a few linksLukas Pioch5-9/+9
2017-04-05API: Removed function GetChar (#3664)Lukas Pioch1-21/+0
2017-04-05APIDoc: Added missing IsStatic flags and corrected param types.Lukas Pioch3-5/+9
2017-04-04APIDoc: Documented missing functions and variables. (#3634)Lukas Pioch4-3/+189
2017-03-29Add Fllamber to BACKERS file.Alexander Harkness1-0/+1
2017-03-16APIDocs: Corrected param types in cBoundingBox (#3624)Lukas Pioch1-10/+10
2017-03-05Added is static flag and removed is static info from text. (#3616)Lukas Pioch1-1/+3
2017-03-02Added missing IsStatic flag to functions. (#3613)Lukas Pioch2-0/+6
2017-02-24Removed a few default plugins (#3580)mathiascode5-85/+0
2017-02-21Add 1.11.1/1.11.2 protocol (#3575)mathiascode1-1/+1
2017-02-20Changed fish launching mechanism (#3520)Alex1-0/+9
Fish and other fishing loot now correctly fly towards played when reeled in.
2017-02-15Updated sounds and effect IDs (#3422)mathiascode1-1/+1
2017-02-14Added some blocks and items (#3503)mathiascode2-2/+202
2017-01-28APIDump: Corrected luacheck file to load a plugin's luacheck if existsLukas Pioch1-35/+16
2017-01-28Debuggers: Added /clientversion command to display protocol version.Mattes D2-0/+15
2017-01-27ApiDump: Added merge code to .luacheckrcLukas Pioch1-1/+47
2017-01-18Debuggers: Added a deadlock simulation command.Mattes D2-0/+34
2017-01-09Added 1.11 smelting recipes and fuels (#3526)Bond-0093-39/+52
2017-01-05Furnace: Changed GoldLeggings to GoldenLeggings (#3521)Bond-0091-1/+1
2017-01-03Track skin part and main hand preferences (#3498)Pokechu221-0/+143
2017-01-03Track skin part and main hand preferences (#3498)Pokechu221-0/+143
2017-01-03Api Documentationsweetgiorni1-0/+10
Added API documentation for GetShutdownMessage. Style fix in Root.cpp
2017-01-01Debuggers: PluginStats are now output only on request. (#3513)Mattes D2-51/+21
The stats are no longer output on plugin startup, instead there is a new console command "pluginstats" for that.
2016-12-30Added 1.11 blocks, items and recipes (#3500)mathiascode3-22/+353
2016-12-25Refactored to put URL Encoding / Decoding in a single place. (#3491)Mattes D2-1/+40
2016-12-19Updated links and docs (#3488)mathiascode12-22/+24
2016-12-18Reverted temporary redirect to LuaAPI docs (#3487)Mattes D1-1/+1
2016-12-17Updated ProtectionAreas.Mattes D1-0/+0
2016-12-15APIDump: Load the official undocumented from alternate location.Mattes D1-1/+1
This fixes the CI builds until the apidocs.cuberite.org subdomain gets functional again.
2016-12-15APIDump: Make "apicheck" errors stand out in the log.Mattes D1-2/+4
2016-12-15APIDump: Proper error messages on apicheck failures.Mattes D1-9/+15
2016-12-15Fixed and extended TestRails cubeset.Mattes D1-34/+43
2016-12-09Fix meta mirror (#3470)Mattes D2-0/+24
2016-12-04APIDesc: Fixed wrong cBlockArea parameter descriptions.Mattes D1-22/+22
2016-12-01Updated the prefabs.Mattes D6-667/+666
2016-11-26Debuggers: Added commands to investigate item's custom Lua properties.Mattes D3-2/+61
2016-11-26Debuggers: Added commands to investigate item's custom name.Mattes D2-1/+60
2016-11-26Debuggers: Added commands to investigate item's Lore.Mattes D2-0/+60
2016-11-26Debuggers: Sorted the Info.lua commands.Mattes D1-25/+25
2016-11-24Prefabs: Implemented support for ExpandFloorStrategy.Mattes D10-874/+877
2016-11-22Added API export for LuaCheck.Lukas Pioch1-0/+73
2016-11-16Updated the Core.Mattes D1-0/+0
2016-11-13Add Lua API export for titles. (#3408)mohe20151-0/+72
2016-11-12Added blocks and crafting recipesMathias2-6/+20
2016-11-10Updated Core.Mattes D1-0/+0
2016-11-06Anticheat fastbreak (#3411)mohe20151-0/+1818
Added block hardness checks when breaking blocks.
2016-10-27LuaJson: Report serialization errors instead of crashing.Mattes D2-125/+130
2016-10-25CI: API test defaults to failure, unless explicitly succeeded.Mattes D1-22/+21
This fixes problems with the CI build succeeding when the API description has a syntax error in it and the APIDump plugin won't even load.
2016-10-21Added SendMessageRaw for sending json string.Lukas Pioch1-0/+16
2016-10-17APIDump: Added missing syntax to cUrlClient (#3407)NiLSPACE1-145/+261
Added the simple single-callback versions of the methods.
2016-10-13APIDump: Fixed cWorld:QueueTask signature, moved to separate file. (#3400)Mattes D2-3346/+3363
2016-10-12Spectators added (#2852)bibo381-0/+28
2016-10-09cChunk::SetAlwaysTicked implies cChunk::stay (#3361)LogicParrot1-1/+1
2016-10-08Updated the Core plugin.Mattes D1-0/+0
2016-10-06APIDump: Fixed descriptions for cPluginManager:ForEachPlugin().Mattes D1-10/+30
2016-10-06APIDump: Fixed descriptions for cWorld:ChunkStay.Mattes D1-0/+2
2016-10-06Fixed cRankManager API docs.Mattes D2-587/+727
2016-10-03APIDump: Check param and return types.Mattes D4-59/+204
2016-10-02APIDump: Fixed description for schematic file loading.Mattes D1-0/+8
2016-10-01APIDesc: Reformatted ConstantGroups to match the enum names.Mattes D2-6/+6
2016-09-27APIDump: Fixed description for tolua functions.Mattes D1-0/+4
2016-09-25Fixed cCompositeChat's constructor LuaAPI bindings.Mattes D1-11/+133
The tolua-generated constructor would return an extra string value.
2016-09-22InfoReg: Don't fail if there are no commands to register.Mattes D1-2/+6
2016-09-22InfoDump: Trim description string before outputting to README.md.Mattes D1-47/+56
2016-09-19APIDump: Fixed descriptions for "array table of strings".Mattes D1-9/+6
2016-09-16APIDump: Replaced "callback" type with "function".Mattes D1-3/+3
2016-09-16InfoReg: Fixed cPluginManager usage.Mattes D1-17/+17
2016-09-15APIDesc: Fixed modifiers for sqlite3 functions.Mattes D1-0/+8
2016-09-14APIDesc: Fixed some leftover "<unknown>" types.Mattes D2-67/+71
2016-09-12APIDump: Reformatted the docs to include type information.Mattes D9-2427/+23359
Also fixed a bit of documentation in the CPP source.
2016-09-09APIDump: Support structured parameter info.Mattes D2-41/+140
Ref.: GH#3375
2016-09-08APIDump: Removed trailing whitespace.Mattes D3-27/+27
2016-09-07remove hopper from dropper's recipe (#3374)hangyas1-1/+1
2016-09-06APIDoc: Allow to create a link to an object. (#3371)Mattes D1-3/+8
2016-09-05APIDump: Fixed documentation for cPluginManager:GetPluginsPath().Mattes D1-1/+1
2016-09-03Configurable dirty unused chunk cap to avoid RAM overuse (#3359)LogicParrot1-0/+1
Configurable dirty unused chunk cap to avoid RAM overuse
2016-08-23cUrlClient: Exported to Lua API.Mattes D3-2/+265
2016-08-18Removed Decoda project files, no longer used. (#3320)Mattes D3-180/+0
2016-08-15Added cWorld:SetSpawn() API and Lua binding (#3316)ElNounch1-0/+1
2016-08-14Typo in IniFile:GetNumKeys() code sample (#3317)ElNounch1-2/+2
2016-08-10Updated Core.Alexander Harkness1-0/+0
2016-08-10Fixed NetherBrick recipes (#3306)jammet1-4/+4
Again.
2016-08-07Canonical tag (#3300)Mathias7-0/+7
Added a canonical tag to the API docs, which should prevent duplicate pages on search engines Changed the newsletter link
2016-07-29Added additional examples to the documentation for HOOK_BLOCK_SPREAD. (#3277)Alexander Harkness1-4/+20
Fixes issue #3274
2016-07-21Dropped 1.7 support (#3253)Mathias1-1/+1
2016-07-20Added newsletter, HTTPS links.Alexander Harkness1-2/+5
2016-07-20Added Robert Cringely to BACKERSAlexander Harkness1-0/+1
2016-07-18APIDump: Added explicit IsStatic flag to static functions.Mattes D6-106/+110
2016-07-18Updated API documentation.Mattes D5-113/+339
2016-07-18APIDump: Changed not to use globals, added more doxycomments.Mattes D2-42/+64
2016-07-12Changed Hopper to wtHopper and adjusted .gitignore.Lukas Pioch1-1/+1
2016-07-10Fixed Lua Json serializing a bool.Mattes D1-4/+6
Fixes #3257.
2016-06-27Changed world tasks to use cLuaState::cCallback.Mattes D1-2/+2
2016-06-27Removed cWebPlugin, WebAdmin uses cLuaState::cCallback.Mattes D3-24/+53
2016-06-23Added ltdTM to BACKERSAlexander Harkness1-0/+1
2016-06-15- Add a activation flag to droppers and dispensers. Previously droppers and dispensers shot items with every block update.QUSpilPrgm1-0/+8
- Fixes a range check inside cIncrementalRedstoneSimulator::Simulate
2016-06-10Normalized Vector3 API to use the same capitalization as all else.Mattes D1-1/+15
2016-06-05Bindings: Fixed cBoundingBox API.Mattes D3-1/+66
2016-06-03Update Dispensers and let them act more like in VanillaQUSpilPrgm1-3/+5
- Added code to make bonemeal, potions, minecarts, XP bottles and boats work inside dispensers - Dispensers are now able to place TNT if the block is transparent but not air - Added return value that indicates the success of pumpkin, melon, sugarcane and cactus growing functions - Changed return value of "GrowRipePlant" so that it actually indicates if the block was able to grow - Fixed "GrowSugarcane" and "GrowCactus" in "GrowRipePlant" so that it only grows them a single block
2016-06-02Debuggers: Added the forgotten Inject.lua file.Mattes D1-0/+57
This works as a test for inter-plugin calls, the "testcall" command injects this file into the Core plugin.
2016-05-31LuaState: Inter-plugin calls now support simple tables. (#3220)Mattes D3-1/+64
2016-05-29Added GetTeamNames to cScoreboard (#3217)PlasmaPower3-0/+20
Resolves #3210
2016-05-29Fixed remaining issue from #3199 (#3207)Alexander Harkness1-0/+2
Added an alias for oak boats as oakboat, as the other boats have.
2016-05-24Fixed wooden slabs only burning for 15 ticks. (#3212)Samantha Neubeck1-1/+1
2016-05-21Add JimSVMI83 to backers file.Alexander Harkness1-0/+1
2016-05-20Some 1.9 Crafting Recipes and Items. (#3199)Alexander Harkness3-140/+224
2016-05-16Added Utking to backers file.Alexander Harkness1-0/+1
2016-05-15Added "Chissled Stone Bricks" recipe (#3192)LogicParrot1-0/+1
2016-05-141.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu224-0/+65
* 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-04-30Updated the Core submodule (#3172)LogicParrot1-0/+0
2016-04-05Improved player freeze codeLogicParrot1-1/+0
2016-03-30MoveToWorld defaults to spawnpointLogicParrot1-3/+3
2016-03-29Bed's world is now savedLogicParrot1-1/+1
2016-03-28Updated icons and logoMathias4-4/+2
2016-03-25Added donator to listMathias1-0/+1
2016-03-21Revert "Lua callback"Mattes D4-55/+26
2016-03-17Changed world tasks to use cLuaState::cCallback.Mattes D1-2/+2
2016-03-17Removed cWebPlugin, WebAdmin uses cLuaState::cCallback.Mattes D3-24/+53
2016-03-14Fixed melon block recipeMathias1-1/+1
2016-02-19Proper entity destruction in non-ticking chunksLogicParrot1-2/+3
2016-02-08remove cWorld::createAndInitializeWorldLogicParrot1-1/+0
2016-02-02Minor updateMathias6-140/+11
2016-01-31Updated old forum linksMathias5-15/+15
2016-01-29MCServer to CuberiteMathias3-4/+4
2016-01-28Front-end updateMathias2-16/+12
2016-01-24LuaTcpSsl: Disabled cert verification due to missing CA chain.Mattes D1-2/+2
2016-01-22Improved tamed wolf pack cooperation and projectile reactionsLogicParrot1-1/+1
2016-01-17Alphabetically sorted configuration filesLogicParrot4-404/+404
2016-01-17Update crafting.txtjammet1-0/+1
Added Mossy Cobblestone recipe
2016-01-12Exported GetSeed to lua and added file extension opendb to .gitignore.Lukas Pioch1-0/+1
2016-01-11Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8bibo381-2/+5
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-02Fix typo (ammount)Arnaud Meuret1-1/+1
2016-01-01Updated plugins with the rename to Cuberite.Mattes D3-0/+0
2016-01-01Renamed leftover strings to Cuberite / Server, as needed.Mattes D15-35/+33
Also upgraded the user setting file for MSVC to 2013.
2015-12-28Debuggers plugin: Added "uuid" console command.Mattes D2-0/+37
2015-12-26fix crafting recipe for snow layersGargaj1-1/+1
2015-12-26Added analytics to APIDumpAlexander Harkness8-57/+6780
2015-12-25Added the cUrlParser class, exported to Lua API.Mattes D3-1/+91
2015-12-25Freeze player until chunk is loadedSafwat Halaby1-0/+4
2015-12-24Added a Json parser and serializer to Lua API.Mattes D3-48/+140
2015-12-22Added 1.7 item namesMathias3-42/+412
2015-12-19Added HTTPS links wherever they are supported.Alexander Harkness3-21/+17
2015-12-18Revised the explosion-related Lua API and docs.Mattes D5-36/+28
Fixes #2746.
2015-12-13blockheight mechanismGargaj1-0/+1
2015-12-13allow use failures to propagate from the entity/block to the playerGargaj1-1/+2
2015-12-12Fixed a few crafting recipesMathias1-15/+19
2015-12-01Added PieceStructures generator.Mattes D10-235/+16126
2015-11-29Updated DumpInfo pluginNiLSPACE1-2/+2
2015-11-23change from single followable item to multipleGargaj1-0/+2
2015-11-23add Golden CarrotGargaj1-0/+1
Yay!
2015-11-03Changed server favicon to more commonly used oneJulian Laubstein1-0/+0
2015-11-03Implemented brewingLukas Pioch6-0/+335
2015-10-31Fixed typo that slipped through #2584Alexander Harkness1-1/+1
2015-10-31Fixed typo in description.Alexander Harkness1-1/+1
2015-10-31Implemented the FireResistence potion effects.bibo381-2/+3
This not only provides fire resistence, but also prevents blaze fireballs. See #2556
2015-10-27Updated Core and ProtectionAreasLukas Pioch2-0/+0
2015-10-21Debuggers: Added a plugin channel test with funny chars in data.Mattes D2-0/+17
2015-10-12Added missing hooks to cPluginManagerLukas Pioch1-0/+3
2015-10-11APIDump: Added a missing endline to the NewlyUndocumented output file.Mattes D1-0/+1
2015-10-09Added 'net sclient' command to NetworkTest plugin.Mattes D2-0/+60
2015-10-05Updated PlainsVillage prefabs.Mattes D1-94/+96
Some connectors had been off by one block.
2015-09-27APIDump: Added an apicheck command.Mattes D2-6/+100
This checks the current API for undocumented functions against the current list of official undocumented functions (http://apidocs.cuberite.org/_undocumented.lua) and reports any newly found ones. To be used in CI to check against newly introduced API functions without documentation.
2015-09-26Extended and fixed the cFile API.Mattes D3-9/+11
2015-09-14APIDump: Fixed ZBS integration filenames after project rename.Mattes D2-6/+6
2015-09-07Added gallery web previews to ignore list.Mattes D1-0/+2
2015-09-05Renamed output directory to ServerMattes D153-0/+35759