summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryCheckDieCnt.cpp
blob: 5c9e8c9bfbee1065129e078c553d25b1dc49c1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "Game/AI/Query/queryCheckDieCnt.h"
#include <evfl/Query.h>
#include "KingSystem/GameData/gdtManager.h"

namespace uking::query {

CheckDieCnt::CheckDieCnt(const InitArg& arg) : ksys::act::ai::Query(arg) {}

CheckDieCnt::~CheckDieCnt() = default;

int CheckDieCnt::doQuery() {
    auto* gdm = ksys::gdt::Manager::instance();
    if (!gdm)
        return 0;

    sead::FixedSafeString<64> flag;
    flag.format("%s_DeathCount", mActorName.cstr());
    int count = 0;
    if (!gdm->getParamBypassPerm().get().getS32(&count, flag))
        return 0;

    return count > *mCount;
}

void CheckDieCnt::loadParams(const evfl::QueryArg& arg) {
    loadInt(arg.param_accessor, "Count");
    loadString(arg.param_accessor, "ActorName");
}

void CheckDieCnt::loadParams() {
    getDynamicParam(&mCount, "Count");
    getDynamicParam(&mActorName, "ActorName");
}

}  // namespace uking::query