L L4D2node

CTEShowLine::Test

0x00b053f0 · 507 bytes · __thiscall

_ZN11CTEShowLine4TestERK6VectorRK6QAngle

Decompiled

undefined (3 params)

/* CTEShowLine::Test(Vector const&, QAngle const&) */

void __thiscall CTEShowLine::Test(CTEShowLine *this,Vector *param_1,QAngle *param_2)

{
  float fVar1;
  float fVar2;
  float fVar3;
  float fVar4;
  float fVar5;
  float fVar6;
  float local_44;
  float local_40;
  float local_3c;
  float local_38;
  float local_34;
  float local_30;
  undefined **local_2c [8];
  
  if (((*(float *)param_1 != *(float *)(this + 0xc)) ||
      (*(float *)(param_1 + 4) != *(float *)(this + 0x10))) ||
     (fVar1 = *(float *)(this + 0x14), fVar1 != *(float *)(param_1 + 8))) {
    *(float *)(this + 0xc) = *(float *)param_1;
    *(undefined4 *)(this + 0x10) = *(undefined4 *)(param_1 + 4);
    fVar1 = *(float *)(param_1 + 8);
    *(float *)(this + 0x14) = fVar1;
  }
  *(float *)(this + 0x14) = fVar1 + 24.0;
  AngleVectors(param_2,(Vector *)&local_44,(Vector *)&local_38,(Vector *)0x0);
  local_3c = 0.0;
  VectorNormalize((Vector *)&local_44);
  fVar2 = local_40 * 100.0 + *(float *)(this + 0x10);
  fVar1 = local_44 * 100.0 + *(float *)(this + 0xc);
  fVar3 = local_3c * 100.0 + *(float *)(this + 0x14);
  *(float *)(this + 0x1c) = fVar2;
  *(float *)(this + 0x18) = fVar1;
  fVar4 = local_38 * -128.0 + fVar1;
  *(float *)(this + 0x20) = fVar3;
  fVar6 = local_34 * -128.0 + fVar2;
  fVar5 = local_30 * -128.0 + fVar3;
  if (((*(float *)(this + 0xc) != fVar4) || (*(float *)(this + 0x10) != fVar6)) ||
     (*(float *)(this + 0x14) != fVar5)) {
    *(float *)(this + 0xc) = fVar4;
    *(float *)(this + 0x10) = fVar6;
    *(float *)(this + 0x14) = fVar5;
  }
  fVar6 = local_38 * 128.0 + fVar1;
  fVar5 = local_34 * 128.0 + fVar2;
  fVar4 = local_30 * 128.0 + fVar3;
  if (((fVar1 != fVar6) || (fVar2 != fVar5)) || (fVar3 != fVar4)) {
    *(float *)(this + 0x18) = fVar6;
    *(float *)(this + 0x1c) = fVar5;
    *(float *)(this + 0x20) = fVar4;
  }
  CRecipientFilter::CRecipientFilter((CRecipientFilter *)local_2c);
  local_2c[0] = &PTR__CBroadcastRecipientFilter_00c09928;
                    /* try { // try from 00b05579 to 00b0557d has its CatchHandler @ 00b055fc */
  CRecipientFilter::AddAllPlayers((CRecipientFilter *)local_2c);
                    /* try { // try from 00b0558f to 00b05591 has its CatchHandler @ 00b0560e */
  (**(code **)(*(int *)this + 0x14))(this,(CRecipientFilter *)local_2c,0);
  local_2c[0] = &PTR__CBroadcastRecipientFilter_00c09928;
  CRecipientFilter::~CRecipientFilter((CRecipientFilter *)local_2c);
  return;
}

SourceMod gamedata

paste into addons/sourcemod/gamedata/<your_plugin>.txt
used as the SourceMod key — change to fit your plugin's convention
SourceMod library name (server / engine / matchmaking)

Just a Signatures{} block, ready to drop into a gamedata file. Wire it up in your plugin however you like - SDKCall, DHooks, raw memory ops, or anything else.



        

        

          

Type inference is best-effort from the C signature - sanity-check the DHooks types before shipping.

Return-type handling cheatsheet (DHookReturn)