director.h 1.2 KB

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