Tramway SDK v0.1.1
graph.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_AUDIO_GRAPH_H
4#define TRAM_SDK_AUDIO_GRAPH_H
5
6#include <framework/math.h>
8
9#include <vector>
10
11namespace tram::Audio {
12
14 float param1, param2; // TODO: figure out what the parameters should be
15};
16
17class SoundGraph : public Resource {
18public:
20
21 void LoadFromDisk();
23
24 void Unload() {}
25
26 static FilterParameters LookupFilter(vec3 position);
27 static SoundGraph* Find(name_t name);
28protected:
29 struct Node {
32 };
33
34 std::vector<Node> nodes;
35 std::vector<std::pair<uint32_t, uint32_t>> edges;
36};
37
38}
39
40#endif // TRAM_SDK_AUDIO_GRAPH_H
Definition: graph.h:17
static FilterParameters LookupFilter(vec3 position)
Definition: graph.cpp:28
void Unload()
Definition: graph.h:24
std::vector< std::pair< uint32_t, uint32_t > > edges
Definition: graph.h:35
static SoundGraph * Find(name_t name)
Definition: graph.cpp:32
void LoadFromDisk()
Definition: graph.cpp:43
void LoadFromMemory()
Definition: graph.h:22
SoundGraph(name_t name)
Definition: graph.h:19
std::vector< Node > nodes
Definition: graph.h:34
Definition: resource.h:11
name_t name
Definition: resource.h:37
System for doing audio related stuff.
glm::vec3 vec3
Definition: math.h:11
Definition: graph.h:13
float param2
Definition: graph.h:14
float param1
Definition: graph.h:14
Definition: graph.h:29
vec3 position
Definition: graph.h:30
FilterParameters parameters
Definition: graph.h:31
Interned string type.
Definition: uid.h:10