[2.1] Unintuitive force behaviour on LuaRendering methods

Place to ask discuss and request the modding support of Factorio. Don't request mods here.
User avatar
BraveCaperCat
Filter Inserter
Filter Inserter
Posts: 533
Joined: Mon Jan 15, 2024 10:10 pm
Contact:

[2.1] Unintuitive force behaviour on LuaRendering methods

Post by BraveCaperCat »

Quite strangely, the draw methods on LuaRendering will draw to all forces if the forces parameter is set to an empty table. Thankfully, this behaviour is documented, (otherwise this would definitely be going in Bug Reports) but I don't see any reason why anyone would want this behaviour or how it could arise without explicitly adding it in.

I'd like this confusing and unintuitive behaviour to be removed, or if not, an explanation of why it's there to begin with.
If you want to see the mods I've made, press one. If you need me to update a mod to 2.0, press two. If you're looking for QA, press three. If you've been waiting over 1 and a half years for Digital Age, bad luck.
Rseding91
Factorio Staff
Factorio Staff
Posts: 17240
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: [2.1] Unintuitive force behaviour on LuaRendering methods

Post by Rseding91 »

Why?
If you want to get ahold of me I'm almost always on Discord.
robot256
Smart Inserter
Smart Inserter
Posts: 1433
Joined: Sun Mar 17, 2019 1:52 am
Contact:

Re: [2.1] Unintuitive force behaviour on LuaRendering methods

Post by robot256 »

BraveCaperCat wrote: Sat Jul 18, 2026 2:40 pm Quite strangely, the draw methods on LuaRendering will draw to all forces if the forces parameter is set to an empty table. Thankfully, this behaviour is documented, (otherwise this would definitely be going in Bug Reports) but I don't see any reason why anyone would want this behaviour or how it could arise without explicitly adding it in.

I'd like this confusing and unintuitive behaviour to be removed, or if not, an explanation of why it's there to begin with.
What should it do instead? Crash the game? Create invisible rendering objects?
My mods: Multiple Unit Train Control, RGB Pipes, Shipping Containers, Rocket Log, Smart Artillery Wagons.
Maintainer of Auto Deconstruct, Cargo Ships, Vehicle Wagon, Honk, Shortwave.
eugenekay
Smart Inserter
Smart Inserter
Posts: 1212
Joined: Tue May 15, 2018 2:14 am
Contact:

Re: [2.1] Unintuitive force behaviour on LuaRendering methods

Post by eugenekay »

From an API design perspective, leaving forces and players as optional parameters simplifies the function-calling stack in the trivial case of a Singleplayer game or Multiplayer-all-players-on-the-same-force (default), since you do not need to worry about them at all. If you are trying to render only to a specific player/force chances are good that you know what you are doing. Changing them to required parameters at this point would create Runtime errors for every mod which relies upon this default behaviour - leading to more Bug Reports.
robot256
Smart Inserter
Smart Inserter
Posts: 1433
Joined: Sun Mar 17, 2019 1:52 am
Contact:

Re: [2.1] Unintuitive force behaviour on LuaRendering methods

Post by robot256 »

eugenekay wrote: Sat Jul 18, 2026 4:43 pm From an API design perspective, leaving forces and players as optional parameters simplifies the function-calling stack in the trivial case of a Singleplayer game or Multiplayer-all-players-on-the-same-force (default), since you do not need to worry about them at all. If you are trying to render only to a specific player/force chances are good that you know what you are doing. Changing them to required parameters at this point would create Runtime errors for every mod which relies upon this default behaviour - leading to more Bug Reports.
I don't think OP minds that nil=all forces. I can speculate (based on my own similar experiences) they just got frustrated after spending a lot of time debugging some code that selectively removes forces from a list which appeared to be fine until it removed all the forces from the list and then seemed like the filter wasn't working at all.

The documentation is there, so the solution is trivial: "if table_size(force_list)>0 then draw(...)". If you want to argue that forces={} should crash, then you still need the if statement. I don't know what value a render object visible by no forces would have.
My mods: Multiple Unit Train Control, RGB Pipes, Shipping Containers, Rocket Log, Smart Artillery Wagons.
Maintainer of Auto Deconstruct, Cargo Ships, Vehicle Wagon, Honk, Shortwave.
eugenekay
Smart Inserter
Smart Inserter
Posts: 1212
Joined: Tue May 15, 2018 2:14 am
Contact:

Re: [2.1] Unintuitive force behaviour on LuaRendering methods

Post by eugenekay »

BraveCaperCat wrote: Sat Jul 18, 2026 2:40 pmI don't see any reason why anyone would want this behaviour or how it could arise without explicitly adding it in.

I'd like this confusing and unintuitive behaviour to be removed, or if not, an explanation of why it's there to begin with.
robot256 wrote: Sat Jul 18, 2026 6:28 pmI don't think OP minds that nil=all forces.
:?: :!: :?:

Null/nil generally means that no argument was provided to the function; an empty table would value-check to null since no forces match the selector, so the default behavior (all forces) makes total sense.
Post Reply

Return to “Modding interface requests”