MapViewer/include/multipolygon.hpp

42 lines
702 B
C++
Raw Normal View History

2021-04-16 13:16:00 +00:00
#pragma once
#include <memory>
#include <osmrelation.hpp>
2021-04-17 01:15:07 +00:00
struct SDL_FPoint;
struct SDL_Renderer;
2021-04-16 13:16:00 +00:00
class Multipolygon
{
public:
Multipolygon(const std::shared_ptr<osmp::Relation>& relation, int width, int height, osmp::Bounds bounds);
2021-04-17 15:48:39 +00:00
void SetColor(int r, int g, int b);
void Draw(SDL_Renderer* renderer);
bool operator < (const Multipolygon& other) const {
return (rendering < other.rendering);
}
2021-04-17 01:15:07 +00:00
2021-04-16 13:16:00 +00:00
private:
2021-04-17 01:15:07 +00:00
struct Vertex {
double x, y;
};
struct Polygon {
std::vector<Vertex> vertices;
std::vector<int> indices;
2021-04-17 15:48:39 +00:00
std::vector<int> segments;
2021-04-17 01:15:07 +00:00
};
std::vector<Polygon> polygons;
2021-04-17 15:48:39 +00:00
int r;
int g;
int b;
bool visible;
enum RenderType {
FILL,
OUTLINE,
INDOOR
} rendering;
2021-04-16 13:16:00 +00:00
};