|
@@ -15,7 +15,6 @@
|
|
|
// c++ default exceptions list
|
|
|
// https://en.cppreference.com/w/cpp/error/exception
|
|
|
|
|
|
-
|
|
|
std::ostream &operator<<(std::ostream &os, const port &p) {
|
|
|
if (p.type == 0) {
|
|
|
os << p.sector << ": " << (int)p.type;
|
|
@@ -472,10 +471,12 @@ std::vector<port_pair_type> Galaxy::find_trades(sector_type sector,
|
|
|
if (possible_port == ports.end()) continue;
|
|
|
|
|
|
if (possible_port->second.type == 0) continue;
|
|
|
-
|
|
|
+
|
|
|
// calculate trade type
|
|
|
// int t = trade_type(port->second.type, possible_port->second.type);
|
|
|
- BUGZ_LOG(trace) << "find_trades: Port " << sector << "," << (int)port->second.type << " " << s << (int)possible_port->second.type;
|
|
|
+ BUGZ_LOG(trace) << "find_trades: Port " << sector << ","
|
|
|
+ << (int)port->second.type << " " << s
|
|
|
+ << (int)possible_port->second.type;
|
|
|
trade_type_result ttr =
|
|
|
trade_type_info(port->second.type, possible_port->second.type);
|
|
|
if ((ttr.type == 0) || (ttr.type == 4)) continue;
|
|
@@ -536,3 +537,54 @@ std::vector<port_pair_type> Galaxy::find_best_trades(void) {
|
|
|
}
|
|
|
return pptv;
|
|
|
}
|
|
|
+
|
|
|
+port_pair_type Galaxy::find_closest(int sector) {
|
|
|
+ auto trades = find_best_trades();
|
|
|
+ // int type, sector_type s1, s2;
|
|
|
+ std::set<sector_type> seen;
|
|
|
+ std::set<sector_type> current;
|
|
|
+ current.insert(sector);
|
|
|
+ bool found = false;
|
|
|
+
|
|
|
+ while (!found) {
|
|
|
+ // is current list in any of the trades ?
|
|
|
+ for (auto const &t : trades) {
|
|
|
+ if (t.type > 2) continue;
|
|
|
+ if (current.find(t.s1) != current.end()) {
|
|
|
+ // found one!
|
|
|
+ return t;
|
|
|
+ }
|
|
|
+ if (current.find(t.s2) != current.end()) {
|
|
|
+ return t;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!found) {
|
|
|
+ // update the seen
|
|
|
+ seen.insert(current.begin(), current.end());
|
|
|
+ auto look_in = current;
|
|
|
+ current.clear();
|
|
|
+ for (auto const &li : look_in) {
|
|
|
+ auto wi = warps.find(li);
|
|
|
+ if (wi == warps.end()) continue;
|
|
|
+ for (auto const &w : wi->second.warps) {
|
|
|
+ // have we already seen this sector?
|
|
|
+ if (seen.find(w) != seen.end()) continue;
|
|
|
+
|
|
|
+ // does it have a warp back to the original sector?
|
|
|
+ auto warp_back = warps.find(w);
|
|
|
+ if (warp_back != warps.end()) {
|
|
|
+ if (warp_back->second.warps.find(li) !=
|
|
|
+ warp_back->second.warps.end()) {
|
|
|
+ // Ok, this links back to the original sector...
|
|
|
+ current.insert(w);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ port_pair_type ppt;
|
|
|
+ ppt.type = 0;
|
|
|
+ return ppt;
|
|
|
+}
|