summaryrefslogtreecommitdiffstats
path: root/src/object
Commit message (Collapse)AuthorAgeFilesLines
* #335, #348, #352krzys-h2014-11-011-2/+7
| | | | | I don't know what I'm doing anymore :/ I should set up dev envrioment on Windows so I don't have to commit every time I want somebody on Windows to test if my changes work
* Fallback to English files if translated ones are not availablekrzys-h2014-10-311-3/+13
|
* Fixed m_exitAfterMissionkrzys-h2014-10-311-4/+10
|
* Fixed #335 and #348krzys-h2014-10-311-1/+3
|
* -runscene for userlevelskrzys-h2014-10-311-0/+1
| | | | | You need to know which ID is assigned to te userlevel category (by order in "User" menu) -runscene custom101 = first userlevel from first chapter
* Increased mission end accuracykrzys-h2014-10-301-1/+1
| | | | It whould now detect mission end immediately. We need somebody with an older computer than mine to make sure it doesn't cause FPS drop.
* Implemented mission timerkrzys-h2014-10-293-8/+67
|
* Fixed position updatingkrzys-h2014-10-291-2/+5
|
* Showing coordinates in stats menu (F12/showstat); removed "showpos" cheatkrzys-h2014-10-292-17/+4
| | | | | | | | | Issue #277 Conflicts: src/object/cheat.cpp src/object/robotmain.cpp src/object/robotmain.h
* Fixed script saving (issue #348)krzys-h2014-10-271-3/+9
|
* Support for %lvl% in TerrainInitTextures + cleanupkrzys-h2014-10-271-12/+1
| | | | | | | | cleanup: * Removed CProfile::SetUserPath (unused) * Removed CProfile::GetUserBasedPath (unused) * Removed CProfile::CopyFileToTemp (i have no idea why it even existed) * Removed CopyFileListToTemp (it did the same as CopyFileToTemp but for multiple files, wasn't even fully implemented)
* Support for %lvl% in all commandskrzys-h2014-10-262-19/+38
| | | | Except for TerrainInitTextures (I'm not sure what it does but it does something weird)
* Fixed NewScript (#341)krzys-h2014-10-251-3/+1
|
* Fixed #340krzys-h2014-10-252-0/+8
|
* Fixed #341krzys-h2014-10-251-2/+2
|
* Fixed map turning gray after resizing windowkrzys-h2014-10-202-0/+16
|
* Fixed save directories in things not yet refactored to use PHYSFSkrzys-h2014-10-202-2/+9
|
* Possibly fixed goto() by changing safety marginkrzys-h2014-10-201-3/+8
| | | | | | TODO: More testing Closes #326
* Merge branch 'dev-physfs' into devkrzys-h2014-10-1911-749/+2280
|\ | | | | | | | | Conflicts: src/app/app.cpp
| * Updated some more license headerskrzys-h2014-10-158-120/+144
| |
| * Merge branch 'dev' into dev-physfskrzys-h2014-10-14124-1910/+2232
| |\ | | | | | | | | | | | | Conflicts: data
| * | GCC 4.6 compilation fixesPiotr Dziwinski2014-10-071-1/+4
| | |
| * | Merge with devPiotr Dziwinski2014-10-074-350/+84
| |\ \
| * | | Added %chap% for current chapter directorykrzys-h2014-09-292-1/+3
| | | |
| * | | Replaced std::to_string with boost::lexical_cast<std::string>krzys-h2014-09-284-13/+16
| | | | | | | | | | | | | | | | MXE has problems with std::to_string
| * | | Made proxyDistance optionalkrzys-h2014-09-271-2/+1
| | | |
| * | | Moved effect??.png textures and made pos= in GroundSpot optionalkrzys-h2014-09-271-3/+3
| | | |
| * | | Fixed TerrainLevel bugkrzys-h2014-09-271-0/+1
| | | |
| * | | Removed more unused variableskrzys-h2014-09-272-20/+0
| | | |
| * | | Fixed some warningskrzys-h2014-09-271-7/+7
| | | | | | | | | | | | | | | | Removed unused variables and fixed signed/unsigned comparation warnings
| * | | Userlevel listingkrzys-h2014-09-265-26/+41
| | | |
| * | | New level parserkrzys-h2014-09-249-708/+2173
| | | | | | | | | | | | | | | | | | | | | | | | Known issues: * TerrainLevel for some reason doesn't work * %lvl% is not yet implemented everywhere because of hardcoded directories in functions
| * | | Fixed SatCom image loadingkrzys-h2014-07-242-18/+18
| | | | | | | | | | | | | | | | Now LoadTexture/SetTexture functions require full path with "textures/" directory
| * | | Help file loadingkrzys-h2014-07-112-10/+49
| | | |
| * | | Merge branch 'dev' into dev-physfskrzys-h2014-07-115-117/+0
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: data src/app/gamedata.cpp src/ui/control.cpp src/ui/edit.cpp src/ui/maindialog.cpp
| * | | | Fixed texture and script loadingkrzys-h2014-07-101-7/+8
| | | | |
| * | | | More work on levelsKrzysztof Dermont2014-06-221-4/+9
| | | | |
| * | | | Big part of PhysFS supportKrzysztof Dermont2014-06-201-13/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* | | | | Changed max and default font sizekrzys-h2014-10-191-1/+1
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Min font size is 9, max is now 24 (previously 21) Default size is now 19 (previously 9) Closes #330
* | | | Changed all occurences of PPC in the code to TerranovaTeamkrzys-h2014-10-14124-1910/+2232
| |_|/ |/| |
* | | Fixed issue #324krzys-h2014-10-072-2/+15
| | |
* | | CProfile refactoringPiotr Dziwinski2014-08-121-32/+32
| | |
* | | Fix task stopping checks in CBrainPiotr Dziwinski2014-08-102-124/+39
| | | | | | | | | | | | | | | | | | This possibly fixes some issues resulting from improperly stopping tasks (CTask::Abort() not called before deleting the task). Found while looking for instances of #318.
* | | Removed some unused codekrzys-h2014-08-062-194/+0
| |/ |/|
* | Removed some old stuff related to Ceebot-Teenkrzys-h2014-07-101-1/+0
| |
* | Removed some unused code related to Quit buttonkrzys-h2014-07-101-40/+0
| | | | | | | | The button itself has been removed a long time ago
* | Removed old code based on #ifs (issue #55)krzys-h2014-06-274-76/+0
|/
* Better datadir mod supportkrzys-h2014-05-181-5/+6
|
* Random relief generatorkrzys-h2014-04-101-0/+6
|
* Fixes #295Oleg Kosmakov2014-03-212-2/+24
| | | | When cannon cannot turn at specified angle, it will still reach the edge angle, but return the error code