2021-11-22 22:00:45 +01:00
|
|
|
/*
|
2022-02-22 10:33:06 +01:00
|
|
|
Copyright (c) 2019-2022 Péter Magyar
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
#include "terrain_surface_simple.h"
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
#include "terrain_library_simple.h"
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
int TerrainSurfaceSimple::get_atlas_x(const TerrainSurfaceSides side) const {
|
2021-11-22 22:00:45 +01:00
|
|
|
int indx = (side * 2);
|
|
|
|
|
|
|
|
return _atlas_positions[indx];
|
|
|
|
}
|
2022-02-22 10:33:06 +01:00
|
|
|
void TerrainSurfaceSimple::set_atlas_x(const TerrainSurfaceSides side, int value) {
|
2021-11-22 22:00:45 +01:00
|
|
|
int indx = (side * 2);
|
|
|
|
|
|
|
|
_atlas_positions[indx] = value;
|
|
|
|
}
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
int TerrainSurfaceSimple::get_atlas_y(const TerrainSurfaceSides side) const {
|
2021-11-22 22:00:45 +01:00
|
|
|
int indx = (side * 2) + 1;
|
|
|
|
|
|
|
|
return _atlas_positions[indx];
|
|
|
|
}
|
2022-02-22 10:33:06 +01:00
|
|
|
void TerrainSurfaceSimple::set_atlas_y(const TerrainSurfaceSides side, int value) {
|
2021-11-22 22:00:45 +01:00
|
|
|
int indx = (side * 2) + 1;
|
|
|
|
|
|
|
|
_atlas_positions[indx] = value;
|
|
|
|
}
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
void TerrainSurfaceSimple::refresh_rects() {
|
|
|
|
TerrainLibrarySimple *lib = Object::cast_to<TerrainLibrarySimple>(_library);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
ERR_FAIL_COND(lib == NULL);
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
for (int i = 0; i < TERRAIN_SIDES_COUNT; ++i) {
|
2021-11-22 22:00:45 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
TerrainSurfaceSimple::TerrainSurfaceSimple() {
|
|
|
|
for (int i = 0; i < TERRAIN_SIDES_ARRAY_SIZE; ++i) {
|
2021-11-22 22:00:45 +01:00
|
|
|
_atlas_positions[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
TerrainSurfaceSimple::~TerrainSurfaceSimple() {
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
void TerrainSurfaceSimple::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("get_atlas_x", "side"), &TerrainSurfaceSimple::get_atlas_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_atlas_x", "side", "value"), &TerrainSurfaceSimple::set_atlas_x);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_atlas_y", "side"), &TerrainSurfaceSimple::get_atlas_y);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_atlas_y", "side", "value"), &TerrainSurfaceSimple::set_atlas_y);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "top_atlas_x"), "set_atlas_x", "get_atlas_x", TERRAIN_SIDE_TOP);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "top_atlas_y"), "set_atlas_y", "get_atlas_y", TERRAIN_SIDE_TOP);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "bottom_atlas_x"), "set_atlas_x", "get_atlas_x", TERRAIN_SIDE_BOTTOM);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "bottom_atlas_y"), "set_atlas_y", "get_atlas_y", TERRAIN_SIDE_BOTTOM);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 10:33:06 +01:00
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "side_atlas_x"), "set_atlas_x", "get_atlas_x", TERRAIN_SIDE_SIDE);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::INT, "side_atlas_y"), "set_atlas_y", "get_atlas_y", TERRAIN_SIDE_SIDE);
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|