Przeglądaj źródła

Wrong chain, use director one.

Steve Thielemann 3 lat temu
rodzic
commit
8b035a23d8
2 zmienionych plików z 7 dodań i 7 usunięć
  1. 7 6
      dispatchers.cpp
  2. 0 1
      dispatchers.h

+ 7 - 6
dispatchers.cpp

@@ -25,8 +25,8 @@ void Dispatch::notify(void) {
 }
 
 void Dispatch::chain_client_input(const std::string &input) {
-  if (chain) {
-    chain->chain_client_input(input);
+  if (director.chain) {
+    director.chain->chain_client_input(input);
   } else {
     client_input(input);
   }
@@ -34,16 +34,16 @@ void Dispatch::chain_client_input(const std::string &input) {
 
 void Dispatch::chain_server_line(const std::string &line,
                                  const std::string &raw_line) {
-  if (chain) {
-    chain->chain_server_line(line, raw_line);
+  if (director.chain) {
+    director.chain->chain_server_line(line, raw_line);
   } else {
     server_line(line, raw_line);
   }
 }
 
 void Dispatch::chain_server_prompt(const std::string &prompt) {
-  if (chain) {
-    chain->chain_server_prompt(prompt);
+  if (director.chain) {
+    director.chain->chain_server_prompt(prompt);
   } else {
     server_prompt(prompt);
   }
@@ -562,6 +562,7 @@ MoveDispatch::MoveDispatch(Director &d) : Dispatch(d) {
 
 void MoveDispatch::activate(void) {
   starting = director.current_sector;
+  BUGZ_LOG(fatal) << "MoveDispatch::activate()";
   BUGZ_LOG(warning) << "Moving from " << starting << " to " << move_to;
   // Start with density scan
   to_server("SD");

+ 0 - 1
dispatchers.h

@@ -28,7 +28,6 @@ class Dispatch {
  protected:
   Director &director;
   notifyFunc notify_;
-  std::shared_ptr<Dispatch> chain;
 
  public:
   Dispatch(Director &);