我必须实现小的多图像图形控件,它本质上是一个由9个图像组成的数组,逐个显示。最终目标是充当迷你滑板。
现在,这个图形控件将接收各种整数范围:从5到25或从0到7或从-9到9.
如果我要使用比例 - “三个规则”,我担心技术上不可能,因为它可能是错误的来源。我的猜测是使用一些查找表,但有人对方法提出了很好的建议吗?
日Thnx
答案 0 :(得分:1)
我不确定是否需要查找表格。您可以按比例从输入值到0到9之间的图像索引:
int ConvertToImageArrayIndex(int inputValue)
{
int maxInputFromOtherModule = 25;
int minInputFromOtherModule = 5;
// +1 required so include both min and max input values in possible range.
// + 0.5 required so that round to the nearest image instead of always rounding down.
// 8.0 required to get to an output range of 9 possible indexes [0..8]
int imageIndex = ( (float)((inputValue-minInputFromOtherModule) * 8.0) / (float)(maxInputFromOtherModule - minInputFromOtherModule + 1) ) + 0.5;
return imageIndex;
}
答案 1 :(得分:0)
是的,查找表是一个很好的解决方案
int lookup[9] = {5, 25, ... the other values };
int id1 = floor(slider);
int id2 = id1+1;
int texId1 = lookup[id1];
int texId2 = lookup[id2];
interpolate(texId1, texId2, slider - float(id1));