Lag Compensation

From Valve Developer Community
< Zh
Jump to navigation Jump to search
Under construction.png
This page is actively undergoing a major edit.
As a courtesy, please do not edit this while this message is displayed.
If this page has not been edited for at least several hours to a few days, please remove this template. This message is intended to help reduce edit conflicts; please remove it between editing sessions to allow others to edit the page.

The person who added this notice will be listed in its edit history should you wish to contact them.

Info content.png
This page needs to be translated.
This page either contains information that is only partially or incorrectly translated, or there isn't a translation yet.
If this page cannot be translated for some reason, or is left untranslated for an extended period of time after this notice is posted, the page should be requested to be deleted.
Also, please make sure the article tries to comply with the alternate languages guide.
English (en)Español (es)中文 (zh)Translate (Translate)
你可能在寻找Yahn Bernier 2001年关于游戏引擎网络设计的论文(en)
历史客户端命中框(红色)与服务器回溯命中框(蓝色)对比。

延迟补偿是服务器在处理usercmd(en)时,利用玩家延迟回退时间的机制,以便重现玩家发送指令时的视野状态。结合预测(en)技术,延迟补偿能有效对抗网络延迟,从攻击者视角几乎消除其影响。更详细的解释请参阅《Source多人游戏网络机制(en)文章。

默认情况下仅对玩家进行回溯,且保留1秒的位置/动画历史数据。

Note.png注意:CBasePlayer(en)未使用延迟补偿功能,需通过派生类实现。Valve的网络化玩家类已内置此功能。
Tip.png提示:求生之路2起,所有实体均可通过LagCompensate 不存在于FGD!键值启用延迟补偿。请谨慎使用!

配置

开发者服务器版本(使用ALLOW_DEVELOPMENT_CVARS编译)或通过服务器插件(如SourceMod)可启用隐藏控制台命令,获得额外指令:
控制台变量/命令 参数或默认值 描述符 效果
cl_lagcompensation bool 允许客户端告知服务器是否禁用自身指令的延迟补偿。非作弊指令。
cl_lagcomp_errorcheck int 已弃用?理论上显示指定玩家索引的错误信息,实际无任何引用。
sv_lagcompensationforcerestore bool 作弊指令。禁用后,游戏会检查每个实体在未回溯的当前世界中是否能占据回溯位置。若不能,则回退至最后有效位置而非目标位置。
待完善: 为何需要这种机制?
sv_showlagcompensation bool 作弊指令。当玩家触发延迟补偿时显示回溯后的命中框(en)。取代了旧版sv_showhitboxes命令,避免补偿未生效时显示命中框造成的混淆。
sv_unlag bool 全局启用/禁用延迟补偿。
sv_maxunlag float 存储玩家位置的历史时长(秒)。默认(及最大值)为1。

调用方法

只需将要进行延迟补偿的代码包裹在lagcompensation对象的两个调用之间:

#ifdef GAME_DLL

#include "..\server\ilagcompensationmanager.h"

void CMyPlayer::FireBullets ( const FireBulletsInfo_t &info )
{
	// Source 2007
	lagcompensation->StartLagCompensation( this, this->GetCurrentCommand() );

	// Alien Swarm及后续版本(参见下方子章节)
	lagcompensation->StartLagCompensation( this, LAG_COMPENSATE_HITBOXES );

	BaseClass::FireBullets(info);

	lagcompensation->FinishLagCompensation( this );
}
#endif

时间将在调用StartLagCompensation()时回退,在FinishLagCompensation()时恢复。

延迟补偿类型

自Alien Swarm起,可通过以下设置优化延迟补偿:

LAG_COMPENSATE_BOUNDS
仅回溯实体位置,跳过动画处理。
LAG_COMPENSATE_HITBOXES
同时回溯位置和命中框(en)。此为标准设置。
LAG_COMPENSATE_HITBOXES_ALONG_RAY
当实体被"weaponPos"参数重载的StartLagCompensation()定义射线击中时,回溯命中框。否则仅回溯位置。

所选设置将作用于所有受回溯影响的实体。

实现细节

待完善: 如何为新增实体实现延迟补偿支持。

另请参阅