scripts.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #ifndef SCRIPTS_H
  2. #define SCRIPTS_H
  3. #include "buysell.h"
  4. #include "dispatchers.h"
  5. #include "galaxy.h"
  6. class ScriptTerror : public Dispatch {
  7. private:
  8. MoveDispatch * md;
  9. std::shared_ptr<Dispatch> move;
  10. InputDispatch * id;
  11. std::shared_ptr<Dispatch> input;
  12. TraderDispatch * td;
  13. std::shared_ptr<Dispatch> trader;
  14. std::string old_trade_end_empty;
  15. public:
  16. ScriptTerror(Director &);
  17. ~ScriptTerror();
  18. int loops;
  19. int max_loops;
  20. port_pair_type ppt;
  21. void init(void);
  22. void activate(void) override;
  23. void deactivate(void) override;
  24. void input_notify(void);
  25. void move_notify(void);
  26. void trade_notify(void);
  27. void server_prompt(const std::string &prompt) override;
  28. };
  29. class ScriptVoyager : public Dispatch {
  30. private:
  31. MoveDispatch * md;
  32. std::shared_ptr<Dispatch> move;
  33. InputDispatch * id;
  34. std::shared_ptr<Dispatch> input;
  35. void next(void);
  36. public:
  37. ScriptVoyager(Director &);
  38. ~ScriptVoyager();
  39. int loops;
  40. void init(void);
  41. void activate(void) override;
  42. void deactivate(void) override;
  43. void input_notify(void);
  44. void move_notify(void);
  45. void server_prompt(const std::string &prompt) override;
  46. };
  47. #endif