Simple Questions and Short Answers

Don't know how to use a machine? Looking for efficient setups? Stuck in a mission?
User avatar
eradicator
Smart Inserter
Smart Inserter
Posts: 5206
Joined: Tue Jul 12, 2016 9:03 am
Contact:

Re: Simple Questions and Short Answers

Post by eradicator »

Bene8493 wrote:
Fri Sep 27, 2019 12:47 pm
Is this a known bug? Will this get fixed?
It's officially "not a bug" because the "they take turns" behavior is just a random side-effect of how the engine works. I can't find the forum thread right now, but here's a reddit thread where @Rseding91 (a dev) states exactly that: https://www.reddit.com/r/factorio/comme ... concerned/
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.

Pi-C
Smart Inserter
Smart Inserter
Posts: 1644
Joined: Sun Oct 14, 2018 8:13 am
Contact:

Re: Simple Questions and Short Answers

Post by Pi-C »

How do I get the name of my mod in the data stage? I know there is mods["name"] to check for a certain mod, but it doesn't allow me to read the name of the calling mod.
A good mod deserves a good changelog. Here's a tutorial (WIP) about Factorio's way too strict changelog syntax!

Bene8493
Manual Inserter
Manual Inserter
Posts: 4
Joined: Wed Feb 27, 2019 10:52 pm
Contact:

Re: Simple Questions and Short Answers

Post by Bene8493 »

eradicator wrote:
Fri Sep 27, 2019 1:47 pm
It's officially "not a bug" because the "they take turns" behavior is just a random side-effect of how the engine works. I can't find the forum thread right now, but here's a reddit thread where @Rseding91 (a dev) states exactly that: https://www.reddit.com/r/factorio/comme ... concerned/
Thanks a lot. I think it should be a feature. I use assemblers with multiple outputs quite often (as most probably do) and always assumed that they would take out equally. After 700 hours of playing this is the first time I noticed that's not the case. I wonder why this isn't implemented as it just doesn't seem very factoriolike to behave in a not defined way. Is it not possible without sacrificing a lot of performance? Of course you can just build a little circuit network and solve it like that, but that would cost performance as well and shouldn't be necessary imo. Or you can carefully align your factory with the chunks but who wants to do that? :|
Hesitating to make a feature request since the devs are aware of it.

User avatar
eradicator
Smart Inserter
Smart Inserter
Posts: 5206
Joined: Tue Jul 12, 2016 9:03 am
Contact:

Re: Simple Questions and Short Answers

Post by eradicator »

Bene8493 wrote:
Fri Sep 27, 2019 3:07 pm
Is it not possible without sacrificing a lot of performance?
Hesitating to make a feature request since the devs are aware of it.
Factorio is a huge simulation, every bit of the factory is updated in order. Inserter 1, Inserter 2, etcpp. And most of the things affect each other. So things that seem trivial to solve at a glance are often really really damn hard if you try to solve them for every edge case. For example if inserters should be guaranteed to take "one after another" from an underfilled assembler (which is in itself an edge-case when looking at common large scale production), then this "order" has to be stored somewhere. "Storing extra data" is the No1 reason that modding interface requests are denied with. And then you would also have to come up with a solution for when the player adds or removes inserters mid-cycle. Or if one of the inserters has power but the others don't, etc pp. I hope you get the point.
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.

csduff
Fast Inserter
Fast Inserter
Posts: 110
Joined: Thu Nov 22, 2018 3:42 pm
Contact:

Re: Simple Questions and Short Answers

Post by csduff »

Does anyone know if there is a way to synchronize research between save games?

I have a testing world (cheats enable, infinite chests, infinite energy, etc.) that I mainly use to create blueprints for use in my main playthrough. I would love to be able to ensure that I don't accidentally have access to higher level of technology than I have unlocked in my main playthrough.

nog
Inserter
Inserter
Posts: 32
Joined: Wed Mar 04, 2015 12:13 pm
Contact:

Re: Simple Questions and Short Answers

Post by nog »

Not to my knowledge.

I used to do like you, use a cheaty map/save, to debug my OCD designs. In editor mode you can "un-research" techs in the researches window, it's the best way I found to "sync" the researches.

Pi-C
Smart Inserter
Smart Inserter
Posts: 1644
Joined: Sun Oct 14, 2018 8:13 am
Contact:

