summaryrefslogtreecommitdiffstats
path: root/src/Globals.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move make_unique into a namespace to avoid ADL issuestycho2015-05-161-3/+7
| | | | this prevents VS finding std::make_unique for constructors that take types from std
* Initial implementation of IniFile overloadingtycho2015-05-161-1/+1
|
* More style checking.Mattes D2015-05-091-2/+2
| | | | Spaces around some operators are checked.
* Unified cByteBuffer types.Mattes D2015-03-211-3/+7
| | | | cByteBuffer now reads and writes any of the [U]Int<N> types.
* LuaAPI: Added client TLS support for TCP links.Mattes D2015-02-121-1/+2
|
* Exported cServerHandle and cNetwork:Listen to Lua.Mattes D2015-02-041-0/+1
| | | | Also added an example to the NetworkTest plugin.
* Added newline to logged messages in the tests.Mattes D2015-01-221-8/+12
|
* Extracted Google connection testTycho2015-01-221-0/+10
|
* Initial convertion of a_Dt to std::chronoTycho2015-01-111-0/+1
| | | | also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay
* Created new type cTickTime and rewrote cWorld::TickThread to use itTycho2015-01-111-0/+3
|
* Merge remote-tracking branch 'origin/master' into c++11EventsMattes D2014-12-071-6/+6
|\
| * Merged branch 'origin/master' into c++11.Mattes D2014-12-041-2/+3
| |\
| | * Added a basic stacktracing for assert and signal failures.Mattes D2014-11-291-2/+3
| | |
| * | Merge remote-tracking branch 'origin-master' into c++11Tiger Wang2014-11-261-2/+2
| | |
| * | Merged branch 'master' into c++11.Mattes D2014-10-241-2/+4
| |\|
| * | SuggestionsTiger Wang2014-10-241-2/+1
| | |
| * | Merge branch 'master' of https://github.com/mc-server/MCServerTiger Wang2014-10-201-13/+2
| |\ \
| * | | Migrated cSleep and cTimer to std::chronoTiger Wang2014-10-201-1/+0
| | | |
| * | | Migrated random generators to std::randomTiger Wang2014-10-191-0/+1
| | | |
| * | | Use std::threadTiger Wang2014-10-191-1/+1
| | | |
* | | | Moved the chrono include into Globals.Mattes D2014-10-241-0/+2
| |_|/ |/| |
* | | Removed the "conditional expression is constant" warning.Mattes D2014-10-231-2/+4
| |/ |/| | | | | MSVC spits out many of these on its own std libraries.
* | Removed obsolete tr1::shared_ptr.Mattes D2014-10-191-13/+2
|/
* Fix spacesworktycho2014-10-121-2/+2
|
* Moved a few objects to unique_ptrtycho2014-10-101-0/+7
|
* Fixed MSVC compilation.Mattes D2014-10-101-0/+3
|
* Float/Ciel: If it's going to use C++11, it might as well take advantage of itarchshift2014-10-091-20/+6
|
* Use static casts instead of C casts, add floor-cast functionsarchshift2014-10-091-4/+36
|
* Fixed UNUSED macro so that it doesn't require type knowledge.madmaxoft2014-09-261-1/+10
| | | | Introduced new UNUSED_VAR macro that is used when type knowledge is available (for local variables).
* Added first test to show the object can be createdTycho2014-09-171-0/+21
|
* Renamed LoggersTycho2014-08-121-1/+1
|
* First Implementatation of new Loggin frameworkTycho2014-08-101-1/+1
|
* Fixed a ToLua warning - operator = not supported.madmaxoft2014-08-031-2/+2
|
* Style: Normalized to no spaces before closing parenthesis.madmaxoft2014-07-211-4/+4
|
* Style: Normalized spaces after if, for and while.madmaxoft2014-07-211-1/+1
|
* Fixed style: spaces after commas.madmaxoft2014-07-191-1/+1
|
* Fixed spaces around single-line comments.madmaxoft2014-07-171-11/+11
| | | | There should be at least two spaces in front and one space after //-style comments.
* Fixed basic whitespace problems.madmaxoft2014-07-171-5/+5
| | | | Indenting by spaces and alignment by spaces, as well as trailing whitespace on non-empty lines.
* Merge remote-tracking branch 'origin/master' into potionsarchshift2014-07-101-3/+18
|\ | | | | | | | | | | Conflicts: src/Entities/Player.cpp src/Entities/ProjectileEntity.cpp
| * Fixed size_t printfing under MinGW.Mattes D2014-06-301-3/+18
| |
* | Moved Effects.h to EntityEffects.h, added initial implarchshift2014-06-171-1/+0
|/
* Test failures break into MSVC debugger.madmaxoft2014-05-301-0/+6
|
* Test failures are reported verbosely and into the debug console on Win.madmaxoft2014-05-301-2/+18
|
* Fixed test globals to work with precompiled headersTycho2014-05-271-12/+36
|
* Fixed MSVC2013 compilation.Mattes D2014-05-011-1/+1
|
* Fixed C++11 check for SharedPtr.madmaxoft2014-04-251-1/+1
|
* Added shared_ptr handling for C++03 mode.madmaxoft2014-04-251-3/+7
|
* Declared a SharedPtr that hopefully resolves on all platforms.madmaxoft2014-04-241-1/+9
| | | | MSVC2008 has it in std::tr1, all the others in std.
* Initial C++ SSL classes.madmaxoft2014-04-241-2/+4
|
* Fixed a few MSVC type warnings.Mattes D2014-04-031-0/+3
|
* Fixed non-virtual destructors warnings.madmaxoft2014-03-281-2/+8
|
* Added Noreturn attribtes to a couple of functions and made a missing noreturn an errorTycho2014-03-141-2/+9
|
* Added NORETURN macroTycho2014-03-141-0/+4
|
* Fixed xofts issuesTycho2014-03-141-1/+2
|
* Fixed commaTycho2014-03-121-2/+2
|
* Added additional macros to support the MSVC size_t format and changed all formats to use the macrosTycho2014-03-121-0/+4
|
* Merge branch 'Werror' into warningsTycho2014-03-121-1/+14
|\ | | | | | | | | Conflicts: src/Globals.h
| * Fixed printf format compatabiltyTycho2014-03-121-0/+5
| |
| * Merge branch 'master' into WerrorTycho2014-03-121-0/+8
| |\ | | | | | | | | | | | | Conflicts: src/Generating/PieceGenerator.cpp
| | * Unified Vector classesandrew2014-03-111-0/+8
| | |
| * | Fixed comments an assertTycho2014-03-121-1/+1
| | |
* | | Added macros to follow format string checking through wrappersTycho2014-03-111-0/+4
|/ /
* | Fixed test assertsTycho2014-03-101-3/+4
| |
* | Be more parinoid about int sizesTycho2014-03-091-2/+16
| |
* | Globals.h is now warnings free again.Tycho2014-03-091-2/+0
|/ | | | Also turned off Wpadded as it is indicates potental performance issues rather than potential bugs
* g_BlockXXX => cBlockInfo::XXXandrew2014-03-011-0/+1
|
* Thread safe cMap managerandrew2014-02-201-3/+3
|
* Manual merge (Fixed conflicts)andrew2014-02-201-0/+10
|
* Merge branch 'master' into GeneratingBenchmark2Tycho2014-01-261-0/+3
|\ | | | | | | | | | | Conflicts: src/Blocks/BlockRail.h src/World.h
| * PolarSSL is fully used for 1.3.2 protocol encryption.madmaxoft2014-01-231-0/+3
| |
* | Added support for overide in c++11 supporting varients of gcc/clangTycho2014-01-261-2/+4
|/
* Move biome definition to separate filesBill Derouin2014-01-091-0/+1
|
* Disabled an unneeded MSVC warning.madmaxoft2014-01-071-4/+7
| | | | Also sorted the enabled warnings by their numerical code for easier searching..
* Disabled the type conversion MSVC warning.madmaxoft2014-01-061-1/+3
| | | | It was hitting way too many false positives.
* Changed the release version of ASSERT.Diusrex2014-01-051-1/+1
| | | | This was so a variable only used in ASSERT statements will not give a warning about not being used.
* Making all of the useful level 4 warnings be active.Diusrex2014-01-051-1/+13
|
* Removed offending tr1/memory header inclusion.madmaxoft2013-12-181-3/+0
| | | | We already use <memory> at line 160, this was a double include, additionally causing problems (#424).
* Exported E_EFFECTS_<Effect> to lua. Forgot to commit Globals.h.STRWarrior2013-12-141-0/+1
|
* Fixed a load of issues, clang autodetection works now.Alexander Harkness2013-11-271-1/+0
| | | | | | | | This fixes issue #210. This also removes the disableasm option, so it would be wise to remove it from any scripts that use it. I also removed a random line in the middle of globals.h, why was it there?
* Moved source to srcAlexander Harkness2013-11-241-0/+227