director.h 1.7 KB

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