mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
Bring back TileMap::get_cells_by_id
This commit is contained in:
parent
9ebb3e3107
commit
68afc0afa5
@ -185,7 +185,19 @@
|
||||
<return type="Vector2i[]" />
|
||||
<param index="0" name="layer" type="int" />
|
||||
<description>
|
||||
Returns a [Vector2] array with the positions of all cells containing a tile in the given layer. A cell is considered empty if its source identifier equals -1, its atlas coordinates identifiers is [code]Vector2(-1, -1)[/code] and its alternative identifier is -1.
|
||||
Returns a [Vector2i] array with the positions of all cells containing a tile in the given layer. A cell is considered empty if its source identifier equals -1, its atlas coordinates identifiers is [code]Vector2(-1, -1)[/code] and its alternative identifier is -1.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_used_cells_by_id" qualifiers="const">
|
||||
<return type="Vector2i[]" />
|
||||
<param index="0" name="layer" type="int" />
|
||||
<param index="1" name="source_id" type="int" default="-1" />
|
||||
<param index="2" name="atlas_coords" type="Vector2i" default="Vector2i(-1, -1)" />
|
||||
<param index="3" name="alternative_tile" type="int" default="-1" />
|
||||
<description>
|
||||
Returns a [Vector2i] array with the positions of all cells containing a tile in the given layer. Tiles may be filtered according to their source ([param source_id]), their atlas coordinates ([param atlas_coords]) or alternative id ([param source_id]).
|
||||
If a parameter has it's value set to the default one, this parameter is not used to filter a cell. Thus, if all parameters have their respective default value, this method returns the same result as [method get_used_cells].
|
||||
A cell is considered empty if its source identifier equals -1, its atlas coordinates identifiers is [code]Vector2(-1, -1)[/code] and its alternative identifier is -1.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_used_rect">
|
||||
|
@ -3738,6 +3738,22 @@ TypedArray<Vector2i> TileMap::get_used_cells(int p_layer) const {
|
||||
return a;
|
||||
}
|
||||
|
||||
TypedArray<Vector2i> TileMap::get_used_cells_by_id(int p_layer, int p_source_id, const Vector2i p_atlas_coords, int p_alternative_tile) const {
|
||||
ERR_FAIL_INDEX_V(p_layer, (int)layers.size(), TypedArray<Vector2i>());
|
||||
|
||||
// Returns the cells used in the tilemap.
|
||||
TypedArray<Vector2i> a;
|
||||
for (const KeyValue<Vector2i, TileMapCell> &E : layers[p_layer].tile_map) {
|
||||
if ((p_source_id == TileSet::INVALID_SOURCE || p_source_id == E.value.source_id) &&
|
||||
(p_atlas_coords == TileSetSource::INVALID_ATLAS_COORDS || p_atlas_coords == E.value.get_atlas_coords()) &&
|
||||
(p_alternative_tile == TileSetSource::INVALID_TILE_ALTERNATIVE || p_alternative_tile == E.value.alternative_tile)) {
|
||||
a.push_back(E.key);
|
||||
}
|
||||
}
|
||||
|
||||
return a;
|
||||
}
|
||||
|
||||
Rect2i TileMap::get_used_rect() { // Not const because of cache
|
||||
// Return the rect of the currently used area
|
||||
if (used_rect_cache_dirty) {
|
||||
@ -4030,6 +4046,7 @@ void TileMap::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("get_surrounding_cells", "coords"), &TileMap::get_surrounding_cells);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_used_cells", "layer"), &TileMap::get_used_cells);
|
||||
ClassDB::bind_method(D_METHOD("get_used_cells_by_id", "layer", "source_id", "atlas_coords", "alternative_tile"), &TileMap::get_used_cells_by_id, DEFVAL(TileSet::INVALID_SOURCE), DEFVAL(TileSetSource::INVALID_ATLAS_COORDS), DEFVAL(TileSetSource::INVALID_TILE_ALTERNATIVE));
|
||||
ClassDB::bind_method(D_METHOD("get_used_rect"), &TileMap::get_used_rect);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("map_to_local", "map_position"), &TileMap::map_to_local);
|
||||
|
@ -340,7 +340,7 @@ public:
|
||||
VisibilityMode get_navigation_visibility_mode();
|
||||
|
||||
// Cells accessors.
|
||||
void set_cell(int p_layer, const Vector2i &p_coords, int p_source_id = -1, const Vector2i p_atlas_coords = TileSetSource::INVALID_ATLAS_COORDS, int p_alternative_tile = 0);
|
||||
void set_cell(int p_layer, const Vector2i &p_coords, int p_source_id = TileSet::INVALID_SOURCE, const Vector2i p_atlas_coords = TileSetSource::INVALID_ATLAS_COORDS, int p_alternative_tile = 0);
|
||||
void erase_cell(int p_layer, const Vector2i &p_coords);
|
||||
int get_cell_source_id(int p_layer, const Vector2i &p_coords, bool p_use_proxies = false) const;
|
||||
Vector2i get_cell_atlas_coords(int p_layer, const Vector2i &p_coords, bool p_use_proxies = false) const;
|
||||
@ -377,6 +377,7 @@ public:
|
||||
Vector2i get_neighbor_cell(const Vector2i &p_coords, TileSet::CellNeighbor p_cell_neighbor) const;
|
||||
|
||||
TypedArray<Vector2i> get_used_cells(int p_layer) const;
|
||||
TypedArray<Vector2i> get_used_cells_by_id(int p_layer, int p_source_id = TileSet::INVALID_SOURCE, const Vector2i p_atlas_coords = TileSetSource::INVALID_ATLAS_COORDS, int p_alternative_tile = TileSetSource::INVALID_TILE_ALTERNATIVE) const;
|
||||
Rect2i get_used_rect(); // Not const because of cache
|
||||
|
||||
// Override some methods of the CanvasItem class to pass the changes to the quadrants CanvasItems
|
||||
|
Loading…
Reference in New Issue
Block a user