summaryrefslogtreecommitdiffstats
path: root/src/app/app.h
Commit message (Collapse)AuthorAgeFilesLines
* Improved error messagesPiotr Dziwinski2012-08-131-0/+6
| | | | Added some logging and improved error messages displayed to user
* Fixes & testing in CEnginePiotr Dziwinski2012-08-121-0/+3
| | | | | - fixed bugs in settings modes, etc. - some additions and minor refactoring
* Documentation updatePiotr Dziwinski2012-08-111-1/+4
| | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* Render mode setting, refactoringPiotr Dziwinski2012-08-111-1/+1
| | | | | | - finished SetState in CEngine - refactored Size and IntSize back to Point and IntPoint - other minor changes in CEngine
* Partial CEngine implementationPiotr Dziwinski2012-08-101-1/+1
| | | | | - added rewritten implementation for basic modesetting in CEngine - started rewriting proper rendering and object handling in CEngine
* Basic font renderingPiotr Dziwinski2012-08-031-6/+0
| | | | | - added basic font rendering - minor refactoring & fixes
* Video mode changingPiotr Dziwinski2012-07-291-34/+89
| | | | | | - added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
* Change of paths in src/graphicsPiotr Dziwinski2012-07-261-2/+2
| | | | | - moved abstract core to src/graphics/core - moved proper graphics engine to src/graphics/engine
* Texture & mouse functions; refactoring & fixesPiotr Dziwinski2012-07-221-35/+32
| | | | | | | | | | | - 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
* Merged changes from devPiotr Dziwinski2012-07-041-3/+6
| | | | Resolved conflicts & added fixes.
* CGLDevice implementationPiotr Dziwinski2012-07-011-10/+13
| | | | | | | | - extended Gfx::CDevice interface - written OpenGL implementation in Gfx::CGLDevice - rewrote color and light module - added Gfx::VertexCol - added array casts to Math::Vector, Math::Matrix and Gfx::Color
* CDevice interface and stub of implementationPiotr Dziwinski2012-07-011-3/+0
| | | | | | | | - added CDevice abstract interface - began implementation of CGLDevice - added stub for Texture struct - created CGLDeviceConfig - changed particule -> particle & other minor changes
* Joystick polling with timerPiotr Dziwinski2012-06-301-5/+41
| | | | | - added joystick polling through timer - updated documentation on CApplication class
* Event handling, CApplication and switch to c++-11Piotr Dziwinski2012-06-301-30/+50
| | | | | | - 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
* Fixed brief Doxygen descriptionPiotr Dziwinski2012-06-261-1/+2
|
* Whitespace and language changePiotr Dziwinski2012-06-261-87/+87
| | | | | | | - 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-57/+54
| | | | | | | | - 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
* CApplication and Gfx::CEngine interfaces & otherPiotr Dziwinski2012-06-241-1/+130
| | | | | | | | - added CApplication and Gfx::CEngine interfaces - added Gfx::Material struct - added Math::IntPoint struct - added template for Gfx::CDevice class - added templates for Gfx::CGLDevice and Gfx::CGLEngine classes
* Templates for new implementationPiotr Dziwinski2012-06-221-0/+27
- added template of classes/structs for new implementation - changed #include paths - updated README files