From 276f32f366c81dcd2341d4763f56746f7b721bb2 Mon Sep 17 00:00:00 2001 From: hgh32 <39622638+hgh32@users.noreply.github.com> Date: Sat, 11 Apr 2026 22:23:22 -0400 Subject: match more ai::Query --- src/Game/AI/Query/queryCheckAppShopSelect.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'src/Game/AI/Query/queryCheckAppShopSelect.cpp') diff --git a/src/Game/AI/Query/queryCheckAppShopSelect.cpp b/src/Game/AI/Query/queryCheckAppShopSelect.cpp index 3aab27d1..62dddb08 100644 --- a/src/Game/AI/Query/queryCheckAppShopSelect.cpp +++ b/src/Game/AI/Query/queryCheckAppShopSelect.cpp @@ -1,5 +1,6 @@ #include "Game/AI/Query/queryCheckAppShopSelect.h" #include +#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) {} -- cgit v1.2.3