|
@@ -415,8 +415,8 @@ void Galaxy::save(void) {
|
|
BUGZ_LOG(fatal) << "Outputting Sequence... " << data.first;
|
|
BUGZ_LOG(fatal) << "Outputting Sequence... " << data.first;
|
|
of << yaml_spacer << data.first << ": [";
|
|
of << yaml_spacer << data.first << ": [";
|
|
bool first = true;
|
|
bool first = true;
|
|
- for( auto const &seq : data.second) {
|
|
|
|
- if (! first)
|
|
|
|
|
|
+ for (auto const &seq : data.second) {
|
|
|
|
+ if (!first)
|
|
of << ", ";
|
|
of << ", ";
|
|
else
|
|
else
|
|
first = false;
|
|
first = false;
|
|
@@ -673,12 +673,13 @@ port_pair_type Galaxy::find_closest(int sector) {
|
|
|
|
|
|
/**
|
|
/**
|
|
* Find closest and best trade
|
|
* Find closest and best trade
|
|
- *
|
|
|
|
- * @param sector
|
|
|
|
- * @param lowest_trade_type
|
|
|
|
- * @return port_pair_type
|
|
|
|
|
|
+ *
|
|
|
|
+ * @param sector
|
|
|
|
+ * @param lowest_trade_type
|
|
|
|
+ * @return port_pair_type
|
|
*/
|
|
*/
|
|
-port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type) {
|
|
|
|
|
|
+port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type,
|
|
|
|
+ int burnt_percent) {
|
|
// int type, sector_type s1, s2;
|
|
// int type, sector_type s1, s2;
|
|
BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
|
|
BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
|
|
std::vector<port_pair_type> vppt;
|
|
std::vector<port_pair_type> vppt;
|
|
@@ -725,7 +726,7 @@ port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type) {
|
|
auto possible_port = ports.find(s);
|
|
auto possible_port = ports.find(s);
|
|
if (possible_port == ports.end()) continue;
|
|
if (possible_port == ports.end()) continue;
|
|
if (possible_port->second.type == 0) continue;
|
|
if (possible_port->second.type == 0) continue;
|
|
- trade_type_result ttr = trade_type_info(c, s);
|
|
|
|
|
|
+ trade_type_result ttr = trade_type_info(c, s, burnt_percent);
|
|
if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
|
|
if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
|
|
// Ok! we found a trade that fits the criteria!
|
|
// Ok! we found a trade that fits the criteria!
|
|
vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});
|
|
vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});
|