summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorfonsinchen <fonsinchen@openttd.org>2013-06-17 20:38:11 +0000
committerfonsinchen <fonsinchen@openttd.org>2013-06-17 20:38:11 +0000
commitf0119308f602c9435c793b95b0fa9af3be3a5296 (patch)
tree63bb3de599615feed1d36dc6c525e32b76476f08 /src/station_cmd.cpp
parentb923eb31a8ca78cfc4f7e5be00b5f158edbb7588 (diff)
downloadopenttd-f0119308f602c9435c793b95b0fa9af3be3a5296.tar.xz
(svn r25424) -Fix: keep old flows around in an invalidated state to continue routing cargo if necessary
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index 44cf45f5a..0ac50d2eb 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -4086,7 +4086,23 @@ StationID FlowStat::GetVia(StationID excluded, StationID excluded2) const
}
assert(it3 != this->shares.end());
return it3->second;
+}
+/**
+ * Reduce all flows to minimum capacity so that they don't get in the way of
+ * link usage statistics too much. Keep them around, though, to continue
+ * routing any remaining cargo.
+ */
+void FlowStat::Invalidate()
+{
+ assert(!this->shares.empty());
+ SharesMap new_shares;
+ uint i = 0;
+ for (SharesMap::iterator it(this->shares.begin()); it != this->shares.end(); ++it) {
+ new_shares[++i] = it->second;
+ }
+ this->shares.swap(new_shares);
+ assert(!this->shares.empty());
}
/**