summaryrefslogtreecommitdiffstats
path: root/src/app/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Big part of PhysFS supportKrzysztof Dermont2014-06-201-0/+3
| | | | | | | | | | | * removed -mod argument * removed -datadir argument * removed -lang argument * removed some dead ui code * added resource manager and file loaders (stream and SDL) * changed interface textures location to match new directory structure * removed CGameData for mod support * added PhysFS support
* Revert "Include SDL.h in main.cpp to make sure the main loop is SDL's main loop"Didier 'OdyX' Raboud2013-10-291-1/+0
| | | | | | This was the wrong fix for the problem. This reverts commit f31a570d96e1a0ee28baecefa18b7e8c586c201c.
* Include SDL.h in main.cpp to make sure the main loop is SDL's main loopDidier 'OdyX' Raboud2013-10-261-0/+1
| | | | This allows the MacOSX program to start.
* Enhanced logging, option to auto-start missionPiotr Dziwinski2013-06-161-1/+3
| | | | | | | | | * added logging of application events * changed debug mode flag to independent debug modes * added option to auto-start mission (load a mission immediately after startup) * removed "enum value out of range" prints * some refactoring
* Fixed code formattingPiotr Dziwinski2013-05-271-0/+1
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Fixed timer functions on win32Piotr Dziwinski2013-03-241-13/+19
| | | | | | | * changed win32 implementation to QueryPerformaceTimer system function * refactored system utils code * proper tests for time utils and update event creation in application * should fix issue #134
* Fixes for compiling on MSYSPiotr Dziwinski2013-03-221-1/+6
| | | | | | * fixed SDL_main() and putenv() issues * disabled desktop subdir for MSYS * disabled building CBot_console for now
* Restext rewrite to runtime initialized arraysPiotr Dziwinski2012-10-171-0/+2
|
* Doxygen/comment fixes and some #include refactoringPiotr Dziwinski2012-10-171-0/+1
|
* Removed metafile editor and loaderPiotr Dziwinski2012-09-221-1/+0
|
* Change of background image handlingPiotr Dziwinski2012-09-171-1/+6
| | | | | | - removed old 4 quarter backgrounds - fixes in texture loading - other minor fixes
* Improved error messagesPiotr Dziwinski2012-08-131-1/+5
| | | | Added some logging and improved error messages displayed to user
* Documentation updatePiotr Dziwinski2012-08-111-1/+4
| | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* Updated Doxygen main pagePiotr Dziwinski2012-07-271-8/+14
|
* Texture & mouse functions; refactoring & fixesPiotr Dziwinski2012-07-221-2/+2
| | | | | | | | | | | - 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
* Minor changesPiotr Dziwinski2012-07-111-0/+36
| | | | | | - 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
* Merged changes from devPiotr Dziwinski2012-07-041-2/+15
| | | | Resolved conflicts & added fixes.
* CGLDevice implementationPiotr Dziwinski2012-07-011-1/+4
| | | | | | | | - 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
* Whitespace and language changePiotr Dziwinski2012-06-261-9/+9
| | | | | | | - 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-0/+41
- 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