summaryrefslogtreecommitdiffstats
path: root/src/graphics
Commit message (Collapse)AuthorAgeFilesLines
* GetStringWidth fixandreymal2014-03-021-2/+2
|
* CPauseManagerkrzys-h2013-12-312-15/+8
|
* Revert back "Merge pull request #243 from OdyX/dev-fix-textures-loading"Piotr Dziwinski2013-10-292-3/+7
| | | | | False alarm, was caused probably by faulty build bot. This definately should work on all platforms.
* Revert "Merge pull request #243 from OdyX/dev-fix-textures-loading"Piotr Dziwinski2013-10-282-7/+3
| | | | Looks like it doesn't work on all platforms
* Let mouse.png's format be detectedDidier Raboud2013-10-281-1/+1
| | | | Fixes the mouse cursor on Mac OS X
* Fix the detection of alpha-channel in textures as created by IMG_LoadDidier 'OdyX' Raboud2013-10-281-2/+6
| | | | This fixes the textures loading under Mac OS X
* Fixed CTerrain-related memory leaksPiotr Dziwinski2013-10-133-2/+45
|
* Fixed memory leaks in CTextPiotr Dziwinski2013-10-121-5/+18
|
* Fixed some CBot-related memory leaksPiotr Dziwinski2013-10-122-14/+14
| | | | | | * fixed leaks in CScript::CheckToken() * fixed leaks in CInterface * commented out unused function in robotmain.cpp
* Fix for #228Piotr Dziwinski2013-06-261-9/+15
| | | | * "empty" objects were wrongly handled in CPyro
* Some Ui refactoringerihel2013-06-242-10/+2
|
* Changes in build organizationPiotr Dziwinski2013-06-223-292/+1
| | | | | | | | * targets are now created in top-level build directory * more things are now configured through CMake options * changed debug build detection from NDEBUG to DEV_BUILD * moved po and desktop directories * moved last unit test out of src directory
* Reverted enum values to fix UT regressionPiotr Dziwinski2013-06-221-3/+3
|
* Fixed terrain light priorities (fix for #139)Piotr Dziwinski2013-06-203-3/+18
| | | | | * lights illuminating the terrain specified in scene file are now always moved to front of light ordering
* Fixed string formats in light debug printsPiotr Dziwinski2013-06-171-5/+5
|
* Added debug aids for lightingPiotr Dziwinski2013-06-178-3/+202
| | | | | | * displaying positions of current lights (F11) * dumping info to console (F10) * added assert() in suspicious place in CPyro
* Fix for #133Piotr Dziwinski2013-06-173-8/+106
| | | | | * objects are now copied and textures are updated correctly * also added function to debug objects
* Enhanced logging, option to auto-start missionPiotr Dziwinski2013-06-163-34/+52
| | | | | | | | | * 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 bug with white mapkrzys-h2013-06-101-1/+1
| | | | | I'm not sure when it was introduced, probably in 8f6fd2a1316432970f1d86515819e7bbe15ddab3. It was showing errors like "Couldn't load texture 'map.png'" and "Invalid texture data"
* Fixed variable shadowing warningsPiotr Dziwinski2013-05-276-35/+46
| | | | | * fixed -Wshadow warnings * refactored some constructors
* Refactored sound codePiotr Dziwinski2013-05-271-0/+2
| | | | | * fixed formatting and naming to be uniform with rest of code * moved default implementation of CSound to cpp module
* Fixed code formattingPiotr Dziwinski2013-05-2742-3/+44
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Changes in texture code & refactoringPiotr Dziwinski2013-05-262-49/+47
| | | | | | * refactored and altered slightly the texture pack code * added flushing of texture cache * some refactoring and const-correctness in CApplication methods
* Corrected some valgrind issuesPiotr Dziwinski2013-05-263-3/+15
| | | | | * fixed several uninitialized variable issues * fixed possible memory corruption in CEngine
* Resizing is fully functional so it can be enabled by default.adiblol2013-05-251-1/+1
|
* Unicode symbols for special charactersPiotr Dziwinski2013-05-122-22/+131
| | | | * added support for special characters from original text bitmaps
* Added simple texturepack support (#208)krzys-h2013-05-122-7/+37
|
* Non-power-of-2 padding for background imagesPiotr Dziwinski2013-05-114-18/+38
| | | | | * added padding options * removed old hardcoded image sizes
* Added check and warning about non-power-of-2 texturesPiotr Dziwinski2013-05-111-1/+5
|
* Fixed problem with test compilationerihel2013-04-291-1/+1
| | | | | | Altered test cmake files to fix linker problem. Changed tga to png in pyro. Changed enum in CMotionDummy.
* Merge branch 'fix-for-shadows' of https://github.com/xiendev/colobot into ↵erihel2013-04-291-1/+1
|\ | | | | | | xiendev-fix-for-shadows
| * Fix for shadows (bugs #176 and #132)XienDev2013-04-291-1/+1
| |
* | Some code refactoringerihel2013-04-271-1/+1
|/ | | | Changed vehicule (french) to vehicle (english) in enums and variables
* Improved log levelskrzys-h2013-04-011-1/+1
|
* Fixed graphics objects after resetPiotr Dziwinski2013-03-313-0/+37
| | | | Should fix #120 and perhaps some other bugs as well
* Fixed timer functions on win32Piotr Dziwinski2013-03-241-9/+9
| | | | | | | * 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-223-4/+4
| | | | | | * fixed SDL_main() and putenv() issues * disabled desktop subdir for MSYS * disabled building CBot_console for now
* VBO override option; argv parsing using getoptPiotr Dziwinski2013-03-102-4/+35
| | | | | | * added -vbo option to override autodetection of OpenGL VBO extension * refactored argument parsing to use getopt() * fixed failing UTs
* Fixed segfault in light managerPiotr Dziwinski2013-02-281-2/+3
| | | | Also fixed minor memory leak
* Fixed stupid error, tweaked ambient light colorsPiotr Dziwinski2013-02-283-16/+25
| | | | | | * fixed stupid error in light manager * tweaked ambient light colors to 0.1 of diffuse; colors should not be oversaturated now
* Better light sortingPiotr Dziwinski2013-02-253-48/+58
| | | | Should fix lighting issue (#62)
* * Fix for satcom freezeerihel2013-02-242-15/+28
|
* CInstanceManager refactoringPiotr Dziwiński2013-02-1724-182/+197
| | | | | | | | | * 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
* Additional parameter for function aim(x, y)PaweX2013-02-131-2/+2
|
* More camera distance from AlienQueenadiblol2013-02-111-0/+1
|
* * Syntax highlighting in cbot editor (needs to be tested)erihel2013-02-092-17/+18
|
* * Fixes to ingame editorerihel2013-02-091-3/+5
| | | | * Fixes to editor window. It's now possible to resize, move and press buttons
* Refactoring in tests infrastructurePiotr Dziwinski2013-02-038-1469/+0
| | | | | | | * all tests are now in /test/ subdirectory * unit tests concatenated to one executable (TODO: ui, common) * preparation for test environments (OpenGL and others) * removed old TestCBot
* Changed model min/max to LOD levelsPiotr Dziwinski2013-01-279-289/+226
|
* CMakeLists enhancementsPiotr Dziwinski2013-01-081-2/+2
| | | | | | | - compiler detection (clang and gcc version check) - compile flags only for src/ subdir - system and local include paths - fix for clang compilation