director.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include "session_common.h"
  2. class Director {
  3. public:
  4. StringFunc to_client;
  5. StringFunc to_server;
  6. // What about post ?
  7. void client_input(const std::string &input);
  8. void server_line(const std::string &line);
  9. void server_prompt(const std::string &prompt, const std::string &raw_prompt);
  10. bool active;
  11. // not sure if I need these or not?
  12. std::string current_raw_prompt;
  13. std::string current_prompt;
  14. std::string old_prompt;
  15. std::string old_raw_prompt;
  16. void proxy_activate();
  17. void proxy_deactivate();
  18. char game; // 0 = not in a game
  19. // not sure on these... or how I want to use them.
  20. // maybe this is the place for these?!
  21. // IF these are public -- Session can access them. :P
  22. bool show_client;
  23. bool talk_direct;
  24. // maybe these would work better?
  25. std::function<void(bool)> set_show_client;
  26. std::function<void(bool)> set_talk_direct;
  27. Director();
  28. ~Director();
  29. private:
  30. StringFunc SL_parser;
  31. void SL_cimline(const std::string &line);
  32. void SL_thiefline(const std::string &line);
  33. void SL_sectorline(const std::string &line);
  34. void SL_portline(const std::string &line);
  35. void SL_warpline(const std::string &line);
  36. };