/* * ace_parse_imagepath.cpp * Author: PabstMirror * Gets raw image path from structured text input. * * Takes: * Structured text that usualy has an image: * Example: ""; * * Returns: * Just the image path or "" if none */ #include "shared.hpp" #include #include #include extern "C" { EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); } std::string getImagePathFromStructuredText(const std::string & input) { std::string returnValue = ""; std::size_t endIndex = input.find(".paa"); std::size_t startIndex = endIndex - 1; if ((endIndex != std::string::npos) && (endIndex > 1)) { endIndex = endIndex + 4; while ((startIndex > 0) && (returnValue == "")) { if ((input[startIndex]) == '\'') { returnValue = input.substr((startIndex + 1), (endIndex - startIndex - 1)); }; startIndex = startIndex - 1; }; }; return returnValue; } void __stdcall RVExtension(char *output, int outputSize, const char *function) { ZERO_OUTPUT(); if (!strcmp(function, "version")) { strncpy_s(output, outputSize, ACE_FULL_VERSION_STR, _TRUNCATE); } else { strncpy_s(output, outputSize, getImagePathFromStructuredText(function).c_str(), _TRUNCATE); } EXTENSION_RETURN(); }