summaryrefslogtreecommitdiffstats
path: root/src/common
Commit message (Collapse)AuthorAgeFilesLines
* Mouse wheel events, motion vectorsPiotr Dziwinski2012-09-193-54/+85
| | | | | | - added mouse wheel events - added motion vectors to CRobotMain - other minor changes in event.h
* Input bindings rewritePiotr Dziwinski2012-09-195-68/+103
| | | | | | - moved input bindings to CRobotMain - added virtual keymod and joystick button key presses - fixed putenv error; other minor fixes
* Warnings cleaned, left only those connected to commented out code.Zaba9992012-09-182-2/+2
|
* warnings fight in progress.Zaba9992012-09-185-9/+9
|
* Interface worksPiotr Dziwinski2012-09-161-1/+7
| | | | | | - removed mock of CInterface and fixed event passing to CRobotMain - changed texture names from tga and bmp to png - UI now works but interaction is still broken
* Successful compilation & runningPiotr Dziwinski2012-09-151-1/+1
| | | | | | | - temporarily mocked CSoundInterface and CPluginInterface - added CRobotMain to application - successfully compiles & runs, but doesn't display correctly at the moment
* CMainDialog rewritePiotr Dziwinski2012-09-151-1/+1
| | | | - rewritten CMainDialog and updated CRobotMain
* Merge dev-common and various fixes to achieve compilationPiotr Dziwinski2012-09-1526-4184/+582
|\ | | | | | | | | | | | | | | - merged changes from dev-common - fixed many compilation errors (CBrain, UI, ...) - temporarily commented out some problematic code (e.g. input bindings) - (partially) fixed #include styling - everything compiles except for CRobotMain, CMainDialog and CStudio
| * Locale settings and translation fixesPiotr Dziwinski2012-09-133-63/+4
| | | | | | | | | | | | - added locale setting - removed unused translations - updated .po files
| * Image pixel read/writePiotr Dziwinski2012-09-134-17/+167
| |
| * Simulation timestamps and input bindingsPiotr Dziwinski2012-09-123-4/+11
| | | | | | | | | | | | - added new simulation time calculations in CApplication - added simulation frame updates - rewritten old input binding code and input state tracking
| * Refactoring in src/commonPiotr Dziwinski2012-09-0922-461/+331
| | | | | | | | | | - refactored CInstanceManager and some headers - removed old headers
* | Merge branch 'dev-ui' into devMichał Konopacki2012-09-152-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/CMakeLists.txt src/common/misc.cpp src/common/misc.h src/object/robotmain.cpp src/object/robotmain.h src/script/cbottoken.cpp src/script/cbottoken.h src/ui/button.cpp src/ui/button.h src/ui/check.cpp src/ui/check.h src/ui/color.cpp src/ui/color.h src/ui/compass.cpp src/ui/compass.h src/ui/control.cpp src/ui/control.h src/ui/displayinfo.cpp src/ui/displayinfo.h src/ui/displaytext.cpp src/ui/displaytext.h src/ui/edit.cpp src/ui/edit.h src/ui/gauge.cpp src/ui/gauge.h src/ui/interface.cpp src/ui/interface.h src/ui/key.cpp src/ui/map.h src/ui/shortcut.h src/ui/slider.h src/ui/target.cpp src/ui/target.h src/ui/window.cpp src/ui/window.h
| * \ Merge branch 'dev' of https://github.com/adiblol/colobot into dev-uierihel2012-09-038-4288/+1650
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/common/restext.cpp src/common/restext.h
| * | | latest changes; few more classes should compile nowerihel2012-08-312-2/+2
| | | |
| * | | * ui/key.cpp compileserihel2012-08-171-0/+1
| | | | | | | | | | | | | | | | * csoundinterface to ccontrol
| * | | First approach to port 2D UI InterfaceMichał Konopacki2012-08-154-1436/+1439
| | | | | | | | | | | | | | | | | | | | - changes in src/ui ; be CAREFUL, not every file is changed in a proper way -> bugs - necessary changes in object/robotmain.h and common/misc.h/.cpp in order to compile
* | | | Merge with changes from Zaba999 fork.Zaba9992012-09-105-217/+3791
| |_|/ |/| |
* | | Merge branch 'dev' into dev-graphicsPiotr Dziwinski2012-09-098-4282/+1645
|\ \ \ | | |/ | |/|
| * | Whitespace fixPiotr Dziwinski2012-08-271-22/+22
| | |
| * | Move strings out of restext. Add i18n via gettextAlexander Monakov2012-08-253-3524/+840
| | |
| * | Move ResTextType enum to a separate fileAlexander Monakov2012-08-252-109/+120
| | |
| * | Move Error enum to a separate fileAlexander Monakov2012-08-252-133/+151
| | |
| * | Move EventType enum to a separate fileAlexander Monakov2012-08-252-516/+534
| |/
* / New model file formatPiotr Dziwinski2012-08-312-15/+75
|/ | | | | | | - added new binary and text formats for models - fixes and improvements in CModelFile - tool for converting model files - minor additions and fixes
* FixPiotr Dziwinski2012-08-131-1/+1
|
* Merge branch 'dev-graphics' into devPiotr Dziwinski2012-08-122-6/+40
|\ | | | | | | CEngine object handling
| * Object handling in CEnginePiotr Dziwinski2012-08-122-6/+40
| | | | | | | | | | | | - finished rewriting CEngine object, shadow, etc. handling - refactored texture code - added new log levels
* | Merge branch 'dev-opengl' into deverihel2012-08-124-39/+49
|\|
| * Documentation updatePiotr Dziwinski2012-08-112-9/+10
| | | | | | | | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
| * Graphics stubsPiotr Dziwinski2012-08-091-23/+36
| | | | | | | | | | | | | | - added stubs for functions in CLightning, CParticle and CPyro - cleaned object.h and physics.h headers - created temporary stubs to compile CCamera - other necessary changes to compile successfully
| * Font renderingPiotr Dziwinski2012-08-061-7/+3
| | | | | | | | - implemented rest of CText interface excluding some minor features
* | * New CPluginManager class for managing plugins based on colobot.inierihel2012-08-129-26/+106
| | | | | | | | | | * Moved sound plugin into sound dir * Minor changes in logger and profile
* | * changed 0, NULL to nullptrerihel2012-08-097-72/+114
| | | | | | | | | | | | | | * 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-0918-947/+937
|\| | | | | | | | | Conflicts: src/sound/sound.h
| * Switched to new style castsPiotr Dziwinski2012-07-304-15/+19
| | | | | | | | | | | | - rewrote old C-style casts to new ..._cast<> - corrected some dangerous casts - added -Wold-style-cast to compile flags
| * Video mode changingPiotr Dziwinski2012-07-291-2/+31
| | | | | | | | | | | | - added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
| * GLEWPiotr Dziwinski2012-07-281-0/+2
| | | | | | | | Added GLEW for loading OpenGL extensions
| * Whitespace fixPiotr Dziwinski2012-07-274-78/+78
| |
| * Texture & mouse functions; refactoring & fixesPiotr Dziwinski2012-07-223-8/+13
| | | | | | | | | | | | | | | | | | | | | | - cleaned up and added documentation to engine.h - refactored CEngine interface and associated structs - added mouse handling functions in CApplication & CEngine - fixed bugs in projection matrix setting - changed texture loading & handling - added const-values in CDevice & CGLDevice - changed event management in CApplication - other minor changes & bugfixes
| * Fix in model loading; simple model viewerPiotr Dziwinski2012-07-151-1/+1
| | | | | | | | | | | | | | | | | | - fixed model loading code - added simple model viewer (model_test) in src/graphics/opengl/test - added system time stamp code - split the code in app/system modules to separate headers - added debug messages in model loading - minor fixes in OpenGL engine
| * Minor changesPiotr Dziwinski2012-07-112-810/+0
| | | | | | | | | | | | - moved mainpage src/doc/docmain.doc.txt to src/app/main.cpp - removed old modfile modules from src/common - removed Snd namespace in engine.h
| * Rewritten model loadingPiotr Dziwinski2012-07-113-0/+307
| | | | | | | | | | | | - written new implementation of CModelFile (old CModFile) - added stringutils and ioutils in src/common - removed old CModel (model viewer)
| * Merged changes from devPiotr Dziwinski2012-07-045-12/+316
| | | | | | | | Resolved conflicts & added fixes.
| * Multitexturing supportPiotr Dziwinski2012-07-044-0/+345
| | | | | | | | | | | | | | | | - added CImage class for loading/saving images and a simple test for it - added libpng library to build - added Gfx::Texture struct - updated the Gfx::CDevice interface to include new features - implemented the new features in Gfx::CGLDevice
| * Switched back to old standard; addded -WallPiotr Dziwinski2012-06-301-25/+12
| | | | | | | | | | - removed -std=c++11 - added -Wall and removed most reported warnings
| * Event handling, CApplication and switch to c++-11Piotr Dziwinski2012-06-304-175/+294
| | | | | | | | | | | | - added/changed event structs and event queue in common/event.h - added event handling and some minor functions in CApplication - switched to --std=c++11 because of union in Event struct
* | * Chaned plugin interfaceerihel2012-07-192-2/+19
| | | | | | | | | | * Added plugin class for plugin loading * Added plugin loading test
* | just some fixeserihel2012-07-041-0/+1
| |
* | Enabled logging & minor fixesPiotr Dziwinski2012-07-041-2/+2
| | | | | | | | | | | | - added logger to main() - removed reference to Snd namespace and renamed back to sound.h - fixed minor issues