aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AudioSource.h
blob: 6a038be941b392df1bebddee3890a0efde310939 (plain)
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
41
42
#pragma once

#include <memory>

#include "Component.h"
#include "Resource.h"

namespace crepe {
class Sound;
}

namespace crepe::api {

//! Audio source component
class AudioSource : Component {
public:
	AudioSource(std::unique_ptr<Resource> audio_clip);
	virtual ~AudioSource() = default;

public:
	//! Start or resume this audio source
	void play();
	void play(bool looping);
	//! Stop this audio source
	void stop();

public:
	//! Sample file location
	std::unique_ptr<Resource> audio_clip;
	//! TODO: ?????
	bool play_on_awake;
	//! Repeat the current audio clip during playback
	bool loop;
	//! Normalized volume (0.0 - 1.0)
	float volume;

private:
	std::unique_ptr<crepe::Sound> _sound;
};

}