Generate stubs for queries

This commit is contained in:
Léo Lam
2020-12-21 21:38:09 +01:00
parent 60b2362ddc
commit f98d3ee758
336 changed files with 8410 additions and 1085 deletions
@@ -0,0 +1,27 @@
#include "Game/AI/Query/queryCheckExistActor.h"
#include <evfl/query.h>
namespace uking::query {
CheckExistActor::CheckExistActor(const InitArg& arg) : ksys::act::ai::Query(arg) {}
CheckExistActor::~CheckExistActor() = default;
// FIXME: implement
int CheckExistActor::doQuery() {
return -1;
}
void CheckExistActor::loadParams(const evfl::QueryArg& arg) {
loadBool(arg.param_accessor, "IsCheckEquipStand");
loadBool(arg.param_accessor, "IsCheckLife");
loadString(arg.param_accessor, "ActorName");
}
void CheckExistActor::loadParams() {
getDynamicParam(&mIsCheckEquipStand, "IsCheckEquipStand");
getDynamicParam(&mIsCheckLife, "IsCheckLife");
getDynamicParam(&mActorName, "ActorName");
}
} // namespace uking::query