Changeset 9357 in orxonox.OLD for branches/proxy/src/lib/graphics
- Timestamp:
- Jul 20, 2006, 2:33:37 PM (18 years ago)
- Location:
- branches/proxy/src/lib/graphics
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/graphics/effects/atmospheric_engine.cc
r8495 r9357 25 25 26 26 27 using namespace std; 27 28 28 29 29 /** -
branches/proxy/src/lib/graphics/effects/cloud_effect.cc
r9235 r9357 40 40 float CloudEffect::fadeTime; 41 41 42 using namespace std; 42 43 43 44 44 SHELL_COMMAND(activate, CloudEffect, activateCloud); -
branches/proxy/src/lib/graphics/effects/fog_effect.cc
r9235 r9357 28 28 SHELL_COMMAND(fadeout, FogEffect, fadeOutFog); 29 29 30 using namespace std; 30 31 31 32 32 CREATE_SCRIPTABLE_CLASS(FogEffect, CL_FOG_EFFECT, -
branches/proxy/src/lib/graphics/effects/graphics_effect.cc
r8495 r9357 23 23 24 24 25 using namespace std; 25 26 26 27 27 -
branches/proxy/src/lib/graphics/effects/lense_flare.cc
r9006 r9357 34 34 35 35 36 using namespace std; 36 37 37 38 38 -
branches/proxy/src/lib/graphics/effects/lightning_effect.cc
r9354 r9357 34 34 SHELL_COMMAND(deactivate, LightningEffect, deactivateLightning); 35 35 36 using namespace std; 36 37 37 38 38 CREATE_SCRIPTABLE_CLASS(LightningEffect, CL_LIGHTNING_EFFECT, -
branches/proxy/src/lib/graphics/effects/rain_effect.cc
r9235 r9357 39 39 SHELL_COMMAND(stopraining, RainEffect, stopRaining); 40 40 41 using namespace std; 41 42 42 43 43 CREATE_SCRIPTABLE_CLASS(RainEffect, CL_RAIN_EFFECT, -
branches/proxy/src/lib/graphics/effects/sun_effect.cc
r8793 r9357 21 21 22 22 23 using namespace std; 23 24 24 25 25 -
branches/proxy/src/lib/graphics/effects/volfog_effect.cc
r9006 r9357 47 47 48 48 49 using namespace std; 49 50 50 51 51 CREATE_FACTORY(VolFogEffect, CL_VOLFOG_EFFECT); -
branches/proxy/src/lib/graphics/effects/weather_effect.cc
r8495 r9357 21 21 22 22 23 using namespace std; 23 24 24 25 25 -
branches/proxy/src/lib/graphics/importer/bsp_file.cc
r9025 r9357 40 40 #include <vector> 41 41 42 using namespace std; 42 43 43 44 44 … … 96 96 if (stat( name , &results) == 0) { 97 97 PRINTF(0)("BSP FILE: Datei %s gefunden. \n", name); 98 ifstream bspFile (name, ios::in |ios::binary);98 std::ifstream bspFile (name, std::ios::in | std::ios::binary); 99 99 bspFile.read(this->header, 260); 100 100 PRINTF(0)("BSP FILE: BSPVersion: %i. \n", ((int *)(header) )[1]); -
branches/proxy/src/lib/graphics/importer/grid.cc
r6467 r9357 18 18 #include "grid.h" 19 19 20 using namespace std; 20 21 21 22 22 -
branches/proxy/src/lib/graphics/importer/interactive_model.cc
r8490 r9357 20 20 #include "glincl.h" 21 21 22 using namespace std; 22 23 23 24 24 /** -
branches/proxy/src/lib/graphics/importer/md2/md2Model.cc
r9235 r9357 22 22 23 23 24 using namespace std; 24 25 25 26 26 //! the model anorms -
branches/proxy/src/lib/graphics/importer/md3/md3_animation_cfg.cc
r9347 r9357 26 26 27 27 28 using namespace std; 28 29 29 30 30 namespace md3 -
branches/proxy/src/lib/graphics/importer/model.cc
r8316 r9357 20 20 #include "glincl.h" 21 21 22 using namespace std; 22 23 23 24 24 /** -
branches/proxy/src/lib/graphics/importer/primitive_model.cc
r9110 r9357 21 21 #include "debug.h" 22 22 23 using namespace std; 23 24 24 25 25 /** -
branches/proxy/src/lib/graphics/importer/static_model.cc
r8362 r9357 23 23 #include <stdarg.h> 24 24 25 using namespace std; 25 26 26 27 27 … … 178 178 179 179 //! @todo do we really have to delete this material?? 180 list<ModelMaterial*>::iterator modMat;180 std::list<ModelMaterial*>::iterator modMat; 181 181 for(modMat = this->materialList.begin(); modMat != this->materialList.end(); modMat++) 182 182 { … … 358 358 Material* StaticModel::findMaterialByName(const std::string& materialName) 359 359 { 360 list<ModelMaterial*>::iterator modMat;360 std::list<ModelMaterial*>::iterator modMat; 361 361 for (modMat = this->materialList.begin(); modMat != this->materialList.end(); modMat++) 362 362 if (materialName == (*modMat)->material->getName()) -
branches/proxy/src/lib/graphics/importer/vertex_array_model.cc
r8362 r9357 23 23 #include "tc.h" 24 24 25 using namespace std; 25 26 26 27 27 ///////////// -
branches/proxy/src/lib/graphics/render2D/image_plane.cc
r7843 r9357 25 25 26 26 27 using namespace std; 27 28 28 29 29 -
branches/proxy/src/lib/graphics/render2D/render_2d.cc
r7840 r9357 22 22 #include "element_2d.h" 23 23 24 using namespace std; 24 25 25 26 26 /** -
branches/proxy/src/lib/graphics/shader.cc
r8316 r9357 32 32 #endif 33 33 34 using namespace std; 34 35 35 36 36 -
branches/proxy/src/lib/graphics/spatial_separation/quadtree.cc
r9110 r9357 24 24 #include "debug.h" 25 25 26 using namespace std; 26 27 27 #define QUADTREE_MATERIAL_COUNT 4 28 28 -
branches/proxy/src/lib/graphics/spatial_separation/quadtree_node.cc
r9110 r9357 26 26 #include "util/list.h" 27 27 28 using namespace std; 28 29 29 30 30 -
branches/proxy/src/lib/graphics/spatial_separation/spatial_separation.cc
r6022 r9357 23 23 #include "compiler.h" 24 24 25 using namespace std; 25 26 26 27 27 -
branches/proxy/src/lib/graphics/text_engine/text_engine.cc
r8761 r9357 26 26 #include "font.h" 27 27 28 using namespace std; 28 29 29 30 30 #include <stdlib.h> … … 122 122 void TextEngine::debug() const 123 123 { 124 const list<BaseObject*>* textList = ClassList::getList(CL_TEXT);124 const std::list<BaseObject*>* textList = ClassList::getList(CL_TEXT); 125 125 if (textList != NULL) 126 126 { … … 130 130 PRINT(0)("Reference: %p; Text Counts: %d\n", this, textList->size()); 131 131 132 list<BaseObject*>::const_iterator text;132 std::list<BaseObject*>::const_iterator text; 133 133 for ( text = textList->begin(); text != textList->end(); text++) 134 134 dynamic_cast<Text*>(*text)->debug();
Note: See TracChangeset
for help on using the changeset viewer.