| [4597] | 1 | /* | 
|---|
| [1853] | 2 |    orxonox - the future of 3D-vertical-scrollers | 
|---|
 | 3 |  | 
|---|
 | 4 |    Copyright (C) 2004 orx | 
|---|
 | 5 |  | 
|---|
 | 6 |    This program is free software; you can redistribute it and/or modify | 
|---|
 | 7 |    it under the terms of the GNU General Public License as published by | 
|---|
 | 8 |    the Free Software Foundation; either version 2, or (at your option) | 
|---|
 | 9 |    any later version. | 
|---|
| [1855] | 10 |  | 
|---|
 | 11 |    ### File Specific: | 
|---|
| [3565] | 12 |    main-programmer: Benjamin Grauer | 
|---|
| [1855] | 13 |    co-programmer: ... | 
|---|
| [1853] | 14 | */ | 
|---|
| [5357] | 15 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY | 
|---|
| [1853] | 16 |  | 
|---|
 | 17 |  | 
|---|
| [3559] | 18 | #include "terrain.h" | 
|---|
| [4607] | 19 |  | 
|---|
| [7193] | 20 | #include "util/loading/load_param.h" | 
|---|
 | 21 | #include "util/loading/factory.h" | 
|---|
| [4842] | 22 | #include "spatial_separation.h" | 
|---|
 | 23 |  | 
|---|
| [7193] | 24 | #include "util/loading/resource_manager.h" | 
|---|
| [5511] | 25 | #include "model.h" | 
|---|
| [6341] | 26 | #include "network_game_manager.h" | 
|---|
| [5465] | 27 |  | 
|---|
| [6956] | 28 | #include "height_map.h" | 
|---|
 | 29 | #include "material.h" | 
|---|
| [6341] | 30 |  | 
|---|
| [5511] | 31 | #include "glincl.h" | 
|---|
 | 32 |  | 
|---|
| [6956] | 33 | #include "state.h" | 
|---|
 | 34 |  | 
|---|
| [1856] | 35 | using namespace std; | 
|---|
| [1853] | 36 |  | 
|---|
| [5750] | 37 | CREATE_FACTORY(Terrain, CL_TERRAIN); | 
|---|
| [1856] | 38 |  | 
|---|
| [3245] | 39 | /** | 
|---|
| [4836] | 40 |  *  standard constructor | 
|---|
| [5357] | 41 |  */ | 
|---|
| [4607] | 42 | Terrain::Terrain (const TiXmlElement* root) | 
|---|
| [3365] | 43 | { | 
|---|
| [3564] | 44 |   this->init(); | 
|---|
| [7055] | 45 |  | 
|---|
 | 46 |  | 
|---|
| [6695] | 47 |   if( root != NULL) | 
|---|
 | 48 |     this->loadParams(root); | 
|---|
| [4844] | 49 |  | 
|---|
| [5308] | 50 | //  if (this->model != NULL) | 
|---|
| [6022] | 51 |     //this->ssp = new SpatialSeparation((Model*)this->model, 10.0f); | 
|---|
| [3365] | 52 | } | 
|---|
| [1853] | 53 |  | 
|---|
| [4855] | 54 |  | 
|---|
| [3564] | 55 | /** | 
|---|
| [4836] | 56 |  *  Constructor for loading a Terrain out of a file | 
|---|
 | 57 |  * @param fileName The file to load data from. | 
|---|
| [4597] | 58 |  | 
|---|
| [3566] | 59 |    this either loads out of an OBJ-file, or loads a heightmap if no .obj-extension is found. | 
|---|
 | 60 | */ | 
