|
|
@ -427,24 +427,65 @@ static bool try_autocomplete(color_ostream &con, const std::string &first, std::
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string findScript(string path, string name) {
|
|
|
|
bool Core::addScriptPath(string path, bool search_before)
|
|
|
|
if (df::global::world) {
|
|
|
|
{
|
|
|
|
//first try the save folder if it exists
|
|
|
|
lock_guard<mutex> lock(*script_path_mutex);
|
|
|
|
string save = World::ReadWorldFolder();
|
|
|
|
vector<string> &vec = script_paths[search_before ? 0 : 1];
|
|
|
|
if ( save != "" ) {
|
|
|
|
if (std::find(vec.begin(), vec.end(), path) != vec.end())
|
|
|
|
string file = path + "/data/save/" + save + "/raw/scripts/" + name;
|
|
|
|
return false;
|
|
|
|
if (fileExists(file)) {
|
|
|
|
if (!Filesystem::isdir(path))
|
|
|
|
return file;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
vec.push_back(path);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool Core::removeScriptPath(string path)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
lock_guard<mutex> lock(*script_path_mutex);
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
vector<string> &vec = script_paths[i];
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto it = std::find(vec.begin(), vec.end(), path);
|
|
|
|
|
|
|
|
if (it == vec.end())
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
vec.erase(it);
|
|
|
|
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
string file = path + "/raw/scripts/" + name;
|
|
|
|
return found;
|
|
|
|
if (fileExists(file)) {
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
|
|
|
|
|
|
|
|
void Core::getScriptPaths(std::vector<std::string> *dest)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
lock_guard<mutex> lock(*script_path_mutex);
|
|
|
|
|
|
|
|
dest->clear();
|
|
|
|
|
|
|
|
string df_path = this->p->getPath();
|
|
|
|
|
|
|
|
for (auto it = script_paths[0].begin(); it != script_paths[0].end(); ++it)
|
|
|
|
|
|
|
|
dest->push_back(*it);
|
|
|
|
|
|
|
|
if (df::global::world) {
|
|
|
|
|
|
|
|
string save = World::ReadWorldFolder();
|
|
|
|
|
|
|
|
if (save.size())
|
|
|
|
|
|
|
|
dest->push_back(df_path + "/data/save/" + save + "/raw/scripts");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file = path + "/hack/scripts/" + name;
|
|
|
|
dest->push_back(df_path + "/raw/scripts");
|
|
|
|
if (fileExists(file)) {
|
|
|
|
dest->push_back(df_path + "/hack/scripts");
|
|
|
|
return file;
|
|
|
|
for (auto it = script_paths[1].begin(); it != script_paths[1].end(); ++it)
|
|
|
|
|
|
|
|
dest->push_back(*it);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string Core::findScript(string name)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
vector<string> paths;
|
|
|
|
|
|
|
|
getScriptPaths(&paths);
|
|
|
|
|
|
|
|
for (auto it = paths.begin(); it != paths.end(); ++it)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
string path = *it + "/" + name;
|
|
|
|
|
|
|
|
if (Filesystem::isfile(path))
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -592,15 +633,14 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
|
|
|
|
return CR_OK;
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
string path = this->p->getPath();
|
|
|
|
string file = findScript(parts[0] + ".lua");
|
|
|
|
string file = findScript(path, parts[0] + ".lua");
|
|
|
|
|
|
|
|
if ( file != "" ) {
|
|
|
|
if ( file != "" ) {
|
|
|
|
string help = getScriptHelp(file, "-- ");
|
|
|
|
string help = getScriptHelp(file, "-- ");
|
|
|
|
con.print("%s: %s\n", parts[0].c_str(), help.c_str());
|
|
|
|
con.print("%s: %s\n", parts[0].c_str(), help.c_str());
|
|
|
|
return CR_OK;
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (plug_mgr->ruby && plug_mgr->ruby->is_enabled() ) {
|
|
|
|
if (plug_mgr->ruby && plug_mgr->ruby->is_enabled() ) {
|
|
|
|
file = findScript(path, parts[0] + ".rb");
|
|
|
|
file = findScript(parts[0] + ".rb");
|
|
|
|
if ( file != "" ) {
|
|
|
|
if ( file != "" ) {
|
|
|
|
string help = getScriptHelp(file, "# ");
|
|
|
|
string help = getScriptHelp(file, "# ");
|
|
|
|
con.print("%s: %s\n", parts[0].c_str(), help.c_str());
|
|
|
|
con.print("%s: %s\n", parts[0].c_str(), help.c_str());
|
|
|
@ -682,7 +722,7 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
|
|
|
|
|
|
|
|
|
|
|
|
if(!plug)
|
|
|
|
if(!plug)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::string lua = findScript(this->p->getPath(), part + ".lua");
|
|
|
|
std::string lua = findScript(part + ".lua");
|
|
|
|
if (lua.size())
|
|
|
|
if (lua.size())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
res = enableLuaScript(con, part, enable);
|
|
|
|
res = enableLuaScript(con, part, enable);
|
|
|
@ -873,11 +913,11 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
|
|
|
|
{
|
|
|
|
{
|
|
|
|
con << " is part of plugin " << plug->getName() << "." << std::endl;
|
|
|
|
con << " is part of plugin " << plug->getName() << "." << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (findScript(this->p->getPath(), parts[0] + ".lua").size())
|
|
|
|
else if (findScript(parts[0] + ".lua").size())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
con << " is a Lua script." << std::endl;
|
|
|
|
con << " is a Lua script." << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (findScript(this->p->getPath(), parts[0] + ".rb").size())
|
|
|
|
else if (findScript(parts[0] + ".rb").size())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
con << " is a Ruby script." << std::endl;
|
|
|
|
con << " is a Ruby script." << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1100,11 +1140,10 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
|
|
|
|
if(res == CR_NOT_IMPLEMENTED)
|
|
|
|
if(res == CR_NOT_IMPLEMENTED)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
string completed;
|
|
|
|
string completed;
|
|
|
|
string path = this->p->getPath();
|
|
|
|
string filename = findScript(first + ".lua");
|
|
|
|
string filename = findScript(path, first + ".lua");
|
|
|
|
|
|
|
|
bool lua = filename != "";
|
|
|
|
bool lua = filename != "";
|
|
|
|
if ( !lua ) {
|
|
|
|
if ( !lua ) {
|
|
|
|
filename = findScript(path, first + ".rb");
|
|
|
|
filename = findScript(first + ".rb");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( lua )
|
|
|
|
if ( lua )
|
|
|
|
res = runLuaScript(con, first, parts);
|
|
|
|
res = runLuaScript(con, first, parts);
|
|
|
@ -1273,6 +1312,8 @@ Core::Core()
|
|
|
|
server = NULL;
|
|
|
|
server = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
color_ostream::log_errors_to_stderr = true;
|
|
|
|
color_ostream::log_errors_to_stderr = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
script_path_mutex = new mutex();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void Core::fatal (std::string output, bool deactivate)
|
|
|
|
void Core::fatal (std::string output, bool deactivate)
|
|
|
|