File: OnePointPlayableSound.h

package info (click to toggle)
transcend 0.3.dfsg1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,816 kB
  • ctags: 2,912
  • sloc: cpp: 26,890; ansic: 693; sh: 210; makefile: 131; perl: 67
file content (72 lines) | stat: -rw-r--r-- 1,496 bytes parent folder | download | duplicates (6)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Modification History
 *
 * 2004-August-9   Jason Rohrer
 * Created.
 */



#ifndef ONE_POINT_PLAYABLE_SOUND_INCLUDED
#define ONE_POINT_PLAYABLE_SOUND_INCLUDED



#include "PlayableSound.h"
#include "StereoSoundParameterSpaceControlPoint.h"



/**
 * Implementation of PlayableSound that plays one sound control
 * point through the duration of the sound.
 *
 * @author Jason Rohrer
 */
class OnePointPlayableSound : public PlayableSound {

        

    public:


        
        /**
         * Constructs a playable sound.
         *
         * @param inControlPoint the sound control point.
         *   Will be destroyed when this class is destroyed.
         * @param inSoundLengthInSeconds the length of the sound in seconds.
         * @param inSamplesPerSecond the sample rate.
         */
        OnePointPlayableSound(
            StereoSoundParameterSpaceControlPoint *inControlPoint,
            double inSoundLengthInSeconds,
            int inSamplesPerSecond );


        ~OnePointPlayableSound();


        
        // implements the PlayableSound interface
        virtual SoundSamples *getMoreSamples( unsigned long inNumSamples );
        virtual PlayableSound *copy();
        

    protected:

        StereoSoundParameterSpaceControlPoint *mControlPoint;
        
        double mSoundLengthInSeconds;
        int mSamplesPerSecond;
        unsigned long mSoundLengthInSamples;

        
        unsigned long mCurrentSoundPositionInSamples;
        
    };



#endif