galaxy.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. * @param port1
  148. * @param port2
  149. * @return int
  150. */
  151. int trade_type(port_type port1, port_type port2);
  152. constexpr uint8_t type_from_buysell(const buysell market) {
  153. if (market.foe[0]) {
  154. if (market.foe[1]) {
  155. if (market.foe[2]) {
  156. return 8; // BBB TTT
  157. } else
  158. return 1; // BBS TTF
  159. } else {
  160. if (market.foe[2]) {
  161. return 2; // BSB TFT
  162. } else
  163. return 6; // BSS TFF
  164. }
  165. } else {
  166. if (market.foe[1]) {
  167. if (market.foe[2]) {
  168. return 3; // SBB FTT
  169. } else
  170. return 5; // SBS FTF
  171. } else {
  172. if (market.foe[2]) {
  173. return 4; // SSB FFT
  174. } else
  175. return 7; // SSS FFF
  176. }
  177. }
  178. }
  179. struct port {
  180. uint16_t sector;
  181. uint8_t type;
  182. uint16_t amount[3];
  183. uint8_t percent[3];
  184. // port();
  185. friend std::ostream& operator<<(std::ostream& os, const port& p);
  186. };
  187. struct port parse_portcim(const std::string line);
  188. // SPECIAL = 0
  189. // STARDOCK = 9
  190. class Galaxy {
  191. public:
  192. Galaxy();
  193. ~Galaxy();
  194. void reset(void);
  195. YAML::Node config;
  196. YAML::Node meta;
  197. // warps;
  198. // ports;
  199. std::map<sector_type, port> ports;
  200. std::map<sector_type, sector_warps> warps;
  201. void add_warp(sector_warps);
  202. void add_port(sector_type sector, int port_class);
  203. void add_port(port);
  204. void save(void);
  205. void load(void);
  206. char game;
  207. std::string username;
  208. };
  209. #endif