galaxy.h 4.0 KB

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