scripts.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef SCRIPTS_H
  2. #define SCRIPTS_H
  3. #include "buysell.h"
  4. #include "dispatchers.h"
  5. #include "galaxy.h"
  6. class ScriptTrader : public Dispatch {
  7. private:
  8. public:
  9. ScriptTrader(Director &);
  10. ~ScriptTrader();
  11. char foe[4] = "foe";
  12. /**
  13. * internal state
  14. *
  15. * 1 = <Info> query.
  16. * 2 = move to active port
  17. * 3 = trade
  18. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  19. *
  20. *
  21. */
  22. int state;
  23. float percent;
  24. bool buying;
  25. int initial_offer;
  26. int last_offer;
  27. int final_offer;
  28. int active_port; // port trading with
  29. // information from the find_best_trades function + others.
  30. int port[2];
  31. int active;
  32. int type;
  33. buysell trades;
  34. buysell port_buysell[2];
  35. void activate(void) override;
  36. void deactivate(void) override;
  37. // optional here
  38. void server_line(const std::string &line,
  39. const std::string &raw_line) override;
  40. void server_prompt(const std::string &prompt) override;
  41. void client_input(const std::string &cinput) override;
  42. };
  43. #endif