|---|
| [4597] | 61 | Terrain::Terrain(const char* fileName) | 
|---|
| [3566] | 62 | { | 
|---|
 | 63 |   this->init(); | 
|---|
 | 64 |  | 
|---|
| [5415] | 65 |   if (!strstr(fileName, ".obj") || !strstr(fileName, ".OBJ") ) | 
|---|
| [3566] | 66 |     { | 
|---|
| [5308] | 67 |       this->loadModel(fileName); | 
|---|
| [3566] | 68 |     } | 
|---|
 | 69 |   else | 
|---|
 | 70 |     { | 
|---|
 | 71 |       // load the hightMap here. | 
|---|
 | 72 |     } | 
|---|
 | 73 | } | 
|---|
 | 74 |  | 
|---|
 | 75 | /** | 
|---|
| [4836] | 76 |  *  a Constructor for the Debug-Worlds | 
|---|
| [5308] | 77 |  */ | 
|---|
| [3564] | 78 | Terrain::Terrain(DebugTerrain debugTerrain) | 
|---|
 | 79 | { | 
|---|
 | 80 |   this->init(); | 
|---|
 | 81 |   this->buildDebugTerrain(debugTerrain); | 
|---|
 | 82 | } | 
|---|
 | 83 |  | 
|---|
| [3245] | 84 | /** | 
|---|
| [4836] | 85 |  *  standard deconstructor | 
|---|
| [1853] | 86 |  | 
|---|
| [3245] | 87 | */ | 
|---|
| [4746] | 88 | Terrain::~Terrain () | 
|---|
| [3543] | 89 | { | 
|---|
| [3564] | 90 |   if (objectList) | 
|---|
 | 91 |     glDeleteLists(this->objectList, 1); | 
|---|
| [4889] | 92 |   if( this->ssp) | 
|---|
 | 93 |     delete ssp; | 
|---|
| [5465] | 94 |   if (this->vegetation) | 
|---|
 | 95 |   { | 
|---|
 | 96 |     ResourceManager::getInstance()->unload(this->vegetation); | 
|---|
 | 97 |   } | 
|---|
| [6956] | 98 |  | 
|---|
 | 99 |   if(this->heightMap) | 
|---|
 | 100 |         delete heightMap; | 
|---|
| [3543] | 101 | } | 
|---|
| [1853] | 102 |  | 
|---|
| [3245] | 103 |  | 
|---|
| [4746] | 104 | void Terrain::init() | 
|---|
| [3559] | 105 | { | 
|---|
| [4320] | 106 |   this->setClassID(CL_TERRAIN, "Terrain"); | 
|---|
| [6142] | 107 |   this->toList(OM_ENVIRON_NOTICK); | 
|---|
| [4597] | 108 |  | 
|---|
| [4136] | 109 |   this->objectList = 0; | 
|---|
| [5308] | 110 |   this->ssp = NULL; | 
|---|
| [5465] | 111 |   this->vegetation = NULL; | 
|---|
| [6956] | 112 |  | 
|---|
 | 113 |   this->heightMap = NULL; | 
|---|
| [7055] | 114 |  | 
|---|
 | 115 |   this->heightMapMaterial = new Material(); | 
|---|
| [3559] | 116 | } | 
|---|
 | 117 |  | 
|---|
| [4924] | 118 |  | 
|---|
| [4607] | 119 | void Terrain::loadParams(const TiXmlElement* root) | 
|---|
 | 120 | { | 
|---|
| [6512] | 121 |   WorldEntity::loadParams(root); | 
|---|
| [3559] | 122 |  | 
|---|
| [7046] | 123 |   LoadParam(root, "scale", this, Terrain, setScale) | 
|---|
 | 124 |       .describe("The scale in x,y,z direction"); | 
|---|
 | 125 |  | 
|---|
 | 126 |   LoadParam(root, "texture", this, Terrain, loadTexture) | 
|---|
 | 127 |       .describe("The name of the Texture for this heightMap"); | 
|---|
 | 128 |  | 
|---|
| [5671] | 129 |   LoadParam(root, "vegetation", this, Terrain, loadVegetation) | 
|---|
| [5465] | 130 |       .describe("the fileName of the vegetation, that should be loaded onto this terrain. (must be relative to the data-dir)") ; | 
|---|
| [6956] | 131 |  | 
|---|
 | 132 |   LoadParam(root, "height-map", this, Terrain, loadHeightMap) | 
|---|
 | 133 |       .describe("The HeightMap, splitted into two strings seperated by ','. 1: HeighMap, 2: ColorMap"); | 
|---|
 | 134 |  | 
|---|
| [7046] | 135 | } | 
|---|
| [6956] | 136 |  | 
|---|
| [7046] | 137 | void Terrain::setScale(float x, float y, float z) | 
|---|
 | 138 | { | 
|---|
 | 139 |   this->terrainScale = Vector(x, y, z); | 
|---|
| [4607] | 140 | } | 
|---|
 | 141 |  | 
