summaryrefslogtreecommitdiffstats
path: root/src/object/robotmain.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added cheats "all" & "allbuildings" (#163)krzys-h2013-04-121-0/+22
|
* * Fix for issue #161: function checking for radar didn't check if it's finishederihel2013-04-111-2/+2
|
* * Changed loading of scene and player info (there's problem with locales ↵erihel2013-04-011-7/+33
| | | | | | | using , as comma separator). Issue #137 * Changed way of saving files. Now it's not based on slot (from 000 to 999) but it uses save name as a base. * Changed way of displaying saved games. Listing directory instead of checking from 000 to 999. Issue #138
* Fixed graphics objects after resetPiotr Dziwinski2013-03-311-1/+3
| | | | Should fix #120 and perhaps some other bugs as well
* More parameters to destroy()krzys-h2013-03-311-0/+5
| | | | Also, removed some warnings in script.cpp
* Merge branch 'dev' of github.com:colobot/colobot into devkrzys-h2013-03-311-2/+3
|\
| * * Removed warning while compiling brain.cpperihel2013-03-301-2/+3
| | | | | | | | | | * Fix for issue #130 * Fix for issue #128 with wrong sound pitch
* | Added field "item" to class "object" in CBotkrzys-h2013-03-311-0/+1
|/
* Added SatCom translationskrzys-h2013-03-291-3/+3
|
* Added option to lock SatComkrzys-h2013-03-271-1/+4
|
* Removed "X" buttonkrzys-h2013-03-271-2/+2
|
* Changes to Scribbler interfacekrzys-h2013-03-271-6/+9
|
* Added option "zoom=x;y;z" to CreateObject in mission fileskrzys-h2013-03-251-0/+4
|
* Retro mode now disables possibility of writing and running programskrzys-h2013-03-241-0/+4
|
* Small fix in mission files codekrzys-h2013-03-241-0/+1
|
* * Blocked cheat input in SatCom, intro movie and while editing cbot (issue #130)erihel2013-03-231-0/+3
|
* Basic detection of syntax errors in mission levelskrzys-h2013-03-231-6/+149
| | | | + option to enable Retro mode (for now doesn't do enything)
* * Changed Set/Get HilateCap to Set/Get HighlightCaperihel2013-03-201-1/+1
| | | | | * Changes ReadText in CEdit to fix problem with SatCom links * Filenames when loading/saving scripts should be fixed on mxe
* * Changed file loading to fix issue #73erihel2013-03-171-3/+4
| | | | | | | * Moved few functions from misc.cpp to profile.cpp (used to set/get user dir) * Removed some warnings * More work to change const char* to std::string * Some work on file path to fix issue #60 with bad slashes on POSIX platform
* * Fix for issue #122 with sound not being played in menu after playing missionerihel2013-03-141-4/+5
|
* "allmission" default value depends on build typekrzys-h2013-03-091-0/+4
|
* Fixed segfault in light managerPiotr Dziwinski2013-02-281-2/+7
| | | | Also fixed minor memory leak
* Fixed stupid error, tweaked ambient light colorsPiotr Dziwinski2013-02-281-0/+2
| | | | | | * fixed stupid error in light manager * tweaked ambient light colors to 0.1 of diffuse; colors should not be oversaturated now
* CInstanceManager refactoringPiotr Dziwiński2013-02-171-82/+145
| | | | | | | | | * 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
* Merge branch 'dev' into dev-graphicsPiotr Dziwinski2013-01-041-4/+8
|\
| * Implement language Char for level filesDidier Raboud2012-12-281-4/+4
| | | | | | | | This currently lacks fallback to an existing entry for non-translated entries
| * * Changed log level in sound moduleerihel2012-12-251-0/+4
| | | | | | | | | | * Fixed warnings in sound module * Fixed problem with map loading when locale with different number separator
* | Engine optimization - rewritten model managementPiotr Dziwinski2012-12-261-2/+2
|/ | | | | | | | - new class CModelManager - rewritten engine object structure in CEngine - created shared model data instead of separate objects per each model instance - minor refactoring
* Removed unnecessary dynamic_castsPiotr Dziwinski2012-10-171-18/+16
|
* Merge branch 'dev' of https://github.com/colobot/colobot into devZaba9992012-10-111-119/+137
|\
| * Changing and saving input bindingsPiotr Dziwinski2012-10-071-105/+105
| |
| * Setting speed now works. Added ability to set 4x and 8x using "speed4" and ↵adiblol2012-10-061-5/+23
| | | | | | | | "speed8" cheat codes respectively.
| * Refactoring: changed UNIT to g_unit in CRobotMain classadiblol2012-10-051-9/+9
| |
* | Added saving user scripts on game save. Fixed bug in writing script to file.Zaba9992012-10-111-1/+1
|/
* Fixed invradar cheat code.adiblol2012-09-301-2/+31
| | | | | Replaced CRobotMain::GetCheatRadar with CRobotMain::GetRadar. Changed logger level of "invalid m_motion" messages.
* Texture coloringPiotr Dziwinski2012-09-291-16/+16
|
* Fixed object selection by clickingPiotr Dziwinski2012-09-291-2/+2
|
* Merge branch 'dev' into dev-graphicsPiotr Dziwinski2012-09-291-22/+25
|\
| * Work in progress on opening files, and listing dirsZaba9992012-09-261-22/+25
| | | | | | | | | | Fixed includes profile changed from SimpleIni to boost::ptree -> not finished yet
* | Fixed blinking light problemPiotr Dziwinski2012-09-271-3/+3
| | | | | | | | | | | | - temporarily commented out misbehaving code in CPhysics - some fixes in CLightManager - minor refactoring in CRobotMain
* | Lighting fix (experimental)Piotr Dziwinski2012-09-261-3/+5
|/ | | | | - changed fixed light allocation to prioritized per-use basis - minor refactoring in CPlanet and CWater
* Various fixesPiotr Dziwinski2012-09-221-20/+23
| | | | | | | | - disabled UserDir() in path lookup - fixed crashes on loading missions in CObject - fixed texture bug in CTerrain - changed mouse move event handling to avoid flooding event queue - enabled all missions for testing
* Data dir pathsPiotr Dziwinski2012-09-221-13/+13
| | | | | - changed access to paths in data directory in CApplication - models now load from data directory
* Event fixes & refactoringPiotr Dziwinski2012-09-221-5/+5
| | | | | | - added new state tracking to Event - removed old fields from Event - fixed some issues with Events and fps counter
* robotmain, restext and engine fixesPiotr Dziwinski2012-09-211-0/+5
|
* Mouse pos setting, low cpu mode, stats displayPiotr Dziwinski2012-09-201-14/+23
|
* Mouse wheel events, motion vectorsPiotr Dziwinski2012-09-191-4/+104
| | | | | | - added mouse wheel events - added motion vectors to CRobotMain - other minor changes in event.h
* Input bindings rewritePiotr Dziwinski2012-09-191-54/+106
| | | | | | - moved input bindings to CRobotMain - added virtual keymod and joystick button key presses - fixed putenv error; other minor fixes
* Warnings cleaned, left only those connected to commented out code.Zaba9992012-09-181-1/+1
|
* warnings fight in progress.Zaba9992012-09-181-51/+49
|