/* * ace_medical.cpp * * Author: * Glowbal */ #include "shared.hpp" #include #include #include #include "handleDamage.h" #include "OpenWound.h" extern "C" { EXPORT void __stdcall RVExtension(char *output, int outputSize, const char *function); }; std::vector parseExtensionInput(const std::string& input) { std::istringstream ss(input); std::string token; std::vector output; while (std::getline(ss, token, ',')) { output.push_back(token); } return output; } void __stdcall RVExtension(char *output, int outputSize, const char *function) { if (!strcmp(function, "version")) { strncpy(output, ACE_FULL_VERSION_STR, outputSize); } else { std::string returnValue = ""; std::vector arguments = parseExtensionInput(function); if (arguments.size() > 0) { std::string command = arguments.at(0); arguments.erase(arguments.begin()); if (command == "addInjuryType") { returnValue = ace::medical::handleDamage::GetInstance().AddInjuryType(arguments); } else if (command == "addDamageType") { returnValue = ace::medical::handleDamage::GetInstance().AddDamageType(arguments); } else if (command == "HandleDamageWounds") { if (arguments.size() >= 4) { std::string selectionName = arguments.at(0); double amountOfDamage = std::stod(arguments.at(1)); std::string typeOfDamage = arguments.at(2); int woundID = std::stoi(arguments.at(3)); returnValue = ace::medical::handleDamage::GetInstance().HandleDamageWounds(selectionName, amountOfDamage, typeOfDamage, woundID); } } else if (command == "ConfigComplete") { ace::medical::handleDamage::GetInstance().FinalizeDefinitions(); } } strncpy(output, returnValue.c_str(), outputSize); output[outputSize - 1] = '\0'; } }