mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
83 lines
1.6 KiB
C++
83 lines
1.6 KiB
C++
//
|
|
// terrain.h
|
|
////////////////////////////////////////////////////
|
|
|
|
#ifndef _TERRAIN_H_
|
|
#define _TERRAIN_H_
|
|
|
|
#include "defines.h"
|
|
|
|
class File;
|
|
class Camera;
|
|
class Texture;
|
|
|
|
class TerrainPatch
|
|
{
|
|
public:
|
|
TerrainPatch ();
|
|
~TerrainPatch ();
|
|
|
|
float control[48]; // 4x4 grid
|
|
unsigned short steps;
|
|
|
|
float* vertex;
|
|
float* normals;
|
|
float* coords;
|
|
unsigned short* index;
|
|
|
|
bool visible;
|
|
|
|
void InitBox(float minX, float maxX, float minY, float maxY, float minZ, float maxZ);
|
|
bool BoxIsOutside(const float plane[4]) const;
|
|
void Tesselate(bool bNormals);
|
|
void FreeMemory();
|
|
|
|
protected:
|
|
float corners[8][3];
|
|
};
|
|
|
|
class Terrain
|
|
{
|
|
public:
|
|
Terrain();
|
|
~Terrain();
|
|
Terrain& operator=(const Terrain& source);
|
|
|
|
void LoadTexture(bool bLinear);
|
|
void Render(Camera* pCam, float aspect);
|
|
void LoadDefaults(bool bLinear);
|
|
void SetSize(float uSize, float vSize);
|
|
void GetSize(float *uSize, float *vSize);
|
|
void FileLoad(File* file);
|
|
void FileSave(File* file);
|
|
void Tesselate();
|
|
void SetControlPoints();
|
|
void GenerateRandom();
|
|
|
|
void SetPatchCount(int uPatches, int vPatches);
|
|
void GetPatchCount(int *uCount, int *vCount);
|
|
int GetCountU()
|
|
{ return m_uPatches != 0 ? m_uPatches*3 + 1 : 0; }
|
|
int GetCountV()
|
|
{ return m_vPatches != 0 ? m_vPatches*3 + 1 : 0; }
|
|
float** GetControlPoints()
|
|
{ return m_pControl; }
|
|
|
|
unsigned long m_nOptions;
|
|
char m_strTexture[LC_MAXPATH];
|
|
float m_fColor[3];
|
|
|
|
protected:
|
|
void FreeMemory();
|
|
void FindVisiblePatches(Camera* pCam, float aspect);
|
|
|
|
float** m_pControl;
|
|
TerrainPatch** m_Patches;
|
|
int m_uPatches;
|
|
int m_vPatches;
|
|
float m_uSize;
|
|
float m_vSize;
|
|
Texture* m_pTexture;
|
|
};
|
|
|
|
#endif // _TERRAIN_H_
|