summaryrefslogtreecommitdiffstats
path: root/src/app/app.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Joystick polling with timerPiotr Dziwinski2012-06-301-9/+97
| | | | | - added joystick polling through timer - updated documentation on CApplication class
* Switched back to old standard; addded -WallPiotr Dziwinski2012-06-301-26/+31
| | | | | - removed -std=c++11 - added -Wall and removed most reported warnings
* Event handling, CApplication and switch to c++-11Piotr Dziwinski2012-06-301-133/+199
| | | | | | - 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
* Removed trailing whitespacePiotr Dziwinski2012-06-261-1/+1
|
* Fixed brief Doxygen descriptionPiotr Dziwinski2012-06-261-1/+2
|
* Whitespace and language changePiotr Dziwinski2012-06-261-301/+301
| | | | | | | - 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/+503
| | | | | | | | - 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
* Templates for new implementationPiotr Dziwinski2012-06-221-0/+23
- added template of classes/structs for new implementation - changed #include paths - updated README files