summaryrefslogtreecommitdiffstats
path: root/src/object/brain.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Implemented mission timerkrzys-h2014-10-291-0/+2
|
* Changed all occurences of PPC in the code to TerranovaTeamkrzys-h2014-10-141-15/+18
|
* Fixed issue #324krzys-h2014-10-071-2/+14
|
* Fix task stopping checks in CBrainPiotr Dziwinski2014-08-101-123/+38
| | | | | | 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 old code based on #ifs (issue #55)krzys-h2014-06-271-20/+0
|
* Changed char[] to std::string in restextPiotr Dziwinski2013-12-041-5/+7
| | | | Experimental changes
* Some Ui refactoringerihel2013-06-241-4/+2
|
* Fixed code formattingPiotr Dziwinski2013-05-271-1/+2
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Fixed some compilation warningsPiotr Dziwinski2013-05-271-1/+1
| | | | * fixed warnings about hiding virtual functions and several others
* Running program in robots created using object.factory()krzys-h2013-05-191-0/+17
|
* MissionController improvedkrzys-h2013-04-291-5/+9
|
* Fixes programs list sizeXienDev2013-04-251-2/+3
|
* * Removed warning while compiling brain.cpperihel2013-03-301-1/+1
| | | | | * Fix for issue #130 * Fix for issue #128 with wrong sound pitch
* Changes to Scribbler interfacekrzys-h2013-03-271-12/+2
|
* Added button for grab()/drop() for AlienWaspkrzys-h2013-03-271-2/+3
|
* Added interface button for AlienSpider explosionkrzys-h2013-03-261-30/+63
| | | | Issue #142
* In Retro mode, robot's lights always blink.krzys-h2013-03-241-1/+1
|
* Retro mode now disables possibility of writing and running programskrzys-h2013-03-241-12/+14
|
* CInstanceManager refactoringPiotr Dziwiński2013-02-171-43/+40
| | | | | | | | | * 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
* Added Destroyer from Ceebot-Teen.krzys-h2013-02-131-3/+7
| | | | We need a new icon for it.
* * Fixes to ingame editorerihel2013-02-091-1/+1
| | | | * Fixes to editor window. It's now possible to resize, move and press buttons
* Changed model min/max to LOD levelsPiotr Dziwinski2013-01-271-0/+1
|
* Replaced malloc/free with new/deletePiotr Dziwinski2012-12-281-9/+18
| | | | | | - now new/delete used everywhere except for CBotStack, which has to be fixed in other way - some segfaults should be fixed with this
* Doxygen/comment fixes and some #include refactoringPiotr Dziwinski2012-10-171-4/+10
|
* Changing and saving input bindingsPiotr Dziwinski2012-10-071-2/+2
|
* Event fixes & refactoringPiotr Dziwinski2012-09-221-1/+1
| | | | | | - added new state tracking to Event - removed old fields from Event - fixed some issues with Events and fps counter
* Mouse wheel events, motion vectorsPiotr Dziwinski2012-09-191-3/+3
| | | | | | - added mouse wheel events - added motion vectors to CRobotMain - other minor changes in event.h
* Input bindings rewritePiotr Dziwinski2012-09-191-5/+2
| | | | | | - moved input bindings to CRobotMain - added virtual keymod and joystick button key presses - fixed putenv error; other minor fixes
* warnings fight in progress.Zaba9992012-09-181-5/+5
|
* Merge dev-common and various fixes to achieve compilationPiotr Dziwinski2012-09-151-127/+88
|\ | | | | | | | | | | | | | | - merged changes from dev-common - fixed many compilation errors (CBrain, UI, ...) - temporarily commented out some problematic code (e.g. input bindings) - (partially) fixed #include styling - everything compiles except for CRobotMain, CMainDialog and CStudio
* | brain.* mainmovie.* : Partially rewrittenMichał Konopacki2012-09-131-193/+194
| | | | | | | | The remaining part will be revised and rewritten after merge with dev and dev-ui branches
* | Merge with changes from Zaba999 fork.Zaba9992012-09-101-102/+109
|/
* Removed trailing whitespacePiotr Dziwinski2012-06-261-4/+4
|
* Whitespace and language changePiotr Dziwinski2012-06-261-2999/+2999
| | | | | | | - 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-1/+1
| | | | | | | | - 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
* Templates for new implementationPiotr Dziwinski2012-06-221-9/+9
| | | | | | - added template of classes/structs for new implementation - changed #include paths - updated README files
* Refactoring of #includes and forward declarations in object/Piotr Dziwinski2012-06-201-3/+2
|
* Switched to new implementation of the rest of math modulePiotr Dziwinski2012-06-191-9/+10
| | | | | | | | - changed structs from D3DVECTOR to Math::Vector and from D3DMATRIX to Math::Matrix - changed functions to new Math namespace functions - moved mainmovie module from graphics to object - added Get and Set to Math::Matrix
* FPOINT -> Math::Point & other math functionsPiotr Dziwinski2012-06-131-10/+9
| | | | | | | | | - changed FPOINT to Math::Point and some functions from math module to the new implementation - moved old function and FPOINT struct declarations to math3d.cpp - removed some unused functions in math module - fixed some #include dependencies - moved #define STRICT and #define D3D_OVERLOADS to compile options
* Changed #defined constants to consts; typedef struct -> structPiotr Dziwinski2012-06-111-1/+1
|
* BOOL -> bool; additional fixes in constructors/destructorsPiotr Dziwinski2012-06-101-133/+133
|
* Fixed include paths and CMakeLists.txtPiotr Dziwinski2012-06-101-44/+44
| | | | Additionally, changed #ifndef to #pragma once everywhere
* Source files split into modulesPiotr Dziwinski2012-04-281-0/+3000