File: envelope.C

package info (click to toggle)
mixviews 1.10-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,440 kB
  • ctags: 6,314
  • sloc: cpp: 31,647; ansic: 2,100; makefile: 1,782; sh: 17
file content (166 lines) | stat: -rw-r--r-- 4,133 bytes parent folder | download
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
// envelope.C

/******************************************************************************
 *
 *  MiXViews - an X window system based sound & data editor/processor
 *
 *  Copyright (c) 1993, 1994 Regents of the University of California
 *
 *  Author:     Douglas Scott
 *  Date:       December 13, 1994
 *
 *  Permission to use, copy and modify this software and its documentation
 *  for research and/or educational purposes and without fee is hereby granted,
 *  provided that the above copyright notice appear in all copies and that
 *  both that copyright notice and this permission notice appear in
 *  supporting documentation. The author reserves the right to distribute this
 *  software and its documentation.  The University of California and the author
 *  make no representations about the suitability of this software for any 
 *  purpose, and in no event shall University of California be liable for any
 *  damage, loss of data, or profits resulting from its use.
 *  It is provided "as is" without express or implied warranty.
 *
 ******************************************************************************/


#ifdef __GNUG__
#pragma implementation
#endif

#include "localdefs.h"
#include "controller.h"
#include "envelope.h"
#include "header.h"
#include "request.h"

Envelope::Envelope() : FrameData(FloatData, DefaultEnvelopeSize, 1, 44100, 1.0) {
	init();
	setMappingLength(DefaultEnvelopeSize);
}

Envelope::Envelope(int len) : FrameData(FloatData, len, 1, 44100, 1.0) {
	init();
	setMappingLength(len);
}

Envelope::~Envelope() {
	delete [] frameLabel;
	delete [] channelLabel;
}

Data *
Envelope::newData() { return new Envelope(this); }

Data *
Envelope::newData(int len) { return new Envelope(this, len); }

Data *
Envelope::clone(const Range &r) { return new Envelope(this, r); }

Data *
Envelope::clone(const Range &r, const Range &c) {
	return new Envelope(this, r, c);
}	

void
Envelope::information(Controller *controller) {
	AlertRequest request("Envelope Information:");
	request.setBell(false);
	char str[128];
	request.appendLabel("------------");
	request.appendLabel("Filename: ", controller->fileName());
	request.appendLabel("Number of Frames: ", toString(str, length()));
	request.appendLabel("File Size (bytes): ", toString(str, sizeInBytes()));
	controller->handleRequest(request);
}

void
Envelope::init() {
	frameLabel = nil;
	channelLabel = nil;
	rangeFactor = 1;
	rangeOffset = 0;
	reset();
}

void
Envelope::reset() {
	currentVal = get(0);
	nextVal = currentVal;
	currentIndex = fraction = oldindex = 0;
}

void
Envelope::checkValues() {
	Super::checkValues();
	reset();
}

// this returns a linearly interpolated value from the array

double
Envelope::next() {
	int index = int(currentIndex);
	if(index > oldindex) {	// only get new values if index moves up
		currentVal = nextVal; 
		nextVal = get(index+1);
		oldindex = index;
	}
	fraction = currentIndex - index;
    currentIndex += increment;
	return (currentVal + fraction * (nextVal - currentVal));
}

// Envelope objects may want to have a custom label for the horizontal scale

void
Envelope::setFrameRangeLabel(const char* label) {
	delete [] frameLabel;
	frameLabel = newstr(label);
}

Range
Envelope::frameRange(RangeUnit) const {
	Range fr = Super::frameRange(FrameUnit);	// always use frame units
	fr *= rangeFactor;
	fr += int(rangeOffset);
	return fr;
}

void
Envelope::setChannelName(const char* name) {
	delete [] channelLabel;
	channelLabel = newstr(name);
}

const char *
Envelope::frameRangeLabel(RangeUnit units) const {
	return frameLabel ? frameLabel : Data::frameRangeLabel(units);
}

const char *
Envelope::channelName(int chan) const {
	static char string[16];
	if(channelLabel)
		return channelLabel;
	else {
		sprintf(string, "Amp, Ch. %d", chan);
		return string;
	}
}

// protected

Header *
Envelope::createHeader(DataFile *, boolean reading) {
	Header *hdr = new EnvelopeHeader(nFrames(), sRate());
	if(!reading) configureHeader(hdr);
	return hdr;
}

void
Envelope::readFromHeader(Header *h) {
	Data::readFromHeader(h);
	EnvelopeHeader *header = (EnvelopeHeader *) h;
	sr = header->sampleRate();
}