No time to play myself at the moment, but curious what other people experiences are!

  • Drigo
    link
    fedilink
    English
    arrow-up
    4
    ·
    4 days ago

    Trains is also one of my favorite aspects of the game!

    I also made the parametrized train stations first and the variable to for stack sizes is so nice!

    I also tried making a schedule with only interrupts for all trains. But that don’t really works because the trains always just goes to the closest outpost. But I have been thinking if I connect every train stop to a radar. I can also check demand for a specific resource before I enable the stop

    And for my mall, I thought about making a single fluid train stop for all fluids. Because pumps can have a filter now, so maybe it can work, haven’t tried it tho

    • VoterFrog@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 days ago

      You can also set each train stop’s priority via circuit. I’ve been setting it based on how badly a train is needed at that station.

      • Drigo
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        Are you using the radar to check which station needs resources?

        • VoterFrog@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          ·
          3 days ago

          I’m using the radar network for dispatch and priority for tie breaking/to make sure the resources are distributed evenly.

          All my loading stations are simply called “Cargo Pickup” and all of my cargo trains go to any of them with an opening. Once there, the station reports on the red wire the ID of the train in the channel corresponding to the item being loaded (unless another train is already being reported by another station with the same items).

          On the demand side, stations look for the ID on the item they need. They copy the ID into the green network on the channel corresponding to their station name. In the simple case, a station serving copper ore to copper smelters copies the train ID from copper on the red network to copper on the green network. But stations can also request multiple ingredients in which case they have some other symbol in their name besides copper ore. (Of course, here too the copying only happens if no other station is requesting a train on that same channel).

          Back on the supply side, the station looks through all the IDs on the green network and sends the ones that match the waiting train to the train. The train uses the symbols to activate an interrupt to go to the corresponding station to deliver the goods.

          I just set this up today. I haven’t perfected it yet. One minor hiccup is handling the fact that you have no way to atomically access a channel. So two stations could request on the same channel at the same time, corrupting the ID. But that only happens if the stations are activated to make a demand on the exact same tick. It’s not so much that it’s a constant problem, it just bothers me that it could be.

    • Cethin@lemmy.zip
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 days ago

      How I have my new system is any station requesting items puts how many trains it will need to fill all requests (and subtracts inbound trains) into the radar network (using the item it’s requesting as the channel). At the drop off stations, it reads the request and picks the largest one, and that gets sent to the train at the station. The train will then take that item and use it in the interrupt. In theory this all makes sense. I’m excited to get it set up.

      • Drigo
        link
        fedilink
        English
        arrow-up
        3
        ·
        3 days ago

        Ah nice, I have yet to try out the new radar signal stuff. But am equally exited to test all my theories in the weekend!

        • Cethin@lemmy.zip
          link
          fedilink
          English
          arrow-up
          3
          ·
          edit-2
          3 days ago

          An update after getting my system running, one important thing to know is apparently trains need some default schedule for interrupts to function. I spent at least an hour trying to figure out what was wrong with my circuit based interrupt until I tried putting a station destination into its schedule and it just started working. Now I just need to replace all my stations.

          I’m now decoupling my bus from the furnaces and making them train based. I’m excited to see it all working and being demand-based.

          I’m now thinking about making my furnaces material agnostic and the outputs just get sorted by type. Maybe that’s a project better left for later so I can actually play the DLC…

          Edit: I realized why it needed a station in the schedule. It can’t read the circuit network unless it’s actively stationed at the station. If it’s just sitting there but not actively set to be there, it doesn’t receive the signal. That’s reasonable I guess, but good to know.