galaxy.h 4.1 KB

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