blob: e3edfd1b286309abe00330a98474b12e229ef9b0 [file] [log] [blame]
/*
* Project: VizKit
* Version: 2.3
* Date: 20090823
* File: VisualInterpolation.cpp
*
*/
/***************************************************************************
Copyright (c) 2004-2009 Heiko Wichmann (http://www.imagomat.de/vizkit)
This software is provided 'as-is', without any expressed or implied warranty.
In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated
but is not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
***************************************************************************/
#include "VisualInterpolation.h"
#include "VisualErrorHandling.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h> // RAND_MAX
#ifndef M_PI
#define M_PI 3.14159265358979323846264338327950288
#endif
using namespace VizKit;
const double VisualInterpolation::startValue = 0.0;
const double VisualInterpolation::endValue = 1.0;
VisualInterpolation::VisualInterpolation(InterpolationType anInterpolationType) {
calcDistance();
interpolationType = anInterpolationType;
}
VisualInterpolation::~VisualInterpolation() {
// NULL
}
VisualInterpolation::VisualInterpolation(const VisualInterpolation& other) {
copy(other);
}
VisualInterpolation& VisualInterpolation::operator=(const VisualInterpolation& other) {
if (this != &other) {
this->copy(other);
}
return *this;
}
void VisualInterpolation::copy(const VisualInterpolation& other) {
this->distance = other.distance;
this->interpolationType = other.interpolationType;
}
double VisualInterpolation::getValueAtPosition(double position) const {
double valueAtPosition = 0.0;
if (position < 0.0 || position > 1.0) {
char errLog[64];
sprintf(errLog, "invalid position %f in file: %s (line: %d) [%s])", position, __FILE__, __LINE__, __FUNCTION__);
writeLog(errLog);
return valueAtPosition;
}
if (interpolationType == kSinusoidalInterpolation) {
position = (-1.0 * cos(position * M_PI) / 2.0) + 0.5;
}
if (this->startValue > this->endValue) {
valueAtPosition = this->startValue - (this->distance * position);
} else if (this->startValue < this->endValue) {
valueAtPosition = this->startValue + (this->distance * position);
} else {
valueAtPosition = this->startValue;
}
return valueAtPosition;
}
void VisualInterpolation::setType(InterpolationType anInterpolationType) {
this->interpolationType = anInterpolationType;
}
void VisualInterpolation::calcDistance() {
if (this->startValue > this->endValue) {
this->distance = this->startValue - this->endValue;
} else if (this->startValue < this->endValue) {
this->distance = this->endValue - this->startValue;
} else {
this->distance = 0.0;
}
}
double VisualInterpolation::getRandomValue() {
return ((double)rand() / (double)RAND_MAX);
}