我在使用以下代码时遇到问题:
//Make life easier by assigning the last two relevant messages to variables
Update pos0 = m_Network->positionUpdates[m_Network->positionUpdates.size() - 1];
Update pos1 = m_Network->positionUpdates[m_Network->positionUpdates.size() - 2];
//Calculate velocities for X and Z from last two messages
velX = (pos0.posX - pos1.posX) / (pos0.timeStamp - pos1.timeStamp);
velZ = (pos0.posZ - pos1.posZ) / (pos0.timeStamp - pos1.timeStamp);
//Calculate the time for when we are trying to predict
predictionTime = totalTime - pos0.timeStamp;
//Linear prediction model to calculate where we want the car to be
D3DXVECTOR3 newPos = D3DXVECTOR3((pos0.posX + velX * predictionTime), 2.0f, (pos0.posZ + velZ * predictionTime));
//Interpolate to the new position
D3DXVec3Lerp(&position, &position, &newPos, timeSinceLastFrame);
//Set the model to where the car is
m_Model->SetPosition(position.x, position.y, position.z);
如您所见,这个想法是获取从另一个客户端接收到的消息,并找到对象的速度以计算其位置。
我知道那部分是有效的,因为当我简单地将汽车的位置更新为方程的输出时,汽车会去它应该去的地方(以一种非常紧张的方式)。
但是,当我尝试从当前位置移动到新位置时,汽车甚至没有出现在屏幕上。查看从 Ve3Lerp 函数实际返回的内容,我得到的只是“-1 INDEF”。
有什么想法可以解决吗?