Allow customizing chat message format (#8529)

This commit is contained in:
ANAND
2019-08-08 21:34:46 +05:30
committed by rubenwardy
parent cc610c74a7
commit d1c27c7e80
10 changed files with 111 additions and 47 deletions

View File

@@ -36,14 +36,18 @@ class ScriptApiServer
// Calls on_shutdown handlers
void on_shutdown();
// Calls core.format_chat_message
std::string formatChatMessage(const std::string &name,
const std::string &message);
/* auth */
bool getAuth(const std::string &playername,
std::string *dst_password,
std::set<std::string> *dst_privs);
std::string *dst_password,
std::set<std::string> *dst_privs);
void createAuth(const std::string &playername,
const std::string &password);
const std::string &password);
bool setPassword(const std::string &playername,
const std::string &password);
const std::string &password);
private:
void getAuthHandler();
void readPrivileges(int index, std::set<std::string> &result);