galaxy.h 3.5 KB

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