galaxy.cpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #include "galaxy.h"
  2. #include <boost/format.hpp>
  3. #include <ostream>
  4. #include <string>
  5. bool buysell::operator==(const buysell &rhs) const {
  6. return ((foe[0] == rhs.foe[0]) && (foe[1] == rhs.foe[1]) &&
  7. (foe[2] == rhs.foe[2]));
  8. }
  9. std::ostream &operator<<(std::ostream &os, const buysell &bs) {
  10. os << bs.foe[0] << bs.foe[1] << bs.foe[2];
  11. return os;
  12. }
  13. bool buysell_text::operator==(const buysell_text &rhs) const {
  14. return ((txt[0] == rhs.txt[0]) && (txt[1] == rhs.txt[1]) &&
  15. (txt[2] == rhs.txt[2]));
  16. }
  17. std::ostream &operator<<(std::ostream &os, const buysell_text &bst) {
  18. os << '"' << bst.txt[0] << bst.txt[1] << bst.txt[2] << '"';
  19. return os;
  20. }
  21. std::ostream &operator<<(std::ostream &os, const port &p) {
  22. if (p.type == 0) {
  23. os << p.sector << ": " << (int)p.type;
  24. } else {
  25. os << p.sector << ": " << (int)p.type << " " << text_from_type(p.type)
  26. << " " << p.amount[0] << "," << p.amount[1] << "," << p.amount[2];
  27. }
  28. return os;
  29. }
  30. sector_warps::sector_warps() {
  31. sector = 0;
  32. for (int x = 0; x < MAX_WARPS; ++x)
  33. warps[x] = 0;
  34. }
  35. void sector_warps::add(sector_type new_sector) {
  36. for (int x = 0; x < MAX_WARPS; ++x) {
  37. if (warps[x] == new_sector)
  38. return;
  39. if (warps[x] == 0) {
  40. warps[x] = new_sector;
  41. return;
  42. }
  43. }
  44. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  45. MAX_WARPS % (int)sector);
  46. throw std::out_of_range(message);
  47. }
  48. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  49. // #define GTEST_DEBUG
  50. struct port parse_portcim(const std::string line) {
  51. struct port p;
  52. p.sector = std::stoi(line);
  53. // 20 - 1708 97% - 710 56% 287 15%
  54. static std::regex portrx(
  55. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  56. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  57. std::regex_constants::ECMAScript);
  58. // does it not understand {3} ??
  59. // NO, it does not, from regex101.com:
  60. // A repeated capturing group will only capture the last iteration. Put a
  61. // capturing group around the repeated group to capture all iterations or use
  62. // a non-capturing group instead if you're not interested in the data
  63. //
  64. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  65. // ]*",
  66. // std::regex_constants::ECMAScript);
  67. // sector + amount pct + amount pct + amount pct
  68. // 1 2 3 4 5 6 7 8 9 10
  69. #ifdef GTEST_DEBUG
  70. GTEST_COUT << "Sector: " << p.sector << std::endl;
  71. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  72. #endif
  73. buysell port_buysell;
  74. std::smatch matches;
  75. if (std::regex_match(line, matches, portrx)) {
  76. #ifdef GTEST_DEBUG
  77. for (size_t x = 1; x < matches.size(); ++x) {
  78. GTEST_COUT << x << " : " << matches[x] << std::endl;
  79. }
  80. #endif
  81. if (matches.size() != 11) {
  82. #ifdef GTEST_DEBUG
  83. GTEST_COUT << "Now you have 101 problems." << std::endl;
  84. #endif
  85. p.sector = 0;
  86. p.type = 0;
  87. return p;
  88. }
  89. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  90. p.sector = stoi(matches[1]);
  91. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  92. // for (int x = 1; x < 11; ++x) {
  93. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  94. // }
  95. for (int x = 0; x < 3; ++x) {
  96. int pos = x * 3;
  97. port_buysell.foe[x] = matches[pos + 2] == "-";
  98. p.amount[x] = stoi(matches[pos + 3]);
  99. p.percent[x] = stoi(matches[pos + 4]);
  100. }
  101. p.type = type_from_buysell(port_buysell);
  102. #ifdef GTEST_DEBUG
  103. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  104. #endif
  105. return p;
  106. } else {
  107. #ifdef GTEST_DEBUG
  108. GTEST_COUT << "regex_match failed." << std::endl;
  109. #endif
  110. p.type = 0;
  111. p.sector = 0;
  112. return p;
  113. }
  114. }