[Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

This subforum contains all the issues which we already resolved.
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

[Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Twisted_Code »

Description
If, while holding the cut tool, I drag the selection cursor over some tile ghosts, it will delete them instead of cutting (i.e. it will deconstruct but not add them to the clipboard) if any entities are also in the selection area
Expected result
Anything deconstructed by the cut tool should be added to the clipboard, and tile ghosts should not be selected unless actual tiles would be selected.
Actual result
Tiles are deconstructed as if they are entities, but not added to the clipboard
Repro
Initially it was happening always, but then it stopped. I think these steps are incomplete.
  1. Make a sandbox world
  2. Place some tile ghosts
  3. Place another entity nearby
  4. Click the cut tool
  5. Drag an area around them both
  6. Check your clipboard
Hypothesis, conjecture, speculation
I suspect this is because tile ghosts inherits from EntityPrototype, whereas actual tiles inherit from TilePrototype. The tile ghosts get picked up because they our entities, but, since the clipboard is only expecting entities (and doesn't store ghosts as ghosts), it rejects the tiles that are passed to it.
Please let me know if my speculation was at all accurate. I'm curious what's going on here!
Related bug
(can report separately but the repro is almost exactly the same, just holding a different item on the cursor)
While testing, I observed that this issue also occurs with the default deconstruction planner; however, at least in that case there's a way to filter it so the tiles don't go "missing", and it only happens in "Normal" selection mode, not in "Never".
attachments
Screenshot (from when I first noticed the issue; this deconstruction planner is not on "always" mode):
20250318201618_1.jpg
20250318201618_1.jpg (716.42 KiB) Viewed 1228 times
Minimal repro save, maybe?:
SA2.0.41-Cut tool tile ghost bug.zip
(2.3 MiB) Downloaded 16 times
Log:
factorio-current.log
(7.43 KiB) Downloaded 16 times
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: Cut tool removes tile ghosts without adding to clipboard, if entities were also selected

Post by Twisted_Code »

Regarding the inconsistent repro: I'm not sure what EXACTLY caused it to stop happening, but I think it was one of the following:
  • Toggling the Deconstruction Planner (as seen in the inventory of the attached save) to "never" and back again
  • Restarting the game
Either way, the issue has stopped happening, at least with the cut tool, across all save files, so whatever is (or rather was) causing this seems to be independent of any savestate.
However, it's still happening with the Deconstruction Planner, which is set to Normal, depicted in the (above) screenshot of my :space-age: Freeplay save.
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
User avatar
Lou
Factorio Staff
Factorio Staff
Posts: 255
Joined: Mon Nov 30, 2020 10:50 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Lou »

Thanks for the report, since 2.0.43. tile ghosts will no longer be removed when cutting with entities.

For the purposes of deconstruction planner, tile ghosts are osrt of being treated as both entities (because they are) and tiles (because they are ghosts of them) at the same time. That's why on (tile selection mode) NEVER they are excluded (because they "are tiles"), but for NORMAL they are included with other entities (because they are also entities). So that part is not a bug.

On the other hand, for blueprint, tileghosts are just tiles. The combination of these two default behaviours caused the issue with the cutting.

Not sure what is up with your reproduction inconsistency, maybe picking wrong decon planner by accident? (that one happened to me during trials :) )
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Twisted_Code »

Lou wrote: Thu Mar 20, 2025 6:13 pm Thanks for the report, since 2.0.43. tile ghosts will no longer be removed when cutting with entities.

For the purposes of deconstruction planner, tile ghosts are osrt of being treated as both entities (because they are) and tiles (because they are ghosts of them) at the same time. That's why on (tile selection mode) NEVER they are excluded (because they "are tiles"), but for NORMAL they are included with other entities (because they are also entities). So that part is not a bug.

On the other hand, for blueprint, tileghosts are just tiles. The combination of these two default behaviours causedthe issue with the cutting.
I'm glad to hear the main issue is fixed. However, I still think I am reasonable to expect tile ghosts to be excluded in "normal" mode if actual entities get selected, since from a design standpoint, they are tiles. The copy/paste/cut/Decon/upgrade tools should only care about the result that would end up in a blueprint.
Lou wrote: Thu Mar 20, 2025 6:13 pm Not sure what is up with your reproduction inconsistency, maybe picking wrong decon planner by accident? (that one happened to me during trials :) )
There was only one Decon planner aside from the default, and the thing I was EXPLICITLY trying to repo was with the issue with the cut tool, since that was the most disruptive issue out of the bunch. One time I tried to cut and it cut the tiles and chest but only saved the chest; when I tried again later, it only cut the chest. I can't figure out what I did differently, as among other things I tried dragging in different directions (i.e. so the first and second corner of the selection area was different)...
Last edited by Twisted_Code on Fri Mar 21, 2025 9:27 pm, edited 2 times in total.
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
User avatar
Lou
Factorio Staff
Factorio Staff
Posts: 255
Joined: Mon Nov 30, 2020 10:50 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Lou »

Twisted_Code wrote: Fri Mar 21, 2025 5:07 am ...I still think I am reasonable to expect tile ghosts to be excluded in "normal" mode if actual entities get selected, since from a design standpoint, they are tiles. The copy/paste/cut/Decon/upgrade tools should only care about the result that would end up in a blueprint.
Well the issue was debated few years back. one argument is that we already treat tile ghosts as entities they are in few user-facing guis. It is not a clear cut (hehe) issue, but I don't think we will be changing it soon.
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Twisted_Code »

That seems more a matter of convention/convenience than of necessity or even consistency. Respectfully, I hope you're wrong :D
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Twisted_Code »

Lou wrote: Thu Mar 20, 2025 6:13 pm Thanks for the report, since 2.0.43. tile ghosts will no longer be removed when cutting with entities.
Just tested (rather accidentally...). It's still happening
03-22-2025, 20-08-42.png
03-22-2025, 20-08-42.png (10.38 MiB) Viewed 893 times
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
synchromach
Burner Inserter
Burner Inserter
Posts: 18
Joined: Tue Dec 31, 2024 9:03 pm
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by synchromach »

Twisted_Code wrote: Sun Mar 23, 2025 12:09 am It's still happening
2.0.43 is not out yet
User avatar
Twisted_Code
Fast Inserter
Fast Inserter
Posts: 109
Joined: Sat Jun 06, 2015 1:15 am
Contact:

Re: [Lou][2.0.41] Cut tool removes tile ghosts without adding to clipboard, if entities also selected

Post by Twisted_Code »

Oh, my bad. This is what I get for trying to read the version number in the title bar without my glasses. 42 != 43, but blur them enough...
How to report bugs effectively (archived version)because everyone should know this.
Factorio 1.0 tech tree, a visual reference guide.
Post Reply

Return to “Resolved Problems and Bugs”