galaxy.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. // typedef std::array<bool, 3> buysell;
  11. struct buysell {
  12. bool foe[3];
  13. bool operator==(const buysell &rhs) const;
  14. friend std::ostream& operator<<(std::ostream& os, const buysell& bs);
  15. };
  16. // ostream& operator<<(std::ostream& os, const buysell& bs);
  17. // typedef std::array<char, 3> buysell_text;
  18. struct buysell_text {
  19. char txt[3];
  20. bool operator==(const buysell_text &rhs) const;
  21. friend std::ostream& operator<<(std::ostream& os, const buysell_text &bst);
  22. };
  23. /*
  24. 1 : "BBS", TTF
  25. 2 : "BSB", TFT
  26. 3 : "SBB", FTT
  27. 4 : "SSB", FFT
  28. 5 : "SBS", FTF
  29. 6 : "BSS", TFF
  30. 7 : "SSS", FFF
  31. 8 : "BBB", TTT
  32. */
  33. /* convert type to buysell flag values, buy = true */
  34. constexpr buysell get_buysell(uint8_t type) {
  35. switch (type) {
  36. case 1: // BBS TTF
  37. return {true, true, false};
  38. case 2: // BSB TFT
  39. return {true, false, true};
  40. case 3: // SBB FTT
  41. return {false, true, true};
  42. case 4: // SSB FFT
  43. return {false, false, true};
  44. case 5: // SBS FTF
  45. return {false, true, false};
  46. case 6: // BSS TFF
  47. return {true, false, false};
  48. case 7: // SSS FFF
  49. return {false, false, false};
  50. case 8: // BBB TTT
  51. return {true, true, true};
  52. default:
  53. throw std::invalid_argument("invalid buysell type");
  54. }
  55. }
  56. constexpr buysell_text text_from_buysell(const buysell market) {
  57. buysell_text text{'?', '?', '?'};
  58. for (int x = 0; x < 3; ++x) {
  59. text.txt[x] = market.foe[x] ? 'B' : 'S';
  60. }
  61. return text;
  62. }
  63. constexpr buysell_text text_from_type(uint8_t type) {
  64. switch (type) {
  65. case 1:
  66. return buysell_text{'B', 'B', 'S'};
  67. case 2:
  68. return buysell_text{'B', 'S', 'B'};
  69. case 3:
  70. return buysell_text{'S', 'B', 'B'};
  71. case 4:
  72. return buysell_text{'S', 'S', 'B'};
  73. case 5:
  74. return buysell_text{'S', 'B', 'S'};
  75. case 6:
  76. return buysell_text{'B', 'S', 'S'};
  77. case 7:
  78. return buysell_text{'S', 'S', 'S'};
  79. case 8:
  80. return buysell_text{'B', 'B', 'B'};
  81. default:
  82. throw std::invalid_argument("invalid text_from_type type");
  83. }
  84. }
  85. constexpr uint8_t type_from_buysell(const buysell market) {
  86. if (market.foe[0]) {
  87. if (market.foe[1]) {
  88. if (market.foe[2]) {
  89. return 8; // BBB TTT
  90. } else
  91. return 1; // BBS TTF
  92. } else {
  93. if (market.foe[2]) {
  94. return 2; // BSB TFT
  95. } else
  96. return 6; // BSS TFF
  97. }
  98. } else {
  99. if (market.foe[1]) {
  100. if (market.foe[2]) {
  101. return 3; // SBB FTT
  102. } else
  103. return 5; // SBS FTF
  104. } else {
  105. if (market.foe[2]) {
  106. return 4; // SSB FFT
  107. } else
  108. return 7; // SSS FFF
  109. }
  110. }
  111. }
  112. struct port {
  113. uint16_t sector;
  114. uint8_t type;
  115. uint16_t amount[3];
  116. uint8_t percent[3];
  117. };
  118. struct port parse_portcim(const std::string line);
  119. // SPECIAL = 0
  120. // STARDOCK = 9
  121. class GameData {
  122. public:
  123. std::map<std::string, std::string> config;
  124. // warps;
  125. // ports;
  126. };