Greetings fellow city-builders and welcome to another Sunset Harbor Dev Diary!Ever since Cities: Skylines was released, we have received hundreds of requests for one specific feature: Trolleybuses! And to go along with every one of those requests, vivid debates took place within the community about whether or not trolleybuses are too hard to implement, if the feature is “too niche” or if “they” actually ever even read the suggestions posted on the forums.
Let us assure you that we are indeed constantly listening, and every single idea is considered when we are deciding what to do next! Also, we are just as enthusiastic about public transport as you are, and you would have to be very creative to suggest something that we would consider to be “too niche”
The reason trolleybuses have never been added is their technical complexity. Trolleybuses are basically “trackless trams”: electrical buses that draw their power from overhead wires. Unlike trams, they utilize two wires and two trolley poles to complete the electrical circuit. And like a normal bus, a trolleybus is able to change lanes and stop on the side of the road. As the bus is moving, its poles rotate and tilt to stay attached to the wires. In the game as well as in reality, the trolley poles are the most tricky part of the whole system.
We are glad to inform you that we have managed to overcome the technical challenges, so Trolleybuses will finally be available in Cities: Skylines – Sunset Harbor!They are finally here!The trolleybus system in Cities: Skylines – Sunset Harbor consists of four components:
- Trolleybus Depot
- Trolleybus Roads
- Trolleybus Stops
- Trolleybus Vehicle
To get started with trolleybuses, you first place a Trolleybus Depot. After that, you can place Trolleybus Roads and create Trolleybus Lines with roadside stops. Your depot will then send out trolleybuses to operate the lines. It is important to remember that the trolley poles must be attached to the wires at all times, so your Trolleybus Depot and your Trolleybus Lines must be connected by Trolleybus Roads as well!
Trolleybus Depot sending out new trolleybuses.Taking passengers over the river.That’s the easy part! In the second part of this Dev Diary, we would like to shed light on what we did to make the trolley poles behave realistically. Unlike other diary entries, this one will be slightly more technical. Even if you are not that math and geometry savvy, we still hope you enjoy this inside look!
The Wire Let’s take a closer look at the roads! On every road segment, you will find three catenary masts: One at the start, one in the middle and one at the end. The electrical wires span the masts, and with some mathematical calculations we can find out the start and end coordinate of each wire section. Let’s call them
and
(using a small arrow to mark them as 3D vectors).
A mathematical formula to define the line of the wire would be
with
and
When the bus is on the road segment, we want its pole to connect to the overhead wire defined by the mathematical formula above.
is the coordinate where the pole is attached to the wire.
The Trolleybus The game knows how the bus is positioned and rotated in the world, and from that it is possible to calculate the coordinate where the trolley pole is attached to the bus. Let’s call it
!
The trolley pole is made of sturdy metal, so it cannot stretch. That means the distance between the coordinate where the pole is attached to the bus (
) and the coordinate where the pole is attached to the wire (
) must always be equal to the length of the pole. Let’s call it and define this formula to
take that into account:
The Equation System By inserting the first formula into the second one, we end up with a single equation with a single unknown variable c :
With a few tricks we can transform it into a quadratic equation:
Step 1:
with
Step 2:
Step 3:
Step 4:
Step 5:
We can use the
quadratic formula[en.wikipedia.org] to solve the equation.
We will get zero, one or two values for c :
Note that there will be no solutions if the part in the square root is negative (which happens if the wire is too far away from the bus). Note that the solutions for c calculated by this formula could also be out of range (
), so we have to check that as well.
Choosing the Right Position By inserting
and
into our wire formula
, we can calculate two theoretical pole-wire-attachment coordinates
and
. One will be above the front part and the other above the back of the bus:
As the pole of a trolleybus is typically facing backwards, we need to find out which of the two positions is the correct one.
Haven’t had enough of vectors yet? Let’s define a few more:
- - the direction vector of the bus (points into driving direction)
- - direction the pole would face if it was attached at (points from to )
- - direction the pole would face if it was attached at (points from to )
Using the
dot product[en.wikipedia.org], we can easily find out if
and one of the pole vectors are facing into about the same direction (> 0) or the opposite direction (< 0).
We are specifically looking for the pole vector that faces in the opposite direction of
, so our conditions would look like this:
- - If that condition is true, is the correct pole-wire-attachment coordinate.
- - If that condition is true, is the correct pole-wire-attachment coordinate.
Rendering the Trolley Poles Uh, that was a lot of math! Now that we know where the pole is attached on the bus (
) and where the pole is attached to the wire (either
or
), it is possible to render the pole in the correct position and rotation.
As we learned, a trolleybus has two poles (otherwise the electrical circuit would be incomplete), so we will just repeat the same steps to draw the second pole.
And now you know what kind of stuff goes on behind the scenes to render the poles! Of course, in order to make trolleybuses realistic, this was just one small portion of the overall work that was needed!
The last shift of the evening.Once again, we've reached the end of a Dev Diary. We hope that you liked this insight into the development of Cities: Skylines and that we didn’t scare you with all the formulas! Gotta say, the end result is really mesmerizing. We could just watch the buses circle around for hours! What do you guys think about the trolleybuses?
Until next time, city-builders!
Your Colossal Order dev team