31 lines
833 B
C++
31 lines
833 B
C++
#ifndef TERRAIN_HH_INCLUDED
|
|
#define TERRAIN_HH_INCLUDED
|
|
|
|
#include <string>
|
|
#include "material.hh"
|
|
#include <ACGL/OpenGL/Objects/VertexArrayObject.hh>
|
|
#include "model.hh"
|
|
|
|
using namespace ACGL::OpenGL;
|
|
|
|
class Terrain {
|
|
public:
|
|
Terrain(std::string heightmapFilePath);
|
|
Terrain();
|
|
~Terrain();
|
|
void load();
|
|
void render();
|
|
float** getHeightmap();
|
|
int getHeightmapHeight();
|
|
int getHeightmapWidth();
|
|
SharedVertexArrayObject makeTriangleMesh(int startX, int startZ, int endX, int endZ);
|
|
private:
|
|
Material material;
|
|
std::string heightmapFilePath;
|
|
int heightmapHeight, heightmapWidth;
|
|
float** heightmap; //can be accessed like 'float[][]'
|
|
void set_abData(float* abData, int dataCount, int rowNum, int columnNum);
|
|
};
|
|
|
|
#endif
|