summaryrefslogtreecommitdiffstats
path: root/src/common/iman.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fixed code formattingPiotr Dziwinski2013-05-271-0/+1
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* CInstanceManager refactoringPiotr DziwiƄski2013-02-171-14/+1
| | | | | | | | | * removed classes managed by CInstanceManager except for CObject, CPyro, CBrain and CPhysics because of dependencies * refactored instance searching to use existing singleton instances of CApplication, CEngine and CRobotMain and calling their getter functions
* Doxygen/comment fixes and some #include refactoringPiotr Dziwinski2012-10-171-1/+0
|
* Refactoring in src/commonPiotr Dziwinski2012-09-091-93/+43
| | | | | - refactored CInstanceManager and some headers - removed old headers
* * changed 0, NULL to nullptrerihel2012-08-091-1/+1
| | | | | | | * changed profile.cpp to use SimpleIni to load config files * added new CProfile singleton class for loading config * added SimpleIni to lib/ dir * added config loading tests
* Merge branch 'dev' of https://github.com/adiblol/colobot into deverihel2012-08-091-1/+1
|\ | | | | | | | | Conflicts: src/sound/sound.h
| * Switched to new style castsPiotr Dziwinski2012-07-301-1/+1
| | | | | | | | | | | | - rewrote old C-style casts to new ..._cast<> - corrected some dangerous casts - added -Wold-style-cast to compile flags
* | * Chaned plugin interfaceerihel2012-07-191-0/+15
|/ | | | | * Added plugin class for plugin loading * Added plugin loading test
* Whitespace and language changePiotr Dziwinski2012-06-261-162/+162
| | | | | | | - changed tabs to spaces and DOS line endings to Unix (except in CBot and metafile) - changed language to English - fixed #include <d3d.h> in d3dengine.h
* SDL projectPiotr Dziwinski2012-06-251-1/+0
| | | | | | | | - added (very basic) SDL template in CApplication and CEngine - split project into two targets: colobot_old (dependent on DirectX and WinAPI) and colobot_new (dependent on SDL and OpenGL) - moved sound.h/cpp to old/ and created new template in Snd namespace - added platform-independent dialog boxes in app/system.h/cpp
* FPOINT -> Math::Point & other math functionsPiotr Dziwinski2012-06-131-2/+0
| | | | | | | | | - changed FPOINT to Math::Point and some functions from math module to the new implementation - moved old function and FPOINT struct declarations to math3d.cpp - removed some unused functions in math module - fixed some #include dependencies - moved #define STRICT and #define D3D_OVERLOADS to compile options
* BOOL -> bool; additional fixes in constructors/destructorsPiotr Dziwinski2012-06-101-7/+7
|
* Fixed include paths and CMakeLists.txtPiotr Dziwinski2012-06-101-2/+2
| | | | Additionally, changed #ifndef to #pragma once everywhere
* Source files split into modulesPiotr Dziwinski2012-04-281-0/+165