This question is purelly logical, which makes it hard to formulate. I will be given two numbers, number1 and number2 and I want to make some action smoothly, if the steps are too far away from each other.
const MAX_STEP = 10; //Set what we call too far away from each other
int number1 = /*insert any code*/;
int number2 = /*another source of number*/
int difference = number1-number2; //Calculate difference
if(abs(ifference)>MAX_STEP) //If the numbers are too different
{
int direction = difference<0?-1:1; //Set which way are we gonna iterate
for(int i=number1; true; i+=direction*MAX_STEP) {
if(/*this is condition I am looking for*/) {
i=number1;
}
doAction(i, i+direction*MAX_STEP); //Do that something
if(i==number1)
break;
}
}
Of course, I can make a big condition:
if((number1>number2&&(i+direction*MAX_STEP<number2))||(number1<number2&&(i+direction*MAX_STEP>number2))
But I would like something smarter than this.