summaryrefslogtreecommitdiffstats
path: root/src/audio_core/renderer/nodes/edge_matrix.cpp
blob: 5573f33b97e2e060bda12f9ab07dd9de7c138000 (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
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "audio_core/renderer/nodes/edge_matrix.h"

namespace AudioCore::AudioRenderer {

void EdgeMatrix::Initialize([[maybe_unused]] std::span<u8> buffer,
                            [[maybe_unused]] const u64 node_buffer_size, const u32 count_) {
    count = count_;
    edges.buffer.resize(count_ * count_);
    edges.size = count_ * count_;
    edges.reset();
}

bool EdgeMatrix::Connected(const u32 id, const u32 destination_id) const {
    return edges.buffer[count * id + destination_id];
}

void EdgeMatrix::Connect(const u32 id, const u32 destination_id) {
    edges.buffer[count * id + destination_id] = true;
}

void EdgeMatrix::Disconnect(const u32 id, const u32 destination_id) {
    edges.buffer[count * id + destination_id] = false;
}

void EdgeMatrix::RemoveEdges(const u32 id) {
    for (u32 dest = 0; dest < count; dest++) {
        Disconnect(id, dest);
    }
}

u32 EdgeMatrix::GetNodeCount() const {
    return count;
}

} // namespace AudioCore::AudioRenderer