我正在为我的朋友开发一款小游戏。到目前为止,我已经获得了正确的网络,两个玩家都可以飞来飞去,而且一切都是同步的。
现在我添加了像这样生成的射弹(激光):
if (_mou.LeftButton == ButtonState.Pressed
&& oldState.LeftButton
!= ButtonState.Released)
{
if (timeSinceShot > timePerShot)
{
timeSinceShot = 0;
bulletRotation = rotation; //Rotation of the players ship
laser.addLaser(myID, bulletRotation, localPosition);
}
}
这很好用,它从我的船上发射激光,但还没有显示出来。
现在当我开火时,我称之为:
om.Write(bulletRotation); //Sends the rotation to the server
当服务器收到它时,它会将它发送回所有玩家,包括射击的玩家。
以下是我在客户端接收数据并将其写入激光器列表的方式:
if (who != myID)
{
try
{
float laserR = msg.ReadFloat();
laser.addLaser(who, laserR, player.players[i].position);
}
catch { }
}
现在,当我在 2 个客户端上对其进行测试并开火时,我可以看到自己在第二个客户端上开火,这很好。然而,它不仅会在第二个客户端上触发,还会在我的客户端的第二个播放器上触发。
编辑:谁是 RemoteUniqueIdentifier,myID 是客户 RemoteUniqueIdentifier
这是我的问题的图片。 http://i.stack.imgur.com/CYJyW.png (还不能上传,因为我没有 10 个代表。)
编辑2:
这是服务器将其数据发送给所有玩家的方式:
foreach (NetConnection player in server.Connections)
{
// ... send information about every other player (actually including self)
foreach (NetConnection otherPlayer in server.Connections)
{
// send position update about 'otherPlayer' to 'player'
NetOutgoingMessage om = server.CreateMessage();
// write who this position is for
om.Write(player.RemoteUniqueIdentifier);
om.Write(otherPlayer.RemoteUniqueIdentifier);
if (otherPlayer.Tag == null)
otherPlayer.Tag = new float[4];
float[] pos = otherPlayer.Tag as float[];
om.Write(pos[0]); // velocity X
om.Write(pos[1]); // velocity X
om.Write(pos[2]); // rotation
if (!noLasers)
{
om.Write(pos[3]); // bullet rotation
}
// send message
server.SendMessage(om, player, NetDeliveryMethod.Unreliable);
}
}