summaryrefslogtreecommitdiff
path: root/game/terrain.h
blob: b13efb67c7b843d525be7310b44001fa7a3126f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include "chronology.hpp"
#include "collection.hpp"
#include "game/worldobject.h"
#include <gfx/models/mesh.h>
#include <gfx/renderable.h>
#include <memory>

class Shader;
class Texture;
class GeoData;

class Terrain : public WorldObject, public Renderable {
public:
	explicit Terrain(std::shared_ptr<GeoData>);

	void render(const Shader & shader) const override;

	void tick(TickDuration) override;
	float waveCycle {0.F};

private:
	void generateMeshes();

	std::shared_ptr<GeoData> geoData;
	Collection<Mesh, false> meshes;
	std::shared_ptr<Texture> grass, water;
};