Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-03-05 | Stabilise MoveToWorld (#4004) | Mat | 1 | -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-28 | Moved growing from cWorld / cChunk to cBlockHandler descendants. | Mattes D | 1 | -0/+1 | |
2019-10-16 | Refactored block-to-pickup conversion. (#4417) | Mattes D | 1 | -1/+12 | |
2019-08-05 | Register vanilla blocks in BlockTypeRegistry. | Mattes D | 1 | -0/+8 | |
2019-06-11 | * Sponge: Add water absorbtion (#4333) | Zach DeCook | 1 | -0/+8 | |
Closes #1411 | |||||
2019-05-11 | Create Ender Portal with Eyes of Ender (#4126) | Zach DeCook | 1 | -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-24 | Add BurnsInDaylight to Lua API and Monsters.ini (#4295) | Muhammad Kaisar Arkhan | 1 | -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-23 | Rewrite explosion knock back (#4251) | changyong guo | 1 | -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-24 | Support swap item between main hand and offhand by press key "F" (#4241) | changyong guo | 1 | -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-20 | cBlockInfo: Deprecate direct access to variables. (#4184) | peterbell10 | 1 | -13/+13 | |
2018-01-21 | cItemGrid: Allocate storage lazily (#4083) | peterbell10 | 1 | -4/+4 | |
* cItemGrid: Allocate storage lazily * cItemGrid: Fix spelling, Prioritary -> Priority | |||||
2018-01-14 | Rename cEntity swim states (#3996) | Alexander Harkness | 1 | -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-26 | improve rain simulation (#4017) | Alexander Harkness | 1 | -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-21 | Implement horse inventory (#4053) | peterbell10 | 1 | -0/+18 | |
* Implement horse inventory * Fix sign conversions * Add API doc for ItemCategory::IsHorseArmor * Improve HandleOpenHorseInventory comment and style fixes. | |||||
2017-09-19 | Changed BroadcastSoundEffect, SendSoundEffect, and CastThunderbolt parameters to vectors (#3959) | Lane Kolbly | 1 | -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-07 | Made world data paths adjustable, and added API to temporarily disable saving chunks to disk. (#3912) | Lane Kolbly | 1 | -0/+11 | |
2017-09-07 | Lighting now generally consistent with vanilla (#3988) | Alexander Harkness | 1 | -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-07 | Fire effect now shown for creative and spectator mode players (#3998) | Alexander Harkness | 1 | -3/+12 | |
* Fire effect now shown for creative and spectator mode players Fixes #3989 * Add documentation for IsFireproof | |||||
2017-09-07 | Updated APIDoc (#3985) | Lukas Pioch | 1 | -82/+28 | |
2017-08-30 | Added ShouldSendRespawn parameter to ScheduleMoveToWorld (#3979) | Lane Kolbly | 1 | -1/+6 | |
2017-08-29 | APIDump: Removed unneeded Globals prefix | Lukas Pioch | 1 | -11/+11 | |
2017-08-27 | Implement Forge protocol handshake support (#3869) | satoshinm | 1 | -0/+54 | |
2017-08-25 | Add cUUID class (#3871) | peterbell10 | 1 | -14/+142 | |
2017-08-24 | Minor changes (#3909) | mathiascode | 1 | -8/+8 | |
2017-08-21 | Fully implemented leashes (#3798) | Pablo Beltrán | 1 | -1/+83 | |
2017-08-18 | Represent cItem::m_Lore as an AStringVector (#3882) | peterbell10 | 1 | -4/+4 | |
* Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings | |||||
2017-08-17 | Add cLuaWindow OnClicked Callback (#3901) | Lane Kolbly | 1 | -1/+31 | |
2017-08-07 | cBlockInfo: Deprecate place sound | peterbell10 | 1 | -11/+1 | |
2017-07-28 | Added anvil enchantment handling. (#3857) | Lane Kolbly | 1 | -2/+62 | |
+ Added anvil enchantment handling. | |||||
2017-07-28 | Check for intersection between placed blocks and entities. (#3850) | Lane Kolbly | 1 | -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-23 | Updated armor cover calculation. (#3858) | Lane Kolbly | 1 | -0/+36 | |
* Updated armor damage calculation. + Added lua docs, added casts from float to int. * Changed verbage in docstring and comment. | |||||
2017-07-13 | Handle middle mouse drag (#3847) | peterbell10 | 1 | -0/+124 | |
2017-07-12 | Lua plugin cColor (#3833) | Lane Kolbly | 1 | -0/+172 | |
2017-07-12 | Changing pickup lifetime and combining semantics, making these adjustable in the lua api. (#3843) | Lane Kolbly | 1 | -0/+42 | |
2017-07-10 | Implemented draggingitem API. | Lane Kolbly | 1 | -0/+21 | |
2017-07-07 | BigFlower fixes (#3826) | peterbell10 | 1 | -0/+4 | |
* BigFlowers fixes * Correct upper part meta * Documented parameters to DoesIgnoreBuildCollision | |||||
2017-06-30 | Added 1.12 blocks (#3760) | Bond-009 | 1 | -0/+200 | |
2017-06-29 | Update tolua and export EffectID | peterbell10 | 1 | -0/+243 | |
2017-06-28 | Updated cItemGrid API docs to reflect required GetInventory() calls. | Lane Kolbly | 1 | -2/+4 | |
2017-06-24 | cBlockArea supports block entities. (#3795) | Mattes D | 1 | -1934/+2 | |
2017-06-11 | APIDoc: Corrected param in cBoat:MaterialToString | Lukas Pioch | 1 | -2/+2 | |
2017-05-27 | Add rank prefix and suffix to player name in chat (#3730) | Heiko Hund | 1 | -0/+20 | |
Fixes issue #1721 | |||||
2017-05-24 | Exported boat | Lukas Pioch | 1 | -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-24 | Off-hand/shield slot functional, save and load slot, bow + arrow functional (#3725) | Pablo Beltrán | 1 | -0/+29 | |
Fixes #3714. | |||||
2017-05-09 | Exported cFallingBlock and cExpOrb (#3700) | Lukas Pioch | 1 | -1/+88 | |
2017-05-02 | APIDoc: Removed non-existent functions and added missing return types | Lukas Pioch | 1 | -60/+12 | |
2017-04-07 | APIDoc: Corrected a few links | Lukas Pioch | 1 | -3/+3 | |
2017-04-05 | API: Removed function GetChar (#3664) | Lukas Pioch | 1 | -21/+0 | |
2017-04-05 | APIDoc: Added missing IsStatic flags and corrected param types. | Lukas Pioch | 1 | -0/+4 | |
2017-04-04 | APIDoc: Documented missing functions and variables. (#3634) | Lukas Pioch | 1 | -2/+155 | |
2017-03-05 | Added is static flag and removed is static info from text. (#3616) | Lukas Pioch | 1 | -1/+3 | |
2017-03-02 | Added missing IsStatic flag to functions. (#3613) | Lukas Pioch | 1 | -0/+5 | |
2017-02-20 | Changed fish launching mechanism (#3520) | Alex | 1 | -0/+9 | |
Fish and other fishing loot now correctly fly towards played when reeled in. | |||||
2017-02-15 | Updated sounds and effect IDs (#3422) | mathiascode | 1 | -1/+1 | |
2017-02-14 | Added some blocks and items (#3503) | mathiascode | 1 | -1/+201 | |
2017-01-03 | Track skin part and main hand preferences (#3498) | Pokechu22 | 1 | -0/+143 | |
2017-01-03 | Track skin part and main hand preferences (#3498) | Pokechu22 | 1 | -0/+143 | |
2017-01-03 | Api Documentation | sweetgiorni | 1 | -0/+10 | |
Added API documentation for GetShutdownMessage. Style fix in Root.cpp | |||||
2016-12-25 | Refactored to put URL Encoding / Decoding in a single place. (#3491) | Mattes D | 1 | -0/+38 | |
2016-12-19 | Updated links and docs (#3488) | mathiascode | 1 | -1/+1 | |
2016-12-04 | APIDesc: Fixed wrong cBlockArea parameter descriptions. | Mattes D | 1 | -22/+22 | |
2016-11-26 | Debuggers: Added commands to investigate item's custom Lua properties. | Mattes D | 1 | -2/+2 | |
2016-11-13 | Add Lua API export for titles. (#3408) | mohe2015 | 1 | -0/+72 | |
2016-11-06 | Anticheat fastbreak (#3411) | mohe2015 | 1 | -0/+1818 | |
Added block hardness checks when breaking blocks. | |||||
2016-10-27 | LuaJson: Report serialization errors instead of crashing. | Mattes D | 1 | -1/+1 | |
2016-10-21 | Added SendMessageRaw for sending json string. | Lukas Pioch | 1 | -0/+16 | |
2016-10-13 | APIDump: Fixed cWorld:QueueTask signature, moved to separate file. (#3400) | Mattes D | 1 | -3346/+0 | |
2016-10-12 | Spectators added (#2852) | bibo38 | 1 | -0/+28 | |
2016-10-09 | cChunk::SetAlwaysTicked implies cChunk::stay (#3361) | LogicParrot | 1 | -1/+1 | |
2016-10-06 | APIDump: Fixed descriptions for cWorld:ChunkStay. | Mattes D | 1 | -0/+2 | |
2016-10-06 | Fixed cRankManager API docs. | Mattes D | 1 | -587/+2 | |
2016-10-03 | APIDump: Check param and return types. | Mattes D | 1 | -18/+48 | |
2016-10-02 | APIDump: Fixed description for schematic file loading. | Mattes D | 1 | -0/+8 | |
2016-10-01 | APIDesc: Reformatted ConstantGroups to match the enum names. | Mattes D | 1 | -4/+4 | |
2016-09-27 | APIDump: Fixed description for tolua functions. | Mattes D | 1 | -0/+4 | |
2016-09-25 | Fixed cCompositeChat's constructor LuaAPI bindings. | Mattes D | 1 | -11/+133 | |
The tolua-generated constructor would return an extra string value. | |||||
2016-09-19 | APIDump: Fixed descriptions for "array table of strings". | Mattes D | 1 | -9/+6 | |
2016-09-15 | APIDesc: Fixed modifiers for sqlite3 functions. | Mattes D | 1 | -0/+8 | |
2016-09-14 | APIDesc: Fixed some leftover "<unknown>" types. | Mattes D | 1 | -65/+69 | |
2016-09-12 | APIDump: Reformatted the docs to include type information. | Mattes D | 1 | -1661/+17673 | |
Also fixed a bit of documentation in the CPP source. | |||||
2016-09-08 | APIDump: Removed trailing whitespace. | Mattes D | 1 | -1/+1 | |
2016-09-03 | Configurable dirty unused chunk cap to avoid RAM overuse (#3359) | LogicParrot | 1 | -0/+1 | |
Configurable dirty unused chunk cap to avoid RAM overuse | |||||
2016-08-15 | Added cWorld:SetSpawn() API and Lua binding (#3316) | ElNounch | 1 | -0/+1 | |
2016-08-14 | Typo in IniFile:GetNumKeys() code sample (#3317) | ElNounch | 1 | -2/+2 | |
2016-07-18 | APIDump: Added explicit IsStatic flag to static functions. | Mattes D | 1 | -77/+77 | |
2016-07-18 | Updated API documentation. | Mattes D | 1 | -59/+141 | |
2016-07-18 | APIDump: Changed not to use globals, added more doxycomments. | Mattes D | 1 | -1/+1 | |
2016-07-12 | Changed Hopper to wtHopper and adjusted .gitignore. | Lukas Pioch | 1 | -1/+1 | |
2016-06-15 | - Add a activation flag to droppers and dispensers. Previously droppers and dispensers shot items with every block update. | QUSpilPrgm | 1 | -0/+8 | |
- Fixes a range check inside cIncrementalRedstoneSimulator::Simulate | |||||
2016-06-03 | Update Dispensers and let them act more like in Vanilla | QUSpilPrgm | 1 | -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-29 | Added GetTeamNames to cScoreboard (#3217) | PlasmaPower | 1 | -0/+1 | |
Resolves #3210 | |||||
2016-05-14 | 1.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135) | Pokechu22 | 1 | -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-05 | Improved player freeze code | LogicParrot | 1 | -1/+0 | |
2016-03-30 | MoveToWorld defaults to spawnpoint | LogicParrot | 1 | -3/+3 | |
2016-03-29 | Bed's world is now saved | LogicParrot | 1 | -1/+1 | |
2016-02-19 | Proper entity destruction in non-ticking chunks | LogicParrot | 1 | -2/+3 | |
2016-02-08 | remove cWorld::createAndInitializeWorld | LogicParrot | 1 | -1/+0 | |
2016-01-29 | MCServer to Cuberite | Mathias | 1 | -1/+1 | |
2016-01-12 | Exported GetSeed to lua and added file extension opendb to .gitignore. | Lukas Pioch | 1 | -0/+1 | |
2016-01-02 | Fix typo (ammount) | Arnaud Meuret | 1 | -1/+1 | |
2015-12-25 | Added the cUrlParser class, exported to Lua API. | Mattes D | 1 | -1/+44 | |
2015-12-25 | Freeze player until chunk is loaded | Safwat Halaby | 1 | -0/+4 | |
2015-12-24 | Added a Json parser and serializer to Lua API. | Mattes D | 1 | -47/+105 | |
2015-12-18 | Revised the explosion-related Lua API and docs. | Mattes D | 1 | -1/+14 | |
Fixes #2746. | |||||
2015-12-13 | blockheight mechanism | Gargaj | 1 | -0/+1 | |
2015-11-23 | change from single followable item to multiple | Gargaj | 1 | -0/+2 | |
2015-11-03 | Implemented brewing | Lukas Pioch | 1 | -0/+3 | |
2015-10-31 | Fixed typo that slipped through #2584 | Alexander Harkness | 1 | -1/+1 | |
2015-10-31 | Fixed typo in description. | Alexander Harkness | 1 | -1/+1 | |
2015-10-31 | Implemented the FireResistence potion effects. | bibo38 | 1 | -2/+3 | |
This not only provides fire resistence, but also prevents blaze fireballs. See #2556 | |||||
2015-09-27 | APIDump: Added an apicheck command. | Mattes D | 1 | -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-26 | Extended and fixed the cFile API. | Mattes D | 1 | -4/+8 | |
2015-09-05 | Renamed output directory to Server | Mattes D | 1 | -0/+0 | |
2015-08-13 | Fixed a few missing MCServers in APIDump | Julian Laubstein | 1 | -6/+6 | |
2015-08-11 | Updated APIDump to follow the namechange | Julian Laubstein | 1 | -18/+18 | |
2015-07-16 | Spawn baby mobs | hallucino | 1 | -1/+4 | |
2015-06-28 | Added a size check for portals. | STRWarrior | 1 | -0/+8 | |
Made the portal size configurable Alpha-sorted SetXYZNetherPortalXYZ functions | |||||
2015-06-13 | Added documentation for HOOK_KILLED | Nounours Heureux | 1 | -1/+1 | |
2015-06-13 | Added HOOK_KILLED | Nounours Heureux | 1 | -1/+1 | |
2015-06-08 | cBlockArea: Added CountSpecificBlocks() API function. | Mattes D | 1 | -0/+5 | |
2015-06-05 | Added Build info to the cRoot API. | Mattes D | 1 | -3/+7 | |
2015-06-03 | Added SendSystemMessage / SendAboveActionBarMessage to the docs | jan64 | 1 | -0/+2 | |
Updated parameters passed to HOOK_KILLING | |||||
2015-05-26 | Added method to get the uptime of the server in seconds. Implements #1650. | Lukas Pioch | 1 | -32/+29 | |
2015-05-08 | Fixed syntax error | Alexander Harkness | 1 | -0/+1 | |
2015-05-06 | Properly fix the docs for FindAndDoWithPlayer. | Alexander Harkness | 1 | -3/+3 | |
Removed F accidentially added. Made the two FindAndDoWithPlayers documentation consistent. | |||||
2015-05-06 | Added info about case-sensitivity of FindAndDoWithPlayer | Alexander Harkness | 1 | -4/+3 | |
2015-04-30 | Added cBlockArea:CountNonAirBlocks API function. | Mattes D | 1 | -0/+1 | |
2015-04-30 | APIDump: Added documentation for cBlockArea:GetNonAirCropRelCoords. | Mattes D | 1 | -0/+1 | |
2015-04-29 | Added cBlockArea::msSimpleCompare merge strategy. | Mattes D | 1 | -8/+41 | |
2015-04-23 | Refactored ManualBindings' callbacks using templates. | Mattes D | 1 | -26/+26 | |
This is a bit easier to read, has better error reporting and fixes a few subtle bugs. Fixes #1889. | |||||
2015-04-21 | Added URL member to the HTTPRequest API class. | Mattes D | 1 | -42/+0 | |
2015-04-19 | Split the plugin names and plugin folders to avoid confusing them. | Mattes D | 1 | -151/+0 | |
Ref.: http://forum.mc-server.org/showthread.php?tid=1877 | |||||
2015-04-13 | Removed HOOK_MAX and HOOK_NUM_HOOKS from Lua API. | Mattes D | 1 | -2/+0 | |
2015-04-11 | cFile:ChangeFileExt now accepts extensions with leading dot, too. | Mattes D | 1 | -2/+2 | |
2015-04-11 | Added more cFile API functions. | Mattes D | 1 | -0/+3 | |
GetLastModificationTime, GetPathSeparator() and GetExecutableExt() | |||||
2015-04-06 | Added cFile:ChangeFileExt() function. | Mattes D | 1 | -0/+1 | |
2015-03-21 | APIDump: Linkified eShrapnelLevel. | Mattes D | 1 | -2/+2 | |
2015-03-21 | APIDump: Used suggestions | STRWarrior | 1 | -8/+8 | |
2015-03-21 | APIDump: Improved documentation of cWorld:GetTNTShrapnelLevel | STRWarrior | 1 | -3/+3 | |
Fixed APIDump loading | |||||
2015-03-21 | APIDump: Gave shrapnellevel it's own constantgroup | STRWarrior | 1 | -0/+7 | |
2015-03-21 | APIDump: Fixed typo in cWorld:BroadcastEntityAnimation documentation | STRWarrior | 1 | -1/+1 | |
2015-03-21 | APIDump: Improved cWorld:GetMaxViewDistance documentation | STRWarrior | 1 | -1/+1 | |
2015-03-21 | APIDump: Improved cBlockArea.msDifference documentation | STRWarrior | 1 | -1/+1 | |
2015-03-21 | APIDump: Documented function in cChunkDesc | STRWarrior | 1 | -0/+1 | |
2015-03-21 | APIDump: Documented functions & Variables in cBlockInfo | STRWarrior | 1 | -0/+4 | |
2015-03-21 | APIDump: Documented missing constant in cBlockArea | STRWarrior | 1 | -0/+1 | |
2015-03-21 | APIDump: Documented all undocumented functions in cWorld | STRWarrior | 1 | -1/+23 | |
2015-03-19 | APIDump: Removed the tolua.cast() example. | Mattes D | 1 | -26/+3 | |
The example was all wrong and the function is normally not needed at all (#1789). Fixes #1787 | |||||
2015-03-11 | Fixes #493 and #490 | flx5 | 1 | -0/+1 | |
2015-03-05 | Added description to APIDump for OnEntityTeleport | joshi07 | 1 | -2/+2 | |
2015-02-23 | Added documentation for CompressStringZLIB | STRWarrior | 1 | -1/+1 | |
There was no info about the factor. | |||||
2015-02-23 | Documented cStringCompression | STRWarrior | 1 | -2/+21 | |
2015-02-22 | Documented CompressString and UncompressString | STRWarrior | 1 | -0/+2 | |
2015-02-21 | Added cCryptoHash namespace to Lua API. | Mattes D | 1 | -1/+23 | |
2015-02-07 | Updated IsOnGround() documentation | Howaner | 1 | -1/+1 | |
2014-12-24 | APIDump: Updated the player block placement documentation. | Mattes D | 1 | -0/+2 | |
The hooks now have fewer parameters but are called on all player-placed blocks (#1618). | |||||
2014-12-13 | Made comment in example code smaller | STRWarrior | 1 | -1/+3 | |
It caused the whole page to extend beyond the max width | |||||
2014-12-01 | MobSpawner fixes. | Howaner | 1 | -1/+1 | |
2014-11-29 | Removed old MobType category. | Howaner | 1 | -8/+1 | |
2014-11-29 | Mark StringToMobType() as deprecated. Use cMonster:StringToMobType() instead | Howaner | 1 | -1/+1 | |
2014-11-29 | Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes. | Howaner | 1 | -6/+14 | |
2014-11-15 | Use LastPlacedSign instead of LastPlacedBlock. | Howaner | 1 | -1/+0 | |
2014-11-15 | Updated APIDump | Howaner | 1 | -2/+3 | |
2014-11-15 | Renamed GetSettedViewDistance() to GetRequestedViewDistance() | Howaner | 1 | -1/+1 | |
2014-11-14 | APIDump: Fixed example cCompositeChat URL | Howaner | 1 | -1/+1 | |
2014-11-14 | Updated APIDump | Howaner | 1 | -0/+1 | |
2014-11-05 | renamed FindAndDoWithUUID to DoWithPlayerByUUID, fixed style and comments, added description to APIDump | Lukas Pioch | 1 | -0/+2 | |
2014-10-05 | cClientHandle: Added protocol version knowledge. | Mattes D | 1 | -0/+1 | |
2014-10-01 | APIDump: Fixed cEntity documentation. | madmaxoft | 1 | -5/+23 | |
2014-10-01 | APIDump: Added more of the missing documentation. | madmaxoft | 1 | -5/+22 | |
2014-10-01 | Unified cRoot broadcast chat documentation. | madmaxoft | 1 | -7/+14 | |
2014-10-01 | APIDump: Documented missing cIniFile function. | madmaxoft | 1 | -0/+1 | |
2014-10-01 | APIDump: Documented missing cCompositeChat functions. | madmaxoft | 1 | -4/+6 | |
2014-10-01 | APIDump: Added missing cClientHandle documentation. | madmaxoft | 1 | -0/+3 | |
2014-09-29 | RankMgr: GetAllPlayers() returns players sorted by name. | madmaxoft | 1 | -1/+1 | |
2014-09-29 | Fixed a typo in the description. | madmaxoft | 1 | -1/+1 | |
2014-09-28 | cRankManager: Added ClearPlayerRanks() | Howaner | 1 | -0/+1 | |
2014-09-28 | Updated api documentation. | Howaner | 1 | -0/+2 | |
2014-09-27 | Fixed typo again. | Alexander Harkness | 1 | -1/+1 | |
2014-09-27 | Typo fix. | Alexander Harkness | 1 | -1/+1 | |
2014-09-27 | Remaining part of fix. | Alexander Harkness | 1 | -0/+1 | |
2014-09-12 | APIDump: Improved command binding documentation. | madmaxoft | 1 | -4/+4 | |
2014-09-07 | Exported cClientHandle:GetIPString() to Lua API. | Mattes D | 1 | -0/+1 | |
2014-09-03 | Exported ForEachEntityInBox() to Lua API. | madmaxoft | 1 | -0/+1 | |
2014-09-02 | Changed the IsEnchantable() comment again. | Howaner | 1 | -2/+1 | |
2014-09-02 | Renamed SetWalkSpeed() to SetRelativeWalkSpeed() | Howaner | 1 | -2/+2 | |
2014-09-02 | Added the new functions to APIDump. | Howaner | 1 | -0/+9 | |
2014-09-01 | Fixed ReplaceString() documentation. | Howaner | 1 | -1/+1 | |
2014-08-30 | Changed the IsEnchantable() comment. | Howaner | 1 | -1/+1 | |
2014-08-30 | Added GetWalkSpeed() and SetWalkSpeed() documentation. | Howaner | 1 | -0/+2 | |
2014-08-28 | APIDump: Added missing cItem things. | Hownaer | 1 | -3/+8 | |
2014-08-28 | Fixed ItemCategory code example. | Hownaer | 1 | -2/+2 | |
2014-08-24 | RankMgr: Exported the default-rank functions. | Mattes D | 1 | -6/+14 | |
2014-08-21 | RankMgr: Added cRankManager::RemovePlayerRank(). | Mattes D | 1 | -0/+1 | |
2014-08-21 | APIDump: Removed the cGroup and cGroupManager classes. | Mattes D | 1 | -25/+2 | |
2014-08-20 | Exported cServer:ShouldAuthenticate to Lua API. | Mattes D | 1 | -1/+2 | |
2014-08-20 | APIDump: Added cRankManager documentation. | Mattes D | 1 | -0/+56 | |
2014-08-05 | Added api documentation for Clamp() | Howaner | 1 | -2/+3 | |
2014-08-03 | cMojangAPI: Added UUID-to-Name lookup. | madmaxoft | 1 | -9/+8 | |
Also fixed the bindings, now all functions are static-like. | |||||
2014-08-03 | Added cMojangAPI:GetUUIDFromPlayerName(). | madmaxoft | 1 | -0/+1 | |
This is a simpler way to ask for a single name -> uuid conversion. | |||||
2014-07-31 | MojangAPI: Added a UseCachedOnly param to GetUUIDsFromPlayerNames(). | madmaxoft | 1 | -1/+1 | |
2014-07-30 | Added beacon documentation. | Howaner | 1 | -0/+1 | |
2014-07-30 | APIDump: Added notes about cache to cMojangAPI. | madmaxoft | 1 | -1/+7 | |
2014-07-30 | APIDump: Fixed UUID-related documentation. | madmaxoft | 1 | -2/+2 | |
2014-07-30 | Exported cMojangAPI to Lua. | madmaxoft | 1 | -1/+26 | |
2014-07-28 | Added cClientHandle:GetUUIDsFromPlayerNames() to Lua API. | madmaxoft | 1 | -0/+1 | |
2014-07-18 | APIDump: Documented RemoveItem(). | madmaxoft | 1 | -0/+2 | |
2014-07-10 | APIDump: Documented cWorld:SetChunkAlwaysTicked. | madmaxoft | 1 | -0/+1 | |
Ref.: #1160 | |||||
2014-07-04 | Removed useless sentence in cPluginManager:ExecuteCommand description. | STRWarrior | 1 | -1/+1 | |
2014-07-04 | Fixed ExecuteCommand description. | STRWarrior | 1 | -1/+1 | |
2014-06-21 | Added cClientHandle::IsUUIDOnline function. | madmaxoft | 1 | -0/+3 | |
Ref.: #771 | |||||
2014-06-18 | (Force)ExecuteCommand returns the CommandResult enums | STRWarrior | 1 | -2/+17 | |
Exported and documented the CommandResult enums | |||||
2014-06-17 | Pawn: renamed HandleEntityEffects to HandleEntityEffect | archshift | 1 | -0/+3 | |
Exported entity effect functions for ToLua and documented them in APIDesc.lua | |||||
2014-06-13 | APIDump: Added the Info.lua article. | madmaxoft | 1 | -0/+1 | |
Fixes #504. | |||||
2014-06-11 | Update APIDesc.lua | Alexander Harkness | 1 | -0/+1 | |
2014-06-11 | APIDump: Documented cBlockArea:GetCoordRange(). | madmaxoft | 1 | -1/+2 | |
2014-06-11 | Update APIDesc.lua | Tiger Wang | 1 | -3/+6 | |
2014-06-08 | Small change for easier understanding. | Alexander Harkness | 1 | -1/+1 | |
2014-04-23 | Updated docs for StringToEnchantmentID. | madmaxoft | 1 | -1/+1 | |
Ref.: mc-server/Core#67 | |||||
2014-04-19 | APIDump: Added a ChunkStay article. | madmaxoft | 1 | -3/+4 | |
Fixes #772. | |||||
2014-04-06 | Updated cWorld::CreateProjectile() documentation | Tiger Wang | 1 | -1/+1 | |
2014-04-05 | Added more API documentation to cCompositeChat. | madmaxoft | 1 | -1/+17 | |
2014-04-03 | APIDump: Added angular specifics. | madmaxoft | 1 | -2/+2 | |
2014-04-03 | Documented the units and range for entity rotations. | madmaxoft | 1 | -3/+3 | |
2014-04-01 | APIDump: Gave msDifference it's own table. | STRWarrior | 1 | -9/+21 | |
2014-04-01 | cBlockArea: Added the msMask merge strategy. | madmaxoft | 1 | -3/+20 | |
2014-04-01 | LOG() API reads the LogLevel from the cCompositeChat's MessageType. | madmaxoft | 1 | -2/+2 | |
2014-03-31 | APIDump: Documented the cCompositeChat support in logging functions. | madmaxoft | 1 | -5/+25 | |
2014-03-31 | Added extra table which should make it more clear what msDifference does. | STRWarrior | 1 | -1/+3 | |
2014-03-31 | Fixed typo | STRWarrior | 1 | -1/+1 | |
2014-03-31 | Documented msDifference | STRWarrior | 1 | -6/+8 | |
2014-03-30 | APIDump: Added article: Setting up ZeroBrane Studio. | madmaxoft | 1 | -0/+1 | |
Fixes #824. | |||||
2014-03-28 | Implemented the msSpongePrint merge strategy. | madmaxoft | 1 | -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-27 | Change documentation text | Howaner | 1 | -2/+2 | |
2014-03-27 | Change SpreadSource documentation | Howaner | 1 | -1/+1 | |
2014-03-27 | Add documentation for new Block spread | Howaner | 1 | -0/+9 | |
2014-03-20 | Plugins can set flying speed. | madmaxoft | 1 | -3/+5 | |
2014-03-20 | APIDump: Fixed wrong escaped strings. | madmaxoft | 1 | -5/+5 | |
2014-03-20 | Rewritten player speeds to be relative unit-less. | madmaxoft | 1 | -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-14 | cPluginManager:Bind[Console]Command returns true on success. | madmaxoft | 1 | -4/+4 | |
Fixes #801. | |||||
2014-03-11 | APIDump: Removed old documentation, documented some new functions. | madmaxoft | 1 | -6/+15 | |
2014-03-12 | APIDump: Updated WEOffset-related docs. | madmaxoft | 1 | -7/+7 | |
2014-03-11 | Fixed APIDump | STRWarrior | 1 | -1/+1 | |
2014-03-11 | Documented the functions. | STRWarrior | 1 | -0/+6 | |
2014-03-08 | Change tnt documentation to ticks | Howaner | 1 | -3/+3 | |
2014-03-08 | Add new tnt documentation | Howaner | 1 | -2/+3 | |
2014-03-07 | Fixed cBlockArea schematic string saving signature. | madmaxoft | 1 | -1/+1 | |
2014-03-07 | Link cItem in the documentation | Howaner | 1 | -1/+1 | |
2014-03-07 | Add missing documentation files | Howaner | 1 | -0/+2 | |
2014-03-07 | APIDump: Documented cBlockArea string-serialization functions. | madmaxoft | 1 | -0/+2 | |
2014-03-05 | APIDump: Documented the cCompositeChat class. | madmaxoft | 1 | -0/+52 | |
2014-03-05 | APIDump: Ignoring classes by exact match. | madmaxoft | 1 | -10/+10 | |
"cCompositeChat" was ignored because it matched "os". | |||||
2014-03-02 | GetById => Get | andrew | 1 | -10/+10 | |
2014-03-02 | APIDump: ID -> Type | andrew | 1 | -10/+10 | |
2014-03-02 | Exported cBlockInfo | andrew | 1 | -0/+32 | |
2014-03-01 | APIDump: Fixed cScoreboard enums | andrew | 1 | -17/+17 | |
2014-03-01 | Exported cScoreboard::ForEachTeam | andrew | 1 | -0/+1 | |
2014-03-01 | Exported cScoreboard::ForEachObjective | andrew | 1 | -0/+1 | |
2014-03-01 | Exported and documented cScoreboard | andrew | 1 | -0/+90 | |
2014-03-01 | APIDump: Documented cRoot:CreateAndInitializeWorld. | STRWarrior | 1 | -0/+1 | |
2014-02-26 | APIDump: Separated out Geometry-related classes to their own file. | madmaxoft | 1 | -301/+0 | |
2014-02-24 | Added useful parameter overloads to cBlockArea Lua API. | madmaxoft | 1 | -6/+31 | |
2014-02-23 | APIDump: Fixed cBlockArea:GetRelBlockType() return types. | madmaxoft | 1 | -1/+1 | |
2014-02-23 | Documented cBlockArea:GetOrigin(), :GetSize() and :GetVolume(). | madmaxoft | 1 | -0/+3 | |
2014-02-23 | Maps: Improvements | andrew | 1 | -2/+2 | |
2014-02-23 | Manually exported DoWithMap | andrew | 1 | -1/+1 | |
2014-02-23 | Documented and exported cMapManager | andrew | 1 | -0/+14 | |
2014-02-22 | Documented and exported cMap | andrew | 1 | -0/+49 | |
2014-02-20 | APIDump: Documented cClientHandle:HasPluginChannel. | madmaxoft | 1 | -0/+1 | |
2014-02-20 | APIDump: Fixed cBlockArea:GetRelBlockType() return types. | madmaxoft | 1 | -1/+1 | |
2014-02-18 | APIDump: Documented missing cWorld functions. | madmaxoft | 1 | -0/+8 | |
2014-02-18 | Properly exported and documented paintings | Tiger Wang | 1 | -0/+18 | |
2014-02-17 | Documented the cPluginManager:GetPluginsPath() API function. | madmaxoft | 1 | -0/+1 | |
2014-02-15 | Documented BroadcastParticleEffect | STRWarrior | 1 | -0/+1 | |
2014-02-13 | Fixed formatting issue in APIDesc.lua | narroo | 1 | -1/+1 | |
2014-02-12 | Fixed location of QueueUnloadUnusedChunks entry in APIDesc dump. Now is lexographically listed in cWorld, not cRoot. | narroo | 1 | -2/+2 | |
2014-02-11 | Alpha-Sorted List. | narroo | 1 | -1/+1 | |
2014-02-11 | Updated APIDesc.lua to replace 'UnloadUnusedChunks' with 'QueueUnloadUnusedChunks'. | narroo | 1 | -1/+1 | |
2014-02-11 | APIDump: Documented cWorld:ChunkStay(). | madmaxoft | 1 | -0/+1 | |
2014-02-07 | Removed some unexported documentation. | Tiger Wang | 1 | -11/+5 | |
2014-02-07 | Improved chat messaging functions | Tiger Wang | 1 | -3/+24 | |
* Moved string manipulation into cClientHandle and therefore... + Added configuration option for prefixes. * Cleaned up code. * Updated documentation for API. | |||||
2014-02-05 | Added cPluginManager:LogStackTrace() to the Lua API. | madmaxoft | 1 | -1/+2 | |
Fixes #637. | |||||
2014-02-04 | Fixed indent from previous commits. | madmaxoft | 1 | -1/+1 | |
2014-02-04 | Fixed indentation | tonibm19 | 1 | -1/+1 | |
2014-02-04 | Blank lines and indentation. | tonibm19 | 1 | -1/+0 | |
Also removed GetClosestPlayer documentation | |||||
2014-02-03 | Added documentation | tonibm19 | 1 | -1/+4 | |
2014-01-29 | Documented cFloater. | STRWarrior | 1 | -0/+14 | |
2014-01-21 | Implemented cPluginManager:CallPlugin() API. | madmaxoft | 1 | -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-19 | APIDump: Added notes about objects across cWorld's task execution. | madmaxoft | 1 | -2/+2 | |
2014-01-19 | APIDump: Updated cWorld:ScheduleTask()'s description. | madmaxoft | 1 | -1/+1 | |
2014-01-17 | APIDump: Updated cPluginManager:GetAllPlugins(). | madmaxoft | 1 | -1/+1 | |
2014-01-16 | Finished exporting cWorld:ScheduleTask() to Lua API. | madmaxoft | 1 | -1/+1 | |
2014-01-16 | Documented the SchedualeTask function | Tycho | 1 | -0/+1 | |
2014-01-15 | APIDump: Explicitly listed static cPlayer functions. | madmaxoft | 1 | -2/+2 | |
2014-01-13 | APIDump: Added missing bits of documentation. | madmaxoft | 1 | -0/+15 | |
The recent changes didn't document some of the new API functions. | |||||
2014-01-13 | APIDump: Documented the plugin messaging hook and function. | madmaxoft | 1 | -0/+1 | |
2014-01-11 | Documented the cIniFile:AddValue* functions. | madmaxoft | 1 | -0/+4 | |
Now the documentation really matches the implementation. | |||||
2014-01-05 | Fixed cPluginManager:AddHook() binding. | madmaxoft | 1 | -1/+1 | |
Fixes #401. Old formats are still accepted, for compatibility reasons. | |||||
2013-12-27 | APIDump: Added the SettingUpDecoda article. | madmaxoft | 1 | -0/+1 | |
This implements #383. | |||||
2013-12-27 | APIDump: Added the WritingPlugin article to the exported pages. | madmaxoft | 1 | -0/+1 | |
2013-12-24 | Removed documentation for cChatColour:MakeColor() | Alexander Harkness | 1 | -7/+3 | |
2013-12-16 | APIDump: Ignoring the multi-inheritance members. | madmaxoft | 1 | -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-15 | Documented ForceSetSpeed. | STRWarrior | 1 | -0/+1 | |
2013-12-15 | APIDump: Documented New functions | STRWarrior | 1 | -0/+4 | |
2013-12-14 | Documented cTNTEntity. | STRWarrior | 1 | -0/+11 | |
2013-12-07 | Documented SpawnFallingBlock() | STRWarrior | 1 | -0/+1 | |
2013-12-05 | APIDump: Documented the new cPluginManager:GetCurrentPlugin() function. | madmaxoft | 1 | -1/+2 | |
2013-11-26 | cWorld::SpawnExperienceOrb() now returns the entity ID of the spawned orb. | STRWarrior | 1 | -1/+2 | |
Documented etExpOrb. | |||||
2013-11-25 | Documented SpawnExperienceOrb in cWorld | STRWarrior | 1 | -0/+1 | |
2013-11-24 | APIDump: Moved projectiles' documentation to a separate file. | madmaxoft | 1 | -110/+1 | |
2013-11-23 | APIDump: Removed unwanted functions. | madmaxoft | 1 | -1/+2 | |
2013-11-23 | APIDump: Reformatted the sqlite docs. | madmaxoft | 1 | -4/+16 | |
2013-11-23 | APIDump: The descriptions are read from multiple files. | madmaxoft | 1 | -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-23 | Documented sqlite functions. Used: http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#sqlite3_functions | STRWarrior | 1 | -0/+18 | |
2013-11-23 | APIDump: Added more constant groups. | madmaxoft | 1 | -16/+115 | |
Also fixed the parsing of the Include data in the constant groups, and added linkification to group texts. | |||||
2013-11-22 | APIDump: Added a few constant groups to the descriptions. | madmaxoft | 1 | -92/+78 | |
2013-11-22 | APIDump: Implemented constant groups. | madmaxoft | 1 | -2/+60 | |
Fix #289. | |||||
2013-11-22 | Added cFile:GetFolderContents(). | madmaxoft | 1 | -10/+11 | |
Fix 162. | |||||
2013-11-22 | APIDump: Fixed cRoot's furnace query API. | madmaxoft | 1 | -1/+3 | |
2013-11-22 | APIDump: Documented new cRoot:GetFurnaceRecipe(). | madmaxoft | 1 | -2/+27 | |
2013-11-21 | APIDump: Documented cPlayer XP-related functions. | madmaxoft | 1 | -0/+8 | |
2013-11-20 | APIDump: Documented cWorld:ForEachBlockEntityInChunk() and cWorld:DoWithBlockEntityAt(). | madmaxoft | 1 | -0/+2 | |
2013-11-19 | APIDump: Documented Vector3i. | madmaxoft | 1 | -5/+25 | |
2013-11-17 | APIDump: Documented Vector3f. | madmaxoft | 1 | -3/+33 | |
2013-11-15 | APIDump: Documented lxp, the XML parser class. | madmaxoft | 1 | -0/+106 | |
2013-11-15 | APIDump: Small fixes and additions. | madmaxoft | 1 | -1/+4 | |
2013-11-15 | APIDump: Documented cSignEntity. | madmaxoft | 1 | -7/+6 | |
2013-11-15 | APIDump: Documented cNoteEntity. | madmaxoft | 1 | -1/+20 | |
2013-11-15 | APIDump: Documented the cJukeboxEntity. | madmaxoft | 1 | -0/+16 | |
2013-11-15 | APIDump: Documented cChunkDesc:GetBlockEntity(). | madmaxoft | 1 | -1/+37 | |
2013-11-15 | cRoot::SaveAllChunks() doesn't wait for the save (deadlocks). | madmaxoft | 1 | -1/+1 | |
Rather, it only queues the save task onto each world's tick thread. | |||||
2013-11-15 | APIDump: Removed the BlockEntity constructors' docs. | madmaxoft | 1 | -62/+24 | |
2013-11-11 | APIDump: Documented Vector3d. | madmaxoft | 1 | -8/+43 | |
2013-11-09 | APIDump: Documented cServer:IsHardCore() | madmaxoft | 1 | -0/+1 | |
2013-11-09 | APIDump: Documented TakeDamageInfo. | madmaxoft | 1 | -5/+29 | |
2013-11-09 | APIDump: Documented the relevant tolua functions. | madmaxoft | 1 | -2/+48 | |
2013-11-05 | APIDump: Documented ItemCategory. | madmaxoft | 1 | -0/+38 | |
2013-10-31 | APIDump: Fixed HOOK_LOGIN short desc. | madmaxoft | 1 | -1/+1 | |
2013-10-28 | APIDump: Documented cWindow. | madmaxoft | 1 | -21/+33 | |
2013-10-28 | APIDump: Documented HTTPFormData and HTTPRequest. | madmaxoft | 1 | -5/+39 | |
2013-10-27 | APIDump: Documented cWorld. | madmaxoft | 1 | -0/+1 | |
2013-10-27 | APIDump: Documented cRoot. | madmaxoft | 1 | -3/+12 | |
2013-10-27 | APIDump: Documented cProjectileEntity. | madmaxoft | 1 | -3/+21 | |
2013-10-26 | APIDump: Documented cPickup. | madmaxoft | 1 | -1/+2 | |
2013-10-26 | APIDump: Documented cIniFile. | madmaxoft | 1 | -81/+135 | |
2013-10-24 | APIDump: Documented cMonster. | madmaxoft | 1 | -3/+52 | |
2013-10-24 | APIDump: Documented cEnchantments. | madmaxoft | 1 | -4/+37 | |
The constants are self-documenting, no need to describe them further. | |||||
2013-10-24 | APIDump: Documented cPickup. | madmaxoft | 1 | -8/+10 | |
2013-10-24 | APIDump: Documented cItemGrid and cPlayer. | madmaxoft | 1 | -30/+75 | |
2013-10-23 | APIDump: Added cChatColor constants. | madmaxoft | 1 | -3/+23 | |
They don't really need much documentation, so just ignoring them in the Undocumented output. | |||||
2013-10-23 | APIDump: Documented the cHopperEntity class. | madmaxoft | 1 | -0/+22 | |
2013-10-23 | APIDump: Linkified cEntity returns. | madmaxoft | 1 | -4/+7 | |
2013-10-20 | APIDump: Added link from cItem to the global ItemToString() et al. | madmaxoft | 1 | -1/+5 | |
2013-10-20 | APIDump: Fixed link in cPawn's desc. | madmaxoft | 1 | -1/+1 | |
2013-10-20 | APIDump: Various small fixes and additions. | madmaxoft | 1 | -6/+53 | |
2013-10-20 | APIDump: Fixed a few broken links. | madmaxoft | 1 | -4/+4 | |
2013-10-20 | APIDump: Added basic statistics about the docs. | madmaxoft | 1 | -0/+2 | |
2013-10-19 | APIDump: Added member-variable filtering. | madmaxoft | 1 | -0/+5 | |
2013-10-19 | Added a APIDump description for GetHTMLEscapedString. | Alexander Harkness | 1 | -63/+66 | |
2013-10-18 | APIDump: Added cIniFile additional info. | madmaxoft | 1 | -0/+28 | |
2013-10-18 | APIDump: Added example code to cItem. | madmaxoft | 1 | -0/+32 | |
2013-10-18 | APIDump: Documented cItem's variables. | madmaxoft | 1 | -4/+11 | |
2013-10-18 | APIDump: Added support for member variables. | madmaxoft | 1 | -2/+7 | |
2013-10-18 | APIDump: Split long code into functions. | madmaxoft | 1 | -0/+2 | |
2013-10-18 | APIDump: Ignore internal APIDump stuff. | madmaxoft | 1 | -0/+2 | |
2013-10-18 | APIDump: Documented HOOK_PLAYER_RIGHT_CLICKING_ENTITY. | madmaxoft | 1 | -0/+20 | |
2013-10-18 | APIDump: Documented HOOK_PLAYER_SHOOTING. | madmaxoft | 1 | -0/+25 | |
2013-10-18 | APIDump: Documented HOOK_PLAYER_SPAWNED. | madmaxoft | 1 | -0/+25 | |
2013-10-18 | APIDump: Documented HOOK_PLAYER_TOSSING_ITEM. | madmaxoft | 1 | -0/+23 | |
2013-10-17 | APIDump: Documented HOOK_PLAYER_USED_BLOCK. | madmaxoft | 1 | -0/+39 | |
2013-10-17 | APIDump: Documented HOOK_PLAYER_USED_ITEM. | madmaxoft | 1 | -0/+39 | |
2013-10-17 | APIDump: Documented HOOK_PLAYER_USING_BLOCK. | madmaxoft | 1 | -2/+45 | |
2013-10-17 | APIDump: Documented HOOK_PLAYER_USING_ITEM. | madmaxoft | 1 | -0/+36 | |
2013-10-17 | APIDump: Documented HOOK_UPDATED_SIGN. | madmaxoft | 1 | -0/+30 | |
2013-10-17 | APIDump: Documented HOOK_TICK. | madmaxoft | 1 | -0/+22 | |
2013-10-17 | APIDump: Documented HOOK_TAKE_DAMAGE. | madmaxoft | 1 | -0/+24 | |
2013-10-17 | APIDump: Documented HOOK_UPDATING_SIGN. | madmaxoft | 1 | -0/+50 | |
2013-10-16 | APIDump: Documented HOOK_WEATHER_CHANGED. | madmaxoft | 1 | -0/+21 | |
2013-10-16 | APIDump: Documented HOOK_WEATHER_CHANGING. | madmaxoft | 1 | -0/+24 | |
2013-10-16 | APIDump: Documented HOOK_WORLD_TICK. | madmaxoft | 1 | -0/+24 | |
2013-10-15 | Added HOOK_PLAYER_RIGHT_CLICK | Alexander Harkness | 1 | -8/+38 | |
2013-10-15 | APIDump: Documented HOOK_SPAWNING_MONSTER. | madmaxoft | 1 | -0/+26 | |
2013-10-15 | APIDump: Documented HOOK_SPAWNING_ENTITY. | madmaxoft | 1 | -2/+34 | |
2013-10-15 | APIDump: Documented HOOK_SPAWNED_MONSTER. | madmaxoft | 1 | -1/+21 | |
2013-10-15 | APIDump: Documented HOOK_SPAWNED_ENTITY. | madmaxoft | 1 | -0/+20 | |
2013-10-15 | APIDump: Documented HOOK_PRE_CRAFTING. | madmaxoft | 1 | -0/+30 | |
2013-10-15 | APIDump: Documented HOOK_POST_CRAFTING. | madmaxoft | 1 | -0/+29 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_PLACING_BLOCK. | madmaxoft | 1 | -0/+38 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_MOVING and HOOK_PLAYER_PLACED_BLOCK. | madmaxoft | 1 | -0/+53 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_LEFT_CLICK. | madmaxoft | 1 | -0/+40 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_JOINED. | madmaxoft | 1 | -0/+22 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_EATING. | madmaxoft | 1 | -0/+20 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_BROKEN_BLOCK. | madmaxoft | 1 | -2/+31 | |
2013-10-15 | APIDump: Documented HOOK_PLAYER_BREAKING_BLOCK. | madmaxoft | 1 | -0/+30 | |
2013-10-14 | APIDump: Documented HOOK_PLAYER_ANIMATION. | madmaxoft | 1 | -0/+21 | |
2013-10-14 | APIDump: Documented HOOK_LOGIN. | madmaxoft | 1 | -0/+25 | |
2013-10-14 | APIDump: Documented HOOK_KILLING. | madmaxoft | 1 | -0/+27 | |
2013-10-14 | APIDump: Documented HOOK_HOPPER_PUSHING_ITEM. | madmaxoft | 1 | -3/+28 | |
2013-10-14 | APIDump: Documented HOOK_HOPPER_PULLING_ITEM. | madmaxoft | 1 | -0/+23 | |
2013-10-14 | APIDump: Documented HOOK_HANDSHAKE. | madmaxoft | 1 | -0/+23 | |
2013-10-14 | APIDump: Documented HOOK_EXPLODING. | madmaxoft | 1 | -0/+44 | |
2013-10-14 | APIDump: Documented HOOK_EXPLODED. | madmaxoft | 1 | -0/+43 | |
2013-10-14 | APIDump: Documented HOOK_EXECUTE_COMMAND. | madmaxoft | 1 | -0/+25 | |
2013-10-14 | APIDump: Documented HOOK_DISCONNECT. | madmaxoft | 1 | -0/+26 | |
2013-10-14 | APIDump: Fixed info missing from cCraftingRecipe. | madmaxoft | 1 | -1/+1 | |
2013-10-14 | APIDump: Documented HOOK_CRAFTING_NO_RECIPE. | madmaxoft | 1 | -0/+26 | |
2013-10-14 | APIDump: Documented HOOK_COLLECTING_PICKUP. | madmaxoft | 1 | -0/+27 | |
2013-10-14 | APIDump: Documented HOOK_CHUNK_UNLOADING. | madmaxoft | 1 | -0/+23 | |
2013-10-14 | APIDump: Documented HOOK_CHUNK_UNLOADED. | madmaxoft | 1 | -0/+22 | |
2013-10-14 | APIDump: Documented HOOK_CHUNK_GENERATING. | madmaxoft | 1 | -1/+33 | |
2013-10-14 | APIDump: Added example to HOOK_CHUNK_GENERATED. | madmaxoft | 1 | -0/+37 | |
2013-10-14 | APIDump: Documented HOOK_CHUNK_GENERATED. | madmaxoft | 1 | -0/+26 | |
2013-10-14 | APIDump: Documented HOOK_CHUNK_AVAILABLE. | madmaxoft | 1 | -0/+21 | |
2013-10-12 | APIDump: Added pretty-printing to code examples. | madmaxoft | 1 | -27/+27 | |
2013-10-12 | APIDump: Added an OnBlockToPickups() code example. | madmaxoft | 1 | -0/+26 | |
2013-10-12 | APIDump: Documented OnBlockToPickups. | madmaxoft | 1 | -0/+30 | |
2013-10-09 | APIDump: Implemented basic hook documentation. | madmaxoft | 1 | -2/+32 | |
2013-10-09 | APIDump: Documented the new cFile API functions. | madmaxoft | 1 | -0/+24 | |
2013-10-09 | APIDump: Added support for extra pages. | madmaxoft | 1 | -0/+6 | |
Referenced by file links and titles and copied directly from the plugin folder to the dest folder. | |||||
2013-10-05 | APIDump: Brought cItem docs up-to-date. | madmaxoft | 1 | -5/+7 | |
2013-10-04 | APIDump: Added cLineBlockTracer documentation. | madmaxoft | 1 | -4/+86 | |
2013-10-04 | APIDump: Documented cPlugin | STRWarrior | 1 | -5/+9 | |
2013-10-04 | APIDump: Added the cWorld:IsWeatherXXX() functions. | madmaxoft | 1 | -1/+5 | |
2013-10-02 | APIDump: Fixed operator == rename having bad DocID. | madmaxoft | 1 | -2/+6 | |
2013-09-29 | APIDump: Fixed overloaded functions' docs. | madmaxoft | 1 | -18/+45 | |
2013-09-29 | APIDump: Added more inheritance and linkification. | madmaxoft | 1 | -4/+6 | |
2013-09-29 | APIDump: Linkified cDropSpenser constants. | madmaxoft | 1 | -2/+2 | |
2013-09-29 | APIDump: Added the possibility to ignore classes. Ignoring Lua builtins. | madmaxoft | 1 | -1/+13 | |
2013-09-27 | APIDump: Updated cEntity docs. | madmaxoft | 1 | -33/+115 | |
2013-09-27 | APIDump: Documented cServer | STRWarrior | 1 | -1/+6 | |
2013-09-26 | APIDump: Completed cCuboid docs. | madmaxoft | 1 | -6/+28 | |
2013-09-26 | APIDump: Completed cCraftingGrid's documentation. | madmaxoft | 1 | -3/+8 | |
2013-09-26 | APIDump: completed cChestEntity docs. | madmaxoft | 1 | -1/+30 | |
2013-09-25 | APIDump: Updated cBlockArea docs. | madmaxoft | 1 | -0/+3 | |
2013-09-25 | APIDump: Updated cChunkDesc docs. | madmaxoft | 1 | -2/+25 | |
2013-09-25 | APIDump: Updated cClientHandle documentation | madmaxoft | 1 | -5/+7 | |
2013-09-24 | APIDump: Documented the cBoundingBox class. | madmaxoft | 1 | -2/+35 | |
2013-09-22 | APIDump: Forgot a function in globals. | STRWarrior | 1 | -0/+1 | |
2013-09-22 | APIDump: Documented the globals. | STRWarrior | 1 | -0/+37 | |
2013-09-19 | APIDump: Automatic corrections. | madmaxoft | 1 | -83/+78 | |
2013-09-18 | APIDump: Updated cPluginManager documentation. | madmaxoft | 1 | -16/+88 | |
2013-09-18 | APIDump: Small cRoot improvement. | STRWarrior | 1 | -17/+17 | |
2013-09-17 | Documented cRoot. | STRWarrior | 1 | -0/+19 | |
2013-09-16 | APIDump: Added callback examples to cWorld. | madmaxoft | 1 | -0/+60 | |
2013-09-16 | APIDump: All cWorld functions are documented. | madmaxoft | 1 | -25/+44 | |
2013-09-15 | APIDump: Next batch of cWorld documentation. | madmaxoft | 1 | -35/+34 | |
2013-09-15 | APIDump: Added a first part of cWorld documentation. | madmaxoft | 1 | -2/+118 | |
2013-09-14 | APIDump: Added most missing classes as empty templates. | madmaxoft | 1 | -1/+93 | |
2013-09-14 | APIDump: Removed most unexported-documented classes. | madmaxoft | 1 | -232/+53 | |
Also fixed most functions that were erroneously parsed as constants by the automatic wiki import. | |||||
2013-09-14 | APIDump: Fixed cLuaWindow documentation. | madmaxoft | 1 | -62/+64 | |
2013-09-14 | APIDump: Added cArrowEntity documentation | madmaxoft | 1 | -0/+29 | |
2013-09-14 | APIDump: Added an example on how to fill in the documentation. | madmaxoft | 1 | -8/+55 | |
2013-09-14 | APIDump: Added support for additional info exported with each class. | madmaxoft | 1 | -1/+77 | |
2013-09-14 | APIDump: Added support for overloaded functions. | madmaxoft | 1 | -8/+20 | |
2013-09-14 | APIDump: Do not dump the g_APIDesc and APIDump's functions. | madmaxoft | 1 | -3/+11 | |
2013-09-14 | APIDump: Moved sorting after the renaming. | madmaxoft | 1 | -0/+1 | |
2013-09-14 | APIDump: Added special-function renaming (constructor, operators). | madmaxoft | 1 | -0/+1 | |
2013-09-14 | APIDump: Added more globally-ignored functions. | madmaxoft | 1 | -1/+4 | |
2013-09-13 | APIDump: Fixed link in cBlockArea's docs | madmaxoft | 1 | -3/+3 | |
2013-09-13 | APIDump: Constructors are renamed and can have documentation | madmaxoft | 1 | -0/+1 | |
2013-09-13 | APIDump: Added support for ignoring functions; ignoring the lua/tolua internals. | madmaxoft | 1 | -0/+1 | |
2013-09-13 | APIDump: Fixed cItem's description. | madmaxoft | 1 | -12/+17 | |
2013-09-12 | APIDump: Read through and fixed the first few classes desc. | madmaxoft | 1 | -92/+71 | |
2013-09-12 | APIDump: Imported the descriptions from the wiki. | madmaxoft | 1 | -6/+1268 | |
2013-09-11 | APIDump: Added a testing constant description | madmaxoft | 1 | -0/+4 | |
2013-09-11 | APIDump: First attempt at outputting annotations in the HTML format | madmaxoft | 1 | -0/+68 | |