Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/environments/water.cc @ 6780

Last change on this file since 6780 was 6780, checked in by bensch, 18 years ago

trunk: war of the popers

File size: 10.4 KB
Line 
1/*
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.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
17
18#include "water.h"
19#include "factory.h"
20#include "load_param.h"
21
22#include "grid.h"
23#include "material.h"
24
25#include "resource_manager.h"
26#include "shader.h"
27
28#include "skybox.h"
29#include "state.h"
30
31
32#include "network_game_manager.h"
33
34using namespace std;
35
36CREATE_FACTORY(Water, CL_WATER);
37
38
39Water::Water(const TiXmlElement* root)
40{
41  this->setClassID(CL_WATER, "Water");
42  this->toList(OM_ENVIRON);
43
44  this->resX = this->resY = 10;
45  this->sizeX = this->sizeY = 1.0f;
46  this->height = 0.5f;
47  this->grid = NULL;
48
49  this->velocities = NULL;
50  this->viscosity = 5;
51  this->cohesion = .0000000001;
52
53  if (root != NULL)
54    this->loadParams(root);
55
56  this->rebuildGrid();
57  this->waterMaterial = new Material();
58  this->waterShader = (Shader*)ResourceManager::getInstance()->load("shaders/water.vert", SHADER, RP_GAME, "shaders/water.frag");
59
60  // To test the Wave equation
61  //this->wave(5.0,4.0, 1, 10);
62}
63
64Water::~Water()
65{
66  delete this->grid;
67  delete this->waterMaterial;
68}
69
70void Water::loadParams(const TiXmlElement* root)
71{
72  WorldEntity::loadParams(root);
73
74  LoadParam(root, "size", this, Water, setSize)
75  .describe("the size of the WaterSurface")
76  .defaultValues(2, 1.0f, 1.0f);
77
78  LoadParam(root, "resolution", this, Water, setResolution)
79  .describe("sets the resolution of the water surface")
80  .defaultValues(2, 10, 10);
81
82  LoadParam(root, "height", this, Water, setHeight)
83  .describe("the height of the Waves")
84  .defaultValues(1, 0.5f);
85}
86
87/**
88 * @brief rebuilds the Grid below the WaterSurface, killing all hight information
89 *
90 * This should be called on all subGrid changes except wave and tick.
91 */
92void Water::rebuildGrid()
93{
94  if (this->velocities != NULL)
95  {
96    assert (this->grid != NULL);
97    for (unsigned int i = 0; i < this->grid->rows(); i++)
98      delete[] this->velocities[i];
99    delete[] this->velocities;
100  }
101
102  //   WE DO NOT NEED THIS AS IT IS DONE IN WORLDENTITY->setModel();
103  //   if (this->grid != NULL)
104  //     this->grid = NULL;
105
106  this->grid = new Grid(this->sizeX, this->sizeY, this->resX, this->resY);
107  this->velocities = new float*[this->resX];
108  for (unsigned int i = 0; i < this->grid->rows(); i++)
109  {
110    this->velocities[i] = new float[this->resY];
111    for (unsigned int j = 0; j < this->resY; j++)
112      this->velocities[i][j] = 0.0;
113  }
114  this->setModel(this->grid, 0);
115}
116
117void Water::wave(float x, float y, float z, float force)
118{
119  unsigned int row = 0, column = 0;
120  if (!this->posToGridPoint( x, z, row, column))
121    return;
122  this->grid->height(row, column) -= force / ((y - this->getAbsCoor().y) +.1);
123}
124
125/**
126 * after this a rebuild() must be called
127 */
128void Water::setResolution(unsigned int resX, unsigned int resY)
129{
130  this->resX = resX;
131  this->resY = resY;
132}
133
134/**
135 * after this a rebuild() must be called
136 */
137void Water::setSize(float sizeX, float sizeY)
138{
139  this->sizeX = sizeX;
140  this->sizeY = sizeY;
141}
142
143void Water::setHeight(float height)
144{
145  this->height = height;
146}
147
148
149/**
150 * @brief calculated the Position in the Grid, this Point is nearest to
151 * @param x, the x-position over the Grid
152 * @param z: the z-Position(or y) over the Grid
153 * @param row returns the row if not out of range
154 * @param column returns the column if not out of range
155 * @returns true if a valid point is found, false if any x or y are out of range
156 */
157bool Water::posToGridPoint(float x, float z, unsigned int& row, unsigned int& column)
158{
159  float lower = this->getAbsCoor().y - this->sizeY *.5;
160  float left = this->getAbsCoor().x - this->sizeX *.5;
161  if (x > left && x < left + this->sizeX)
162    row = (unsigned int) ((x- left) / this->grid->gridSpacing());
163  else return false;
164  if (z > lower && z < lower + this->sizeY)
165    column = (unsigned int)((z-lower) / this->grid->gridSpacing());
166  else return false;
167  return true;
168}
169
170
171void Water::draw() const
172{
173  assert (this->grid != NULL);
174  {
175    glMatrixMode(GL_MODELVIEW);
176    glPushMatrix();
177
178    /* translate */
179    glTranslatef (this->getAbsCoor ().x,
180                  this->getAbsCoor ().y,
181                  this->getAbsCoor ().z);
182    Vector tmpRot = this->getAbsDir().getSpacialAxis();
183    glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
184
185    if (State::getSkyBox())
186    {
187      glBindTexture(GL_TEXTURE_2D, State::getSkyBox()->getTexture(SKY_TOP));
188      glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
189
190      glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
191      glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
192      glEnable(GL_TEXTURE_GEN_S);
193      glEnable(GL_TEXTURE_GEN_T);
194    }
195    glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
196    this->grid->draw();
197    // this->waterShader->activateShader();
198    //  this->waterMaterial->select();
199    //Shader::deactivateShader();
200
201    SkyBox::disableCubeMap();
202    glPopMatrix();
203  }
204}
205
206void Water::tick(float dt)
207{
208  std::list<WorldEntity*> entityList = State::getObjectManager()->getObjectList(OM_GROUP_01_PROJ);
209  std::list<WorldEntity*>::iterator entity = entityList.begin();
210  while (entity != entityList.end())
211  {
212    this->wave((*entity)->getAbsCoor(), 10.0*dt);
213    entity++;
214  }
215
216
217  if (unlikely(this->velocities == NULL))
218    return;
219  /*
220      THE OLD USELESS ALGORITHM
221    phase += dt *.1;
222    for (unsigned int i = 0; i < this->grid->rows(); i++)
223    {
224      for (unsigned int j = 0; j < this->grid->columns(); j++)
225      {
226        this->grid->height(i,j) = this->height*sin(((float)i/(float)this->grid->rows() *phase)+
227            this->height*cos((float)j/(float)this->grid->columns()) * phase * 2.0);
228      }
229    }
230    this->grid->rebuildNormals(this->height);*/
231
232
233  unsigned int i, j;
234  float u;
235
236  // wave/advection
237  // calc movement
238  for(j = 1; j < this->grid->rows() - 1; j++)
239  {
240    for(i = 1; i < this->grid->columns() - 1; i++)
241    {
242      u =  this->grid->height(i+1,j)+ this->grid->height(i-1, j) +
243           this->grid->height(i, j+1) + this->grid->height(i, j-1) -
244           4 * this->grid->height(i, j);
245      this->velocities[i][j] += dt * this->viscosity * this->viscosity * u / this->height;
246      this->grid->height(i, j) += dt * this->velocities[i][j]  /* + dt * this->cohesion * u / this->height;*/;
247      this->grid->height(i, j) *= .99;
248    }
249  }
250  // boundraries
251  for (j = 0; j < this->grid->rows(); j++)
252  {
253    this->grid->height(0,j) = this->grid->height(1,j);
254    this->grid->height(this->grid->rows()-1,j) = this->grid->height(this->grid->rows()-2, j);
255  }
256  for (i = 0; i < this->grid->rows(); i++)
257  {
258    this->grid->height(i,0) = this->grid->height(i,1);
259    this->grid->height(i,this->grid->columns()-1) = this->grid->height(i, this->grid->columns()-2);
260  }
261  /*
262  for(j = 1; j < this->grid->rows() - 1; j++) {
263      for(i = 1; i < this->grid->columns() - 1; i++) {
264        this->grid->height(i, j) += dt * this->velocities[i][j];
265      }
266    }*/
267
268  // calc normals
269  //   float l[3];
270  //   float m[3];
271  //   for(j = 1; j < this->grid->rows() -1; j++) {
272  //     for(i = 1; i < this->grid->columns() - 1; i++) {
273  //       l[0] = this->grid->vertexG(i, j-1).x - this->grid->vertexG(i, j+1).x;
274  //       l[1] = this->grid->vertexG(i, j-1).y - this->grid->vertexG(i, j+1).y;
275  //       l[2] = this->grid->vertexG(i, j-1).z - this->grid->vertexG(i, j+1).z;
276  //       m[0] = this->grid->vertexG(i-1,j).x - this->grid->vertexG(i+1, j).x;
277  //       m[1] = this->grid->vertexG(i-1,j).y - this->grid->vertexG(i+1, j).y;
278  //       m[2] = this->grid->vertexG(i-1,j).z - this->grid->vertexG(i+1, j).z;
279  //       this->grid->normalG(i, j).x = l[1] * m[2] - l[2] * m[1];
280  //       this->grid->normalG(i, j).y = l[2] * m[0] - l[0] * m[2];
281  //       this->grid->normalG(i, j).z = l[0] * m[1] - l[1] * m[0];
282  //     }
283  //   }
284  this->grid->rebuildNormals(this->height);
285}
286
287
288/**
289 * Writes data from network containing information about the state
290 * @param data pointer to data
291 * @param length length of data
292 * @param sender hostID of sender
293 */
294int Water::writeBytes( const byte * data, int length, int sender )
295{
296  setRequestedSync( false );
297  setIsOutOfSync( false );
298
299  SYNCHELP_READ_BEGIN();
300
301  SYNCHELP_READ_FKT( Water::writeState );
302
303  return SYNCHELP_READ_N;
304}
305
306
307/**
308 * data copied in data will bee sent to another host
309 * @param data pointer to data
310 * @param maxLength max length of data
311 * @return the number of bytes writen
312 */
313int Water::readBytes( byte * data, int maxLength, int * reciever )
314{
315  SYNCHELP_WRITE_BEGIN();
316
317  if ( isOutOfSync() && !requestedSync() && this->getHostID()!=this->getOwner() )
318  {
319    (NetworkGameManager::getInstance())->sync( this->getUniqueID(), this->getOwner() );
320    setRequestedSync( true );
321  }
322
323  int rec = this->getRequestSync();
324  if ( rec > 0 )
325  {
326    *reciever = rec;
327    SYNCHELP_WRITE_FKT( Water::readState );
328  }
329
330  *reciever = 0;
331  return SYNCHELP_WRITE_N;
332}
333
334
335
336/**
337 * data copied in data will bee sent to another host
338 * @param data pointer to data
339 * @param maxLength max length of data
340 * @return the number of bytes writen
341 */
342int Water::readState( byte * data, int maxLength )
343{
344  SYNCHELP_WRITE_BEGIN();
345
346  SYNCHELP_WRITE_FKT( WorldEntity::readState );
347
348  // sync the size
349  SYNCHELP_WRITE_FLOAT( this->sizeX );
350  SYNCHELP_WRITE_FLOAT( this->sizeY );
351
352  //sync resolution
353  SYNCHELP_WRITE_INT( this->resX );
354  SYNCHELP_WRITE_INT( this->resY );
355
356  //sync the height
357  SYNCHELP_WRITE_FLOAT( this->height );
358
359  return SYNCHELP_WRITE_N;
360}
361
362
363/**
364 * Writes data from network containing information about the state
365 * @param data pointer to data
366 * @param length length of data
367 * @param sender hostID of sender
368 */
369int Water::writeState( const byte * data, int length, int sender )
370{
371  SYNCHELP_READ_BEGIN();
372
373  SYNCHELP_READ_FKT( WorldEntity::writeState );
374
375  float f1, f2;
376  int i1, i2;
377
378  //read the size
379  SYNCHELP_READ_FLOAT( f1 );
380  SYNCHELP_READ_FLOAT( f2 );
381  this->sizeX = f1;
382  this->sizeY = f2;
383  PRINTF(0)("Setting Water to size: %f x %f\n", f1, f2);
384
385  //read the resolution
386  SYNCHELP_READ_INT( i1 );
387  SYNCHELP_READ_INT( i2 );
388  this->resX = i1;
389  this->resY = i2;
390  PRINTF(0)("Setting Water to resolution: %i x %i\n", i1, i2);
391
392  //read the height
393  SYNCHELP_READ_FLOAT( f1 );
394  this->height = f1;
395
396  this->rebuildGrid();
397
398  return SYNCHELP_READ_N;
399}
400
401
Note: See TracBrowser for help on using the repository browser.