|---|
| [6956] | 142 | void Terrain::loadHeightMap(const char* heightMapFile, const char* colorMap) | 
|---|
 | 143 | { | 
|---|
 | 144 |   if (this->heightMap != NULL) | 
|---|
 | 145 |     delete this->heightMap; | 
|---|
 | 146 |   this->heightMap = NULL; | 
|---|
 | 147 |  | 
|---|
 | 148 |   char* hmName = ResourceManager::getFullName(heightMapFile); | 
|---|
 | 149 |   char* hmColorName = ResourceManager::getFullName(colorMap); | 
|---|
 | 150 |  | 
|---|
 | 151 |  | 
|---|
 | 152 |   this->heightMap = new HeightMap(hmName, hmColorName); | 
|---|
| [7046] | 153 | //   heightMap->scale(Vector(43.0f,4.7f,43.0f)); | 
|---|
 | 154 |   heightMap->scale(this->terrainScale); | 
|---|
| [6956] | 155 |   heightMap->setAbsCoor(this->getAbsCoor()); | 
|---|
 | 156 |   heightMap->load(); | 
|---|
 | 157 |   delete[] hmName; | 
|---|
 | 158 |   delete[] hmColorName; | 
|---|
 | 159 |  | 
|---|
 | 160 | } | 
|---|
 | 161 |  | 
|---|
 | 162 |  | 
|---|
 | 163 | void Terrain::loadTexture(const char* textureName) | 
|---|
 | 164 | { | 
|---|
| [7046] | 165 |    PRINTF(0)("Load texture: %s\n", textureName); | 
|---|
 | 166 |  | 
|---|
| [6956] | 167 |    heightMapMaterial->setDiffuse(1.0,1.0,1.0); | 
|---|
 | 168 |    heightMapMaterial->setAmbient(1.0,1.0,1.0 ); | 
|---|
 | 169 |    heightMapMaterial->setSpecular(1.0,1.0,1.0); | 
|---|
 | 170 |    heightMapMaterial->setShininess(.5); | 
|---|
 | 171 |    heightMapMaterial->setTransparency(1.0); | 
|---|
 | 172 |  | 
|---|
 | 173 |    heightMapMaterial->setDiffuseMap(textureName); | 
|---|
| [7055] | 174 |    heightMapMaterial->setAmbientMap(textureName); | 
|---|
 | 175 |    heightMapMaterial->setSpecularMap(textureName); | 
|---|
| [6956] | 176 | } | 
|---|
 | 177 |  | 
|---|
 | 178 |  | 
|---|
 | 179 |  | 
|---|
| [5465] | 180 | void Terrain::loadVegetation(const char* vegetationFile) | 
|---|
 | 181 | { | 
|---|
| [6341] | 182 |   PRINTF(0)("loadVegetation: %s\n", vegetationFile); | 
|---|
| [5465] | 183 |   if (this->vegetation) | 
|---|
 | 184 |     ResourceManager::getInstance()->unload(this->vegetation, RP_LEVEL); | 
|---|
 | 185 |   if (vegetationFile != NULL) | 
|---|
 | 186 |   { | 
|---|
 | 187 |     PRINTF(4)("fetching %s\n", vegetationFile); | 
|---|
| [7193] | 188 |     this->vegetation = dynamic_cast<Model*>(ResourceManager::getInstance()->load(vegetationFile, OBJ, RP_CAMPAIGN)); | 
|---|
| [5465] | 189 |   } | 
|---|
 | 190 |   else | 
|---|
 | 191 |     this->vegetation = NULL; | 
|---|
 | 192 | } | 
