mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-12 10:15:12 +01:00
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
#include "voxel_surface_simple.h"
|
|
|
|
#include "voxelman_library_simple.h"
|
|
|
|
int VoxelSurfaceSimple::get_atlas_x(const VoxelSurfaceSides side) const {
|
|
int indx = (side * 2);
|
|
|
|
return _atlas_positions[indx];
|
|
}
|
|
void VoxelSurfaceSimple::set_atlas_x(const VoxelSurfaceSides side, int value) {
|
|
int indx = (side * 2);
|
|
|
|
_atlas_positions[indx] = value;
|
|
}
|
|
|
|
int VoxelSurfaceSimple::get_atlas_y(const VoxelSurfaceSides side) const {
|
|
int indx = (side * 2) + 1;
|
|
|
|
return _atlas_positions[indx];
|
|
}
|
|
void VoxelSurfaceSimple::set_atlas_y(const VoxelSurfaceSides side, int value) {
|
|
int indx = (side * 2) + 1;
|
|
|
|
_atlas_positions[indx] = value;
|
|
}
|
|
|
|
void VoxelSurfaceSimple::refresh_rects() {
|
|
VoxelmanLibrarySimple *lib = Object::cast_to<VoxelmanLibrarySimple>(_library);
|
|
|
|
ERR_FAIL_COND(!ObjectDB::instance_validate(lib));
|
|
|
|
for (int i = 0; i < VOXEL_SIDES_COUNT; ++i) {
|
|
float culomn = 1.0 / static_cast<float>(lib->get_atlas_columns());
|
|
float row = 1.0 / static_cast<float>(lib->get_atlas_rows());
|
|
|
|
Rect2 r;
|
|
|
|
r.position.x = _atlas_positions[i * 2] * culomn;
|
|
r.position.y = _atlas_positions[i * 2 + 1] * row;
|
|
|
|
r.size.x = culomn;
|
|
r.size.y = row;
|
|
|
|
_rects[i] = r;
|
|
}
|
|
}
|
|
|
|
VoxelSurfaceSimple::VoxelSurfaceSimple() {
|
|
for (int i = 0; i < VOXEL_SIDES_ARRAY_SIZE; ++i) {
|
|
_atlas_positions[i] = 0;
|
|
}
|
|
}
|
|
|
|
VoxelSurfaceSimple::~VoxelSurfaceSimple() {
|
|
}
|
|
|
|
void VoxelSurfaceSimple::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("get_atlas_x", "side"), &VoxelSurfaceSimple::get_atlas_x);
|
|
ClassDB::bind_method(D_METHOD("set_atlas_x", "side", "value"), &VoxelSurfaceSimple::set_atlas_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_atlas_y", "side"), &VoxelSurfaceSimple::get_atlas_y);
|
|
ClassDB::bind_method(D_METHOD("set_atlas_y", "side", "value"), &VoxelSurfaceSimple::set_atlas_y);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "top_atlas_x"), "set_atlas_x", "get_atlas_x", VOXEL_SIDE_TOP);
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "top_atlas_y"), "set_atlas_y", "get_atlas_y", VOXEL_SIDE_TOP);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "bottom_atlas_x"), "set_atlas_x", "get_atlas_x", VOXEL_SIDE_BOTTOM);
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "bottom_atlas_y"), "set_atlas_y", "get_atlas_y", VOXEL_SIDE_BOTTOM);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "side_atlas_x"), "set_atlas_x", "get_atlas_x", VOXEL_SIDE_SIDE);
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "side_atlas_y"), "set_atlas_y", "get_atlas_y", VOXEL_SIDE_SIDE);
|
|
}
|