123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- #ifndef DISPATCHERS_H
- #define DISPATCHERS_H
- #include <map>
- #include <memory>
- #include <string>
- #include "director.h"
- #include "session_common.h"
- /*
- Item of the day:
- class Result {
- // holds unique_ptr or shared_ptr to the "dispatcher"
- // when I'm done -- delete the result, cleaning up
- // the dispatcher
- }
- How does this call another?
- How does it return a result?
- possibly: io_service::post( DONE ); !
- */
- class Dispatch {
- protected:
- Director &director;
- notifyFunc notify_;
- std::shared_ptr<Dispatch> chain;
- public:
- Dispatch(Director &);
- virtual ~Dispatch();
- void setNotify(notifyFunc nf);
- void notify(void);
- virtual void activate(void) = 0;
- virtual void deactivate(void) = 0;
- const std::string &get_prompt(void);
- void to_server(const std::string &send);
- void to_client(const std::string &send);
- // default to chain calls
- void chain_client_input(const std::string &input);
- void chain_server_line(const std::string &line, const std::string &raw_line);
- void chain_server_prompt(const std::string &prompt);
- virtual void client_input(const std::string &input);
- virtual void server_line(const std::string &line, const std::string &raw_line);
- virtual void server_prompt(const std::string &prompt);
- };
- /*
- * Some options for input:
- *
- * numeric only
- *
- */
- class InputDispatch : public Dispatch {
- private:
- public:
- InputDispatch(Director &);
- ~InputDispatch();
- std::string prompt;
- size_t max_length;
- std::string input;
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line,
- const std::string &raw_line) override;
- // void server_prompt(const std::string &prompt);
- void client_input(const std::string &cinput) override;
- };
- class MenuDispatch : public Dispatch {
- private:
- void help(void);
- void menubox(void);
- size_t max_width;
- size_t max_option_width;
- bool instant = false;
- void calculate_widths(void);
- std::string centered(int length, const std::string &);
- public:
- MenuDispatch(Director &);
- ~MenuDispatch();
- std::string menu_box_color;
- std::string menu_text_color;
- std::string menu_title;
- std::string menu_options_color;
- std::string menu_prompt;
- bool lazy = true;
- std::map<std::string, std::string> menu;
- bool case_sensitive = false;
- std::string input;
- int choice;
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line, const std::string &raw_line) override;
- // void server_prompt(const std::string &prompt);
- void client_input(const std::string &cinput) override;
- };
- class CIMDispatch : public Dispatch {
- public:
- CIMDispatch(Director &);
- int count;
-
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line, const std::string &raw_line) override;
- };
- class MoveDispatch : public Dispatch {
- public:
- MoveDispatch(Director &);
- sector_type move_to;
- sector_type starting;
- int state;
- int success;
- int warp_pos;
- std::string at_destination;
- std::vector<int> warp_lane;
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line, const std::string &raw_line) override;
- void server_prompt(const std::string &prompt) override;
- void client_input(const std::string &input) override;
- private:
- bool density_clear(density d); // int sector, int density);
- };
- class CoreDispatch : public Dispatch {
- public:
- CoreDispatch(Director &);
- void activate(void) override;
- void deactivate(void) override;
- // optional here
- void server_line(const std::string &line, const std::string &raw_line) override;
- void server_prompt(const std::string &prompt) override;
- void client_input(const std::string &input) override;
- };
- #endif
|