|---|
 | 193 |  | 
|---|
 | 194 |  | 
|---|
 | 195 |  | 
|---|
| [6956] | 196 |  | 
|---|
 | 197 |  | 
|---|
| [5500] | 198 | void Terrain::draw () const | 
|---|
| [4597] | 199 | { | 
|---|
| [3559] | 200 |   glPushMatrix(); | 
|---|
| [4597] | 201 |  | 
|---|
| [3559] | 202 |   /* translate */ | 
|---|
| [4597] | 203 |   glTranslatef (this->getAbsCoor ().x, | 
|---|
 | 204 |                 this->getAbsCoor ().y, | 
|---|
 | 205 |                 this->getAbsCoor ().z); | 
|---|
| [3559] | 206 |   /* rotate */ | 
|---|
| [6956] | 207 |  // Vector tmpRot = this->getAbsDir().getSpacialAxis(); | 
|---|
 | 208 |   //glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z ); | 
|---|
| [3559] | 209 |  | 
|---|
| [4136] | 210 |   if (this->objectList) | 
|---|
 | 211 |     glCallList(this->objectList); | 
|---|
| [5994] | 212 |   else if (this->getModel()) | 
|---|
 | 213 |     this->getModel()->draw(); | 
|---|
| [7046] | 214 |  | 
|---|
| [5465] | 215 |   if (this->vegetation) | 
|---|
 | 216 |     this->vegetation->draw(); | 
|---|
| [6956] | 217 |  | 
|---|
| [7046] | 218 |   if( this->heightMap) | 
|---|
 | 219 |   { | 
|---|
 | 220 |     this->heightMapMaterial->select(); | 
|---|
 | 221 |  | 
|---|
 | 222 |     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); | 
|---|
 | 223 |     glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); | 
|---|
 | 224 |     this->heightMap->draw(); | 
|---|
 | 225 |   } | 
|---|
| [3559] | 226 |   glPopMatrix(); | 
|---|
| [4904] | 227 |  | 
|---|
| [6956] | 228 |  | 
|---|
| [7046] | 229 | /* | 
|---|
 | 230 |   glMatrixMode(GL_MODELVIEW); | 
|---|
 | 231 |   glPushMatrix(); | 
|---|
 | 232 |   glLoadIdentity(); | 
|---|
 | 233 |   Vector camera =   State::getCameraNode()->getAbsCoor(); // Go on here ..........!!! | 
|---|
| [6956] | 234 |  | 
|---|
| [7046] | 235 |   float height =    heightMap->getHeight(camera.x, camera.z); | 
|---|
| [6956] | 236 |  | 
|---|
| [7046] | 237 |   glEnable (GL_COLOR_MATERIAL) ; | 
|---|
 | 238 |   glBegin(GL_QUADS);            // Draw The Cube Using quads | 
|---|
 | 239 |   glColor3f(0.0f,1.0f,0.0f);  // Color Blue | 
|---|
 | 240 |   glVertex3f(camera.x + 63.0f,Terrain->getHeight(camera.x+63.0f, camera.z-10.0f)+13.0f,camera.z-10.0f);      // Top Right Of The Quad (Top) | 
|---|
 | 241 |   glVertex3f(camera.x-63.0f, getHeight(camera.x+63.0f, camera.z-10.0f)+13.0f,camera.z-10.0f);      // Top Left Of The Quad (Top) | 
|---|
 | 242 |   glVertex3f(camera.x-63.0f, getHeight(camera.x+63.0f, camera.z+10.0f)+13.0f, camera.z+10.0f);      // Bottom Left Of The Quad (Top) | 
|---|
 | 243 |   glVertex3f(camera.x+ 63.0f, getHeight(camera.x+63.0f, camera.z+10.0f)+13.0f, camera.z+10.0f);      // Bottom Right Of The Quad (Top) | 
|---|
 | 244 |   glEnd();                      // End Drawing The Plan | 
|---|
| [6956] | 245 |  | 
|---|
| [7046] | 246 |   glPopMatrix();*/ | 
|---|
| [6956] | 247 |  | 
|---|
 | 248 |  | 
