December 2014 files
This commit is contained in:
31
Minecraft.World/RangedAttribute.cpp
Normal file
31
Minecraft.World/RangedAttribute.cpp
Normal file
@@ -0,0 +1,31 @@
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "RangedAttribute.h"
|
||||
|
||||
RangedAttribute::RangedAttribute(eATTRIBUTE_ID id, double defaultValue, double minValue, double maxValue) : BaseAttribute(id, defaultValue)
|
||||
{
|
||||
this->minValue = minValue;
|
||||
this->maxValue = maxValue;
|
||||
|
||||
//if (minValue > maxValue) throw new IllegalArgumentException("Minimum value cannot be bigger than maximum value!");
|
||||
//if (defaultValue < minValue) throw new IllegalArgumentException("Default value cannot be lower than minimum value!");
|
||||
//if (defaultValue > maxValue) throw new IllegalArgumentException("Default value cannot be bigger than maximum value!");
|
||||
}
|
||||
|
||||
double RangedAttribute::getMinValue()
|
||||
{
|
||||
return minValue;
|
||||
}
|
||||
|
||||
double RangedAttribute::getMaxValue()
|
||||
{
|
||||
return maxValue;
|
||||
}
|
||||
|
||||
double RangedAttribute::sanitizeValue(double value)
|
||||
{
|
||||
if (value < minValue) value = minValue;
|
||||
if (value > maxValue) value = maxValue;
|
||||
|
||||
return value;
|
||||
}
|
||||
Reference in New Issue
Block a user