//KH0.2 HUD VS 5. Chest glow. Double depth fixed in ShaderFixesDM.
// ---- Created with geo-11 v0.6.198 on Sun Apr 12 18:39:34 2026
cbuffer cb0 : register(b0)
{
  float4 cb0[144];
}




// 3Dmigoto declarations
#define cmp -
Texture1D<float4> IniParams : register(t120);
Texture2D<float4> StereoParams : register(t125);
Texture2DArray<float> DepthBuffer : register(t110);

static const float near = 0.00001;
static const float far = 1;

float world_z_from_depth_buffer(float x, float y, int eye)
{
    uint width, height, elements = 0;
    float z;

    DepthBuffer.GetDimensions(width, height, elements);

    x = min(max((x / 2 + 0.5) * width, 0), width - 1);
    y = min(max((-y / 2 + 0.5) * height, 0), height - 1);
    z = DepthBuffer.Load(int4(x, y, eye, 0)).x;
    if (z == 0)
        return 0;

  return (far*near/((z)*near) + (far*z));
}

float adjust_from_depth_buffer(float x, float y, float numsamples, float convmult)
{
    float4 stereo = StereoParams.Load(0);
    float separation = stereo.x; float convergence = stereo.y;
    float old_offset, offset, w, sampled_w, distance;
    uint i;

    // Stereo cursor: To improve the accuracy of the stereo cursor, we
    // sample a number of points on the depth buffer, starting at the near
    // clipping plane and working towards original x + separation.
    //
    // You can think of this as a line in three dimensional space that
    // starts at each eye and stretches out towards infinity. We sample 255
    // points along this line (evenly spaced in the X axis) and compare
    // with the depth buffer to find where the line is first intersected.
    //
    // Note: The reason for sampling 255 points came from a restriction in
    // DX9/SM3 where loops had to run a constant number of iterations and
    // there was no way to set that number from within the shader itself.
    // I'm not sure if the same restriction applies in DX11 with SM4/5 - if
    // it doesn't, we could change this to check each pixel instead for
    // better accuracy.
    //
    // Based on DarkStarSword's stereo crosshair code originally developed
    // for Miasmata, adapted to Unity, then translated to HLSL.

    offset = (near - convergence) * separation*0.001; // Z = X offset from center
    distance = separation - offset;         // Total distance to cover (separation - starting X offset)

    old_offset = offset;
    for (i = 0; i < numsamples; i++) {
        offset += distance / numsamples;

        // Calculate depth for this point on the line:
        w = (separation * convergence*convmult) / (separation - offset);
		
		sampled_w = world_z_from_depth_buffer(x + offset, y, 0);
        //sampled_w = world_z_from_depth_buffer(x + offset * stereo.z, y);
		
		//float left = min((x + offset * stereo.z), 0);
        //float right = max((x - offset * stereo.z), 0);
        //float left_sampled_w = world_z_from_depth_buffer(left, y, 0);
        //float right_sampled_w = world_z_from_depth_buffer(right, y, 1);
        //sampled_w = max(left_sampled_w, right_sampled_w);
		
        if (sampled_w == 0)
            return separation;

        // If the sampled depth is closer than the calculated depth,
        // we have found something that intersects the line, so exit
        // the loop and return the last point that was not intersected:
        if (w > sampled_w)
            break;

        old_offset = offset;
    }

    return old_offset;
}

