This commit is contained in:
bottiger1 2025-11-10 18:44:29 +00:00 committed by GitHub
commit 2445a4d3ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 58 additions and 6 deletions

View File

@ -237,6 +237,7 @@ void CHookManager::OnClientConnected(int client)
}
}
int hookid = SH_ADD_VPHOOK(IClientMessageHandler, ProcessVoiceData, (IClientMessageHandler *)((intptr_t)(pClient) + sizeof(void *)), SH_MEMBER(this, &CHookManager::ProcessVoiceData), true);
hook.SetHookID(hookid);
netProcessVoiceData.push_back(new CVTableHook(hook));

View File

@ -63,7 +63,8 @@ inline void DecodePassMethod(ValveType vtype, SDKPassMethod method, PassType &ty
type = PassType_Basic;
if (vtype == Valve_POD
|| vtype == Valve_Float
|| vtype == Valve_Bool)
|| vtype == Valve_Bool
|| vtype == Valve_Pointer)
{
flags = PASSFLAG_BYVAL | PASSFLAG_ASPOINTER;
} else {
@ -394,8 +395,8 @@ static cell_t SDKCall(IPluginContext *pContext, const cell_t *params)
}
//note: varargs pawn args are passed by-ref
cell_t *cell;
pContext->LocalToPhysAddr(params[startparam], &cell);
intptr_t *cell;
pContext->LocalToPhysAddr(params[startparam], reinterpret_cast<cell_t**>(&cell));
void *thisptr = reinterpret_cast<void*>(*cell);
if (thisptr == nullptr)
@ -429,7 +430,8 @@ static cell_t SDKCall(IPluginContext *pContext, const cell_t *params)
{
startparam += 2;
} else if (vc->retinfo->vtype == Valve_Vector
|| vc->retinfo->vtype == Valve_QAngle)
|| vc->retinfo->vtype == Valve_QAngle
|| vc->retinfo->vtype == Valve_Pointer)
{
startparam += 1;
}
@ -506,7 +508,8 @@ static cell_t SDKCall(IPluginContext *pContext, const cell_t *params)
pContext->StringToLocalUTF8(params[retparam], *addr, *(char **)vc->retbuf, &written);
return (cell_t)written;
} else if (vc->retinfo->vtype == Valve_Vector
|| vc->retinfo->vtype == Valve_QAngle)
|| vc->retinfo->vtype == Valve_QAngle
|| vc->retinfo->vtype == Valve_Pointer)
{
if (numparams < 2)
{

View File

@ -164,6 +164,20 @@ size_t ValveParamToBinParam(ValveType type,
return sizeof(float);
}
}
case Valve_Pointer:
{
info->type = PassType_Basic;
info->flags = flags;
if (flags & PASSFLAG_ASPOINTER)
{
needs_extra = true;
info->size = sizeof(void*);
return sizeof(void*) * 2;
} else {
info->size = sizeof(void*);
return sizeof(void*);
}
}
}
return 0;
@ -276,6 +290,20 @@ DataStatus EncodeValveParam(IPluginContext *pContext,
*addr = *(bool *)buffer ? 1 : 0;
return Data_Okay;
}
case Valve_Pointer: // buffer -> sourcepawn
{
intptr_t *addr;
pContext->LocalToPhysAddr(param, reinterpret_cast<cell_t**>(&addr));
if (data->flags & PASSFLAG_ASPOINTER)
{
buffer = *(intptr_t **)buffer;
}
*addr = *(intptr_t *)buffer;
return Data_Okay;
}
}
@ -585,6 +613,23 @@ DataStatus DecodeValveParam(IPluginContext *pContext,
*(char **)buffer = addr;
return Data_Okay;
}
case Valve_Pointer: // sourcepawn -> buffer
{
intptr_t *addr;
pContext->LocalToPhysAddr(param, reinterpret_cast<cell_t**>(&addr));
if (data->decflags & VDECODE_FLAG_BYREF)
{
addr = reinterpret_cast<intptr_t*>(*addr);
}
if (data->flags & PASSFLAG_ASPOINTER)
{
*(void **)buffer = (unsigned char *)_buffer + pCall->stackEnd + data->obj_offset;
buffer = *(void **)buffer;
}
*(intptr_t *)buffer = *addr;
return Data_Okay;
}
}
return Data_Fail;

View File

@ -54,6 +54,7 @@ enum ValveType
Valve_String, /**< String */
Valve_Bool, /**< Boolean */
Valve_Object, /**< Object, not matching one of the above types */
Valve_Pointer, /**< 64 bit or 32 bit array */
};
enum DataStatus

View File

@ -88,7 +88,9 @@ enum SDKType
SDKType_Float, /**< Float (any) */
SDKType_Edict, /**< edict_t (always as pointer) */
SDKType_String, /**< NULL-terminated string (always as pointer) */
SDKType_Bool /**< Boolean (any) */
SDKType_Bool, /**< Boolean (any) */
SDKType_Object,
SDKType_Pointer, /**< Pointer (pass in an array) */
};
enum SDKPassMethod