L L4D2node

CTEProjectedDecal::Test

0x00b04cb0 · 357 bytes · __thiscall

_ZN17CTEProjectedDecal4TestERK6VectorRK6QAngle

Decompiled

undefined (3 params)

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

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

{
  float fVar1;
  float local_38;
  float local_34;
  float local_30;
  undefined **local_2c [8];
  
  if (*(float *)(this + 0x1c) != 1024.0) {
    *(undefined4 *)(this + 0x1c) = 0x44800000;
  }
  if (*(int *)(this + 0x18) != 0) {
    *(undefined4 *)(this + 0x18) = 0;
  }
  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;
  }
  if (((*(float *)param_2 != *(float *)(this + 0x20)) ||
      (*(float *)(param_2 + 4) != *(float *)(this + 0x24))) ||
     (*(float *)(param_2 + 8) != *(float *)(this + 0x28))) {
    *(float *)(this + 0x20) = *(float *)param_2;
    *(undefined4 *)(this + 0x24) = *(undefined4 *)(param_2 + 4);
    *(undefined4 *)(this + 0x28) = *(undefined4 *)(param_2 + 8);
  }
  *(float *)(this + 0x14) = fVar1 + 24.0;
  AngleVectors(param_2,(Vector *)&local_38);
  local_30 = 0.0;
  VectorNormalize((Vector *)&local_38);
  *(float *)(this + 0xc) = local_38 * 24.0 + *(float *)(this + 0xc);
  *(float *)(this + 0x10) = local_34 * 24.0 + *(float *)(this + 0x10);
  *(float *)(this + 0x14) = local_30 * 24.0 + *(float *)(this + 0x14);
  CRecipientFilter::CRecipientFilter((CRecipientFilter *)local_2c);
  local_2c[0] = &PTR__CBroadcastRecipientFilter_00c09928;
                    /* try { // try from 00b04de6 to 00b04dea has its CatchHandler @ 00b04e2e */
  CRecipientFilter::AddAllPlayers((CRecipientFilter *)local_2c);
                    /* try { // try from 00b04dfc to 00b04dfe has its CatchHandler @ 00b04e15 */
  (**(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)