director.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. void proxy_activate();
  15. void proxy_deactivate();
  16. char game; // 0 = not in a game
  17. // not sure on these... or how I want to use them.
  18. // maybe this is the place for these?!
  19. // IF these are public -- Session can access them. :P
  20. bool show_client;
  21. bool talk_direct;
  22. // maybe these would work better?
  23. std::function<void(bool)> set_show_client;
  24. std::function<void(bool)> set_talk_direct;
  25. Director();
  26. ~Director();
  27. private:
  28. StringFunc SL_parser;
  29. void SL_cimline(const std::string &line);
  30. void SL_thiefline(const std::string &line);
  31. void SL_sectorline(const std::string &line);
  32. void SL_portline(const std::string &line);
  33. void SL_warpline(const std::string &line);
  34. };