2020-01-11 21:30:23 +00:00
|
|
|
#include "AngelScripResolver.hpp"
|
2020-02-02 11:23:50 +00:00
|
|
|
#include "../../../extern/angelscript_addons/scriptarray/scriptarray.h"
|
2020-02-04 18:34:30 +00:00
|
|
|
#include "../../../extern/angelscript_addons/scripthandle/scripthandle.h"
|
2020-02-02 11:23:50 +00:00
|
|
|
#include "../../../extern/angelscript_addons/scripthelper/scripthelper.h"
|
|
|
|
#include "../../../extern/angelscript_addons/scriptstdstring/scriptstdstring.h"
|
2020-02-06 15:25:55 +00:00
|
|
|
#include <cassert>
|
2020-02-04 18:34:30 +00:00
|
|
|
#include "TypeRegistry/BasicScriptClass.hpp"
|
2020-01-26 14:18:04 +00:00
|
|
|
#include "TypeRegistry/Battling/RegisterExecutingAttack.hpp"
|
|
|
|
#include "TypeRegistry/Battling/RegisterPokemonClass.hpp"
|
2020-01-13 18:52:32 +00:00
|
|
|
#include "TypeRegistry/Library/RegisterGrowthRateTypes.hpp"
|
|
|
|
#include "TypeRegistry/Library/RegisterItemTypes.hpp"
|
|
|
|
#include "TypeRegistry/Library/RegisterMoveTypes.hpp"
|
2020-01-13 19:05:03 +00:00
|
|
|
#include "TypeRegistry/Library/RegisterSpeciesTypes.hpp"
|
2020-01-23 14:10:08 +00:00
|
|
|
#include "TypeRegistry/Library/RegisterStaticLibraryTypes.hpp"
|
2020-01-13 19:16:23 +00:00
|
|
|
#include "TypeRegistry/Library/RegisterTypeLibrary.hpp"
|
2020-01-11 21:30:23 +00:00
|
|
|
|
2020-01-13 18:43:34 +00:00
|
|
|
CreatureLib::Battling::ScriptResolver* PkmnLib::Battling::BattleLibrary::CreateScriptResolver() {
|
2020-01-11 21:30:23 +00:00
|
|
|
return new AngelScripResolver();
|
|
|
|
}
|
2020-01-12 17:20:59 +00:00
|
|
|
|
2020-02-04 18:34:30 +00:00
|
|
|
void AngelScripResolver::Initialize(CreatureLib::Battling::BattleLibrary* arg) {
|
|
|
|
auto library = (PkmnLib::Battling::BattleLibrary*)arg;
|
2020-01-11 21:30:23 +00:00
|
|
|
_engine = asCreateScriptEngine();
|
|
|
|
|
2020-01-26 14:18:04 +00:00
|
|
|
int32_t r = _engine->SetMessageCallback(asFUNCTION(MessageCallback), nullptr, asCALL_CDECL);
|
|
|
|
if (r < 0)
|
|
|
|
throw CreatureException("Registering message callback failed.");
|
|
|
|
|
2020-01-11 21:30:23 +00:00
|
|
|
_engine->SetEngineProperty(asEP_DISALLOW_EMPTY_LIST_ELEMENTS, true);
|
2020-02-04 18:34:30 +00:00
|
|
|
_engine->SetEngineProperty(asEP_DISALLOW_VALUE_ASSIGN_FOR_REF_TYPE, false);
|
|
|
|
_engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCES, true);
|
2020-01-11 21:30:23 +00:00
|
|
|
_engine->SetEngineProperty(asEP_ALWAYS_IMPL_DEFAULT_CONSTRUCT, true);
|
|
|
|
_engine->SetEngineProperty(asEP_AUTO_GARBAGE_COLLECT, false);
|
2020-01-18 12:07:56 +00:00
|
|
|
_engine->SetEngineProperty(asEP_REQUIRE_ENUM_SCOPE, true);
|
2020-02-04 18:34:30 +00:00
|
|
|
_engine->SetEngineProperty(asEP_PROPERTY_ACCESSOR_MODE, 2);
|
2020-02-06 15:25:55 +00:00
|
|
|
_engine->SetEngineProperty(asEP_COMPILER_WARNINGS , 2);
|
2020-02-04 18:34:30 +00:00
|
|
|
|
2020-01-11 21:30:23 +00:00
|
|
|
|
|
|
|
RegisterStdString(_engine);
|
2020-01-26 14:18:04 +00:00
|
|
|
|
|
|
|
// Register Script Array type
|
|
|
|
RegisterScriptArray(_engine, true);
|
|
|
|
|
2020-01-11 21:30:23 +00:00
|
|
|
r = _engine->RegisterGlobalFunction("void print(const string &in)", asFUNCTION(Print), asCALL_CDECL);
|
2020-01-13 18:43:34 +00:00
|
|
|
if (r < 0)
|
|
|
|
throw CreatureException("Registering print function failed.");
|
2020-02-04 18:34:30 +00:00
|
|
|
RegisterScriptHandle(_engine);
|
|
|
|
|
|
|
|
_mainModule = _engine->GetModule("pkmn", asGM_ALWAYS_CREATE);
|
2020-01-11 21:30:23 +00:00
|
|
|
|
2020-01-26 14:18:04 +00:00
|
|
|
RegisterTypes();
|
2020-01-11 21:30:23 +00:00
|
|
|
RegisterExceptionRoutines(_engine);
|
|
|
|
|
2020-02-04 18:34:30 +00:00
|
|
|
auto staticLib = library->GetStaticLib();
|
|
|
|
_engine->RegisterGlobalProperty("const StaticLibrary@ StaticLib", &staticLib);
|
2020-01-26 14:18:04 +00:00
|
|
|
|
|
|
|
_contextPool = new ContextPool(_engine);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AngelScripResolver::RegisterTypes() {
|
|
|
|
// Register static library types
|
2020-01-13 19:05:03 +00:00
|
|
|
RegisterSpeciesTypes::Register(_engine);
|
2020-01-13 18:21:41 +00:00
|
|
|
RegisterItemTypes::Register(_engine);
|
2020-01-13 18:43:34 +00:00
|
|
|
RegisterMoveTypes::Register(_engine);
|
2020-01-13 18:52:32 +00:00
|
|
|
RegisterGrowthRateTypes::Register(_engine);
|
2020-01-13 19:16:23 +00:00
|
|
|
RegisterTypeLibrary::Register(_engine);
|
2020-01-23 14:10:08 +00:00
|
|
|
RegisterStaticLibraryTypes::Register(_engine);
|
2020-01-11 21:30:23 +00:00
|
|
|
|
2020-01-26 14:18:04 +00:00
|
|
|
// Register battle types
|
|
|
|
RegisterPokemonClass::Register(_engine);
|
|
|
|
RegisterExecutingAttack::Register(_engine);
|
2020-02-04 18:34:30 +00:00
|
|
|
|
|
|
|
// Register base script
|
|
|
|
BasicScriptClass::Register(_engine);
|
2020-01-11 21:30:23 +00:00
|
|
|
}
|
2020-01-26 14:18:04 +00:00
|
|
|
|
2020-01-11 21:30:23 +00:00
|
|
|
AngelScriptTypeInfo* AngelScripResolver::GetTypeInfo(const std::string& name) {
|
|
|
|
auto find = _types.find(name);
|
2020-01-13 18:43:34 +00:00
|
|
|
if (find != _types.end()) {
|
2020-01-11 21:30:23 +00:00
|
|
|
return find->second;
|
|
|
|
}
|
|
|
|
auto type = _mainModule->GetTypeInfoByDecl(name.c_str());
|
2020-01-13 18:43:34 +00:00
|
|
|
if (type == nullptr) {
|
2020-01-11 21:30:23 +00:00
|
|
|
_types.insert({name, nullptr});
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto typeinfo = new AngelScriptTypeInfo(type);
|
|
|
|
_types.insert({name, typeinfo});
|
|
|
|
return typeinfo;
|
|
|
|
}
|
|
|
|
void AngelScripResolver::MessageCallback(const asSMessageInfo* msg, void* param) {
|
|
|
|
const char* type = "ERR ";
|
|
|
|
if (msg->type == asMSGTYPE_WARNING)
|
|
|
|
type = "WARN";
|
|
|
|
else if (msg->type == asMSGTYPE_INFORMATION)
|
|
|
|
type = "INFO";
|
|
|
|
printf("%s (%d, %d) : %s : %s\n", msg->section, msg->row, msg->col, type, msg->message);
|
|
|
|
}
|
|
|
|
CreatureLib::Battling::Script* AngelScripResolver::LoadScript(ScriptCategory category, const std::string& scriptName) {
|
|
|
|
auto typeInfo = GetTypeInfo(scriptName);
|
2020-01-13 18:43:34 +00:00
|
|
|
if (typeInfo == nullptr)
|
|
|
|
return nullptr;
|
2020-01-11 21:30:23 +00:00
|
|
|
auto ctx = _contextPool->RequestContext();
|
|
|
|
auto obj = typeInfo->Instantiate(ctx);
|
|
|
|
_contextPool->ReturnContextToPool(ctx);
|
|
|
|
return new AngelScriptScript(scriptName, typeInfo, obj, _contextPool);
|
|
|
|
}
|
|
|
|
void AngelScripResolver::FinalizeModule() {
|
|
|
|
int r = _mainModule->Build();
|
|
|
|
if (r < 0)
|
|
|
|
throw CreatureException("Building Script Module failed.");
|
|
|
|
}
|
2020-02-13 12:59:07 +00:00
|
|
|
void AngelScripResolver::CreateScript(ScriptCategory category, const char* scriptName) {
|
|
|
|
auto scriptString = _loadFunc(category, scriptName);
|
2020-01-11 21:30:23 +00:00
|
|
|
_mainModule->AddScriptSection(scriptName, scriptString);
|
|
|
|
}
|