summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp')
-rw-r--r--src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp b/src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp
index 9d28802c..2122c7e8 100644
--- a/src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp
+++ b/src/Game/AI/Query/queryCheckItemShopSelectBuy.cpp
@@ -1,5 +1,6 @@
#include "Game/AI/Query/queryCheckItemShopSelectBuy.h"
#include <evfl/Query.h>
+#include "KingSystem/GameData/gdtManager.h"
namespace uking::query {
@@ -7,9 +8,15 @@ CheckItemShopSelectBuy::CheckItemShopSelectBuy(const InitArg& arg) : ksys::act::
CheckItemShopSelectBuy::~CheckItemShopSelectBuy() = default;
-// FIXME: implement
int CheckItemShopSelectBuy::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")) {
+ return screen_type != 1;
+ }
+ }
+ return 0;
}
void CheckItemShopSelectBuy::loadParams(const evfl::QueryArg& arg) {}