mirror of
https://github.com/zeldaret/botw
synced 2026-05-24 07:10:50 -04:00
match more ai::Query
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include "Game/AI/Query/queryCheckAppShopSelect.h"
|
||||
#include <evfl/Query.h>
|
||||
#include "KingSystem/GameData/gdtManager.h"
|
||||
|
||||
namespace uking::query {
|
||||
|
||||
@@ -7,9 +8,20 @@ CheckAppShopSelect::CheckAppShopSelect(const InitArg& arg) : ksys::act::ai::Quer
|
||||
|
||||
CheckAppShopSelect::~CheckAppShopSelect() = default;
|
||||
|
||||
// FIXME: implement
|
||||
int CheckAppShopSelect::doQuery() {
|
||||
return -1;
|
||||
auto* gdm = ksys::gdt::Manager::instance();
|
||||
if (gdm != nullptr) {
|
||||
int screen_type = -1;
|
||||
if (gdm->getParam().get().getS32(&screen_type, "Shop_ScreenType")) {
|
||||
if (screen_type == 15) {
|
||||
return 0;
|
||||
}
|
||||
if (screen_type == 0) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
void CheckAppShopSelect::loadParams(const evfl::QueryArg& arg) {}
|
||||
|
||||
Reference in New Issue
Block a user