scripts.h 709 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #endif