galaxy.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. };
  38. /*
  39. 1 : "BBS", TTF
  40. 2 : "BSB", TFT
  41. 3 : "SBB", FTT
  42. 4 : "SSB", FFT
  43. 5 : "SBS", FTF
  44. 6 : "BSS", TFF
  45. 7 : "SSS", FFF
  46. 8 : "BBB", TTT
  47. 9 : "BBB", TTT
  48. */
  49. /* convert type to buysell flag values, buy = true */
  50. constexpr buysell get_buysell(uint8_t type) {
  51. switch (type) {
  52. case 1: // BBS TTF
  53. return {true, true, false};
  54. case 2: // BSB TFT
  55. return {true, false, true};
  56. case 3: // SBB FTT
  57. return {false, true, true};
  58. case 4: // SSB FFT
  59. return {false, false, true};
  60. case 5: // SBS FTF
  61. return {false, true, false};
  62. case 6: // BSS TFF
  63. return {true, false, false};
  64. case 7: // SSS FFF
  65. return {false, false, false};
  66. case 8: // BBB TTT
  67. case 9:
  68. return {true, true, true};
  69. default:
  70. throw std::invalid_argument("invalid buysell type");
  71. }
  72. }
  73. constexpr buysell_text text_from_buysell(const buysell market) {
  74. buysell_text text{'?', '?', '?'};
  75. for (int x = 0; x < 3; ++x) {
  76. text.txt[x] = market.foe[x] ? 'B' : 'S';
  77. }
  78. return text;
  79. }
  80. constexpr buysell_text text_from_type(uint8_t type) {
  81. switch (type) {
  82. case 1:
  83. return buysell_text{'B', 'B', 'S'};
  84. case 2:
  85. return buysell_text{'B', 'S', 'B'};
  86. case 3:
  87. return buysell_text{'S', 'B', 'B'};
  88. case 4:
  89. return buysell_text{'S', 'S', 'B'};
  90. case 5:
  91. return buysell_text{'S', 'B', 'S'};
  92. case 6:
  93. return buysell_text{'B', 'S', 'S'};
  94. case 7:
  95. return buysell_text{'S', 'S', 'S'};
  96. case 8:
  97. case 9:
  98. return buysell_text{'B', 'B', 'B'};
  99. default:
  100. throw std::invalid_argument("invalid text_from_type type");
  101. }
  102. }
  103. constexpr uint8_t type_from_buysell(const buysell market) {
  104. if (market.foe[0]) {
  105. if (market.foe[1]) {
  106. if (market.foe[2]) {
  107. return 8; // BBB TTT
  108. } else
  109. return 1; // BBS TTF
  110. } else {
  111. if (market.foe[2]) {
  112. return 2; // BSB TFT
  113. } else
  114. return 6; // BSS TFF
  115. }
  116. } else {
  117. if (market.foe[1]) {
  118. if (market.foe[2]) {
  119. return 3; // SBB FTT
  120. } else
  121. return 5; // SBS FTF
  122. } else {
  123. if (market.foe[2]) {
  124. return 4; // SSB FFT
  125. } else
  126. return 7; // SSS FFF
  127. }
  128. }
  129. }
  130. struct port {
  131. uint16_t sector;
  132. uint8_t type;
  133. uint16_t amount[3];
  134. uint8_t percent[3];
  135. friend std::ostream& operator<<(std::ostream& os, const port &p);
  136. };
  137. struct port parse_portcim(const std::string line);
  138. // SPECIAL = 0
  139. // STARDOCK = 9
  140. class GameData {
  141. public:
  142. std::map<std::string, std::string> config;
  143. // warps;
  144. // ports;
  145. };