blob: 67a565405c7d260be15fae984230ec40f2764952 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef NW4R_SND_WAVE_SOUND_HANDLE_H
#define NW4R_SND_WAVE_SOUND_HANDLE_H
/*******************************************************************************
* headers
*/
#include "common.h" // nullptr
#include "nw4r/snd/snd_WaveSound.h" // snd::WaveSound
#include "nw4r/ut/ut_NonCopyable.h" // ut::NonCopyable
/*******************************************************************************
* types
*/
// forward declarations
namespace nw4r { namespace snd { namespace detail { class WaveSound; }}}
namespace nw4r { namespace snd { class SoundHandle; }}
/*******************************************************************************
* classes and functions
*/
namespace nw4r { namespace snd
{
// [R89JEL]:/bin/RVL/Debug/mainD.elf:.debug::0x30f8a
class WaveSoundHandle : private ut::NonCopyable
{
// methods
public:
// cdtors
WaveSoundHandle(SoundHandle *handle);
~WaveSoundHandle() { DetachSound(); }
// methods
bool IsAttachedSound() const { return mSound != nullptr; }
u32 GetPlaySamplePosition() const {
if (!IsAttachedSound())
return -1;
return mSound->GetPlaySamplePosition();
}
void DetachSound();
// members
private:
/* base NonCopyable */ // size 0x00, offset 0x00
detail::WaveSound *mSound; // size 0x04, offset 0x00
}; // size 0x04
}} // namespace nw4r::snd
#endif // NW4R_SND_WAVE_SOUND_HANDLE_H
|