Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2016-07-21 | Dropped 1.7 support (#3253) | Mathias | 1 | -3305/+0 | |
2016-05-14 | 1.9 / 1.9.2 / 1.9.3 / 1.9.4 protocol support (#3135) | Pokechu22 | 1 | -2/+16 | |
* 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-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -111/+111 | |
2016-01-11 | Changed the format of the MobHead data to allow MobHeads working on MInecraft 1.8 | bibo38 | 1 | -1/+1 | |
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-24 | Add enum for Sound and Particle Effects | Dave Tucker | 1 | -2/+2 | |
Fixes #2603 Signed-off-by: Dave Tucker <dave@dtucker.co.uk> | |||||
2015-11-09 | idle/deflating creeper should be -1 | Gargaj | 1 | -1/+1 | |
according to http://wiki.vg/Entities#Creeper | |||||
2015-10-26 | Update Loops required for JsonCPP | Lukas Pioch | 1 | -4/+4 | |
2015-09-25 | Compile.sh namechange to cuberite | Safwat Halaby | 1 | -3/+3 | |
2015-09-25 | Namechange to Cuberite | Mattes D | 1 | -3/+3 | |
2015-09-21 | Refactored cProtocol Chat handling | tycho | 1 | -62/+5 | |
2015-08-12 | Fix old style casts and implicit conversions | Matti Hänninen | 1 | -2/+2 | |
2015-07-29 | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 1 | -28/+29 | |
2015-07-15 | Leather Armor can now be dyed. | Samuel Barney | 1 | -2/+12 | |
* Created new color class to handle dye-related coloring | |||||
2015-07-15 | Added CustomName and Health to sended Metadata of Monsters. | bibo38 | 1 | -9/+13 | |
Fixes #2113 | |||||
2015-07-14 | Improved maps | Tiger Wang | 1 | -44/+35 | |
2015-06-25 | Fixed Middle-Click Button in the ClickWindow-Packet. | bibo38 | 1 | -1/+1 | |
See http://wiki.vg/Protocol#Click_Window The MiddleClick has the button 2 and not 0. Now you can max an item in an inventory in Creative mode, without inventory desync. Bugfix #2260 | |||||
2015-06-07 | Fix incorrent experience sending for 1.7 clients | jan64 | 1 | -2/+2 | |
2015-06-03 | Changed SendAboveActionBarMessage / SendSystemMessage to be a noop for < 1.8 clients | jan64 | 1 | -1/+11 | |
2015-06-02 | Added system and above action bar chat messages | jan64 | 1 | -1/+55 | |
2015-05-19 | Fixed a lot of warnings | tycho | 1 | -2/+2 | |
2015-05-09 | More style checking. | Mattes D | 1 | -2/+2 | |
Spaces around some operators are checked. | |||||
2015-05-07 | Added support for additional data in the ParticleEffect Packet | tycho | 1 | -0/+10 | |
Also started refactoring how broadcasts are handled | |||||
2015-05-04 | Change visual protocol name to include MCServer | jan64 | 1 | -2/+2 | |
2015-04-13 | Implement backend for /title command | Scott Moore | 1 | -0/+63 | |
2015-03-22 | Added VarInt64, normalized cPacketizer datatype names. | Mattes D | 1 | -328/+329 | |
2015-03-22 | Unified cPacketizer across all protocols. | Mattes D | 1 | -279/+266 | |
2015-03-21 | Fixed signedness warnings in Protocol. | Mattes D | 1 | -2/+2 | |
2015-03-21 | Fixed signedness issues in protocols. | Mattes D | 1 | -48/+52 | |
2015-03-21 | Unified cByteBuffer types. | Mattes D | 1 | -97/+123 | |
cByteBuffer now reads and writes any of the [U]Int<N> types. | |||||
2015-03-14 | cPainting saving implemented | Tiger Wang | 1 | -1/+1 | |
Additionally, it now inherits from cHangingEntity. | |||||
2015-02-08 | Protocol 1.7: Fixed Coverity issues. | Mattes D | 1 | -4/+7 | |
Fixes CID 66411, CID 103166 and CID 103167. | |||||
2015-01-18 | Fixed warnings in 1.7 protocol. | Mattes D | 1 | -106/+127 | |
2015-01-03 | Fixed Linux compilation. | Mattes D | 1 | -1/+1 | |
2015-01-03 | Protocols: Ignore garbage data at the end of PluginMessage packets. | Mattes D | 1 | -0/+11 | |
Fixes #1692. | |||||
2014-12-24 | Refactored all player block placing to go through hooks. | Mattes D | 1 | -2/+2 | |
Fixes #1618. | |||||
2014-12-21 | Fixed coverity issues in protocols. | Mattes D | 1 | -2/+5 | |
Fixes CID 73099, CID 66411. | |||||
2014-11-29 | Many api fixes, add vanilla names to mob type -> string functions and mob spawner fixes. | Howaner | 1 | -1/+1 | |
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -3/+3 | |
2014-10-21 | Properly exported cItemFrame and cHangingEntity to Lua. | Mattes D | 1 | -1/+1 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -3/+3 | |
2014-10-03 | Improved furnaces | Tiger Wang | 1 | -1/+1 | |
* Fixed progress bar on 1.8 * Fixed bugs * Improved code * Fixes #1068 * Fixes #1070 | |||||
2014-10-02 | Optimized chunk loader | Howaner | 1 | -0/+1 | |
2014-09-30 | Fixed a missing semicolon. | madmaxoft | 1 | -1/+1 | |
2014-09-30 | Rewritten plugin messages, vanilla are being parsed directly. | madmaxoft | 1 | -0/+92 | |
This should finally fix the compatibility problems between 1.7 and 1.8 protocols with the changes in the vanilla plugin messages. | |||||
2014-09-27 | Dropped support for <1.7.x | Tiger Wang | 1 | -14/+0 | |
2014-09-26 | Fixed players custom name in 1.8 | Howaner | 1 | -16/+4 | |
2014-09-25 | 1.7 Protocol: fixed potential problems with no-payload packets. | madmaxoft | 1 | -4/+4 | |
2014-09-19 | Implemented mob spawner. | Howaner | 1 | -1/+13 | |
2014-09-18 | Exported player list states to extra functions. | Howaner | 1 | -7/+59 | |
2014-09-17 | Added an explicit setting for allowing BungeeCord handshake. | madmaxoft | 1 | -1/+1 | |
2014-09-17 | Added first test to show the object can be created | Tycho | 1 | -15/+15 | |
2014-09-17 | Full BungeeCord compatibility. | madmaxoft | 1 | -0/+4 | |
Fixes #1392. Fixes SpigotMC/BungeeCord#1211. | |||||
2014-09-17 | Initial BungeeCord support. | madmaxoft | 1 | -0/+9 | |
Ref.: #1392 | |||||
2014-09-13 | Moved chat json creating to the CompositeChat class. | Howaner | 1 | -170/+3 | |
2014-09-13 | 1.8: Fixed maps. | Howaner | 1 | -3/+2 | |
2014-09-12 | Spawn exp if you break a mob spawner. | Howaner | 1 | -3/+3 | |
2014-09-11 | Removed GetProtocolVersion() from the protocols. | Howaner | 1 | -3/+1 | |
2014-09-11 | 1.8: Fixed hangings. | Howaner | 1 | -1/+1 | |
2014-09-11 | 1.8: Added ParticleEffect packet. | Howaner | 1 | -2/+2 | |
2014-09-09 | Added the player list to the 1.8 protocol. | Howaner | 1 | -4/+9 | |
2014-09-08 | More fixes. | Howaner | 1 | -1/+1 | |
2014-09-08 | Recoded cProtocol180 class. | Howaner | 1 | -56/+16 | |
2014-09-08 | Fixed more 1.8 packets. | Howaner | 1 | -19/+40 | |
2014-09-08 | Updated chunk sending to 1.8 | Howaner | 1 | -6/+6 | |
2014-09-08 | Added GetProtocolVersion() to cProtocol. | Howaner | 1 | -14/+12 | |
2014-09-08 | Implemented packet compression. | Howaner | 1 | -1/+25 | |
ChunkData packet needs this. | |||||
2014-09-06 | Added Y-wise asserts to signs. | Mattes D | 1 | -0/+1 | |
This should help detect #1313's second case. | |||||
2014-09-04 | Fixed client errors. | Howaner | 1 | -1/+1 | |
2014-09-04 | Added more 1.8 protocol things. | Howaner | 1 | -0/+1 | |
2014-09-04 | Started implementing of the 1.8 protocol. | Howaner | 1 | -2/+4 | |
2014-09-02 | Added SetCustomName() to players. | Howaner | 1 | -6/+20 | |
2014-09-01 | Added CustomName to cMonster. | Howaner | 1 | -0/+10 | |
2014-08-21 | Fixed 1.7.2 login packet reading. | Mattes D | 1 | -1/+5 | |
Fixes #1317. | |||||
2014-08-20 | Renamed a_Motd to a_ServerDescription. | Howaner | 1 | -3/+3 | |
2014-08-20 | Added a_ClientHandle to the HOOK_SERVER_PING hook. | Howaner | 1 | -2/+2 | |
2014-08-20 | Cleaned up code. | Howaner | 1 | -1/+0 | |
2014-08-20 | Added HOOK_SERVER_PING | Howaner | 1 | -28/+71 | |
2014-08-11 | cProtocol172: Check return values. | madmaxoft | 1 | -4/+9 | |
Fixes CID 43489, CID 43490, CID 43491, CID 43493, CID 66410, CID 66411, CID 66416, CID 66417, CID 66418, CID 66419, CID 66420, CID 66421, CID 66422, CID 66423, CID 66424, CID 66425, CID 66429, CID 66430, CID 66431 | |||||
2014-08-11 | Exported daylight cycle flag to the protocol. | Howaner | 1 | -1/+6 | |
2014-08-04 | Fixed #1286 | Howaner | 1 | -1/+1 | |
2014-08-04 | Changed properties for-loop. | Howaner | 1 | -1/+1 | |
2014-08-03 | Fixed skins in mc 1.7.9/1.7.10 | Howaner | 1 | -6/+5 | |
2014-07-31 | Renamed functions and added beacon json saving. | Howaner | 1 | -2/+2 | |
2014-07-30 | Added beacon. | Howaner | 1 | -0/+15 | |
2014-07-30 | MojangAPI: Implemented UUID shortening and dashing. | madmaxoft | 1 | -3/+3 | |
2014-07-21 | Style: Normalized spaces after if, for and while. | madmaxoft | 1 | -1/+1 | |
2014-07-19 | Fixed spaces after commas in protocol data. | madmaxoft | 1 | -7/+7 | |
The JSON data is well-formatted with spaces, too; we can afford to waste the few bytes. | |||||
2014-07-19 | Fixed style: spaces after commas. | madmaxoft | 1 | -1/+1 | |
2014-07-18 | Fix failed merge and other issues | Tiger Wang | 1 | -1/+1 | |
2014-07-17 | Fixed tabs used for alignment. | madmaxoft | 1 | -3/+4 | |
2014-07-17 | Basic style fixes. | madmaxoft | 1 | -1/+1 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -32/+32 | |
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-16 | Suggestions | Tiger Wang | 1 | -2/+5 | |
2014-07-16 | Store properties as Json::Value | Tiger Wang | 1 | -6/+2 | |
2014-07-14 | Player properties are now retrieved | Tiger Wang | 1 | -1/+13 | |
2014-07-13 | Fixed MSVC warnings in SoundEffect functions. | madmaxoft | 1 | -7/+3 | |
2014-07-13 | Changed BroadcastSoundEffect function to take floating pos. | Howaner | 1 | -5/+9 | |
2014-07-04 | Crash and compile fix | Tiger Wang | 1 | -1/+1 | |
2014-06-29 | Fixed respawning | Tiger Wang | 1 | -3/+3 | |
* Fixes #1103 | |||||
2014-06-29 | Send statistics to the player, when he logged in. | Howaner | 1 | -2/+1 | |
2014-06-27 | Added generic entity-collecting. | Mattes D | 1 | -2/+2 | |
Now any cEntity can be collected, not only cPickups. This should help PR #1098. | |||||
2014-06-12 | Portals animate and delay correctly | Tiger Wang | 1 | -4/+4 | |
2014-06-08 | Fixed deadlock when moving players to other worlds. | Mattes D | 1 | -3/+12 | |
Fixes #1039, fixes #851 | |||||
2014-05-31 | Implemented end and nether portals | Tiger Wang | 1 | -2/+2 | |
2014-05-28 | Fixed a crash in message formatter. | madmaxoft | 1 | -1/+2 | |
The code would fail if a message is sent to a player not yet added to a world. | |||||
2014-05-19 | cCompositeChat message type is now formatted | Tiger Wang | 1 | -1/+1 | |
2014-05-19 | Added client translation to achievements | Tiger Wang | 1 | -0/+29 | |
2014-05-12 | cEntity::Killed(cEntity *) Handler; Achievement triggers; cPlayer::AwardAchievement() | andrew | 1 | -5/+1 | |
2014-05-11 | Statistic Manager | andrew | 1 | -7/+41 | |
2014-05-09 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -9/+9 | |
2014-05-08 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -9/+9 | |
2014-05-07 | Change m_RepairCost to int. | Howaner | 1 | -2/+2 | |
2014-05-07 | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs. | Howaner | 1 | -0/+11 | |
2014-05-01 | Fixed warnings in ClientHandle. | madmaxoft | 1 | -1/+1 | |
2014-04-29 | Moved the rest of the Crypto objects into their own respective files. | madmaxoft | 1 | -2/+3 | |
2014-04-29 | Moved cRsaPrivateKey to PolarSSL++, rewritten using existing objects. | madmaxoft | 1 | -1/+1 | |
2014-04-28 | Revert "Changed the old invulnerable methods from the wither to the new." | Howaner | 1 | -8/+1 | |
This reverts commit d50f8f6f11f69e7e1e56be92fb2d72a5014a3e34. | |||||
2014-04-28 | Fixed projectile source filenames, indentations | archshift | 1 | -2/+2 | |
2014-04-27 | Another attempt at #889. | madmaxoft | 1 | -3/+5 | |
The packet was being sent after the state was adjusted, so another thread *may* have sent another packet in the meantime. | |||||
2014-04-27 | Moved cFireworkEntity out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-27 | Moved cArrowEntity out of ProjectileEntity.h | archshift | 1 | -0/+1 | |
2014-04-26 | Changed the old invulnerable methods from the wither to the new. | Howaner | 1 | -1/+8 | |
2014-04-26 | Fixes | Howaner | 1 | -1/+1 | |
2014-04-18 | Did some static analysis, fixed some bugs and optimized a lot of code | jfhumann | 1 | -37/+48 | |
2014-04-16 | Added asserts for proper game state. | madmaxoft | 1 | -5/+131 | |
This is to help hunt #889. | |||||
2014-04-15 | Attempted fix for the client crash with the new protocols. | madmaxoft | 1 | -0/+7 | |
2014-04-14 | Implemented the 1.7.6 protocol and authenticator. | madmaxoft | 1 | -22/+40 | |
Server works both in online and offline modes with 1.7.9. | |||||
2014-04-14 | A client UUID is generated when the server is in offline mode. | madmaxoft | 1 | -4/+10 | |
1.7.9 client works with these changes in offline mode. | |||||
2014-04-14 | Initial 1.7.6 protocol support. | madmaxoft | 1 | -0/+36 | |
Doesn't work yet because of missing UUIDs. | |||||
2014-04-14 | Bug fixes | daniel0916 | 1 | -3/+0 | |
2014-04-13 | Fixed mistake | daniel0916 | 1 | -1/+1 | |
2014-04-04 | Fixed format string mismatch. | madmaxoft | 1 | -1/+1 | |
2014-04-04 | More Clang warning fixes in the protocols. | madmaxoft | 1 | -1/+1 | |
2014-04-04 | Fixed some Clang warnings in protocols. | madmaxoft | 1 | -2/+2 | |
2014-03-25 | Protocol: Wither metadata | andrew | 1 | -0/+10 | |
2014-03-20 | Plugins can set flying speed. | madmaxoft | 1 | -2/+1 | |
2014-03-20 | Rewritten player speeds to be relative unit-less. | madmaxoft | 1 | -3/+4 | |
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-12 | Added additional macros to support the MSVC size_t format and changed all formats to use the macros | Tycho | 1 | -6/+6 | |
2014-03-11 | Fixed a load of format string errors | Tycho | 1 | -3/+3 | |
2014-03-11 | Fixed format errors in protocol | Tycho | 1 | -3/+3 | |
2014-03-09 | Adjusted style of switch/case | Jan-Fabian Humann | 1 | -15/+5 | |
2014-03-08 | Changed if-else to switch-case | Jan-Fabian Humann | 1 | -13/+11 | |
2014-03-08 | Split cClientHandle::HandleEntityAction() into three seperate functions HandleEntityCrouch, HandleEntityLeaveBed and HandleEntitySprinting. | Jan-Fabian Humann | 1 | -1/+21 | |
2014-03-08 | Fixed issues with int vs size_t and a few other warnings | Tycho | 1 | -2/+2 | |
2014-03-07 | Warnings | Tycho | 1 | -1/+1 | |
2014-03-07 | Add Flower Pots | Howaner | 1 | -1/+15 | |
2014-02-27 | Implemented ballistic missiles (fireworks) | Tiger Wang | 1 | -25/+52 | |
+ Added fireworks | |||||
2014-02-23 | Rename SkullEntity to MobHeadEntity | Howaner | 1 | -9/+9 | |
2014-02-23 | Add break to Protocol17x.cpp and use new comment delimiter | Howaner | 1 | -0/+1 | |
2014-02-23 | Add Skulls/Heads | Howaner | 1 | -0/+14 | |
2014-02-19 | Rename SkullEntity to MobHeadEntity | Howaner | 1 | -9/+9 | |
2014-02-19 | Add break to Protocol17x.cpp and use new comment delimiter | Howaner | 1 | -0/+1 | |
2014-02-18 | De-breaked stuff | Tiger Wang | 1 | -2/+0 | |
2014-02-18 | Map decorators; Map clients | andrew | 1 | -0/+20 | |
2014-02-18 | Implemented paintings, fixes #689 | Tiger Wang | 1 | -0/+15 | |
+ Implemented paintings | |||||
2014-02-18 | Implemented item frames, a part of #689 | Tiger Wang | 1 | -2/+14 | |
+ Implemented Item Frames * Fixed Pitch and Yaw being wrongly flipped in the protocol (XOFT!) | |||||
2014-02-17 | Add Skulls/Heads | Howaner | 1 | -0/+14 | |
2014-02-16 | Add Locale to ClientHandle | Howaner | 1 | -0/+2 | |
2014-02-16 | Set max. Players in the Tablist to 60 | Howaner | 1 | -1/+1 | |
2014-02-15 | Implemented cCompositeChat. | madmaxoft | 1 | -0/+153 | |
This allows plugins to send composite chat messages, containing URLs, commands to run and cmdline suggestions. Fixes #678. | |||||
2014-02-13 | Implementation of in-game maps | andrew | 1 | -0/+35 | |
2014-02-05 | Improved the signedness conversion. | madmaxoft | 1 | -2/+2 | |
2014-02-05 | Fixed a bunch of MSVS warnings | Tiger Wang | 1 | -1/+2 | |
* Possibly also fixed some bugs with pathfinding and TNT, though unlikely | |||||
2014-02-04 | Protocol 1.7: Fixed a signed / unsigned comparison warning. | madmaxoft | 1 | -2/+2 | |
2014-02-04 | Protocol 1.7 uses char for blockface. | madmaxoft | 1 | -2/+2 | |
That should fix #644 on RasPi. | |||||
2014-02-04 | Improved Type safety of eBlockFace | Tycho | 1 | -2/+2 | |
May Fix #640 | |||||
2014-01-31 | Some updates for enchanting (2) | daniel0916 | 1 | -13/+4 | |
2014-01-29 | Limited sign lines to 15 chars. | madmaxoft | 1 | -4/+5 | |
Fixes #598. | |||||
2014-01-29 | Protocol 1.7: Encryption is enabled only with auth. | madmaxoft | 1 | -1/+1 | |
2014-01-28 | Protocol 1.7: Forced encryption on all connections. | madmaxoft | 1 | -3/+99 | |
This is for testing purposes only, to find bugs in the encryption. Once the encryption is deemed stable, it will be enabled only for servers with enabled Authentication. | |||||
2014-01-26 | Fixed client packet parsing. | madmaxoft | 1 | -12/+33 | |
When the packet wouldn't fit the current buffer, the server would mis-parse the next packet. This was the cause for #541. Also modified comm logging, now each direction can be turned on separately. | |||||
2014-01-25 | Comm logging is available in both Debug and Release modes. | madmaxoft | 1 | -10/+16 | |
2014-01-25 | Protocol17: Comm logging shows the data left over from previous parse. | madmaxoft | 1 | -2/+15 | |
2014-01-24 | Added per-connection comm logging in debug mode. | madmaxoft | 1 | -0/+64 | |
It is meant for debugging only, so it is compiled only into debug mode. It is activated by starting the server with "/logcomm" parameter. | |||||
2014-01-24 | removed hook from enchanting commit | daniel0916 | 1 | -1/+1 | |
2014-01-24 | Some updates for enchanting | daniel0916 | 1 | -3/+11 | |
2014-01-23 | PolarSSL is fully used for 1.3.2 protocol encryption. | madmaxoft | 1 | -4/+4 | |
2014-01-21 | Scoreboard SendTo() | andrew | 1 | -3/+3 | |
2014-01-21 | Scoreboard protocol support | andrew | 1 | -0/+40 | |
2014-01-20 | Fix a crash but somewhere... | Alexander Harkness | 1 | -2/+1 | |
2014-01-20 | first changes for enchanting (not finished) | daniel0916 | 1 | -0/+17 | |
- added enchanting table block handler and added it to the blockhandler - added enchanting window - drop item in the slot 0 when the player close the window - added enchanting packet (1.7 only) - some more... | |||||
2014-01-19 | Removed unneeded paramters | Tiger Wang | 1 | -5/+13 | |
2014-01-19 | Switched EnchantmentSerilizer to namespace | Tycho | 1 | -2/+2 | |
2014-01-19 | Spilt Writing of Enchantments to seperate class | Tycho | 1 | -2/+3 | |
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-19 | Changed SendBlockEntity format slightly | Tiger Wang | 1 | -4/+39 | |
* Writing NBT is now in Protocol, not BlockEntity files * Fixed a last output bug | |||||
2014-01-19 | Improved command blocks | Tiger Wang | 1 | -0/+25 | |
* Their command and previous output are displayed on the client * They have a BlockHandler implementation, so you can't place blocks on them anymore + As a side effect, implemented UpdateBlockEntity | |||||
2014-01-17 | Protocol 1.7: More output on unknown packets / protocol states. | madmaxoft | 1 | -4/+21 | |
2014-01-16 | Fixed block break packet number | Tiger Wang | 1 | -1/+1 | |
2014-01-16 | Changed newline character because of issues | Tiger Wang | 1 | -3/+3 | |
2014-01-16 | Protocol 1.7: Unknown packets are dumped to log in Debug mode. | madmaxoft | 1 | -1/+14 | |
2014-01-16 | Added packet diagnostics to 1.7 protocol. | madmaxoft | 1 | -28/+36 | |
When the packet is mis-interpreted, a log message is output about the packet type and lengths. | |||||
2014-01-15 | Implemented custom names and lore | Tiger Wang | 1 | -5/+55 | |
+ Added custom names and lore + Added saving and loading + Added writing and parsing of NBT | |||||
2014-01-13 | Added handshake processing to protocol 1.7. | madmaxoft | 1 | -2/+23 | |
This fixes #495 | |||||
2014-01-12 | Renamed cEmptyMinecart to cRideableMinecart | STRWarrior | 1 | -6/+6 | |
2014-01-12 | EmptyMinecarts should be able to get a block inside of them. | STRWarrior | 1 | -1/+16 | |
2014-01-09 | Fixed wrong packet number for PluginMessage packet. | madmaxoft | 1 | -1/+1 | |
2014-01-09 | Added cClientHandle::SendPluginMessage(). | madmaxoft | 1 | -0/+12 | |
It is not yet exported in the API, though. | |||||
2014-01-07 | Fixed favicons | Tiger Wang | 1 | -1/+1 | |
2014-01-07 | Plugin messages are received and handed to plugins. | madmaxoft | 1 | -1/+1 | |
Note that MCS doesn't currently handle any channel registrations, this will come later on. | |||||
2014-01-07 | A few more touch ups | Bill Derouin | 1 | -11/+1 | |
2014-01-07 | Implement favicon for 1.7.2 | Bill Derouin | 1 | -0/+13 | |
Favicon data is a png encoded in base64 which is stored in the server and sent in the server response packet | |||||
2014-01-07 | Fixed a few MSVC warnings. | madmaxoft | 1 | -1/+1 | |
2014-01-06 | Fixed a few MSVC warnings. | madmaxoft | 1 | -1/+0 | |
2013-12-22 | Implented BroadcastParticleEffect | STRWarrior | 1 | -0/+18 | |
2013-12-19 | Fixed PlayerAbilities and creative | Tiger Wang | 1 | -10/+3 | |
2013-12-17 | Fixed player falling through the floor on spawn. | madmaxoft | 1 | -1/+5 | |
The 1.7 client seems to have math issues with exact coords. Adding 0.001 to the Y coord fixed the problem. | |||||
2013-12-15 | Fixed player spawning packet. | madmaxoft | 1 | -1/+1 | |
The player was spawned 1.62 blocks below their pos. This fixes #323. | |||||
2013-12-15 | Moved reading flags to the protocol. | STRWarrior | 1 | -1/+19 | |
2013-12-15 | Added m_IsFlying and m_CanFly. Both have a Get and Set function. Added cClientHandle::SendPlayerAbilities() function | STRWarrior | 1 | -2/+10 | |
2013-12-14 | Removed leftover debugging messages from cProtocol172. | madmaxoft | 1 | -4/+0 | |
2013-12-14 | Added SendEntityEffect and SendRemoveEntityEffect. Also a Player now gets the hunger effect when he has food poison. | STRWarrior | 1 | -0/+24 | |
2013-12-13 | Fixed threading issues affecting cProtocol172. | madmaxoft | 1 | -163/+163 | |
2013-12-12 | Fixed protocol 1.7 recovery after unknown packet. | madmaxoft | 1 | -4/+0 | |
2013-12-08 | Fixed tabcompletion packet, fixes #356 | Tiger Wang | 1 | -8/+4 | |
2013-12-08 | Fixed falling block metas, fixes #406 | Tiger Wang | 1 | -1/+1 | |
2013-12-07 | Renamed animation function | Tiger Wang | 1 | -2/+2 | |
Renamed BroadcastPlayerAnimation to BroadcastEntityAnimation. Not just players can have animations, you know. | |||||
2013-12-02 | Removed stray printf, again. | Samuel Barney | 1 | -1/+0 | |
2013-12-02 | Switched to using provided ReadItem function. | Samuel Barney | 1 | -17/+3 | |
Fixed misplacing when clicking on the bottom of bottom slabs and the top of top slabs. | |||||
2013-12-02 | Removed stray printf. | Samuel Barney | 1 | -1/+0 | |
2013-12-02 | Fixed 1.7 slab and stair placement. | Samuel Barney | 1 | -0/+19 | |
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-11-16 | fixed bug and added SpendExperience() | Daniel O'Brien | 1 | -3/+3 | |
2013-11-15 | finished #143 I believe | Daniel O'Brien | 1 | -1/+1 | |
2013-11-14 | cProtocol add SendExperience() and debugging | Daniel O'Brien | 1 | -0/+12 | |
2013-11-12 | Bundled fixes [SEE DESC] | Tiger Wang | 1 | -3/+7 | |
* BoundingBox now returns FACE_NONE + Arrows can be picked up * Arrows dug up resume physics simulations * Added sound effects for bows, lava to stone, and arrows * Fixed SoundParticleEffect on <1.7 protocols | |||||
2013-11-10 | Bundled fixes [SEE DESC] | Tiger Wang | 1 | -3/+3 | |
* Fixed compiler warning in Monster.cpp * Future proofed particle effects * Improved pickups, made less jittery | |||||
2013-11-10 | Protocol 1.7: Fixed crashes and d/c with bad packets. | madmaxoft | 1 | -3/+3 | |
Fixes #332. | |||||
2013-11-10 | Bundled fixes [SEE DESC] | Tiger Wang | 1 | -5/+35 | |
* Fixed pickups spawning in an incorrect position from a JukeBox * Pickups make a popping sound in Prtcl1.7 * Arrows make a *what sort of sound does an arrow make anyway‽* when hitting a block, and a popping sound when fired * Mobs again have metadata * Fixed Prtcl1.7 not using valid JSON to kick a client * Minecarts and arrows again have metadata | |||||
2013-11-10 | Using DoWithPlayer instead of FindAndDoWithPlayer for callbacks. | STRWarrior | 1 | -0/+2 | |
You are able to dye the collar. | |||||
2013-11-10 | Protocol 1.7: Attempt at fixing SoundParticleEffect packet. | madmaxoft | 1 | -5/+3 | |
2013-11-10 | Fixed Player animation packet. | madmaxoft | 1 | -1/+1 | |
Fixes #329. | |||||
2013-11-08 | Fixed sprinting in 1.7 protocol. | madmaxoft | 1 | -1/+17 | |
Fixes #324 | |||||
2013-11-08 | cProtocol::SendWindowOpen() signature changed. | madmaxoft | 1 | -10/+13 | |
This implements #313. | |||||
2013-11-08 | Protocol 1.7: Fixed using entities. | madmaxoft | 1 | -2/+1 | |
The mouse buttons were swapped. | |||||
2013-11-08 | Protocol 1.7: Copied Mob Metadata code from 1.2.5. | madmaxoft | 1 | -4/+195 | |
2013-11-07 | Added hardcore client effect | Tiger Wang | 1 | -1/+1 | |
Also fixed multiple world comments issue. | |||||
2013-11-07 | Fix for entity spawning in general | Tiger Wang | 1 | -3/+3 | |
2013-11-07 | Possible fix for 1.7 pickup spawning | Tiger Wang | 1 | -1/+1 | |
2013-11-07 | Protocol 1.7: Fixed the Spawn Mob packet. | madmaxoft | 1 | -1/+1 | |
This should fix #318 | |||||
2013-11-06 | Protocol 1.7: Added the remaining server-bound packets. | madmaxoft | 1 | -14/+99 | |
2013-11-06 | Protocol 1.7: Added more server-bound packets. | madmaxoft | 1 | -25/+132 | |
2013-11-06 | Protocol 1.7: Finished the client-bound packets. | madmaxoft | 1 | -7/+32 | |
2013-11-05 | Protocol 1.7: More client-bound packets. | madmaxoft | 1 | -17/+27 | |
Also removed the SendWholeInventory(cInventory &) function, as promised in prev commit. | |||||
2013-11-04 | Protocol 1.7: Added more client-bound packets. | madmaxoft | 1 | -15/+164 | |
Untested, still more to come. | |||||
2013-11-03 | Protocol 1.7: Added client status packet. | madmaxoft | 1 | -1/+22 | |
2013-11-03 | Protocol 1.7: Rewritten packet-sending to use cPacketizer. | madmaxoft | 1 | -159/+316 | |
Implemented enough of the protocol that the client now spawns in the world (but cannot do anything). | |||||
2013-11-01 | Protocol 1.7: Implemented the first batch of sent packets. | madmaxoft | 1 | -0/+577 | |
2013-10-31 | Protocol 1.7: Added skeleton functions for reading client packets. | madmaxoft | 1 | -17/+317 | |
Untested, this is skeleton code only. | |||||
2013-10-30 | Protocol 1.7: Added status ping handling. | madmaxoft | 1 | -0/+25 | |
2013-10-30 | Added 1.7 to protocol recognizer. | madmaxoft | 1 | -0/+216 | |
The 1.7 protocol currently only reports server description and playercount. |