Documentation de SFML 2.3

Attention: cette page se réfère à une ancienne version de SFML. Cliquez ici pour passer à la dernière version.
Music.hpp
1 //
3 // SFML - Simple and Fast Multimedia Library
4 // Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org)
5 //
6 // This software is provided 'as-is', without any express or implied warranty.
7 // In no event will the authors be held liable for any damages arising from the use of this software.
8 //
9 // Permission is granted to anyone to use this software for any purpose,
10 // including commercial applications, and to alter it and redistribute it freely,
11 // subject to the following restrictions:
12 //
13 // 1. The origin of this software must not be misrepresented;
14 // you must not claim that you wrote the original software.
15 // If you use this software in a product, an acknowledgment
16 // in the product documentation would be appreciated but is not required.
17 //
18 // 2. Altered source versions must be plainly marked as such,
19 // and must not be misrepresented as being the original software.
20 //
21 // 3. This notice may not be removed or altered from any source distribution.
22 //
24 
25 #ifndef SFML_MUSIC_HPP
26 #define SFML_MUSIC_HPP
27 
29 // Headers
31 #include <SFML/Audio/Export.hpp>
32 #include <SFML/Audio/SoundStream.hpp>
33 #include <SFML/Audio/InputSoundFile.hpp>
34 #include <SFML/System/Mutex.hpp>
35 #include <SFML/System/Time.hpp>
36 #include <string>
37 #include <vector>
38 
39 
40 namespace sf
41 {
42 class InputStream;
43 
48 class SFML_AUDIO_API Music : public SoundStream
49 {
50 public:
51 
56  Music();
57 
62  ~Music();
63 
79  bool openFromFile(const std::string& filename);
80 
101  bool openFromMemory(const void* data, std::size_t sizeInBytes);
102 
122  bool openFromStream(InputStream& stream);
123 
130  Time getDuration() const;
131 
132 protected:
133 
145  virtual bool onGetData(Chunk& data);
146 
153  virtual void onSeek(Time timeOffset);
154 
155 private:
156 
161  void initialize();
162 
164  // Member data
166  InputSoundFile m_file;
167  Time m_duration;
168  std::vector<Int16> m_samples;
169  Mutex m_mutex;
170 };
171 
172 } // namespace sf
173 
174 
175 #endif // SFML_MUSIC_HPP
176 
177 
Structure defining a chunk of audio data to stream.
Definition: SoundStream.hpp:53
Abstract class for custom file input streams.
Definition: InputStream.hpp:41
Represents a time value.
Definition: Time.hpp:40
Blocks concurrent access to shared resources from multiple threads.
Definition: Mutex.hpp:47
Abstract base class for streamed audio sources.
Definition: SoundStream.hpp:45
Provide read access to sound files.
Streamed music played from an audio file.
Definition: Music.hpp:48