├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── compiler │ ├── clang │ │ └── settings.cmake │ ├── gcc │ │ └── settings.cmake │ └── msvc │ │ └── settings.cmake ├── genrev.cmake ├── macros │ ├── AutoCollect.cmake │ ├── CheckPlatform.cmake │ ├── ConfigureBaseTargets.cmake │ ├── ConfigureScripts.cmake │ ├── EnsureVersion.cmake │ ├── FindBoost.cmake │ ├── FindGit.cmake │ ├── FindMySQL.cmake │ ├── FindOpenSSL.cmake │ ├── FindPCHSupport.cmake │ └── GroupSources.cmake ├── options.cmake ├── platform │ ├── cmake_uninstall.in.cmake │ ├── unix │ │ └── settings.cmake │ └── win │ │ └── settings.cmake └── showoptions.cmake ├── contrib ├── check_updates.sh ├── pushci.sh ├── sunstrider │ ├── fill_spell_template_override.php │ ├── fill_spell_template_override.php.html │ ├── generate_script_loader.php │ ├── init.d │ │ ├── readme.txt │ │ ├── sunrestarter │ │ ├── sunrestartloop │ │ └── sunserver │ ├── script_converter │ │ ├── README.txt │ │ ├── ScriptConverter.php │ │ ├── convert.bat │ │ └── convert.php │ └── systemd │ │ ├── backup_world.sh │ │ ├── logrotate.conf │ │ ├── logrotate.sh │ │ ├── sunauthserver.service │ │ ├── sunworldserver.service │ │ ├── sunworldserver_backup.service │ │ └── sunworldserver_backup.timer └── wowmania │ ├── ArenaSpectator │ ├── ArenaSpectator.lua │ ├── ArenaSpectator.toc │ ├── border.tga │ ├── combatfeedback.lua │ └── coolveticarg.ttf │ ├── CMakeLists.txt │ ├── backup.sh │ ├── build.sh │ ├── compile_at_night.sh │ ├── optimizer.sh │ ├── restarter.sh │ └── watch_dump.sh ├── dep ├── CMakeLists.txt ├── SFMT │ ├── CHANGE-LOG.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── SFMT-alti.h │ ├── SFMT-common.h │ ├── SFMT-neon.h │ ├── SFMT-params.h │ ├── SFMT-params11213.h │ ├── SFMT-params1279.h │ ├── SFMT-params132049.h │ ├── SFMT-params19937.h │ ├── SFMT-params216091.h │ ├── SFMT-params2281.h │ ├── SFMT-params4253.h │ ├── SFMT-params44497.h │ ├── SFMT-params607.h │ ├── SFMT-params86243.h │ ├── SFMT-sse2-msc.h │ ├── SFMT-sse2.h │ ├── SFMT.c │ ├── SFMT.h │ └── randomc.h ├── boost │ └── CMakeLists.txt ├── bzip2 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── blocksort.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ └── randtable.c ├── efsw │ ├── .hg_archival.txt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── efsw │ │ │ ├── efsw.h │ │ │ └── efsw.hpp │ └── src │ │ ├── efsw │ │ ├── Debug.cpp │ │ ├── Debug.hpp │ │ ├── DirWatcherGeneric.cpp │ │ ├── DirWatcherGeneric.hpp │ │ ├── DirectorySnapshot.cpp │ │ ├── DirectorySnapshot.hpp │ │ ├── DirectorySnapshotDiff.cpp │ │ ├── DirectorySnapshotDiff.hpp │ │ ├── FileInfo.cpp │ │ ├── FileInfo.hpp │ │ ├── FileSystem.cpp │ │ ├── FileSystem.hpp │ │ ├── FileWatcher.cpp │ │ ├── FileWatcherCWrapper.cpp │ │ ├── FileWatcherFSEvents.cpp │ │ ├── FileWatcherFSEvents.hpp │ │ ├── FileWatcherGeneric.cpp │ │ ├── FileWatcherGeneric.hpp │ │ ├── FileWatcherImpl.cpp │ │ ├── FileWatcherImpl.hpp │ │ ├── FileWatcherInotify.cpp │ │ ├── FileWatcherInotify.hpp │ │ ├── FileWatcherKqueue.cpp │ │ ├── FileWatcherKqueue.hpp │ │ ├── FileWatcherWin32.cpp │ │ ├── FileWatcherWin32.hpp │ │ ├── Log.cpp │ │ ├── Mutex.cpp │ │ ├── Mutex.hpp │ │ ├── String.cpp │ │ ├── String.hpp │ │ ├── System.cpp │ │ ├── System.hpp │ │ ├── Thread.cpp │ │ ├── Thread.hpp │ │ ├── Utf.hpp │ │ ├── Utf.inl │ │ ├── Watcher.cpp │ │ ├── Watcher.hpp │ │ ├── WatcherFSEvents.cpp │ │ ├── WatcherFSEvents.hpp │ │ ├── WatcherGeneric.cpp │ │ ├── WatcherGeneric.hpp │ │ ├── WatcherInotify.cpp │ │ ├── WatcherInotify.hpp │ │ ├── WatcherKqueue.cpp │ │ ├── WatcherKqueue.hpp │ │ ├── WatcherWin32.cpp │ │ ├── WatcherWin32.hpp │ │ ├── base.hpp │ │ ├── inotify-nosys.h │ │ ├── platform │ │ │ ├── platformimpl.hpp │ │ │ ├── posix │ │ │ │ ├── FileSystemImpl.cpp │ │ │ │ ├── FileSystemImpl.hpp │ │ │ │ ├── MutexImpl.cpp │ │ │ │ ├── MutexImpl.hpp │ │ │ │ ├── SystemImpl.cpp │ │ │ │ ├── SystemImpl.hpp │ │ │ │ ├── ThreadImpl.cpp │ │ │ │ └── ThreadImpl.hpp │ │ │ └── win │ │ │ │ ├── FileSystemImpl.cpp │ │ │ │ ├── FileSystemImpl.hpp │ │ │ │ ├── MutexImpl.cpp │ │ │ │ ├── MutexImpl.hpp │ │ │ │ ├── SystemImpl.cpp │ │ │ │ ├── SystemImpl.hpp │ │ │ │ ├── ThreadImpl.cpp │ │ │ │ └── ThreadImpl.hpp │ │ └── sophist.h │ │ └── test │ │ └── efsw-test.cpp ├── fmt │ ├── CMakeLists.txt │ ├── CONTRIBUTING.rst │ ├── ChangeLog.rst │ ├── LICENSE.rst │ ├── README.rst │ └── fmt │ │ ├── container.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── ostream.cc │ │ ├── ostream.h │ │ ├── posix.cc │ │ ├── posix.h │ │ ├── printf.cc │ │ ├── printf.h │ │ ├── string.h │ │ └── time.h ├── g3dlite │ ├── CMakeLists.txt │ ├── G3D-v9.0 hotfix1.diff │ ├── G3D-v9.0 hotfix2.diff │ ├── G3D-v9.0 hotfix3.diff │ ├── G3D-v9.0 hotfix4.diff │ ├── G3D-v9.0 hotfix5.diff │ ├── G3D-v9.0 hotfix6.diff │ ├── G3D-v9.0 hotfix7.diff │ ├── G3D-v9.0 hotfix8.diff │ ├── Readme.txt │ ├── include │ │ └── G3D │ │ │ ├── AABox.h │ │ │ ├── Any.h │ │ │ ├── AreaMemoryManager.h │ │ │ ├── Array.h │ │ │ ├── AtomicInt32.h │ │ │ ├── BIN.h │ │ │ ├── BinaryFormat.h │ │ │ ├── BinaryInput.h │ │ │ ├── BinaryOutput.h │ │ │ ├── BoundsTrait.h │ │ │ ├── Box.h │ │ │ ├── Box2D.h │ │ │ ├── BumpMapPreprocess.h │ │ │ ├── Capsule.h │ │ │ ├── CollisionDetection.h │ │ │ ├── Color1.h │ │ │ ├── Color3.h │ │ │ ├── Color4.h │ │ │ ├── Cone.h │ │ │ ├── ConvexPolyhedron.h │ │ │ ├── CoordinateFrame.h │ │ │ ├── Crypto.h │ │ │ ├── Cylinder.h │ │ │ ├── EqualsTrait.h │ │ │ ├── FileNotFound.h │ │ │ ├── FileSystem.h │ │ │ ├── Frustum.h │ │ │ ├── G3D.h │ │ │ ├── G3DAll.h │ │ │ ├── G3DGameUnits.h │ │ │ ├── GMutex.h │ │ │ ├── GThread.h │ │ │ ├── GUniqueID.h │ │ │ ├── HashTrait.h │ │ │ ├── Image1.h │ │ │ ├── Image3.h │ │ │ ├── Image4.h │ │ │ ├── ImageFormat.h │ │ │ ├── Intersect.h │ │ │ ├── KDTree.h │ │ │ ├── Line.h │ │ │ ├── LineSegment.h │ │ │ ├── Log.h │ │ │ ├── Map2D.h │ │ │ ├── Matrix.h │ │ │ ├── Matrix2.h │ │ │ ├── Matrix3.h │ │ │ ├── Matrix4.h │ │ │ ├── MemoryManager.h │ │ │ ├── MeshAlg.h │ │ │ ├── MeshBuilder.h │ │ │ ├── NetAddress.h │ │ │ ├── NetworkDevice.h │ │ │ ├── ParseError.h │ │ │ ├── PhysicsFrame.h │ │ │ ├── PhysicsFrameSpline.h │ │ │ ├── Plane.h │ │ │ ├── PointHashGrid.h │ │ │ ├── PointKDTree.h │ │ │ ├── Pointer.h │ │ │ ├── PositionTrait.h │ │ │ ├── PrecomputedRandom.h │ │ │ ├── Quat.h │ │ │ ├── Queue.h │ │ │ ├── Random.h │ │ │ ├── Ray.h │ │ │ ├── Rect2D.h │ │ │ ├── ReferenceCount.h │ │ │ ├── RegistryUtil.h │ │ │ ├── Set.h │ │ │ ├── SmallArray.h │ │ │ ├── SpawnBehavior.h │ │ │ ├── Sphere.h │ │ │ ├── Spline.h │ │ │ ├── SplineExtrapolationMode.h │ │ │ ├── Stopwatch.h │ │ │ ├── System.h │ │ │ ├── Table.h │ │ │ ├── TextInput.h │ │ │ ├── TextOutput.h │ │ │ ├── ThreadSet.h │ │ │ ├── Triangle.h │ │ │ ├── UprightFrame.h │ │ │ ├── Vector2.h │ │ │ ├── Vector2int16.h │ │ │ ├── Vector2int32.h │ │ │ ├── Vector2unorm16.h │ │ │ ├── Vector3.h │ │ │ ├── Vector3int16.h │ │ │ ├── Vector3int32.h │ │ │ ├── Vector4.h │ │ │ ├── Vector4int8.h │ │ │ ├── WeakCache.h │ │ │ ├── Welder.h │ │ │ ├── WrapMode.h │ │ │ ├── XML.h │ │ │ ├── constants.h │ │ │ ├── debug.h │ │ │ ├── debugAssert.h │ │ │ ├── debugPrintf.h │ │ │ ├── enumclass.h │ │ │ ├── fileutils.h │ │ │ ├── filter.h │ │ │ ├── format.h │ │ │ ├── g3dfnmatch.h │ │ │ ├── g3dmath.h │ │ │ ├── netheaders.h │ │ │ ├── networkHelpers.h │ │ │ ├── platform.h │ │ │ ├── prompt.h │ │ │ ├── serialize.h │ │ │ ├── splinefunc.h │ │ │ ├── stringutils.h │ │ │ ├── uint128.h │ │ │ ├── units.h │ │ │ ├── unorm16.h │ │ │ ├── unorm8.h │ │ │ └── vectorMath.h │ └── source │ │ ├── AABox.cpp │ │ ├── Any.cpp │ │ ├── AnyTableReader.cpp │ │ ├── AreaMemoryManager.cpp │ │ ├── BinaryFormat.cpp │ │ ├── BinaryInput.cpp │ │ ├── BinaryOutput.cpp │ │ ├── Box.cpp │ │ ├── Box2D.cpp │ │ ├── BumpMapPreprocess.cpp │ │ ├── Capsule.cpp │ │ ├── CollisionDetection.cpp │ │ ├── Color1.cpp │ │ ├── Color3.cpp │ │ ├── Color4.cpp │ │ ├── Cone.cpp │ │ ├── ConvexPolyhedron.cpp │ │ ├── CoordinateFrame.cpp │ │ ├── Crypto.cpp │ │ ├── Crypto_md5.cpp │ │ ├── Cylinder.cpp │ │ ├── FileSystem.cpp │ │ ├── GThread.cpp │ │ ├── GUniqueID.cpp │ │ ├── Image1.cpp │ │ ├── Image3.cpp │ │ ├── Image4.cpp │ │ ├── ImageFormat.cpp │ │ ├── ImageFormat_convert.cpp │ │ ├── Intersect.cpp │ │ ├── Line.cpp │ │ ├── LineSegment.cpp │ │ ├── Log.cpp │ │ ├── Matrix.cpp │ │ ├── Matrix3.cpp │ │ ├── Matrix4.cpp │ │ ├── MemoryManager.cpp │ │ ├── MeshAlg.cpp │ │ ├── MeshAlgAdjacency.cpp │ │ ├── MeshAlgWeld.cpp │ │ ├── MeshBuilder.cpp │ │ ├── NetAddress.cpp │ │ ├── NetworkDevice.cpp │ │ ├── PhysicsFrame.cpp │ │ ├── PhysicsFrameSpline.cpp │ │ ├── Plane.cpp │ │ ├── PrecomputedRandom.cpp │ │ ├── Quat.cpp │ │ ├── Random.cpp │ │ ├── Ray.cpp │ │ ├── Rect2D.cpp │ │ ├── RegistryUtil.cpp │ │ ├── Sphere.cpp │ │ ├── SplineBase.cpp │ │ ├── Stopwatch.cpp │ │ ├── System.cpp │ │ ├── TextInput.cpp │ │ ├── TextOutput.cpp │ │ ├── ThreadSet.cpp │ │ ├── Triangle.cpp │ │ ├── UprightFrame.cpp │ │ ├── Vector2.cpp │ │ ├── Vector2int16.cpp │ │ ├── Vector3.cpp │ │ ├── Vector3int16.cpp │ │ ├── Vector3int32.cpp │ │ ├── Vector4.cpp │ │ ├── Vector4int8.cpp │ │ ├── Welder.cpp │ │ ├── WinMain.cpp │ │ ├── XML.cpp │ │ ├── constants.cpp │ │ ├── debugAssert.cpp │ │ ├── fileutils.cpp │ │ ├── filter.cpp │ │ ├── format.cpp │ │ ├── g3dfnmatch.cpp │ │ ├── g3dmath.cpp │ │ ├── license.cpp │ │ ├── prompt.cpp │ │ ├── stringutils.cpp │ │ └── uint128.cpp ├── gperftools │ ├── CMakeLists.txt │ ├── includes │ │ └── gperftools │ │ │ ├── heap-checker.h │ │ │ ├── heap-profiler.h │ │ │ ├── malloc_extension.h │ │ │ ├── malloc_extension_c.h │ │ │ ├── malloc_hook.h │ │ │ ├── malloc_hook_c.h │ │ │ ├── nallocx.h │ │ │ ├── profiler.h │ │ │ ├── stacktrace.h │ │ │ └── tcmalloc.h.in │ └── win │ │ └── prebuilt_lib │ │ ├── 32 │ │ ├── libtcmalloc_minimal.dll │ │ ├── libtcmalloc_minimal.lib │ │ └── libtcmalloc_minimal.txt │ │ └── 64 │ │ ├── libtcmalloc_minimal.dll │ │ ├── libtcmalloc_minimal.lib │ │ └── libtcmalloc_minimal.txt ├── gsoap │ ├── CMakeLists.txt │ ├── gsoap.stub │ ├── soapC.cpp │ ├── soapH.h │ ├── soapServer.cpp │ ├── soapStub.h │ ├── stdsoap2.cpp │ ├── stdsoap2.h │ ├── tc_changes.diff │ └── tc_upgrades.txt ├── libmpq │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── FAQ │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── THANKS │ ├── TODO │ ├── autogen.sh │ ├── bindings │ │ ├── Makefile.am │ │ ├── d │ │ │ ├── Makefile.am │ │ │ ├── dsss.conf │ │ │ └── mpq.d │ │ └── python │ │ │ ├── Makefile.am │ │ │ ├── mpq-info │ │ │ └── mpq.py │ ├── config.h │ ├── configure.ac │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libmpq-dev.dirs │ │ ├── libmpq-dev.install │ │ ├── libmpq0.dirs │ │ ├── libmpq0.docs │ │ ├── libmpq0.install │ │ ├── python-mpq.install │ │ └── rules │ ├── doc │ │ ├── Makefile.am │ │ ├── man1 │ │ │ ├── Makefile.am │ │ │ └── libmpq-config.1 │ │ └── man3 │ │ │ ├── Makefile.am │ │ │ ├── libmpq.3 │ │ │ ├── libmpq__archive_close.3 │ │ │ ├── libmpq__archive_files.3 │ │ │ ├── libmpq__archive_offset.3 │ │ │ ├── libmpq__archive_open.3 │ │ │ ├── libmpq__archive_size_packed.3 │ │ │ ├── libmpq__archive_size_unpacked.3 │ │ │ ├── libmpq__archive_version.3 │ │ │ ├── libmpq__block_close_offset.3 │ │ │ ├── libmpq__block_open_offset.3 │ │ │ ├── libmpq__block_read.3 │ │ │ ├── libmpq__block_size_unpacked.3 │ │ │ ├── libmpq__file_blocks.3 │ │ │ ├── libmpq__file_compressed.3 │ │ │ ├── libmpq__file_encrypted.3 │ │ │ ├── libmpq__file_imploded.3 │ │ │ ├── libmpq__file_number.3 │ │ │ ├── libmpq__file_offset.3 │ │ │ ├── libmpq__file_read.3 │ │ │ ├── libmpq__file_size_packed.3 │ │ │ ├── libmpq__file_size_unpacked.3 │ │ │ ├── libmpq__strerror.3 │ │ │ └── libmpq__version.3 │ ├── libmpq-config.in │ ├── libmpq-hotfix1.diff │ ├── libmpq.pc.in │ ├── libmpq │ │ ├── Makefile.am │ │ ├── common.c │ │ ├── common.h │ │ ├── crypt_buf.h │ │ ├── explode.c │ │ ├── explode.h │ │ ├── extract.c │ │ ├── extract.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── mpq-internal.h │ │ ├── mpq.c │ │ ├── mpq.h │ │ ├── pack_begin.h │ │ ├── pack_end.h │ │ ├── platform.h │ │ ├── wave.c │ │ └── wave.h │ ├── tools │ │ ├── Makefile.am │ │ └── crypt_buf_gen.c │ └── win │ │ ├── config.h │ │ └── dirent.h ├── mysql │ └── CMakeLists.txt ├── openssl │ └── CMakeLists.txt ├── process │ ├── CMakeLists.txt │ ├── License.txt │ ├── Readme.txt │ └── boost │ │ ├── process.hpp │ │ └── process │ │ ├── all.hpp │ │ ├── child.hpp │ │ ├── config.hpp │ │ ├── create_pipe.hpp │ │ ├── execute.hpp │ │ ├── executor.hpp │ │ ├── initializers.hpp │ │ ├── mitigate.hpp │ │ ├── pipe.hpp │ │ ├── posix │ │ ├── child.hpp │ │ ├── create_pipe.hpp │ │ ├── execute.hpp │ │ ├── executor.hpp │ │ ├── initializers.hpp │ │ ├── initializers │ │ │ ├── bind_fd.hpp │ │ │ ├── bind_stderr.hpp │ │ │ ├── bind_stdin.hpp │ │ │ ├── bind_stdout.hpp │ │ │ ├── close_fd.hpp │ │ │ ├── close_fds.hpp │ │ │ ├── close_fds_if.hpp │ │ │ ├── close_stderr.hpp │ │ │ ├── close_stdin.hpp │ │ │ ├── close_stdout.hpp │ │ │ ├── hide_console.hpp │ │ │ ├── inherit_env.hpp │ │ │ ├── initializer_base.hpp │ │ │ ├── notify_io_service.hpp │ │ │ ├── on_exec_error.hpp │ │ │ ├── on_exec_setup.hpp │ │ │ ├── on_fork_error.hpp │ │ │ ├── on_fork_setup.hpp │ │ │ ├── on_fork_success.hpp │ │ │ ├── run_exe.hpp │ │ │ ├── set_args.hpp │ │ │ ├── set_cmd_line.hpp │ │ │ ├── set_env.hpp │ │ │ ├── set_on_error.hpp │ │ │ ├── start_in_dir.hpp │ │ │ └── throw_on_error.hpp │ │ ├── pipe.hpp │ │ ├── search_path.hpp │ │ ├── shell_path.hpp │ │ ├── terminate.hpp │ │ └── wait_for_exit.hpp │ │ ├── search_path.hpp │ │ ├── shell_path.hpp │ │ ├── terminate.hpp │ │ ├── wait_for_exit.hpp │ │ └── windows │ │ ├── child.hpp │ │ ├── create_pipe.hpp │ │ ├── execute.hpp │ │ ├── executor.hpp │ │ ├── initializers.hpp │ │ ├── initializers │ │ ├── bind_stderr.hpp │ │ ├── bind_stdin.hpp │ │ ├── bind_stdout.hpp │ │ ├── close_stderr.hpp │ │ ├── close_stdin.hpp │ │ ├── close_stdout.hpp │ │ ├── hide_console.hpp │ │ ├── inherit_env.hpp │ │ ├── initializer_base.hpp │ │ ├── on_CreateProcess_error.hpp │ │ ├── on_CreateProcess_setup.hpp │ │ ├── on_CreateProcess_success.hpp │ │ ├── run_exe.hpp │ │ ├── set_args.hpp │ │ ├── set_cmd_line.hpp │ │ ├── set_env.hpp │ │ ├── set_on_error.hpp │ │ ├── show_window.hpp │ │ ├── start_in_dir.hpp │ │ └── throw_on_error.hpp │ │ ├── pipe.hpp │ │ ├── search_path.hpp │ │ ├── shell_path.hpp │ │ ├── terminate.hpp │ │ └── wait_for_exit.hpp ├── readline │ └── CMakeLists.txt ├── recastnavigation │ ├── CMakeLists.txt │ ├── Detour │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── DetourAlloc.h │ │ │ ├── DetourAssert.h │ │ │ ├── DetourCommon.h │ │ │ ├── DetourMath.h │ │ │ ├── DetourNavMesh.h │ │ │ ├── DetourNavMeshBuilder.h │ │ │ ├── DetourNavMeshQuery.h │ │ │ ├── DetourNode.h │ │ │ └── DetourStatus.h │ │ └── Source │ │ │ ├── DetourAlloc.cpp │ │ │ ├── DetourAssert.cpp │ │ │ ├── DetourCommon.cpp │ │ │ ├── DetourNavMesh.cpp │ │ │ ├── DetourNavMeshBuilder.cpp │ │ │ ├── DetourNavMeshQuery.cpp │ │ │ └── DetourNode.cpp │ ├── License.txt │ ├── README.md │ ├── Recast │ │ ├── CMakeLists.txt │ │ ├── Include │ │ │ ├── Recast.h │ │ │ ├── RecastAlloc.h │ │ │ └── RecastAssert.h │ │ └── Source │ │ │ ├── Recast.cpp │ │ │ ├── RecastAlloc.cpp │ │ │ ├── RecastArea.cpp │ │ │ ├── RecastAssert.cpp │ │ │ ├── RecastContour.cpp │ │ │ ├── RecastFilter.cpp │ │ │ ├── RecastLayers.cpp │ │ │ ├── RecastMesh.cpp │ │ │ ├── RecastMeshDetail.cpp │ │ │ ├── RecastRasterization.cpp │ │ │ └── RecastRegion.cpp │ └── recastnavigation.diff ├── threads │ └── CMakeLists.txt ├── utf8cpp │ ├── CMakeLists.txt │ ├── utf8.h │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ └── unchecked.h └── zlib │ ├── CMakeLists.txt │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── example.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── minigzip.c │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── doc ├── install_linux.md └── install_win.md ├── issue_template.md ├── pull_request_template.md ├── revision_data.h.in.cmake ├── sql ├── CMakeLists.txt ├── base │ ├── auth_database.sql │ ├── characters_database.sql │ ├── dev │ │ ├── DO_NOT_IMPORT_THESE_FILES.txt │ │ └── world_database.sql │ └── logs_database.sql ├── create │ ├── create_mysql.sql │ └── drop_mysql.sql ├── custom │ ├── auth │ │ └── dummy │ ├── characters │ │ └── dummy │ ├── logs │ │ └── dummy │ └── world │ │ └── dummy ├── old │ ├── 2.4.3_before_updater │ │ ├── auth │ │ │ ├── 2548_realmd.sql │ │ │ ├── 262_realmd.sql │ │ │ ├── 83_realmd.sql │ │ │ ├── WMPQ_gmgroup_realmd.sql │ │ │ ├── auth_2016_08_19_01.sql │ │ │ ├── auth_2016_10_16_01.sql │ │ │ ├── auth_2017_09_27_01.sql │ │ │ └── auth_6620.sql │ │ ├── characters │ │ │ ├── 1164_characters.sql │ │ │ ├── 11_characters.sql │ │ │ ├── 1311_characters.sql │ │ │ ├── 1358_characters.sql │ │ │ ├── 1366_characters.sql │ │ │ ├── 1556_characters_ahbot.sql │ │ │ ├── 1605_characters.sql │ │ │ ├── 1607_characters.sql │ │ │ ├── 1679_characters.sql │ │ │ ├── 220_characters.sql │ │ │ ├── 2302_characters.sql │ │ │ ├── 2343_characters.sql │ │ │ ├── 2387_characters.sql │ │ │ ├── 2391_characters.sql │ │ │ ├── 262_characters.sql │ │ │ ├── 2647_characters.sql │ │ │ ├── 2657_characters.sql │ │ │ ├── 2660_characters.sql │ │ │ ├── 2661_characters.sql │ │ │ ├── 2662_characters.sql │ │ │ ├── 2663_characters.sql │ │ │ ├── 2664_characters.sql │ │ │ ├── 2680_characters.sql │ │ │ ├── 3242_characters.sql │ │ │ ├── 3243_characters.sql │ │ │ ├── 3377_characters.sql │ │ │ ├── 3631_characters.sql │ │ │ ├── 3936_characters.sql │ │ │ ├── 4012_characters.sql │ │ │ ├── 4060_characters.sql │ │ │ ├── 410_characters.sql │ │ │ ├── 4341_characters.sql │ │ │ ├── 4583_characters.sql │ │ │ ├── 45_characters.sql │ │ │ ├── 4756_characters.sql │ │ │ ├── 5153_characters.sql │ │ │ ├── 5178_characters.sql │ │ │ ├── 541_characters.sql │ │ │ ├── 542_characters.sql │ │ │ ├── 5805_characters.sql │ │ │ ├── 6102_characters.sql │ │ │ ├── 6215_characters.sql │ │ │ ├── 6635_characters.sql │ │ │ ├── 725_characters.sql │ │ │ ├── 733_characters.sql │ │ │ ├── 739_characters.sql │ │ │ ├── 741_characters.sql │ │ │ ├── 780_characters.sql │ │ │ ├── 79_characters.sql │ │ │ ├── 927_characters.sql │ │ │ ├── 930_characters.sql │ │ │ ├── WMPQ_characters_recups.sql │ │ │ ├── char_6664.sql │ │ │ ├── characters_2015_01_14.sql │ │ │ ├── characters_2015_01_16.sql │ │ │ ├── characters_2016_02_18_01.sql │ │ │ ├── characters_2016_02_23_01.sql │ │ │ ├── characters_2016_03_26_01.sql │ │ │ ├── characters_2016_03_30_01.sql │ │ │ ├── characters_2016_04_22_01.sql │ │ │ ├── characters_2016_04_30_01.sql │ │ │ ├── characters_2016_04_30_02.sql │ │ │ ├── characters_2016_07_13_01.sql │ │ │ ├── characters_2016_08_01_01.sql │ │ │ ├── characters_2017_09_17_01.sql │ │ │ └── characters_2017_09_27_01.sql │ │ └── logs │ │ │ ├── 2138_log.sql │ │ │ ├── 2177_log.sql │ │ │ ├── 2179_log.sql │ │ │ ├── 2347_log.sql │ │ │ ├── 2394_logs.sql │ │ │ ├── 3236_logs.sql │ │ │ ├── 3387_logs.sql │ │ │ ├── 3646_logs.sql │ │ │ ├── 3775_logs.sql │ │ │ ├── 4172_logs.sql │ │ │ ├── 4200_logs.sql │ │ │ ├── 4252_logs.sql │ │ │ ├── 4496_logs.sql │ │ │ ├── 4944_logs.sql │ │ │ ├── 5217_logs.sql │ │ │ ├── 5228_logs.sql │ │ │ ├── 5309_logs.sql │ │ │ ├── 5310_logs.sql │ │ │ ├── 6378_logs.sql │ │ │ ├── 6457_logs.sql │ │ │ ├── WMPQ_bgstats_logs.sql │ │ │ ├── logs_2016_05_25_01.sql │ │ │ └── logs_2017_09_27_01.sql │ ├── auth │ │ ├── 17011_2019_12_08 │ │ │ ├── auth_2018_01_03_01.sql │ │ │ └── auth_2018_11_24_01.sql │ │ ├── 19121_2019_12_12 │ │ │ └── 2019_12_08_00_auth.sql │ │ ├── 19122_2019_12_13 │ │ │ └── 2019_12_12_00_auth.sql │ │ ├── 19123_2019_12_22 │ │ │ └── 2019_12_13_00_auth.sql │ │ └── 19124_2020_01_04 │ │ │ └── 2019_12_22_00_auth.sql │ ├── characters │ │ ├── 17011_2019_12_08 │ │ │ ├── characters_2017_10_10_00.sql │ │ │ ├── characters_2017_10_10_01.sql │ │ │ ├── characters_2017_10_10_02.sql │ │ │ ├── characters_2017_10_10_03.sql │ │ │ ├── characters_2017_11_27_02.sql │ │ │ ├── characters_2017_12_05_01.sql │ │ │ ├── characters_2017_12_05_02.sql │ │ │ ├── characters_2017_12_13_01.sql │ │ │ ├── characters_2017_12_19_01.sql │ │ │ ├── characters_2018_01_08_01.sql │ │ │ ├── characters_2018_01_22_01.sql │ │ │ ├── characters_2018_02_13_01.sql │ │ │ ├── characters_2018_02_13_02.sql │ │ │ ├── characters_2018_02_19_02.sql │ │ │ ├── characters_2018_02_20_01.sql │ │ │ ├── characters_2018_05_18_01.sql │ │ │ ├── characters_2018_08_12_01.sql │ │ │ ├── characters_2018_08_23_01.sql │ │ │ ├── characters_2018_09_01_01.sql │ │ │ ├── characters_2018_09_02_01.sql │ │ │ ├── characters_2018_10_03_01.sql │ │ │ ├── characters_2018_11_13_01.sql │ │ │ ├── characters_2018_11_26_01.sql │ │ │ ├── characters_2018_12_08_01.sql │ │ │ ├── characters_2018_12_08_02.sql │ │ │ ├── characters_2018_12_08_03.sql │ │ │ ├── characters_2018_12_17_01.sql │ │ │ ├── characters_2018_12_20_01.sql │ │ │ ├── characters_2018_12_28_01.sql │ │ │ ├── characters_2018_12_28_02.sql │ │ │ ├── characters_2019_01_12_01.sql │ │ │ ├── characters_2019_01_20_01.sql │ │ │ └── characters_2019_01_21_01.sql │ │ ├── 19121_2019_12_12 │ │ │ └── 2019_12_08_00_characters.sql │ │ ├── 19122_2019_12_13 │ │ │ └── 2019_12_12_00_characters.sql │ │ ├── 19123_2019_12_22 │ │ │ └── 2019_12_13_00_characters.sql │ │ └── 19124_2020_01_04 │ │ │ └── 2019_12_22_00_characters.sql │ ├── logs │ │ ├── 17011_2019_12_08 │ │ │ ├── logs_2017_12_09_01.sql │ │ │ ├── logs_2018_01_08_01.sql │ │ │ ├── logs_2018_01_08_02.sql │ │ │ └── logs_2018_05_18_01.sql │ │ ├── 19121_2019_12_12 │ │ │ └── 2019_12_08_00_logs.sql │ │ ├── 19122_2019_12_13 │ │ │ └── 2019_12_12_00_logs.sql │ │ ├── 19123_2019_12_22 │ │ │ └── 2019_12_13_00_logs.sql │ │ └── 19124_2020_01_04 │ │ │ └── 2019_12_22_00_logs.sql │ └── world │ │ ├── 17011_2019_12_08 │ │ ├── world_2018_06_20_01.sql │ │ ├── world_2018_06_20_02.sql │ │ ├── world_2018_06_20_03.sql │ │ ├── world_2018_06_20_04.sql │ │ ├── world_2018_06_22_01.sql │ │ ├── world_2018_06_24_01.sql │ │ ├── world_2018_06_24_02.sql │ │ ├── world_2018_06_26_01.sql │ │ ├── world_2018_06_26_02.sql │ │ ├── world_2018_06_26_03.sql │ │ ├── world_2018_06_27_01.sql │ │ ├── world_2018_07_02_01.sql │ │ ├── world_2018_07_02_02.sql │ │ ├── world_2018_07_17_01.sql │ │ ├── world_2018_07_18_01.sql │ │ ├── world_2018_07_18_02.sql │ │ ├── world_2018_07_24_01.sql │ │ ├── world_2018_07_24_02.sql │ │ ├── world_2018_07_30_01.sql │ │ ├── world_2018_07_31_01.sql │ │ ├── world_2018_08_03_01.sql │ │ ├── world_2018_08_03_02.sql │ │ ├── world_2018_08_05_00.sql │ │ ├── world_2018_08_05_01.sql │ │ ├── world_2018_08_05_02.sql │ │ ├── world_2018_08_07_01.sql │ │ ├── world_2018_08_07_02.sql │ │ ├── world_2018_08_12_01.sql │ │ ├── world_2018_08_12_02.sql │ │ ├── world_2018_08_12_03.sql │ │ ├── world_2018_08_12_04.sql │ │ ├── world_2018_08_12_05.sql │ │ ├── world_2018_08_13_01.sql │ │ ├── world_2018_08_23_01.sql │ │ ├── world_2018_08_23_02.sql │ │ ├── world_2018_08_23_03.sql │ │ ├── world_2018_08_23_04.sql │ │ ├── world_2018_08_26_01.sql │ │ ├── world_2018_08_26_02.sql │ │ ├── world_2018_08_26_03.sql │ │ ├── world_2018_08_26_04.sql │ │ ├── world_2018_08_26_05.sql │ │ ├── world_2018_08_26_06.sql │ │ ├── world_2018_08_26_07.sql │ │ ├── world_2018_08_27_01.sql │ │ ├── world_2018_08_27_02.sql │ │ ├── world_2018_08_30_01.sql │ │ ├── world_2018_08_30_02.sql │ │ ├── world_2018_08_30_03.sql │ │ ├── world_2018_08_30_04.sql │ │ ├── world_2018_08_30_05.sql │ │ ├── world_2018_09_01_01.sql │ │ ├── world_2018_09_01_02.sql │ │ ├── world_2018_09_01_03.sql │ │ ├── world_2018_09_02_01.sql │ │ ├── world_2018_09_02_02.sql │ │ ├── world_2018_09_02_05.sql │ │ ├── world_2018_09_03_01.sql │ │ ├── world_2018_09_04_01.sql │ │ ├── world_2018_09_04_02.sql │ │ ├── world_2018_09_04_03.sql │ │ ├── world_2018_09_07_01.sql │ │ ├── world_2018_09_08_03.sql │ │ ├── world_2018_09_11_03.sql │ │ ├── world_2018_09_12_01.sql │ │ ├── world_2018_09_13_02.sql │ │ ├── world_2018_09_13_03.sql │ │ ├── world_2018_09_17_01.sql │ │ ├── world_2018_09_17_03.sql │ │ ├── world_2018_09_17_04.sql │ │ ├── world_2018_09_18_01.sql │ │ ├── world_2018_09_18_02.sql │ │ ├── world_2018_09_20_01.sql │ │ ├── world_2018_09_20_02.sql │ │ ├── world_2018_09_21_01.sql │ │ ├── world_2018_09_21_02.sql │ │ ├── world_2018_09_21_03.sql │ │ ├── world_2018_09_21_05.sql │ │ ├── world_2018_09_25_01.sql │ │ ├── world_2018_09_26_01.sql │ │ ├── world_2018_09_26_02.sql │ │ ├── world_2018_09_27_02.sql │ │ ├── world_2018_09_28_03.sql │ │ ├── world_2018_09_29_01.sql │ │ ├── world_2018_10_01_01.sql │ │ ├── world_2018_10_01_02.sql │ │ ├── world_2018_10_04_01.sql │ │ ├── world_2018_10_04_02.sql │ │ ├── world_2018_10_05_01.sql │ │ ├── world_2018_10_05_02.sql │ │ ├── world_2018_10_05_03.sql │ │ ├── world_2018_10_05_04.sql │ │ ├── world_2018_10_07_01.sql │ │ ├── world_2018_10_07_02.sql │ │ ├── world_2018_10_08_01.sql │ │ ├── world_2018_10_11_01.sql │ │ ├── world_2018_10_13_01.sql │ │ ├── world_2018_10_14_01.sql │ │ ├── world_2018_10_15_01.sql │ │ ├── world_2018_10_15_02.sql │ │ ├── world_2018_10_15_03.sql │ │ ├── world_2018_10_15_04.sql │ │ ├── world_2018_10_15_05.sql │ │ ├── world_2018_10_15_06.sql │ │ ├── world_2018_10_15_07.sql │ │ ├── world_2018_10_19_01.sql │ │ ├── world_2018_10_25_01.sql │ │ ├── world_2018_11_05_01.sql │ │ ├── world_2018_11_23_01.sql │ │ ├── world_2018_11_24_01.sql │ │ ├── world_2018_11_25_01.sql │ │ ├── world_2018_11_25_02.sql │ │ ├── world_2018_11_25_03.sql │ │ ├── world_2018_11_25_04.sql │ │ ├── world_2018_11_25_05.sql │ │ ├── world_2018_11_26_00.sql │ │ ├── world_2018_11_26_01.sql │ │ ├── world_2018_11_26_02.sql │ │ ├── world_2018_11_26_03.sql │ │ ├── world_2018_11_26_04.sql │ │ ├── world_2018_11_26_05.sql │ │ ├── world_2018_11_27_01.sql │ │ ├── world_2018_11_28_01.sql │ │ ├── world_2018_12_01_01.sql │ │ ├── world_2018_12_08_01.sql │ │ ├── world_2018_12_08_02.sql │ │ ├── world_2018_12_08_03.sql │ │ ├── world_2018_12_09_01.sql │ │ ├── world_2018_12_10_01.sql │ │ ├── world_2018_12_12_01.sql │ │ ├── world_2018_12_12_02.sql │ │ ├── world_2018_12_13_01.sql │ │ ├── world_2018_12_13_02.sql │ │ ├── world_2018_12_13_03.sql │ │ ├── world_2018_12_13_04.sql │ │ ├── world_2018_12_13_05.sql │ │ ├── world_2018_12_13_06.sql │ │ ├── world_2018_12_13_07.sql │ │ ├── world_2018_12_13_08.sql │ │ ├── world_2018_12_13_09.sql │ │ ├── world_2018_12_13_10.sql │ │ ├── world_2018_12_15_01.sql │ │ ├── world_2018_12_15_02.sql │ │ ├── world_2018_12_17_01.sql │ │ ├── world_2018_12_17_02.sql │ │ ├── world_2018_12_17_03.sql │ │ ├── world_2018_12_17_04.sql │ │ ├── world_2018_12_18_01.sql │ │ ├── world_2018_12_18_02.sql │ │ ├── world_2018_12_18_03.sql │ │ ├── world_2018_12_18_04.sql │ │ ├── world_2018_12_19_01.sql │ │ ├── world_2018_12_19_03.sql │ │ ├── world_2018_12_19_04.sql │ │ ├── world_2018_12_19_05.sql │ │ ├── world_2018_12_19_06.sql │ │ ├── world_2018_12_20_02.sql │ │ ├── world_2018_12_20_03.sql │ │ ├── world_2018_12_20_04.sql │ │ ├── world_2018_12_20_05.sql │ │ ├── world_2018_12_22_01.sql │ │ ├── world_2018_12_22_02.sql │ │ ├── world_2018_12_22_03.sql │ │ ├── world_2018_12_22_04.sql │ │ ├── world_2018_12_22_05.sql │ │ ├── world_2018_12_22_06.sql │ │ ├── world_2018_12_22_07.sql │ │ ├── world_2018_12_23_01.sql │ │ ├── world_2018_12_23_02.sql │ │ ├── world_2018_12_23_03.sql │ │ ├── world_2018_12_23_04.sql │ │ ├── world_2018_12_23_05.sql │ │ ├── world_2018_12_23_06.sql │ │ ├── world_2018_12_23_07.sql │ │ ├── world_2018_12_24_01.sql │ │ ├── world_2018_12_24_02.sql │ │ ├── world_2018_12_24_03.sql │ │ ├── world_2018_12_24_04.sql │ │ ├── world_2018_12_26_01.sql │ │ ├── world_2018_12_27_01.sql │ │ ├── world_2018_12_27_02.sql │ │ ├── world_2018_12_28_02.sql │ │ ├── world_2018_12_28_03.sql │ │ ├── world_2018_12_28_04.sql │ │ ├── world_2018_12_28_05.sql │ │ ├── world_2018_12_28_06.sql │ │ ├── world_2018_12_28_07.sql │ │ ├── world_2018_12_28_08.sql │ │ ├── world_2018_12_28_09.sql │ │ ├── world_2018_12_29_01.sql │ │ ├── world_2018_12_29_02.sql │ │ ├── world_2018_12_29_03.sql │ │ ├── world_2018_12_29_04.sql │ │ ├── world_2018_12_31_02.sql │ │ ├── world_2018_12_31_03.sql │ │ ├── world_2018_12_31_04.sql │ │ ├── world_2018_12_31_05.sql │ │ ├── world_2018_12_31_06.sql │ │ ├── world_2018_12_31_07.sql │ │ ├── world_2019_01_01_01.sql │ │ ├── world_2019_01_01_02.sql │ │ ├── world_2019_01_01_03.sql │ │ ├── world_2019_01_01_04.sql │ │ ├── world_2019_01_01_05.sql │ │ ├── world_2019_01_02_01.sql │ │ ├── world_2019_01_02_02.sql │ │ ├── world_2019_01_02_03.sql │ │ ├── world_2019_01_02_04.sql │ │ ├── world_2019_01_02_05.sql │ │ ├── world_2019_01_02_06.sql │ │ ├── world_2019_01_02_07.sql │ │ ├── world_2019_01_02_08.sql │ │ ├── world_2019_01_02_09.sql │ │ ├── world_2019_01_02_10.sql │ │ ├── world_2019_01_02_11.sql │ │ ├── world_2019_01_02_12.sql │ │ ├── world_2019_01_02_13.sql │ │ ├── world_2019_01_02_14.sql │ │ ├── world_2019_01_02_15.sql │ │ ├── world_2019_01_03_01.sql │ │ ├── world_2019_01_03_02.sql │ │ ├── world_2019_01_03_03.sql │ │ ├── world_2019_01_03_04.sql │ │ ├── world_2019_01_03_05.sql │ │ ├── world_2019_01_03_06.sql │ │ ├── world_2019_01_03_07.sql │ │ ├── world_2019_01_03_08.sql │ │ ├── world_2019_01_03_09.sql │ │ ├── world_2019_01_03_10.sql │ │ ├── world_2019_01_04_01.sql │ │ ├── world_2019_01_04_02.sql │ │ ├── world_2019_01_04_03.sql │ │ ├── world_2019_01_04_04.sql │ │ ├── world_2019_01_04_05.sql │ │ ├── world_2019_01_05_01.sql │ │ ├── world_2019_01_05_02.sql │ │ ├── world_2019_01_05_03.sql │ │ ├── world_2019_01_06_01.sql │ │ ├── world_2019_01_06_02.sql │ │ ├── world_2019_01_07_01.sql │ │ ├── world_2019_01_07_02.sql │ │ ├── world_2019_01_07_03.sql │ │ ├── world_2019_01_07_04.sql │ │ ├── world_2019_01_07_05.sql │ │ ├── world_2019_01_07_06.sql │ │ ├── world_2019_01_07_07.sql │ │ ├── world_2019_01_07_08.sql │ │ ├── world_2019_01_08_01.sql │ │ ├── world_2019_01_08_02.sql │ │ ├── world_2019_01_08_03.sql │ │ ├── world_2019_01_08_04.sql │ │ ├── world_2019_01_09_01.sql │ │ ├── world_2019_01_09_02.sql │ │ ├── world_2019_01_09_03.sql │ │ ├── world_2019_01_09_04.sql │ │ ├── world_2019_01_09_05.sql │ │ ├── world_2019_01_09_06.sql │ │ ├── world_2019_01_09_07.sql │ │ ├── world_2019_01_10_01.sql │ │ ├── world_2019_01_10_02.sql │ │ ├── world_2019_01_10_03.sql │ │ ├── world_2019_01_10_04.sql │ │ ├── world_2019_01_10_05.sql │ │ ├── world_2019_01_11_01.sql │ │ ├── world_2019_01_12_01.sql │ │ ├── world_2019_01_12_02.sql │ │ ├── world_2019_01_12_03.sql │ │ ├── world_2019_01_12_04.sql │ │ ├── world_2019_01_12_05.sql │ │ ├── world_2019_01_12_06.sql │ │ ├── world_2019_01_12_07.sql │ │ ├── world_2019_01_13_01.sql │ │ ├── world_2019_01_13_02.sql │ │ ├── world_2019_01_13_03.sql │ │ ├── world_2019_01_13_04.sql │ │ ├── world_2019_01_13_05.sql │ │ ├── world_2019_01_13_06.sql │ │ ├── world_2019_01_14_01.sql │ │ ├── world_2019_01_14_02.sql │ │ ├── world_2019_01_15_01.sql │ │ ├── world_2019_01_15_02.sql │ │ ├── world_2019_01_15_03.sql │ │ ├── world_2019_01_16_01.sql │ │ ├── world_2019_01_16_02.sql │ │ ├── world_2019_01_16_03.sql │ │ ├── world_2019_01_16_04.sql │ │ ├── world_2019_01_16_05.sql │ │ ├── world_2019_01_16_06.sql │ │ ├── world_2019_01_17_01.sql │ │ ├── world_2019_01_17_02.sql │ │ ├── world_2019_01_17_03.sql │ │ ├── world_2019_01_17_04.sql │ │ ├── world_2019_01_18_01.sql │ │ ├── world_2019_01_18_02.sql │ │ ├── world_2019_01_18_03.sql │ │ ├── world_2019_01_19_01.sql │ │ ├── world_2019_01_19_02.sql │ │ ├── world_2019_01_19_03.sql │ │ ├── world_2019_01_19_04.sql │ │ ├── world_2019_01_19_05.sql │ │ ├── world_2019_01_20_01.sql │ │ ├── world_2019_01_21_01.sql │ │ ├── world_2019_01_22_01.sql │ │ ├── world_2019_01_22_02.sql │ │ ├── world_2019_01_24_01.sql │ │ ├── world_2019_01_24_02.sql │ │ ├── world_2019_01_24_03.sql │ │ ├── world_2019_01_25_01.sql │ │ ├── world_2019_01_25_02.sql │ │ ├── world_2019_01_25_03.sql │ │ ├── world_2019_01_27_01.sql │ │ ├── world_2019_01_27_02.sql │ │ ├── world_2019_01_27_03.sql │ │ ├── world_2019_01_28_01.sql │ │ ├── world_2019_01_28_02.sql │ │ ├── world_2019_01_29_01.sql │ │ ├── world_2019_01_29_02.sql │ │ ├── world_2019_01_29_03.sql │ │ ├── world_2019_01_29_04.sql │ │ ├── world_2019_01_29_05.sql │ │ ├── world_2019_01_29_06.sql │ │ ├── world_2019_01_30_01.sql │ │ ├── world_2019_01_30_02.sql │ │ ├── world_2019_01_30_03.sql │ │ ├── world_2019_01_30_04.sql │ │ ├── world_2019_01_30_05.sql │ │ ├── world_2019_01_30_06.sql │ │ ├── world_2019_01_31_01.sql │ │ ├── world_2019_01_31_02.sql │ │ ├── world_2019_01_31_03.sql │ │ ├── world_2019_01_31_04.sql │ │ ├── world_2019_01_31_05.sql │ │ ├── world_2019_01_31_06.sql │ │ ├── world_2019_01_31_07.sql │ │ ├── world_2019_01_31_08.sql │ │ ├── world_2019_01_31_09.sql │ │ ├── world_2019_01_31_10.sql │ │ ├── world_2019_01_31_11.sql │ │ ├── world_2019_02_02_01.sql │ │ ├── world_2019_02_04_01.sql │ │ ├── world_2019_02_04_02.sql │ │ ├── world_2019_02_06_01.sql │ │ ├── world_2019_02_06_02.sql │ │ ├── world_2019_02_06_03.sql │ │ ├── world_2019_02_08_01.sql │ │ ├── world_2019_02_08_02.sql │ │ └── world_2019_12_07_01.sql │ │ ├── 19121_2019_12_12 │ │ ├── 2019_12_08_00_world.sql │ │ ├── 2019_12_08_01_world.sql │ │ ├── 2019_12_11_00_world.sql │ │ └── 2019_12_12_00_world.sql │ │ ├── 19122_2019_12_13 │ │ ├── 2019_12_12_01_world.sql │ │ ├── 2019_12_13_00_world.sql │ │ ├── 2019_12_13_01_world.sql │ │ ├── 2019_12_13_02_world.sql │ │ └── 2019_12_13_03_world.sql │ │ ├── 19123_2019_12_22 │ │ ├── 2019_12_13_04_world.sql │ │ ├── 2019_12_14_00_world.sql │ │ ├── 2019_12_15_00_world.sql │ │ └── 2019_12_21_00_world.sql │ │ └── 19124_2020_01_04 │ │ ├── 2019_12_22_00_world.sql │ │ ├── 2019_12_26_00_world.sql │ │ ├── 2019_12_29_00_world.sql │ │ ├── 2019_12_30_00_world.sql │ │ └── 2019_12_31_00_world.sql ├── patchs │ ├── 2.1.sql │ ├── 2.2.sql │ ├── 2.3.sql │ └── 2.4.sql ├── tools │ ├── CMakeLists.txt │ ├── README │ ├── characters_item_duplicates_remove.sql │ ├── characters_pet_data_cleanup.sql │ └── locales_requests.txt └── updates │ ├── auth │ └── 2020_01_04_00_auth.sql │ ├── characters │ └── 2020_01_04_00_characters.sql │ ├── logs │ └── 2020_01_04_00_logs.sql │ └── world │ ├── 2020_01_04_00_world.sql │ ├── 2020_01_04_01_world.sql │ ├── 2020_01_05_00_world.sql │ ├── 2020_01_07_00_world.sql │ ├── 2020_01_07_01_world.sql │ ├── 2020_01_07_02_world.sql │ ├── 2020_01_07_08_world.sql │ ├── 2020_01_08_00_world.sql │ ├── 2020_01_08_01_world.sql │ ├── 2020_01_09_00_world.sql │ ├── 2020_01_09_01_world.sql │ ├── 2020_01_09_02_world.sql │ ├── 2020_01_09_03_world.sql │ ├── 2020_01_09_04_world.sql │ ├── 2020_01_09_05_world.sql │ └── 2020_01_10_06_world.sql └── src ├── CMakeLists.txt ├── common ├── Asio │ ├── AsioHacksFwd.h │ ├── DeadlineTimer.h │ ├── IoContext.h │ ├── IpAddress.h │ ├── IpNetwork.h │ ├── Resolver.h │ └── Strand.h ├── Banner.cpp ├── Banner.h ├── CMakeLists.txt ├── Collision │ ├── BoundingIntervalHierarchy.cpp │ ├── BoundingIntervalHierarchy.h │ ├── BoundingIntervalHierarchyWrapper.h │ ├── CMakeLists.txt │ ├── DynamicTree.cpp │ ├── DynamicTree.h │ ├── Management │ │ ├── IVMapManager.h │ │ ├── MMapFactory.cpp │ │ ├── MMapFactory.h │ │ ├── MMapManager.cpp │ │ ├── MMapManager.h │ │ ├── VMapFactory.cpp │ │ ├── VMapFactory.h │ │ ├── VMapManager2.cpp │ │ └── VMapManager2.h │ ├── Maps │ │ ├── MapDefines.h │ │ ├── MapTree.cpp │ │ ├── MapTree.h │ │ ├── TileAssembler.cpp │ │ └── TileAssembler.h │ ├── Models │ │ ├── GameObjectModel.cpp │ │ ├── GameObjectModel.h │ │ ├── ModelIgnoreFlags.h │ │ ├── ModelInstance.cpp │ │ ├── ModelInstance.h │ │ ├── WorldModel.cpp │ │ └── WorldModel.h │ ├── PrecompiledHeaders │ │ ├── collisionPCH.cpp │ │ └── collisionPCH.h │ ├── RegularGrid.h │ ├── VMapDefinitions.h │ └── VMapTools.h ├── Common.cpp ├── Common.h ├── CompilerDefs.h ├── Configuration │ ├── BuiltInConfig.cpp │ ├── BuiltInConfig.h │ ├── Config.cpp │ └── Config.h ├── Cryptography │ ├── ARC4.cpp │ ├── ARC4.h │ ├── Authentication │ │ ├── AuthCrypt.cpp │ │ └── AuthCrypt.h │ ├── BigNumber.cpp │ ├── BigNumber.h │ ├── HMACSHA1.cpp │ ├── HMACSHA1.h │ ├── OpenSSLCrypto.cpp │ ├── OpenSSLCrypto.h │ ├── SHA1.cpp │ ├── SHA1.h │ └── WardenKeyGeneration.h ├── DataStores │ ├── DBCFileLoader.cpp │ └── DBCFileLoader.h ├── Debugging │ ├── Errors.cpp │ ├── Errors.h │ ├── WheatyExceptionReport.cpp │ └── WheatyExceptionReport.h ├── Define.h ├── GitRevision.cpp ├── GitRevision.h ├── Logging │ ├── Appender.cpp │ ├── Appender.h │ ├── AppenderConsole.cpp │ ├── AppenderConsole.h │ ├── AppenderFile.cpp │ ├── AppenderFile.h │ ├── Log.cpp │ ├── Log.h │ ├── LogCommon.h │ ├── LogMessage.cpp │ ├── LogMessage.h │ ├── LogOperation.cpp │ ├── LogOperation.h │ ├── Logger.cpp │ └── Logger.h ├── Platform │ ├── ServiceWin32.cpp │ └── ServiceWin32.h ├── PrecompiledHeaders │ └── commonPCH.h ├── Threading │ ├── LockedQueue.h │ ├── MPSCQueue.h │ ├── ProcessPriority.h │ ├── ProducerConsumerQueue.h │ └── Runnable.h ├── Utilities │ ├── ByteConverter.h │ ├── Containers.h │ ├── Duration.h │ ├── EventMap.cpp │ ├── EventMap.h │ ├── EventProcessor.cpp │ ├── EventProcessor.h │ ├── FuzzyFind.h │ ├── Hash.h │ ├── IteratorPair.h │ ├── Optional.h │ ├── OptionalFwd.h │ ├── Random.cpp │ ├── Random.h │ ├── Regex.h │ ├── SFMTRand.cpp │ ├── SFMTRand.h │ ├── SmartEnum.h │ ├── StartProcess.cpp │ ├── StartProcess.h │ ├── StringFormat.h │ ├── TaskScheduler.cpp │ ├── TaskScheduler.h │ ├── Timer.h │ ├── Util.cpp │ ├── Util.h │ └── advstd.h └── WaterDefines.h ├── genrev └── CMakeLists.txt ├── server ├── CMakeLists.txt ├── authserver │ ├── Authentication │ │ ├── AuthCodes.cpp │ │ ├── AuthCodes.h │ │ ├── TOTP.cpp │ │ └── TOTP.h │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── PrecompiledHeaders │ │ └── authPCH.h │ ├── Server │ │ ├── AuthSession.cpp │ │ ├── AuthSession.h │ │ └── AuthSocketMgr.h │ ├── authserver.conf.dist │ ├── authserver.ico │ ├── authserver.rc │ └── resource.h ├── database │ ├── CMakeLists.txt │ ├── Database │ │ ├── AdhocStatement.cpp │ │ ├── AdhocStatement.h │ │ ├── DatabaseEnv.cpp │ │ ├── DatabaseEnv.h │ │ ├── DatabaseEnvFwd.h │ │ ├── DatabaseLoader.cpp │ │ ├── DatabaseLoader.h │ │ ├── DatabaseWorker.cpp │ │ ├── DatabaseWorker.h │ │ ├── DatabaseWorkerPool.cpp │ │ ├── DatabaseWorkerPool.h │ │ ├── Field.cpp │ │ ├── Field.h │ │ ├── Implementation │ │ │ ├── CharacterDatabase.cpp │ │ │ ├── CharacterDatabase.h │ │ │ ├── LoginDatabase.cpp │ │ │ ├── LoginDatabase.h │ │ │ ├── LogsDatabase.cpp │ │ │ ├── LogsDatabase.h │ │ │ ├── WorldDatabase.cpp │ │ │ └── WorldDatabase.h │ │ ├── MySQLConnection.cpp │ │ ├── MySQLConnection.h │ │ ├── MySQLHacks.h │ │ ├── MySQLPreparedStatement.cpp │ │ ├── MySQLPreparedStatement.h │ │ ├── MySQLThreading.cpp │ │ ├── MySQLThreading.h │ │ ├── MySQLWorkaround.h │ │ ├── PreparedStatement.cpp │ │ ├── PreparedStatement.h │ │ ├── QueryCallback.cpp │ │ ├── QueryCallback.h │ │ ├── QueryCallbackProcessor.cpp │ │ ├── QueryCallbackProcessor.h │ │ ├── QueryHolder.cpp │ │ ├── QueryHolder.h │ │ ├── QueryResult.cpp │ │ ├── QueryResult.h │ │ ├── SQLOperation.h │ │ ├── Transaction.cpp │ │ └── Transaction.h │ ├── Logging │ │ ├── AppenderDB.cpp │ │ └── AppenderDB.h │ ├── PrecompiledHeaders │ │ └── databasePCH.h │ └── Updater │ │ ├── DBUpdater.cpp │ │ ├── DBUpdater.h │ │ ├── UpdateFetcher.cpp │ │ └── UpdateFetcher.h ├── game │ ├── AI │ │ ├── AIException.h │ │ ├── AOEAI.cpp │ │ ├── AOEAI.h │ │ ├── ArcherAI.cpp │ │ ├── ArcherAI.h │ │ ├── CombatAI.cpp │ │ ├── CombatAI.h │ │ ├── CreatureAI.cpp │ │ ├── CreatureAI.h │ │ ├── CreatureAIFactory.h │ │ ├── CreatureAIImpl.h │ │ ├── CreatureAIRegistry.cpp │ │ ├── CreatureAIRegistry.h │ │ ├── CreatureAISelector.cpp │ │ ├── CreatureAISelector.h │ │ ├── GameObjectAI.cpp │ │ ├── GameObjectAI.h │ │ ├── GameObjectAIFactory.h │ │ ├── GuardAI.cpp │ │ ├── GuardAI.h │ │ ├── PassiveAI.cpp │ │ ├── PassiveAI.h │ │ ├── PetAI.cpp │ │ ├── PetAI.h │ │ ├── PlayerAI.cpp │ │ ├── PlayerAI.h │ │ ├── ReactorAI.cpp │ │ ├── ReactorAI.h │ │ ├── ScriptedCreature.cpp │ │ ├── ScriptedCreature.h │ │ ├── ScriptedEscortAI.cpp │ │ ├── ScriptedEscortAI.h │ │ ├── ScriptedFollowerAI.cpp │ │ ├── ScriptedFollowerAI.h │ │ ├── ScriptedGossip.cpp │ │ ├── ScriptedGossip.h │ │ ├── SelectableAI.h │ │ ├── SimpleAI.cpp │ │ ├── SimpleAI.h │ │ ├── SimpleCooldown.cpp │ │ ├── SimpleCooldown.h │ │ ├── SmartAI.cpp │ │ ├── SmartAI.h │ │ ├── SmartScript.cpp │ │ ├── SmartScript.h │ │ ├── SmartScriptMgr.cpp │ │ ├── SmartScriptMgr.h │ │ ├── TotemAI.cpp │ │ ├── TotemAI.h │ │ ├── UnitAI.cpp │ │ └── UnitAI.h │ ├── Accounts │ │ ├── AccountMgr.cpp │ │ ├── AccountMgr.h │ │ ├── RBAC.cpp │ │ └── RBAC.h │ ├── Addons │ │ ├── AddonMgr.cpp │ │ └── AddonMgr.h │ ├── Anticheat │ │ ├── .gitignore │ │ ├── PlayerAntiCheat.cpp │ │ └── PlayerAntiCheat.h │ ├── AuctionHouseHandler.cpp │ ├── AuctionHouseMgr.cpp │ ├── AuctionHouseMgr.h │ ├── Battlegrounds │ │ ├── ArenaTeam.cpp │ │ ├── ArenaTeam.h │ │ ├── ArenaTeamHandler.cpp │ │ ├── ArenaTeamMgr.cpp │ │ ├── ArenaTeamMgr.h │ │ ├── Battleground.cpp │ │ ├── Battleground.h │ │ ├── BattlegroundHandler.cpp │ │ ├── BattlegroundMgr.cpp │ │ ├── BattlegroundMgr.h │ │ ├── BattlegroundQueue.cpp │ │ ├── BattlegroundQueue.h │ │ └── Zones │ │ │ ├── BattlegroundAA.cpp │ │ │ ├── BattlegroundAA.h │ │ │ ├── BattlegroundAB.cpp │ │ │ ├── BattlegroundAB.h │ │ │ ├── BattlegroundAV.cpp │ │ │ ├── BattlegroundAV.h │ │ │ ├── BattlegroundBE.cpp │ │ │ ├── BattlegroundBE.h │ │ │ ├── BattlegroundEY.cpp │ │ │ ├── BattlegroundEY.h │ │ │ ├── BattlegroundNA.cpp │ │ │ ├── BattlegroundNA.h │ │ │ ├── BattlegroundRL.cpp │ │ │ ├── BattlegroundRL.h │ │ │ ├── BattlegroundWS.cpp │ │ │ └── BattlegroundWS.h │ ├── CMakeLists.txt │ ├── Cache │ │ ├── CharacterCache.cpp │ │ └── CharacterCache.h │ ├── Cell.h │ ├── CellImpl.h │ ├── Channel.cpp │ ├── Channel.h │ ├── ChannelMgr.h │ ├── Chat │ │ ├── Chat.cpp │ │ ├── Chat.h │ │ ├── ChatCommands │ │ │ ├── ChatCommand.h │ │ │ ├── ChatCommandArgs.cpp │ │ │ ├── ChatCommandArgs.h │ │ │ ├── ChatCommandHelpers.h │ │ │ └── ChatCommandTags.h │ │ ├── ChatTextBuilder.h │ │ ├── HyperlinkTags.cpp │ │ ├── Hyperlinks.cpp │ │ └── Hyperlinks.h │ ├── Combat │ │ ├── CombatManager.cpp │ │ ├── CombatManager.h │ │ ├── ThreatManager.cpp │ │ └── ThreatManager.h │ ├── Conditions │ │ ├── ConditionMgr.cpp │ │ └── ConditionMgr.h │ ├── CreatureTextMgr.cpp │ ├── CreatureTextMgr.h │ ├── DataStores │ │ ├── DBCStores.cpp │ │ ├── DBCStores.h │ │ ├── M2Stores.cpp │ │ ├── M2Stores.h │ │ └── M2Structure.h │ ├── DuelHandler.cpp │ ├── Entities │ │ ├── Corpse │ │ │ ├── Corpse.cpp │ │ │ └── Corpse.h │ │ ├── Creature │ │ │ ├── Creature.cpp │ │ │ ├── Creature.h │ │ │ ├── CreatureData.h │ │ │ ├── CreatureGroups.cpp │ │ │ ├── CreatureGroups.h │ │ │ ├── GossipDef.cpp │ │ │ ├── GossipDef.h │ │ │ ├── TemporarySummon.cpp │ │ │ ├── TemporarySummon.h │ │ │ ├── Trainer.cpp │ │ │ └── Trainer.h │ │ ├── DynamicObject │ │ │ ├── DynamicObject.cpp │ │ │ └── DynamicObject.h │ │ ├── GameObject │ │ │ ├── GameObject.cpp │ │ │ ├── GameObject.h │ │ │ └── GameObjectData.h │ │ ├── Item │ │ │ ├── Container │ │ │ │ ├── Bag.cpp │ │ │ │ └── Bag.h │ │ │ ├── Item.cpp │ │ │ ├── Item.h │ │ │ ├── ItemEnchantmentMgr.cpp │ │ │ ├── ItemEnchantmentMgr.h │ │ │ ├── ItemTemplate.cpp │ │ │ └── ItemTemplate.h │ │ ├── Object │ │ │ ├── G3DPosition.hpp │ │ │ ├── Object.cpp │ │ │ ├── Object.h │ │ │ ├── ObjectDefines.h │ │ │ ├── ObjectGuid.cpp │ │ │ ├── ObjectGuid.h │ │ │ ├── ObjectPosSelector.cpp │ │ │ ├── ObjectPosSelector.h │ │ │ ├── Position.cpp │ │ │ ├── Position.h │ │ │ └── Updates │ │ │ │ ├── UpdateData.cpp │ │ │ │ ├── UpdateData.h │ │ │ │ ├── UpdateFieldFlags.cpp │ │ │ │ ├── UpdateFieldFlags.h │ │ │ │ ├── UpdateFields.h │ │ │ │ ├── UpdateFieldsDebug.cpp │ │ │ │ ├── UpdateFieldsDebug.h │ │ │ │ └── UpdateMask.h │ │ ├── Pet │ │ │ ├── Pet.cpp │ │ │ ├── Pet.h │ │ │ └── PetDefines.h │ │ ├── Player │ │ │ ├── CinematicMgr.cpp │ │ │ ├── CinematicMgr.h │ │ │ ├── Player.cpp │ │ │ ├── Player.h │ │ │ ├── SocialMgr.cpp │ │ │ ├── SocialMgr.h │ │ │ ├── TradeData.cpp │ │ │ └── TradeData.h │ │ ├── Totem │ │ │ ├── Totem.cpp │ │ │ └── Totem.h │ │ ├── Transport │ │ │ ├── Transport.cpp │ │ │ └── Transport.h │ │ └── Unit │ │ │ ├── StatSystem.cpp │ │ │ ├── Unit.cpp │ │ │ ├── Unit.h │ │ │ └── UnitDefines.h │ ├── Formulas.h │ ├── GameEventMgr.cpp │ ├── GameEventMgr.h │ ├── GlobalEvents.cpp │ ├── GlobalEvents.h │ ├── Globals │ │ ├── ObjectAccessor.cpp │ │ ├── ObjectAccessor.h │ │ ├── ObjectMgr.cpp │ │ └── ObjectMgr.h │ ├── GridMap.cpp │ ├── GridMap.h │ ├── GridNotifiers.cpp │ ├── GridNotifiers.h │ ├── GridNotifiersImpl.h │ ├── Grids │ │ ├── Grid.h │ │ ├── GridDefines.h │ │ ├── GridLoader.h │ │ ├── GridReference.h │ │ ├── GridStates.cpp │ │ ├── GridStates.h │ │ ├── NGrid.cpp │ │ ├── NGrid.h │ │ ├── ObjectGridLoader.cpp │ │ └── ObjectGridLoader.h │ ├── Groups │ │ ├── Group.cpp │ │ ├── Group.h │ │ ├── GroupHandler.cpp │ │ ├── GroupMgr.cpp │ │ ├── GroupMgr.h │ │ ├── GroupRefManager.h │ │ ├── GroupReference.cpp │ │ └── GroupReference.h │ ├── Guilds │ │ ├── Guild.cpp │ │ ├── Guild.h │ │ ├── GuildMgr.cpp │ │ └── GuildMgr.h │ ├── Handlers │ │ ├── AuthHandler.cpp │ │ ├── ChannelHandler.cpp │ │ ├── CharacterHandler.cpp │ │ ├── ChatHandler.cpp │ │ ├── CombatHandler.cpp │ │ ├── GuildHandler.cpp │ │ ├── ItemHandler.cpp │ │ ├── LFGHandler.cpp │ │ ├── MailHandler.cpp │ │ ├── NPCHandler.cpp │ │ ├── NPCHandler.h │ │ ├── PetHandler.cpp │ │ ├── PetitionsHandler.cpp │ │ ├── QueryHandler.cpp │ │ ├── QuestHandler.cpp │ │ ├── SkillHandler.cpp │ │ ├── TicketHandler.cpp │ │ ├── TradeHandler.cpp │ │ └── VoiceChatHandler.cpp │ ├── Instances │ │ ├── InstanceSaveMgr.cpp │ │ ├── InstanceSaveMgr.h │ │ ├── InstanceScript.cpp │ │ └── InstanceScript.h │ ├── Language.h │ ├── LogsDatabaseAccessor.cpp │ ├── LogsDatabaseAccessor.h │ ├── Loot │ │ ├── Loot.cpp │ │ ├── Loot.h │ │ ├── LootHandler.cpp │ │ ├── LootItemStorage.cpp │ │ ├── LootItemStorage.h │ │ ├── LootMgr.cpp │ │ └── LootMgr.h │ ├── Mails │ │ ├── Mail.cpp │ │ └── Mail.h │ ├── Maps │ │ ├── AreaBoundary.cpp │ │ ├── AreaBoundary.h │ │ ├── Map.cpp │ │ ├── Map.h │ │ ├── MapInstanced.cpp │ │ ├── MapInstanced.h │ │ ├── MapManager.cpp │ │ ├── MapManager.h │ │ ├── MapRefManager.h │ │ ├── MapReference.h │ │ ├── MapScripts.cpp │ │ ├── MapUpdater.cpp │ │ ├── MapUpdater.h │ │ ├── SpawnData.h │ │ ├── TransportMgr.cpp │ │ ├── TransportMgr.h │ │ ├── ZoneScript.cpp │ │ └── ZoneScript.h │ ├── MiscHandler.cpp │ ├── Miscellaneous │ │ ├── CommonHelpers.cpp │ │ └── CommonHelpers.h │ ├── Monitor.cpp │ ├── Monitor.h │ ├── Movement │ │ ├── AbstractFollower.cpp │ │ ├── AbstractFollower.h │ │ ├── MotionMaster.cpp │ │ ├── MotionMaster.h │ │ ├── MovementDefines.cpp │ │ ├── MovementDefines.h │ │ ├── MovementGenerator.cpp │ │ ├── MovementGenerator.h │ │ ├── MovementGenerators │ │ │ ├── ChaseMovementGenerator.cpp │ │ │ ├── ChaseMovementGenerator.h │ │ │ ├── ConfusedMovementGenerator.cpp │ │ │ ├── ConfusedMovementGenerator.h │ │ │ ├── DistractMovementGenerator.cpp │ │ │ ├── DistractMovementGenerator.h │ │ │ ├── FleeingMovementGenerator.cpp │ │ │ ├── FleeingMovementGenerator.h │ │ │ ├── FlightPathMovementGenerator.cpp │ │ │ ├── FlightPathMovementGenerator.h │ │ │ ├── FollowMovementGenerator.cpp │ │ │ ├── FollowMovementGenerator.h │ │ │ ├── FormationMovementGenerator.cpp │ │ │ ├── FormationMovementGenerator.h │ │ │ ├── GenericMovementGenerator.cpp │ │ │ ├── GenericMovementGenerator.h │ │ │ ├── HomeMovementGenerator.cpp │ │ │ ├── HomeMovementGenerator.h │ │ │ ├── IdleMovementGenerator.cpp │ │ │ ├── IdleMovementGenerator.h │ │ │ ├── PathMovementBase.h │ │ │ ├── PointMovementGenerator.cpp │ │ │ ├── PointMovementGenerator.h │ │ │ ├── RandomMovementGenerator.cpp │ │ │ ├── RandomMovementGenerator.h │ │ │ ├── RotateMovementGenerator.cpp │ │ │ ├── RotateMovementGenerator.h │ │ │ ├── SplineChainMovementGenerator.cpp │ │ │ ├── SplineChainMovementGenerator.h │ │ │ ├── WaypointMovementGenerator.cpp │ │ │ └── WaypointMovementGenerator.h │ │ ├── MovementHandler.cpp │ │ ├── MovementPacketSender.cpp │ │ ├── MovementPacketSender.h │ │ ├── PathGenerator.cpp │ │ ├── PathGenerator.h │ │ ├── Spline │ │ │ ├── MoveSpline.cpp │ │ │ ├── MoveSpline.h │ │ │ ├── MoveSplineFlag.h │ │ │ ├── MoveSplineInit.cpp │ │ │ ├── MoveSplineInit.h │ │ │ ├── MoveSplineInitArgs.h │ │ │ ├── MovementPacketBuilder.cpp │ │ │ ├── MovementPacketBuilder.h │ │ │ ├── MovementTypedefs.h │ │ │ ├── MovementUtil.cpp │ │ │ ├── Spline.cpp │ │ │ ├── Spline.h │ │ │ ├── SplineChain.h │ │ │ └── SplineImpl.h │ │ └── Waypoints │ │ │ ├── WaypointDefines.h │ │ │ ├── WaypointManager.cpp │ │ │ └── WaypointManager.h │ ├── OutdoorPvP │ │ ├── OutdoorPvP.cpp │ │ ├── OutdoorPvP.h │ │ ├── OutdoorPvPMgr.cpp │ │ └── OutdoorPvPMgr.h │ ├── Petitions │ │ ├── PetitionMgr.cpp │ │ └── PetitionMgr.h │ ├── PlayerDump.cpp │ ├── PlayerDump.h │ ├── PlayerTaxi.cpp │ ├── PlayerTaxi.h │ ├── Pools │ │ ├── PoolMgr.cpp │ │ ├── PoolMgr.h │ │ ├── QuestPools.cpp │ │ └── QuestPools.h │ ├── PrecompiledHeaders │ │ └── gamePCH.h │ ├── Profiler.cpp │ ├── Profiler.h │ ├── QuestDef.cpp │ ├── QuestDef.h │ ├── RecupMgr.cpp │ ├── RecupMgr.h │ ├── Replay │ │ ├── ReplayPlayer.cpp │ │ ├── ReplayPlayer.h │ │ ├── ReplayRecorder.cpp │ │ └── ReplayRecorder.h │ ├── Reputation │ │ ├── ReputationMgr.cpp │ │ └── ReputationMgr.h │ ├── Scripting │ │ ├── ScriptMgr.cpp │ │ ├── ScriptMgr.h │ │ ├── ScriptReloadMgr.cpp │ │ ├── ScriptReloadMgr.h │ │ ├── ScriptSystem.cpp │ │ └── ScriptSystem.h │ ├── Server │ │ ├── ClientControl.cpp │ │ ├── ClientControl.h │ │ ├── Packet.h │ │ ├── Packets │ │ │ ├── AllPackets.h │ │ │ ├── NPCPackets.cpp │ │ │ ├── NPCPackets.h │ │ │ ├── PacketUtilities.cpp │ │ │ ├── PacketUtilities.h │ │ │ ├── QueryPackets.cpp │ │ │ ├── QueryPackets.h │ │ │ ├── QuestPackets.cpp │ │ │ ├── QuestPackets.h │ │ │ ├── SpellPackets.cpp │ │ │ ├── SpellPackets.h │ │ │ ├── WorldPacket.h │ │ │ ├── WorldStatePackets.cpp │ │ │ └── WorldStatePackets.h │ │ ├── Protocol │ │ │ ├── Opcodes.cpp │ │ │ ├── Opcodes.h │ │ │ ├── PacketLog.cpp │ │ │ ├── PacketLog.h │ │ │ └── ServerPktHeader.h │ │ ├── WorldSession.cpp │ │ ├── WorldSession.h │ │ ├── WorldSocket.cpp │ │ ├── WorldSocket.h │ │ ├── WorldSocketMgr.cpp │ │ └── WorldSocketMgr.h │ ├── Singleton.h │ ├── SkillDiscovery.cpp │ ├── SkillDiscovery.h │ ├── SkillExtraItems.cpp │ ├── SkillExtraItems.h │ ├── SocialHandler.cpp │ ├── SpectatorAddon.cpp │ ├── SpectatorAddon.h │ ├── Spells │ │ ├── Auras │ │ │ ├── SpellAuraDefines.h │ │ │ ├── SpellAuraEffects.cpp │ │ │ ├── SpellAuraEffects.h │ │ │ ├── SpellAuras.cpp │ │ │ └── SpellAuras.h │ │ ├── CastSpellExtraArgs.cpp │ │ ├── Spell.cpp │ │ ├── Spell.h │ │ ├── SpellDefines.h │ │ ├── SpellEffects.cpp │ │ ├── SpellEffectsSummons.cpp │ │ ├── SpellHandler.cpp │ │ ├── SpellHistory.cpp │ │ ├── SpellHistory.h │ │ ├── SpellInfo.cpp │ │ ├── SpellInfo.h │ │ ├── SpellMgr.cpp │ │ ├── SpellMgr.h │ │ ├── SpellScript.cpp │ │ └── SpellScript.h │ ├── Storages │ │ ├── WhoListStorage.cpp │ │ └── WhoListStorage.h │ ├── TaxiHandler.cpp │ ├── Testing │ │ ├── TestCase.cpp │ │ ├── TestCase.h │ │ ├── TestCase_Macros.cpp │ │ ├── TestDefines.h │ │ ├── TestMgr.cpp │ │ ├── TestMgr.h │ │ ├── TestPlayer.cpp │ │ ├── TestPlayer.h │ │ ├── TestResults.cpp │ │ ├── TestResults.h │ │ ├── TestSectionResult.cpp │ │ ├── TestSectionResult.h │ │ ├── TestThread.cpp │ │ └── TestThread.h │ ├── ThreadingModel.h │ ├── Tickets │ │ ├── TicketMgr.cpp │ │ └── TicketMgr.h │ ├── Time │ │ ├── GameTime.cpp │ │ ├── GameTime.h │ │ ├── UpdateTime.cpp │ │ └── UpdateTime.h │ ├── VehicleDefines.h │ ├── Warden │ │ ├── WardenBase.cpp │ │ ├── WardenBase.h │ │ ├── WardenDataStorage.cpp │ │ ├── WardenDataStorage.h │ │ ├── WardenMac.cpp │ │ ├── WardenMac.h │ │ ├── WardenModuleMac.h │ │ ├── WardenModuleWin.h │ │ ├── WardenWin.cpp │ │ └── WardenWin.h │ ├── Weather.cpp │ ├── Weather.h │ ├── World.cpp │ ├── World.h │ └── playerbot │ │ ├── AiFactory.cpp │ │ ├── AiFactory.h │ │ ├── ChatFilter.cpp │ │ ├── ChatFilter.h │ │ ├── ChatHelper.cpp │ │ ├── ChatHelper.h │ │ ├── FleeManager.cpp │ │ ├── FleeManager.h │ │ ├── GuildTaskMgr.cpp │ │ ├── GuildTaskMgr.h │ │ ├── Helpers.cpp │ │ ├── LazyCalculatedValue.h │ │ ├── LootObjectStack.cpp │ │ ├── LootObjectStack.h │ │ ├── PlayerbotAI.cpp │ │ ├── PlayerbotAI.h │ │ ├── PlayerbotAIAware.h │ │ ├── PlayerbotAIBase.cpp │ │ ├── PlayerbotAIBase.h │ │ ├── PlayerbotAIConfig.cpp │ │ ├── PlayerbotAIConfig.h │ │ ├── PlayerbotFactory.cpp │ │ ├── PlayerbotFactory.h │ │ ├── PlayerbotMgr.cpp │ │ ├── PlayerbotMgr.h │ │ ├── PlayerbotSecurity.cpp │ │ ├── PlayerbotSecurity.h │ │ ├── RandomItemMgr.cpp │ │ ├── RandomItemMgr.h │ │ ├── RandomPlayerbotFactory.cpp │ │ ├── RandomPlayerbotFactory.h │ │ ├── RandomPlayerbotMgr.cpp │ │ ├── RandomPlayerbotMgr.h │ │ ├── aiplayerbot.conf.dist.in │ │ ├── playerbot.h │ │ ├── playerbotDefs.h │ │ └── strategy │ │ ├── Action.cpp │ │ ├── Action.h │ │ ├── ActionBasket.cpp │ │ ├── ActionBasket.h │ │ ├── AiObject.cpp │ │ ├── AiObject.h │ │ ├── AiObjectContext.cpp │ │ ├── AiObjectContext.h │ │ ├── Engine.cpp │ │ ├── Engine.h │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── ExternalEventHelper.cpp │ │ ├── ExternalEventHelper.h │ │ ├── ItemVisitors.h │ │ ├── Multiplier.cpp │ │ ├── Multiplier.h │ │ ├── NamedObjectContext.h │ │ ├── PassiveMultiplier.cpp │ │ ├── PassiveMultiplier.h │ │ ├── Queue.cpp │ │ ├── Queue.h │ │ ├── Strategy.cpp │ │ ├── Strategy.h │ │ ├── StrategyContext.h │ │ ├── Trigger.cpp │ │ ├── Trigger.h │ │ ├── Value.cpp │ │ ├── Value.h │ │ ├── actions │ │ ├── AcceptDuelAction.h │ │ ├── AcceptInvitationAction.h │ │ ├── AcceptQuestAction.cpp │ │ ├── AcceptQuestAction.h │ │ ├── AcceptResurrectAction.h │ │ ├── ActionContext.h │ │ ├── AddLootAction.cpp │ │ ├── AddLootAction.h │ │ ├── AreaTriggerAction.cpp │ │ ├── AreaTriggerAction.h │ │ ├── AttackAction.cpp │ │ ├── AttackAction.h │ │ ├── BankAction.cpp │ │ ├── BankAction.h │ │ ├── BuffAction.cpp │ │ ├── BuffAction.h │ │ ├── BuyAction.cpp │ │ ├── BuyAction.h │ │ ├── CastCustomSpellAction.cpp │ │ ├── CastCustomSpellAction.h │ │ ├── ChangeChatAction.cpp │ │ ├── ChangeChatAction.h │ │ ├── ChangeStrategyAction.cpp │ │ ├── ChangeStrategyAction.h │ │ ├── ChangeTalentsAction.cpp │ │ ├── ChangeTalentsAction.h │ │ ├── ChatActionContext.h │ │ ├── ChatShortcutActions.cpp │ │ ├── ChatShortcutActions.h │ │ ├── CheatGodAction.cpp │ │ ├── CheatGodAction.h │ │ ├── CheckMailAction.cpp │ │ ├── CheckMailAction.h │ │ ├── CheckMountStateAction.cpp │ │ ├── CheckMountStateAction.h │ │ ├── ChooseTargetActions.h │ │ ├── DestroyItemAction.cpp │ │ ├── DestroyItemAction.h │ │ ├── DropQuestAction.cpp │ │ ├── DropQuestAction.h │ │ ├── EmoteAction.cpp │ │ ├── EmoteAction.h │ │ ├── EquipAction.cpp │ │ ├── EquipAction.h │ │ ├── FollowActions.cpp │ │ ├── FollowActions.h │ │ ├── GMModeAction.cpp │ │ ├── GMModeAction.h │ │ ├── GenericActions.cpp │ │ ├── GenericActions.h │ │ ├── GenericSpellActions.cpp │ │ ├── GenericSpellActions.h │ │ ├── GossipHelloAction.cpp │ │ ├── GossipHelloAction.h │ │ ├── GuildAcceptAction.cpp │ │ ├── GuildAcceptAction.h │ │ ├── GuildBankAction.cpp │ │ ├── GuildBankAction.h │ │ ├── HelpAction.cpp │ │ ├── HelpAction.h │ │ ├── InventoryAction.cpp │ │ ├── InventoryAction.h │ │ ├── InventoryChangeFailureAction.cpp │ │ ├── InventoryChangeFailureAction.h │ │ ├── InviteToGroupAction.h │ │ ├── LeaveGroupAction.h │ │ ├── LfgActions.cpp │ │ ├── LfgActions.h │ │ ├── ListQuestsActions.cpp │ │ ├── ListQuestsActions.h │ │ ├── ListSpellsAction.cpp │ │ ├── ListSpellsAction.h │ │ ├── LogLevelAction.cpp │ │ ├── LogLevelAction.h │ │ ├── LootAction.cpp │ │ ├── LootAction.h │ │ ├── LootRollAction.cpp │ │ ├── LootRollAction.h │ │ ├── LootStrategyAction.cpp │ │ ├── LootStrategyAction.h │ │ ├── MovementActions.cpp │ │ ├── MovementActions.h │ │ ├── NonCombatActions.cpp │ │ ├── NonCombatActions.h │ │ ├── PassLeadershipToMasterAction.h │ │ ├── PositionAction.cpp │ │ ├── PositionAction.h │ │ ├── QueryItemUsageAction.cpp │ │ ├── QueryItemUsageAction.h │ │ ├── QueryQuestAction.cpp │ │ ├── QueryQuestAction.h │ │ ├── QuestAction.cpp │ │ ├── QuestAction.h │ │ ├── ReachTargetActions.h │ │ ├── ReadyCheckAction.cpp │ │ ├── ReadyCheckAction.h │ │ ├── ReleaseSpiritAction.h │ │ ├── RememberTaxiAction.cpp │ │ ├── RememberTaxiAction.h │ │ ├── RepairAllAction.cpp │ │ ├── RepairAllAction.h │ │ ├── ResetAiAction.cpp │ │ ├── ResetAiAction.h │ │ ├── ReviveFromCorpseAction.cpp │ │ ├── ReviveFromCorpseAction.h │ │ ├── RewardAction.cpp │ │ ├── RewardAction.h │ │ ├── RtiAction.h │ │ ├── SaveManaAction.cpp │ │ ├── SaveManaAction.h │ │ ├── SecurityCheckAction.cpp │ │ ├── SecurityCheckAction.h │ │ ├── SellAction.cpp │ │ ├── SellAction.h │ │ ├── SetHomeAction.cpp │ │ ├── SetHomeAction.h │ │ ├── StatsAction.cpp │ │ ├── StatsAction.h │ │ ├── StayActions.cpp │ │ ├── StayActions.h │ │ ├── SuggestWhatToDoAction.cpp │ │ ├── SuggestWhatToDoAction.h │ │ ├── TalkToQuestGiverAction.cpp │ │ ├── TalkToQuestGiverAction.h │ │ ├── TaxiAction.cpp │ │ ├── TaxiAction.h │ │ ├── TeleportAction.cpp │ │ ├── TeleportAction.h │ │ ├── TellCastFailedAction.cpp │ │ ├── TellCastFailedAction.h │ │ ├── TellItemCountAction.cpp │ │ ├── TellItemCountAction.h │ │ ├── TellLosAction.cpp │ │ ├── TellLosAction.h │ │ ├── TellMasterAction.h │ │ ├── TellReputationAction.cpp │ │ ├── TellReputationAction.h │ │ ├── TellTargetAction.cpp │ │ ├── TellTargetAction.h │ │ ├── TradeAction.cpp │ │ ├── TradeAction.h │ │ ├── TradeStatusAction.cpp │ │ ├── TradeStatusAction.h │ │ ├── TrainerAction.cpp │ │ ├── TrainerAction.h │ │ ├── UnequipAction.cpp │ │ ├── UnequipAction.h │ │ ├── UseItemAction.cpp │ │ ├── UseItemAction.h │ │ ├── UseMeetingStoneAction.cpp │ │ ├── UseMeetingStoneAction.h │ │ ├── WhoAction.cpp │ │ ├── WhoAction.h │ │ └── WorldPacketActionContext.h │ │ ├── druid │ │ ├── BearTankDruidStrategy.cpp │ │ ├── BearTankDruidStrategy.h │ │ ├── CasterDruidStrategy.cpp │ │ ├── CasterDruidStrategy.h │ │ ├── CatDpsDruidStrategy.cpp │ │ ├── CatDpsDruidStrategy.h │ │ ├── DruidActions.cpp │ │ ├── DruidActions.h │ │ ├── DruidAiObjectContext.cpp │ │ ├── DruidAiObjectContext.h │ │ ├── DruidBearActions.h │ │ ├── DruidCatActions.h │ │ ├── DruidMultipliers.cpp │ │ ├── DruidMultipliers.h │ │ ├── DruidShapeshiftActions.h │ │ ├── DruidTriggers.cpp │ │ ├── DruidTriggers.h │ │ ├── FeralDruidStrategy.cpp │ │ ├── FeralDruidStrategy.h │ │ ├── GenericDruidNonCombatStrategy.cpp │ │ ├── GenericDruidNonCombatStrategy.h │ │ ├── GenericDruidStrategy.cpp │ │ ├── GenericDruidStrategy.h │ │ ├── HealDruidStrategy.cpp │ │ └── HealDruidStrategy.h │ │ ├── generic │ │ ├── AttackEnemyPlayersStrategy.cpp │ │ ├── AttackEnemyPlayersStrategy.h │ │ ├── CastTimeStrategy.cpp │ │ ├── CastTimeStrategy.h │ │ ├── ChatCommandHandlerStrategy.cpp │ │ ├── ChatCommandHandlerStrategy.h │ │ ├── CombatStrategy.cpp │ │ ├── CombatStrategy.h │ │ ├── ConserveManaStrategy.cpp │ │ ├── ConserveManaStrategy.h │ │ ├── DeadStrategy.cpp │ │ ├── DeadStrategy.h │ │ ├── DpsAssistStrategy.cpp │ │ ├── DpsAssistStrategy.h │ │ ├── DuelStrategy.cpp │ │ ├── DuelStrategy.h │ │ ├── EmoteStrategy.cpp │ │ ├── EmoteStrategy.h │ │ ├── FleeStrategy.cpp │ │ ├── FleeStrategy.h │ │ ├── FollowMasterStrategy.cpp │ │ ├── FollowMasterStrategy.h │ │ ├── GrindingStrategy.cpp │ │ ├── GrindingStrategy.h │ │ ├── GuardStrategy.cpp │ │ ├── GuardStrategy.h │ │ ├── KiteStrategy.cpp │ │ ├── KiteStrategy.h │ │ ├── LootNonCombatStrategy.cpp │ │ ├── LootNonCombatStrategy.h │ │ ├── MeleeCombatStrategy.cpp │ │ ├── MeleeCombatStrategy.h │ │ ├── MoveRandomStrategy.cpp │ │ ├── MoveRandomStrategy.h │ │ ├── NonCombatStrategy.cpp │ │ ├── NonCombatStrategy.h │ │ ├── PassTroughStrategy.h │ │ ├── PassiveStrategy.cpp │ │ ├── PassiveStrategy.h │ │ ├── PullStrategy.cpp │ │ ├── PullStrategy.h │ │ ├── QuestStrategies.cpp │ │ ├── QuestStrategies.h │ │ ├── RacialsStrategy.cpp │ │ ├── RacialsStrategy.h │ │ ├── RangedCombatStrategy.cpp │ │ ├── RangedCombatStrategy.h │ │ ├── RunawayStrategy.cpp │ │ ├── RunawayStrategy.h │ │ ├── StayStrategy.cpp │ │ ├── StayStrategy.h │ │ ├── TankAoeStrategy.cpp │ │ ├── TankAoeStrategy.h │ │ ├── TellTargetStrategy.cpp │ │ ├── TellTargetStrategy.h │ │ ├── ThreatStrategy.cpp │ │ ├── ThreatStrategy.h │ │ ├── UseFoodStrategy.cpp │ │ ├── UseFoodStrategy.h │ │ ├── UsePotionsStrategy.cpp │ │ ├── UsePotionsStrategy.h │ │ ├── WorldPacketHandlerStrategy.cpp │ │ └── WorldPacketHandlerStrategy.h │ │ ├── hunter │ │ ├── DpsHunterStrategy.cpp │ │ ├── DpsHunterStrategy.h │ │ ├── GenericHunterNonCombatStrategy.cpp │ │ ├── GenericHunterNonCombatStrategy.h │ │ ├── GenericHunterStrategy.cpp │ │ ├── GenericHunterStrategy.h │ │ ├── HunterActions.cpp │ │ ├── HunterActions.h │ │ ├── HunterAiObjectContext.cpp │ │ ├── HunterAiObjectContext.h │ │ ├── HunterBuffStrategies.cpp │ │ ├── HunterBuffStrategies.h │ │ ├── HunterMultipliers.cpp │ │ ├── HunterMultipliers.h │ │ ├── HunterTriggers.cpp │ │ └── HunterTriggers.h │ │ ├── mage │ │ ├── ArcaneMageStrategy.cpp │ │ ├── ArcaneMageStrategy.h │ │ ├── FireMageStrategy.cpp │ │ ├── FireMageStrategy.h │ │ ├── FrostMageStrategy.cpp │ │ ├── FrostMageStrategy.h │ │ ├── GenericMageNonCombatStrategy.cpp │ │ ├── GenericMageNonCombatStrategy.h │ │ ├── GenericMageStrategy.cpp │ │ ├── GenericMageStrategy.h │ │ ├── MageActions.cpp │ │ ├── MageActions.h │ │ ├── MageAiObjectContext.cpp │ │ ├── MageAiObjectContext.h │ │ ├── MageMultipliers.cpp │ │ ├── MageMultipliers.h │ │ ├── MageTriggers.cpp │ │ └── MageTriggers.h │ │ ├── paladin │ │ ├── DpsPaladinStrategy.cpp │ │ ├── DpsPaladinStrategy.h │ │ ├── GenericPaladinNonCombatStrategy.cpp │ │ ├── GenericPaladinNonCombatStrategy.h │ │ ├── GenericPaladinStrategy.cpp │ │ ├── GenericPaladinStrategy.h │ │ ├── GenericPaladinStrategyActionNodeFactory.h │ │ ├── HealPaladinStrategy.cpp │ │ ├── HealPaladinStrategy.h │ │ ├── PaladinActions.cpp │ │ ├── PaladinActions.h │ │ ├── PaladinAiObjectContext.cpp │ │ ├── PaladinAiObjectContext.h │ │ ├── PaladinBuffStrategies.cpp │ │ ├── PaladinBuffStrategies.h │ │ ├── PaladinMultipliers.cpp │ │ ├── PaladinMultipliers.h │ │ ├── PaladinTriggers.cpp │ │ ├── PaladinTriggers.h │ │ ├── TankPaladinStrategy.cpp │ │ └── TankPaladinStrategy.h │ │ ├── priest │ │ ├── GenericPriestStrategy.cpp │ │ ├── GenericPriestStrategy.h │ │ ├── GenericPriestStrategyActionNodeFactory.h │ │ ├── HealPriestStrategy.cpp │ │ ├── HealPriestStrategy.h │ │ ├── HolyPriestStrategy.cpp │ │ ├── HolyPriestStrategy.h │ │ ├── PriestActions.cpp │ │ ├── PriestActions.h │ │ ├── PriestAiObjectContext.cpp │ │ ├── PriestAiObjectContext.h │ │ ├── PriestMultipliers.cpp │ │ ├── PriestMultipliers.h │ │ ├── PriestNonCombatStrategy.cpp │ │ ├── PriestNonCombatStrategy.h │ │ ├── PriestNonCombatStrategyActionNodeFactory.h │ │ ├── PriestTriggers.cpp │ │ ├── PriestTriggers.h │ │ ├── ShadowPriestStrategy.cpp │ │ ├── ShadowPriestStrategy.h │ │ └── ShadowPriestStrategyActionNodeFactory.h │ │ ├── rogue │ │ ├── DpsRogueStrategy.cpp │ │ ├── DpsRogueStrategy.h │ │ ├── GenericRogueNonCombatStrategy.cpp │ │ ├── GenericRogueNonCombatStrategy.h │ │ ├── RogueActions.cpp │ │ ├── RogueActions.h │ │ ├── RogueAiObjectContext.cpp │ │ ├── RogueAiObjectContext.h │ │ ├── RogueComboActions.h │ │ ├── RogueFinishingActions.h │ │ ├── RogueMultipliers.cpp │ │ ├── RogueMultipliers.h │ │ ├── RogueOpeningActions.h │ │ ├── RogueTriggers.cpp │ │ └── RogueTriggers.h │ │ ├── shaman │ │ ├── CasterShamanStrategy.cpp │ │ ├── CasterShamanStrategy.h │ │ ├── GenericShamanStrategy.cpp │ │ ├── GenericShamanStrategy.h │ │ ├── HealShamanStrategy.cpp │ │ ├── HealShamanStrategy.h │ │ ├── MeleeShamanStrategy.cpp │ │ ├── MeleeShamanStrategy.h │ │ ├── ShamanActions.cpp │ │ ├── ShamanActions.h │ │ ├── ShamanAiObjectContext.cpp │ │ ├── ShamanAiObjectContext.h │ │ ├── ShamanMultipliers.cpp │ │ ├── ShamanMultipliers.h │ │ ├── ShamanNonCombatStrategy.cpp │ │ ├── ShamanNonCombatStrategy.h │ │ ├── ShamanTriggers.cpp │ │ ├── ShamanTriggers.h │ │ ├── TotemsShamanStrategy.cpp │ │ └── TotemsShamanStrategy.h │ │ ├── triggers │ │ ├── ChatCommandTrigger.h │ │ ├── ChatTriggerContext.h │ │ ├── CureTriggers.cpp │ │ ├── CureTriggers.h │ │ ├── GenericTriggers.cpp │ │ ├── GenericTriggers.h │ │ ├── HealthTriggers.cpp │ │ ├── HealthTriggers.h │ │ ├── LfgTriggers.h │ │ ├── LootTriggers.cpp │ │ ├── LootTriggers.h │ │ ├── RangeTriggers.h │ │ ├── TriggerContext.h │ │ ├── WithinAreaTrigger.h │ │ ├── WorldPacketTrigger.h │ │ └── WorldPacketTriggerContext.h │ │ ├── values │ │ ├── AlwaysLootListValue.h │ │ ├── AoeHealValues.cpp │ │ ├── AoeHealValues.h │ │ ├── AttackerCountValues.cpp │ │ ├── AttackerCountValues.h │ │ ├── AttackerWithoutAuraTargetValue.cpp │ │ ├── AttackerWithoutAuraTargetValue.h │ │ ├── AttackersValue.cpp │ │ ├── AttackersValue.h │ │ ├── AvailableLootValue.h │ │ ├── CcTargetValue.cpp │ │ ├── CcTargetValue.h │ │ ├── ChatValue.h │ │ ├── CurrentCcTargetValue.cpp │ │ ├── CurrentCcTargetValue.h │ │ ├── CurrentTargetValue.cpp │ │ ├── CurrentTargetValue.h │ │ ├── DistanceValue.h │ │ ├── DpsTargetValue.cpp │ │ ├── DpsTargetValue.h │ │ ├── DuelTargetValue.cpp │ │ ├── DuelTargetValue.h │ │ ├── EnemyHealerTargetValue.cpp │ │ ├── EnemyHealerTargetValue.h │ │ ├── EnemyPlayerValue.cpp │ │ ├── EnemyPlayerValue.h │ │ ├── Formations.cpp │ │ ├── Formations.h │ │ ├── GrindTargetValue.cpp │ │ ├── GrindTargetValue.h │ │ ├── HasAvailableLootValue.h │ │ ├── HasTotemValue.h │ │ ├── InvalidTargetValue.cpp │ │ ├── InvalidTargetValue.h │ │ ├── IsBehindValue.h │ │ ├── IsFacingValue.h │ │ ├── IsMovingValue.h │ │ ├── ItemCountValue.cpp │ │ ├── ItemCountValue.h │ │ ├── ItemForSpellValue.cpp │ │ ├── ItemForSpellValue.h │ │ ├── ItemUsageValue.cpp │ │ ├── ItemUsageValue.h │ │ ├── LastMovementValue.h │ │ ├── LastSpellCastTimeValue.h │ │ ├── LastSpellCastValue.h │ │ ├── LeastHpTargetValue.cpp │ │ ├── LeastHpTargetValue.h │ │ ├── LfgValues.h │ │ ├── LineTargetValue.cpp │ │ ├── LineTargetValue.h │ │ ├── LogLevelValue.h │ │ ├── LootStrategyValue.h │ │ ├── ManaSaveLevelValue.h │ │ ├── MasterTargetValue.h │ │ ├── NearestAdsValue.cpp │ │ ├── NearestAdsValue.h │ │ ├── NearestCorpsesValue.cpp │ │ ├── NearestCorpsesValue.h │ │ ├── NearestGameObjects.cpp │ │ ├── NearestGameObjects.h │ │ ├── NearestNpcsValue.cpp │ │ ├── NearestNpcsValue.h │ │ ├── NearestUnitsValue.h │ │ ├── PartyMemberToDispel.cpp │ │ ├── PartyMemberToDispel.h │ │ ├── PartyMemberToHeal.cpp │ │ ├── PartyMemberToHeal.h │ │ ├── PartyMemberToResurrect.cpp │ │ ├── PartyMemberToResurrect.h │ │ ├── PartyMemberValue.cpp │ │ ├── PartyMemberValue.h │ │ ├── PartyMemberWithoutAuraValue.cpp │ │ ├── PartyMemberWithoutAuraValue.h │ │ ├── PetTargetValue.h │ │ ├── PositionValue.cpp │ │ ├── PositionValue.h │ │ ├── PossibleTargetsValue.cpp │ │ ├── PossibleTargetsValue.h │ │ ├── RtiTargetValue.h │ │ ├── RtiValue.cpp │ │ ├── RtiValue.h │ │ ├── SelfTargetValue.h │ │ ├── SpellCastUsefulValue.cpp │ │ ├── SpellCastUsefulValue.h │ │ ├── SpellIdValue.cpp │ │ ├── SpellIdValue.h │ │ ├── StatsValues.cpp │ │ ├── StatsValues.h │ │ ├── TankTargetValue.cpp │ │ ├── TankTargetValue.h │ │ ├── TargetValue.cpp │ │ ├── TargetValue.h │ │ ├── ThreatValues.cpp │ │ ├── ThreatValues.h │ │ ├── ValueContext.h │ │ └── formations │ │ │ ├── Arrow.cpp │ │ │ └── Arrow.h │ │ ├── warlock │ │ ├── DpsWarlockStrategy.cpp │ │ ├── DpsWarlockStrategy.h │ │ ├── GenericWarlockNonCombatStrategy.cpp │ │ ├── GenericWarlockNonCombatStrategy.h │ │ ├── GenericWarlockStrategy.cpp │ │ ├── GenericWarlockStrategy.h │ │ ├── TankWarlockStrategy.cpp │ │ ├── TankWarlockStrategy.h │ │ ├── WarlockActions.cpp │ │ ├── WarlockActions.h │ │ ├── WarlockAiObjectContext.cpp │ │ ├── WarlockAiObjectContext.h │ │ ├── WarlockMultipliers.cpp │ │ ├── WarlockMultipliers.h │ │ ├── WarlockTriggers.cpp │ │ └── WarlockTriggers.h │ │ └── warrior │ │ ├── DpsWarriorStrategy.cpp │ │ ├── DpsWarriorStrategy.h │ │ ├── GenericWarriorNonCombatStrategy.cpp │ │ ├── GenericWarriorNonCombatStrategy.h │ │ ├── GenericWarriorStrategy.cpp │ │ ├── GenericWarriorStrategy.h │ │ ├── TankWarriorStrategy.cpp │ │ ├── TankWarriorStrategy.h │ │ ├── WarriorActions.cpp │ │ ├── WarriorActions.h │ │ ├── WarriorAiObjectContext.cpp │ │ ├── WarriorAiObjectContext.h │ │ ├── WarriorMultipliers.cpp │ │ ├── WarriorMultipliers.h │ │ ├── WarriorTriggers.cpp │ │ └── WarriorTriggers.h ├── scripts │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Commands │ │ ├── cs_account.cpp │ │ ├── cs_ban.cpp │ │ ├── cs_cast.cpp │ │ ├── cs_cheat.cpp │ │ ├── cs_debug.cpp │ │ ├── cs_event.cpp │ │ ├── cs_gm.cpp │ │ ├── cs_go.cpp │ │ ├── cs_gobject.cpp │ │ ├── cs_group.cpp │ │ ├── cs_guild.cpp │ │ ├── cs_honor.cpp │ │ ├── cs_instance.cpp │ │ ├── cs_learn.cpp │ │ ├── cs_list.cpp │ │ ├── cs_lookup.cpp │ │ ├── cs_misc.cpp │ │ ├── cs_misc2.cpp │ │ ├── cs_mmap.cpp │ │ ├── cs_modify.cpp │ │ ├── cs_muteinfo.cpp │ │ ├── cs_npc.cpp │ │ ├── cs_pdump.cpp │ │ ├── cs_pet.cpp │ │ ├── cs_profiling.cpp │ │ ├── cs_quest.cpp │ │ ├── cs_reload.cpp │ │ ├── cs_replay.cpp │ │ ├── cs_reset.cpp │ │ ├── cs_script_loader.cpp │ │ ├── cs_send.cpp │ │ ├── cs_server.cpp │ │ ├── cs_shop.cpp │ │ ├── cs_smartai.cpp │ │ ├── cs_spectate.cpp │ │ ├── cs_tele.cpp │ │ ├── cs_test.cpp │ │ ├── cs_ticket.cpp │ │ ├── cs_wp.cpp │ │ └── cs_zone.cpp │ ├── EasternKingdoms │ │ ├── AlteracValley │ │ │ ├── alterac_valley.cpp │ │ │ ├── boss_balinda.cpp │ │ │ ├── boss_drekthar.cpp │ │ │ ├── boss_galvangar.cpp │ │ │ └── boss_vanndar.cpp │ │ ├── BlackrockMountain │ │ │ ├── BlackrockDepths │ │ │ │ ├── blackrock_depths.cpp │ │ │ │ ├── blackrock_depths.h │ │ │ │ ├── boss_ambassador_flamelash.cpp │ │ │ │ ├── boss_coren_direbrew.cpp │ │ │ │ ├── boss_emperor_dagran_thaurissan.cpp │ │ │ │ ├── boss_general_angerforge.cpp │ │ │ │ ├── boss_high_interrogator_gerstahn.cpp │ │ │ │ ├── boss_magmus.cpp │ │ │ │ ├── boss_moira_bronzebeard.cpp │ │ │ │ ├── boss_tomb_of_seven.cpp │ │ │ │ └── instance_blackrock_depths.cpp │ │ │ ├── BlackrockSpire │ │ │ │ ├── blackrock_spire.h │ │ │ │ ├── boss_drakkisath.cpp │ │ │ │ ├── boss_gizrul_the_slavener.cpp │ │ │ │ ├── boss_gyth.cpp │ │ │ │ ├── boss_halycon.cpp │ │ │ │ ├── boss_highlord_omokk.cpp │ │ │ │ ├── boss_lord_valthalak.cpp │ │ │ │ ├── boss_mother_smolderweb.cpp │ │ │ │ ├── boss_overlord_wyrmthalak.cpp │ │ │ │ ├── boss_pyroguard_emberseer.cpp │ │ │ │ ├── boss_quartermaster_zigris.cpp │ │ │ │ ├── boss_rend_blackhand.cpp │ │ │ │ ├── boss_shadow_hunter_voshgajin.cpp │ │ │ │ ├── boss_the_beast.cpp │ │ │ │ ├── boss_urok_doomhowl.cpp │ │ │ │ ├── boss_warmaster_voone.cpp │ │ │ │ └── instance_blackrock_spire.cpp │ │ │ ├── BlackwingLair │ │ │ │ ├── blackwing_lair.h │ │ │ │ ├── boss_broodlord_lashlayer.cpp │ │ │ │ ├── boss_chromaggus.cpp │ │ │ │ ├── boss_ebonroc.cpp │ │ │ │ ├── boss_firemaw.cpp │ │ │ │ ├── boss_flamegor.cpp │ │ │ │ ├── boss_nefarian.cpp │ │ │ │ ├── boss_razorgore.cpp │ │ │ │ ├── boss_vaelastrasz.cpp │ │ │ │ └── instance_blackwing_lair.cpp │ │ │ └── MoltenCore │ │ │ │ ├── boss_baron_geddon.cpp │ │ │ │ ├── boss_garr.cpp │ │ │ │ ├── boss_gehennas.cpp │ │ │ │ ├── boss_golemagg.cpp │ │ │ │ ├── boss_lucifron.cpp │ │ │ │ ├── boss_magmadar.cpp │ │ │ │ ├── boss_majordomo_executus.cpp │ │ │ │ ├── boss_ragnaros.cpp │ │ │ │ ├── boss_shazzrah.cpp │ │ │ │ ├── boss_sulfuron_harbinger.cpp │ │ │ │ ├── instance_molten_core.cpp │ │ │ │ └── molten_core.h │ │ ├── Deadmines │ │ │ ├── boss_mr_smite.cpp │ │ │ ├── boss_vancleef.cpp │ │ │ ├── deadmines.cpp │ │ │ ├── deadmines.h │ │ │ └── instance_deadmines.cpp │ │ ├── Gnomeregan │ │ │ ├── gnomeregan.cpp │ │ │ ├── gnomeregan.h │ │ │ └── instance_gnomeregan.cpp │ │ ├── Karazhan │ │ │ ├── boss_curator.cpp │ │ │ ├── boss_maiden_of_virtue.cpp │ │ │ ├── boss_midnight.cpp │ │ │ ├── boss_moroes.cpp │ │ │ ├── boss_netherspite.cpp │ │ │ ├── boss_nightbane.cpp │ │ │ ├── boss_prince_malchezaar.cpp │ │ │ ├── boss_shade_of_aran.cpp │ │ │ ├── boss_terestian_illhoof.cpp │ │ │ ├── bosses_opera.cpp │ │ │ ├── instance_karazhan.cpp │ │ │ ├── karazhan.cpp │ │ │ └── karazhan.h │ │ ├── MagistersTerrace │ │ │ ├── boss_felblood_kaelthas.cpp │ │ │ ├── boss_priestess_delrissa.cpp │ │ │ ├── boss_selin_fireheart.cpp │ │ │ ├── boss_vexallus.cpp │ │ │ ├── instance_magisters_terrace.cpp │ │ │ ├── magisters_terrace.cpp │ │ │ └── magisters_terrace.h │ │ ├── ScarletMonastery │ │ │ ├── boss_arcanist_doan.cpp │ │ │ ├── boss_azshir_the_sleepless.cpp │ │ │ ├── boss_bloodmage_thalnos.cpp │ │ │ ├── boss_headless_horseman.cpp │ │ │ ├── boss_herod.cpp │ │ │ ├── boss_high_inquisitor_fairbanks.cpp │ │ │ ├── boss_houndmaster_loksey.cpp │ │ │ ├── boss_interrogator_vishas.cpp │ │ │ ├── boss_mograine_and_whitemane.cpp │ │ │ ├── boss_scorn.cpp │ │ │ ├── instance_scarlet_monastery.cpp │ │ │ └── scarlet_monastery.h │ │ ├── Scholomance │ │ │ ├── boss_darkmaster_gandling.cpp │ │ │ ├── boss_death_knight_darkreaver.cpp │ │ │ ├── boss_doctor_theolen_krastinov.cpp │ │ │ ├── boss_illucia_barov.cpp │ │ │ ├── boss_instructor_malicia.cpp │ │ │ ├── boss_jandice_barov.cpp │ │ │ ├── boss_kirtonos_the_herald.cpp │ │ │ ├── boss_kormok.cpp │ │ │ ├── boss_lord_alexei_barov.cpp │ │ │ ├── boss_lorekeeper_polkelt.cpp │ │ │ ├── boss_ras_frostwhisper.cpp │ │ │ ├── boss_the_ravenian.cpp │ │ │ ├── boss_vectus.cpp │ │ │ ├── instance_scholomance.cpp │ │ │ └── scholomance.h │ │ ├── ShadowfangKeep │ │ │ ├── boss_apothecary_hummel.cpp │ │ │ ├── instance_shadowfang_keep.cpp │ │ │ ├── shadowfang_keep.cpp │ │ │ └── shadowfang_keep.h │ │ ├── Stratholme │ │ │ ├── boss_baron_rivendare.cpp │ │ │ ├── boss_baroness_anastari.cpp │ │ │ ├── boss_cannon_master_willey.cpp │ │ │ ├── boss_dathrohan_balnazzar.cpp │ │ │ ├── boss_magistrate_barthilas.cpp │ │ │ ├── boss_maleki_the_pallid.cpp │ │ │ ├── boss_nerubenkan.cpp │ │ │ ├── boss_order_of_silver_hand.cpp │ │ │ ├── boss_postmaster_malown.cpp │ │ │ ├── boss_ramstein_the_gorger.cpp │ │ │ ├── boss_timmy_the_cruel.cpp │ │ │ ├── instance_stratholme.cpp │ │ │ ├── stratholme.cpp │ │ │ └── stratholme.h │ │ ├── SunkenTemple │ │ │ ├── instance_sunken_temple.cpp │ │ │ ├── sunken_temple.cpp │ │ │ └── sunken_temple.h │ │ ├── SunwellPlateau │ │ │ ├── boss_brutallus.cpp │ │ │ ├── boss_eredar_twins.cpp │ │ │ ├── boss_felmyst.cpp │ │ │ ├── boss_kalecgos.cpp │ │ │ ├── boss_kiljaeden.cpp │ │ │ ├── boss_muru.cpp │ │ │ ├── instance_sunwell_plateau.cpp │ │ │ ├── sunwell_plateau.cpp │ │ │ └── sunwell_plateau.h │ │ ├── TheStockade │ │ │ └── instance_the_stockade.cpp │ │ ├── Uldaman │ │ │ ├── boss_archaedas.cpp │ │ │ ├── boss_ironaya.cpp │ │ │ ├── instance_uldaman.cpp │ │ │ ├── uldaman.cpp │ │ │ └── uldaman.h │ │ ├── ZulAman │ │ │ ├── boss_akilzon.cpp │ │ │ ├── boss_halazzi.cpp │ │ │ ├── boss_hexlord.cpp │ │ │ ├── boss_janalai.cpp │ │ │ ├── boss_nalorakk.cpp │ │ │ ├── boss_zuljin.cpp │ │ │ ├── instance_zulaman.cpp │ │ │ ├── zulaman.cpp │ │ │ └── zulaman.h │ │ ├── ZulGurub │ │ │ ├── boss_arlokk.cpp │ │ │ ├── boss_gahzranka.cpp │ │ │ ├── boss_grilek.cpp │ │ │ ├── boss_hakkar.cpp │ │ │ ├── boss_hazzarah.cpp │ │ │ ├── boss_jeklik.cpp │ │ │ ├── boss_jindo.cpp │ │ │ ├── boss_mandokir.cpp │ │ │ ├── boss_marli.cpp │ │ │ ├── boss_renataki.cpp │ │ │ ├── boss_thekal.cpp │ │ │ ├── boss_venoxis.cpp │ │ │ ├── boss_wushoolay.cpp │ │ │ ├── instance_zulgurub.cpp │ │ │ └── zulgurub.h │ │ ├── eastern_kingdoms_script_loader.cpp │ │ ├── zone_blasted_lands.cpp │ │ ├── zone_duskwood.cpp │ │ ├── zone_ghostlands.cpp │ │ ├── zone_goldshire.cpp │ │ ├── zone_hinterlands.cpp │ │ ├── zone_isle_of_queldanas.cpp │ │ ├── zone_redridge_mountains.cpp │ │ ├── zone_silverpine_forest.cpp │ │ ├── zone_stormwind_city.cpp │ │ ├── zone_swamp_of_sorrows.cpp │ │ ├── zone_tirisfal_glades.cpp │ │ ├── zone_undercity.cpp │ │ └── zone_western_plaguelands.cpp │ ├── Events │ │ ├── childrens_week.cpp │ │ ├── events_script_loader.cpp │ │ └── fireworks_show.cpp │ ├── Kalimdor │ │ ├── BlackfathomDeeps │ │ │ ├── blackfathom_deeps.cpp │ │ │ ├── blackfathom_deeps.h │ │ │ ├── boss_aku_mai.cpp │ │ │ ├── boss_gelihast.cpp │ │ │ ├── boss_kelris.cpp │ │ │ └── instance_blackfathom_deeps.cpp │ │ ├── CavernsOfTime │ │ │ ├── BattleForMountHyjal │ │ │ │ ├── boss_anetheron.cpp │ │ │ │ ├── boss_archimonde.cpp │ │ │ │ ├── boss_azgalor.cpp │ │ │ │ ├── boss_kazrogal.cpp │ │ │ │ ├── boss_rage_winterchill.cpp │ │ │ │ ├── hyjal.cpp │ │ │ │ ├── hyjal.h │ │ │ │ ├── hyjalAI.cpp │ │ │ │ ├── hyjalAI.h │ │ │ │ ├── hyjal_trash.cpp │ │ │ │ ├── hyjal_trash.h │ │ │ │ └── instance_hyjal.cpp │ │ │ ├── EscapeFromDurnholdeKeep │ │ │ │ ├── boss_captain_skarloc.cpp │ │ │ │ ├── boss_epoch_hunter.cpp │ │ │ │ ├── boss_leutenant_drake.cpp │ │ │ │ ├── instance_old_hillsbrad.cpp │ │ │ │ ├── old_hillsbrad.cpp │ │ │ │ └── old_hillsbrad.h │ │ │ └── TheBlackMorass │ │ │ │ ├── boss_aeonus.cpp │ │ │ │ ├── boss_chrono_lord_deja.cpp │ │ │ │ ├── boss_temporus.cpp │ │ │ │ ├── instance_the_black_morass.cpp │ │ │ │ ├── the_black_morass.cpp │ │ │ │ └── the_black_morass.h │ │ ├── DireMaul │ │ │ └── instance_dire_maul.cpp │ │ ├── Maraudon │ │ │ ├── boss_celebras_the_cursed.cpp │ │ │ ├── boss_landslide.cpp │ │ │ ├── boss_noxxion.cpp │ │ │ ├── boss_princess_theradras.cpp │ │ │ ├── instance_maraudon.cpp │ │ │ └── maraudon.h │ │ ├── OnyxiasLair │ │ │ ├── boss_onyxia.cpp │ │ │ ├── instance_onyxias_lair.cpp │ │ │ └── onyxias_lair.h │ │ ├── RagefireChasm │ │ │ └── instance_ragefire_chasm.cpp │ │ ├── RazorfenDowns │ │ │ ├── boss_amnennar_the_coldbringer.cpp │ │ │ ├── boss_glutton.cpp │ │ │ ├── boss_mordresh_fire_eye.cpp │ │ │ ├── boss_tuten_kash.cpp │ │ │ ├── instance_razorfen_downs.cpp │ │ │ ├── razorfen_downs.cpp │ │ │ └── razorfen_downs.h │ │ ├── RazorfenKraul │ │ │ ├── instance_razorfen_kraul.cpp │ │ │ ├── razorfen_kraul.cpp │ │ │ └── razorfen_kraul.h │ │ ├── RuinsOfAhnQiraj │ │ │ ├── boss_ayamiss.cpp │ │ │ ├── boss_buru.cpp │ │ │ ├── boss_kurinnaxx.cpp │ │ │ ├── boss_moam.cpp │ │ │ ├── boss_ossirian.cpp │ │ │ ├── boss_rajaxx.cpp │ │ │ ├── instance_ruins_of_ahnqiraj.cpp │ │ │ └── ruins_of_ahnqiraj.h │ │ ├── TempleOfAhnQiraj │ │ │ ├── boss_bug_trio.cpp │ │ │ ├── boss_cthun.cpp │ │ │ ├── boss_fankriss.cpp │ │ │ ├── boss_huhuran.cpp │ │ │ ├── boss_ouro.cpp │ │ │ ├── boss_sartura.cpp │ │ │ ├── boss_skeram.cpp │ │ │ ├── boss_twinemperors.cpp │ │ │ ├── boss_viscidus.cpp │ │ │ ├── instance_temple_of_ahnqiraj.cpp │ │ │ ├── mob_anubisath_sentinel.cpp │ │ │ └── temple_of_ahnqiraj.h │ │ ├── WailingCaverns │ │ │ ├── instance_wailing_caverns.cpp │ │ │ ├── wailing_caverns.cpp │ │ │ └── wailing_caverns.h │ │ ├── ZulFarrak │ │ │ ├── boss_zum_rah.cpp │ │ │ ├── instance_zulfarrak.cpp │ │ │ ├── zulfarrak.cpp │ │ │ └── zulfarrak.h │ │ ├── boss_azuregos.cpp │ │ ├── kalimdor_script_loader.cpp │ │ ├── zone_ashenvale.cpp │ │ ├── zone_azshara.cpp │ │ ├── zone_azuremyst_isle.cpp │ │ ├── zone_bloodmyst_isle.cpp │ │ ├── zone_darkshore.cpp │ │ ├── zone_desolace.cpp │ │ ├── zone_durotar.cpp │ │ ├── zone_dustwallow_marsh.cpp │ │ ├── zone_felwood.cpp │ │ ├── zone_feralas.cpp │ │ ├── zone_moonglade.cpp │ │ ├── zone_orgrimmar.cpp │ │ ├── zone_silithus.cpp │ │ ├── zone_stonetalon_mountains.cpp │ │ ├── zone_tanaris.cpp │ │ ├── zone_the_barrens.cpp │ │ ├── zone_thousand_needles.cpp │ │ ├── zone_thunder_bluff.cpp │ │ ├── zone_ungoro_crater.cpp │ │ └── zone_winterspring.cpp │ ├── OutdoorPvP │ │ ├── OutdoorPvPEP.cpp │ │ ├── OutdoorPvPEP.h │ │ ├── OutdoorPvPHP.cpp │ │ ├── OutdoorPvPHP.h │ │ ├── OutdoorPvPNA.cpp │ │ ├── OutdoorPvPNA.h │ │ ├── OutdoorPvPSI.cpp │ │ ├── OutdoorPvPSI.h │ │ ├── OutdoorPvPScriptLoader.cpp │ │ ├── OutdoorPvPTF.cpp │ │ ├── OutdoorPvPTF.h │ │ ├── OutdoorPvPZM.cpp │ │ └── OutdoorPvPZM.h │ ├── Outland │ │ ├── Auchindoun │ │ │ ├── AuchenaiCrypts │ │ │ │ ├── auchenai_crypts.h │ │ │ │ ├── boss_exarch_maladaar.cpp │ │ │ │ ├── boss_shirrak_the_dead_watcher.cpp │ │ │ │ └── instance_auchenai_crypts.cpp │ │ │ ├── ManaTombs │ │ │ │ ├── boss_nexusprince_shaffar.cpp │ │ │ │ ├── boss_pandemonius.cpp │ │ │ │ ├── instance_mana_tombs.cpp │ │ │ │ └── mana_tombs.h │ │ │ ├── SethekkHalls │ │ │ │ ├── boss_anzu.cpp │ │ │ │ ├── boss_darkweaver_syth.cpp │ │ │ │ ├── boss_talon_king_ikiss.cpp │ │ │ │ ├── instance_sethekk_halls.cpp │ │ │ │ └── sethekk_halls.h │ │ │ └── ShadowLabyrinth │ │ │ │ ├── boss_ambassador_hellmaw.cpp │ │ │ │ ├── boss_blackheart_the_inciter.cpp │ │ │ │ ├── boss_grandmaster_vorpil.cpp │ │ │ │ ├── boss_murmur.cpp │ │ │ │ ├── instance_shadow_labyrinth.cpp │ │ │ │ ├── shadow_labyrinth.cpp │ │ │ │ └── shadow_labyrinth.h │ │ ├── BlackTemple │ │ │ ├── black_temple.cpp │ │ │ ├── black_temple.h │ │ │ ├── boss_gurtogg_bloodboil.cpp │ │ │ ├── boss_illidan.cpp │ │ │ ├── boss_illidari_council.cpp │ │ │ ├── boss_mother_shahraz.cpp │ │ │ ├── boss_reliquary_of_souls.cpp │ │ │ ├── boss_shade_of_akama.cpp │ │ │ ├── boss_supremus.cpp │ │ │ ├── boss_teron_gorefiend.cpp │ │ │ ├── boss_warlord_najentus.cpp │ │ │ └── instance_black_temple.cpp │ │ ├── CoilfangReservoir │ │ │ ├── SerpentShrine │ │ │ │ ├── boss_fathomlord_karathress.cpp │ │ │ │ ├── boss_hydross_the_unstable.cpp │ │ │ │ ├── boss_lady_vashj.cpp │ │ │ │ ├── boss_leotheras_the_blind.cpp │ │ │ │ ├── boss_lurker_below.cpp │ │ │ │ ├── boss_morogrim_tidewalker.cpp │ │ │ │ ├── instance_serpent_shrine.cpp │ │ │ │ └── serpent_shrine.h │ │ │ ├── SteamVault │ │ │ │ ├── boss_hydromancer_thespia.cpp │ │ │ │ ├── boss_mekgineer_steamrigger.cpp │ │ │ │ ├── boss_warlord_kalithresh.cpp │ │ │ │ ├── instance_steam_vault.cpp │ │ │ │ └── steam_vault.h │ │ │ ├── TheSlavePens │ │ │ │ ├── boss_ahune.cpp │ │ │ │ ├── boss_mennu_the_betrayer.cpp │ │ │ │ ├── boss_quagmirran.cpp │ │ │ │ ├── boss_rokmar_the_crackler.cpp │ │ │ │ ├── instance_the_slave_pens.cpp │ │ │ │ └── the_slave_pens.h │ │ │ └── TheUnderbog │ │ │ │ ├── boss_hungarfen.cpp │ │ │ │ ├── boss_the_black_stalker.cpp │ │ │ │ ├── instance_the_underbog.cpp │ │ │ │ └── the_underbog.h │ │ ├── GruulsLair │ │ │ ├── boss_gruul.cpp │ │ │ ├── boss_high_king_maulgar.cpp │ │ │ ├── gruuls_lair.h │ │ │ └── instance_gruuls_lair.cpp │ │ ├── HellfireCitadel │ │ │ ├── BloodFurnace │ │ │ │ ├── blood_furnace.h │ │ │ │ ├── boss_broggok.cpp │ │ │ │ ├── boss_kelidan_the_breaker.cpp │ │ │ │ ├── boss_the_maker.cpp │ │ │ │ └── instance_blood_furnace.cpp │ │ │ ├── HellfireRamparts │ │ │ │ ├── boss_omor_the_unscarred.cpp │ │ │ │ ├── boss_vazruden_the_herald.cpp │ │ │ │ ├── boss_watchkeeper_gargolmar.cpp │ │ │ │ ├── hellfire_ramparts.h │ │ │ │ └── instance_hellfire_ramparts.cpp │ │ │ ├── MagtheridonsLair │ │ │ │ ├── boss_magtheridon.cpp │ │ │ │ ├── instance_magtheridons_lair.cpp │ │ │ │ └── magtheridons_lair.h │ │ │ └── ShatteredHalls │ │ │ │ ├── boss_nethekurse.cpp │ │ │ │ ├── boss_warbringer_omrogg.cpp │ │ │ │ ├── boss_warchief_kargath_bladefist.cpp │ │ │ │ ├── instance_shattered_halls.cpp │ │ │ │ ├── shattered_halls.cpp │ │ │ │ └── shattered_halls.h │ │ ├── TempestKeep │ │ │ ├── Eye │ │ │ │ ├── boss_alar.cpp │ │ │ │ ├── boss_astromancer.cpp │ │ │ │ ├── boss_kaelthas.cpp │ │ │ │ ├── boss_void_reaver.cpp │ │ │ │ ├── instance_the_eye.cpp │ │ │ │ ├── the_eye.cpp │ │ │ │ └── the_eye.h │ │ │ ├── Mechanar │ │ │ │ ├── boss_gatewatcher_gyrokill.cpp │ │ │ │ ├── boss_gatewatcher_ironhand.cpp │ │ │ │ ├── boss_mechano_lord_capacitus.cpp │ │ │ │ ├── boss_nethermancer_sepethrea.cpp │ │ │ │ ├── boss_pathaleon_the_calculator.cpp │ │ │ │ ├── instance_mechanar.cpp │ │ │ │ └── mechanar.h │ │ │ ├── arcatraz │ │ │ │ ├── arcatraz.cpp │ │ │ │ ├── arcatraz.h │ │ │ │ ├── boss_dalliah_the_doomsayer.cpp │ │ │ │ ├── boss_harbinger_skyriss.cpp │ │ │ │ ├── boss_wrath_scryer_soccothrates.cpp │ │ │ │ ├── boss_zereketh_the_unbound.cpp │ │ │ │ └── instance_arcatraz.cpp │ │ │ └── botanica │ │ │ │ ├── boss_commander_sarannis.cpp │ │ │ │ ├── boss_high_botanist_freywinn.cpp │ │ │ │ ├── boss_laj.cpp │ │ │ │ ├── boss_thorngrin_the_tender.cpp │ │ │ │ ├── boss_warp_splinter.cpp │ │ │ │ ├── instance_the_botanica.cpp │ │ │ │ └── the_botanica.h │ │ ├── boss_doomlord_kazzak.cpp │ │ ├── boss_doomwalker.cpp │ │ ├── outland_script_loader.cpp │ │ ├── zone_blades_edge_mountains.cpp │ │ ├── zone_hellfire_peninsula.cpp │ │ ├── zone_nagrand.cpp │ │ ├── zone_netherstorm.cpp │ │ ├── zone_shadowmoon_valley.cpp │ │ ├── zone_shattrath_city.cpp │ │ ├── zone_terokkar_forest.cpp │ │ └── zone_zangarmarsh.cpp │ ├── Pet │ │ ├── pet_hunter.cpp │ │ ├── pet_script_loader.cpp │ │ └── pet_shaman.cpp │ ├── ScriptLoader.cpp.in.cmake │ ├── ScriptLoader.h │ ├── ScriptPCH.h │ ├── Spells │ │ ├── Spells_script_loader.cpp │ │ ├── spell_druid.cpp │ │ ├── spell_generic.cpp │ │ ├── spell_hunter.cpp │ │ ├── spell_item.cpp │ │ ├── spell_mage.cpp │ │ ├── spell_paladin.cpp │ │ ├── spell_priest.cpp │ │ ├── spell_rogue.cpp │ │ ├── spell_shaman.cpp │ │ ├── spell_warlock.cpp │ │ ├── spell_warrior.cpp │ │ └── templates.h │ ├── Tests │ │ ├── ClassSpellsCoeff.h │ │ ├── ClassSpellsDamage.cpp │ │ ├── ClassSpellsDamage.h │ │ ├── Tests_script_loader.cpp │ │ ├── entities │ │ │ └── test_creature.cpp │ │ ├── movement │ │ │ └── point_movement.cpp │ │ ├── pools │ │ │ └── pools.cpp │ │ ├── quest │ │ │ ├── loot_chance.cpp │ │ │ ├── misc.cpp │ │ │ └── spells.cpp │ │ ├── spells │ │ │ ├── misc.cpp │ │ │ ├── spells_druid.cpp │ │ │ ├── spells_hunter.cpp │ │ │ ├── spells_mage.cpp │ │ │ ├── spells_paladin.cpp │ │ │ ├── spells_priest.cpp │ │ │ ├── spells_rogue.cpp │ │ │ ├── spells_shaman.cpp │ │ │ ├── spells_warlock.cpp │ │ │ ├── spells_warrior.cpp │ │ │ └── talents │ │ │ │ ├── talents_druid.cpp │ │ │ │ ├── talents_hunter.cpp │ │ │ │ ├── talents_mage.cpp │ │ │ │ ├── talents_paladin.cpp │ │ │ │ ├── talents_priest.cpp │ │ │ │ ├── talents_rogue.cpp │ │ │ │ ├── talents_shaman.cpp │ │ │ │ ├── talents_warlock.cpp │ │ │ │ └── talents_warrior.cpp │ │ ├── test_framework.cpp │ │ ├── test_utils.cpp │ │ └── test_utils.h │ └── World │ │ ├── achievement_scripts.cpp │ │ ├── action_ip_logger.cpp │ │ ├── areatrigger_scripts.cpp │ │ ├── boss_emerald_dragons.cpp │ │ ├── chat_log.cpp │ │ ├── duel_reset.cpp │ │ ├── go_scripts.cpp │ │ ├── item_scripts.cpp │ │ ├── mob_generic_creature.cpp │ │ ├── npc_guard.cpp │ │ ├── npc_innkeeper.cpp │ │ ├── npc_professions.cpp │ │ ├── npcs_special.cpp │ │ └── world_script_loader.cpp ├── shared │ ├── CMakeLists.txt │ ├── ClassSpells.h │ ├── DataStores │ │ ├── DBCDatabaseLoader.cpp │ │ ├── DBCDatabaseLoader.h │ │ ├── DBCEnums.h │ │ ├── DBCStorageIterator.h │ │ ├── DBCStore.cpp │ │ ├── DBCStore.h │ │ ├── DBCStructure.h │ │ └── DBCfmt.h │ ├── Dynamic │ │ ├── FactoryHolder.h │ │ ├── GridRefManager.h │ │ ├── LinkedList.h │ │ ├── LinkedReference │ │ │ ├── RefManager.h │ │ │ └── Reference.h │ │ ├── ObjectRegistry.h │ │ ├── TypeContainer.h │ │ ├── TypeContainerFunctions.h │ │ ├── TypeContainerVisitor.h │ │ └── TypeList.h │ ├── Memory.h │ ├── Networking │ │ ├── AsyncAcceptor.h │ │ ├── MessageBuffer.h │ │ ├── NetworkThread.h │ │ ├── Socket.h │ │ └── SocketMgr.h │ ├── Packets │ │ ├── ByteBuffer.cpp │ │ └── ByteBuffer.h │ ├── PrecompiledHeaders │ │ └── sharedPCH.h │ ├── Realm │ │ ├── Realm.cpp │ │ ├── Realm.h │ │ ├── RealmList.cpp │ │ └── RealmList.h │ └── SharedDefines.h └── worldserver │ ├── CMakeLists.txt │ ├── CommandLine │ ├── CliRunnable.cpp │ └── CliRunnable.h │ ├── Main.cpp │ ├── PrecompiledHeaders │ └── worldPCH.h │ ├── RemoteAccess │ ├── RASession.cpp │ └── RASession.h │ ├── TCSoap │ ├── TCSoap.cpp │ └── TCSoap.h │ ├── resource.h │ ├── worldserver.conf.dist │ ├── worldserver.ico │ └── worldserver.rc └── tools ├── CMakeLists.txt ├── map_extractor ├── CMakeLists.txt ├── System.cpp ├── adt.cpp ├── adt.h ├── dbcfile.cpp ├── dbcfile.h ├── loadlib.cpp ├── loadlib │ └── loadlib.h ├── mpq_libmpq.cpp ├── mpq_libmpq04.h ├── wdt.cpp └── wdt.h ├── mmaps_generator ├── CMakeLists.txt ├── Info │ ├── offmesh_bladeedgearena.txt │ ├── offmesh_example.txt │ └── readme.txt ├── IntermediateValues.cpp ├── IntermediateValues.h ├── MapBuilder.cpp ├── MapBuilder.h ├── PathCommon.h ├── PathGenerator.cpp ├── TerrainBuilder.cpp └── TerrainBuilder.h ├── vmap4_assembler ├── CMakeLists.txt └── VMapAssembler.cpp └── vmap4_extractor ├── CMakeLists.txt ├── adtfile.cpp ├── adtfile.h ├── dbcfile.cpp ├── dbcfile.h ├── gameobject_extract.cpp ├── loadlib └── loadlib.h ├── model.cpp ├── model.h ├── modelheaders.h ├── mpq_libmpq.cpp ├── mpq_libmpq04.h ├── vec3d.h ├── vmapexport.cpp ├── vmapexport.h ├── wdtfile.cpp ├── wdtfile.h ├── wmo.cpp └── wmo.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/README.md -------------------------------------------------------------------------------- /cmake/compiler/clang/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/compiler/clang/settings.cmake -------------------------------------------------------------------------------- /cmake/compiler/gcc/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/compiler/gcc/settings.cmake -------------------------------------------------------------------------------- /cmake/compiler/msvc/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/compiler/msvc/settings.cmake -------------------------------------------------------------------------------- /cmake/genrev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/genrev.cmake -------------------------------------------------------------------------------- /cmake/macros/AutoCollect.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/AutoCollect.cmake -------------------------------------------------------------------------------- /cmake/macros/CheckPlatform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/CheckPlatform.cmake -------------------------------------------------------------------------------- /cmake/macros/ConfigureScripts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/ConfigureScripts.cmake -------------------------------------------------------------------------------- /cmake/macros/EnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/EnsureVersion.cmake -------------------------------------------------------------------------------- /cmake/macros/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/FindBoost.cmake -------------------------------------------------------------------------------- /cmake/macros/FindGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/FindGit.cmake -------------------------------------------------------------------------------- /cmake/macros/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/FindMySQL.cmake -------------------------------------------------------------------------------- /cmake/macros/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/FindOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/macros/FindPCHSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/FindPCHSupport.cmake -------------------------------------------------------------------------------- /cmake/macros/GroupSources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/macros/GroupSources.cmake -------------------------------------------------------------------------------- /cmake/options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/options.cmake -------------------------------------------------------------------------------- /cmake/platform/unix/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/platform/unix/settings.cmake -------------------------------------------------------------------------------- /cmake/platform/win/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/platform/win/settings.cmake -------------------------------------------------------------------------------- /cmake/showoptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/cmake/showoptions.cmake -------------------------------------------------------------------------------- /contrib/check_updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/check_updates.sh -------------------------------------------------------------------------------- /contrib/pushci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/pushci.sh -------------------------------------------------------------------------------- /contrib/sunstrider/init.d/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/sunstrider/init.d/readme.txt -------------------------------------------------------------------------------- /contrib/sunstrider/init.d/sunrestarter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/sunstrider/init.d/sunrestarter -------------------------------------------------------------------------------- /contrib/sunstrider/init.d/sunserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/sunstrider/init.d/sunserver -------------------------------------------------------------------------------- /contrib/wowmania/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/wowmania/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/backup.sh -------------------------------------------------------------------------------- /contrib/wowmania/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/build.sh -------------------------------------------------------------------------------- /contrib/wowmania/compile_at_night.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/compile_at_night.sh -------------------------------------------------------------------------------- /contrib/wowmania/optimizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/optimizer.sh -------------------------------------------------------------------------------- /contrib/wowmania/restarter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/restarter.sh -------------------------------------------------------------------------------- /contrib/wowmania/watch_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/contrib/wowmania/watch_dump.sh -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/CMakeLists.txt -------------------------------------------------------------------------------- /dep/SFMT/CHANGE-LOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/CHANGE-LOG.txt -------------------------------------------------------------------------------- /dep/SFMT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/CMakeLists.txt -------------------------------------------------------------------------------- /dep/SFMT/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/LICENSE.txt -------------------------------------------------------------------------------- /dep/SFMT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/README.txt -------------------------------------------------------------------------------- /dep/SFMT/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-alti.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-common.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-neon.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params11213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params11213.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params1279.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params132049.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params132049.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params19937.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params216091.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params216091.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params2281.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params4253.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params44497.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params44497.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params607.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-params86243.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-params86243.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-sse2-msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-sse2-msc.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT-sse2.h -------------------------------------------------------------------------------- /dep/SFMT/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT.c -------------------------------------------------------------------------------- /dep/SFMT/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/SFMT.h -------------------------------------------------------------------------------- /dep/SFMT/randomc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/SFMT/randomc.h -------------------------------------------------------------------------------- /dep/boost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/boost/CMakeLists.txt -------------------------------------------------------------------------------- /dep/bzip2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/CMakeLists.txt -------------------------------------------------------------------------------- /dep/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/LICENSE -------------------------------------------------------------------------------- /dep/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/README -------------------------------------------------------------------------------- /dep/bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/blocksort.c -------------------------------------------------------------------------------- /dep/bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/bzlib.c -------------------------------------------------------------------------------- /dep/bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/bzlib.h -------------------------------------------------------------------------------- /dep/bzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/bzlib_private.h -------------------------------------------------------------------------------- /dep/bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/compress.c -------------------------------------------------------------------------------- /dep/bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/crctable.c -------------------------------------------------------------------------------- /dep/bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/decompress.c -------------------------------------------------------------------------------- /dep/bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/huffman.c -------------------------------------------------------------------------------- /dep/bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/bzip2/randtable.c -------------------------------------------------------------------------------- /dep/efsw/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/.hg_archival.txt -------------------------------------------------------------------------------- /dep/efsw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/CMakeLists.txt -------------------------------------------------------------------------------- /dep/efsw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/LICENSE -------------------------------------------------------------------------------- /dep/efsw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/README.md -------------------------------------------------------------------------------- /dep/efsw/include/efsw/efsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/include/efsw/efsw.h -------------------------------------------------------------------------------- /dep/efsw/include/efsw/efsw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/include/efsw/efsw.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Debug.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Debug.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileInfo.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileInfo.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileSystem.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileSystem.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileWatcher.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileWatcherImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileWatcherImpl.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileWatcherImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileWatcherImpl.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileWatcherWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileWatcherWin32.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/FileWatcherWin32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/FileWatcherWin32.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Log.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Mutex.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Mutex.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/String.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/String.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/System.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/System.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Thread.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Thread.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Utf.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Utf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Utf.inl -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Watcher.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/Watcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/Watcher.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherFSEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherFSEvents.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherFSEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherFSEvents.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherGeneric.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherGeneric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherGeneric.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherInotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherInotify.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherInotify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherInotify.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherKqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherKqueue.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherKqueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherKqueue.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherWin32.cpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/WatcherWin32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/WatcherWin32.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/base.hpp -------------------------------------------------------------------------------- /dep/efsw/src/efsw/inotify-nosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/inotify-nosys.h -------------------------------------------------------------------------------- /dep/efsw/src/efsw/sophist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/efsw/sophist.h -------------------------------------------------------------------------------- /dep/efsw/src/test/efsw-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/efsw/src/test/efsw-test.cpp -------------------------------------------------------------------------------- /dep/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /dep/fmt/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/CONTRIBUTING.rst -------------------------------------------------------------------------------- /dep/fmt/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/ChangeLog.rst -------------------------------------------------------------------------------- /dep/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/LICENSE.rst -------------------------------------------------------------------------------- /dep/fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/README.rst -------------------------------------------------------------------------------- /dep/fmt/fmt/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/container.h -------------------------------------------------------------------------------- /dep/fmt/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/format.cc -------------------------------------------------------------------------------- /dep/fmt/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/format.h -------------------------------------------------------------------------------- /dep/fmt/fmt/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/ostream.cc -------------------------------------------------------------------------------- /dep/fmt/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/ostream.h -------------------------------------------------------------------------------- /dep/fmt/fmt/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/posix.cc -------------------------------------------------------------------------------- /dep/fmt/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/posix.h -------------------------------------------------------------------------------- /dep/fmt/fmt/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/printf.cc -------------------------------------------------------------------------------- /dep/fmt/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/printf.h -------------------------------------------------------------------------------- /dep/fmt/fmt/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/string.h -------------------------------------------------------------------------------- /dep/fmt/fmt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/fmt/fmt/time.h -------------------------------------------------------------------------------- /dep/g3dlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/CMakeLists.txt -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix1.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix2.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix3.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix4.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix4.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix5.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix5.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix6.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix6.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix7.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix7.diff -------------------------------------------------------------------------------- /dep/g3dlite/G3D-v9.0 hotfix8.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/G3D-v9.0 hotfix8.diff -------------------------------------------------------------------------------- /dep/g3dlite/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/Readme.txt -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/AABox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/AABox.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Any.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Array.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/AtomicInt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/AtomicInt32.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/BIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/BIN.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/BinaryFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/BinaryFormat.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/BinaryInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/BinaryInput.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/BinaryOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/BinaryOutput.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/BoundsTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/BoundsTrait.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Box.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Box2D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Capsule.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Color1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Color1.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Color3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Color3.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Color4.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Cone.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Crypto.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Cylinder.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/EqualsTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/EqualsTrait.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/FileNotFound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/FileNotFound.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/FileSystem.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Frustum.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/G3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/G3D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/G3DAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/G3DAll.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/G3DGameUnits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/G3DGameUnits.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/GMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/GMutex.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/GThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/GThread.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/GUniqueID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/GUniqueID.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/HashTrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/HashTrait.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Image1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Image1.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Image3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Image3.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Image4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Image4.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/ImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/ImageFormat.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Intersect.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/KDTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/KDTree.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Line.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/LineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/LineSegment.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Log.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Map2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Map2D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Matrix.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Matrix2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Matrix2.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Matrix3.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Matrix4.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/MeshAlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/MeshAlg.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/MeshBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/MeshBuilder.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/NetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/NetAddress.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/ParseError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/ParseError.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/PhysicsFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/PhysicsFrame.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Plane.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/PointKDTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/PointKDTree.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Pointer.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Quat.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Queue.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Random.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Ray.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Rect2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Rect2D.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/RegistryUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/RegistryUtil.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Set.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/SmallArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/SmallArray.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Sphere.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Spline.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Stopwatch.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/System.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Table.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/TextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/TextInput.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/TextOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/TextOutput.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/ThreadSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/ThreadSet.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Triangle.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/UprightFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/UprightFrame.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector2.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector2int16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector2int16.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector2int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector2int32.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector3.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector3int16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector3int16.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector3int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector3int32.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector4.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Vector4int8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Vector4int8.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/WeakCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/WeakCache.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/Welder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/Welder.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/WrapMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/WrapMode.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/XML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/XML.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/constants.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/debug.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/debugAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/debugAssert.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/debugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/debugPrintf.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/enumclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/enumclass.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/fileutils.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/filter.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/format.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/g3dfnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/g3dfnmatch.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/g3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/g3dmath.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/netheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/netheaders.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/platform.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/prompt.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/serialize.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/splinefunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/splinefunc.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/stringutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/stringutils.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/uint128.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/units.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/unorm16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/unorm16.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/unorm8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/unorm8.h -------------------------------------------------------------------------------- /dep/g3dlite/include/G3D/vectorMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/include/G3D/vectorMath.h -------------------------------------------------------------------------------- /dep/g3dlite/source/AABox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/AABox.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Any.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/AnyTableReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/AnyTableReader.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/BinaryFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/BinaryFormat.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/BinaryInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/BinaryInput.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/BinaryOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/BinaryOutput.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Box.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Box2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Box2D.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Capsule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Capsule.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Color1.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Color3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Color4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Color4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Cone.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/CoordinateFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/CoordinateFrame.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Crypto.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Crypto_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Crypto_md5.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Cylinder.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/FileSystem.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/GThread.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/GUniqueID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/GUniqueID.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Image1.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Image3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Image4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Image4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/ImageFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/ImageFormat.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Intersect.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Line.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/LineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/LineSegment.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Log.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Matrix.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Matrix3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Matrix4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/MemoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/MemoryManager.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/MeshAlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/MeshAlg.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/MeshAlgWeld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/MeshAlgWeld.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/MeshBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/MeshBuilder.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/NetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/NetAddress.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/NetworkDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/NetworkDevice.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/PhysicsFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/PhysicsFrame.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Plane.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Quat.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Random.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Ray.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Rect2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Rect2D.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/RegistryUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/RegistryUtil.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Sphere.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/SplineBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/SplineBase.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Stopwatch.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/System.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/TextInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/TextInput.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/TextOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/TextOutput.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/ThreadSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/ThreadSet.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Triangle.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/UprightFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/UprightFrame.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector2.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector2int16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector2int16.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector3.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector3int16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector3int16.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector3int32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector3int32.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector4.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Vector4int8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Vector4int8.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/Welder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/Welder.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/WinMain.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/XML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/XML.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/constants.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/debugAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/debugAssert.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/fileutils.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/filter.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/format.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/g3dfnmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/g3dfnmatch.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/g3dmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/g3dmath.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/license.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/license.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/prompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/prompt.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/stringutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/stringutils.cpp -------------------------------------------------------------------------------- /dep/g3dlite/source/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/g3dlite/source/uint128.cpp -------------------------------------------------------------------------------- /dep/gperftools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gperftools/CMakeLists.txt -------------------------------------------------------------------------------- /dep/gsoap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/CMakeLists.txt -------------------------------------------------------------------------------- /dep/gsoap/gsoap.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/gsoap.stub -------------------------------------------------------------------------------- /dep/gsoap/soapC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/soapC.cpp -------------------------------------------------------------------------------- /dep/gsoap/soapH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/soapH.h -------------------------------------------------------------------------------- /dep/gsoap/soapServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/soapServer.cpp -------------------------------------------------------------------------------- /dep/gsoap/soapStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/soapStub.h -------------------------------------------------------------------------------- /dep/gsoap/stdsoap2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/stdsoap2.cpp -------------------------------------------------------------------------------- /dep/gsoap/stdsoap2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/stdsoap2.h -------------------------------------------------------------------------------- /dep/gsoap/tc_changes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/tc_changes.diff -------------------------------------------------------------------------------- /dep/gsoap/tc_upgrades.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/gsoap/tc_upgrades.txt -------------------------------------------------------------------------------- /dep/libmpq/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/AUTHORS -------------------------------------------------------------------------------- /dep/libmpq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/CMakeLists.txt -------------------------------------------------------------------------------- /dep/libmpq/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/COPYING -------------------------------------------------------------------------------- /dep/libmpq/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/FAQ -------------------------------------------------------------------------------- /dep/libmpq/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/INSTALL -------------------------------------------------------------------------------- /dep/libmpq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/NEWS -------------------------------------------------------------------------------- /dep/libmpq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/README -------------------------------------------------------------------------------- /dep/libmpq/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/THANKS -------------------------------------------------------------------------------- /dep/libmpq/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/TODO -------------------------------------------------------------------------------- /dep/libmpq/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/autogen.sh -------------------------------------------------------------------------------- /dep/libmpq/bindings/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/bindings/d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/d/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/bindings/d/dsss.conf: -------------------------------------------------------------------------------- 1 | [mpq.d] 2 | type=sourcelibrary 3 | -------------------------------------------------------------------------------- /dep/libmpq/bindings/d/mpq.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/d/mpq.d -------------------------------------------------------------------------------- /dep/libmpq/bindings/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/python/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/bindings/python/mpq-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/python/mpq-info -------------------------------------------------------------------------------- /dep/libmpq/bindings/python/mpq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/bindings/python/mpq.py -------------------------------------------------------------------------------- /dep/libmpq/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/config.h -------------------------------------------------------------------------------- /dep/libmpq/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/configure.ac -------------------------------------------------------------------------------- /dep/libmpq/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/changelog -------------------------------------------------------------------------------- /dep/libmpq/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /dep/libmpq/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/control -------------------------------------------------------------------------------- /dep/libmpq/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/copyright -------------------------------------------------------------------------------- /dep/libmpq/debian/libmpq-dev.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/libmpq-dev.dirs -------------------------------------------------------------------------------- /dep/libmpq/debian/libmpq-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/libmpq-dev.install -------------------------------------------------------------------------------- /dep/libmpq/debian/libmpq0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /dep/libmpq/debian/libmpq0.docs: -------------------------------------------------------------------------------- 1 | FAQ 2 | NEWS 3 | README 4 | TODO 5 | THANKS 6 | AUTHORS 7 | -------------------------------------------------------------------------------- /dep/libmpq/debian/libmpq0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/libmpq0.install -------------------------------------------------------------------------------- /dep/libmpq/debian/python-mpq.install: -------------------------------------------------------------------------------- 1 | usr/lib/python?.? 2 | -------------------------------------------------------------------------------- /dep/libmpq/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/debian/rules -------------------------------------------------------------------------------- /dep/libmpq/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/doc/man1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man1/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/doc/man1/libmpq-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man1/libmpq-config.1 -------------------------------------------------------------------------------- /dep/libmpq/doc/man3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man3/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/doc/man3/libmpq.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man3/libmpq.3 -------------------------------------------------------------------------------- /dep/libmpq/doc/man3/libmpq__strerror.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man3/libmpq__strerror.3 -------------------------------------------------------------------------------- /dep/libmpq/doc/man3/libmpq__version.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/doc/man3/libmpq__version.3 -------------------------------------------------------------------------------- /dep/libmpq/libmpq-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq-config.in -------------------------------------------------------------------------------- /dep/libmpq/libmpq-hotfix1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq-hotfix1.diff -------------------------------------------------------------------------------- /dep/libmpq/libmpq.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq.pc.in -------------------------------------------------------------------------------- /dep/libmpq/libmpq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/libmpq/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/common.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/common.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/crypt_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/crypt_buf.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/explode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/explode.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/explode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/explode.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/extract.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/extract.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/huffman.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/huffman.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/mpq-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/mpq-internal.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/mpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/mpq.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/mpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/mpq.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/pack_begin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/pack_begin.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/pack_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/pack_end.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/platform.h -------------------------------------------------------------------------------- /dep/libmpq/libmpq/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/wave.c -------------------------------------------------------------------------------- /dep/libmpq/libmpq/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/libmpq/wave.h -------------------------------------------------------------------------------- /dep/libmpq/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/tools/Makefile.am -------------------------------------------------------------------------------- /dep/libmpq/tools/crypt_buf_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/tools/crypt_buf_gen.c -------------------------------------------------------------------------------- /dep/libmpq/win/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/win/config.h -------------------------------------------------------------------------------- /dep/libmpq/win/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/libmpq/win/dirent.h -------------------------------------------------------------------------------- /dep/mysql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/mysql/CMakeLists.txt -------------------------------------------------------------------------------- /dep/openssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/openssl/CMakeLists.txt -------------------------------------------------------------------------------- /dep/process/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/CMakeLists.txt -------------------------------------------------------------------------------- /dep/process/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/License.txt -------------------------------------------------------------------------------- /dep/process/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/Readme.txt -------------------------------------------------------------------------------- /dep/process/boost/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/all.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/child.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/child.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/config.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/execute.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/executor.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/mitigate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/mitigate.hpp -------------------------------------------------------------------------------- /dep/process/boost/process/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/process/boost/process/pipe.hpp -------------------------------------------------------------------------------- /dep/readline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/readline/CMakeLists.txt -------------------------------------------------------------------------------- /dep/recastnavigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/recastnavigation/CMakeLists.txt -------------------------------------------------------------------------------- /dep/recastnavigation/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/recastnavigation/License.txt -------------------------------------------------------------------------------- /dep/recastnavigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/recastnavigation/README.md -------------------------------------------------------------------------------- /dep/threads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/threads/CMakeLists.txt -------------------------------------------------------------------------------- /dep/utf8cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/utf8cpp/CMakeLists.txt -------------------------------------------------------------------------------- /dep/utf8cpp/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/utf8cpp/utf8.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/utf8cpp/utf8/checked.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/utf8cpp/utf8/core.h -------------------------------------------------------------------------------- /dep/utf8cpp/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/utf8cpp/utf8/unchecked.h -------------------------------------------------------------------------------- /dep/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /dep/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/adler32.c -------------------------------------------------------------------------------- /dep/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/compress.c -------------------------------------------------------------------------------- /dep/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/crc32.c -------------------------------------------------------------------------------- /dep/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/crc32.h -------------------------------------------------------------------------------- /dep/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/deflate.c -------------------------------------------------------------------------------- /dep/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/deflate.h -------------------------------------------------------------------------------- /dep/zlib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/example.c -------------------------------------------------------------------------------- /dep/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/gzclose.c -------------------------------------------------------------------------------- /dep/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/gzguts.h -------------------------------------------------------------------------------- /dep/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/gzlib.c -------------------------------------------------------------------------------- /dep/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/gzread.c -------------------------------------------------------------------------------- /dep/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/gzwrite.c -------------------------------------------------------------------------------- /dep/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/infback.c -------------------------------------------------------------------------------- /dep/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inffast.c -------------------------------------------------------------------------------- /dep/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inffast.h -------------------------------------------------------------------------------- /dep/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inffixed.h -------------------------------------------------------------------------------- /dep/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inflate.c -------------------------------------------------------------------------------- /dep/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inflate.h -------------------------------------------------------------------------------- /dep/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inftrees.c -------------------------------------------------------------------------------- /dep/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/inftrees.h -------------------------------------------------------------------------------- /dep/zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/minigzip.c -------------------------------------------------------------------------------- /dep/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/trees.c -------------------------------------------------------------------------------- /dep/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/trees.h -------------------------------------------------------------------------------- /dep/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/uncompr.c -------------------------------------------------------------------------------- /dep/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/zconf.h -------------------------------------------------------------------------------- /dep/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/zlib.h -------------------------------------------------------------------------------- /dep/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/zutil.c -------------------------------------------------------------------------------- /dep/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/dep/zlib/zutil.h -------------------------------------------------------------------------------- /doc/install_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/doc/install_linux.md -------------------------------------------------------------------------------- /doc/install_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/doc/install_win.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /revision_data.h.in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/revision_data.h.in.cmake -------------------------------------------------------------------------------- /sql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/CMakeLists.txt -------------------------------------------------------------------------------- /sql/base/auth_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/base/auth_database.sql -------------------------------------------------------------------------------- /sql/base/characters_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/base/characters_database.sql -------------------------------------------------------------------------------- /sql/base/dev/DO_NOT_IMPORT_THESE_FILES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/base/dev/world_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/base/dev/world_database.sql -------------------------------------------------------------------------------- /sql/base/logs_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/base/logs_database.sql -------------------------------------------------------------------------------- /sql/create/create_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/create/create_mysql.sql -------------------------------------------------------------------------------- /sql/create/drop_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/create/drop_mysql.sql -------------------------------------------------------------------------------- /sql/custom/auth/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/custom/characters/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/custom/logs/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/custom/world/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/auth/WMPQ_gmgroup_realmd.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `account` ADD groupid int not null; 2 | -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/characters/1311_characters.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `has_logged_in_before`; 2 | -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/characters/739_characters.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE gm_tickets ADD `comment` text(0) NOT NULL; 2 | -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/characters/char_6664.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE gm_tickets DROP COLUMN name; -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/characters/characters_2016_03_30_01.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE has_logged_in_before; -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/characters/characters_2016_04_22_01.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE character_spell DROP COLUMN slot; -------------------------------------------------------------------------------- /sql/old/2.4.3_before_updater/logs/4200_logs.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE boss_down ADD COLUMN leaderGuid int unsigned NOT NULL default 0; 2 | -------------------------------------------------------------------------------- /sql/old/auth/19121_2019_12_12/2019_12_08_00_auth.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19121 auth 2 | UPDATE `updates` SET `state`='ARCHIVED'; 3 | -------------------------------------------------------------------------------- /sql/old/auth/19122_2019_12_13/2019_12_12_00_auth.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19122 auth 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/auth/19123_2019_12_22/2019_12_13_00_auth.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19123 auth 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/auth/19124_2020_01_04/2019_12_22_00_auth.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19124 auth 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/characters/17011_2019_12_08/characters_2017_10_10_02.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE characters DROP COLUMN lastGenderChange; 2 | -------------------------------------------------------------------------------- /sql/old/logs/19121_2019_12_12/2019_12_08_00_logs.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19121 logs 2 | UPDATE `updates` SET `state`='ARCHIVED'; 3 | -------------------------------------------------------------------------------- /sql/old/logs/19122_2019_12_13/2019_12_12_00_logs.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19122 logs 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/logs/19123_2019_12_22/2019_12_13_00_logs.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19123 logs 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/logs/19124_2020_01_04/2019_12_22_00_logs.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19124 logs 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_08_23_02.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM command WHERE name = "reportlag"; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_09_04_02.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS quest_bugs; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_09_13_03.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM command WHERE name = "quest report"; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_10_08_01.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM command WHERE name = "cheat waterwalk"; 2 | -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_10_15_02.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM spell_template_override WHERE entry IN (11094, 13043); 2 | -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2018_12_20_04.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS quest_start_scripts_tmp; 2 | 3 | -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2019_01_18_02.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM creature_addon WHERE spawnID = 1085374; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2019_01_31_04.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM creature_addon where spawnID = 135364; -------------------------------------------------------------------------------- /sql/old/world/17011_2019_12_08/world_2019_01_31_05.sql: -------------------------------------------------------------------------------- 1 | UPDATE creature_addon SET path_id = NULL WHERE spawnID = 6720; -------------------------------------------------------------------------------- /sql/old/world/19122_2019_12_13/2019_12_12_01_world.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19122 world 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/old/world/19123_2019_12_22/2019_12_13_04_world.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 19123 world 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/patchs/2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/patchs/2.1.sql -------------------------------------------------------------------------------- /sql/patchs/2.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/patchs/2.2.sql -------------------------------------------------------------------------------- /sql/patchs/2.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/patchs/2.3.sql -------------------------------------------------------------------------------- /sql/patchs/2.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/patchs/2.4.sql -------------------------------------------------------------------------------- /sql/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/tools/CMakeLists.txt -------------------------------------------------------------------------------- /sql/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/tools/README -------------------------------------------------------------------------------- /sql/tools/locales_requests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/sql/tools/locales_requests.txt -------------------------------------------------------------------------------- /sql/updates/auth/2020_01_04_00_auth.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 20011 auth 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/updates/characters/2020_01_04_00_characters.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 20011 characters 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /sql/updates/logs/2020_01_04_00_logs.sql: -------------------------------------------------------------------------------- 1 | -- TTDB 20011 logs 2 | UPDATE `updates` SET `state`='ARCHIVED'; -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/Asio/AsioHacksFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/AsioHacksFwd.h -------------------------------------------------------------------------------- /src/common/Asio/DeadlineTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/DeadlineTimer.h -------------------------------------------------------------------------------- /src/common/Asio/IoContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/IoContext.h -------------------------------------------------------------------------------- /src/common/Asio/IpAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/IpAddress.h -------------------------------------------------------------------------------- /src/common/Asio/IpNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/IpNetwork.h -------------------------------------------------------------------------------- /src/common/Asio/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/Resolver.h -------------------------------------------------------------------------------- /src/common/Asio/Strand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Asio/Strand.h -------------------------------------------------------------------------------- /src/common/Banner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Banner.cpp -------------------------------------------------------------------------------- /src/common/Banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Banner.h -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/Collision/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/Collision/DynamicTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/DynamicTree.cpp -------------------------------------------------------------------------------- /src/common/Collision/DynamicTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/DynamicTree.h -------------------------------------------------------------------------------- /src/common/Collision/Maps/MapDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/Maps/MapDefines.h -------------------------------------------------------------------------------- /src/common/Collision/Maps/MapTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/Maps/MapTree.cpp -------------------------------------------------------------------------------- /src/common/Collision/Maps/MapTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/Maps/MapTree.h -------------------------------------------------------------------------------- /src/common/Collision/PrecompiledHeaders/collisionPCH.cpp: -------------------------------------------------------------------------------- 1 | #include "collisionPCH.h" 2 | -------------------------------------------------------------------------------- /src/common/Collision/RegularGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/RegularGrid.h -------------------------------------------------------------------------------- /src/common/Collision/VMapDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/VMapDefinitions.h -------------------------------------------------------------------------------- /src/common/Collision/VMapTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Collision/VMapTools.h -------------------------------------------------------------------------------- /src/common/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Common.cpp -------------------------------------------------------------------------------- /src/common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Common.h -------------------------------------------------------------------------------- /src/common/CompilerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/CompilerDefs.h -------------------------------------------------------------------------------- /src/common/Configuration/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Configuration/Config.cpp -------------------------------------------------------------------------------- /src/common/Configuration/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Configuration/Config.h -------------------------------------------------------------------------------- /src/common/Cryptography/ARC4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/ARC4.cpp -------------------------------------------------------------------------------- /src/common/Cryptography/ARC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/ARC4.h -------------------------------------------------------------------------------- /src/common/Cryptography/BigNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/BigNumber.cpp -------------------------------------------------------------------------------- /src/common/Cryptography/BigNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/BigNumber.h -------------------------------------------------------------------------------- /src/common/Cryptography/HMACSHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/HMACSHA1.cpp -------------------------------------------------------------------------------- /src/common/Cryptography/HMACSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/HMACSHA1.h -------------------------------------------------------------------------------- /src/common/Cryptography/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/SHA1.cpp -------------------------------------------------------------------------------- /src/common/Cryptography/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Cryptography/SHA1.h -------------------------------------------------------------------------------- /src/common/DataStores/DBCFileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/DataStores/DBCFileLoader.h -------------------------------------------------------------------------------- /src/common/Debugging/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Debugging/Errors.cpp -------------------------------------------------------------------------------- /src/common/Debugging/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Debugging/Errors.h -------------------------------------------------------------------------------- /src/common/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Define.h -------------------------------------------------------------------------------- /src/common/GitRevision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/GitRevision.cpp -------------------------------------------------------------------------------- /src/common/GitRevision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/GitRevision.h -------------------------------------------------------------------------------- /src/common/Logging/Appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Appender.cpp -------------------------------------------------------------------------------- /src/common/Logging/Appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Appender.h -------------------------------------------------------------------------------- /src/common/Logging/AppenderConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/AppenderConsole.cpp -------------------------------------------------------------------------------- /src/common/Logging/AppenderConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/AppenderConsole.h -------------------------------------------------------------------------------- /src/common/Logging/AppenderFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/AppenderFile.cpp -------------------------------------------------------------------------------- /src/common/Logging/AppenderFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/AppenderFile.h -------------------------------------------------------------------------------- /src/common/Logging/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Log.cpp -------------------------------------------------------------------------------- /src/common/Logging/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Log.h -------------------------------------------------------------------------------- /src/common/Logging/LogCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/LogCommon.h -------------------------------------------------------------------------------- /src/common/Logging/LogMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/LogMessage.cpp -------------------------------------------------------------------------------- /src/common/Logging/LogMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/LogMessage.h -------------------------------------------------------------------------------- /src/common/Logging/LogOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/LogOperation.cpp -------------------------------------------------------------------------------- /src/common/Logging/LogOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/LogOperation.h -------------------------------------------------------------------------------- /src/common/Logging/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Logger.cpp -------------------------------------------------------------------------------- /src/common/Logging/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Logging/Logger.h -------------------------------------------------------------------------------- /src/common/Platform/ServiceWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Platform/ServiceWin32.cpp -------------------------------------------------------------------------------- /src/common/Platform/ServiceWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Platform/ServiceWin32.h -------------------------------------------------------------------------------- /src/common/Threading/LockedQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Threading/LockedQueue.h -------------------------------------------------------------------------------- /src/common/Threading/MPSCQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Threading/MPSCQueue.h -------------------------------------------------------------------------------- /src/common/Threading/ProcessPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Threading/ProcessPriority.h -------------------------------------------------------------------------------- /src/common/Threading/Runnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Threading/Runnable.h -------------------------------------------------------------------------------- /src/common/Utilities/ByteConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/ByteConverter.h -------------------------------------------------------------------------------- /src/common/Utilities/Containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Containers.h -------------------------------------------------------------------------------- /src/common/Utilities/Duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Duration.h -------------------------------------------------------------------------------- /src/common/Utilities/EventMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/EventMap.cpp -------------------------------------------------------------------------------- /src/common/Utilities/EventMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/EventMap.h -------------------------------------------------------------------------------- /src/common/Utilities/EventProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/EventProcessor.h -------------------------------------------------------------------------------- /src/common/Utilities/FuzzyFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/FuzzyFind.h -------------------------------------------------------------------------------- /src/common/Utilities/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Hash.h -------------------------------------------------------------------------------- /src/common/Utilities/IteratorPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/IteratorPair.h -------------------------------------------------------------------------------- /src/common/Utilities/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Optional.h -------------------------------------------------------------------------------- /src/common/Utilities/OptionalFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/OptionalFwd.h -------------------------------------------------------------------------------- /src/common/Utilities/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Random.cpp -------------------------------------------------------------------------------- /src/common/Utilities/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Random.h -------------------------------------------------------------------------------- /src/common/Utilities/Regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Regex.h -------------------------------------------------------------------------------- /src/common/Utilities/SFMTRand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/SFMTRand.cpp -------------------------------------------------------------------------------- /src/common/Utilities/SFMTRand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/SFMTRand.h -------------------------------------------------------------------------------- /src/common/Utilities/SmartEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/SmartEnum.h -------------------------------------------------------------------------------- /src/common/Utilities/StartProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/StartProcess.cpp -------------------------------------------------------------------------------- /src/common/Utilities/StartProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/StartProcess.h -------------------------------------------------------------------------------- /src/common/Utilities/StringFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/StringFormat.h -------------------------------------------------------------------------------- /src/common/Utilities/TaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/TaskScheduler.cpp -------------------------------------------------------------------------------- /src/common/Utilities/TaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/TaskScheduler.h -------------------------------------------------------------------------------- /src/common/Utilities/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Timer.h -------------------------------------------------------------------------------- /src/common/Utilities/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Util.cpp -------------------------------------------------------------------------------- /src/common/Utilities/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/Util.h -------------------------------------------------------------------------------- /src/common/Utilities/advstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/Utilities/advstd.h -------------------------------------------------------------------------------- /src/common/WaterDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/common/WaterDefines.h -------------------------------------------------------------------------------- /src/genrev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/genrev/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/authserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/authserver/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/authserver/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/authserver/Main.cpp -------------------------------------------------------------------------------- /src/server/authserver/authserver.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/authserver/authserver.ico -------------------------------------------------------------------------------- /src/server/authserver/authserver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/authserver/authserver.rc -------------------------------------------------------------------------------- /src/server/authserver/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/authserver/resource.h -------------------------------------------------------------------------------- /src/server/database/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/database/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/database/Database/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/database/Database/Field.cpp -------------------------------------------------------------------------------- /src/server/database/Database/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/database/Database/Field.h -------------------------------------------------------------------------------- /src/server/game/AI/AIException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/AIException.h -------------------------------------------------------------------------------- /src/server/game/AI/AOEAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/AOEAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/AOEAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/AOEAI.h -------------------------------------------------------------------------------- /src/server/game/AI/ArcherAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ArcherAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/ArcherAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ArcherAI.h -------------------------------------------------------------------------------- /src/server/game/AI/CombatAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CombatAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/CombatAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CombatAI.h -------------------------------------------------------------------------------- /src/server/game/AI/CreatureAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CreatureAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/CreatureAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CreatureAI.h -------------------------------------------------------------------------------- /src/server/game/AI/CreatureAIFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CreatureAIFactory.h -------------------------------------------------------------------------------- /src/server/game/AI/CreatureAIImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/CreatureAIImpl.h -------------------------------------------------------------------------------- /src/server/game/AI/GameObjectAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/GameObjectAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/GameObjectAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/GameObjectAI.h -------------------------------------------------------------------------------- /src/server/game/AI/GuardAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/GuardAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/GuardAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/GuardAI.h -------------------------------------------------------------------------------- /src/server/game/AI/PassiveAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PassiveAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/PassiveAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PassiveAI.h -------------------------------------------------------------------------------- /src/server/game/AI/PetAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PetAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/PetAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PetAI.h -------------------------------------------------------------------------------- /src/server/game/AI/PlayerAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PlayerAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/PlayerAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/PlayerAI.h -------------------------------------------------------------------------------- /src/server/game/AI/ReactorAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ReactorAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/ReactorAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ReactorAI.h -------------------------------------------------------------------------------- /src/server/game/AI/ScriptedCreature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ScriptedCreature.h -------------------------------------------------------------------------------- /src/server/game/AI/ScriptedEscortAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ScriptedEscortAI.h -------------------------------------------------------------------------------- /src/server/game/AI/ScriptedGossip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ScriptedGossip.cpp -------------------------------------------------------------------------------- /src/server/game/AI/ScriptedGossip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/ScriptedGossip.h -------------------------------------------------------------------------------- /src/server/game/AI/SelectableAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SelectableAI.h -------------------------------------------------------------------------------- /src/server/game/AI/SimpleAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SimpleAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/SimpleAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SimpleAI.h -------------------------------------------------------------------------------- /src/server/game/AI/SimpleCooldown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SimpleCooldown.cpp -------------------------------------------------------------------------------- /src/server/game/AI/SimpleCooldown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SimpleCooldown.h -------------------------------------------------------------------------------- /src/server/game/AI/SmartAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/SmartAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartAI.h -------------------------------------------------------------------------------- /src/server/game/AI/SmartScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartScript.cpp -------------------------------------------------------------------------------- /src/server/game/AI/SmartScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartScript.h -------------------------------------------------------------------------------- /src/server/game/AI/SmartScriptMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartScriptMgr.cpp -------------------------------------------------------------------------------- /src/server/game/AI/SmartScriptMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/SmartScriptMgr.h -------------------------------------------------------------------------------- /src/server/game/AI/TotemAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/TotemAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/TotemAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/TotemAI.h -------------------------------------------------------------------------------- /src/server/game/AI/UnitAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/UnitAI.cpp -------------------------------------------------------------------------------- /src/server/game/AI/UnitAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AI/UnitAI.h -------------------------------------------------------------------------------- /src/server/game/Accounts/AccountMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Accounts/AccountMgr.h -------------------------------------------------------------------------------- /src/server/game/Accounts/RBAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Accounts/RBAC.cpp -------------------------------------------------------------------------------- /src/server/game/Accounts/RBAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Accounts/RBAC.h -------------------------------------------------------------------------------- /src/server/game/Addons/AddonMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Addons/AddonMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Addons/AddonMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Addons/AddonMgr.h -------------------------------------------------------------------------------- /src/server/game/Anticheat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Anticheat/.gitignore -------------------------------------------------------------------------------- /src/server/game/AuctionHouseMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AuctionHouseMgr.cpp -------------------------------------------------------------------------------- /src/server/game/AuctionHouseMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/AuctionHouseMgr.h -------------------------------------------------------------------------------- /src/server/game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/game/Cache/CharacterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Cache/CharacterCache.h -------------------------------------------------------------------------------- /src/server/game/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Cell.h -------------------------------------------------------------------------------- /src/server/game/CellImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/CellImpl.h -------------------------------------------------------------------------------- /src/server/game/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Channel.cpp -------------------------------------------------------------------------------- /src/server/game/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Channel.h -------------------------------------------------------------------------------- /src/server/game/ChannelMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/ChannelMgr.h -------------------------------------------------------------------------------- /src/server/game/Chat/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/Chat.cpp -------------------------------------------------------------------------------- /src/server/game/Chat/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/Chat.h -------------------------------------------------------------------------------- /src/server/game/Chat/ChatTextBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/ChatTextBuilder.h -------------------------------------------------------------------------------- /src/server/game/Chat/HyperlinkTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/HyperlinkTags.cpp -------------------------------------------------------------------------------- /src/server/game/Chat/Hyperlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/Hyperlinks.cpp -------------------------------------------------------------------------------- /src/server/game/Chat/Hyperlinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Chat/Hyperlinks.h -------------------------------------------------------------------------------- /src/server/game/Combat/CombatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Combat/CombatManager.h -------------------------------------------------------------------------------- /src/server/game/Combat/ThreatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Combat/ThreatManager.h -------------------------------------------------------------------------------- /src/server/game/CreatureTextMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/CreatureTextMgr.cpp -------------------------------------------------------------------------------- /src/server/game/CreatureTextMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/CreatureTextMgr.h -------------------------------------------------------------------------------- /src/server/game/DataStores/DBCStores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/DataStores/DBCStores.h -------------------------------------------------------------------------------- /src/server/game/DataStores/M2Stores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/DataStores/M2Stores.h -------------------------------------------------------------------------------- /src/server/game/DuelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/DuelHandler.cpp -------------------------------------------------------------------------------- /src/server/game/Entities/Item/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Item/Item.cpp -------------------------------------------------------------------------------- /src/server/game/Entities/Item/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Item/Item.h -------------------------------------------------------------------------------- /src/server/game/Entities/Pet/Pet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Pet/Pet.cpp -------------------------------------------------------------------------------- /src/server/game/Entities/Pet/Pet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Pet/Pet.h -------------------------------------------------------------------------------- /src/server/game/Entities/Totem/Totem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Totem/Totem.h -------------------------------------------------------------------------------- /src/server/game/Entities/Unit/Unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Unit/Unit.cpp -------------------------------------------------------------------------------- /src/server/game/Entities/Unit/Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Entities/Unit/Unit.h -------------------------------------------------------------------------------- /src/server/game/Formulas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Formulas.h -------------------------------------------------------------------------------- /src/server/game/GameEventMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GameEventMgr.cpp -------------------------------------------------------------------------------- /src/server/game/GameEventMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GameEventMgr.h -------------------------------------------------------------------------------- /src/server/game/GlobalEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GlobalEvents.cpp -------------------------------------------------------------------------------- /src/server/game/GlobalEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GlobalEvents.h -------------------------------------------------------------------------------- /src/server/game/Globals/ObjectMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Globals/ObjectMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Globals/ObjectMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Globals/ObjectMgr.h -------------------------------------------------------------------------------- /src/server/game/GridMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GridMap.cpp -------------------------------------------------------------------------------- /src/server/game/GridMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GridMap.h -------------------------------------------------------------------------------- /src/server/game/GridNotifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GridNotifiers.cpp -------------------------------------------------------------------------------- /src/server/game/GridNotifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GridNotifiers.h -------------------------------------------------------------------------------- /src/server/game/GridNotifiersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/GridNotifiersImpl.h -------------------------------------------------------------------------------- /src/server/game/Grids/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/Grid.h -------------------------------------------------------------------------------- /src/server/game/Grids/GridDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/GridDefines.h -------------------------------------------------------------------------------- /src/server/game/Grids/GridLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/GridLoader.h -------------------------------------------------------------------------------- /src/server/game/Grids/GridReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/GridReference.h -------------------------------------------------------------------------------- /src/server/game/Grids/GridStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/GridStates.cpp -------------------------------------------------------------------------------- /src/server/game/Grids/GridStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/GridStates.h -------------------------------------------------------------------------------- /src/server/game/Grids/NGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/NGrid.cpp -------------------------------------------------------------------------------- /src/server/game/Grids/NGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Grids/NGrid.h -------------------------------------------------------------------------------- /src/server/game/Groups/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Groups/Group.cpp -------------------------------------------------------------------------------- /src/server/game/Groups/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Groups/Group.h -------------------------------------------------------------------------------- /src/server/game/Groups/GroupMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Groups/GroupMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Groups/GroupMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Groups/GroupMgr.h -------------------------------------------------------------------------------- /src/server/game/Guilds/Guild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Guilds/Guild.cpp -------------------------------------------------------------------------------- /src/server/game/Guilds/Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Guilds/Guild.h -------------------------------------------------------------------------------- /src/server/game/Guilds/GuildMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Guilds/GuildMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Guilds/GuildMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Guilds/GuildMgr.h -------------------------------------------------------------------------------- /src/server/game/Handlers/NPCHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Handlers/NPCHandler.h -------------------------------------------------------------------------------- /src/server/game/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Language.h -------------------------------------------------------------------------------- /src/server/game/LogsDatabaseAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/LogsDatabaseAccessor.h -------------------------------------------------------------------------------- /src/server/game/Loot/Loot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/Loot.cpp -------------------------------------------------------------------------------- /src/server/game/Loot/Loot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/Loot.h -------------------------------------------------------------------------------- /src/server/game/Loot/LootHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/LootHandler.cpp -------------------------------------------------------------------------------- /src/server/game/Loot/LootItemStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/LootItemStorage.h -------------------------------------------------------------------------------- /src/server/game/Loot/LootMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/LootMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Loot/LootMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Loot/LootMgr.h -------------------------------------------------------------------------------- /src/server/game/Mails/Mail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Mails/Mail.cpp -------------------------------------------------------------------------------- /src/server/game/Mails/Mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Mails/Mail.h -------------------------------------------------------------------------------- /src/server/game/Maps/AreaBoundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/AreaBoundary.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/AreaBoundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/AreaBoundary.h -------------------------------------------------------------------------------- /src/server/game/Maps/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/Map.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/Map.h -------------------------------------------------------------------------------- /src/server/game/Maps/MapInstanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapInstanced.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/MapInstanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapInstanced.h -------------------------------------------------------------------------------- /src/server/game/Maps/MapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapManager.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/MapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapManager.h -------------------------------------------------------------------------------- /src/server/game/Maps/MapRefManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapRefManager.h -------------------------------------------------------------------------------- /src/server/game/Maps/MapReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapReference.h -------------------------------------------------------------------------------- /src/server/game/Maps/MapScripts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapScripts.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/MapUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapUpdater.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/MapUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/MapUpdater.h -------------------------------------------------------------------------------- /src/server/game/Maps/SpawnData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/SpawnData.h -------------------------------------------------------------------------------- /src/server/game/Maps/TransportMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/TransportMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/TransportMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/TransportMgr.h -------------------------------------------------------------------------------- /src/server/game/Maps/ZoneScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/ZoneScript.cpp -------------------------------------------------------------------------------- /src/server/game/Maps/ZoneScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Maps/ZoneScript.h -------------------------------------------------------------------------------- /src/server/game/MiscHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/MiscHandler.cpp -------------------------------------------------------------------------------- /src/server/game/Monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Monitor.cpp -------------------------------------------------------------------------------- /src/server/game/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Monitor.h -------------------------------------------------------------------------------- /src/server/game/PlayerDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/PlayerDump.cpp -------------------------------------------------------------------------------- /src/server/game/PlayerDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/PlayerDump.h -------------------------------------------------------------------------------- /src/server/game/PlayerTaxi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/PlayerTaxi.cpp -------------------------------------------------------------------------------- /src/server/game/PlayerTaxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/PlayerTaxi.h -------------------------------------------------------------------------------- /src/server/game/Pools/PoolMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Pools/PoolMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Pools/PoolMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Pools/PoolMgr.h -------------------------------------------------------------------------------- /src/server/game/Pools/QuestPools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Pools/QuestPools.cpp -------------------------------------------------------------------------------- /src/server/game/Pools/QuestPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Pools/QuestPools.h -------------------------------------------------------------------------------- /src/server/game/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Profiler.cpp -------------------------------------------------------------------------------- /src/server/game/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Profiler.h -------------------------------------------------------------------------------- /src/server/game/QuestDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/QuestDef.cpp -------------------------------------------------------------------------------- /src/server/game/QuestDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/QuestDef.h -------------------------------------------------------------------------------- /src/server/game/RecupMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/RecupMgr.cpp -------------------------------------------------------------------------------- /src/server/game/RecupMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/RecupMgr.h -------------------------------------------------------------------------------- /src/server/game/Replay/ReplayPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Replay/ReplayPlayer.h -------------------------------------------------------------------------------- /src/server/game/Scripting/ScriptMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Scripting/ScriptMgr.h -------------------------------------------------------------------------------- /src/server/game/Server/ClientControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Server/ClientControl.h -------------------------------------------------------------------------------- /src/server/game/Server/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Server/Packet.h -------------------------------------------------------------------------------- /src/server/game/Server/WorldSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Server/WorldSession.h -------------------------------------------------------------------------------- /src/server/game/Server/WorldSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Server/WorldSocket.cpp -------------------------------------------------------------------------------- /src/server/game/Server/WorldSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Server/WorldSocket.h -------------------------------------------------------------------------------- /src/server/game/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Singleton.h -------------------------------------------------------------------------------- /src/server/game/SkillDiscovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SkillDiscovery.cpp -------------------------------------------------------------------------------- /src/server/game/SkillDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SkillDiscovery.h -------------------------------------------------------------------------------- /src/server/game/SkillExtraItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SkillExtraItems.cpp -------------------------------------------------------------------------------- /src/server/game/SkillExtraItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SkillExtraItems.h -------------------------------------------------------------------------------- /src/server/game/SocialHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SocialHandler.cpp -------------------------------------------------------------------------------- /src/server/game/SpectatorAddon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SpectatorAddon.cpp -------------------------------------------------------------------------------- /src/server/game/SpectatorAddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/SpectatorAddon.h -------------------------------------------------------------------------------- /src/server/game/Spells/Spell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/Spell.cpp -------------------------------------------------------------------------------- /src/server/game/Spells/Spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/Spell.h -------------------------------------------------------------------------------- /src/server/game/Spells/SpellDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellDefines.h -------------------------------------------------------------------------------- /src/server/game/Spells/SpellHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellHistory.h -------------------------------------------------------------------------------- /src/server/game/Spells/SpellInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellInfo.cpp -------------------------------------------------------------------------------- /src/server/game/Spells/SpellInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellInfo.h -------------------------------------------------------------------------------- /src/server/game/Spells/SpellMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Spells/SpellMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellMgr.h -------------------------------------------------------------------------------- /src/server/game/Spells/SpellScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellScript.cpp -------------------------------------------------------------------------------- /src/server/game/Spells/SpellScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Spells/SpellScript.h -------------------------------------------------------------------------------- /src/server/game/TaxiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/TaxiHandler.cpp -------------------------------------------------------------------------------- /src/server/game/Testing/TestCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestCase.cpp -------------------------------------------------------------------------------- /src/server/game/Testing/TestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestCase.h -------------------------------------------------------------------------------- /src/server/game/Testing/TestDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestDefines.h -------------------------------------------------------------------------------- /src/server/game/Testing/TestMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Testing/TestMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestMgr.h -------------------------------------------------------------------------------- /src/server/game/Testing/TestPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestPlayer.cpp -------------------------------------------------------------------------------- /src/server/game/Testing/TestPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestPlayer.h -------------------------------------------------------------------------------- /src/server/game/Testing/TestResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestResults.h -------------------------------------------------------------------------------- /src/server/game/Testing/TestThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestThread.cpp -------------------------------------------------------------------------------- /src/server/game/Testing/TestThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Testing/TestThread.h -------------------------------------------------------------------------------- /src/server/game/ThreadingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/ThreadingModel.h -------------------------------------------------------------------------------- /src/server/game/Tickets/TicketMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Tickets/TicketMgr.cpp -------------------------------------------------------------------------------- /src/server/game/Tickets/TicketMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Tickets/TicketMgr.h -------------------------------------------------------------------------------- /src/server/game/Time/GameTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Time/GameTime.cpp -------------------------------------------------------------------------------- /src/server/game/Time/GameTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Time/GameTime.h -------------------------------------------------------------------------------- /src/server/game/Time/UpdateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Time/UpdateTime.cpp -------------------------------------------------------------------------------- /src/server/game/Time/UpdateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Time/UpdateTime.h -------------------------------------------------------------------------------- /src/server/game/VehicleDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/VehicleDefines.h -------------------------------------------------------------------------------- /src/server/game/Warden/WardenBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenBase.cpp -------------------------------------------------------------------------------- /src/server/game/Warden/WardenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenBase.h -------------------------------------------------------------------------------- /src/server/game/Warden/WardenMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenMac.cpp -------------------------------------------------------------------------------- /src/server/game/Warden/WardenMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenMac.h -------------------------------------------------------------------------------- /src/server/game/Warden/WardenWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenWin.cpp -------------------------------------------------------------------------------- /src/server/game/Warden/WardenWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Warden/WardenWin.h -------------------------------------------------------------------------------- /src/server/game/Weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Weather.cpp -------------------------------------------------------------------------------- /src/server/game/Weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/Weather.h -------------------------------------------------------------------------------- /src/server/game/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/World.cpp -------------------------------------------------------------------------------- /src/server/game/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/World.h -------------------------------------------------------------------------------- /src/server/game/playerbot/AiFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/playerbot/AiFactory.h -------------------------------------------------------------------------------- /src/server/game/playerbot/ChatFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/playerbot/ChatFilter.h -------------------------------------------------------------------------------- /src/server/game/playerbot/ChatHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/playerbot/ChatHelper.h -------------------------------------------------------------------------------- /src/server/game/playerbot/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/playerbot/Helpers.cpp -------------------------------------------------------------------------------- /src/server/game/playerbot/playerbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/game/playerbot/playerbot.h -------------------------------------------------------------------------------- /src/server/game/playerbot/playerbotDefs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/ActionBasket.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | namespace ai 3 | { 4 | 5 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/druid/DruidMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/hunter/HunterMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/mage/MageMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/paladin/PaladinMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/priest/PriestMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/rogue/RogueMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/shaman/ShamanMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/warlock/WarlockMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/game/playerbot/strategy/warrior/WarriorMultipliers.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ai 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /src/server/scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/.gitignore -------------------------------------------------------------------------------- /src/server/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_ban.cpp -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_gm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_gm.cpp -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_go.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_go.cpp -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_npc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_npc.cpp -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_pet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_pet.cpp -------------------------------------------------------------------------------- /src/server/scripts/Commands/cs_wp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Commands/cs_wp.cpp -------------------------------------------------------------------------------- /src/server/scripts/Pet/pet_hunter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Pet/pet_hunter.cpp -------------------------------------------------------------------------------- /src/server/scripts/Pet/pet_shaman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Pet/pet_shaman.cpp -------------------------------------------------------------------------------- /src/server/scripts/ScriptLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/ScriptLoader.h -------------------------------------------------------------------------------- /src/server/scripts/ScriptPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/ScriptPCH.h -------------------------------------------------------------------------------- /src/server/scripts/Spells/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Spells/templates.h -------------------------------------------------------------------------------- /src/server/scripts/Tests/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/Tests/test_utils.h -------------------------------------------------------------------------------- /src/server/scripts/World/chat_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/World/chat_log.cpp -------------------------------------------------------------------------------- /src/server/scripts/World/npc_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/scripts/World/npc_guard.cpp -------------------------------------------------------------------------------- /src/server/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/shared/ClassSpells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/ClassSpells.h -------------------------------------------------------------------------------- /src/server/shared/DataStores/DBCfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/DataStores/DBCfmt.h -------------------------------------------------------------------------------- /src/server/shared/Dynamic/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Dynamic/LinkedList.h -------------------------------------------------------------------------------- /src/server/shared/Dynamic/TypeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Dynamic/TypeList.h -------------------------------------------------------------------------------- /src/server/shared/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Memory.h -------------------------------------------------------------------------------- /src/server/shared/Networking/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Networking/Socket.h -------------------------------------------------------------------------------- /src/server/shared/Packets/ByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Packets/ByteBuffer.h -------------------------------------------------------------------------------- /src/server/shared/Realm/Realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Realm/Realm.cpp -------------------------------------------------------------------------------- /src/server/shared/Realm/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Realm/Realm.h -------------------------------------------------------------------------------- /src/server/shared/Realm/RealmList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Realm/RealmList.cpp -------------------------------------------------------------------------------- /src/server/shared/Realm/RealmList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/Realm/RealmList.h -------------------------------------------------------------------------------- /src/server/shared/SharedDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/shared/SharedDefines.h -------------------------------------------------------------------------------- /src/server/worldserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/CMakeLists.txt -------------------------------------------------------------------------------- /src/server/worldserver/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/Main.cpp -------------------------------------------------------------------------------- /src/server/worldserver/TCSoap/TCSoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/TCSoap/TCSoap.h -------------------------------------------------------------------------------- /src/server/worldserver/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/resource.h -------------------------------------------------------------------------------- /src/server/worldserver/worldserver.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/worldserver.ico -------------------------------------------------------------------------------- /src/server/worldserver/worldserver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/server/worldserver/worldserver.rc -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/map_extractor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/map_extractor/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/System.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/adt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/adt.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/adt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/adt.h -------------------------------------------------------------------------------- /src/tools/map_extractor/dbcfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/dbcfile.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/dbcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/dbcfile.h -------------------------------------------------------------------------------- /src/tools/map_extractor/loadlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/loadlib.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/mpq_libmpq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/mpq_libmpq.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/mpq_libmpq04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/mpq_libmpq04.h -------------------------------------------------------------------------------- /src/tools/map_extractor/wdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/wdt.cpp -------------------------------------------------------------------------------- /src/tools/map_extractor/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/map_extractor/wdt.h -------------------------------------------------------------------------------- /src/tools/mmaps_generator/MapBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/mmaps_generator/MapBuilder.h -------------------------------------------------------------------------------- /src/tools/mmaps_generator/PathCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/mmaps_generator/PathCommon.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/adtfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/adtfile.cpp -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/adtfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/adtfile.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/dbcfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/dbcfile.cpp -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/dbcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/dbcfile.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/model.cpp -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/model.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/vec3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/vec3d.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/vmapexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/vmapexport.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/wdtfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/wdtfile.cpp -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/wdtfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/wdtfile.h -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/wmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/wmo.cpp -------------------------------------------------------------------------------- /src/tools/vmap4_extractor/wmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityTBC/core/HEAD/src/tools/vmap4_extractor/wmo.h --------------------------------------------------------------------------------