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