-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Distribute cargo to multiple stations or industries #7184
Feature: Distribute cargo to multiple stations or industries #7184
Conversation
11a1fe4
to
962cb05
Compare
This would be a very helpful feature IMO. For distribution, round-robin would be preferable. Random distribution should come out even statistically over large datasets, but might cause unexpected localised behaviour, which will cause bug reports and be hard to debug. Round-robin is easier to understand. Also are you aware that the newgrf spec supports industries stopping and starting cargo acceptance, both for the industry, and for industry tiles? This creates some tricky cases. This can be tested with Pikka's Basic Industries grf, which limits acceptance at secondary industries. |
This seems like a reasonable idea. This seems like a fundamental economy change, so I wonder if it warrants a configuration option? Don't add this now, I just wonder how others feel. |
src/economy.cpp
Outdated
num_pieces -= amount; | ||
accepted += amount; | ||
} | ||
} while (num_pieces != 0 && rejected.Length() != st->industries_near.Length()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could still be a for ()
loop, in which case the massive inner if () {}
block wouldn't be necessary.
If you keep it as a do {} while ()
loop, then if (!st->industries_near.Length()) return 0;
before the loop would be better.
962cb05
to
f492e4f
Compare
Presumably it changes the behaviour of existing savegames significantly, so maybe we have to preserve the old behaviour at minimum? |
f492e4f
to
58b9330
Compare
58b9330
to
3dbd99d
Compare
3dbd99d
to
ad07b98
Compare
Pretty sure this is not a "Change". Possibly even a "Feature? :) |
ad07b98
to
0003027
Compare
I think this risks making competition in multiplayer games more bland. Consider for example the situation where three companies each have a station by the same industry. The stations have ratings of 80%, 78%, and 76% respectively. With this patch, all three companies will get almost equal amounts, giving much very little incitement to the 76% company to try to do better. Introduce a fourth station with rating 38% (half of 76%) and it would receive half the cargo of the 76% station, despite being much, much worse. One solution to this may be to use the ratio of the square of the ratings (each rating multiplied by itself), instead of the ratings straight.
You can make the distribution difference even more extreme by using higher powers than 2. Another option to possibly add in the mix is to take e.g. the bottom third of all stations out of the running. Or stations whose rating is less than two thirds of the best rating. |
@nielsmh Your approach also changes the amounts for when there's only 2 stations. My approach still does the same as master if there's only 2 stations. Tests:
|
faca5c5
to
adb7b36
Compare
More tests: 3 stations: https://paste.openttdcoop.org/po46thby7
2 stations: https://paste.openttdcoop.org/pnp04lwfn
|
adb7b36
to
6e4b599
Compare
Changes the way cargo amounts appear on multiple stations, and the way cargo is received by multiple industries accepting that same cargo type. For stations, instead of spliting the load between the two highest rating stations for that cargo, it splits to all nearby stations, while still considering station rating from highest to lowest. The higher the rating, the more it receives. For industries, instead of the first nearby industry accepting the cargo, the amount is distributed piece by piece, at random, to any accepting industries within the station catchment area.
6e4b599
to
ddb5827
Compare
ddb5827
to
e463a94
Compare
I have a dilema:
This PR changed it to not count as having received a delivery of zero. Otherwise, it would be added to both |
Without this being an option, I do not see how this is going to work. And if we do this, we should allow control via either GS or NewGRF, instead of hardcoding yet-another-way-of-doing-this. So I do not think this is the correct solution for the problem. Just changing the current way of doing because it flavours you only means others won't like it, and we will have PRs ping-ponging solutions all day. We need a more constructive solution to this problem. Tnx for the contribution though! |
Changes the way cargo amounts appear on multiple stations, and the way cargo is received by multiple industries accepting that same cargo type.
For stations, instead of spliting the load between the two highest rating stations for that cargo, it splits to all nearby stations, while still considering station rating from highest to lowest. The higher the rating, the more it receives.

For industries, instead of the first nearby industry accepting the cargo, the amount is distributed piece by piece, at random, to any accepting industries within the station catchment area.

https://www.tt-forums.net/viewtopic.php?p=1193758