]> git.localhorst.tv Git - blobs.git/blob - src/world/Planet.hpp
237159994c47da1c9dbd1e23bd235ffd2214cbb0
[blobs.git] / src / world / Planet.hpp
1 #ifndef BLOBS_WORLD_PLANET_HPP_
2 #define BLOBS_WORLD_PLANET_HPP_
3
4 #include "Body.hpp"
5
6 #include "Set.hpp"
7 #include "Tile.hpp"
8 #include "../graphics/SimpleVAO.hpp"
9 #include "../math/glm.hpp"
10
11 #include <cassert>
12 #include <memory>
13 #include <vector>
14 #include <GL/glew.h>
15
16
17 namespace blobs {
18 namespace world {
19
20 class TileType;
21
22 /// A planet has six surfaces, numbered 0 to 5, each filled with
23 /// sidelength² tiles.
24 class Planet
25 : public Body {
26
27 public:
28         explicit Planet(int sidelength);
29         ~Planet();
30
31         Planet(const Planet &) = delete;
32         Planet &operator =(const Planet &) = delete;
33
34         Planet(Planet &&) = delete;
35         Planet &operator =(Planet &&) = delete;
36
37 public:
38         /// surface normal
39         glm::dvec3 NormalAt(const glm::dvec3 &p) const noexcept { return normalize(p); }
40         /// height over surface
41         double ElevationAt(const glm::dvec3 &p) const noexcept { return length(p) - Radius(); }
42         /// distance to planet center
43         double DistanceAt(const glm::dvec3 &p) const noexcept { return length(p); }
44
45         /// get ground tile
46         Tile &TileAt(const glm::dvec3 &) noexcept;
47         const Tile &TileAt(const glm::dvec3 &) const noexcept;
48         const TileType &TileTypeAt(const glm::dvec3 &) const noexcept;
49
50         /// Get the tile at given surface and coordinates.
51         Tile &TileAt(int surface, int x, int y) noexcept;
52         const Tile &TileAt(int surface, int x, int y) const noexcept;
53         const TileType &TypeAt(int surface, int x, int y) const noexcept;
54
55         /// The length in tiles of the side of each surface.
56         int SideLength() const { return sidelength; }
57
58         // center point of tile on surface at elevation
59         glm::dvec3 TileCenter(int surface, int x, int y, double elevation = 0.0) const noexcept;
60
61         void BuildVAO(const Set<TileType> &);
62         void Draw(app::Assets &, graphics::Viewport &) override;
63
64 private:
65         /// Convert coordinates into a tile index.
66         int IndexOf(int surface, int x, int y) const {
67                 assert(0 <= surface && surface <= 5);
68                 assert(0 <= x && x < sidelength);
69                 assert(0 <= y && y < sidelength);
70                 return surface * TilesPerSurface() + y * SideLength() + x;
71         }
72         /// The number of tiles of one surface.
73         int TilesPerSurface() const {
74                 return SideLength() * SideLength();
75         }
76         /// Total number of tiles of all surfaces combined.
77         int TilesTotal() const {
78                 return 6 * TilesPerSurface();
79         }
80
81 private:
82         int sidelength;
83         std::vector<Tile> tiles;
84
85         struct Attributes {
86                 glm::vec3 position;
87                 glm::vec3 normal;
88                 glm::vec3 tex_coord;
89         };
90         std::unique_ptr<graphics::SimpleVAO<Attributes, unsigned int>> vao;
91
92 };
93
94 void GenerateEarthlike(const Set<TileType> &, Planet &) noexcept;
95 void GenerateTest(const Set<TileType> &, Planet &) noexcept;
96
97 }
98 }
99
100 #endif