summaryrefslogtreecommitdiffstats
path: root/Tools (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed all Printf-family functions from StringUtils.Mattes D2023-05-162-26/+24
| | | | | Replaced them with fmt::format calls, including changes to the format strings. Also changed the format strings to use FMT_STRING, so that the format is checked compile-time against the arguments. Also fixed code-style violations already present in the code.
* ProtoProxy: encrypt in-placeTiger Wang2021-07-062-16/+6
|
* cIsThread cleanupTiger Wang2021-03-301-1/+1
| | | | | + Semi-gracefully handle unexpected exceptions * No-one cared about the return values, remove them
* Fix Windows XP to 7 compatibility (#5167)Tiger Wang2021-03-281-1/+1
| | | | | * Partially reverts 01a4e696b * Unify thread names - Remove use of GetThreadId API
* Do protocol decryption in-place (with CryptoAPI on Windows) (#5145)Tiger Wang2021-03-081-2/+2
|
* zlib -> libdeflate (#5085)Tiger Wang2021-01-1114-696/+159
| | | | | | + Use libdeflate + Use std::byte * Fix passing temporary to string_view + Emulate make_unique_for_overwrite
* Deleted BiomeDef.h and ChunkDef.h from Globals.h (#4885)KingCol132020-09-253-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Removed BiomeDef.h * Removed ChunkDef.h from Globals.h * Added to CONTRIBUTORS. * Re-added empty last line to Globals.h * Included stddef and StringUtils in BiomeDef.h * Fixed build tools compiling. It compiles, but at what cost? * Added include to src/Generating/Trees.h * Include added in ChunkGeneratorThread.h * Moved rearranged includes in LineBlockTracer.cpp * Re-arrange headers in ChunkInterface.cpp * Included ChunkDef.h in Path.h * Included ChunkDef.h in NBTChunkSerializer.h * Rearranged included and added required includes to headers. * Removed unnecessary included in StringUtils.h.
* Update submodulesTiger Wang2020-07-232-11/+7
|
* Address commentsTiger Wang2020-07-125-15/+14
|
* More CMake cleanupTiger Wang2020-07-125-39/+6
|
* Resolve IPO flags mismatchTiger Wang2020-05-314-4/+1
|
* Upgrade to C++17 [CMake] (#4717)Tiger Wang2020-05-162-6/+0
| | | * Make our CMake slightly less insane
* Update logging code to reduce unnecessary string copying:Peter Bell2020-05-162-0/+2
| | | | | | * Write into a single fmt::memory_buffer * Use string_view instead of AString for listener callbacks * Also collapsed vFLOG and vLOG functions into one per formatting type
* Cleanup unneeded globals (#4736)peterbell102020-05-108-394/+1
|
* Enable C++17 in buildPeter Bell2020-05-092-0/+14
|
* Remove old Android leftovers (#4722)Mat2020-05-077-62/+0
|
* Update fmt to 6.2.0 (#4718)peterbell102020-05-056-21/+27
| | | * Update fmt to 6.2.0
* Require semi-colon at end of function-like macros (#4719)peterbell102020-05-051-17/+17
|
* Add Zombie VillagersBond-0092020-04-102-31/+33
|
* Added an UpgradeBlockTypePalette check script.Mattes D2020-01-131-0/+140
|
* BlockTypePalette: Load from TSV or original reports' JSON.Mattes D2019-12-284-116/+355
|
* Improved large jungle and acacia tree generation (#4413)NiLSPACE2019-12-222-0/+37
|
* Add ProtocolBlockTypePalette (#4391)E142019-09-223-0/+154
|
* cppcheck found an out of bound array access. (#4182)Michael Hinz2018-02-041-1/+1
| | | | | | | | The ChunkHeader array is five unsigned chars big, they're indexed 0..4 - but in the error message (when ChunkHeader[4] isn't 2 - indicating zlib compression, which seems to be the only allowed compression method for chunks) the contents of ChunkHeader[5] is printed. Maybe not so dangerous, but it'll give garbage results in the log.
* Add the fmt library (#4065)peterbell102018-01-0312-95/+40
| | | | | | | * 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.
* Fix style of ToolsAlexander Lyons Harkness2017-12-2445-773/+626
|
* Fix Travis build (#4101)peterbell102017-12-221-4/+4
| | | | | | | | | Stop using gdb on osx - was breaking the build Add clang 3.5 build as travis now defaults to 5.0 Fix unknown-warning-option errors on AppleClang ProtoProxy: Use nullptr UrlClientTest: add override to callback destructor Update jsoncpp to use nullptr
* Fix tool builds on AppleClangpeterbell102017-10-215-115/+99
|
* Removed UTF-8 BOM (#4033)Lukas Pioch2017-09-194-4/+4
|
* Update mbedtls to 2.5.1 (#3964)peterbell102017-08-304-21/+21
| | | | | | | | | | | | | | | | | | | | | | * Renaming changes: * macro prefix "POLARSSL" -> "MBEDTLS" * functions now prefixed with "mbedtls_" * rename PolarSSL++ -> mbedTLS++ * rename polarssl submodule * Use mbedtls' AES-CFB8 implementation. * Add cSslConfig to wrap mbedtls_ssl_config * Update cTCPLink and cBlockingSslClientSocket to use cSslConfig * Use cSslConfig in cHTTPServer * Use cSslConfig for cMojangAPI::SecureRequest * CI Fixes * Set -fomit-frame-pointer on the right target
* Add cUUID class (#3871)peterbell102017-08-251-0/+2
|
* Minor changes (#3909)mathiascode2017-08-242-7/+7
|
* Remove double includes part 2 (#3890)peterbell102017-08-034-2/+21
|
* Removed the LeakFinder for Windows. (#3777)Mattes D2017-06-194-17/+10
|
* Added some blocks and items (#3503)mathiascode2017-02-141-0/+6
|
* NoiseSpeedTest: use a single templatized function.Mattes D2016-11-151-36/+8
|
* Added NoiseSpeedTest project.Mattes D2016-11-156-0/+736
|
* Fixed type-casting-related warnings.Mattes D2016-08-2410-70/+55
|
* CMake: Remove needless minimum version specifications.Mattes D2016-07-185-14/+0
|
* Added GrownBiomeGenVisualiser.Mattes D2016-05-296-0/+838
|
* Renamed leftover strings to Cuberite / Server, as needed.Mattes D2016-01-012-3/+3
| | | | Also upgraded the user setting file for MSVC to 2013.
* Removed offending tr1 references.Alexander Harkness2015-12-224-83/+34
|
* Added HTTPS links wherever they are supported.Alexander Harkness2015-12-193-813/+812
|
* Improved types of utf 16 stringstycho2015-10-021-4/+4
|
* Increase robustness of the logging subsystemtycho2015-09-152-14/+20
|
* Changing the shared_ptr/unique_ptr constructors to the make_shared/make_unique functionsbibo382015-07-121-4/+4
|
* Daemon support on Linux.Anthony Birkett2015-06-052-2/+2
| | | | Added null console log listener, avoid printf() when stdout is closed.
* Fix other clang 3.6 committycho2015-05-242-2/+8
|
* Disable -Werror for warnings in tools.tycho2015-05-242-2/+4
|
* Disable warnings in MCADefrag, ProtoProxy and teststycho2015-05-232-3/+6
|
* Update submodulesTiger Wang2015-05-021-1/+1
|
* QtBiomeVisualiser: Fixed compilation and INI loading.Mattes D2015-03-283-6/+13
|
* Added VarInt64, normalized cPacketizer datatype names.Mattes D2015-03-221-6/+6
|
* ProtoProxy: Fixed connection and logging.Mattes D2015-03-224-15/+22
|
* Unified cByteBuffer types.Mattes D2015-03-213-338/+351
| | | | cByteBuffer now reads and writes any of the [U]Int<N> types.
* Fixed Server.cppCreaprog2015-02-161-1/+1
|
* Fixed Server.cppCreaprog2015-02-151-4/+3
|
* Fixed Server.cppCreaprog2015-02-151-0/+1
|
* Fixed Server.cppCreaprog2015-02-151-4/+4
|
* Fixed Server.cppCreaprog2015-02-151-4/+4
| | | Performance improvement.
* Fixed RCONClient compilation.Mattes D2015-01-273-14/+55
|
* ProtoProxy: Added socket startup error reporting.Matyas Dolak2015-01-231-3/+31
| | | | Fixes CID 66433, fixes CID 66443.
* ProtoProxy: Fixed warnings in Connection.cpp.Matyas Dolak2015-01-211-87/+89
|
* ProtoProxy: Fixed warnings in Connection.cpp.Matyas Dolak2015-01-212-16/+24
|
* ProtoProxy: Log block change packet details.Mattes D2014-12-251-0/+3
|
* Fixed tools compilation.Mattes D2014-12-253-0/+5
| | | | Fixes errors introduced in 081e7ddd028d9382bd52c2b117dae6b6f84225e5.
* ProtoProxy: Added a sanity check to metadata string lengths.Mattes D2014-12-211-2/+6
| | | | Fixes CID 66415.
* MCADefrag: Added a sanity check for chunk size.Mattes D2014-12-211-1/+1
| | | | Fixes CID 66448.
* Added RabbitsMasy982014-12-202-0/+2
|
* Added Entity GuardianMasy982014-12-182-0/+2
|
* Fixed c++11 branch issues.Mattes D2014-12-071-1/+2
|
* Tools: Removed unused Timer.* file from CMakeLists.txt.Mattes D2014-12-042-4/+1
|
* Merged branch 'origin/master' into c++11.Mattes D2014-12-043-2/+37
|\
| * Fixed MCADefrag compilation.Mattes D2014-11-291-0/+8
| |
| * Fixed QtBiomeVisualiser compilation.Mattes D2014-11-291-2/+17
| |
| * Fixed missing files in ProtoProxy.Mattes D2014-11-291-0/+8
| |
* | Merge remote-tracking branch 'origin/master' into c++11Tiger Wang2014-11-2318-510/+737
|\| | | | | | | | | | | Conflicts: src/Noise/Noise.h src/World.h
| * QtBiomeVisualiser: Fixed default zoom selection.Mattes D2014-10-311-5/+1
| |
| * QtBiomeVisualiser: Set start zoom to 25%, just like AMIDST.Mattes D2014-10-301-1/+3
| |
| * QtBiomeVisualiser: Added a prototyping int generator flavor.Mattes D2014-10-302-0/+3
| | | | | | | | This generator is easier to manipulate, since it doesn't require rewriting the sizes in the template parameters. On the other hand, it doesn't optimize so well, so it's a bit slower.
| * Merge remote-tracking branch 'origin/master' into GrownBiomesMattes D2014-10-302-9/+72
| |\
| | * QtBiomeVisualiser: Generator uses all machine threads.Mattes D2014-10-292-9/+72
| | | | | | | | | | | | The previous limit of 1 thread was lifted, now the generator source runs on all CPU threads available.
| * | Merged branch 'master' into GrownBiomes.Mattes D2014-10-2817-437/+598
| |\|
| | * QtBiomeVisualiser: Added quick shutdown to region loaders.Mattes D2014-10-283-1/+18
| | | | | | | | | | | | Now the app shuts down immediately even if regions are queued for loading.
| | * QtBiomeVisualiser: Fixed mouse zoom vs menu zoom.Mattes D2014-10-281-1/+2
| | |
| | * QtBiomeVisualiser: Reduced memory usage.Mattes D2014-10-284-182/+156
| | |
| | * QtBiomeVisualiser: Fixed random regions not rendered.Mattes D2014-10-282-0/+4
| | |
| | * Merged remote-tracking branch 'origin/master'.Mattes D2014-10-281-1/+1
| | |\
| | | * QtBiomeVisualiser: Fixed compilation on Linux.Mattes D2014-10-284-5/+14
| | | |
| | * | QtBiomeVisualiser: Attempt at fixing Linux compilation.Mattes D2014-10-281-1/+1
| | | |
| | * | QtBiomeVisualiser: Switched caching to entire regions.Mattes D2014-10-2715-249/+409
| | |/ | | | | | | | | | This speeds up the rendering preparation for small zooms.
| * / Added new biomegen: GrownMattes D2014-10-262-67/+69
| |/
* | Compilation fixesTiger Wang2014-11-232-5/+3
| |
* | Merged branch 'master' into c++11.Mattes D2014-10-244-5/+5
|\|
| * QtBiomeVisualiser: Moved the IniFile lib.Mattes D2014-10-234-5/+5
| |
* | Compile fix?Tiger Wang2014-10-213-6/+0
|/
* Generator: Rewritten to use SharedPtrs.Mattes D2014-10-193-4/+4
|
* QtBiomeVisualiser: Added mouse hover info.Mattes D2014-10-037-147/+228
|
* QtBiomeVisualiser: Zoom is now limited and aligned to steps.madmaxoft2014-10-034-59/+169
|
* QtBiomeVisualiser: Seed is read properly.madmaxoft2014-09-292-9/+8
|
* Merge pull request #1466 from mc-server/endofsupportMattes D2014-09-281-2/+1
|\ | | | | Removed protocols 1.2 to 1.6
| * Compilation fixTiger Wang2014-09-281-2/+1
| |
* | QtBiomeVisualiser: fixed compilation.madmaxoft2014-09-271-1/+10
|/
* QtBiomeVisualiser: Fixed MSVC path-crossing.madmaxoft2014-09-247-10/+15
| | | | MSVC would occasionally compile the wrong CPP file - the same name, but wrong path.
* QtBiomeVisualiser: Fixed confusion about Globals.h.madmaxoft2014-09-235-21/+21
|
* QtBiomeVisualiser: Implemented live-update for the generator setup.madmaxoft2014-09-225-17/+49
|
* QtBiomeVisualiser: generator source is read from generator setup ini.madmaxoft2014-09-223-16/+13
|
* QtBiomeVisualiser: Moved the generator setup into a side-pane.madmaxoft2014-09-225-39/+96
|
* QtBiomeVisualiser: Added the base for INI editting.madmaxoft2014-09-215-20/+266
|
* QtBiomeVisualiser: Added list of vanilla worlds.madmaxoft2014-09-202-7/+145
|
* QtBiomeVisualiser: Added support for loading Anvil worlds.madmaxoft2014-09-204-5/+320
|
* QtBiomeVisualiser: More gcc fixes.madmaxoft2014-09-181-2/+2
|
* QtBiomeVisualiser: Fixed linux compilation.madmaxoft2014-09-185-0/+6
|
* QtBiomeVisualiser: Fixed colors and read failures.madmaxoft2014-09-151-6/+5
|
* QtBiomeVisualiser: Added reloading.Mattes D2014-09-156-4/+49
|
* QtBiomeVisualiser: removed multithreading.Mattes D2014-09-152-65/+10
| | | | It was slowing things down, the granularity is too fine.
* QtBiomeVisualiser: Added multithreading.Mattes D2014-09-153-23/+102
| | | | For some reason this makes the UI less responsive.
* QtBiomeVisualiser: Extended zoom down below 100%.Mattes D2014-09-142-16/+80
|
* QtBiomeVisualiser: Added mouse and keyboard view control.Mattes D2014-09-142-4/+137
| | | | Mouse dragging or WASD pans view, mouse wheel or QE zooms.
* QtBiomeVisualiser: Removed build-specific variables.Mattes D2014-09-141-3/+0
| | | | These should be set in the project configuration instead, passed directly to qmake.
* Added new Qt-based biome visualiser.Mattes D2014-09-1437-2181/+1482
| | | | Compile with Qt 5.1+
* AnvilStats: Fixed thread start race condition.Mattes D2014-08-272-10/+24
| | | | The whole program would sometimes fail to process anything because the threads were waited-for before they were started.
* AnvilStats: Added per-height spawner stats.Mattes D2014-08-272-4/+47
|
* AnvilStats: Ignoring output XLS files.Mattes D2014-08-271-0/+1
|
* AnvilStats: Added cmake directive for larger executable stack.Mattes D2014-08-271-0/+22
| | | | This fixes runtime "stack overflow" errors caused by large stack-allocated arrays used for decompression.
* AnvilStats: Fixed Win64 compilation.Mattes D2014-08-271-1/+1
|
* AnvilStats: initial per-height blocktype implementation (WIP).madmaxoft2014-08-273-5/+96
|
* AnvilStats: Rewritten to use CMake.madmaxoft2014-08-274-523/+126
|
* Renamed LoggersTycho2014-08-123-13/+13
|
* Fixed Tools to work with new logging frameworkTycho2014-08-103-10/+18
|
* Made redundant semi not an error, fixed one more.archshift2014-07-241-1/+1
|
* Fixed the BiomeVisualiser project.madmaxoft2014-06-201-1/+17
| | | | Compiles under MSVC2008 again, was missing some shared files.
* Merge pull request #1011 from SphinxC0re/SomeWarningFixesMattes D2014-06-041-0/+1
|\ | | | | Fixed some warnings
| * Update Globals.hJulian Laubstein2014-06-031-1/+1
| |
| * Fixed some warningsJulian Laubstein2014-05-191-0/+1
| |
* | AnvilStats: Added new biome colors.Mattes D2014-06-012-34/+3
| |
* | Hot-fixed AnvilStats compilation for MSVC2013.Mattes D2014-06-013-13/+56
| |
* | Fixed MCADefrag compilation.madmaxoft2014-05-201-0/+15
|/
* Merge branch 'master' into SslWebAdminMattes D2014-05-101-1/+1
|\
| * Fixed ProtoProxy compilation in MSVC2013.madmaxoft2014-05-041-1/+1
| | | | | | | | Fixes #983.
* | ProtoProxy: Renamed PublicKey to CryptoKey.madmaxoft2014-05-012-4/+4
|/
* Moved the rest of the Crypto objects into their own respective files.madmaxoft2014-04-294-14/+12
|
* Moved cPublicKey to its separate file in PolarSSL++.madmaxoft2014-04-292-0/+3
|
* Fixed ProtoProxy.madmaxoft2014-04-294-3/+25
|
* ProtoProxy: Fixed weird gcc compilation errors.madmaxoft2014-04-141-16/+22
|
* ProtoProxy: Added 1.7.9 compatibility.madmaxoft2014-04-141-0/+29
|
* ProtoProxy: Fixed a few Clang and MSVC warnings.madmaxoft2014-04-042-4/+8
|
* Merge branch 'unreachable'madmaxoft2014-03-201-4/+0
|\
| * Fixed a couple of unneeded returns in ProtoProxyTycho2014-03-141-4/+0
| |
* | ProtoProxy: Fixed MSVC compilation.madmaxoft2014-03-201-2/+4
|/
* Merge branch 'Werror' into warningsTycho2014-03-121-2/+2
|\ | | | | | | | | Conflicts: src/Globals.h
| * Fixed comments an assertTycho2014-03-121-2/+2
| |
* | Added macros support to toolsTycho2014-03-112-2/+10
|/
* Fixed xofts issuesTycho2014-03-101-1/+1
|
* Fixed Issues in ProtoProxyTycho2014-03-102-9/+9
|
* ProtoProxy: ignoring PolarSSL build files.madmaxoft2014-02-181-0/+1
|
* Now uses setflags for flagsTycho2014-02-161-55/+4
|
* COnverted ProtoProxy to use library CMakeListsTycho2014-02-162-18/+5
|
* Allow building MCADefrag at the same time as MCServerTycho2014-02-161-4/+2
|
* CHange MCADefrag CMakelist to use zlib CMakeListTycho2014-02-161-9/+4
|
* rewrote MCADefrag CMakelist to use SetflagsTycho2014-02-161-56/+16
|
* MCADefrag: Implemented recompression.madmaxoft2014-02-132-5/+136
| | | | This finalizes #639.
* MCADefrag: Fixed bugs, now produces valid MCA files.madmaxoft2014-02-132-3/+22
|
* MCADefrag: Initial implementation.madmaxoft2014-02-136-0/+799
| | | | | Partially implements #639. This only defragments the chunks, without recompressing them.
* Fixed Compile errorsTycho2014-02-031-1/+1
| | | | c++11 introduces scoped enums, so the code didn't fail in clang
* Increased Type safety of BiomesTycho2014-02-031-1/+1
| | | | | Changed a number of funcictions from using integers to store biomes to using EMCSBiome Note that switching from an int to an Enum is a non-breaking chang to the lua bindings
* ProtoProxy: Added encryption support.madmaxoft2014-01-281-2/+19
|
* Merge pull request #575 from worktycho/GeneratingBenchmarkMattes D2014-01-252-0/+19
|\ | | | | More Interfaces to decouple Generator from the rest of the code
| * Merge branch 'master' into GeneratingBenchmarkTycho2014-01-201-1/+14
| |\ | | | | | | | | | this merge is necessary,
| * | First attempt at Compiling Generator seperatlyTycho2014-01-192-0/+19
| | |
* | | ProtoProxy: Modified to use PolarSSL.madmaxoft2014-01-256-60/+45
| | |
* | | ProtoProxy: Fixed connection on *nix.madmaxoft2014-01-241-1/+2
| |/ |/|
* | ProtoProxy: UpdateBlockEntity NBT is writtenTiger Wang2014-01-191-1/+14
|/
* ProtoProxy: Compiles under Linux.madmaxoft2014-01-174-28/+43
|
* ProtoProxy: Fixed inversed typedef.madmaxoft2014-01-171-1/+1
| | | | I must be going crazy...
* ProtoProxy: Fixed compilation in Windows and in Linux.madmaxoft2014-01-173-16/+21
|
* ProtoProxy: Fixed #include filename case.madmaxoft2014-01-171-4/+4
|
* Merge pull request #545 from mc-server/VarArgsMattes D2014-01-151-4/+8
|\ | | | | Var args
| * Fixed ProtoProxy compilation.madmaxoft2014-01-151-4/+8
| |
* | ProtoProxy: use CMake to generate the MSVC project files.madmaxoft2014-01-154-308/+156
|/
* ProtoProxy: Fixed login kick packet direction.madmaxoft2014-01-131-1/+1
|
* BiomeVisualiser: Added zooming using the 1 - 8 keys.Matyas Dolak2014-01-106-20/+76
|
* ProtoProxy: Fixed favicon relaying.madmaxoft2014-01-081-2/+2
| | | | The buffer was too small for the favicon; now it's dynamic.
* ProtoProxy: Fixed description-changing to work with 1.7.4.madmaxoft2013-12-151-2/+3
|
* ProtoProxy: Fixed metadata parsing.madmaxoft2013-12-051-9/+27
|
* BiomeVisualiser: Using the common BiomeGen creation code.madmaxoft2013-11-281-67/+1
|
* BiomeVisualiser: Added the TwoLevel biome generator.madmaxoft2013-11-281-0/+4
|
* BiomeVisualiser: The biome settings are read from a file.madmaxoft2013-11-283-5/+102
|
* Fixed RCONClient after foldermove.madmaxoft2013-11-281-18/+18
|
* Fixed MemDumpAnalysis after foldermove.madmaxoft2013-11-283-44/+41
|
* Fixed BlockZapper after folder move.madmaxoft2013-11-286-44/+37
|
* Fixed BiomeVisualiser after folder move.madmaxoft2013-11-284-39/+47
|
* Fixed AnvilStats after folder move.madmaxoft2013-11-285-30/+30
|
* ProtoProxy: Fixed after folder move.madmaxoft2013-11-282-30/+34
|
* AnvilStats: Fixed compilation.madmaxoft2013-11-242-2/+3
|
* BiomeVisualiser: Added 1.7 biomes, recolored using AMIDST colors.madmaxoft2013-11-244-32/+141
|
* RCONClient: Initial implementation.madmaxoft2013-11-246-0/+864
| | | | Fix #79.
* ProtoProxy: Added dblquotes.madmaxoft2013-11-101-2/+2
|
* ProtoProxy: Fixed SpawnMob packet.madmaxoft2013-11-071-12/+13
|
* ProtoProxy: Fixed the SpawnObjectVehicle packet.madmaxoft2013-11-031-1/+13
|
* ProtoProxy: Removed unused enums.madmaxoft2013-11-031-109/+3
|
* ProtoProxy: Fixed handling of incomplete packets.madmaxoft2013-11-031-0/+2
|
* ProtoProxy: Working 1.7 protocol.madmaxoft2013-10-292-158/+160
| | | | Players can login, move around, dig blocks.
* ProtoProxy: Updated the server-side packets to 1.7.madmaxoft2013-10-291-171/+239
| | | | Forgotten a file in the previous commit.
* ProtoProxy: Updated the server-side packets to 1.7.madmaxoft2013-10-291-0/+5
|
* ProtoProxy: The login part of the protocol is implemented.madmaxoft2013-10-292-220/+229
|
* ProtoProxy: Implemented 1.7.2 status request / response / ping.madmaxoft2013-10-282-113/+272
|
* ProtoProxy: Fixed compilation after the previous cByteBuffer changes.madmaxoft2013-10-281-0/+4
|
* BiomeVisualiser: fixed crash at shutdown caused by bad loggingmadmaxoft2013-10-122-3/+3
|
* Updated BiomeVisualiser to compile again.madmaxoft2013-10-113-9/+24
|
* ProtoProxy: Added handling for the Explosion packet.madmaxoft2013-09-192-0/+46
| | | | This will help #129.
* ProtoProxy: Removed the per-packet sleep from the DEBUG version.madmaxoft2013-09-191-2/+9
| | | | It is now enabled by defining a macro, by default off.
* ProtoProxy: Logs are saved to a Logs subfolder.madmaxoft2013-09-082-1/+12
|
* ProtoProxy: The MOTD is modified to indicate ProtoProxy presence.madmaxoft2013-09-081-7/+34
|
* Merged branch 'Projectiles'.madmaxoft2013-09-072-15/+27
|\
| * ProtoProxy: Improved logging for fixed-point numbers.madmaxoft2013-09-041-14/+26
| | | | | | | | "Absolute integers" and velocity are reported including their fractional part.
| * AnvilStats: ignoring the world subfoldermadmaxoft2013-09-011-0/+1
| |
* | AnvilStats: Added combined HeightBiome mapmadmaxoft2013-08-308-4/+368
| |
* | Merge branch 'Projectiles'madmaxoft2013-08-307-17/+332
|\|
| * AnvilStats: Implemented a cImageComposingCallback class.madmaxoft2013-08-303-0/+292
| | | | | | | | This will ease the creation of callbacks that produce per-region images of stuff.
| * AnvilStats: Callbacks can now use CALLBACK_CONTINUE and CALLBACK_ABORT instead of bool return values.madmaxoft2013-08-301-15/+21
| | | | | | | | This makes the code slightly easier to understand.
| * AnvilStats: Added the callback for region begin and end.madmaxoft2013-08-303-3/+18
| |
| * AnvilStats: Ignoring the build foldersmadmaxoft2013-08-301-0/+2
| |
* | ProtoProxy: Log individual chunks in MapChunkBulk packet.madmaxoft2013-08-301-3/+32
|/
* ProtoProxy: Next packet type is logged for client as well.madmaxoft2013-08-301-2/+2
|
* ProtoProxy: Uses cTimer for the timing information.madmaxoft2013-08-304-5/+14
| | | | Previously used clock() is not suitable for the task, unfortunately it worked in MSVC.
* Fixed ProtoProxy compilation, added client Kick handling.madmaxoft2013-08-252-0/+18
|
* Feature and bugfixes [SEE DESC]Tiger Wang2013-08-161-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
* ProtoProxy: Tab completion logging lists the last item, toomadmaxoft2013-07-311-0/+4
|
* ProtoProxy: Added the tab completion packet parsingmadmaxoft2013-07-312-0/+42
|
* Changed everyting to Unix line endings.Alexander Harkness2013-07-2971-11956/+11956
|
* ProtoProxy now properly waits for both sides to establish encryptionmadmaxoft2013-07-282-15/+54
| | | | No more "End of stream" kicks in the client. Data sent while one connection is encrypted and the other is not is buffered and sent when the other link establishes encryption.
* Set up proper ignores for ProtoProxymadmaxoft2013-07-281-0/+4
|
* Added a .gitignore for the anvilstats folder.Alexander Harkness2013-07-281-0/+5
|
* 1.6.2 protocol implemented, both in MCServer and in ProtoProxymadmaxoft@gmail.com2013-07-082-0/+70
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1669 0a769ca7-a7f5-676a-18bf-c427514a06d6
* AnvilStats: moved into the Tools foldermadmaxoft@gmail.com2013-07-0622-0/+3862
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1658 0a769ca7-a7f5-676a-18bf-c427514a06d6
* ProtoProxy: moved into the Tools foldermadmaxoft@gmail.com2013-07-0610-0/+3358
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1657 0a769ca7-a7f5-676a-18bf-c427514a06d6
* MemDumpAnalysis: moved into the Tools folder; uses the global Expat library now.madmaxoft@gmail.com2013-07-067-0/+881
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1656 0a769ca7-a7f5-676a-18bf-c427514a06d6
* BiomeVisualiser: Moved into the Tools foldermadmaxoft@gmail.com2013-07-0617-0/+1942
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1655 0a769ca7-a7f5-676a-18bf-c427514a06d6
* ToLuaDoxy: initial importmadmaxoft@gmail.com2013-06-046-0/+2406
| | | | git-svn-id: http://mc-server.googlecode.com/svn/trunk@1544 0a769ca7-a7f5-676a-18bf-c427514a06d6
* BlockZapper: Initial import, can zap blocks but not entitiesmadmaxoft@gmail.com2013-05-0111-0/+1417
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1439 0a769ca7-a7f5-676a-18bf-c427514a06d6