refactor, add stop and force commands
refine hardcoded system prompt a little
This commit is contained in:
249
src/solanaceae/rpbot/rpbot_commands.cpp
Normal file
249
src/solanaceae/rpbot/rpbot_commands.cpp
Normal file
@ -0,0 +1,249 @@
|
||||
#include "./rpbot.hpp"
|
||||
|
||||
#include "./rpbot_states.hpp"
|
||||
|
||||
#include <solanaceae/contact/components.hpp>
|
||||
#include <solanaceae/message3/components.hpp>
|
||||
#include <solanaceae/util/utils.hpp>
|
||||
|
||||
void RPBot::registerCommands(void) {
|
||||
if (_mcd == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
_mcd->registerCommand(
|
||||
"RPBot", "rpbot",
|
||||
"start",
|
||||
[this](std::string_view params, Message3Handle m) -> bool {
|
||||
const auto contact_from = m.get<Message::Components::ContactFrom>().c;
|
||||
const auto contact_to = m.get<Message::Components::ContactTo>().c;
|
||||
|
||||
if (params.empty()) {
|
||||
// contact_to should be the contact this is for
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_to)) {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: already running"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_from)) {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: already running"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (_cr.all_of<Contact::Components::ParentOf>(contact_to)) {
|
||||
// group
|
||||
auto& new_state = _cr.emplace<StateIdle>(contact_to);
|
||||
new_state.timeout = 10.f;
|
||||
} else {
|
||||
// pm
|
||||
auto& new_state = _cr.emplace<StateIdle>(contact_from);
|
||||
new_state.timeout = 10.f;
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"RPBot started"
|
||||
);
|
||||
return true;
|
||||
} else {
|
||||
// id in params
|
||||
if (params.size() % 2 != 0) {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"malformed hex id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
auto id_bin = hex2bin(params);
|
||||
|
||||
auto view = _cr.view<Contact::Components::ID>();
|
||||
for (auto it = view.begin(), it_end = view.end(); it != it_end; it++) {
|
||||
if (view.get<Contact::Components::ID>(*it).data == id_bin) {
|
||||
auto& new_state = _cr.emplace<StateIdle>(*it);
|
||||
new_state.timeout = 10.f;
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"RPBot started"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"no contact found for id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
},
|
||||
"Start RPBot in current contact.",
|
||||
MessageCommandDispatcher::Perms::ADMIN // TODO: should proably be MODERATOR
|
||||
);
|
||||
|
||||
_mcd->registerCommand(
|
||||
"RPBot", "rpbot",
|
||||
"stop",
|
||||
[this](std::string_view params, Message3Handle m) -> bool {
|
||||
const auto contact_from = m.get<Message::Components::ContactFrom>().c;
|
||||
const auto contact_to = m.get<Message::Components::ContactTo>().c;
|
||||
|
||||
if (params.empty()) {
|
||||
// contact_to should be the contact this is for
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_to)) {
|
||||
_cr.emplace_or_replace<TagStopRPBot>(contact_to);
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"stopped"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_from)) {
|
||||
_cr.emplace_or_replace<TagStopRPBot>(contact_from);
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"stopped"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: not running"
|
||||
);
|
||||
return true;
|
||||
} else {
|
||||
// id in params
|
||||
if (params.size() % 2 != 0) {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"malformed hex id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
auto id_bin = hex2bin(params);
|
||||
|
||||
auto view = _cr.view<Contact::Components::ID>();
|
||||
for (auto it = view.begin(), it_end = view.end(); it != it_end; it++) {
|
||||
if (view.get<Contact::Components::ID>(*it).data == id_bin) {
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(*it)) {
|
||||
_cr.emplace_or_replace<TagStopRPBot>(*it);
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"stopped"
|
||||
);
|
||||
return true;
|
||||
} else {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: not running"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"no contact found for id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
},
|
||||
"Stop RPBot in current or id contact.",
|
||||
MessageCommandDispatcher::Perms::ADMIN // TODO: should proably be MODERATOR
|
||||
);
|
||||
|
||||
_mcd->registerCommand(
|
||||
"RPBot", "rpbot",
|
||||
"force",
|
||||
[this](std::string_view params, Message3Handle m) -> bool {
|
||||
const auto contact_from = m.get<Message::Components::ContactFrom>().c;
|
||||
const auto contact_to = m.get<Message::Components::ContactTo>().c;
|
||||
|
||||
if (params.empty()) {
|
||||
// contact_to should be the contact this is for
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_to)) {
|
||||
if (_cr.all_of<StateIdle>(contact_to)) {
|
||||
_cr.get<StateIdle>(contact_to).force = true;
|
||||
_cr.get<StateIdle>(contact_to).timeout = 2.f;
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"forced its hand"
|
||||
);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(contact_from)) {
|
||||
if (_cr.all_of<StateIdle>(contact_from)) {
|
||||
_cr.get<StateIdle>(contact_from).force = true;
|
||||
_cr.get<StateIdle>(contact_from).timeout = 2.f;
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"forced its hand"
|
||||
);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: not running"
|
||||
);
|
||||
return true;
|
||||
} else {
|
||||
// id in params
|
||||
if (params.size() % 2 != 0) {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"malformed hex id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
auto id_bin = hex2bin(params);
|
||||
|
||||
auto view = _cr.view<Contact::Components::ID>();
|
||||
for (auto it = view.begin(), it_end = view.end(); it != it_end; it++) {
|
||||
if (view.get<Contact::Components::ID>(*it).data == id_bin) {
|
||||
if (_cr.any_of<StateIdle, StateGenerateMsg, StateNext, StateTimingCheck>(*it)) {
|
||||
if (_cr.all_of<StateIdle>(*it)) {
|
||||
_cr.get<StateIdle>(*it).force = true;
|
||||
_cr.get<StateIdle>(*it).timeout = 2.f;
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"forced its hand"
|
||||
);
|
||||
}
|
||||
return true;
|
||||
} else {
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"error: not running"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_rmm.sendText(
|
||||
contact_from,
|
||||
"no contact found for id"
|
||||
);
|
||||
return true;
|
||||
}
|
||||
},
|
||||
"force it to generate a message",
|
||||
MessageCommandDispatcher::Perms::ADMIN // TODO: should proably be MODERATOR
|
||||
);
|
||||
|
||||
std::cout << "RPBot: registered commands\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user