|
@@ -72,10 +72,16 @@ bool operator==(const density lhs, const density rhs) {
|
|
}
|
|
}
|
|
|
|
|
|
trade_type_result trade_type_info(port_type port1, port_type port2) {
|
|
trade_type_result trade_type_info(port_type port1, port_type port2) {
|
|
|
|
+ // This only gives us one trade_type per pair. There actually
|
|
|
|
+ // should be multiple values returned here!
|
|
|
|
+ // Like in case of BBB/SSS: return 3, 4 and 5.
|
|
|
|
+
|
|
// NONE = 0
|
|
// NONE = 0
|
|
// GOOD = 1 = OE PAIR
|
|
// GOOD = 1 = OE PAIR
|
|
// OK = 2 = ?? Pair
|
|
// OK = 2 = ?? Pair
|
|
- // FAIR = 3 = B / S
|
|
|
|
|
|
+ // FAIR = 3 = B/S E
|
|
|
|
+ // 4 = B/S O
|
|
|
|
+ // 5 = B/S F
|
|
|
|
|
|
buysell p1 = get_buysell(port1);
|
|
buysell p1 = get_buysell(port1);
|
|
buysell p2 = get_buysell(port2);
|
|
buysell p2 = get_buysell(port2);
|
|
@@ -121,21 +127,8 @@ int trade_type(port_type port1, port_type port2) {
|
|
return r.type;
|
|
return r.type;
|
|
}
|
|
}
|
|
|
|
|
|
-/*
|
|
|
|
-// adding this breaks test-galaxy's port = {2, 2, {1,2,3}, {1,2,3}} code.
|
|
|
|
-port::port() {
|
|
|
|
- sector = 0;
|
|
|
|
- type = 0;
|
|
|
|
- for (int x = 0; x < 3; x++) {
|
|
|
|
- amount[x] = 0;
|
|
|
|
- percent[x] = 0;
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-*/
|
|
|
|
-
|
|
|
|
sector_warps::sector_warps() {
|
|
sector_warps::sector_warps() {
|
|
sector = 0;
|
|
sector = 0;
|
|
- // for (int x = 0; x < MAX_WARPS; ++x) warps[x] = 0;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
void sector_warps::add(sector_type new_sector) {
|
|
void sector_warps::add(sector_type new_sector) {
|
|
@@ -164,14 +157,6 @@ std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
|
|
comma = true;
|
|
comma = true;
|
|
os << warp;
|
|
os << warp;
|
|
}
|
|
}
|
|
- /*
|
|
|
|
- for (int x = 0; x < MAX_WARPS; ++x) {
|
|
|
|
- if (warps.warps[x] != 0) {
|
|
|
|
- if (x != 0) os << ",";
|
|
|
|
- os << warps.warps[x];
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- */
|
|
|
|
return os;
|
|
return os;
|
|
}
|
|
}
|
|
|
|
|