summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixed auto-detecting locale on WindowsPiotr Dziwinski2013-06-242-20/+29
| | | | | | * localename library is now used to determine the actual locale used * added patched version of FindGettext.cmake to fix installation path of translation files
* gitignore updatePiotr Dziwinski2013-06-222-0/+3
| | | | | * git should now ignore all generated files when building without separate build directory
* Changes in build organizationPiotr Dziwinski2013-06-2223-9040/+19
| | | | | | | | * 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-204-3/+21
| | | | | * 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-179-7/+206
| | | | | | * displaying positions of current lights (F11) * dumping info to console (F10) * added assert() in suspicious place in CPyro
* Added -proto to options[]krzys-h2013-06-171-0/+1
|
* 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-1614-215/+861
| | | | | | | | | * 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
* Fix for #195Piotr Dziwinski2013-06-133-2/+21
| | | | * loading time now is not counted in elapsed time
* Fixed bug with showing wrong filename in Level Checker errors after using ↵krzys-h2013-06-101-2/+2
| | | | CacheAudio
* 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-2714-83/+93
| | | | | * fixed -Wshadow warnings * refactored some constructors
* Fixed some memory issuesPiotr Dziwinski2013-05-272-1/+4
| | | | * invalid pointer, uninitialized buffer
* Refactored sound codePiotr Dziwinski2013-05-2715-526/+847
| | | | | * fixed formatting and naming to be uniform with rest of code * moved default implementation of CSound to cpp module
* Fixed code formattingPiotr Dziwinski2013-05-27231-1255/+1633
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Fixed some compilation warningsPiotr Dziwinski2013-05-2711-38/+56
| | | | * fixed warnings about hiding virtual functions and several others
* Reorganize string parsing in CBotToken::NextToken to fix #212adiblol2013-05-261-4/+2
|
* Changes in texture code & refactoringPiotr Dziwinski2013-05-264-148/+173
| | | | | | * 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-265-4/+19
| | | | | * fixed several uninitialized variable issues * fixed possible memory corruption in CEngine
* Fix for #213Piotr Dziwinski2013-05-261-1/+2
| | | | Was caused by invalid options for getopt
* Resizing is fully functional so it can be enabled by default.adiblol2013-05-251-1/+1
|
* Added object.research(type)krzys-h2013-05-198-137/+250
|
* Translated <erreur> and <sans nom>krzys-h2013-05-191-2/+2
|
* Added progfunc( funcname );krzys-h2013-05-193-0/+41
| | | | | | | | | | | | | | | | For simple creating of programs executing public functions :) Example: public void object::SecondBot() { message("It works!"); } extern void object::FirstBot() { object item = radar(BotFactory); item.factory(WheeledGrabber, progfunc("SecondBot")); }
* Running program in robots created using object.factory()krzys-h2013-05-199-18/+103
|
* Changed "Inappropariate bot"->"Inappropariate object" in newly added functionskrzys-h2013-05-183-3/+5
|
* Change in goto() for Destroyerkrzys-h2013-05-181-10/+0
|
* Fix for build() not being able to build Detroyerkrzys-h2013-05-181-6/+8
|
* Added object.destroy()krzys-h2013-05-188-16/+97
|
* Renamed destroy() -> delete()krzys-h2013-05-182-7/+7
|
* Added object.busy()krzys-h2013-05-184-0/+46
|
* Added object.factory(cat)krzys-h2013-05-188-38/+233
|
* Unicode symbols for special charactersPiotr Dziwinski2013-05-122-22/+131
| | | | * added support for special characters from original text bitmaps
* Backwards combatibility for retobject() (#209)krzys-h2013-05-123-2/+27
|
* Fixed bug with std::bad_alloc when using produce()krzys-h2013-05-121-2/+4
| | | | I'm not sure why it wasn't happening before, but it's fixed :)
* Fix for #192krzys-h2013-05-121-1/+1
|
* Added simple texturepack support (#208)krzys-h2013-05-124-9/+55
|
* Better print fixkrzys-h2013-05-121-1/+2
|
* Non-power-of-2 padding for background imagesPiotr Dziwinski2013-05-118-30/+81
| | | | | * added padding options * removed old hardcoded image sizes
* Corrected printPiotr Dziwinski2013-05-111-1/+1
|
* Added check and warning about non-power-of-2 texturesPiotr Dziwinski2013-05-112-1/+11
|
* Fixed deleting of CObjectManagerPiotr Dziwinski2013-05-111-0/+3
| | | | | * fix in CApplication destructor * re-enabled unit tests
* Added error message for undefined commandkrzys-h2013-05-051-0/+9
|
* Added continue at end of every Cmd() checkkrzys-h2013-05-051-13/+94
| | | | As mentioned in issue #173
* Added Build and Research constantskrzys-h2013-05-051-6/+38
|
* Added [set/get][build/research[done/enable]] ( ); function fo CBotkrzys-h2013-05-053-40/+112
| | | | | | | | | * setbuild ( ); * setresearchdone ( ); * setresearchenable ( ); * getbuild ( ); * getresearchdone ( ); * getresearchenable ( );
* Changed MissionController version requirement 3->2krzys-h2013-05-051-16/+17
| | | | Also, adding it before BeginObject isn't wrong, and now recommended because it disables Audio and EndMissionTake commands
* Fix for saving wrong Fullscreen valuekrzys-h2013-05-041-0/+2
|