summaryrefslogtreecommitdiffstats
path: root/src/graphics/engine/engine.h
Commit message (Collapse)AuthorAgeFilesLines
* CPauseManagerkrzys-h2013-12-311-7/+3
|
* Added debug aids for lightingPiotr Dziwinski2013-06-171-0/+3
| | | | | | * displaying positions of current lights (F11) * dumping info to console (F10) * added assert() in suspicious place in CPyro
* Fix for #133Piotr Dziwinski2013-06-171-1/+4
| | | | | * objects are now copied and textures are updated correctly * also added function to debug objects
* Fixed variable shadowing warningsPiotr Dziwinski2013-05-271-20/+27
| | | | | * fixed -Wshadow warnings * refactored some constructors
* Fixed code formattingPiotr Dziwinski2013-05-271-0/+1
| | | | | | * moved braces to new lines * fixed some function/variable names * fixed whitespace issues
* Changes in texture code & refactoringPiotr Dziwinski2013-05-261-7/+4
| | | | | | * refactored and altered slightly the texture pack code * added flushing of texture cache * some refactoring and const-correctness in CApplication methods
* Added simple texturepack support (#208)krzys-h2013-05-121-1/+8
|
* Non-power-of-2 padding for background imagesPiotr Dziwinski2013-05-111-3/+2
| | | | | * added padding options * removed old hardcoded image sizes
* Some code refactoringerihel2013-04-271-1/+1
| | | | Changed vehicule (french) to vehicle (english) in enums and variables
* Better light sortingPiotr Dziwinski2013-02-251-3/+3
| | | | Should fix lighting issue (#62)
* CInstanceManager refactoringPiotr DziwiƄski2013-02-171-10/+21
| | | | | | | | | * 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
* Changed model min/max to LOD levelsPiotr Dziwinski2013-01-271-25/+16
|
* Fixed spider and worm model loadingPiotr Dziwinski2012-12-281-3/+3
|
* Fixes and refactoringPiotr Dziwinski2012-12-271-21/+25
|
* Engine optimization - rewritten model managementPiotr Dziwinski2012-12-261-160/+181
| | | | | | | | - new class CModelManager - rewritten engine object structure in CEngine - created shared model data instead of separate objects per each model instance - minor refactoring
* Static objects using OpenGL VBOs and display listsPiotr Dziwinski2012-12-141-1/+17
|
* ComputeSphereVisibility and fixes in CEngine TODOsPiotr Dziwinski2012-10-201-6/+0
| | | | | | | - view frustum culling with ComputeSphereVisibility - game should run faster now - resolved/removed most TODOs from CEngine - fixed OpenGL tests
* CParticle rewritePiotr Dziwinski2012-10-051-3/+0
|
* Map texture paintingPiotr Dziwinski2012-09-301-1/+5
|
* Texture coloringPiotr Dziwinski2012-09-291-5/+13
|
* Fix for transparent objects and fadeoutsPiotr Dziwinski2012-09-291-2/+0
|
* Some fixes and optimizationsPiotr Dziwinski2012-09-291-0/+2
| | | | | | | | - fixed 2nd texture setting - added padding to some structs for faster access - changed rendering primitives to glDrawArrays() - optimized texture modesetting calls - fixed some valgrind errors
* Completely fixed light issuesPiotr Dziwinski2012-09-271-0/+3
| | | | Directional and spot lights are now set properly
* Updated docs and some Doxygen fixesPiotr Dziwinski2012-09-271-3/+3
|
* Data dir pathsPiotr Dziwinski2012-09-221-5/+0
| | | | | - changed access to paths in data directory in CApplication - models now load from data directory
* Mouse pos setting, low cpu mode, stats displayPiotr Dziwinski2012-09-201-58/+49
|
* Namespace and styling fixPiotr Dziwinski2012-09-191-141/+162
|
* Change of background image handlingPiotr Dziwinski2012-09-171-8/+4
| | | | | | - removed old 4 quarter backgrounds - fixes in texture loading - other minor fixes
* Simulation timestamps and input bindingsPiotr Dziwinski2012-09-121-8/+1
| | | | | | - added new simulation time calculations in CApplication - added simulation frame updates - rewritten old input binding code and input state tracking
* FixPiotr Dziwinski2012-09-031-4/+3
|
* Rendering functions, documentationPiotr Dziwinski2012-08-131-18/+89
| | | | | - rewrote the render functions for CEngine, CCloud and CWater - added documentation
* Object handling in CEnginePiotr Dziwinski2012-08-121-149/+249
| | | | | | - finished rewriting CEngine object, shadow, etc. handling - refactored texture code - added new log levels
* Fixes & testing in CEnginePiotr Dziwinski2012-08-121-9/+26
| | | | | - fixed bugs in settings modes, etc. - some additions and minor refactoring
* Documentation updatePiotr Dziwinski2012-08-111-1/+4
| | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* Render mode setting, refactoringPiotr Dziwinski2012-08-111-51/+63
| | | | | | - finished SetState in CEngine - refactored Size and IntSize back to Point and IntPoint - other minor changes in CEngine
* Partial CEngine implementationPiotr Dziwinski2012-08-101-160/+317
| | | | | - added rewritten implementation for basic modesetting in CEngine - started rewriting proper rendering and object handling in CEngine
* Graphics stubsPiotr Dziwinski2012-08-091-5/+17
| | | | | | | - added stubs for functions in CLightning, CParticle and CPyro - cleaned object.h and physics.h headers - created temporary stubs to compile CCamera - other necessary changes to compile successfully
* CTerrain implementationPiotr Dziwinski2012-08-081-1/+2
| | | | | | Added rewritten CTerrain implementation Compiles OK, but functions are missing from other classes Also needs testing
* Font renderingPiotr Dziwinski2012-08-061-3/+5
| | | | - implemented rest of CText interface excluding some minor features
* Basic font renderingPiotr Dziwinski2012-08-031-11/+20
| | | | | - added basic font rendering - minor refactoring & fixes
* Video mode changingPiotr Dziwinski2012-07-291-2/+19
| | | | | | - added video mode querying & changing - added joystick querying & changing - cleaned up CApplication interface
* Change of paths in src/graphicsPiotr Dziwinski2012-07-261-0/+985
- moved abstract core to src/graphics/core - moved proper graphics engine to src/graphics/engine