mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 11:25:39 +00:00
93 lines
1.8 KiB
C++
93 lines
1.8 KiB
C++
#pragma once
|
|
#include "core/types.h"
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
class CDImage;
|
|
|
|
namespace Cheevos {
|
|
|
|
enum class AchievementCategory : u32
|
|
{
|
|
Local = 0,
|
|
Core = 3,
|
|
Unofficial = 5
|
|
};
|
|
|
|
struct Achievement
|
|
{
|
|
u32 id;
|
|
std::string title;
|
|
std::string description;
|
|
std::string memaddr;
|
|
std::string locked_badge_path;
|
|
std::string unlocked_badge_path;
|
|
u32 points;
|
|
bool locked;
|
|
bool active;
|
|
};
|
|
|
|
extern bool g_active;
|
|
extern bool g_challenge_mode;
|
|
extern u32 g_game_id;
|
|
|
|
ALWAYS_INLINE bool IsActive()
|
|
{
|
|
return g_active;
|
|
}
|
|
|
|
ALWAYS_INLINE bool IsChallengeModeEnabled()
|
|
{
|
|
return g_challenge_mode;
|
|
}
|
|
|
|
ALWAYS_INLINE bool IsChallengeModeActive()
|
|
{
|
|
return g_active && g_challenge_mode;
|
|
}
|
|
|
|
ALWAYS_INLINE bool HasActiveGame()
|
|
{
|
|
return g_game_id != 0;
|
|
}
|
|
|
|
ALWAYS_INLINE u32 GetGameID()
|
|
{
|
|
return g_game_id;
|
|
}
|
|
|
|
bool Initialize(bool test_mode, bool use_first_disc_from_playlist, bool enable_rich_presence, bool challenge_mode);
|
|
void Reset();
|
|
void Shutdown();
|
|
void Update();
|
|
|
|
bool IsLoggedIn();
|
|
bool IsTestModeActive();
|
|
bool IsUsingFirstDiscFromPlaylist();
|
|
bool IsRichPresenceEnabled();
|
|
const std::string& GetUsername();
|
|
const std::string& GetRichPresenceString();
|
|
|
|
bool LoginAsync(const char* username, const char* password);
|
|
bool Login(const char* username, const char* password);
|
|
void Logout();
|
|
|
|
bool HasActiveGame();
|
|
void GameChanged(const std::string& path, CDImage* image);
|
|
|
|
const std::string& GetGameTitle();
|
|
const std::string& GetGameDeveloper();
|
|
const std::string& GetGamePublisher();
|
|
const std::string& GetGameReleaseDate();
|
|
const std::string& GetGameIcon();
|
|
|
|
bool EnumerateAchievements(std::function<bool(const Achievement&)> callback);
|
|
u32 GetUnlockedAchiementCount();
|
|
u32 GetAchievementCount();
|
|
u32 GetMaximumPointsForGame();
|
|
u32 GetCurrentPointsForGame();
|
|
|
|
void UnlockAchievement(u32 achievement_id, bool add_notification = true);
|
|
|
|
} // namespace Cheevos
|