scripts.h 912 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. /**
  12. * internal state
  13. *
  14. * 1 = <Info> query.
  15. * 2 = move to active port
  16. * 3 = trade
  17. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  18. *
  19. *
  20. */
  21. int state;
  22. int active_port; // port trading with
  23. // information from the find_best_trades function + others.
  24. int port[2];
  25. int active;
  26. int type;
  27. buysell trades;
  28. buysell port_buysell[2];
  29. void activate(void) override;
  30. void deactivate(void) override;
  31. // optional here
  32. void server_line(const std::string &line,
  33. const std::string &raw_line) override;
  34. void server_prompt(const std::string &prompt) override;
  35. void client_input(const std::string &cinput) override;
  36. };
  37. #endif