|---|
| [7046] | 249 | /* THIS IS ONLY FOR DEBUGGING INFORMATION */ | 
|---|
| [5308] | 250 |   if (this->ssp != NULL) | 
|---|
 | 251 |     this->ssp->drawQuadtree(); | 
|---|
| [3559] | 252 | } | 
|---|
| [3564] | 253 |  | 
|---|
 | 254 |  | 
|---|
 | 255 | void Terrain::buildDebugTerrain(DebugTerrain debugTerrain) | 
|---|
 | 256 | { | 
|---|
 | 257 |   // if the terrain is the Terrain of Dave | 
|---|
 | 258 |   if (debugTerrain == TERRAIN_DAVE) | 
|---|
 | 259 |     { | 
|---|
 | 260 |       objectList = glGenLists(1); | 
|---|
 | 261 |       glNewList (objectList, GL_COMPILE); | 
|---|
| [4597] | 262 |  | 
|---|
| [3564] | 263 |       glColor3f(1.0,0,0); | 
|---|
| [4597] | 264 |  | 
|---|
| [3564] | 265 |       int sizeX = 100; | 
|---|
 | 266 |       int sizeZ = 80; | 
|---|
 | 267 |       float length = 1000; | 
|---|
 | 268 |       float width = 200; | 
|---|
 | 269 |       float widthX = float (length /sizeX); | 
|---|
 | 270 |       float widthZ = float (width /sizeZ); | 
|---|
| [4597] | 271 |  | 
|---|
| [3564] | 272 |       float height [sizeX][sizeZ]; | 
|---|
 | 273 |       Vector normal_vectors[sizeX][sizeZ]; | 
|---|
| [4597] | 274 |  | 
|---|
 | 275 |  | 
|---|
| [3564] | 276 |       for ( int i = 0; i<sizeX-1; i+=1) | 
|---|
| [4597] | 277 |         for (int j = 0; j<sizeZ-1;j+=1) | 
|---|
 | 278 |           //height[i][j] = rand()/20046 + (j-25)*(j-25)/30; | 
|---|
| [3564] | 279 | #ifdef __WIN32__ | 
|---|
| [4597] | 280 |           height[i][j]=(sin((float)j/3)*rand()*i/182400)*.5; | 
|---|
| [3564] | 281 | #else | 
|---|
 | 282 |       height[i][j]=(sin((float)j/3)*rand()*(long)i/6282450500.0)*.5; | 
|---|
 | 283 | #endif | 
|---|
| [4597] | 284 |  | 
|---|
| [3564] | 285 |       //Die Huegel ein wenig glaetten | 
|---|
 | 286 |       for (int h=1; h<2;h++) | 
|---|
| [4597] | 287 |         for (int i=1;i<sizeX-2 ;i+=1 ) | 
|---|
 | 288 |           for(int j=1;j<sizeZ-2;j+=1) | 
|---|
 | 289 |             height[i][j]=(height[i+1][j]+height[i][j+1]+height[i-1][j]+height[i][j-1])/4; | 
|---|
 | 290 |  | 
|---|
| [3564] | 291 |       //Berechnung von normalen Vektoren | 
|---|
 | 292 |       for(int i=1;i<sizeX-2;i+=1) | 
|---|
| [4597] | 293 |         for(int j=1;j<sizeZ-2 ;j+=1) | 
|---|
 | 294 |           { | 
|---|
 | 295 |             Vector v1 = Vector (widthX*(1),      height[i][j],      widthZ*(j) ); | 
|---|
 | 296 |             Vector v2 = Vector (widthX*(i-1),    height[i-1][j],    widthZ*(j)); | 
|---|
 | 297 |             Vector v3 = Vector (widthX*(i),      height[i][j+1],    widthZ*(j+1)); | 
|---|
 | 298 |             Vector v4 = Vector (widthX*(i+1),    height[i+1][j],    widthZ*(j)); | 
|---|
 | 299 |             Vector v5 = Vector (widthX*(i),      height[i][j-1],    widthZ*(j-1)); | 
|---|
 | 300 |  | 
|---|
 | 301 |             Vector c1 = v2 - v1; | 
|---|
 | 302 |             Vector c2 = v3 - v1; | 
|---|
 | 303 |             Vector c3=  v4 - v1; | 
|---|
 | 304 |             Vector c4 = v5 - v1; | 
|---|
 | 305 |             Vector zero = Vector (0,0,0); | 
|---|
 | 306 |             normal_vectors[i][j]=c1.cross(v3-v5)+c2.cross(v4-v2)+c3.cross(v5-v3)+c4.cross(v2-v4); | 
|---|
 | 307 |             normal_vectors[i][j].normalize(); | 
|---|
 | 308 |           } | 
|---|
 | 309 |  | 
|---|
| [3564] | 310 |       glBegin(GL_QUADS); | 
|---|
 | 311 |       int snowheight=3; | 
|---|
 | 312 |       for ( int i = 0; i<sizeX; i+=1) | 
|---|
| [4597] | 313 |         for (int j = 0; j<sizeZ;j+=1) | 
|---|
 | 314 |           { | 
|---|
 | 315 |             Vector v1 = Vector (widthX*(i),      height[i][j]-20,       widthZ*(j)  -width/2); | 
|---|
 | 316 |             Vector v2 = Vector (widthX*(i+1),    height[i+1][j]-20,     widthZ*(j)  -width/2); | 
|---|
 | 317 |             Vector v3 = Vector (widthX*(i+1),    height[i+1][j+1]-20,   widthZ*(j+1)-width/2); | 
|---|
 | 318 |             Vector v4 = Vector (widthX*(i),      height[i][j+1]-20,     widthZ*(j+1)-width/2); | 
|---|
 | 319 |             float a[3]; | 
|---|
 | 320 |             if(height[i][j]<snowheight){ | 
|---|
 | 321 |               a[0]=0; | 
|---|
 | 322 |               a[1]=1.0-height[i][j]/10-.3; | 
|---|
 | 323 |               a[2]=0; | 
|---|
 | 324 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 325 |             } | 
|---|
 | 326 |             else{ | 
|---|
 | 327 |               a[0]=1.0; | 
|---|
 | 328 |               a[1]=1.0; | 
|---|
 | 329 |               a[2]=1.0; | 
|---|
 | 330 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 331 |  | 
|---|
 | 332 |             } | 
|---|
 | 333 |             glNormal3f(normal_vectors[i][j].x, normal_vectors[i][j].y, normal_vectors[i][j].z); | 
|---|
 | 334 |             glVertex3f(v1.x, v1.y, v1.z); | 
|---|
 | 335 |             if(height[i+1][j]<snowheight){ | 
|---|
 | 336 |               a[0]=0; | 
|---|
 | 337 |               a[1] =1.0-height[i+1][j]/10-.3; | 
|---|
 | 338 |               a[2]=0; | 
|---|
 | 339 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 340 |             } | 
|---|
 | 341 |             else{ | 
|---|
 | 342 |               a[0]=1.0; | 
|---|
 | 343 |               a[1]=1.0; | 
|---|
 | 344 |               a[2]=1.0; | 
|---|
 | 345 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 346 |  | 
|---|
 | 347 |             } | 
|---|
 | 348 |             glNormal3f(normal_vectors[i+1][j].x, normal_vectors[i+1][j].y, normal_vectors[i+1][j].z); | 
|---|
 | 349 |             glVertex3f(v2.x, v2.y, v2.z); | 
|---|
 | 350 |             if(height[i+1][j+1]<snowheight){ | 
|---|
 | 351 |               a[0]=0; | 
|---|
 | 352 |               a[1] =1.0-height[i+1][j+1]/10-.3; | 
|---|
 | 353 |               a[2]=0; | 
|---|
 | 354 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 355 |             } | 
|---|
 | 356 |             else{ | 
|---|
 | 357 |               a[0]=1.0; | 
|---|
 | 358 |               a[1]=1.0; | 
|---|
 | 359 |               a[2]=1.0; | 
|---|
 | 360 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 361 |  | 
|---|
 | 362 |  | 
|---|
 | 363 |             } | 
|---|
 | 364 |             glNormal3f(normal_vectors[i+1][j+1].x, normal_vectors[i+1][j+1].y, normal_vectors[i+1][j+1].z); | 
|---|
 | 365 |             glVertex3f(v3.x, v3.y, v3.z); | 
|---|
 | 366 |             if(height[i][j+1]<snowheight){ | 
|---|
 | 367 |               a[0]=0; | 
|---|
 | 368 |               a[1] =1.0-height[i+1][j+1]/10-.3; | 
|---|
 | 369 |               a[2]=0; | 
|---|
 | 370 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 371 |             } | 
|---|
 | 372 |             else{ | 
|---|
 | 373 |               a[0]=1.0; | 
|---|
 | 374 |               a[1]=1.0; | 
|---|
 | 375 |               a[2]=1.0; | 
|---|
 | 376 |               glMaterialfv(GL_FRONT,GL_DIFFUSE,a); | 
|---|
 | 377 |             } | 
|---|
 | 378 |             glNormal3f(normal_vectors[i][j+1].x, normal_vectors[i][j+1].y, normal_vectors[i][j+1].z); | 
|---|
 | 379 |             glVertex3f(v4.x, v4.y, v4.z); | 
|---|
 | 380 |  | 
|---|
 | 381 |           } | 
|---|
| [3564] | 382 |       glEnd(); | 
|---|
 | 383 |       glEndList(); | 
|---|
 | 384 |     } | 
|---|
 | 385 |  | 
|---|
 | 386 |   if (debugTerrain == TERRAIN_BENSCH) | 
|---|
 | 387 |     { | 
|---|
 | 388 |       /* | 
|---|
| [4597] | 389 |         this->model = (OBJModel*) new Model(); | 
|---|
| [3564] | 390 |       this->model->setName("CUBE"); | 
|---|
 | 391 |       this->model->addVertex (-0.5, -0.5, 0.5); | 
|---|
 | 392 |       this->model->addVertex (0.5, -0.5, 0.5); | 
|---|
 | 393 |       this->model->addVertex (-0.5, 0.5, 0.5); | 
|---|
 | 394 |       this->model->addVertex (0.5, 0.5, 0.5); | 
|---|
 | 395 |       this->model->addVertex (-0.5, 0.5, -0.5); | 
|---|
 | 396 |       this->model->addVertex (0.5, 0.5, -0.5); | 
|---|
 | 397 |       this->model->addVertex (-0.5, -0.5, -0.5); | 
|---|
 | 398 |       this->model->addVertex (0.5, -0.5, -0.5); | 
|---|
| [4597] | 399 |  | 
|---|
| [3564] | 400 |       this->model->addVertexTexture (0.0, 0.0); | 
|---|
 | 401 |       this->model->addVertexTexture (1.0, 0.0); | 
|---|
 | 402 |       this->model->addVertexTexture (0.0, 1.0); | 
|---|
 | 403 |       this->model->addVertexTexture (1.0, 1.0); | 
|---|
 | 404 |       this->model->addVertexTexture (0.0, 2.0); | 
|---|
 | 405 |       this->model->addVertexTexture (1.0, 2.0); | 
|---|
 | 406 |       this->model->addVertexTexture (0.0, 3.0); | 
|---|
 | 407 |       this->model->addVertexTexture (1.0, 3.0); | 
|---|
 | 408 |       this->model->addVertexTexture (0.0, 4.0); | 
|---|
 | 409 |       this->model->addVertexTexture (1.0, 4.0); | 
|---|
 | 410 |       this->model->addVertexTexture (2.0, 0.0); | 
|---|
 | 411 |       this->model->addVertexTexture (2.0, 1.0); | 
|---|
 | 412 |       this->model->addVertexTexture (-1.0, 0.0); | 
|---|
 | 413 |       this->model->addVertexTexture (-1.0, 1.0); | 
|---|
 | 414 |  | 
|---|
 | 415 |       this->model->finalize(); | 
|---|
 | 416 |       */ | 
|---|
 | 417 |     } | 
|---|
 | 418 | } | 
