mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
AGS: Simplify achievements plugin code
This commit is contained in:
parent
dda0cbec5f
commit
36d304ec7c
@ -55,18 +55,25 @@ void AGS2Client::AGS_EngineStartup(IAGSEngine *engine) {
|
||||
SCRIPT_METHOD_EXT(AGS2Client::GetCurrentGameLanguage^0, GetCurrentGameLanguage);
|
||||
SCRIPT_METHOD_EXT(AGS2Client::FindLeaderboard^1, FindLeaderboard);
|
||||
SCRIPT_METHOD_EXT(AGS2Client::Initialize^2, Initialize);
|
||||
|
||||
Common::String gameTarget = ConfMan.getActiveDomainName();
|
||||
const MetaEngine *meta = ::AGS::g_vm->getMetaEngine();
|
||||
AchMan.setActiveDomain(meta->getAchievementsInfo(gameTarget));
|
||||
}
|
||||
|
||||
void AGS2Client::IsAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
params._result = false;
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.isAchieved(id);
|
||||
}
|
||||
|
||||
void AGS2Client::SetAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
params._result = false;
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.setAchievement(id);
|
||||
}
|
||||
|
||||
void AGS2Client::ResetAchievement(ScriptMethodParams ¶ms) {
|
||||
params._result = false;
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.clearAchievement(id);
|
||||
}
|
||||
|
||||
void AGS2Client::GetIntStat(ScriptMethodParams ¶ms) {
|
||||
@ -94,6 +101,8 @@ void AGS2Client::UpdateAverageRateStat(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGS2Client::ResetStatsAndAchievements(ScriptMethodParams ¶ms) {
|
||||
AchMan.resetAllAchievements();
|
||||
AchMan.resetAllStats();
|
||||
}
|
||||
|
||||
void AGS2Client::get_Initialized(ScriptMethodParams ¶ms) {
|
||||
@ -168,108 +177,6 @@ void AGSGalaxy::AGS_EngineStartup(IAGSEngine *engine) {
|
||||
SCRIPT_METHOD_EXT(AGSGalaxy::GetUserName^0, GetUserName);
|
||||
SCRIPT_METHOD_EXT(AGSGalaxy::GetCurrentGameLanguage^0, GetCurrentGameLanguage);
|
||||
SCRIPT_METHOD_EXT(AGSGalaxy::Initialize^2, Initialize);
|
||||
|
||||
Common::String gameTarget = ConfMan.getActiveDomainName();
|
||||
const MetaEngine *meta = ::AGS::g_vm->getMetaEngine();
|
||||
Common::AchievementsInfo achievementsInfo = meta->getAchievementsInfo(gameTarget);
|
||||
const Common::String target = achievementsInfo.appId;
|
||||
if (!target.empty()) {
|
||||
AchMan.setActiveDomain(Common::GALAXY_ACHIEVEMENTS, target);
|
||||
} else {
|
||||
warning("Unknown game accessing SteamAPI. All achievements will be ignored.");
|
||||
AchMan.unsetActiveDomain();
|
||||
}
|
||||
}
|
||||
|
||||
void AGSGalaxy::IsAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.isAchieved(id);
|
||||
}
|
||||
|
||||
void AGSGalaxy::SetAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
|
||||
Common::String gameTarget = ConfMan.getActiveDomainName();
|
||||
const MetaEngine *meta = ::AGS::g_vm->getMetaEngine();
|
||||
Common::AchievementsInfo achievementsInfo = meta->getAchievementsInfo(gameTarget);
|
||||
|
||||
Common::String msg = id;
|
||||
for (uint32 i = 0; i < achievementsInfo.descriptions.size(); i++) {
|
||||
if (strcmp(achievementsInfo.descriptions[i].id, id) == 0) {
|
||||
msg = achievementsInfo.descriptions[i].title;
|
||||
}
|
||||
}
|
||||
|
||||
params._result = AchMan.setAchievement(id, msg);
|
||||
}
|
||||
|
||||
void AGSGalaxy::ResetAchievement(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.clearAchievement(id);
|
||||
}
|
||||
|
||||
void AGSGalaxy::GetIntStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::GetFloatStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::GetAverageRateStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::SetIntStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::SetFloatStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::UpdateAverageRateStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::ResetStatsAndAchievements(ScriptMethodParams ¶ms) {
|
||||
AchMan.resetAllAchievements();
|
||||
AchMan.resetAllStats();
|
||||
}
|
||||
|
||||
void AGSGalaxy::get_Initialized(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::get_CurrentLeaderboardName(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSGalaxy::RequestLeaderboard(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSGalaxy::UploadScore(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::geti_LeaderboardNames(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSGalaxy::geti_LeaderboardScores(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::get_LeaderboardCount(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSGalaxy::GetUserName(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSGalaxy::GetCurrentGameLanguage(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSGalaxy::Initialize(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------*/
|
||||
@ -306,108 +213,6 @@ void AGSSteam::AGS_EngineStartup(IAGSEngine *engine) {
|
||||
SCRIPT_METHOD_EXT(AGSteam::GetUserName^0, GetUserName);
|
||||
SCRIPT_METHOD_EXT(AGSteam::GetCurrentGameLanguage^0, GetCurrentGameLanguage);
|
||||
SCRIPT_METHOD_EXT(AGSteam::FindLeaderboard^1, FindLeaderboard);
|
||||
|
||||
Common::String gameTarget = ConfMan.getActiveDomainName();
|
||||
const MetaEngine *meta = ::AGS::g_vm->getMetaEngine();
|
||||
Common::AchievementsInfo achievementsInfo = meta->getAchievementsInfo(gameTarget);
|
||||
const Common::String target = achievementsInfo.appId;
|
||||
if (!target.empty()) {
|
||||
AchMan.setActiveDomain(Common::STEAM_ACHIEVEMENTS, target);
|
||||
} else {
|
||||
warning("Unknown game accessing SteamAPI. All achievements will be ignored.");
|
||||
AchMan.unsetActiveDomain();
|
||||
}
|
||||
}
|
||||
|
||||
void AGSSteam::IsAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.isAchieved(id);
|
||||
}
|
||||
|
||||
void AGSSteam::SetAchievementAchieved(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
|
||||
Common::String gameTarget = ConfMan.getActiveDomainName();
|
||||
const MetaEngine *meta = ::AGS::g_vm->getMetaEngine();
|
||||
Common::AchievementsInfo achievementsInfo = meta->getAchievementsInfo(gameTarget);
|
||||
|
||||
Common::String msg = id;
|
||||
for (uint32 i = 0; i < achievementsInfo.descriptions.size(); i++) {
|
||||
if (strcmp(achievementsInfo.descriptions[i].id, id) == 0) {
|
||||
msg = achievementsInfo.descriptions[i].title;
|
||||
}
|
||||
}
|
||||
|
||||
params._result = AchMan.setAchievement(id, msg);
|
||||
}
|
||||
|
||||
void AGSSteam::ResetAchievement(ScriptMethodParams ¶ms) {
|
||||
PARAMS1(char *, id);
|
||||
params._result = AchMan.clearAchievement(id);
|
||||
}
|
||||
|
||||
void AGSSteam::GetIntStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::GetFloatStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::GetAverageRateStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::SetIntStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::SetFloatStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::UpdateAverageRateStat(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::ResetStatsAndAchievements(ScriptMethodParams ¶ms) {
|
||||
AchMan.resetAllAchievements();
|
||||
AchMan.resetAllStats();
|
||||
}
|
||||
|
||||
void AGSSteam::get_Initialized(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::get_CurrentLeaderboardName(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSSteam::RequestLeaderboard(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSSteam::UploadScore(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::geti_LeaderboardNames(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSSteam::geti_LeaderboardScores(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::get_LeaderboardCount(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
void AGSSteam::GetUserName(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSSteam::GetCurrentGameLanguage(ScriptMethodParams ¶ms) {
|
||||
}
|
||||
|
||||
void AGSSteam::FindLeaderboard(ScriptMethodParams ¶ms) {
|
||||
params._result = 0;
|
||||
}
|
||||
|
||||
} // namespace AGSGalaxySteam
|
||||
|
@ -69,27 +69,6 @@ private:
|
||||
static const char *AGS_GetPluginName();
|
||||
static void AGS_EngineStartup(IAGSEngine *engine);
|
||||
|
||||
static void IsAchievementAchieved(ScriptMethodParams ¶ms);
|
||||
static void SetAchievementAchieved(ScriptMethodParams ¶ms);
|
||||
static void ResetAchievement(ScriptMethodParams ¶ms);
|
||||
static void GetIntStat(ScriptMethodParams ¶ms);
|
||||
static void GetFloatStat(ScriptMethodParams ¶ms);
|
||||
static void GetAverageRateStat(ScriptMethodParams ¶ms);
|
||||
static void SetIntStat(ScriptMethodParams ¶ms);
|
||||
static void SetFloatStat(ScriptMethodParams ¶ms);
|
||||
static void UpdateAverageRateStat(ScriptMethodParams ¶ms);
|
||||
static void ResetStatsAndAchievements(ScriptMethodParams ¶ms);
|
||||
static void get_Initialized(ScriptMethodParams ¶ms);
|
||||
static void get_CurrentLeaderboardName(ScriptMethodParams ¶ms);
|
||||
static void RequestLeaderboard(ScriptMethodParams ¶ms);
|
||||
static void UploadScore(ScriptMethodParams ¶ms);
|
||||
static void geti_LeaderboardNames(ScriptMethodParams ¶ms);
|
||||
static void geti_LeaderboardScores(ScriptMethodParams ¶ms);
|
||||
static void get_LeaderboardCount(ScriptMethodParams ¶ms);
|
||||
static void GetUserName(ScriptMethodParams ¶ms);
|
||||
static void GetCurrentGameLanguage(ScriptMethodParams ¶ms);
|
||||
static void Initialize(ScriptMethodParams ¶ms);
|
||||
|
||||
public:
|
||||
AGSGalaxy();
|
||||
};
|
||||
@ -101,27 +80,6 @@ private:
|
||||
protected:
|
||||
static void AGS_EngineStartup(IAGSEngine *engine);
|
||||
|
||||
static void IsAchievementAchieved(ScriptMethodParams ¶ms);
|
||||
static void SetAchievementAchieved(ScriptMethodParams ¶ms);
|
||||
static void ResetAchievement(ScriptMethodParams ¶ms);
|
||||
static void GetIntStat(ScriptMethodParams ¶ms);
|
||||
static void GetFloatStat(ScriptMethodParams ¶ms);
|
||||
static void GetAverageRateStat(ScriptMethodParams ¶ms);
|
||||
static void SetIntStat(ScriptMethodParams ¶ms);
|
||||
static void SetFloatStat(ScriptMethodParams ¶ms);
|
||||
static void UpdateAverageRateStat(ScriptMethodParams ¶ms);
|
||||
static void ResetStatsAndAchievements(ScriptMethodParams ¶ms);
|
||||
static void get_Initialized(ScriptMethodParams ¶ms);
|
||||
static void get_CurrentLeaderboardName(ScriptMethodParams ¶ms);
|
||||
static void RequestLeaderboard(ScriptMethodParams ¶ms);
|
||||
static void UploadScore(ScriptMethodParams ¶ms);
|
||||
static void geti_LeaderboardNames(ScriptMethodParams ¶ms);
|
||||
static void geti_LeaderboardScores(ScriptMethodParams ¶ms);
|
||||
static void get_LeaderboardCount(ScriptMethodParams ¶ms);
|
||||
static void GetUserName(ScriptMethodParams ¶ms);
|
||||
static void GetCurrentGameLanguage(ScriptMethodParams ¶ms);
|
||||
static void FindLeaderboard(ScriptMethodParams ¶ms);
|
||||
|
||||
public:
|
||||
AGSSteam();
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user