galaxy.cpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #include "galaxy.h"
  2. #include <ostream>
  3. bool buysell::operator==(const buysell &rhs) const {
  4. return ((foe[0] == rhs.foe[0]) && (foe[1] == rhs.foe[1]) &&
  5. (foe[2] == rhs.foe[2]));
  6. }
  7. std::ostream &operator<<(std::ostream &os, const buysell &bs) {
  8. os << bs.foe[0] << bs.foe[1] << bs.foe[2];
  9. return os;
  10. }
  11. bool buysell_text::operator==(const buysell_text &rhs) const {
  12. return ((txt[0] == rhs.txt[0]) && (txt[1] == rhs.txt[1]) &&
  13. (txt[2] == rhs.txt[2]));
  14. }
  15. std::ostream &operator<<(std::ostream &os, const buysell_text &bst) {
  16. os << '"' << bst.txt[0] << bst.txt[1] << bst.txt[2] << '"';
  17. return os;
  18. }
  19. struct port parse_portcim(const std::string line) {
  20. struct port p;
  21. p.sector = std::stoi(line);
  22. // 20 - 1708 97% - 710 56% 287 15%
  23. static std::regex portrx(
  24. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  25. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  26. std::regex_constants::ECMAScript);
  27. // sector + amount pct + amount pct + amount pct
  28. // 1 2 3 4 5 6 7 8 9 10
  29. // GTEST_COUT << "Sector: " << p.sector << std::endl;
  30. // GTEST_COUT << "Line: [" << line << "]" << std::endl;
  31. buysell port_buysell;
  32. std::smatch matches;
  33. if (std::regex_match(line, matches, portrx)) {
  34. if (matches.size() != 11) {
  35. // GTEST_COUT << "Now you have 101 problems." << std::endl;
  36. p.sector = 0;
  37. p.type = 0;
  38. return p;
  39. }
  40. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  41. p.sector = stoi(matches[1]);
  42. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  43. // for (int x = 1; x < 11; ++x) {
  44. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  45. // }
  46. for (int x = 0; x < 3; ++x) {
  47. int pos = x * 3;
  48. port_buysell.foe[x] = matches[pos + 2] == "-";
  49. p.amount[x] = stoi(matches[pos + 3]);
  50. p.percent[x] = stoi(matches[pos + 4]);
  51. }
  52. p.type = type_from_buysell(port_buysell);
  53. // GTEST_COUT << "port is type " << (int)p.type << std::endl;
  54. return p;
  55. } else {
  56. // GTEST_COUT << "regex_match failed." << std::endl;
  57. p.type = 0;
  58. p.sector = 0;
  59. return p;
  60. }
  61. }