|---|
| [6341] | 419 |  | 
|---|
 | 420 | int Terrain::writeBytes( const byte * data, int length, int sender ) | 
|---|
 | 421 | { | 
|---|
 | 422 |   setRequestedSync( false ); | 
|---|
 | 423 |   setIsOutOfSync( false ); | 
|---|
 | 424 |  | 
|---|
 | 425 |   SYNCHELP_READ_BEGIN(); | 
|---|
| [6815] | 426 |   SYNCHELP_READ_FKT( WorldEntity::writeState, NWT_TER_WE_STATE ); | 
|---|
| [6341] | 427 |  | 
|---|
 | 428 |   return SYNCHELP_READ_N; | 
|---|
 | 429 | } | 
|---|
 | 430 |  | 
|---|
 | 431 | int Terrain::readBytes( byte * data, int maxLength, int * reciever ) | 
|---|
 | 432 | { | 
|---|
 | 433 |   if ( isOutOfSync() && !requestedSync() && this->getHostID()!=this->getOwner() ) | 
|---|
 | 434 |   { | 
|---|
 | 435 |     (NetworkGameManager::getInstance())->sync( this->getUniqueID(), this->getOwner() ); | 
|---|
 | 436 |     setRequestedSync( true ); | 
|---|
 | 437 |   } | 
|---|
 | 438 |  | 
|---|
 | 439 |   int rec = this->getRequestSync(); | 
|---|
 | 440 |   if ( rec > 0 ) | 
|---|
 | 441 |   { | 
|---|
 | 442 |     *reciever = rec; | 
|---|
 | 443 |  | 
|---|
| [6815] | 444 |     SYNCHELP_WRITE_BEGIN(); | 
|---|
 | 445 |     SYNCHELP_WRITE_FKT( WorldEntity::readState, NWT_TER_WE_STATE ); | 
|---|
 | 446 |     return SYNCHELP_WRITE_N; | 
|---|
| [6341] | 447 |  | 
|---|
 | 448 |   } | 
|---|
 | 449 |  | 
|---|
 | 450 |   *reciever = 0; | 
|---|
 | 451 |   return 0; | 
|---|
 | 452 | } | 
|---|
 | 453 |  | 
|---|
 | 454 | void Terrain::writeDebug( ) const | 
|---|
 | 455 | { | 
|---|
 | 456 | } | 
|---|
 | 457 |  | 
|---|
 | 458 | void Terrain::readDebug( ) const | 
|---|
 | 459 | { | 
|---|
 | 460 | } | 
|---|
| [6956] | 461 |  | 
|---|
 | 462 | float Terrain::getHeight(float x, float y) | 
|---|
 | 463 | { | 
|---|
 | 464 |         if(this->heightMap != NULL) | 
|---|
 | 465 |                 return (this->heightMap->getHeight(x, y)); | 
|---|
 | 466 |         return 0; | 
|---|
 | 467 | } | 
|---|