ES-DE/es-core/src/Scripting.cpp

67 lines
2.5 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: MIT
2020-06-22 15:27:53 +00:00
//
// EmulationStation Desktop Edition
2020-06-22 15:27:53 +00:00
// Scripting.cpp
//
// Executes custom scripts for various events in EmulationStation.
// By calling fireEvent() the scripts inside the directory corresponding to the
// argument 'eventName' will be executed with arg1 and arg2 as the script arguments.
//
// The scripts are searched for in ~/.emulationstation/scripts/<eventName>
2020-06-22 15:27:53 +00:00
// For example, if the event is called 'game-start', all scripts inside the directory
// ~/.emulationstation/scripts/game-start/ will be executed.
2020-06-22 15:27:53 +00:00
//
2018-01-30 00:49:08 +00:00
#include "Scripting.h"
2018-01-30 00:49:08 +00:00
#include "Log.h"
#include "Platform.h"
#include "Settings.h"
#include "utils/FileSystemUtil.h"
2018-01-30 00:49:08 +00:00
namespace Scripting
{
void fireEvent(const std::string& eventName, const std::string& arg1, const std::string& arg2)
{
if (!Settings::getInstance()->getBool("CustomEventScripts"))
return;
LOG(LogDebug) << "Scripting::fireEvent(): " << eventName << " \"" << arg1 << "\" \"" << arg2
<< "\"";
2018-01-30 00:49:08 +00:00
std::list<std::string> scriptDirList;
std::string scriptDir;
2018-01-30 00:49:08 +00:00
2020-06-22 15:27:53 +00:00
// Check in homepath.
scriptDir = Utils::FileSystem::getHomePath() + "/.emulationstation/scripts/" + eventName;
if (Utils::FileSystem::exists(scriptDir))
scriptDirList.push_back(scriptDir);
2018-01-30 00:49:08 +00:00
for (auto dirIt = scriptDirList.cbegin(); dirIt != scriptDirList.cend(); dirIt++) {
2018-01-30 00:49:08 +00:00
std::list<std::string> scripts = Utils::FileSystem::getDirContent(*dirIt);
for (auto it = scripts.cbegin(); it != scripts.cend(); it++) {
std::string arg1Quotation;
std::string arg2Quotation;
// Add quotation marks around the arguments as long as these are not already
// present (i.e. for arguments with spaces in them).
if (arg1.front() != '\"')
arg1Quotation = "\"";
if (arg2.front() != '\"')
arg2Quotation = "\"";
std::string script;
script.append(*it)
.append(" ")
.append(arg1Quotation)
.append(arg1)
.append(arg1Quotation)
.append(" ")
.append(arg2Quotation)
.append(arg2)
.append(arg2Quotation);
LOG(LogDebug) << "Executing: " << script;
2018-01-30 00:49:08 +00:00
runSystemCommand(script);
}
}
}
} // namespace Scripting