summaryrefslogtreecommitdiffstats
path: root/src/common/linux/gamemode.cpp
blob: 8d3e2934a6377bd351a8efaf64e8d08b975ef1bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include <gamemode_client.h>

#include "common/linux/gamemode.h"
#include "common/logging/log.h"
#include "common/settings.h"

namespace Common::Linux {

void StartGamemode() {
    if (Settings::values.enable_gamemode) {
        if (gamemode_request_start() < 0) {
            LOG_WARNING(Frontend, "Failed to start gamemode: {}", gamemode_error_string());
        } else {
            LOG_INFO(Frontend, "Started gamemode");
        }
    }
}

void StopGamemode() {
    if (Settings::values.enable_gamemode) {
        if (gamemode_request_end() < 0) {
            LOG_WARNING(Frontend, "Failed to stop gamemode: {}", gamemode_error_string());
        } else {
            LOG_INFO(Frontend, "Stopped gamemode");
        }
    }
}

void SetGamemodeState(bool state) {
    if (state) {
        StartGamemode();
    } else {
        StopGamemode();
    }
}

} // namespace Common::Linux