mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*
|
|
* ace_medical.cpp
|
|
*
|
|
* Author:
|
|
* Glowbal
|
|
*/
|
|
|
|
#include "ace_common.h"
|
|
#include <vector>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include "handleDamage.h"
|
|
#include "OpenWound.h"
|
|
|
|
extern "C" {
|
|
__declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function);
|
|
};
|
|
|
|
std::vector<std::string> parseExtensionInput(const std::string& input)
|
|
{
|
|
std::istringstream ss(input);
|
|
std::string token;
|
|
|
|
std::vector<std::string> 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<std::string> 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") {
|
|
returnValue = ace::medical::handleDamage::GetInstance().FinalizeDefinitions();
|
|
}
|
|
}
|
|
strncpy(output, returnValue.c_str(), outputSize);
|
|
output[outputSize - 1] = '\0';
|
|
}
|
|
}
|
|
|