Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added TileMap::set_cell_region() #42194

Closed
wants to merge 3 commits into from
Closed

Conversation

dariomnz
Copy link

Implementation of the new feature that was proposed in godotengine/godot-proposals#1538

@dariomnz dariomnz requested a review from a team as a code owner September 19, 2020 12:46
@Calinou Calinou added cherrypick:3.x Considered for cherry-picking into a future 3.x release enhancement topic:core labels Sep 19, 2020
@Calinou Calinou added this to the 4.0 milestone Sep 19, 2020
@dariomnz dariomnz force-pushed the master branch 2 times, most recently from 3cd7b29 to f303d22 Compare September 19, 2020 14:27
Copy link
Contributor

@NathanLovato NathanLovato left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some notes about the docs. I'll let you add the BBCode for code, I'm writing this on the phone. Great addition, thanks!

<argument index="6" name="autotile_coord" type="Vector2" default="Vector2( 0, 0 )">
</argument>
<description>
Sets the tiles in the given region.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion to avoid repeating the function name:

Assigns the tile of id tile to all cells in the rectangular region defined by start and end.

Sets the tiles in the given region.
An index of [code]-1[/code] clears the region.
Optionally, the tile can also be flipped, transposed, or given autotile coordinates. The autotile coordinate refers to the column and row of the subtile.
[b]Note:[/b] Data such as navigation polygons and collision shapes are not immediately updated for performance reasons.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you know exactly when they update? If on the next physics step for instance, it'd be useful to mention it. The more precise the reference, the better.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the same as the method set_cell but for a region. This method use a call_defered for the update_dirty_quadrants. I think it is, but I'm not pretty sure that this update is in the next physics step.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When something is deferred, it's always called on the idle frame. Not sure if it's even worth mentioning.

@@ -893,6 +893,34 @@ void TileMap::set_cell(int p_x, int p_y, int p_tile, bool p_flip_x, bool p_flip_
used_size_cache_dirty = true;
}

void TileMap::set_cell_region(const Vector2 &p_start, const Vector2 &p_end, int p_tile, bool p_flip_x, bool p_flip_y, bool p_transpose, Vector2 p_autotile_coord) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of P_start and p_end, you should use a single Rect2i. See https://docs.godotengine.org/en/latest/classes/class_rect2i.html

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And to simplify the implementation, you could simply use p_rect = p_rect.abs(), as it automatically does what your are doing in the lines after.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, thank you for the advice.

@zzz-assault
Copy link
Contributor

zzz-assault commented Sep 19, 2020

Great to see another proposal to adress the set_cell performance issues :)

Just for the sake of completeness, there are two more pending PR's for this topic.

Back to your PR, this function has the same issue as the previous two = flip and transpose is always the same.
In addition there is no flexibility for the TILE ID, it's the same for the whole region, was this intended? (if yes, it's limiting the usability quite a lot)

@dariomnz
Copy link
Author

@zzz-assault Yes, the same TILE_ID is intended. This is designed for when you have to fill a tilemap with the same kind of tiles, and then for example create rooms by removing the tiles. You can also make rectangles that have the same tiles to use this method.

@zzz-assault
Copy link
Contributor

zzz-assault commented Sep 20, 2020

Understood, as said this seems to be a very narrow usecase. Allowing flexible tile per set cell within region will cover all usecases (incl. yours). In case of new function I'll prefer the flexible solutions.

Also setting a huge number of same tiles as border or background seems to be very costy (performance). If it's only cosmetic background you could simply use a sprite and with region enabled (texture with only this bg tile and repeat activated) and expand region to the size of the tilemap or max map you need. Then add in Tilemap only rooms. This is some trick I used in the past and reduces liading time and required memory by a huge amount.

@akien-mga
Copy link
Member

Given the discussion on godotengine/godot-proposals#1538 and above, it's not clear whether this would actually:

  • Improve performance in the way users expect it, as this seems to be the main motivation for the change
  • Actually provide a facility which is flexible enough for the use cases it should support

So after discussing with @groud we suggest going back to the drawing board for now and continuing the discussion in godotengine/godot-proposals#1538 to really narrow down on a consensual change that would address a well defined (and benchmarked) problem.

@akien-mga akien-mga closed this Jul 4, 2022
@akien-mga akien-mga added archived and removed cherrypick:3.x Considered for cherry-picking into a future 3.x release labels Jul 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants