Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-08-28 | Save enderchest block entities to storage | Tiger Wang | 1 | -3/+17 | |
+ Add EnderChest saving, as Vanilla does - Remove CreateBlockEntities. Storage should save & load everything so looping over chunk data is not needed | |||||
2020-08-05 | Delete redundant std::move in World loader | Tiger Wang | 1 | -14/+14 | |
2020-08-01 | Replaced cpp14::make_unique<> with std::make_unique<>. | Mattes D | 1 | -71/+71 | |
2020-05-15 | Enable some more clang-tidy linter checks (#4738) | peterbell10 | 1 | -4/+4 | |
* Avoid inefficient AString -> c_str() -> AString round trip * Avoid redundant string init expressions * Avoid unnecessary return, continue, etc. * Add .clang-format to help with clang-tidy fix-its * Avoid unnecessary passing by value * Avoid unnecessary local copying * Avoid copying in range-for loops * Avoid over-complicated boolean expressions * Some violations missed by my local clang-tidy * Allow unnecessary continue statements * Add brackets * Another expression missed locally * Move BindingsProcessor call into clang-tidy.sh and add space * Fix pushd not found error * Different grouping of CheckBlockInteractionRate | |||||
2020-05-09 | Update submodules (#4727) | peterbell10 | 1 | -2/+2 | |
Closes #4708 This updates jsoncpp, mbedtls, TCLAP and SQLiteCpp to their latest stable release. A few additional changes were needed: * jsoncpp deprecated Reader, FastWriter and StyledWriter which I've replaced with some helper functions in JsonUtils.cpp * SQLiteCpp changed how it builds with external sqlite libraries, now expecting them to be installed. The simplest path was to remove sqlite from cuberite's submodule and just use SQLiteCpp's internal version. | |||||
2020-05-07 | Remove old Android leftovers (#4722) | Mat | 1 | -3/+3 | |
2020-05-04 | Fix incorrect formatter invocation | Tiger Wang | 1 | -2/+2 | |
2020-04-30 | NBT: Dynamic list-max-count protection. (#4697) | Mattes D | 1 | -3/+4 | |
2020-04-16 | Using Super. | Mattes D | 1 | -1/+1 | |
2020-04-10 | Add Zombie Villagers | Bond-009 | 1 | -7/+44 | |
2020-04-04 | Implement wither skeletons (#4563) | Mat | 1 | -5/+32 | |
2020-04-03 | Manage block entity lifetime with unique_ptr (#4080) | peterbell10 | 1 | -37/+34 | |
2020-04-03 | Pulled the BlockID and BlockInfo headers from Globals.h. (#4591) | Mattes D | 1 | -5/+6 | |
The BlockID.h file was removed from Globals.h and renamed to BlockType.h (main change) The BlockInfo.h file was removed from Globals.h (main change) The ENUM_BLOCK_ID and ENUM_ITEM_ID enum names were replaced with ENUM_BLOCK_TYPE and ENUM_ITEM_TYPE (cosmetics) The various enums, such as eDimension, eDamageType and eExplosionSource were moved from BlockType.h to Defines.h, together with the helper functions for converting between them and strings (StringToDimension et al.) (minor) Many inline functions were moved from headers to their respective cpp files, so that BlockType.h could be included only into the cpp file, rather than the header. That broke our tests a bit, since they pick bits and pieces out of the main code and provide stubs for the rest; they had to be re-stubbed and re-verified. eMonsterType values are no longer tied to E_ITEM_SPAWN_EGG_META_* values | |||||
2019-09-29 | Refactored more of Entities and BlockEntities to use Vector3. (#4403) | Mattes D | 1 | -101/+102 | |
2019-09-24 | NBTChunkSerializer: Cleaned up interface. | Mattes D | 1 | -59/+2 | |
Removed dependency on cChunkDataCallback. Moved all the serializing code into a worker class. Changed the serialization into a single-call action. | |||||
2018-09-24 | Add a formatting function for Vector3 (#4282) | peterbell10 | 1 | -7/+7 | |
* Vector3: Add custom fmt compatible formatter. * cLuaState: Add fmt version of ApiParamError * Use vector formatting in manual bindings * Always log vectors with FLOG | |||||
2018-08-29 | Force all headers other than "Globals.h" to be included with relative paths (#4269) | peterbell10 | 1 | -2/+2 | |
Closes #4236 CMake now creates a header file in the build directory under the path "include/Globals.h" which just includes "src/Globals.h" with an absolute path. Then instead of adding "src/" to the include directories, it adds "include/". #include "Globals.h" still works by including the build generated file and any other src-relative path will not work. | |||||
2018-07-26 | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 1 | -1/+2 | |
Add check for number of empty lines between functions and fix the corresponding failures | |||||
2018-01-03 | Add the fmt library (#4065) | peterbell10 | 1 | -4/+4 | |
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style. | |||||
2017-11-22 | Store Health as a float (#4073) | Fabian | 1 | -2/+21 | |
* Fix #4024 * Fix clang error * Add comment * Fix behaviour * Save Health as float * Changed m_Health to float * Remove redundant static_cast * Fix casts | |||||
2017-09-14 | Fix switch warnings (#4013) | peterbell10 | 1 | -15/+20 | |
* Fix switch warnings * Fix a variety of -Wswitch and -Wswitch-enum warnings * Remove unneeded -Wno-error flags * Reorganise some eMonsterType switches * Alpha sort eMonsterType cases in WriteMobMetadata and in cNBTChunkSerializer::AddMonsterEntity * List all mob types in protocol 1.12 and NBTChunkSerializer * cStructGenTrees::GetNumTrees: remove switch default * cWSSAnvil::LoadOldMinecartFromNBT: Log unhandled minecart type | |||||
2017-09-07 | Made world data paths adjustable, and added API to temporarily disable saving chunks to disk. (#3912) | Lane Kolbly | 1 | -3/+3 | |
2017-09-07 | Changed some int parameters to vector parameters (#3937) | Bond-009 | 1 | -2/+2 | |
2017-08-26 | Implement anvil chunk sparsing | peterbell10 | 1 | -15/+17 | |
2017-08-25 | Add cUUID class (#3871) | peterbell10 | 1 | -19/+16 | |
2017-08-21 | Fully implemented leashes (#3798) | Pablo Beltrán | 1 | -0/+77 | |
2017-08-18 | Represent cItem::m_Lore as an AStringVector (#3882) | peterbell10 | 1 | -1/+11 | |
* Replace cItem::m_Lore with AStringVector * Reword deprecation warning * Fix lua bindings | |||||
2017-08-07 | Changed entity ownership model to use smart pointers | Tiger Wang | 1 | -53/+53 | |
2017-08-03 | Remove double includes part 2 (#3890) | peterbell10 | 1 | -1/+0 | |
2017-08-02 | Removed double includes (#3885) | Lukas Pioch | 1 | -2/+0 | |
2017-07-21 | Remove smart pointer macros | peterbell10 | 1 | -1/+1 | |
2017-07-12 | Added basic ocelot behavior (#3829) | Bond-009 | 1 | -10/+35 | |
2017-07-07 | Added bed entity (#3823) | Lukas Pioch | 1 | -0/+28 | |
* Added bed entity * Export cBedEntity to lua * Set color of bed through item damage value * Added bed entity to APIDoc * NBT: Added loading and saving * Crafting recipes for the colored beds | |||||
2017-06-23 | Load entities from old and new names | Lukas Pioch | 1 | -224/+149 | |
2017-06-21 | Anvil storage: load block entities from both old and new name-styles. (#3784) | Mattes D | 1 | -77/+121 | |
* WSSAnvil: Load the sign text from JSON, too. | |||||
2017-06-16 | BlockEntities: Support cloning self. | Mattes D | 1 | -61/+62 | |
2017-05-24 | Exported boat | Lukas Pioch | 1 | -1/+7 | |
- 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-22 | Store cChunk::m_BlockEntities in a map (#3717) | peterbell10 | 1 | -3/+6 | |
* Store block entities in a map from block index * Cleanup ForEachBlockEntity * Cleanup DoWithBlockEntityAt | |||||
2017-05-08 | Corrected brewingstand and added support for fuel | Lukas Pioch | 1 | -2/+10 | |
2017-03-22 | NBT: Corrected firework loading | Lukas Pioch | 1 | -2/+2 | |
2016-11-07 | Fixed TrappedChest saving. (#3423) | Mattes D | 1 | -4/+15 | |
Vanilla uses "Chest" in NBT for trapped chests. | |||||
2016-08-24 | Fixed type-casting-related warnings. | Mattes D | 1 | -6/+10 | |
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -120/+120 | |
2016-01-29 | MCServer to Cuberite | Mathias | 1 | -1/+1 | |
2016-01-11 | Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8 | bibo38 | 1 | -3/+40 | |
The NBT format now carries the texture data and transmit it to the client. See: http://minecraft.gamepedia.com/Head#Block_entity Related to #2674 | |||||
2015-11-16 | changed mob age from char to int | Julian Laubstein | 1 | -18/+72 | |
2015-11-03 | Implemented brewing | Lukas Pioch | 1 | -0/+51 | |
2015-09-25 | Compile.sh namechange to cuberite | Safwat Halaby | 1 | -1/+1 | |
2015-09-25 | Namechange to Cuberite | Mattes D | 1 | -1/+1 | |
2015-07-31 | Unified the doxy-comment format. | Mattes D | 1 | -1/+1 | |
2015-07-31 | Chunks that fail to load are offloaded to extra files. | Mattes D | 1 | -33/+73 | |
Ref.: #1970 | |||||
2015-07-31 | Added reason parameter to load failures. | Mattes D | 1 | -13/+13 | |
2015-07-31 | Moved AString reading hack to cFile. | Mattes D | 1 | -16/+17 | |
2015-07-29 | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 1 | -61/+61 | |
2015-07-17 | Added Rabbit Metadata values. | bibo38 | 1 | -1/+12 | |
Added the Rabbit Types and the MoreCarrotTicks value. Types are selected randomly on creation. Fixes #1867 | |||||
2015-07-14 | Support ageable mobs | Hallucino | 1 | -7/+72 | |
Move ageable stuff in Monster directly | |||||
2015-07-12 | Changing the shared_ptr/unique_ptr constructors to the make_shared/make_unique functions | bibo38 | 1 | -64/+64 | |
2015-07-09 | Fixes compilation failures on MacOSX 10.10 | Samuel Barney | 1 | -6/+6 | |
* Replace old c-style casts with c++ casts * Added `-Wno-error=old-style-cast` to Protocol18x.cpp | |||||
2015-06-03 | Fixes multiple furnace issues, including from loading world storage | HaoTNN | 1 | -2/+3 | |
2015-05-09 | CheckBasicStyle: checks spaces around * and &. | Mattes D | 1 | -1/+1 | |
2015-05-09 | More style checking. | Mattes D | 1 | -4/+4 | |
Spaces around some operators are checked. | |||||
2015-04-27 | cSetChunkData constructor explicitly requires std::move() instead of | Woazboat | 1 | -1/+1 | |
unsafely stealing data | |||||
2015-03-14 | cPainting saving implemented | Tiger Wang | 1 | -0/+28 | |
Additionally, it now inherits from cHangingEntity. | |||||
2015-03-13 | Fixed confusion over Item Frame directions | Tiger Wang | 1 | -37/+7 | |
2015-02-18 | Flower pots: In 1.8 items are saved with the name and not the id. | Howaner | 1 | -5/+12 | |
2015-02-08 | WSSAnvil: Fixed chunk data padding. | Mattes D | 1 | -2/+5 | |
When the chunk data fit perfectly into the old space, an extra 4 KiB of padding zeroes were written, overwriting the next chunk. Fixes #1730. | |||||
2014-12-21 | WSSAnvil: Added clamping to entity coords. | Mattes D | 1 | -3/+3 | |
Fixes CID 72854. | |||||
2014-12-20 | Added Rabbits | Masy98 | 1 | -0/+24 | |
2014-12-18 | Added Entity Guardian | Masy98 | 1 | -0/+24 | |
2014-12-11 | Cosmetic touchups. | Mattes D | 1 | -4/+5 | |
Removed trailing whitespace, added cast to remove warning, added file seeking in case of corrupt files. | |||||
2014-12-08 | Check to see if header write out is required | planetx | 1 | -17/+15 | |
2014-12-08 | Added timestamp to merged files WSSAnvil | planetx | 1 | -1/+1 | |
2014-12-08 | Added timestamp to merged files WSSAnvil | planetx | 1 | -62/+62 | |
2014-12-08 | Added timestamp to new files WSSAnvil | planetx | 1 | -78/+148 | |
2014-12-07 | Added Timestamp info to chunks in WSSAnvil | planetx | 1 | -85/+44 | |
2014-12-06 | Replaced most auto_ptr with unique_ptr. | Mattes D | 1 | -61/+61 | |
2014-12-05 | BasicStyle: Added missing braces to control statements. | Mattes D | 1 | -10/+21 | |
2014-12-01 | MobSpawner fixes. | Howaner | 1 | -1/+1 | |
2014-11-26 | WSSAnvil: Fixed bad code in arrow loading. | Mattes D | 1 | -2/+8 | |
2014-11-18 | Finished mob spawner implementation. | Howaner | 1 | -0/+50 | |
2014-10-29 | Fixed 1.8 world item format reading. | Howaner | 1 | -2/+19 | |
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -44/+44 | |
2014-10-21 | cItemFrame: Fixed a forgotten rename. | Mattes D | 1 | -1/+1 | |
2014-10-21 | Properly exported cItemFrame and cHangingEntity to Lua. | Mattes D | 1 | -16/+27 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -44/+44 | |
2014-09-25 | Anvil: Arrow Tile tags are a short in Vanilla | Howaner | 1 | -4/+21 | |
2014-09-25 | Fixed hanging direction bugs. | Howaner | 1 | -1/+1 | |
2014-09-24 | Don't create two entity lists. | Howaner | 1 | -7/+2 | |
2014-09-23 | Anvil: Wolf collar color is a byte in Vanilla. | madmaxoft | 1 | -3/+17 | |
Kept the old Int reading for compatibility reasons. Ref.: #1448 | |||||
2014-09-23 | Fixed a crash in WSSAnvil. | madmaxoft | 1 | -3/+3 | |
Reported as #1448. | |||||
2014-09-23 | MCServer world compatiblity with vanilla and mcedit. | Howaner | 1 | -5/+34 | |
2014-09-06 | Added Y-wise asserts to signs. | Mattes D | 1 | -0/+2 | |
This should help detect #1313's second case. | |||||
2014-09-06 | Anvil: Fixed an off-by-one error in the loader. | Mattes D | 1 | -1/+1 | |
Fixes #1307. | |||||
2014-09-05 | Fixed loading empty chunks. | Mattes D | 1 | -1/+7 | |
Reported on the Dropper map in #1307. | |||||
2014-09-05 | Anvil: Fixed loading block entities with invalid Y coord. | Mattes D | 1 | -1/+1 | |
2014-09-04 | Anvil: Cleanly refuse to store data that is too large. | madmaxoft | 1 | -1/+7 | |
Each chunk in MCA needs to be less than 1 MiB compressed; chunks that are larger will be refused with a log message. | |||||
2014-09-03 | Anvil: switched inflate to stream mode. | madmaxoft | 1 | -18/+6 | |
This removes the fixed-size buffer which could have caused #1307 and #1366. | |||||
2014-09-02 | Clang wants volatile... | madmaxoft | 1 | -1/+1 | |
2014-09-02 | Added strict error reporting to chunk loading. | madmaxoft | 1 | -1/+29 | |
This should help with #1307. | |||||
2014-09-02 | Added CustomName saving. | Howaner | 1 | -0/+13 | |
2014-08-30 | WSSAnvil: Removed leftover debugging code. | madmaxoft | 1 | -4/+0 | |
2014-08-29 | Rewritten block entity loading. | Mattes D | 1 | -200/+238 | |
Block entities are now loaded based on the blocktype at the coords they specify; before loading, their type ("id" NBT tag) is checked. The chunk now expects that all block entities given to it via cChunk::SetAllData() have their valid blocktype; asserts if they don't. Fixes #1354. | |||||
2014-08-04 | Refactored case-conversion functions. | madmaxoft | 1 | -1/+6 | |
StrToLower() returns a modified copy of the string, InPlaceLowercase() modifies the string in-place. | |||||
2014-08-03 | Wolf uses UUID for owner. | madmaxoft | 1 | -10/+59 | |
Fixes #1277. | |||||
2014-07-31 | Renamed "select..." methods to "set..." and better IsValidEffect() function. | Howaner | 1 | -2/+2 | |
2014-07-31 | Renamed functions and added beacon json saving. | Howaner | 1 | -2/+2 | |
2014-07-30 | Added beacon load/save. | Howaner | 1 | -1/+49 | |
2014-07-29 | Slight cleanup after portals | Tiger Wang | 1 | -6/+1 | |
2014-07-26 | Moved potion static functions to EntityEffect to create splash potions through world | archshift | 1 | -1/+1 | |
2014-07-24 | Added a queue for setting chunk data. | madmaxoft | 1 | -2/+3 | |
Fixes #1196. | |||||
2014-07-19 | Splash potions: Renamed PotionParticleType to PotionColor for clarity | archshift | 1 | -1/+1 | |
2014-07-17 | Basic style fixes. | madmaxoft | 1 | -6/+6 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -4/+4 | |
This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | |||||
2014-07-15 | Restructured cSplashPotionEntity code. | madmaxoft | 1 | -1/+1 | |
The callback doesn't need declaration in the header. Renamed PotionName to PotionParticleType. | |||||
2014-07-12 | Added splash potions to NBT serialization and retrieval | archshift | 1 | -0/+28 | |
2014-07-07 | Implemented trapped chests & others | Tiger Wang | 1 | -3/+7 | |
+ Added trapped chests * Fixed a bunch of bugs in the redstone simulator concerning wires and repeaters * Other potential bugfixes | |||||
2014-07-02 | Suggestions | Tiger Wang | 1 | -2/+9 | |
2014-06-30 | Removed unneeded code | Tiger Wang | 1 | -21/+0 | |
2014-06-29 | Properly implemented enderchests | Tiger Wang | 1 | -0/+21 | |
2014-06-29 | Code fixes. | Howaner | 1 | -1/+1 | |
2014-06-28 | Save IsSheared from Sheep. | Howaner | 1 | -4/+11 | |
2014-06-24 | Add entity health saving. | Howaner | 1 | -14/+7 | |
2014-06-20 | MCA saver marks chunks as populated. | madmaxoft | 1 | -0/+3 | |
Fixes #140. | |||||
2014-06-04 | Time and weather is saved, part of #1058 | Tiger Wang | 1 | -3/+10 | |
Also fixed unreliability in Health and LootPickup loading. | |||||
2014-06-04 | Health of monsters is now saved | Tiger Wang | 1 | -0/+1 | |
2014-06-04 | Fixed mob loading, part of #1058 | Tiger Wang | 1 | -1/+1 | |
2014-05-09 | More size_t fixes. | Mattes D | 1 | -5/+5 | |
2014-05-09 | Build fixes after the last size_t batch. | Mattes D | 1 | -1/+1 | |
2014-05-09 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -4/+4 | |
2014-05-08 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -4/+4 | |
2014-05-07 | Change m_RepairCost to int. | Howaner | 1 | -1/+1 | |
2014-05-07 | Fix MagmaCube save. | Howaner | 1 | -2/+8 | |
2014-05-07 | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs. | Howaner | 1 | -6/+28 | |
2014-05-01 | Anvil saver pads data to 4K boundaries. | madmaxoft | 1 | -0/+5 | |
Fixes #524. | |||||
2014-04-28 | Revert "Changed the old invulnerable methods from the wither to the new." | Howaner | 1 | -1/+1 | |
This reverts commit d50f8f6f11f69e7e1e56be92fb2d72a5014a3e34. | |||||
2014-04-28 | Fixed projectile source filenames, indentations | archshift | 1 | -6/+6 | |
2014-04-27 | Moved cGhastFireballEntity out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-27 | Moved cFireChargeEntity out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-27 | Moved cThrownSnowballEntity out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-27 | Moved cThrownEnderPearl out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-27 | Moved cThrownEggEntity out of ProjectileEntity.h | archshift | 1 | -1/+1 | |
2014-04-27 | Moved cArrowEntity out of ProjectileEntity.h | archshift | 1 | -1/+1 | |
2014-04-26 | Changed the old invulnerable methods from the wither to the new. | Howaner | 1 | -1/+1 | |
2014-04-26 | Fixes | Howaner | 1 | -1/+1 | |
2014-04-24 | Fixed class capitalization for the cave spider. | archshift | 1 | -1/+1 | |
2014-03-25 | Ender crystals | andrew | 1 | -0/+19 | |
2014-03-24 | Wither invulnerability | andrew | 1 | -1/+7 | |
2014-03-16 | Add new leaves to all classes. | Howaner | 1 | -0/+1 | |
2014-03-16 | Add anvil direction. | Howaner | 1 | -1/+9 | |
2014-03-15 | Remove old debug messages. | Howaner | 1 | -3/+0 | |
2014-03-15 | Add item frame saving. | Howaner | 1 | -0/+85 | |
2014-03-15 | Add health and age load to pickup's. | Howaner | 1 | -1/+15 | |
2014-03-15 | Add ExpOrb saving. | Howaner | 1 | -26/+70 | |
2014-03-10 | Removed Some unnessicary macros | Tycho | 1 | -2/+2 | |
2014-03-08 | Change TNT Fuse to ticks | Howaner | 1 | -2/+1 | |
2014-03-08 | Add TNT Save/Load and add Netbeans projects to .gitignore | Howaner | 1 | -0/+28 | |
2014-03-07 | Add Flower Pots | Howaner | 1 | -0/+36 | |
2014-02-27 | Implemented ballistic missiles (fireworks) | Tiger Wang | 1 | -0/+6 | |
+ Added fireworks | |||||
2014-02-23 | Fixed Formatting, Added DropChances and CanPickUpLoot attributes to Monsters | TheJumper | 1 | -0/+183 | |
2014-02-23 | Rename SkullEntity to MobHeadEntity | Howaner | 1 | -8/+8 | |
2014-02-23 | Add Heads completely | Howaner | 1 | -1/+1 | |
2014-02-23 | Add Skulls/Heads | Howaner | 1 | -0/+40 | |
2014-02-23 | Fixed Formatting, Added DropChances and CanPickUpLoot attributes to Monsters | TheJumper | 1 | -0/+183 | |
2014-02-23 | Fixed Formatting, Added DropChances and CanPickUpLoot attributes to Monsters | TheJumper | 1 | -0/+2 | |
2014-02-23 | Fixed Compiling Issues | TheJumper | 1 | -2/+20 | |
2014-02-23 | Fixed Formatting, Added DropChance attributes to Monsters | TheJumper | 1 | -0/+163 | |
2014-02-19 | Rename SkullEntity to MobHeadEntity | Howaner | 1 | -8/+8 | |
2014-02-18 | Add Heads completely | Howaner | 1 | -1/+1 | |
2014-02-17 | Add Skulls/Heads | Howaner | 1 | -0/+40 | |
2014-02-12 | Fixed #573 | STRWarrior | 1 | -4/+4 | |
2014-02-02 | Added saving of angry flag. | Kirill Kirilenko | 1 | -0/+6 | |
2014-02-02 | Fixed sitting tag. | Kirill Kirilenko | 1 | -4/+4 | |
2014-02-01 | Added saving of collar's color. | Kirill Kirilenko | 1 | -3/+9 | |
2014-01-31 | Added reading saved state of the wolf (sitting or standing). | Kirill Kirilenko | 1 | -0/+6 | |
2014-01-31 | Inversed condition. | STRWarrior | 1 | -1/+1 | |
2014-01-31 | Wolf: If Owner tag is missing a normal ownerless wolf will spawn. | STRWarrior | 1 | -9/+6 | |
2014-01-30 | Fixed bad variable. | STRWarrior | 1 | -1/+1 | |
2014-01-30 | Check if the tag is found. | STRWarrior | 1 | -0/+5 | |
2014-01-30 | Fixes #606 | STRWarrior | 1 | -0/+7 | |
2014-01-26 | Item-loading now checks for weird bytes. | madmaxoft | 1 | -3/+9 | |
2014-01-24 | Fixed crash with failed entity-loading. | madmaxoft | 1 | -2/+7 | |
This should fix issues reported in: http://forum.mc-server.org/showthread.php?tid=1328 http://forum.mc-server.org/showthread.php?tid=1308 | |||||
2014-01-20 | Scoreboard deserialization | andrew | 1 | -1/+1 | |
2014-01-19 | Switched EnchantmentSerilizer to namespace | Tycho | 1 | -1/+1 | |
2014-01-19 | Spilt Writing of Enchantments to seperate class | Tycho | 1 | -1/+2 | |
Created a new class cEnchantmentSerializer to serilize Enchantments to NBT. This breaks a dependecy chain between cChunkGenerator and cWorld. cEnchantmentSerializer is seperate from NBTWriter as it needs to access private members of cEnchantments so having it seperate reduces the spread of the frein modifier | |||||
2014-01-18 | Command blocks: Execute() | andrew | 1 | -1/+1 | |
2014-01-18 | Command block (de)serialization | andrew | 1 | -0/+42 | |
2014-01-17 | Added user setting compression factor | Tycho | 1 | -3/+4 | |
2014-01-16 | Removed obsoleted functions | Tiger Wang | 1 | -1/+1 | |
2014-01-12 | Renamed cEmptyMinecart to cRideableMinecart | STRWarrior | 1 | -1/+1 | |
2014-01-12 | EmptyMinecarts should be able to get a block inside of them. | STRWarrior | 1 | -1/+1 | |
2013-12-25 | Preliminary mobile entity saving | Tiger Wang | 1 | -6/+622 | |
* Fixes #252 * Alleviates #380 + Adds mob saving * Fixed some debug !ASSERTs | |||||
2013-12-20 | Fixed compiler warning when iterating over a fixed array of items (ARRAYCOUNT). | madmaxoft | 1 | -3/+3 | |
2013-11-27 | Fixed the remaining derps | Alexander Harkness | 1 | -1/+1 | |
2013-11-25 | Further attempts to fix compile | Tiger Wang | 1 | -1/+1 | |
2013-11-24 | Attempt to fix compilation | Tiger Wang | 1 | -1/+1 | |
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-10-24 | Pickups now have collection delay when vomited | Tiger Wang | 1 | -1/+1 | |
Implements FS#394. | |||||
2013-10-09 | Moved cMakeDir::MakeDir to cFile::CreateFolder. | madmaxoft | 1 | -2/+1 | |
And exported to Lua. | |||||
2013-09-08 | Initial boat support | Tiger Wang | 1 | -1/+20 | |
+ Boats are saved + Boats have physics + Boats spawn | |||||
2013-09-07 | Implemented loading more projectiles from MCA. | madmaxoft | 1 | -3/+127 | |
2013-08-25 | Arrows get loaded from MCA. | madmaxoft | 1 | -4/+47 | |
Somehow they still don't spawn visibly on the client. | |||||
2013-08-19 | Moved entities into the Entities subfolder. | madmaxoft | 1 | -4/+4 | |
2013-08-16 | Compilation and Minecart fixes | Tiger Wang | 1 | -0/+42 | |
2013-08-16 | Feature and bugfixes [SEE DESC] | Tiger Wang | 1 | -0/+2 | |
Added TNT and Hopper minecarts Fixed piston code failing without an extension set Repeaters are now broken Fixed not being able to place a minecart on an activator rail Added much needed comments on piston code Fixed minor formatting issue | |||||
2013-06-20 | Furnaces light up visually when they're cooking | madmaxoft@gmail.com | 1 | -5/+23 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1612 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-06-16 | Rewritten furnaces | madmaxoft@gmail.com | 1 | -3/+3 | |
Furnaces now smelt the correct number of items. Furnaces store their contents in a cItemGrid. Furnace window is updated with correct items and progressbars. Furnace recipes now use ticks instead of milliseconds. Furnaces save and load their state completely, not missing a smelt operation. Hoppers take items out of furnaces. Dropped the cSlotAreaDropSpenser class, replaced it with generic cSlotAreaItemGrid git-svn-id: http://mc-server.googlecode.com/svn/trunk@1601 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-06-13 | Added hopper entity, it can suck items out of chests, dispensers, droppers and other hopppers above it. | madmaxoft@gmail.com | 1 | -27/+55 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1587 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-06-02 | Enchantments are now stored in Anvil world and in player inventory | madmaxoft@gmail.com | 1 | -1/+16 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1541 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-28 | Moved BlockEntities to a separate folder | madmaxoft@gmail.com | 1 | -7/+7 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1527 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-26 | Block entities with storage now correctly mark the chunk as dirty when their contents change. | madmaxoft@gmail.com | 1 | -32/+64 | |
http://forum.mc-server.org/showthread.php?tid=434&pid=8210#pid8210 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1515 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-05 | Lighting: Fixed underwater lighting (FS #369) | madmaxoft@gmail.com | 1 | -1/+10 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1444 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-04-13 | Rewritten entities so that they are owned by individual chunks and ticked within their chunk's Tick() | madmaxoft@gmail.com | 1 | -2/+6 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1385 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-04-07 | Anvil loader: fixed Vanilla biomes not being read | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1370 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-03-11 | Anvil: Removed excessive debugging output | madmaxoft@gmail.com | 1 | -3/+0 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1264 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-03-09 | Minecarts get saved into Anvil. | madmaxoft@gmail.com | 1 | -3/+39 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1263 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-03-09 | Pickups are now being saved into Anvil. | madmaxoft@gmail.com | 1 | -286/+232 | |
Also changed cEntity rotation datatype to double git-svn-id: http://mc-server.googlecode.com/svn/trunk@1262 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-02-27 | Made FAST_FLOOR_DIV work correctly, replaced all floorf() divisions with it. | madmaxoft@gmail.com | 1 | -2/+3 | |
Still not perfect - chunk and region calculations can be made into a single CPU instruction - SAR - but not all compilers are known to support that (">>" operator on signed datatypes needs to perform arithmetic shift, C/C++ standard makes it implementation-specific; MSVC and GCC do what we need, LLVM unknown) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1224 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-01-12 | Merged branch "branches/hooks" into "trunk". | madmaxoft@gmail.com | 1 | -8/+8 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1139 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-12-19 | Added dispensers (they can't dispense items yet) | luksor111@gmail.com | 1 | -6/+80 | |
Fixed crash when digging snow Moved BlockPlace hook check, so Core plugin will no longer block item usage Player chat messages are now visible in the console git-svn-id: http://mc-server.googlecode.com/svn/trunk@1081 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-11-16 | Android: Made the initial pre-calculated spawn area smaller | faketruth | 1 | -1/+1 | |
Android: Fixed FastNBT Android: Fixed level.dat reading/writing GroupManager uses groups.example.ini as default WebAdmin uses webadmin.example.ini as default git-svn-id: http://mc-server.googlecode.com/svn/trunk@1049 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-11-13 | More valgrind uninitialized var fixing | madmaxoft | 1 | -2/+12 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1040 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-10-28 | Fixed NBT IntArray serialization; Biomes are now saved to / loaded from Anvil | madmaxoft@gmail.com | 1 | -12/+71 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1015 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-10-21 | Added jukeboxes (patch contributed by Luksor) | madmaxoft@gmail.com | 1 | -4/+38 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@994 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-24 | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 1 | -7/+7 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@887 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-23 | Source files cleanup: OSSupport-related files in a separate subfolder, renamed. | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@885 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-23 | Source files cleanup: WorldStorage-related files in a separate subfolder | madmaxoft@gmail.com | 1 | -10/+10 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@882 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-20 | Refactored windows. | madmaxoft@gmail.com | 1 | -3/+3 | |
As described on the forum: http://forum.mc-server.org/showthread.php?tid=561 For now, only basic clicking works; shift-click not implemented yet. git-svn-id: http://mc-server.googlecode.com/svn/trunk@867 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-08-26 | Added basic noteblocks, finished sign storage in Anvil (patch contributed by l0udPL) | madmaxoft@gmail.com | 1 | -3/+61 | |
http://forum.mc-server.org/showthread.php?tid=528 git-svn-id: http://mc-server.googlecode.com/svn/trunk@793 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-07-21 | Added a (disabled) debugging code for anvil underground overviewing, useful for exploring MC cave generation style | madmaxoft@gmail.com | 1 | -4/+15 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@690 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-15 | Anvil: added support for signs (why was it still missing??) | madmaxoft@gmail.com | 1 | -3/+42 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@616 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-14 | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 1 | -955/+955 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-05-28 | Chests and Furnaces are now saved properly into Anvil scheme. | madmaxoft@gmail.com | 1 | -8/+93 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@516 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-05-25 | Merged the composable_generator branch into the trunk | madmaxoft@gmail.com | 1 | -82/+123 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@504 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-05-08 | Removed a debugging construct that accidentally leaked into previous commit | madmaxoft@gmail.com | 1 | -8/+0 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@485 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-05-08 | Fast NBT writer (Saving a chunk is now about twice as fast) | madmaxoft@gmail.com | 1 | -61/+102 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@484 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-05-07 | Fast NBT Parser (loading a chunk is now about 10 times faster) | madmaxoft@gmail.com | 1 | -73/+77 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@481 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-04-23 | Anvil storage writing (Basic storage is working, NO entities except for chests are working! Don't use for real servers) | madmaxoft@gmail.com | 1 | -8/+306 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@475 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-24 | Reverted the previous commit - it is useless, since entities still depend heavily on cWorld | madmaxoft@gmail.com | 1 | -3/+3 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@428 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-23 | Encapsulated cWorld functions needed in cWorldStorage into an interface, so that cWorldStorage can actually be used outside of MC-Server (such as storage conversion tools and chunk analyzers) | madmaxoft@gmail.com | 1 | -3/+3 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@427 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-14 | Actually commented out the Anvil terrain inversion code | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@415 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-14 | Anvil support: Added a debugging section for inverting terrain (So that MC cave generator can be seen in action). Commented out, so that it doesn't make it into the release versions | madmaxoft@gmail.com | 1 | -0/+24 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@414 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-14 | Split chunk data into separate arrays; decoupled most sources from cChunk.h dependency | madmaxoft@gmail.com | 1 | -16/+25 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@411 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-11 | Anvil format: fixed loading with XZY ordering | madmaxoft@gmail.com | 1 | -11/+9 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@398 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-10 | Anvil support: compatible with both chunk orderings | madmaxoft@gmail.com | 1 | -0/+4 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@395 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-07 | Anvil format: loading chests' contents. | madmaxoft@gmail.com | 1 | -1/+123 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@385 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-07 | No need to reset zlib (copypasta error) | madmaxoft@gmail.com | 1 | -1/+0 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@381 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-03-07 | Added the Anvil level format (MCA) support, read-only for the time being. Now MCS can read your worlds from the official server :) | madmaxoft@gmail.com | 1 | -0/+338 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@380 0a769ca7-a7f5-676a-18bf-c427514a06d6 |