Re: Simple Questions and Short Answers

Post by Pi-C »

Ẃho is the driver if two or more players are riding on the same train that is set to manual mode?

Vehicles with type == "car" may have a driver (vehicle.get_driver()) and a passenger (vehicle.get_passenger()). The driver does the driving, and the passenger either does nothing or may control the weapons.

Vehicles with type == "locomotive", type == "artillery-wagon", type == "cargo-wagon", and type == "fluid-wagon" may only have a driver. With these, vehicle.get_passenger() will fail with the error "Entity is not car".

If player A enters the locomotive, he is driver and can manually control the train. Player B can't enter that locomotive (rolling stock only has room for one person), but could enter any other unoccupied locomotive or wagon of that train. B would also be driver.

I've tested this locally with two different instances of Factorio, and both players could control the train. However, I couldn't test this with both players trying to control the train at the same time. So what happens if two or more players are on the same train and at least two of them try to control it simultaneously? Will the train stop if A brakes -- or will it accelerate because B has hit <W> at the same tick?
A good mod deserves a good changelog. Here's a tutorial (WIP) about Factorio's way too strict changelog syntax!

User avatar
eradicator
Smart Inserter
Smart Inserter
Posts: 5206
Joined: Tue Jul 12, 2016 9:03 am
Contact:

Re: Simple Questions and Short Answers

Post by eradicator »

Pi-C wrote:
Sat Oct 12, 2019 10:03 am
Will the train stop if A brakes -- or will it accelerate because B has hit <W> at the same tick?
Pure speculation: If there's no special code to handle multiple drivers it'll try to do both at the same time. And breaking will probably win.
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.

Pi-C
Smart Inserter
Smart Inserter
Posts: 1644
Joined: Sun Oct 14, 2018 8:13 am
Contact:

Re: Simple Questions and Short Answers

Post by Pi-C »

eradicator wrote:
Sun Oct 13, 2019 1:23 pm
Pi-C wrote:
Sat Oct 12, 2019 10:03 am
Will the train stop if A brakes -- or will it accelerate because B has hit <W> at the same tick?
Pure speculation: If there's no special code to handle multiple drivers it'll try to do both at the same time. And breaking will probably win.
I thought everything would have to be deterministic in order to work in multiplayer … How about one player steering to the left, the other to the right, then? Did anybody try this in a real multiplayer game yet? :-)
A good mod deserves a good changelog. Here's a tutorial (WIP) about Factorio's way too strict changelog syntax!

jackiebonds
Manual Inserter
Manual Inserter
Posts: 3
Joined: Mon Oct 14, 2019 11:15 am
Contact:

Re: Simple Questions and Short Answers

Post by jackiebonds »

Thanks, I don't have the mk2 power armor yet. Next mission is to craft it, then :D

User avatar
eradicator
Smart Inserter
Smart Inserter
Posts: 5206
Joined: Tue Jul 12, 2016 9:03 am
Contact:

Re: Simple Questions and Short Answers

Post by eradicator »

Pi-C wrote:
Sun Oct 13, 2019 3:32 pm
eradicator wrote:
Sun Oct 13, 2019 1:23 pm
Pi-C wrote:
Sat Oct 12, 2019 10:03 am
Will the train stop if A brakes -- or will it accelerate because B has hit <W> at the same tick?
Pure speculation: If there's no special code to handle multiple drivers it'll try to do both at the same time. And breaking will probably win.
I thought everything would have to be deterministic in order to work in multiplayer … How about one player steering to the left, the other to the right, then? Did anybody try this in a real multiplayer game yet? :-)
I don't see how determinism relates to this. Just speculating that it doesn't matter who presses the keys. If Player1 presses W *and* A at the same time, or if the keys are pressed by different people the effect should/might/would be the same.
Author of: Belt Planner, Hand Crank Generator, Screenshot Maker, /sudo and more.
Mod support languages: 日本語, Deutsch, English
My code in the post above is dedicated to the public domain under CC0.

User avatar
thereaverofdarkness
Filter Inserter
Filter Inserter
Posts: 558
Joined: Wed Jun 01, 2016 5:07 am
Contact:

Re: Simple Questions and Short Answers

Post by thereaverofdarkness »

