ACE3/extensions/medical/medical.cpp

58 lines
1.3 KiB
C++
Raw Normal View History

2015-05-03 22:02:39 +00:00
/*
* ace_medical.cpp
*
* Author:
* Glowbal
*/
#include "ace_common.h"
#include <vector>
#include <string>
#include <sstream>
#include "handleDamage.h"
extern "C" {
2015-05-03 22:32:44 +00:00
__declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function);
2015-05-03 22:02:39 +00:00
};
std::vector<std::string> parseExtensionInput(const std::string& input)
{
2015-05-03 22:32:44 +00:00
std::istringstream ss(input);
std::string token;
std::vector<std::string> output;
while (std::getline(ss, token, ',')) {
output.push_back(token);
}
return output;
2015-05-03 22:02:39 +00:00
}
void __stdcall RVExtension(char *output, int outputSize, const char *function) {
2015-05-03 22:32:44 +00:00
if (!strcmp(function, "version")) {
strncpy(output, ACE_FULL_VERSION_STR, outputSize);
}
else
{
std::vector<std::string> arguments = parseExtensionInput(function);
2015-05-14 14:23:01 +00:00
if (arguments.size() > 0)
2015-05-03 22:32:44 +00:00
{
std::string command = arguments.at(0);
// can we not just use C++11?
if (command == "addInjuryType") {
}
else if (command == "addDamageType") {
}
else if (command == "getInjury") {
// ace::medical::handleDamage();
}
}
std::string returnValue = "";
strncpy(output, returnValue.c_str(), outputSize);
output[outputSize - 1] = '\0';
}
2015-05-03 22:02:39 +00:00
}