So I'm just getting going on Space Age. It is really fun. I build an automated defense wall. This wall has stations that request items and open and close the station based off of those request. All of those stations are called "Wall Defense" and the train loading station is "Wall Defense Supply." I used to set a train with a schedule of say 1 "Wall Defense Supply" and 10 "Wall Defense." Once the train rain through that schedule it automatically returned back to restock.
Now it is going from the loading station to one single wall defense and then heading straight back to the loading station. It isn't going through the station list. Any ideas?
Train schedules broken?
Re: Train schedules broken?
I assume that there are 2 issues here.
One is that either your supply train does not deliver everything the station needs, or your logic to close it when satisfied is buggy.
The other is that when the train is at one of those Wall Defense stations, the shortest way to a Wall Defense stations is to just stay where it is. I would add a "AND wating for at least 10 secs" condition to that part of the shedule and see if that is what is going on.
One is that either your supply train does not deliver everything the station needs, or your logic to close it when satisfied is buggy.
The other is that when the train is at one of those Wall Defense stations, the shortest way to a Wall Defense stations is to just stay where it is. I would add a "AND wating for at least 10 secs" condition to that part of the shedule and see if that is what is going on.
Re: Train schedules broken?
I think it's because trains no longer skip stations in 2.0.
Read here: https://factorio.com/blog/post/fff-395
Read here: https://factorio.com/blog/post/fff-395
Re: Train schedules broken?
I do the same, multiple wall supply stations that open up a train slot if there is demand for some item, closed otherwise.
A complete solution is not trivial, if you want the supply train go to multiple supply stations until it is exhausted and need to refill at the base.
If a supply train finished delivering items, there are 2 possible results:
- demand was satisfied
- demand was NOT satisfied
In case demand was NOT satisfied, the train must go to the base and refill.
In case demand was satisfied, the train can go to the next supply station with demand.
The station knows if demand was satisfied or not. It's the train limit or the activation condition, depending on how you open/close the station. if the station is still open, demand was not satisfied and the train about to leave needs to go to refill. If the station is closed, demand was satisfied and the train can go to the next open station.
So I send the corresponding signal to the train and this is what I use as interrupt condition. Interrupt condition reads signal and checks for this station closed AND supply stations in general are open, then insert a train schedule that makes the train go the (next) supply station. If the current station is still open do nothing, since the default schedule entry makes the train go to the base for refill. The same if every supply station is closed, in this case this interrupt should not trigger as well but instead fall back to the main schedule entry, which sends the train to the base for refill.
There needs to be an additional interrupt that will send trains to the supply stations that will work only if the train is about to leave the base or the depot. It will not read the signal, instead it sends the train unconditionally to the supply station. Interrupt condition: at base station OR at the depot.
The last piece of the puzzle is the depot. It buffers full supply trains until a supply station opens.
If a full train is at the base station and no supply stations are open, the train needs to go to the depot.
If a train is at a supply station and it is ready to serve the next supply station, but there is currently no next supply station open, it should go to the base and refill, even if was not exhausted. This is to avoid a half empty train that could be refilled in idle time.
So there is an interrupt for the depot, with the condition "at base refill" AND "supply station is full". As destination, the depot station. Before a train goes to the depot, it must have visited the refill station.
A complete solution is not trivial, if you want the supply train go to multiple supply stations until it is exhausted and need to refill at the base.
If a supply train finished delivering items, there are 2 possible results:
- demand was satisfied
- demand was NOT satisfied
In case demand was NOT satisfied, the train must go to the base and refill.
In case demand was satisfied, the train can go to the next supply station with demand.
The station knows if demand was satisfied or not. It's the train limit or the activation condition, depending on how you open/close the station. if the station is still open, demand was not satisfied and the train about to leave needs to go to refill. If the station is closed, demand was satisfied and the train can go to the next open station.
So I send the corresponding signal to the train and this is what I use as interrupt condition. Interrupt condition reads signal and checks for this station closed AND supply stations in general are open, then insert a train schedule that makes the train go the (next) supply station. If the current station is still open do nothing, since the default schedule entry makes the train go to the base for refill. The same if every supply station is closed, in this case this interrupt should not trigger as well but instead fall back to the main schedule entry, which sends the train to the base for refill.
There needs to be an additional interrupt that will send trains to the supply stations that will work only if the train is about to leave the base or the depot. It will not read the signal, instead it sends the train unconditionally to the supply station. Interrupt condition: at base station OR at the depot.
The last piece of the puzzle is the depot. It buffers full supply trains until a supply station opens.
If a full train is at the base station and no supply stations are open, the train needs to go to the depot.
If a train is at a supply station and it is ready to serve the next supply station, but there is currently no next supply station open, it should go to the base and refill, even if was not exhausted. This is to avoid a half empty train that could be refilled in idle time.
So there is an interrupt for the depot, with the condition "at base refill" AND "supply station is full". As destination, the depot station. Before a train goes to the depot, it must have visited the refill station.