scripts.h 672 B

12345678910111213141516171819202122232425262728293031
  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. // information from the find_best_trades function + others.
  12. int port[2];
  13. int active;
  14. int type;
  15. buysell trades;
  16. buysell port_buysell[2];
  17. void activate(void) override;
  18. void deactivate(void) override;
  19. // optional here
  20. void server_line(const std::string &line,
  21. const std::string &raw_line) override;
  22. void server_prompt(const std::string &prompt) override;
  23. void client_input(const std::string &cinput) override;
  24. };
  25. #endif