summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/APIDump/APIDesc.lua (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-11-06Ender Crytal Fix and report proper cmake file for luabindingscheck fail (#5017)12xx121-12/+85
* fixed network fixed explosion fixed ticking added network broadcast to Setter method added nullptr protection using macros in 1.10 Protocol_1_10.cpp revealed functions to LUA API small fixups, typos, less functions used fixed more doc readded info that saving is done only if the beam is displayed made the constructor transfer all needed members fixed wrong commit removed default parameters on SpawnEnderCrystal fixed wrong metadata moved call to destroy in the right place fixed some typos Fixed Ender Crystal * fixed documentation * fixed doc and added proper error message * Parameters, arrows * Parameters Co-authored-by: 12xx12 <12xx12100@gmail.com> Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
2020-10-29Add beam target, configurable base visibility to Ender Crystals (#5010)12xx121-1/+1
* Fixes #4990 Co-authored-by: 12xx12 <12xx12100@gmail.com>
2020-10-13Added missing return types and fixed param types (#4996)Lukas Pioch1-3/+15
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-01Add SetBlockMeta warning in documentation (#4943)[IPSA] Chris de Claverie1-2/+3
+ Add SetBlockMeta warning in documentation Co-authored-by: pwnOrbitals <c.de-claverie@pm.me>
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-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-07-14Introduce recipe book functionality (#4493)Tobias Wilken1-0/+34
* 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-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-18Add API documentation for repeater metadata constantsTiger Wang1-0/+20
2020-04-18Extended Vector3 (#4666)Mattes D1-28/+56
2020-04-10API docs: Fixed eMonsterType relocation.Mattes D1-129/+133
2020-04-10Add Zombie VillagersBond-0091-0/+5
2020-04-04Implement wither skeletons (#4563)Mat1-0/+13
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-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-30Lua API for spectating entities (#4518)Mat1-0/+11
2020-03-24Send respawn packet by default (#4540)Mat1-1/+1
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
2019-10-28Moved growing from cWorld / cChunk to cBlockHandler descendants.Mattes D1-0/+1
2019-10-16Refactored block-to-pickup conversion. (#4417)Mattes D1-1/+12
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 Arkhan1-0/+21
* 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-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-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-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
2017-12-26improve rain simulation (#4017)Alexander Harkness1-8/+26
* 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-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 Kolbly1-1/+24
* 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 Kolbly1-0/+11
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 Pioch1-82/+28
2017-08-30Added ShouldSendRespawn parameter to ScheduleMoveToWorld (#3979)Lane Kolbly1-1/+6
2017-08-29APIDump: Removed unneeded Globals prefixLukas Pioch1-11/+11
2017-08-27Implement Forge protocol handshake support (#3869)satoshinm1-0/+54
2017-08-25Add cUUID class (#3871)peterbell101-14/+142
2017-08-24Minor changes (#3909)mathiascode1-8/+8
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 Kolbly1-1/+31
2017-08-07cBlockInfo: Deprecate place soundpeterbell101-11/+1
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-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 Kolbly1-0/+42
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-06-30Added 1.12 blocks (#3760)Bond-0091-0/+200
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-24cBlockArea supports block entities. (#3795)Mattes D1-1934/+2
2017-06-11APIDoc: Corrected param in cBoat:MaterialToStringLukas Pioch1-2/+2
2017-05-27Add rank prefix and suffix to player name in chat (#3730)Heiko Hund1-0/+20
Fixes issue #1721
2017-05-24Exported boatLukas Pioch1-0/+143
- 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-09Exported cFallingBlock and cExpOrb (#3700)Lukas Pioch1-1/+88
2017-05-02APIDoc: Removed non-existent functions and added missing return typesLukas Pioch1-60/+12
2017-04-07APIDoc: Corrected a few linksLukas Pioch1-3/+3
2017-04-05API: Removed function GetChar (#3664)Lukas Pioch1-21/+0
2017-04-05APIDoc: Added missing IsStatic flags and corrected param types.Lukas Pioch1-0/+4
2017-04-04APIDoc: Documented missing functions and variables. (#3634)Lukas Pioch1-2/+155
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 Pioch1-0/+5
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)mathiascode1-1/+201
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
2016-12-25Refactored to put URL Encoding / Decoding in a single place. (#3491)Mattes D1-0/+38
2016-12-19Updated links and docs (#3488)mathiascode1-1/+1
2016-12-04APIDesc: Fixed wrong cBlockArea parameter descriptions.Mattes D1-22/+22
2016-11-26Debuggers: Added commands to investigate item's custom Lua properties.Mattes D1-2/+2
2016-11-13Add Lua API export for titles. (#3408)mohe20151-0/+72
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 D1-1/+1
2016-10-21Added SendMessageRaw for sending json string.Lukas Pioch1-0/+16
2016-10-13APIDump: Fixed cWorld:QueueTask signature, moved to separate file. (#3400)Mattes D1-3346/+0
2016-10-12Spectators added (#2852)bibo381-0/+28
2016-10-09cChunk::SetAlwaysTicked implies cChunk::stay (#3361)LogicParrot1-1/+1
2016-10-06APIDump: Fixed descriptions for cWorld:ChunkStay.Mattes D1-0/+2
2016-10-06Fixed cRankManager API docs.Mattes D1-587/+2
2016-10-03APIDump: Check param and return types.Mattes D1-18/+48
2016-10-02APIDump: Fixed description for schematic file loading.Mattes D1-0/+8
2016-10-01APIDesc: Reformatted ConstantGroups to match the enum names.Mattes D1-4/+4
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-19APIDump: Fixed descriptions for "array table of strings".Mattes D1-9/+6
2016-09-15APIDesc: Fixed modifiers for sqlite3 functions.Mattes D1-0/+8
2016-09-14APIDesc: Fixed some leftover "<unknown>" types.Mattes D1-65/+69
2016-09-12APIDump: Reformatted the docs to include type information.Mattes D1-1661/+17673
Also fixed a bit of documentation in the CPP source.
2016-09-08APIDump: Removed trailing whitespace.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-15Added cWorld:SetSpawn() API and Lua binding (#3316)ElNounch1-0/+1
2016-08-14Typo in IniFile:GetNumKeys() code sample (#3317)ElNounch1-2/+2
2016-07-18APIDump: Added explicit IsStatic flag to static functions.Mattes D1-77/+77
2016-07-18Updated API documentation.Mattes D1-59/+141
2016-07-18APIDump: Changed not to use globals, added more doxycomments.Mattes D1-1/+1
2016-07-12Changed Hopper to wtHopper and adjusted .gitignore.Lukas Pioch1-1/+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-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-05-29Added GetTeamNames to cScoreboard (#3217)PlasmaPower1-0/+1
Resolves #3210
2016-05-141.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135)Pokechu221-0/+30
* 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-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-02-19Proper entity destruction in non-ticking chunksLogicParrot1-2/+3
2016-02-08remove cWorld::createAndInitializeWorldLogicParrot1-1/+0
2016-01-29MCServer to CuberiteMathias1-1/+1
2016-01-12Exported GetSeed to lua and added file extension opendb to .gitignore.Lukas Pioch1-0/+1
2016-01-02Fix typo (ammount)Arnaud Meuret1-1/+1
2015-12-25Added the cUrlParser class, exported to Lua API.Mattes D1-1/+44
2015-12-25Freeze player until chunk is loadedSafwat Halaby1-0/+4
2015-12-24Added a Json parser and serializer to Lua API.Mattes D1-47/+105
2015-12-18Revised the explosion-related Lua API and docs.Mattes D1-1/+14
Fixes #2746.
2015-12-13blockheight mechanismGargaj1-0/+1
2015-11-23change from single followable item to multipleGargaj1-0/+2
2015-11-03Implemented brewingLukas Pioch1-0/+3
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-09-27APIDump: Added an apicheck command.Mattes D1-0/+1
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 D1-4/+8
2015-09-05Renamed output directory to ServerMattes D1-0/+0
2015-08-13Fixed a few missing MCServers in APIDumpJulian Laubstein1-6/+6
2015-08-11Updated APIDump to follow the namechangeJulian Laubstein1-18/+18
2015-07-16Spawn baby mobshallucino1-1/+4
2015-06-28Added a size check for portals.STRWarrior1-0/+8
Made the portal size configurable Alpha-sorted SetXYZNetherPortalXYZ functions
2015-06-13Added documentation for HOOK_KILLEDNounours Heureux1-1/+1
2015-06-13Added HOOK_KILLEDNounours Heureux1-1/+1
2015-06-08cBlockArea: Added CountSpecificBlocks() API function.Mattes D1-0/+5
2015-06-05Added Build info to the cRoot API.Mattes D1-3/+7
2015-06-03Added SendSystemMessage / SendAboveActionBarMessage to the docsjan641-0/+2
Updated parameters passed to HOOK_KILLING
2015-05-26Added method to get the uptime of the server in seconds. Implements #1650.Lukas Pioch1-32/+29
2015-05-08Fixed syntax errorAlexander Harkness1-0/+1
2015-05-06Properly fix the docs for FindAndDoWithPlayer.Alexander Harkness1-3/+3
Removed F accidentially added. Made the two FindAndDoWithPlayers documentation consistent.
2015-05-06Added info about case-sensitivity of FindAndDoWithPlayerAlexander Harkness1-4/+3
2015-04-30Added cBlockArea:CountNonAirBlocks API function.Mattes D1-0/+1
2015-04-30APIDump: Added documentation for cBlockArea:GetNonAirCropRelCoords.Mattes D1-0/+1
2015-04-29Added cBlockArea::msSimpleCompare merge strategy.Mattes D1-8/+41
2015-04-23Refactored ManualBindings' callbacks using templates.Mattes D1-26/+26
This is a bit easier to read, has better error reporting and fixes a few subtle bugs. Fixes #1889.
2015-04-21Added URL member to the HTTPRequest API class.Mattes D1-42/+0
2015-04-19Split the plugin names and plugin folders to avoid confusing them.Mattes D1-151/+0
Ref.: http://forum.mc-server.org/showthread.php?tid=1877
2015-04-13Removed HOOK_MAX and HOOK_NUM_HOOKS from Lua API.Mattes D1-2/+0
2015-04-11cFile:ChangeFileExt now accepts extensions with leading dot, too.Mattes D1-2/+2
2015-04-11Added more cFile API functions.Mattes D1-0/+3
GetLastModificationTime, GetPathSeparator() and GetExecutableExt()
2015-04-06Added cFile:ChangeFileExt() function.Mattes D1-0/+1
2015-03-21APIDump: Linkified eShrapnelLevel.Mattes D1-2/+2
2015-03-21APIDump: Used suggestionsSTRWarrior1-8/+8
2015-03-21APIDump: Improved documentation of cWorld:GetTNTShrapnelLevelSTRWarrior1-3/+3
Fixed APIDump loading
2015-03-21APIDump: Gave shrapnellevel it's own constantgroupSTRWarrior1-0/+7
2015-03-21APIDump: Fixed typo in cWorld:BroadcastEntityAnimation documentationSTRWarrior1-1/+1
2015-03-21APIDump: Improved cWorld:GetMaxViewDistance documentationSTRWarrior1-1/+1
2015-03-21APIDump: Improved cBlockArea.msDifference documentationSTRWarrior1-1/+1
2015-03-21APIDump: Documented function in cChunkDescSTRWarrior1-0/+1
2015-03-21APIDump: Documented functions & Variables in cBlockInfoSTRWarrior1-0/+4
2015-03-21APIDump: Documented missing constant in cBlockAreaSTRWarrior1-0/+1
2015-03-21APIDump: Documented all undocumented functions in cWorldSTRWarrior1-1/+23
2015-03-19APIDump: Removed the tolua.cast() example.Mattes D1-26/+3
The example was all wrong and the function is normally not needed at all (#1789). Fixes #1787
2015-03-11Fixes #493 and #490flx51-0/+1
2015-03-05Added description to APIDump for OnEntityTeleportjoshi071-2/+2
2015-02-23Added documentation for CompressStringZLIBSTRWarrior1-1/+1
There was no info about the factor.
2015-02-23Documented cStringCompressionSTRWarrior1-2/+21
2015-02-22Documented CompressString and UncompressStringSTRWarrior1-0/+2
2015-02-21Added cCryptoHash namespace to Lua API.Mattes D1-1/+23
2015-02-07Updated IsOnGround() documentationHowaner1-1/+1
2014-12-24APIDump: Updated the player block placement documentation.Mattes D1-0/+2
The hooks now have fewer parameters but are called on all player-placed blocks (#1618).
2014-12-13Made comment in example code smallerSTRWarrior1-1/+3
It caused the whole page to extend beyond the max width
2014-12-01MobSpawner fixes.Howaner1-1/+1
2014-11-29Removed old MobType category.Howaner1-8/+1
2014-11-29Mark StringToMobType() as deprecated. Use cMonster:StringToMobType() insteadHowaner1-1/+1
2014-11-29Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes.Howaner1-6/+14
2014-11-15Use LastPlacedSign instead of LastPlacedBlock.Howaner1-1/+0
2014-11-15Updated APIDumpHowaner1-2/+3
2014-11-15Renamed GetSettedViewDistance() to GetRequestedViewDistance()Howaner1-1/+1
2014-11-14APIDump: Fixed example cCompositeChat URLHowaner1-1/+1
2014-11-14Updated APIDumpHowaner1-0/+1
2014-11-05renamed FindAndDoWithUUID to DoWithPlayerByUUID, fixed style and comments, added description to APIDumpLukas Pioch1-0/+2
2014-10-05cClientHandle: Added protocol version knowledge.Mattes D1-0/+1
2014-10-01APIDump: Fixed cEntity documentation.madmaxoft1-5/+23
2014-10-01APIDump: Added more of the missing documentation.madmaxoft1-5/+22
2014-10-01Unified cRoot broadcast chat documentation.madmaxoft1-7/+14
2014-10-01APIDump: Documented missing cIniFile function.madmaxoft1-0/+1
2014-10-01APIDump: Documented missing cCompositeChat functions.madmaxoft1-4/+6
2014-10-01APIDump: Added missing cClientHandle documentation.madmaxoft1-0/+3
2014-09-29RankMgr: GetAllPlayers() returns players sorted by name.madmaxoft1-1/+1
2014-09-29Fixed a typo in the description.madmaxoft1-1/+1
2014-09-28cRankManager: Added ClearPlayerRanks()Howaner1-0/+1
2014-09-28Updated api documentation.Howaner1-0/+2
2014-09-27Fixed typo again.Alexander Harkness1-1/+1
2014-09-27Typo fix.Alexander Harkness1-1/+1
2014-09-27Remaining part of fix.Alexander Harkness1-0/+1
2014-09-12APIDump: Improved command binding documentation.madmaxoft1-4/+4
2014-09-07Exported cClientHandle:GetIPString() to Lua API.Mattes D1-0/+1
2014-09-03Exported ForEachEntityInBox() to Lua API.madmaxoft1-0/+1
2014-09-02Changed the IsEnchantable() comment again.Howaner1-2/+1
2014-09-02Renamed SetWalkSpeed() to SetRelativeWalkSpeed()Howaner1-2/+2
2014-09-02Added the new functions to APIDump.Howaner1-0/+9
2014-09-01Fixed ReplaceString() documentation.Howaner1-1/+1
2014-08-30Changed the IsEnchantable() comment.Howaner1-1/+1
2014-08-30Added GetWalkSpeed() and SetWalkSpeed() documentation.Howaner1-0/+2
2014-08-28APIDump: Added missing cItem things.Hownaer1-3/+8
2014-08-28Fixed ItemCategory code example.Hownaer1-2/+2
2014-08-24RankMgr: Exported the default-rank functions.Mattes D1-6/+14
2014-08-21RankMgr: Added cRankManager::RemovePlayerRank().Mattes D1-0/+1
2014-08-21APIDump: Removed the cGroup and cGroupManager classes.Mattes D1-25/+2
2014-08-20Exported cServer:ShouldAuthenticate to Lua API.Mattes D1-1/+2
2014-08-20APIDump: Added cRankManager documentation.Mattes D1-0/+56
2014-08-05Added api documentation for Clamp()Howaner1-2/+3
2014-08-03cMojangAPI: Added UUID-to-Name lookup.madmaxoft1-9/+8
Also fixed the bindings, now all functions are static-like.
2014-08-03Added cMojangAPI:GetUUIDFromPlayerName().madmaxoft1-0/+1
This is a simpler way to ask for a single name -> uuid conversion.
2014-07-31MojangAPI: Added a UseCachedOnly param to GetUUIDsFromPlayerNames().madmaxoft1-1/+1
2014-07-30Added beacon documentation.Howaner1-0/+1
2014-07-30APIDump: Added notes about cache to cMojangAPI.madmaxoft1-1/+7
2014-07-30APIDump: Fixed UUID-related documentation.madmaxoft1-2/+2
2014-07-30Exported cMojangAPI to Lua.madmaxoft1-1/+26
2014-07-28Added cClientHandle:GetUUIDsFromPlayerNames() to Lua API.madmaxoft1-0/+1
2014-07-18APIDump: Documented RemoveItem().madmaxoft1-0/+2
2014-07-10APIDump: Documented cWorld:SetChunkAlwaysTicked.madmaxoft1-0/+1
Ref.: #1160
2014-07-04Removed useless sentence in cPluginManager:ExecuteCommand description.STRWarrior1-1/+1
2014-07-04Fixed ExecuteCommand description.STRWarrior1-1/+1
2014-06-21Added cClientHandle::IsUUIDOnline function.madmaxoft1-0/+3
Ref.: #771
2014-06-18(Force)ExecuteCommand returns the CommandResult enumsSTRWarrior1-2/+17
Exported and documented the CommandResult enums
2014-06-17Pawn: renamed HandleEntityEffects to HandleEntityEffectarchshift1-0/+3
Exported entity effect functions for ToLua and documented them in APIDesc.lua
2014-06-13APIDump: Added the Info.lua article.madmaxoft1-0/+1
Fixes #504.
2014-06-11Update APIDesc.luaAlexander Harkness1-0/+1
2014-06-11APIDump: Documented cBlockArea:GetCoordRange().madmaxoft1-1/+2
2014-06-11Update APIDesc.luaTiger Wang1-3/+6
2014-06-08Small change for easier understanding.Alexander Harkness1-1/+1
2014-04-23Updated docs for StringToEnchantmentID.madmaxoft1-1/+1
Ref.: mc-server/Core#67
2014-04-19APIDump: Added a ChunkStay article.madmaxoft1-3/+4
Fixes #772.
2014-04-06Updated cWorld::CreateProjectile() documentationTiger Wang1-1/+1
2014-04-05Added more API documentation to cCompositeChat.madmaxoft1-1/+17
2014-04-03APIDump: Added angular specifics.madmaxoft1-2/+2
2014-04-03Documented the units and range for entity rotations.madmaxoft1-3/+3
2014-04-01APIDump: Gave msDifference it's own table.STRWarrior1-9/+21
2014-04-01cBlockArea: Added the msMask merge strategy.madmaxoft1-3/+20
2014-04-01LOG() API reads the LogLevel from the cCompositeChat's MessageType.madmaxoft1-2/+2
2014-03-31APIDump: Documented the cCompositeChat support in logging functions.madmaxoft1-5/+25
2014-03-31Added extra table which should make it more clear what msDifference does.STRWarrior1-1/+3
2014-03-31Fixed typoSTRWarrior1-1/+1
2014-03-31Documented msDifferenceSTRWarrior1-6/+8
2014-03-30APIDump: Added article: Setting up ZeroBrane Studio.madmaxoft1-0/+1
Fixes #824.
2014-03-28Implemented the msSpongePrint merge strategy.madmaxoft1-4/+20
Similar to msImprint, but allows prefabs to carve out air pockets, too. The sponge block is used as the NOP block.
2014-03-27Change documentation textHowaner1-2/+2
2014-03-27Change SpreadSource documentationHowaner1-1/+1
2014-03-27Add documentation for new Block spreadHowaner1-0/+9
2014-03-20Plugins can set flying speed.madmaxoft1-3/+5
2014-03-20APIDump: Fixed wrong escaped strings.madmaxoft1-5/+5
2014-03-20Rewritten player speeds to be relative unit-less.madmaxoft1-5/+5
Value of 1 means "default speed", 2 means "double the speed", 0.5 means "half the speed". This allows for easier plugins and is more future-proof.
2014-03-14cPluginManager:Bind[Console]Command returns true on success.madmaxoft1-4/+4
Fixes #801.
2014-03-11APIDump: Removed old documentation, documented some new functions.madmaxoft1-6/+15
2014-03-12APIDump: Updated WEOffset-related docs.madmaxoft1-7/+7
2014-03-11Fixed APIDumpSTRWarrior1-1/+1
2014-03-11Documented the functions.STRWarrior1-0/+6
2014-03-08Change tnt documentation to ticksHowaner1-3/+3
2014-03-08Add new tnt documentationHowaner1-2/+3
2014-03-07Fixed cBlockArea schematic string saving signature.madmaxoft1-1/+1
2014-03-07Link cItem in the documentationHowaner1-1/+1
2014-03-07Add missing documentation filesHowaner1-0/+2
2014-03-07APIDump: Documented cBlockArea string-serialization functions.madmaxoft1-0/+2
2014-03-05APIDump: Documented the cCompositeChat class.madmaxoft1-0/+52
2014-03-05APIDump: Ignoring classes by exact match.madmaxoft1-10/+10
"cCompositeChat" was ignored because it matched "os".
2014-03-02GetById => Getandrew1-10/+10
2014-03-02APIDump: ID -> Typeandrew1-10/+10
2014-03-02Exported cBlockInfoandrew1-0/+32
2014-03-01APIDump: Fixed cScoreboard enumsandrew1-17/+17
2014-03-01Exported cScoreboard::ForEachTeamandrew1-0/+1
2014-03-01Exported cScoreboard::ForEachObjectiveandrew1-0/+1
2014-03-01Exported and documented cScoreboardandrew1-0/+90
2014-03-01APIDump: Documented cRoot:CreateAndInitializeWorld.STRWarrior1-0/+1
2014-02-26APIDump: Separated out Geometry-related classes to their own file.madmaxoft1-301/+0
2014-02-24Added useful parameter overloads to cBlockArea Lua API.madmaxoft1-6/+31
2014-02-23APIDump: Fixed cBlockArea:GetRelBlockType() return types.madmaxoft1-1/+1
2014-02-23Documented cBlockArea:GetOrigin(), :GetSize() and :GetVolume().madmaxoft1-0/+3
2014-02-23Maps: Improvementsandrew1-2/+2
2014-02-23Manually exported DoWithMapandrew1-1/+1
2014-02-23Documented and exported cMapManagerandrew1-0/+14
2014-02-22Documented and exported cMapandrew1-0/+49
2014-02-20APIDump: Documented cClientHandle:HasPluginChannel.madmaxoft1-0/+1
2014-02-20APIDump: Fixed cBlockArea:GetRelBlockType() return types.madmaxoft1-1/+1
2014-02-18APIDump: Documented missing cWorld functions.madmaxoft1-0/+8
2014-02-18Properly exported and documented paintingsTiger Wang1-0/+18
2014-02-17Documented the cPluginManager:GetPluginsPath() API function.madmaxoft1-0/+1
2014-02-15Documented BroadcastParticleEffectSTRWarrior1-0/+1
2014-02-13Fixed formatting issue in APIDesc.luanarroo1-1/+1
2014-02-12Fixed location of QueueUnloadUnusedChunks entry in APIDesc dump. Now is lexographically listed in cWorld, not cRoot.narroo1-2/+2
2014-02-11Alpha-Sorted List.narroo1-1/+1
2014-02-11Updated APIDesc.lua to replace 'UnloadUnusedChunks' with 'QueueUnloadUnusedChunks'.narroo1-1/+1
2014-02-11APIDump: Documented cWorld:ChunkStay().madmaxoft1-0/+1
2014-02-07Removed some unexported documentation.Tiger Wang1-11/+5
2014-02-07Improved chat messaging functionsTiger Wang1-3/+24
* Moved string manipulation into cClientHandle and therefore... + Added configuration option for prefixes. * Cleaned up code. * Updated documentation for API.
2014-02-05Added cPluginManager:LogStackTrace() to the Lua API.madmaxoft1-1/+2
Fixes #637.
2014-02-04Fixed indent from previous commits.madmaxoft1-1/+1
2014-02-04Fixed indentationtonibm191-1/+1
2014-02-04Blank lines and indentation.tonibm191-1/+0
Also removed GetClosestPlayer documentation
2014-02-03Added documentationtonibm191-1/+4
2014-01-29Documented cFloater.STRWarrior1-0/+14
2014-01-21Implemented cPluginManager:CallPlugin() API.madmaxoft1-1/+2
This function supersedes cPlugin:Call(), is safer to use in regards to multithreading and once again removes the need for the cPlugin class being exported at all.
2014-01-19APIDump: Added notes about objects across cWorld's task execution.madmaxoft1-2/+2
2014-01-19APIDump: Updated cWorld:ScheduleTask()'s description.madmaxoft1-1/+1
2014-01-17APIDump: Updated cPluginManager:GetAllPlugins().madmaxoft1-1/+1
2014-01-16Finished exporting cWorld:ScheduleTask() to Lua API.madmaxoft1-1/+1
2014-01-16Documented the SchedualeTask functionTycho1-0/+1
2014-01-15APIDump: Explicitly listed static cPlayer functions.madmaxoft1-2/+2
2014-01-13APIDump: Added missing bits of documentation.madmaxoft1-0/+15
The recent changes didn't document some of the new API functions.
2014-01-13APIDump: Documented the plugin messaging hook and function.madmaxoft1-0/+1
2014-01-11Documented the cIniFile:AddValue* functions.madmaxoft1-0/+4
Now the documentation really matches the implementation.
2014-01-05Fixed cPluginManager:AddHook() binding.madmaxoft1-1/+1
Fixes #401. Old formats are still accepted, for compatibility reasons.
2013-12-27APIDump: Added the SettingUpDecoda article.madmaxoft1-0/+1
This implements #383.
2013-12-27APIDump: Added the WritingPlugin article to the exported pages.madmaxoft1-0/+1
2013-12-24Removed documentation for cChatColour:MakeColor()Alexander Harkness1-7/+3
2013-12-16APIDump: Ignoring the multi-inheritance members.madmaxoft1-1/+10
We may get to documenting them one day, but for now they are unused anyway, so there's no point in documenting them. They are a by-product of multiple inheritance, re-introduced due to #422.
2013-12-15Documented ForceSetSpeed.STRWarrior1-0/+1
2013-12-15APIDump: Documented New functionsSTRWarrior1-0/+4
2013-12-14Documented cTNTEntity.STRWarrior1-0/+11
2013-12-07Documented SpawnFallingBlock()STRWarrior1-0/+1
2013-12-05APIDump: Documented the new cPluginManager:GetCurrentPlugin() function.madmaxoft1-1/+2
2013-11-26cWorld::SpawnExperienceOrb() now returns the entity ID of the spawned orb.STRWarrior1-1/+2
Documented etExpOrb.
2013-11-25Documented SpawnExperienceOrb in cWorldSTRWarrior1-0/+1
2013-11-24APIDump: Moved projectiles' documentation to a separate file.madmaxoft1-110/+1
2013-11-23APIDump: Removed unwanted functions.madmaxoft1-1/+2
2013-11-23APIDump: Reformatted the sqlite docs.madmaxoft1-4/+16
2013-11-23APIDump: The descriptions are read from multiple files.madmaxoft1-1682/+1
All the files in the Classes subfolder are read for class descriptions, and in the Hooks subfolder for the hook descriptions.
2013-11-23Documented sqlite functions. Used: http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#sqlite3_functionsSTRWarrior1-0/+18
2013-11-23APIDump: Added more constant groups.madmaxoft1-16/+115
Also fixed the parsing of the Include data in the constant groups, and added linkification to group texts.
2013-11-22APIDump: Added a few constant groups to the descriptions.madmaxoft1-92/+78
2013-11-22APIDump: Implemented constant groups.madmaxoft1-2/+60
Fix #289.
2013-11-22Added cFile:GetFolderContents().madmaxoft1-10/+11
Fix 162.
2013-11-22APIDump: Fixed cRoot's furnace query API.madmaxoft1-1/+3
2013-11-22APIDump: Documented new cRoot:GetFurnaceRecipe().madmaxoft1-2/+27
2013-11-21APIDump: Documented cPlayer XP-related functions.madmaxoft1-0/+8
2013-11-20APIDump: Documented cWorld:ForEachBlockEntityInChunk() and cWorld:DoWithBlockEntityAt().madmaxoft1-0/+2
2013-11-19APIDump: Documented Vector3i.madmaxoft1-5/+25
2013-11-17APIDump: Documented Vector3f.madmaxoft1-3/+33
2013-11-15APIDump: Documented lxp, the XML parser class.madmaxoft1-0/+106
2013-11-15APIDump: Small fixes and additions.madmaxoft1-1/+4
2013-11-15APIDump: Documented cSignEntity.madmaxoft1-7/+6
2013-11-15APIDump: Documented cNoteEntity.madmaxoft1-1/+20
2013-11-15APIDump: Documented the cJukeboxEntity.madmaxoft1-0/+16
2013-11-15APIDump: Documented cChunkDesc:GetBlockEntity().madmaxoft1-1/+37
2013-11-15cRoot::SaveAllChunks() doesn't wait for the save (deadlocks).madmaxoft1-1/+1
Rather, it only queues the save task onto each world's tick thread.
2013-11-15APIDump: Removed the BlockEntity constructors' docs.madmaxoft1-62/+24
2013-11-11APIDump: Documented Vector3d.madmaxoft1-8/+43
2013-11-09APIDump: Documented cServer:IsHardCore()madmaxoft1-0/+1
2013-11-09APIDump: Documented TakeDamageInfo.madmaxoft1-5/+29
2013-11-09APIDump: Documented the relevant tolua functions.madmaxoft1-2/+48
2013-11-05APIDump: Documented ItemCategory.madmaxoft1-0/+38
2013-10-31APIDump: Fixed HOOK_LOGIN short desc.madmaxoft1-1/+1
2013-10-28APIDump: Documented cWindow.madmaxoft1-21/+33
2013-10-28APIDump: Documented HTTPFormData and HTTPRequest.madmaxoft1-5/+39
2013-10-27APIDump: Documented cWorld.madmaxoft1-0/+1
2013-10-27APIDump: Documented cRoot.madmaxoft1-3/+12
2013-10-27APIDump: Documented cProjectileEntity.madmaxoft1-3/+21
2013-10-26APIDump: Documented cPickup.madmaxoft1-1/+2
2013-10-26APIDump: Documented cIniFile.madmaxoft1-81/+135
2013-10-24APIDump: Documented cMonster.madmaxoft1-3/+52
2013-10-24APIDump: Documented cEnchantments.madmaxoft1-4/+37
The constants are self-documenting, no need to describe them further.
2013-10-24APIDump: Documented cPickup.madmaxoft1-8/+10
2013-10-24APIDump: Documented cItemGrid and cPlayer.madmaxoft1-30/+75
2013-10-23APIDump: Added cChatColor constants.madmaxoft1-3/+23
They don't really need much documentation, so just ignoring them in the Undocumented output.
2013-10-23APIDump: Documented the cHopperEntity class.madmaxoft1-0/+22
2013-10-23APIDump: Linkified cEntity returns.madmaxoft1-4/+7
2013-10-20APIDump: Added link from cItem to the global ItemToString() et al.madmaxoft1-1/+5
2013-10-20APIDump: Fixed link in cPawn's desc.madmaxoft1-1/+1
2013-10-20APIDump: Various small fixes and additions.madmaxoft1-6/+53
2013-10-20APIDump: Fixed a few broken links.madmaxoft1-4/+4
2013-10-20APIDump: Added basic statistics about the docs.madmaxoft1-0/+2
2013-10-19APIDump: Added member-variable filtering.madmaxoft1-0/+5
2013-10-19Added a APIDump description for GetHTMLEscapedString.Alexander Harkness1-63/+66
2013-10-18APIDump: Added cIniFile additional info.madmaxoft1-0/+28
2013-10-18APIDump: Added example code to cItem.madmaxoft1-0/+32
2013-10-18APIDump: Documented cItem's variables.madmaxoft1-4/+11
2013-10-18APIDump: Added support for member variables.madmaxoft1-2/+7
2013-10-18APIDump: Split long code into functions.madmaxoft1-0/+2
2013-10-18APIDump: Ignore internal APIDump stuff.madmaxoft1-0/+2
2013-10-18APIDump: Documented HOOK_PLAYER_RIGHT_CLICKING_ENTITY.madmaxoft1-0/+20
2013-10-18APIDump: Documented HOOK_PLAYER_SHOOTING.madmaxoft1-0/+25
2013-10-18APIDump: Documented HOOK_PLAYER_SPAWNED.madmaxoft1-0/+25
2013-10-18APIDump: Documented HOOK_PLAYER_TOSSING_ITEM.madmaxoft1-0/+23
2013-10-17APIDump: Documented HOOK_PLAYER_USED_BLOCK.madmaxoft1-0/+39
2013-10-17APIDump: Documented HOOK_PLAYER_USED_ITEM.madmaxoft1-0/+39
2013-10-17APIDump: Documented HOOK_PLAYER_USING_BLOCK.madmaxoft1-2/+45
2013-10-17APIDump: Documented HOOK_PLAYER_USING_ITEM.madmaxoft1-0/+36
2013-10-17APIDump: Documented HOOK_UPDATED_SIGN.madmaxoft1-0/+30
2013-10-17APIDump: Documented HOOK_TICK.madmaxoft1-0/+22
2013-10-17APIDump: Documented HOOK_TAKE_DAMAGE.madmaxoft1-0/+24
2013-10-17APIDump: Documented HOOK_UPDATING_SIGN.madmaxoft1-0/+50
2013-10-16APIDump: Documented HOOK_WEATHER_CHANGED.madmaxoft1-0/+21
2013-10-16APIDump: Documented HOOK_WEATHER_CHANGING.madmaxoft1-0/+24
2013-10-16APIDump: Documented HOOK_WORLD_TICK.madmaxoft1-0/+24
2013-10-15Added HOOK_PLAYER_RIGHT_CLICKAlexander Harkness1-8/+38
2013-10-15APIDump: Documented HOOK_SPAWNING_MONSTER.madmaxoft1-0/+26
2013-10-15APIDump: Documented HOOK_SPAWNING_ENTITY.madmaxoft1-2/+34
2013-10-15APIDump: Documented HOOK_SPAWNED_MONSTER.madmaxoft1-1/+21
2013-10-15APIDump: Documented HOOK_SPAWNED_ENTITY.madmaxoft1-0/+20
2013-10-15APIDump: Documented HOOK_PRE_CRAFTING.madmaxoft1-0/+30
2013-10-15APIDump: Documented HOOK_POST_CRAFTING.madmaxoft1-0/+29
2013-10-15APIDump: Documented HOOK_PLAYER_PLACING_BLOCK.madmaxoft1-0/+38
2013-10-15APIDump: Documented HOOK_PLAYER_MOVING and HOOK_PLAYER_PLACED_BLOCK.madmaxoft1-0/+53
2013-10-15APIDump: Documented HOOK_PLAYER_LEFT_CLICK.madmaxoft1-0/+40
2013-10-15APIDump: Documented HOOK_PLAYER_JOINED.madmaxoft1-0/+22
2013-10-15APIDump: Documented HOOK_PLAYER_EATING.madmaxoft1-0/+20
2013-10-15APIDump: Documented HOOK_PLAYER_BROKEN_BLOCK.madmaxoft1-2/+31
2013-10-15APIDump: Documented HOOK_PLAYER_BREAKING_BLOCK.madmaxoft1-0/+30
2013-10-14APIDump: Documented HOOK_PLAYER_ANIMATION.madmaxoft1-0/+21
2013-10-14APIDump: Documented HOOK_LOGIN.madmaxoft1-0/+25
2013-10-14APIDump: Documented HOOK_KILLING.madmaxoft1-0/+27
2013-10-14APIDump: Documented HOOK_HOPPER_PUSHING_ITEM.madmaxoft1-3/+28
2013-10-14APIDump: Documented HOOK_HOPPER_PULLING_ITEM.madmaxoft1-0/+23
2013-10-14APIDump: Documented HOOK_HANDSHAKE.madmaxoft1-0/+23
2013-10-14APIDump: Documented HOOK_EXPLODING.madmaxoft1-0/+44
2013-10-14APIDump: Documented HOOK_EXPLODED.madmaxoft1-0/+43
2013-10-14APIDump: Documented HOOK_EXECUTE_COMMAND.madmaxoft1-0/+25
2013-10-14APIDump: Documented HOOK_DISCONNECT.madmaxoft1-0/+26
2013-10-14APIDump: Fixed info missing from cCraftingRecipe.madmaxoft1-1/+1
2013-10-14APIDump: Documented HOOK_CRAFTING_NO_RECIPE.madmaxoft1-0/+26
2013-10-14APIDump: Documented HOOK_COLLECTING_PICKUP.madmaxoft1-0/+27
2013-10-14APIDump: Documented HOOK_CHUNK_UNLOADING.madmaxoft1-0/+23
2013-10-14APIDump: Documented HOOK_CHUNK_UNLOADED.madmaxoft1-0/+22
2013-10-14APIDump: Documented HOOK_CHUNK_GENERATING.madmaxoft1-1/+33
2013-10-14APIDump: Added example to HOOK_CHUNK_GENERATED.madmaxoft1-0/+37
2013-10-14APIDump: Documented HOOK_CHUNK_GENERATED.madmaxoft1-0/+26
2013-10-14APIDump: Documented HOOK_CHUNK_AVAILABLE.madmaxoft1-0/+21
2013-10-12APIDump: Added pretty-printing to code examples.madmaxoft1-27/+27
2013-10-12APIDump: Added an OnBlockToPickups() code example.madmaxoft1-0/+26
2013-10-12APIDump: Documented OnBlockToPickups.madmaxoft1-0/+30
2013-10-09APIDump: Implemented basic hook documentation.madmaxoft1-2/+32
2013-10-09APIDump: Documented the new cFile API functions.madmaxoft1-0/+24
2013-10-09APIDump: Added support for extra pages.madmaxoft1-0/+6
Referenced by file links and titles and copied directly from the plugin folder to the dest folder.
2013-10-05APIDump: Brought cItem docs up-to-date.madmaxoft1-5/+7
2013-10-04APIDump: Added cLineBlockTracer documentation.madmaxoft1-4/+86
2013-10-04APIDump: Documented cPluginSTRWarrior1-5/+9
2013-10-04APIDump: Added the cWorld:IsWeatherXXX() functions.madmaxoft1-1/+5
2013-10-02APIDump: Fixed operator == rename having bad DocID.madmaxoft1-2/+6
2013-09-29APIDump: Fixed overloaded functions' docs.madmaxoft1-18/+45
2013-09-29APIDump: Added more inheritance and linkification.madmaxoft1-4/+6
2013-09-29APIDump: Linkified cDropSpenser constants.madmaxoft1-2/+2
2013-09-29APIDump: Added the possibility to ignore classes. Ignoring Lua builtins.madmaxoft1-1/+13
2013-09-27APIDump: Updated cEntity docs.madmaxoft1-33/+115
2013-09-27APIDump: Documented cServerSTRWarrior1-1/+6
2013-09-26APIDump: Completed cCuboid docs.madmaxoft1-6/+28
2013-09-26APIDump: Completed cCraftingGrid's documentation.madmaxoft1-3/+8
2013-09-26APIDump: completed cChestEntity docs.madmaxoft1-1/+30
2013-09-25APIDump: Updated cBlockArea docs.madmaxoft1-0/+3
2013-09-25APIDump: Updated cChunkDesc docs.madmaxoft1-2/+25
2013-09-25APIDump: Updated cClientHandle documentationmadmaxoft1-5/+7
2013-09-24APIDump: Documented the cBoundingBox class.madmaxoft1-2/+35
2013-09-22APIDump: Forgot a function in globals.STRWarrior1-0/+1
2013-09-22APIDump: Documented the globals.STRWarrior1-0/+37
2013-09-19APIDump: Automatic corrections.madmaxoft1-83/+78
2013-09-18APIDump: Updated cPluginManager documentation.madmaxoft1-16/+88
2013-09-18APIDump: Small cRoot improvement.STRWarrior1-17/+17
2013-09-17Documented cRoot.STRWarrior1-0/+19
2013-09-16APIDump: Added callback examples to cWorld.madmaxoft1-0/+60
2013-09-16APIDump: All cWorld functions are documented.madmaxoft1-25/+44
2013-09-15APIDump: Next batch of cWorld documentation.madmaxoft1-35/+34
2013-09-15APIDump: Added a first part of cWorld documentation.madmaxoft1-2/+118
2013-09-14APIDump: Added most missing classes as empty templates.madmaxoft1-1/+93
2013-09-14APIDump: Removed most unexported-documented classes.madmaxoft1-232/+53
Also fixed most functions that were erroneously parsed as constants by the automatic wiki import.
2013-09-14APIDump: Fixed cLuaWindow documentation.madmaxoft1-62/+64
2013-09-14APIDump: Added cArrowEntity documentationmadmaxoft1-0/+29
2013-09-14APIDump: Added an example on how to fill in the documentation.madmaxoft1-8/+55
2013-09-14APIDump: Added support for additional info exported with each class.madmaxoft1-1/+77
2013-09-14APIDump: Added support for overloaded functions.madmaxoft1-8/+20
2013-09-14APIDump: Do not dump the g_APIDesc and APIDump's functions.madmaxoft1-3/+11
2013-09-14APIDump: Moved sorting after the renaming.madmaxoft1-0/+1
2013-09-14APIDump: Added special-function renaming (constructor, operators).madmaxoft1-0/+1
2013-09-14APIDump: Added more globally-ignored functions.madmaxoft1-1/+4
2013-09-13APIDump: Fixed link in cBlockArea's docsmadmaxoft1-3/+3
2013-09-13APIDump: Constructors are renamed and can have documentationmadmaxoft1-0/+1
2013-09-13APIDump: Added support for ignoring functions; ignoring the lua/tolua internals.madmaxoft1-0/+1
2013-09-13APIDump: Fixed cItem's description.madmaxoft1-12/+17
2013-09-12APIDump: Read through and fixed the first few classes desc.madmaxoft1-92/+71
2013-09-12APIDump: Imported the descriptions from the wiki.madmaxoft1-6/+1268
2013-09-11APIDump: Added a testing constant descriptionmadmaxoft1-0/+4
2013-09-11APIDump: First attempt at outputting annotations in the HTML formatmadmaxoft1-0/+68