Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-10 | Revert "COMMON: Change way the Singleton instances are instantiated" | Eugene Sandulenko | |
This reverts commit eefa72afa1978a9dea10f5b1833fcc8f58a3468e. With this patch ConfigManager is broken. | |||
2017-07-10 | COMMON: Change way the Singleton instances are instantiated | Thierry Crozat | |
This fixes tons of warnings with clang from a recent xcode version on macOS (and possibly other systems) complaining that an instantiation of _singleton is required but no definition is available. | |||
2016-09-03 | JANITORIAL: Fix include statements | Eugene Sandulenko | |
2015-12-09 | SWORD25: Fix typo | Jakub Wilk | |
2014-02-18 | SWORD25: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-10-05 | SWORD25: Fix regression in persistence code | Thierry Crozat | |
The regression was introduced by commit e6ba26ff0d which wrote coordinates of a rect as unsigned int when they were before written as signed int. Since the load code was not modified it still expected signed int. They are now again written as signed int. Any gamed saved between commit e6ba26ff0d and this commit will therefore be corrupted. | |||
2013-09-29 | SWORD25: Fix compilation | Eugene Sandulenko | |
2013-09-29 | SWORD25: Specify integer size | Eugene Sandulenko | |
2013-09-29 | SWORD25: int -> int32 correctness | Eugene Sandulenko | |
2011-06-30 | ALL: Require DECLARE_SINGLETON to be used in the Common namepsace | Ori Avtalion | |
Silences the clang warning: static data member specialization of '_singleton' must originally be declared in namespace 'Common'; accepted as a C++0x extension [-Wc++0x-extensions] Wrapping "namespace Common {}" around the macro assignment causes clang to complain about a spurious semicolon, and removing the semicolon at the end of the macro causes some editors to misbehave. Changing the requirement of using the macro in one namespace (the global) to another (Common) seems a small price to pay to silence a warning. | |||
2011-05-25 | ALL: initialise -> initialize | Matthew Hoops | |
2011-05-23 | SWORD25: Avoid including lua headers in other headers | Max Horn | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-03-21 | SWORD25: Reduce code duplication; formatting | Max Horn | |
2011-01-28 | SWORD25: Removed a lot of debug/unimplemented/unused functions | Filippos Karapetis | |
svn-id: r55600 | |||
2011-01-24 | SWORD25: Cleanup | Filippos Karapetis | |
svn-id: r55501 | |||
2011-01-24 | SWORD25: Removed the logErrorLn and logWarningLn wrappers | Filippos Karapetis | |
svn-id: r55488 | |||
2011-01-23 | SWORD25: Fix GCC Compilation Warnings. | David Turner | |
svn-id: r55482 | |||
2011-01-23 | SWORD25: Removed several unused methods of the Vertex class, and made a ↵ | Filippos Karapetis | |
subclass of the Common::Point class svn-id: r55478 | |||
2011-01-23 | SWORD25: Removed several unused methods from the Polygon class | Filippos Karapetis | |
svn-id: r55477 | |||
2011-01-23 | SWORD25: Replaced BS_ASSERT() with assert() | Filippos Karapetis | |
svn-id: r55464 | |||
2011-01-23 | SWORD25: Removed the custom log class and replaced it with ↵ | Filippos Karapetis | |
warning/error/debugC calls svn-id: r55462 | |||
2010-11-28 | SWORD25: Fix warning about uninitialized DijkstraNode::parentIter | Max Horn | |
svn-id: r54551 | |||
2010-11-16 | COMMON: Simplify DECLARE_SINGLETON macro | Max Horn | |
This makes it possible to write DECLARE_SINGLETON(foo); instead of DECLARE_SINGLETON(foo) without causing a warning about an extra semicolon. The extra semicolon helps some editors at parsing the C++ code. svn-id: r54258 | |||
2010-10-25 | SWORD25: Get rid of most of the 'kernel service/superclass' code | Max Horn | |
svn-id: r53835 | |||
2010-10-24 | SWORD25: Remove outdated comments | Max Horn | |
svn-id: r53752 | |||
2010-10-19 | SWORD25: Enforced code formatting rules in rest of the engine | Eugene Sandulenko | |
svn-id: r53626 | |||
2010-10-19 | SWORD25: Enforce code naming conventions in gfx/image/imageloader* | Eugene Sandulenko | |
svn-id: r53623 | |||
2010-10-19 | SWORD25: Enforce code naming conventions in gfx/graphicengine* | Eugene Sandulenko | |
svn-id: r53621 | |||
2010-10-19 | SWORD25: Optimize ReverseArray, move it to only place it is used | Max Horn | |
svn-id: r53606 | |||
2010-10-19 | SWORD25: Added operator= to Polygon class | Paul Gilbert | |
This fixes a corruption where vertice arrays were being copied directly and destroyed prematurely svn-id: r53603 | |||
2010-10-18 | SWORD25: Renamed Lua .c files to .cpp and make it compilable | Eugene Sandulenko | |
svn-id: r53568 | |||
2010-10-15 | SWORD25: Do not use Kernel::GetService directly anymore | Max Horn | |
svn-id: r53477 | |||
2010-10-13 | SWORD25: Semi-colon cleanup. | Johannes Schickel | |
svn-id: r53446 | |||
2010-10-13 | SWORD25: Invoke parent's class copy constructor | Max Horn | |
svn-id: r53432 | |||
2010-10-13 | SWORD25: Convert object registries to singletons | Max Horn | |
svn-id: r53431 | |||
2010-10-13 | SWORD25: Renamed getInstance() -> instance() | Max Horn | |
svn-id: r53430 | |||
2010-10-13 | SWORD25: Oops, atan2() takes two arguments | Filippos Karapetis | |
svn-id: r53429 | |||
2010-10-13 | SWORD25: Extended Mac OSX compilation fix for sqrtf and atan2f | Filippos Karapetis | |
svn-id: r53426 | |||
2010-10-13 | SWORD25: Hopefully fixed compilation under Mac OSX, Solaris and mingw32 | Filippos Karapetis | |
Taken from sound/softsynth/mt32/tables.cpp lines 28-41 (thanks LordHoto) svn-id: r53425 | |||
2010-10-13 | SWORD25: Enforced code naming conventions in math/* | Eugene Sandulenko | |
svn-id: r53392 | |||
2010-10-13 | SWORD25: Enforced code naming conventions in script/* | Eugene Sandulenko | |
svn-id: r53391 | |||
2010-10-12 | SWORD25: Comply to the code conventions for several classes | Eugene Sandulenko | |
svn-id: r53310 | |||
2010-10-12 | SWORD25: unsigned int -> uint | Eugene Sandulenko | |
svn-id: r53309 | |||
2010-10-12 | SWORD25: Corrected the definition of infinity constant | Paul Gilbert | |
Previous string of ~(-1) was actually evaluating to 0, which was screwing up the path-finding algorithms svn-id: r53290 | |||
2010-10-12 | SWORD25: Bugfix to walk path detection | Paul Gilbert | |
svn-id: r53289 | |||
2010-10-12 | SWORD25: Refactored engine to remove BS_Rect class | Paul Gilbert | |
svn-id: r53265 | |||
2010-10-12 | SWORD25: removed BS_ prefix from rest of the classes. | Eugene Sandulenko | |
The things which are intentionally left with the prefix: BS_LOG, BS_ASSERT, BS_Rect, BS_String. svn-id: r53261 | |||
2010-10-12 | SWORD25: eliminated BS_ prefix in all but kernel/ | Eugene Sandulenko | |
svn-id: r53259 | |||
2010-10-12 | SWORD25: Mass-eliminating of BS_ prefix in fmv/ and gfx/ | Eugene Sandulenko | |
svn-id: r53258 |