csound::Conversions Class Reference

#include <Conversions.hpp>


Detailed Description

Conversions to and from various music and signal processing units. Note that: silence::Event represents loudness in MIDI units (0 to 127). silence::Orchestra represents loudness in gain (0 to 1). silence::WaveSoundfileOut represents loudness in amplitude (0 to 1 for float samples, 0 to 32767 for short samples). Loudness can also be represented in positive decibels (0 to 84 for short samples, 0 to whatever for float samples). For float samples, decibels are assumed to be equivalent to MIDI velocity; otherwise, MIDI velocity is rescaled according to the maximum dynamic range supported by the sample size. All loudness conversions are driven by sample word size, which must be set before use; the default is 4 (float samples).

Static Public Member Functions

static double getPI (void)
static double get2PI (void)
static double getMiddleCHz (void)
static double getNORM_7 (void)
static bool initialize ()
static int getSampleSize (void)
static double getMaximumAmplitude (int size)
static double getMaximumDynamicRange ()
static double amplitudeToDecibels (double amplitude)
static double amplitudeToGain (double Amplitude)
static double decibelsToAmplitude (double decibels)
static double decibelsToMidi (double decibels)
static double gainToAmplitude (double Gain)
static double midiToDecibels (double Midi)
static double midiToAmplitude (double Midi)
static double amplitudeToMidi (double Amplitude)
static double midiToGain (double Midi)
static double leftPan (double x)
static const double round (double value)
static double temper (double octave, double tonesPerOctave)
static double phaseToTableLengths (double Phase, double TableSampleCount)
static double hzToMidi (double Hz, bool rounded)
static double hzToOctave (double Hz)
static double hzToSamplingIncrement (double Hz, double SR, double SamplesPerCycle)
static double midiToHz (double Midi)
static double midiToOctave (double Midi)
static double midiToSamplingIncrement (double Midi, double SR, double SamplesPerCycle)
static double octaveToHz (double Octave)
static double octaveToMidi (double Octave, bool rounded)
static double octaveToSamplingIncrement (double Octave, double SR, double SamplesPerCycle)
static double rightPan (double x)
static int swapInt (int Source)
static short swapShort (short Source)
static bool stringToBool (std::string value)
static std::string boolToString (bool value)
static int stringToInt (std::string value)
static std::string intToString (int value)
static double stringToDouble (std::string value)
static std::string doubleToString (double value)
static double midiToPitchClass (double midiKey)
static double pitchClassSetToMidi (double pitchClassSet)
static double midiToPitchClassSet (double midiKey)
static double pitchClassToMidi (double pitchClass)
static double findClosestPitchClass (double M, double pitchClass, double tones=12.0)
static double midiToRoundedOctave (double midiKey)
static std::string & trim (std::string &value)
static std::string & trimQuotes (std::string &value)
static double modulus (double a, double b)
static std::vector< double > nameToPitches (std::string name)
static double nameToM (std::string name)
static std::string mToName (double pitchClassSet)
static char * dupstr (const char *string)
static double gainToDb (double inputDb, double gain, bool odbfs=false)

Static Private Member Functions

static void subfill (std::string root, char *cname, double pcs)
static void fill (char *cname, char *cpitches)
static std::string listPitchClassSets ()

Static Private Attributes

static bool initialized_
static std::map< std::string,
double > 
pitchClassSetsForNames
static std::map< double,
std::string > 
namesForPitchClassSets
static const double PI_
static const double TWO_PI_
static const double middleCHz
static const double log10d20
static const double log10scale
static const double NORM_7_
static const double floatMaximumAmplitude
static int sampleSize

Member Function Documentation

static void csound::Conversions::subfill ( std::string  root,
char *  cname,
double  pcs 
) [static, private]

static void csound::Conversions::fill ( char *  cname,
char *  cpitches 
) [static, private]

static std::string csound::Conversions::listPitchClassSets (  )  [static, private]

static double csound::Conversions::getPI ( void   )  [static]

static double csound::Conversions::get2PI ( void   )  [static]

static double csound::Conversions::getMiddleCHz ( void   )  [static]

static double csound::Conversions::getNORM_7 ( void   )  [static]

static bool csound::Conversions::initialize (  )  [static]

static int csound::Conversions::getSampleSize ( void   )  [static]

Returns the maximum soundfile amplitude for the sample size.

static double csound::Conversions::getMaximumAmplitude ( int  size  )  [static]

Returns the maximum soundfile amplitude for the sample size, assuming either float or twos' complement integer samples.

static double csound::Conversions::getMaximumDynamicRange (  )  [static]

static double csound::Conversions::amplitudeToDecibels ( double  amplitude  )  [static]

static double csound::Conversions::amplitudeToGain ( double  Amplitude  )  [static]

static double csound::Conversions::decibelsToAmplitude ( double  decibels  )  [static]

static double csound::Conversions::decibelsToMidi ( double  decibels  )  [static]

static double csound::Conversions::gainToAmplitude ( double  Gain  )  [static]

static double csound::Conversions::midiToDecibels ( double  Midi  )  [static]

