summaryrefslogtreecommitdiff
path: root/src/loris/Envelope.h
blob: 832619a3556a05467aa0196d894b6e555ceef524 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#ifndef INCLUDE_ENVELOPE_H
#define INCLUDE_ENVELOPE_H
/*
 * This is the Loris C++ Class Library, implementing analysis, 
 * manipulation, and synthesis of digitized sounds using the Reassigned 
 * Bandwidth-Enhanced Additive Sound Model.
 *
 * Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY, without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *
 * Envelope.h
 *
 * Definition of abstract interface class Envelope.
 *
 * Kelly Fitz, 21 July 2000
 * loris@cerlsoundgroup.org
 *
 * http://www.cerlsoundgroup.org/Loris/
 *
 */

#include <memory>	//	 for autoptr

//	begin namespace
namespace Loris {

// ---------------------------------------------------------------------------
//	class Envelope
//
//! Envelope is an base class for objects representing real functions
//! of time.
//!
//! Class Envelope is an abstract base class, specifying interface for
//! prototypable (clonable) objects representing generic, real-valued
//! (double) functions of one real-valued (double) time argument. Derived
//! classes (like BreakpointEnvelope) must implement valueAt() and
//! clone(), the latter to support the Prototype pattern. Clients of
//! Envelope, like Morpher and Distiller, can use prototype Envelopes to
//! make their own private Envelopes.
//!
//! \sa Distiller, Envelope, Morpher
//
class Envelope
{
//	-- public interface --
public:
//	-- construction --

    // allow compiler to generate constructors

	//!	Destroy this Envelope (virtual to allow subclassing).
	virtual ~Envelope( void );

//	-- Envelope interface --

	//!	Return an exact copy of this Envelope (following the Prototype
	//!	pattern).
	virtual Envelope * clone( void ) const = 0;

	//!	Return the value of this Envelope at the specified time. 	 
	virtual double valueAt( double x ) const = 0;	
	
};	//	end of abstract class Envelope


// ---------------------------------------------------------------------------
//	class ScaleAndOffsetEnvelope
//
//! ScaleAndOffsetEnvelope is an derived Envelope class for objects 
//! representing envelopes having a scale and offset applied (in that order).

class ScaleAndOffsetEnvelope : public Envelope
{
//	-- public interface --
public:
//	-- construction --

    //! Construct a new envelope that is a scaled and offset 
    //! version of another.
    ScaleAndOffsetEnvelope( const Envelope & e, double scale, double offset ) :
    	m_env( e.clone() ),
    	m_scale( scale ),
    	m_offset( offset )
    {
    }

	//!	Construct a copy of an envelope.
	ScaleAndOffsetEnvelope( const ScaleAndOffsetEnvelope & rhs ) :
		m_env( rhs.m_env->clone() ),
    	m_scale( rhs.m_scale ),
    	m_offset( rhs.m_offset )
    {
    }

	//!	Assignment from another envelope.
	ScaleAndOffsetEnvelope & 
	operator=( const ScaleAndOffsetEnvelope & rhs )
	{
        if ( &rhs != this )
        {
            m_env.reset( rhs.m_env->clone() );
            m_scale = rhs.m_scale;
            m_offset = rhs.m_offset;
        }
        return *this;
    }

//	-- Envelope interface --

	//!	Return an exact copy of this Envelope (following the Prototype
	//!	pattern).
	ScaleAndOffsetEnvelope * clone( void ) const 
	{
		return new ScaleAndOffsetEnvelope( *this );
	}

	//!	Return the value of this Envelope at the specified time. 	 
	virtual double valueAt( double x ) const
	{
		return m_offset + ( m_scale * m_env->valueAt( x ) );
	}
	
//  -- private member variables --

private:

    std::auto_ptr< Envelope > m_env;   	
    double m_scale, m_offset;
	
};	//	end of class ScaleAndOffsetEnvelope


// ---------------------------------------------------------------------------
//	math operators
// ---------------------------------------------------------------------------

inline
ScaleAndOffsetEnvelope
operator*( const Envelope & e, double x )
{
	return ScaleAndOffsetEnvelope( e, x, 0 );
}

inline
ScaleAndOffsetEnvelope
operator*( double x, const Envelope & e )
{
	return e * x;
}




}	//	end of namespace Loris

#endif /* ndef INCLUDE_ENVELOPE_H */