director.h 1.4 KB

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