galaxy.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. #ifndef GALAXY_H
  2. #define GALAXY_H
  3. #include <array>
  4. #include <cstdint>
  5. #include <iostream>
  6. #include <ostream>
  7. #include <regex>
  8. #include <set>
  9. #include <stdexcept>
  10. #include <string>
  11. #include <vector>
  12. #include "yaml-cpp/yaml.h"
  13. enum PRODUCT { FUEL = 0, ORG = 1, EQU = 2 };
  14. // Class 0 : Special
  15. // Class 9 : StarDock BBB
  16. // typedef std::array<bool, 3> buysell;
  17. struct buysell {
  18. bool foe[3];
  19. bool operator==(const buysell& rhs) const;
  20. friend std::ostream& operator<<(std::ostream& os, const buysell& bs);
  21. };
  22. // ostream& operator<<(std::ostream& os, const buysell& bs);
  23. // typedef std::array<char, 3> buysell_text;
  24. struct buysell_text {
  25. char txt[3];
  26. bool operator==(const buysell_text& rhs) const;
  27. friend std::ostream& operator<<(std::ostream& os, const buysell_text& bst);
  28. };
  29. // #define MAX_WARPS 6
  30. typedef uint16_t sector_type;
  31. typedef uint8_t port_type;
  32. struct sector_warps {
  33. sector_type sector; // Yes, for debug
  34. // std::set<sector_type> warps; // possibly
  35. std::set<sector_type> warps;
  36. // sector_type warps[MAX_WARPS];
  37. // ports
  38. // planets
  39. // ctor that zeros everything out?
  40. sector_warps();
  41. void add(sector_type sector);
  42. // add() that adds warp to end of warps?
  43. friend std::ostream& operator<<(std::ostream& os, const sector_warps& warps);
  44. // bool operator==(const sector_warps& rhs) const;
  45. // void sort(void);
  46. };
  47. /*
  48. 1 : "BBS", TTF
  49. 2 : "BSB", TFT
  50. 3 : "SBB", FTT
  51. 4 : "SSB", FFT
  52. 5 : "SBS", FTF
  53. 6 : "BSS", TFF
  54. 7 : "SSS", FFF
  55. 8 : "BBB", TTT
  56. 9 : "BBB", TTT
  57. */
  58. /* convert type to buysell flag values, buy = true */
  59. constexpr buysell get_buysell(port_type type) {
  60. switch (type) {
  61. case 1: // BBS TTF
  62. return {true, true, false};
  63. case 2: // BSB TFT
  64. return {true, false, true};
  65. case 3: // SBB FTT
  66. return {false, true, true};
  67. case 4: // SSB FFT
  68. return {false, false, true};
  69. case 5: // SBS FTF
  70. return {false, true, false};
  71. case 6: // BSS TFF
  72. return {true, false, false};
  73. case 7: // SSS FFF
  74. return {false, false, false};
  75. case 8: // BBB TTT
  76. case 9:
  77. return {true, true, true};
  78. default:
  79. throw std::invalid_argument("invalid buysell type");
  80. }
  81. }
  82. constexpr buysell_text text_from_buysell(const buysell market) {
  83. buysell_text text{'?', '?', '?'};
  84. for (int x = 0; x < 3; ++x) {
  85. text.txt[x] = market.foe[x] ? 'B' : 'S';
  86. }
  87. return text;
  88. }
  89. constexpr buysell_text text_from_type(port_type type) {
  90. switch (type) {
  91. case 1:
  92. return buysell_text{'B', 'B', 'S'};
  93. case 2:
  94. return buysell_text{'B', 'S', 'B'};
  95. case 3:
  96. return buysell_text{'S', 'B', 'B'};
  97. case 4:
  98. return buysell_text{'S', 'S', 'B'};
  99. case 5:
  100. return buysell_text{'S', 'B', 'S'};
  101. case 6:
  102. return buysell_text{'B', 'S', 'S'};
  103. case 7:
  104. return buysell_text{'S', 'S', 'S'};
  105. case 8:
  106. case 9:
  107. return buysell_text{'B', 'B', 'B'};
  108. default:
  109. throw std::invalid_argument("invalid text_from_type type");
  110. }
  111. }
  112. constexpr buysell invert_buysell(const buysell market) {
  113. if (market.foe[0]) {
  114. if (market.foe[1]) {
  115. if (market.foe[2]) {
  116. return {false, false, false}; // BBB TTT
  117. } else
  118. return {false, false, true}; // BBS TTF
  119. } else {
  120. if (market.foe[2]) {
  121. return {false, true, false}; // BSB TFT
  122. } else
  123. return {false, true, true}; // BSS TFF
  124. }
  125. } else {
  126. if (market.foe[1]) {
  127. if (market.foe[2]) {
  128. return {true, false, false}; // SBB FTT
  129. } else
  130. return {true, false, true}; // SBS FTF
  131. } else {
  132. if (market.foe[2]) {
  133. return {true, true, false}; // SSB FFT
  134. } else
  135. return {true, true, true}; // SSS FFF
  136. }
  137. }
  138. }
  139. /**
  140. * Find possible trades with these two port types
  141. *
  142. * 0 = NONE
  143. * 1 = GOOD OE trade pair
  144. * 2 = OK trade pair
  145. * 3 = FAIR (one buys, one sells)
  146. *
  147. * This will probably be expanded in the future to return:
  148. * What port(s) to trade with. (pos, return top 2)
  149. *
  150. * @param port1
  151. * @param port2
  152. * @return int
  153. */
  154. int trade_type(port_type port1, port_type port2);
  155. struct trade_type_result {
  156. int type;
  157. buysell trades;
  158. };
  159. trade_type_result trade_type_info(port_type port1, port_type port2);
  160. struct port_pair_type {
  161. int type;
  162. sector_type s1, s2;
  163. };
  164. constexpr uint8_t type_from_buysell(const buysell market) {
  165. if (market.foe[0]) {
  166. if (market.foe[1]) {
  167. if (market.foe[2]) {
  168. return 8; // BBB TTT
  169. } else
  170. return 1; // BBS TTF
  171. } else {
  172. if (market.foe[2]) {
  173. return 2; // BSB TFT
  174. } else
  175. return 6; // BSS TFF
  176. }
  177. } else {
  178. if (market.foe[1]) {
  179. if (market.foe[2]) {
  180. return 3; // SBB FTT
  181. } else
  182. return 5; // SBS FTF
  183. } else {
  184. if (market.foe[2]) {
  185. return 4; // SSB FFT
  186. } else
  187. return 7; // SSS FFF
  188. }
  189. }
  190. }
  191. struct port {
  192. sector_type sector;
  193. uint8_t type;
  194. uint16_t amount[3];
  195. uint8_t percent[3];
  196. bool unknown(void);
  197. // port();
  198. friend std::ostream& operator<<(std::ostream& os, const port& p);
  199. };
  200. struct port parse_portcim(const std::string line);
  201. // SPECIAL = 0
  202. // STARDOCK = 9
  203. class Galaxy {
  204. public:
  205. Galaxy();
  206. ~Galaxy();
  207. void reset(void);
  208. YAML::Node config;
  209. YAML::Node meta;
  210. int burnt_percent;
  211. // warps;
  212. // ports;
  213. std::map<sector_type, port> ports;
  214. std::map<sector_type, sector_warps> warps;
  215. void add_warp(sector_warps);
  216. void add_port(sector_type sector, int port_class);
  217. void add_port(port);
  218. void save(void);
  219. void load(void);
  220. std::vector<port_pair_type> find_best_trades(void);
  221. std::vector<port_pair_type> find_trades(sector_type sector,
  222. bool highest = true);
  223. void sort_port_pair_type(std::vector<port_pair_type>& pptv);
  224. char game;
  225. std::string username;
  226. };
  227. #endif