Michaël Lemaire
203dd0ab12
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@350 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
36 lines
913 B
C++
36 lines
913 B
C++
#ifndef _PAYSAGES_QT_EXPLORERCHUNKTERRAIN_H_
|
|
#define _PAYSAGES_QT_EXPLORERCHUNKTERRAIN_H_
|
|
|
|
#include "baseexplorerchunk.h"
|
|
#include "../lib_paysages/renderer.h"
|
|
#include "../lib_paysages/euclid.h"
|
|
|
|
class ExplorerChunkTerrain:public BaseExplorerChunk
|
|
{
|
|
public:
|
|
ExplorerChunkTerrain(Renderer* renderer, double x, double z, double size, int nbchunks);
|
|
~ExplorerChunkTerrain();
|
|
|
|
void onCameraEvent(CameraDefinition* camera);
|
|
void onResetEvent();
|
|
bool onMaintainEvent();
|
|
void onRenderEvent(QGLWidget* widget);
|
|
double getDisplayedSizeHint(CameraDefinition* camera);
|
|
Color getTextureColor(double x, double y);
|
|
|
|
private:
|
|
Vector3 getCenter();
|
|
|
|
double _startx;
|
|
double _startz;
|
|
double _size;
|
|
double _overall_step;
|
|
|
|
double* _tessellation;
|
|
int _tessellation_max_size;
|
|
int _tessellation_current_size;
|
|
double _tessellation_step;
|
|
|
|
};
|
|
|
|
#endif
|