mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
#include <koalabox/config.hpp>
|
|
#include <koalabox/io.hpp>
|
|
#include <koalabox/logger.hpp>
|
|
#include <koalabox/util.hpp>
|
|
|
|
#include "smoke_api/config.hpp"
|
|
|
|
namespace smoke_api::config {
|
|
Config instance; // NOLINT(cert-err58-cpp)
|
|
|
|
std::vector<DLC> get_extra_dlcs(const uint32_t app_id) {
|
|
return DLC::get_dlcs_from_apps(instance.extra_dlcs, app_id);
|
|
}
|
|
|
|
bool is_dlc_unlocked(
|
|
const AppId_t app_id,
|
|
const AppId_t dlc_id,
|
|
const std::function<bool()>& original_function
|
|
) {
|
|
auto status = instance.default_app_status;
|
|
|
|
const auto app_id_str = std::to_string(app_id);
|
|
if(instance.override_app_status.contains(app_id_str)) {
|
|
status = instance.override_app_status[app_id_str];
|
|
}
|
|
|
|
const auto dlc_id_str = std::to_string(dlc_id);
|
|
if(instance.override_dlc_status.contains(dlc_id_str)) {
|
|
status = instance.override_dlc_status[dlc_id_str];
|
|
}
|
|
|
|
bool is_unlocked;
|
|
|
|
switch(status) {
|
|
case AppStatus::UNLOCKED:
|
|
is_unlocked = true;
|
|
break;
|
|
case AppStatus::LOCKED:
|
|
is_unlocked = false;
|
|
break;
|
|
case AppStatus::ORIGINAL:
|
|
case AppStatus::UNDEFINED:
|
|
is_unlocked = original_function();
|
|
break;
|
|
}
|
|
|
|
LOG_TRACE(
|
|
"App ID: {}, DLC ID: {}, Status: {}, Original: {}, Unlocked: {}",
|
|
app_id_str,
|
|
dlc_id_str,
|
|
nlohmann::json(status).dump(),
|
|
original_function(),
|
|
is_unlocked
|
|
);
|
|
|
|
return is_unlocked;
|
|
}
|
|
}
|