Ambr0se 这个是添加所有玩家
我通过修改cs#的c++层的源码通过拿到了IRecipientFilter和EmitSound_t,但是调用CBaseEntity_EmitSoundFilter还是不成功
struct EmitSound_t是从cs2fix复制的,CSingleRecipientFilter则是cs#自带的
void* GetCSigleRecipientFilter(ScriptContext& script_context)
{
auto slot = script_context.GetArgument<int>(0);
auto filter = new CSingleRecipientFilter(slot);
return filter;
}
void* GetEmitSoundT(ScriptContext& script_context)
{
auto pszSound = script_context.GetArgument<const char*>(0);
auto flVolume = script_context.GetArgument<float>(1);
auto flPitch = script_context.GetArgument<float>(2);
auto params = new EmitSound_t();
params->m_pSoundName = pszSound;
params->m_flVolume = flVolume;
params->m_nPitch = flPitch;
params->m_SoundLevel = SNDLVL_20dB;
return params;
}
public static void EmitSoundFilter(CCSPlayerController entity, string pszSound, float flVolume = 1.0f, float flPitch = 1.0f)
{
if (entity == null || string.IsNullOrEmpty(pszSound))
return;
var filter = NativeAPI.GetCSigleRecipientFilter(entity.Slot);
var emit = NativeAPI.GetEmitSoundT(pszSound, flVolume, flPitch);
var index = NativeAPI.GetCEntityIndex((int)entity.Index);
MemoryFunctionWithReturn<IntPtr, uint, IntPtr, IntPtr> func = new(GameData.GetSignature("CBaseEntity_EmitSoundFilter"));
_ = func.Invoke(filter, entity.EntityHandle.Value!.Index, emit);
}
这样调用会出现
Exception Info: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
Stack:
at CounterStrikeSharp.API.Core.Helpers.InvokeNative(IntPtr)
at CounterStrikeSharp.API.Core.Helpers.InvokeNative(IntPtr)
at CounterStrikeSharp.API.Core.ScriptContext.InvokeNativeInternal()
at CounterStrikeSharp.API.Core.ScriptContext.Invoke()
于是我尝试直接从c++层调用
void EmitSoundFilter(ScriptContext& script_context)
{
auto pszSound = script_context.GetArgument<const char*>(0);
auto flVolume = script_context.GetArgument<float>(1);
auto flPitch = script_context.GetArgument<float>(2);
EmitSound_t params;
params.m_pSoundName = pszSound;
params.m_flVolume = flVolume;
params.m_nPitch = flPitch;
params.m_SoundLevel = SNDLVL_20dB;
auto slot = script_context.GetArgument<int>(3);
CRecipientFilter filter{};
filter.AddRecipient(slot);
int index = script_context.GetArgument<int>(4);
//CEntityIndex entIndex(index);
auto binary_name = script_context.GetArgument<const char*>(5);
auto signature_hex_string = script_context.GetArgument<const char*>(6);
auto* function_addr = FindSignature(binary_name, signature_hex_string);
auto* pFunc = new ValveFunction(function_addr,
CONV_CDECL,
{ DATA_TYPE_POINTER, DATA_TYPE_INT, DATA_TYPE_POINTER },
DATA_TYPE_POINTER
);
script_context.Push(&filter);
script_context.Push(index);
script_context.Push(¶ms);
pFunc->Call(script_context, 7);
}
NativeAPI.EmitSoundFilter(pszSound, flVolume, flPitch, entity.Slot, entity.Entity!.EntityInstance.Index, Addresses.ServerPath, GameData.GetSignature("CBaseEntity_EmitSoundFilter"));
这个调用不会有上面的报错,但是也会导致服务端闪退,系统日志提示是server.dll的问题,但是没有说明原因
经过我自己的测试,我得到的filter是可以使用的,我通过DispatchParticleEffect传递filter可以正常生成粒子
所以我不知道是不是emitsound_t的原因还是调用方式错了