ScummVM API documentation
sound.h
1
/* ScummVM - Graphic Adventure Engine
2
*
3
* ScummVM is the legal property of its developers, whose names
4
* are too numerous to list here. Please refer to the COPYRIGHT
5
* file distributed with this source distribution.
6
*
7
* This program is free software: you can redistribute it and/or modify
8
* it under the terms of the GNU General Public License as published by
9
* the Free Software Foundation, either version 3 of the License, or
10
* (at your option) any later version.
11
*
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License
18
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19
*
20
*/
21
22
#ifndef PETKA_SOUND_H
23
#define PETKA_SOUND_H
24
25
#include "audio/mixer.h"
26
27
#include "common/hash-str.h"
28
#include "common/ptr.h"
29
30
namespace
Common
{
31
class
SeekableReadStream;
32
}
33
34
namespace
Petka
{
35
36
class
Sound
{
37
public
:
38
Sound
(
Common::SeekableReadStream
*stream,
Audio::Mixer::SoundType
type);
39
~
Sound
();
40
41
Audio::Mixer::SoundType
type();
42
43
void
play(
bool
isLoop =
false
);
44
void
stop();
45
46
void
pause(
bool
p);
47
48
bool
isPlaying();
49
50
void
setBalance(uint16 x, uint16 width);
51
52
private
:
53
Common::ScopedPtr<Common::SeekableReadStream>
_stream;
54
Audio::Mixer::SoundType
_type;
55
Audio::SoundHandle
_handle;
56
};
57
58
class
PetkaEngine
;
59
60
class
SoundMgr
{
61
public
:
62
SoundMgr
(
PetkaEngine
&vm) : _vm(vm) {}
63
64
Sound
*addSound(
const
Common::String
&name,
Audio::Mixer::SoundType
type);
65
Sound
*findSound(
const
Common::String
&name)
const
;
66
67
void
removeSound(
const
Common::String
&name);
68
void
removeSoundsWithType(
Audio::Mixer::SoundType
type);
69
void
removeAll();
70
71
private
:
72
typedef
Common::HashMap<Common::String, Common::ScopedPtr<Sound>
,
Common::CaseSensitiveString_Hash
>
SoundsMap
;
73
PetkaEngine
&_vm;
74
SoundsMap _sounds;
75
};
76
77
}
// End of namespace Petka
78
79
#endif
Common::String
Definition:
str.h:59
Common::SeekableReadStream
Definition:
stream.h:745
Common::ScopedPtr< Common::SeekableReadStream >
Audio::SoundHandle
Definition:
mixer.h:49
Audio::Mixer::SoundType
SoundType
Definition:
mixer.h:62
Common::CaseSensitiveString_Hash
Definition:
hash-str.h:40
Common::HashMap
Definition:
hashmap.h:85
Petka::SoundMgr
Definition:
sound.h:60
Common
Definition:
algorithm.h:29
Petka::Sound
Definition:
sound.h:36
Petka::PetkaEngine
Definition:
petka.h:83
Petka
Definition:
base.h:27
engines
petka
sound.h
Generated on Sat Nov 23 2024 09:08:42 for ScummVM API documentation by
1.8.13