2009-07-27 05:47:50 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1994-1995 Apogee Software, Ltd.
|
|
|
|
|
|
|
|
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
|
2014-07-20 08:55:56 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-07-27 05:47:50 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
/**********************************************************************
|
|
|
|
module: PITCH.C
|
|
|
|
|
|
|
|
author: James R. Dose
|
|
|
|
date: June 14, 1993
|
|
|
|
|
|
|
|
Routines for pitch scaling.
|
|
|
|
|
|
|
|
(c) Copyright 1993 James R. Dose. All Rights Reserved.
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2009-10-03 14:34:05 +00:00
|
|
|
#include <math.h>
|
2009-07-27 05:47:50 +00:00
|
|
|
#include "pitch.h"
|
|
|
|
|
2009-10-07 06:47:35 +00:00
|
|
|
#define MAXDETUNE 50
|
2009-10-03 14:34:05 +00:00
|
|
|
|
|
|
|
static uint32_t PitchTable[ 12 ][ MAXDETUNE ];
|
|
|
|
static int32_t PITCH_Installed = 0;
|
2009-07-27 05:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------
|
|
|
|
Function: PITCH_Init
|
|
|
|
|
|
|
|
Initializes pitch table.
|
|
|
|
---------------------------------------------------------------------*/
|
2009-10-03 14:34:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PITCH_Init(void)
|
|
|
|
{
|
|
|
|
int32_t note;
|
|
|
|
int32_t detune;
|
|
|
|
|
2014-09-30 04:09:03 +00:00
|
|
|
if (PITCH_Installed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (note = 0; note < 12; note++)
|
2009-10-03 14:34:05 +00:00
|
|
|
{
|
2014-09-30 04:09:03 +00:00
|
|
|
for (detune = 0; detune < MAXDETUNE; detune++)
|
2009-10-03 14:34:05 +00:00
|
|
|
{
|
2014-09-30 04:09:03 +00:00
|
|
|
PitchTable[note][detune] = (uint32_t) (65535.f * powf(2.f, (note * MAXDETUNE + detune) / (12.f * MAXDETUNE)));
|
2009-10-03 14:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-30 04:09:03 +00:00
|
|
|
|
|
|
|
PITCH_Installed = 1;
|
2009-10-03 14:34:05 +00:00
|
|
|
}
|
2009-07-27 05:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------
|
|
|
|
Function: PITCH_GetScale
|
|
|
|
|
|
|
|
Returns a fixed-point value to scale number the specified amount.
|
|
|
|
---------------------------------------------------------------------*/
|
|
|
|
|
2009-10-03 14:34:05 +00:00
|
|
|
uint32_t PITCH_GetScale(int32_t pitchoffset)
|
|
|
|
{
|
|
|
|
uint32_t scale;
|
|
|
|
int32_t octaveshift;
|
|
|
|
int32_t noteshift;
|
|
|
|
int32_t note;
|
|
|
|
int32_t detune;
|
|
|
|
|
|
|
|
if ( !PITCH_Installed )
|
|
|
|
PITCH_Init();
|
|
|
|
|
|
|
|
if (pitchoffset == 0)
|
2012-12-29 10:59:21 +00:00
|
|
|
return PitchTable[ 0 ][ 0 ];
|
2009-10-03 14:34:05 +00:00
|
|
|
|
|
|
|
noteshift = pitchoffset % 1200;
|
|
|
|
if (noteshift < 0)
|
|
|
|
noteshift += 1200;
|
|
|
|
|
|
|
|
note = noteshift / 100;
|
|
|
|
detune = (noteshift % 100) / (100 / MAXDETUNE);
|
|
|
|
octaveshift = (pitchoffset - noteshift) / 1200;
|
|
|
|
|
|
|
|
if (detune < 0)
|
|
|
|
{
|
|
|
|
detune += (100 / MAXDETUNE);
|
|
|
|
note--;
|
|
|
|
if (note < 0)
|
|
|
|
{
|
|
|
|
note += 12;
|
|
|
|
octaveshift--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scale = PitchTable[ note ][ detune ];
|
|
|
|
|
|
|
|
return (octaveshift < 0) ? (scale >> -octaveshift) : (scale <<= octaveshift);
|
|
|
|
}
|
2009-07-27 05:47:50 +00:00
|
|
|
|