void main(
  float4 v0 : ATTRIBUTE0,
  uint v1 : ATTRIBUTE1,
  out float4 o0 : ATTRIBUTE4,
  out float4 o1 : ATTRIBUTE5,
  out float2 o2 : ATTRIBUTE6,
  out float4 o3 : SV_Position0)
{
  float4 r0;
  uint4 bitmask, uiDest;
  float4 fDest;
  
  float4 stereo = StereoParams.Load(0);
  float4 iniparams3 = IniParams.Load(int2(3,0));
  float4 iniparams10 = IniParams.Load(int2(10,0));
  float4 iniparams11 = IniParams.Load(int2(11,0));
  float4 iniparams12 = IniParams.Load(int2(12,0));
  
  r0.x = (int)v1.x * 6;
  r0.y = mad((int)v1.x, 6, 1);
  r0.xy = (uint2)r0.xy;
  r0.xy = float2(0.100000001,0.100000001) + r0.xy;
  r0.xy = (int2)r0.xy;
  o1.xyzw = cb0[r0.y+0].xyzw;
  o0.xyzw = cb0[r0.x+0].xyzw;
  r0.xyzw = mad((int4)v1.xxxx, int4(6,6,6,6), int4(2,2,4,4));
  r0.xyzw = (uint4)r0.xyzw;
  r0.xyzw = float4(0.100000001,1.10000002,0.100000001,1.10000002) + r0.xyzw;
  r0.xyzw = (int4)r0.xyzw;
  o2.x = dot(v0.xyzw, cb0[r0.z+0].xyzw);
  o2.y = dot(v0.xyzw, cb0[r0.w+0].xyzw);
  o3.x = dot(v0.xyzw, cb0[r0.x+0].xyzw);
  o3.y = dot(v0.xyzw, cb0[r0.y+0].xyzw);
  o3.zw = float2(0,1);
  
  float bottomLeftCheck = o3.x<-0.6 && o3.y<-0.1;
  float bottomRightCheck = o3.x>0.6 && o3.y<-0.1;
  float topLeftCheck = o3.x<-0.4 && o3.y>0.35;
  float topRightCheck = o3.x>0.4 && o3.y>0.4;
  float superTopRightCheck = o3.x>0.3 && o3.y>0.8;
  float centerCrosshair = o3.x>=-0.65 && o3.x<0.65 && o3.y>=-0.65 && o3.y<0.65;
  
  //if (iniparams11.x==0 && iniparams3.w==4 && !topLeftCheck && !bottomLeftCheck && !topRightCheck && o3.y>-0.5) {
  if (iniparams11.x==0 && (iniparams3.w==4 || ((iniparams3.w==24 || (iniparams3.w==34 && iniparams12.x==1)) && !topLeftCheck && !bottomLeftCheck && !topRightCheck && o3.y>-0.5))) {
   o3.x+=adjust_from_depth_buffer(o3.x,o3.y,300,iniparams11.z);
  } else if (iniparams11.x==0 && (iniparams3.w==3 || (iniparams3.w==23 && !topLeftCheck && !bottomLeftCheck && !topRightCheck))) {
   o3.x+=adjust_from_depth_buffer(0,0,300,iniparams11.z);
  } else if (iniparams11.x==0) {
   o3.x+=stereo.x*iniparams10.x;
  }
  
  return;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Generated by Microsoft (R) D3D Shader Disassembler
//
//   using 3Dmigoto v0.6.198 on Sun Apr 12 18:39:34 2026
//
//
// Input signature:
//
// Name                 Index   Mask Register SysValue  Format   Used
// -------------------- ----- ------ -------- -------- ------- ------
// ATTRIBUTE                0   xyzw        0     NONE   float   xyzw
// ATTRIBUTE                1   x           1     NONE    uint   x
//
//
// Output signature:
//
// Name                 Index   Mask Register SysValue  Format   Used
// -------------------- ----- ------ -------- -------- ------- ------
// ATTRIBUTE                4   xyzw        0     NONE   float   xyzw
// ATTRIBUTE                5   xyzw        1     NONE   float   xyzw
// ATTRIBUTE                6   xy          2     NONE   float   xy
// SV_Position              0   xyzw        3      POS   float   xyzw
//
vs_5_0
dcl_globalFlags refactoringAllowed
dcl_constantbuffer CB0[144], dynamicIndexed
dcl_input v0.xyzw
dcl_input v1.x
dcl_output o0.xyzw
dcl_output o1.xyzw
dcl_output o2.xy
dcl_output_siv o3.xyzw, position
dcl_temps 1
imul null, r0.x, v1.x, l(6)
imad r0.y, v1.x, l(6), l(1)
utof r0.xy, r0.xyxx
add r0.xy, r0.xyxx, l(0.100000, 0.100000, 0.000000, 0.000000)
ftoi r0.xy, r0.xyxx
mov o1.xyzw, cb0[r0.y + 0].xyzw
mov o0.xyzw, cb0[r0.x + 0].xyzw
imad r0.xyzw, v1.xxxx, l(6, 6, 6, 6), l(2, 2, 4, 4)
utof r0.xyzw, r0.xyzw
add r0.xyzw, r0.xyzw, l(0.100000, 1.100000, 0.100000, 1.100000)
ftoi r0.xyzw, r0.xyzw
dp4 o2.x, v0.xyzw, cb0[r0.z + 0].xyzw
dp4 o2.y, v0.xyzw, cb0[r0.w + 0].xyzw
dp4 o3.x, v0.xyzw, cb0[r0.x + 0].xyzw
dp4 o3.y, v0.xyzw, cb0[r0.y + 0].xyzw
mov o3.zw, l(0,0,0,1.000000)
ret
// Approximately 0 instruction slots used

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