static double csound::Conversions::midiToAmplitude ( double  Midi  )  [static]

static double csound::Conversions::amplitudeToMidi ( double  Amplitude  )  [static]

static double csound::Conversions::midiToGain ( double  Midi  )  [static]

static double csound::Conversions::leftPan ( double  x  )  [static]

static const double csound::Conversions::round ( double  value  )  [static]

static double csound::Conversions::temper ( double  octave,
double  tonesPerOctave 
) [static]

static double csound::Conversions::phaseToTableLengths ( double  Phase,
double  TableSampleCount 
) [static]

static double csound::Conversions::hzToMidi ( double  Hz,
bool  rounded 
) [static]

static double csound::Conversions::hzToOctave ( double  Hz  )  [static]

static double csound::Conversions::hzToSamplingIncrement ( double  Hz,
double  SR,
double  SamplesPerCycle 
) [static]

static double csound::Conversions::midiToHz ( double  Midi  )  [static]

static double csound::Conversions::midiToOctave ( double  Midi  )  [static]

static double csound::Conversions::midiToSamplingIncrement ( double  Midi,
double  SR,
double  SamplesPerCycle 
) [static]

static double csound::Conversions::octaveToHz ( double  Octave  )  [static]

static double csound::Conversions::octaveToMidi ( double  Octave,
bool  rounded 
) [static]

static double csound::Conversions::octaveToSamplingIncrement ( double  Octave,
double  SR,
double  SamplesPerCycle 
) [static]

static double csound::Conversions::rightPan ( double  x  )  [static]

static int csound::Conversions::swapInt ( int  Source  )  [static]

static short csound::Conversions::swapShort ( short  Source  )  [static]

static bool csound::Conversions::stringToBool ( std::string  value  )  [static]

static std::string csound::Conversions::boolToString ( bool  value  )  [static]

static int csound::Conversions::stringToInt ( std::string  value  )  [static]

static std::string csound::Conversions::intToString ( int  value  )  [static]

static double csound::Conversions::stringToDouble ( std::string  value  )  [static]

static std::string csound::Conversions::doubleToString ( double  value  )  [static]

static double csound::Conversions::midiToPitchClass ( double  midiKey  )  [static]

static double csound::Conversions::pitchClassSetToMidi ( double  pitchClassSet  )  [static]

static double csound::Conversions::midiToPitchClassSet ( double  midiKey  )  [static]

static double csound::Conversions::pitchClassToMidi ( double  pitchClass  )  [static]

static double csound::Conversions::findClosestPitchClass ( double  M,
double  pitchClass,
double  tones = 12.0 
) [static]

Given the pitch-class set number M = sum over pitch-classes of (2 ^ pitch-class), return the pitch-class in the set that is closest to the argumen pitch-class.

static double csound::Conversions::midiToRoundedOctave ( double  midiKey  )  [static]

static std::string& csound::Conversions::trim ( std::string &  value  )  [static]

static std::string& csound::Conversions::trimQuotes ( std::string &  value  )  [static]

static double csound::Conversions::modulus ( double  a,
double  b 
) [static]

True modulus accounting for sign.

static std::vector<double> csound::Conversions::nameToPitches ( std::string  name  )  [static]

Return the pitches for a chord name.

static double csound::Conversions::nameToM ( std::string  name  )  [static]

Return the pitch-class set number M = sum over pitch-classes of (2 ^ pitch-class) for the jazz-style scale or chord name. These numbers form a multiplicative monoid for all pitch-class sets in a system of equal temperament.

static std::string csound::Conversions::mToName ( double  pitchClassSet  )  [static]

Return the jazz-style scale or chord name for the pitch-class set number M = sum over pitch-classes of (2 ^ pitch-class) These numbers form a multiplicative monoid for all pitch-class sets in a system of equal temperament.

static char* csound::Conversions::dupstr ( const char *  string  )  [static]

Return a new copy of a "C" string allocated on the heap. The user is responsible for freeing the copy.

static double csound::Conversions::gainToDb ( double  inputDb,
double  gain,
bool  odbfs = false 
) [static]

Return a new value in dB that represents the input value in dB adjusted by the specified gain. If odbfs is false (the default), then 0 dB is the threshold of hearing; otherwise, 0 dB is full scale.


Field Documentation

bool csound::Conversions::initialized_ [static, private]

std::map<std::string, double> csound::Conversions::pitchClassSetsForNames [static, private]

std::map<double, std::string> csound::Conversions::namesForPitchClassSets [static, private]

const double csound::Conversions::PI_ [static, private]

const double csound::Conversions::TWO_PI_ [static, private]

const double csound::Conversions::middleCHz [static, private]

const double csound::Conversions::log10d20 [static, private]

const double csound::Conversions::log10scale [static, private]

const double csound::Conversions::NORM_7_ [static, private]

const double csound::Conversions::floatMaximumAmplitude [static, private]

int csound::Conversions::sampleSize [static, private]


Generated on Sun Nov 9 00:24:48 2008 for Csound and CsoundAC by  doxygen 1.5.6