galaxy.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 <stdexcept>
  9. #include <string>
  10. #include <vector>
  11. #include <set>
  12. enum PRODUCT { FUEL = 0, ORG = 1, EQUIP = 2 };
  13. // Class 0 : Special
  14. // Class 9 : StarDock BBB
  15. // typedef std::array<bool, 3> buysell;
  16. struct buysell {
  17. bool foe[3];
  18. bool operator==(const buysell& rhs) const;
  19. friend std::ostream& operator<<(std::ostream& os, const buysell& bs);
  20. };
  21. // ostream& operator<<(std::ostream& os, const buysell& bs);
  22. // typedef std::array<char, 3> buysell_text;
  23. struct buysell_text {
  24. char txt[3];
  25. bool operator==(const buysell_text& rhs) const;
  26. friend std::ostream& operator<<(std::ostream& os, const buysell_text& bst);
  27. };
  28. // #define MAX_WARPS 6
  29. typedef uint16_t sector_type;
  30. struct sector_warps {
  31. sector_type sector; // Yes, for debug
  32. // std::set<sector_type> warps; // possibly
  33. std::set<sector_type> warps;
  34. // sector_type warps[MAX_WARPS];
  35. // ports
  36. // planets
  37. // ctor that zeros everything out?
  38. sector_warps();
  39. void add(sector_type sector);
  40. // add() that adds warp to end of warps?
  41. friend std::ostream& operator<<(std::ostream& os, const sector_warps& warps);
  42. // bool operator==(const sector_warps& rhs) const;
  43. // void sort(void);
  44. };
  45. /*
  46. 1 : "BBS", TTF
  47. 2 : "BSB", TFT
  48. 3 : "SBB", FTT
  49. 4 : "SSB", FFT
  50. 5 : "SBS", FTF
  51. 6 : "BSS", TFF
  52. 7 : "SSS", FFF
  53. 8 : "BBB", TTT
  54. 9 : "BBB", TTT
  55. */
  56. /* convert type to buysell flag values, buy = true */
  57. constexpr buysell get_buysell(uint8_t type) {
  58. switch (type) {
  59. case 1: // BBS TTF
  60. return {true, true, false};
  61. case 2: // BSB TFT
  62. return {true, false, true};
  63. case 3: // SBB FTT
  64. return {false, true, true};
  65. case 4: // SSB FFT
  66. return {false, false, true};
  67. case 5: // SBS FTF
  68. return {false, true, false};
  69. case 6: // BSS TFF
  70. return {true, false, false};
  71. case 7: // SSS FFF
  72. return {false, false, false};
  73. case 8: // BBB TTT
  74. case 9:
  75. return {true, true, true};
  76. default:
  77. throw std::invalid_argument("invalid buysell type");
  78. }
  79. }
  80. constexpr buysell_text text_from_buysell(const buysell market) {
  81. buysell_text text{'?', '?', '?'};
  82. for (int x = 0; x < 3; ++x) {
  83. text.txt[x] = market.foe[x] ? 'B' : 'S';
  84. }
  85. return text;
  86. }
  87. constexpr buysell_text text_from_type(uint8_t type) {
  88. switch (type) {
  89. case 1:
  90. return buysell_text{'B', 'B', 'S'};
  91. case 2:
  92. return buysell_text{'B', 'S', 'B'};
  93. case 3:
  94. return buysell_text{'S', 'B', 'B'};
  95. case 4:
  96. return buysell_text{'S', 'S', 'B'};
  97. case 5:
  98. return buysell_text{'S', 'B', 'S'};
  99. case 6:
  100. return buysell_text{'B', 'S', 'S'};
  101. case 7:
  102. return buysell_text{'S', 'S', 'S'};
  103. case 8:
  104. case 9:
  105. return buysell_text{'B', 'B', 'B'};
  106. default:
  107. throw std::invalid_argument("invalid text_from_type type");
  108. }
  109. }
  110. constexpr uint8_t type_from_buysell(const buysell market) {
  111. if (market.foe[0]) {
  112. if (market.foe[1]) {
  113. if (market.foe[2]) {
  114. return 8; // BBB TTT
  115. } else
  116. return 1; // BBS TTF
  117. } else {
  118. if (market.foe[2]) {
  119. return 2; // BSB TFT
  120. } else
  121. return 6; // BSS TFF
  122. }
  123. } else {
  124. if (market.foe[1]) {
  125. if (market.foe[2]) {
  126. return 3; // SBB FTT
  127. } else
  128. return 5; // SBS FTF
  129. } else {
  130. if (market.foe[2]) {
  131. return 4; // SSB FFT
  132. } else
  133. return 7; // SSS FFF
  134. }
  135. }
  136. }
  137. struct port {
  138. uint16_t sector;
  139. uint8_t type;
  140. uint16_t amount[3];
  141. uint8_t percent[3];
  142. // port();
  143. friend std::ostream& operator<<(std::ostream& os, const port& p);
  144. };
  145. struct port parse_portcim(const std::string line);
  146. // SPECIAL = 0
  147. // STARDOCK = 9
  148. class Galaxy {
  149. public:
  150. Galaxy();
  151. ~Galaxy();
  152. std::map<std::string, std::string> config;
  153. // warps;
  154. // ports;
  155. std::map<sector_type, port> ports;
  156. std::map<sector_type, sector_warps> warps;
  157. void add_warp(sector_warps);
  158. void add_port(sector_type sector, int port_class);
  159. void add_port(port);
  160. void save(void);
  161. void load(void);
  162. char game;
  163. std::string username;
  164. };
  165. #endif