Pi-C wrote:
Sun Oct 13, 2019 3:32 pm
I thought everything would have to be deterministic in order to work in multiplayer
It is as deterministic as possible. Kovarex has spoken multiple times on the issue of determinism in Factorio, as the game was supposed to be entirely deterministic at the outset, even without multiplayer. The addition of multiplayer revealed several determinism errors and helped improve the overall determinism of the game. If any of you find a glitch in which a thing is not deterministic, or the game does not know how to handle a multiplayer input, you should report it in the bugs forum and the devs will be very excited to see and fix it.

Pi-C
Smart Inserter
Smart Inserter
Posts: 1644
Joined: Sun Oct 14, 2018 8:13 am
Contact:

Re: Simple Questions and Short Answers

Post by Pi-C »

thereaverofdarkness wrote:
Mon Oct 28, 2019 8:00 pm
Pi-C wrote:
Sun Oct 13, 2019 3:32 pm
I thought everything would have to be deterministic in order to work in multiplayer
If any of you find a glitch in which a thing is not deterministic, or the game does not know how to handle a multiplayer input, you should report it in the bugs forum and the devs will be very excited to see and fix it.
I really don't know whether the game knows how to handle multiplayer input because I've only ever used a simulated multiplayer game (i.e. switching between two game instances running in parallel, so input will only come from one instance at any given time -- thus it's not possible to have contradicting inputs at the same tick). That's why I've been asking here how such situations would be handled in a real multiplayer game. :-)
A good mod deserves a good changelog. Here's a tutorial (WIP) about Factorio's way too strict changelog syntax!

Trebor
Filter Inserter
Filter Inserter
Posts: 288
Joined: Sun Apr 30, 2017 1:39 pm
Contact:

Re: Simple Questions and Short Answers

Post by Trebor »

Is there an UPS difference between an entity connected to an electric network that has no fuel and one connected to an open switch?

User avatar
disentius
Filter Inserter
Filter Inserter
Posts: 694
Joined: Fri May 12, 2017 3:17 pm
Contact:

Re: Simple Questions and Short Answers

Post by disentius »

Interesting quiestion: tested with an inserter chest to chest

As far as i can see: no. in both cases the inserter stays active, aka bad for ups.
inserter active, can take from chest.png
inserter active, can take from chest.png (386.99 KiB) Viewed 5336 times
inserter inactive, can not take from chest.png
inserter inactive, can not take from chest.png (316.27 KiB) Viewed 5336 times
inserter active, no electricity generated.png
inserter active, no electricity generated.png (274.74 KiB) Viewed 5336 times

RickJS
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Tue Jan 15, 2019 2:29 am
Contact:

Re: Simple Questions and Short Answers

Post by RickJS »

I just discovered that I am not getting alerts that aliens are attacking (neither sounds nor the flashing icon to the right of the tool bar). I haven't found any setting that controls this. Where should I look next for the cause?

RickJS
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Tue Jan 15, 2019 2:29 am
Contact:

Re: Simple Questions and Short Answers

Post by RickJS »

Added info: the little yellow triangles with the exclamation points do show on the map, but not beside the quickbar.

User avatar
disentius
Filter Inserter
Filter Inserter
Posts: 694
Joined: Fri May 12, 2017 3:17 pm
Contact:

Re: Simple Questions and Short Answers

Post by disentius »

Do you have any radars placed?

RickJS
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Tue Jan 15, 2019 2:29 am
Contact:

Re: Simple Questions and Short Answers

Post by RickJS »

disentius wrote:
Sun Dec 01, 2019 9:54 am
Do you have any radars placed?
Yes. Typically Radar 3 from Bob's Warfare.

I've been jumping around between various saves, at different revisions, and different mod collections. So I'm not sure when & where the problem showed up. Sorry about that.

RickJS
Long Handed Inserter
Long Handed Inserter
Posts: 56
Joined: Tue Jan 15, 2019 2:29 am
Contact:

Re: Simple Questions and Short Answers

Post by RickJS »

Another new feature/bug is that I can no longer zoom in enough to see the actual landscape view, even with the hot keys.

My latest mod additions are Orbital Ion Cannon, The Fat Controller, Air Filtering, Noxy's Waterfill, Dectorio, Bio Industries, and Robot Army. Are any of these known to be problematic?

Post Reply

Return to “Gameplay Help”