Firebase与数据更新滞后 - 多人游戏

问题描述 投票:1回答:1

我使用Firebase作为多人开放世界游戏的后端数据库。我需要写入速度高达100毫秒,以保持所有播放器的实时更新。我的游戏图形在LibGdx引擎中保持平稳,但随后Firebase滞后于写入数据,显示对手玩家的延迟位置。我使用界面与核心LibGdx游戏类通信到Android功能(因为LibGdx中没有Firebase)。

请建议我实现更新数据的平滑机制,并使用Firebase实现流畅的多人游戏方法。 (包括LibGdx)

以下代码显示了我的Firebase代码段:

//For writing owners location update
taskMap.clear();
taskMap.put("x", Connect.carX);
taskMap.put("y", carY);
taskMap.put("angle", angle);
taskMap.put("rx", rx);
taskMap.put("ry", ry);
taskMap.put("fx", fx);
taskMap.put("fy", fy);
taskMap.put("wheelAngle", wheelAngle);
db.child("public").child(firebaseAuth.getUid()).updateChildren(taskMap);
taskMap.clear();
taskMap.put("damage", damage);
taskMap.put("gear", gear);
taskMap.put("fuel", fuel);
db.child(firebaseAuth.getUid()).updateChildren(taskMap);


//For reading opponent locations update
LibGdx.core.class.dummyCarUpdate(postSnapshot.getKey(),
Float.parseFloat(postSnapshot.child("x").getValue().toString()),
Float.parseFloat(postSnapshot.child("y").getValue().toString()),
Float.parseFloat(postSnapshot.child("angle").getValue().toString()),
Float.parseFloat(postSnapshot.child("rx").getValue().toString()),
Float.parseFloat(postSnapshot.child("ry").getValue().toString()),
Float.parseFloat(postSnapshot.child("fx").getValue().toString()),
Float.parseFloat(postSnapshot.child("fy").getValue().toString()),
Float.parseFloat(postSnapshot.child("wheelAngle").getValue().toString()));
android firebase libgdx
1个回答
0
投票

您正在寻找的技术称为插值。此技术允许您在连接到数据库的客户端上平滑结果移动。 Learn a bit about interpolation here

您需要存储以前的数据以使用新数据进行插值。您还将决定插值在状态之间的速度。

© www.soinside.com 2019 - 2024. All rights reserved.