Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-04-03 | Removed the obsolete cTracer class. (#4594) | Mattes D | 1 | -452/+0 | |
2020-04-03 | Pulled the BlockID and BlockInfo headers from Globals.h. (#4591) | Mattes D | 1 | -0/+1 | |
The BlockID.h file was removed from Globals.h and renamed to BlockType.h (main change) The BlockInfo.h file was removed from Globals.h (main change) The ENUM_BLOCK_ID and ENUM_ITEM_ID enum names were replaced with ENUM_BLOCK_TYPE and ENUM_ITEM_TYPE (cosmetics) The various enums, such as eDimension, eDamageType and eExplosionSource were moved from BlockType.h to Defines.h, together with the helper functions for converting between them and strings (StringToDimension et al.) (minor) Many inline functions were moved from headers to their respective cpp files, so that BlockType.h could be included only into the cpp file, rather than the header. That broke our tests a bit, since they pick bits and pieces out of the main code and provide stubs for the rest; they had to be re-stubbed and re-verified. eMonsterType values are no longer tied to E_ITEM_SPAWN_EGG_META_* values | |||||
2018-07-26 | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 1 | -0/+1 | |
Add check for number of empty lines between functions and fix the corresponding failures | |||||
2018-05-06 | Use clang-tidy to check more code conventions (#4214) | Bond-009 | 1 | -74/+74 | |
* Create clang-tidy.sh * Add clang-tidy to circle.yml * Fixed some naming violations Fixes #4164 | |||||
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -5/+5 | |
2015-07-29 | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 1 | -2/+2 | |
2015-05-19 | Make -Werror disabling file only | tycho | 1 | -1/+1 | |
Ad fix a load of warnings | |||||
2015-05-09 | Fixed some Visual Studio warnings | Tiger Wang | 1 | -3/+3 | |
2015-05-08 | Tracer::signum function now returns int | Woazboat | 1 | -23/+26 | |
convert c style casts to c++ static casts Changed fabs() to std::abs() | |||||
2015-05-08 | Check for zero length vector in Trace | Woazboat | 1 | -4/+10 | |
Added hasNonZeroLength member function to Vector3 | |||||
2015-05-08 | Changed Tracer::m_NormalTable to static array | Woazboat | 1 | -7/+20 | |
Was previously instantiated for every trace | |||||
2015-05-05 | Revert "Small code cleanup" | worktycho | 1 | -49/+33 | |
2015-04-29 | Changed fabs() to std::abs() | Woazboat | 1 | -4/+4 | |
2015-04-29 | braces in Tracer::mNormalTable initializer in separate lines | Woazboat | 1 | -2/+4 | |
2015-04-29 | Added extra braces to initialization of Tracer::m_NormalTable | Woazboat | 1 | -2/+2 | |
2015-04-29 | And another cs fix I overlooked | Woazboat | 1 | -1/+1 | |
2015-04-29 | Fixed comments according to cs | Woazboat | 1 | -11/+11 | |
2015-04-29 | Fix HasNonZeroLength name | Woazboat | 1 | -2/+2 | |
now 100% more cs compliant | |||||
2015-04-29 | Changed Tracer::m_NormalTable to static array | Woazboat | 1 | -6/+11 | |
Was previously instantiated for every trace | |||||
2015-04-28 | Tracer signum function now returns int | Woazboat | 1 | -6/+8 | |
2015-04-28 | Check for zero length vector in Trace | Woazboat | 1 | -4/+10 | |
Added hasNonZeroLength member function to Vector3 | |||||
2015-04-28 | convert c style casts to c++ static casts | Woazboat | 1 | -14/+15 | |
2014-12-05 | BasicStyle: Added missing braces to control statements. | Mattes D | 1 | -3/+12 | |
2014-12-05 | Fixed reported parentheses around comparisons. | Mattes D | 1 | -49/+56 | |
2014-09-23 | A few compiler warning fixes | Chris Darnell | 1 | -1/+1 | |
2014-09-22 | Made it compile with clang | Chris Darnell | 1 | -1/+1 | |
2014-07-21 | Style: Normalized to no spaces before closing parenthesis. | madmaxoft | 1 | -32/+32 | |
2014-07-21 | Style: Normalized spaces after if, for and while. | madmaxoft | 1 | -20/+20 | |
2014-07-19 | Fixed style: spaces after commas. | madmaxoft | 1 | -3/+3 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -9/+23 | |
This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | |||||
2014-07-17 | Fixed spaces around single-line comments. | madmaxoft | 1 | -12/+12 | |
There should be at least two spaces in front and one space after //-style comments. | |||||
2014-04-23 | Some change to Entity.cpp | Tiger Wang | 1 | -1/+5 | |
* Added comments to BroadcastMovementUpdate() and the collision tracer | |||||
2014-03-11 | Unified Vector classes | andrew | 1 | -4/+0 | |
2014-03-01 | g_BlockXXX => cBlockInfo::XXX | andrew | 1 | -1/+1 | |
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-11-05 | Added missing check for a_LineOfSight | Samuel Barney | 1 | -1/+1 | |
2013-11-05 | cTracer can now handle mob sight. | Samuel Barney | 1 | -3/+4 | |
2013-11-05 | Added more documentation. Changed cTracer::Trace to return a bool instead of an int because it was only returning 1 or 0 anyways. | Samuel Barney | 1 | -4/+4 | |
2013-11-05 | Reworked collision to use g_BlockIsSolid | Samuel Barney | 1 | -15/+6 | |
2013-11-05 | Flowers, mushrooms and air are no longer collidable. | Samuel Barney | 1 | -6/+15 | |
2013-08-24 | Fixed logging in cTracer. | madmaxoft | 1 | -1/+1 | |
2013-08-24 | cTracer doesn't attempt a trace above the world. | madmaxoft | 1 | -2/+2 | |
This fixes some crashes with out-of-world entities. | |||||
2013-08-19 | Moved entities into the Entities subfolder. | madmaxoft | 1 | -4/+1 | |
2013-04-06 | Tracer: removed the "start and end in the same block" warning, it is a normal condition. | madmaxoft@gmail.com | 1 | -29/+59 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1360 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-03-30 | cTracer: Fixed asserts for invalid coords | madmaxoft@gmail.com | 1 | -6/+26 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1327 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-24 | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 1 | -3/+3 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@887 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-06-14 | Attempt to bring sanity to newlines across systems. | cedeel@gmail.com | 1 | -350/+350 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-02-15 | No longer using pointers for Vector3(f/d/i) in cEntity's and cTracer | faketruth | 1 | -88/+56 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@268 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-01-29 | VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization. | madmaxoft@gmail.com | 1 | -2/+4 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@188 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2011-12-22 | Fixes: | lapayo94@gmail.com | 1 | -2/+5 | |
- Pickups fall through water now (Server-side they stayed in the water surface) - Suppressed some warnings (int to short etc.) - Water is now passable for cTracer git-svn-id: http://mc-server.googlecode.com/svn/trunk@96 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2011-10-03 | MCServer c++ source files | faketruth | 1 | -0/+377 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@3 0a769ca7-a7f5-676a-18bf-c427514a06d6 |