[13.9] Inserting modules manualy wont cancel robot job order
[13.9] Inserting modules manualy wont cancel robot job order
1. Make blueprint with assemblers and any modules.
2. Place blueprint from above, but make sure not to have any modules in network.
3. Wait till robots place assemblers without modules, blue robot logo will show missing modules.
4. Insert modules by hand, blue robot logo will still show.
5. Add modules to network, and robots will replace the ones you added the modules to.
2. Place blueprint from above, but make sure not to have any modules in network.
3. Wait till robots place assemblers without modules, blue robot logo will show missing modules.
4. Insert modules by hand, blue robot logo will still show.
5. Add modules to network, and robots will replace the ones you added the modules to.
Re: [13.9] Inserting modules manualy wont cancel robot job order
That's by design, if you want to cancel the robot delivery of modules you can right click the little icon on the entity or deconstruct the icon to get rid of it.
If you want to get ahold of me I'm almost always on Discord.
-
- Fast Inserter
- Posts: 171
- Joined: Sun Feb 17, 2013 4:31 pm
- Contact:
Re: [13.9] Inserting modules manualy wont cancel robot job order
Not trying to argue, but that seems inconsistent with existing mechanics. If you place an entity manually, robots will not place another entity over it again.
Re: [13.9] Inserting modules manualy wont cancel robot job order
This is a fair argument, and i do not think it would be so difficult to remove the proxy request when modules are manually placed into the assembling machineRockstar04 wrote:Not trying to argue, but that seems inconsistent with existing mechanics. If you place an entity manually, robots will not place another entity over it again.
Re: [13.9] Inserting modules manualy wont cancel robot job order
I can look into it. How would you propose that it know the different between user inserted modules and modules it put into the entity?Klonan wrote:This is a fair argument, and i do not think it would be so difficult to remove the proxy request when modules are manually placed into the assembling machineRockstar04 wrote:Not trying to argue, but that seems inconsistent with existing mechanics. If you place an entity manually, robots will not place another entity over it again.
If you want to get ahold of me I'm almost always on Discord.
-
- Fast Inserter
- Posts: 171
- Joined: Sun Feb 17, 2013 4:31 pm
- Contact:
Re: [13.9] Inserting modules manualy wont cancel robot job order
Is the code set up where there is just a simple list where the order of the modules is not guaranteed or is it an array? Psudocode provided since not all languages are consistent (tables, hash, array, list, etc.)Rseding91 wrote:I can look into it. How would you propose that it know the different between user inserted modules and modules it put into the entity?Klonan wrote:This is a fair argument, and i do not think it would be so difficult to remove the proxy request when modules are manually placed into the assembling machineRockstar04 wrote:Not trying to argue, but that seems inconsistent with existing mechanics. If you place an entity manually, robots will not place another entity over it again.
psudocode list
Code: Select all
[
speed1,
speed1,
effectivity1
]
psudocode array
Code: Select all
{
moduleSlot1 => speed1,
moduleSlot2 => effectivity1,
moduleSlot3 => null,
moduleSlot4 => speed1
}
Re: [13.9] Inserting modules manualy wont cancel robot job order
Modules-to-be-delivered don't maintain any kind of "which slot should this go into". They simply keep an item name and count.
If you want to get ahold of me I'm almost always on Discord.
-
- Fast Inserter
- Posts: 171
- Joined: Sun Feb 17, 2013 4:31 pm
- Contact:
Re: [13.9] Inserting modules manualy wont cancel robot job order
Then rather than the modules being lost (overwritten) the construction robot should try to insert them into the first open slot and if the entity has the max number of modules already fail (just like player cant shift click modules over other modules). Then just use the existing logic for trying to "get rid" of the module in storage or hovering until storage is available.Rseding91 wrote:Modules-to-be-delivered don't maintain any kind of "which slot should this go into". They simply keep an item name and count.
Re: [13.9] Inserting modules manualy wont cancel robot job order
That's how it works now.Rockstar04 wrote:Then rather than the modules being lost (overwritten) the construction robot should try to insert them into the first open slot and if the entity has the max number of modules already fail (just like player cant shift click modules over other modules). Then just use the existing logic for trying to "get rid" of the module in storage or hovering until storage is available.Rseding91 wrote:Modules-to-be-delivered don't maintain any kind of "which slot should this go into". They simply keep an item name and count.
If you want to get ahold of me I'm almost always on Discord.
-
- Fast Inserter
- Posts: 171
- Joined: Sun Feb 17, 2013 4:31 pm
- Contact:
Re: [13.9] Inserting modules manualy wont cancel robot job order
I guess I will have to test this myself if I have time tonight, I had made the assumption that KrzysD meant that modules the player manually places in the entity vanished (were overwritten) when a robot placed the ones included in the blueprint.
Re: [13.9] Inserting modules manualy wont cancel robot job order
Rseding91 wrote:That's by design, if you want to cancel the robot delivery of modules you can right click the little icon on the entity or deconstruct the icon to get rid of it.
Edit: just read the rest of the posts, phone formatted it weird and I didn't know you guys figured out what I'm talking about.
Re: [13.9] Inserting modules manualy wont cancel robot job order
Right now the module requester just waits for modules to be delivered and attempts to put them in the module slot of the machine it's attached to.
You're saying it should cancel the requests if you manually put modules in the machine but it's not that simple:
You're saying it should cancel the requests if you manually put modules in the machine but it's not that simple:
- What if you put modules in that aren't being requested but the requesting modules can still be inserted
- What if you put modules in that *are* being requested but the requesting modules can still be inserted
- What if you put modules in that aren't being requested and now only some of the requesting modules can be inserted
- What if modules are requested, partially fulfilled and then you switch the fulfilled ones out for others - should it keep trying to deliver the other requested modules or abort all of them
If you want to get ahold of me I'm almost always on Discord.