galaxy.cpp 3.4 KB

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