2022-03-17 22:33:22 +01:00
|
|
|
#ifndef TERRAIN_2D_STRUCTURE_H
|
|
|
|
#define TERRAIN_2D_STRUCTURE_H
|
2023-12-17 22:59:50 +01:00
|
|
|
|
2022-03-15 13:29:32 +01:00
|
|
|
|
2022-08-17 12:53:49 +02:00
|
|
|
#include "core/containers/hash_map.h"
|
2022-08-17 13:45:14 +02:00
|
|
|
#include "core/object/resource.h"
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
#include "../defines.h"
|
|
|
|
|
|
|
|
#include "core/math/rect2.h"
|
2022-08-17 12:53:49 +02:00
|
|
|
#include "core/containers/pool_vector.h"
|
2022-03-15 13:29:32 +01:00
|
|
|
#include "terrain_2d_chunk.h"
|
|
|
|
|
2022-03-18 04:10:09 +01:00
|
|
|
class Terrain2DStructure : public Resource {
|
2022-03-15 13:29:32 +01:00
|
|
|
GDCLASS(Terrain2DStructure, Resource);
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool get_use_rect() const;
|
|
|
|
void set_use_rect(const bool value);
|
|
|
|
|
|
|
|
Rect2 get_chunk_rect() const;
|
|
|
|
void set_chunk_rect(const Rect2 &value);
|
|
|
|
|
|
|
|
int get_position_x() const;
|
|
|
|
void set_position_x(const int value);
|
|
|
|
|
|
|
|
int get_position_y() const;
|
|
|
|
void set_position_y(const int value);
|
|
|
|
|
|
|
|
void set_position(const int x, const int y);
|
|
|
|
|
|
|
|
void write_to_chunk(Ref<Terrain2DChunk> chunk);
|
|
|
|
|
|
|
|
Terrain2DStructure();
|
|
|
|
~Terrain2DStructure();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _use_rect;
|
|
|
|
Rect2 _chunk_rect;
|
|
|
|
|
|
|
|
int _position_x;
|
|
|
|
int _position_y;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|