2023-07-29 21:05:57 +02:00
|
|
|
Shader "CrispyPin/Nut"
|
|
|
|
{
|
|
|
|
Properties
|
|
|
|
{
|
|
|
|
[Header(Raymarcher Properties)]
|
2023-09-22 21:24:21 +02:00
|
|
|
_MaxSteps ("Max steps", Integer) = 128
|
2023-07-29 21:05:57 +02:00
|
|
|
_MaxDist ("Max distance", Float) = 128
|
|
|
|
_SurfDist ("Surface distance threshold", Range(0.0001, 0.05)) = 0.001
|
|
|
|
}
|
|
|
|
SubShader
|
|
|
|
{
|
|
|
|
Tags { "RenderType"="Opaque" }
|
|
|
|
Cull Front
|
|
|
|
LOD 100
|
|
|
|
|
|
|
|
Pass
|
|
|
|
{
|
|
|
|
CGPROGRAM
|
|
|
|
#pragma vertex vert
|
|
|
|
#pragma fragment frag
|
|
|
|
|
2023-07-31 20:53:38 +02:00
|
|
|
#define PLAYER_COUNT 4
|
2023-07-30 17:00:22 +02:00
|
|
|
float4 _PlayerRightHandPositions[PLAYER_COUNT];
|
|
|
|
float4 _PlayerLeftHandPositions[PLAYER_COUNT];
|
|
|
|
|
2023-07-29 21:05:57 +02:00
|
|
|
int _MaxSteps;
|
|
|
|
float _MaxDist;
|
|
|
|
float _SurfDist;
|
|
|
|
#define MAX_STEPS _MaxSteps
|
|
|
|
#define MAX_DIST _MaxDist
|
|
|
|
#define SURF_DIST _SurfDist
|
|
|
|
|
2023-08-08 20:22:50 +02:00
|
|
|
#define REFLECTIONS 2
|
2023-07-29 21:05:57 +02:00
|
|
|
|
|
|
|
#define SCENE_FN main
|
|
|
|
#define LIGHT_FN lighting
|
|
|
|
|
2023-07-30 17:00:22 +02:00
|
|
|
#define SCENE_SCALE 0.7
|
2023-07-29 21:05:57 +02:00
|
|
|
|
|
|
|
// #define DISCARD_ON_MISS
|
|
|
|
#define LIMIT_DEPTH_TO_MESH
|
2023-08-08 20:22:50 +02:00
|
|
|
|
2023-07-29 21:05:57 +02:00
|
|
|
#include "lib/libgarbage.cginc"
|
|
|
|
|
|
|
|
float3 checkers(float3 p, float3 a, float3 b, float2 size) {
|
|
|
|
float2 q = p.xz / size;
|
|
|
|
q = int2(abs(q) + 0.5);
|
|
|
|
int s = ((q.x + q.y) % 2);
|
|
|
|
return s * a + (1 - s) * b;
|
|
|
|
}
|
|
|
|
|
|
|
|
float3 floor(float3 p) {
|
2023-08-08 20:22:50 +02:00
|
|
|
return lerp(0.42,
|
|
|
|
checkers(p - 1, 0.35, 0.45, .2),
|
2023-07-29 21:05:57 +02:00
|
|
|
smoothstep(16, 0, length(p))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
SurfacePoint mRoundedHex(float3 p, float girth, float height) {
|
|
|
|
SurfacePoint d;
|
|
|
|
d = qRound(mHexPrism(p, girth, height), 0.01);
|
|
|
|
float rounding = 3;
|
|
|
|
d = qIntersect(d, mSphere(p - float3(0, -rounding + height, 0), rounding), 0.01);
|
|
|
|
d = qIntersect(d, mSphere(p + float3(0, -rounding + height, 0), rounding), 0.01);
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
SurfacePoint main(float3 p) {
|
|
|
|
float girth = 0.3;
|
|
|
|
float height = 0.1;
|
|
|
|
float inner_radius = 0.18;
|
|
|
|
float thread = 0.013;
|
2023-07-31 20:53:38 +02:00
|
|
|
float3 thread_box = float3(thread, thread, UNITY_PI/4);
|
2023-07-29 21:05:57 +02:00
|
|
|
SurfacePoint d;
|
|
|
|
|
2023-08-08 20:22:50 +02:00
|
|
|
float3 rp = p;
|
|
|
|
rp = rotY(rp, _Time.y);
|
2023-07-29 21:05:57 +02:00
|
|
|
rp = rotX(rp, _Time.x);
|
|
|
|
// nut
|
|
|
|
d = mRoundedHex(rp, girth, height);
|
|
|
|
d = qSub(d, mInfCylinder(rp, float3(0, 0, inner_radius)), 0.02);
|
2023-07-31 20:53:38 +02:00
|
|
|
d = qSub(d, mHelixSquare(rp - float3(0, -1, 0), inner_radius, thread_box, thread/2), 0.003);
|
2023-07-29 21:05:57 +02:00
|
|
|
|
|
|
|
// bolt
|
|
|
|
SurfacePoint bolt_thread = mInfCylinder(rp, float3(0, 0, inner_radius + 0.3));
|
|
|
|
bolt_thread = qSub(bolt_thread, mInfCylinder(rp, float3(0, 0, inner_radius)), 0.02);
|
2023-07-31 20:53:38 +02:00
|
|
|
bolt_thread = qSub(bolt_thread, mHelixSquare(rp - float3(0, -1, 0), inner_radius, thread_box, thread/2), 0.03);
|
2023-07-29 21:05:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
// d = qUnion(d, bolt_thread);
|
|
|
|
float h = sin(_Time.y) * 0.15 + 0.2;
|
|
|
|
float3 bp = rotY(rp, sin(_Time.y) * UNITY_PI * 4);
|
|
|
|
bp.y -= h;
|
|
|
|
SurfacePoint bolt = qSub(mCylinder(bp, inner_radius+thread*2, 0.2), bolt_thread);
|
|
|
|
bolt = qUnion(bolt, mRoundedHex(bp - float3(0, 0.13, 0), girth, height));
|
2023-08-08 20:22:50 +02:00
|
|
|
Material metal1 = mat(float3(0.62, 0.62, 0.64), 1);
|
|
|
|
Material metal2 = mat(float3(0.58, 0.32, 0.12), 1);
|
|
|
|
// Material metal1 = mat(0.3, 1);
|
|
|
|
// Material metal2 = mat(0.3, 1);
|
2023-07-29 21:05:57 +02:00
|
|
|
d.mat = metal1;
|
|
|
|
bolt.mat = metal2;
|
|
|
|
|
|
|
|
// cube
|
|
|
|
// float3 cp = rotX(bp - float3(0, -0.32, 0), _Time.w * 5);
|
|
|
|
// bolt = qUnion(bolt, mBox(cp, 0.1, mat(float3(0,1,1))),.1);
|
|
|
|
|
|
|
|
d = qUnion(d, bolt);
|
|
|
|
|
2023-07-30 17:00:22 +02:00
|
|
|
// d = qUnion(d, mSphere(p - float3(0,0,.3), 0.15, mat(1,0,0.5)), 0.1);
|
|
|
|
|
2023-07-29 21:05:57 +02:00
|
|
|
// floor
|
|
|
|
|
|
|
|
// d = qUnion(d, mPlaneY(p, -0.5, mat(floor_col, 0)), 0.01);
|
|
|
|
// d = qIntersect(d, mPlaneY(-p, 0.6, mat(floor_col, 0)), 0.01);
|
2023-07-31 20:53:38 +02:00
|
|
|
d = qUnion(d, mBox(p - float3(0, -0.5 / SCENE_SCALE, 0), float3(6, 0.05, 6), mat(floor(p), 0)));
|
2023-07-29 21:05:57 +02:00
|
|
|
|
2023-07-30 17:00:22 +02:00
|
|
|
[unroll]
|
|
|
|
for (int i = 0; i < PLAYER_COUNT; i++) {
|
|
|
|
// float visible = (float)(length(_PlayerRightHandPositions[i]) > 0);
|
|
|
|
// float visible = step(0.01, length(_PlayerRightHandPositions[i]));
|
|
|
|
[flatten]
|
|
|
|
if (length(_PlayerRightHandPositions[i]) > 0.01) {
|
|
|
|
float rad = 0.1;
|
|
|
|
float3 hand_r = mul(unity_WorldToObject, float4(_PlayerRightHandPositions[i].xyz, 1)).xyz / SCENE_SCALE;
|
|
|
|
d = qUnion(d, mSphere(p - hand_r, rad, mat(0.1, sin(_Time.y)*0.5 +0.5, 1)), 0.2);
|
|
|
|
float3 hand_l = mul(unity_WorldToObject, float4(_PlayerLeftHandPositions[i].xyz, 1)).xyz / SCENE_SCALE;
|
|
|
|
d = qUnion(d, mSphere(p - hand_l, rad, mat(float3(1, 0, 0.1), 0.5)), 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-29 21:05:57 +02:00
|
|
|
// d = qUnion(d, mSphere(p - float3(0, -0.5, 1), 0.4));
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
float3 lighting(Ray ray) {
|
|
|
|
float3 sun_dir = normalize(float3(4, 2, 1));
|
|
|
|
|
|
|
|
if (ray.missed) {
|
|
|
|
if (ray.dir.y >= 0) {
|
|
|
|
return lRenderSky(ray.dir, sun_dir);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
float3 cam = ray.start;
|
2023-07-31 20:53:38 +02:00
|
|
|
cam.y += 0.5 / SCENE_SCALE;
|
2023-07-29 21:05:57 +02:00
|
|
|
float3 dir = ray.dir;
|
|
|
|
float3 surface_pos = float3 (
|
|
|
|
cam.x - cam.y / (dir.y / dir.x),
|
|
|
|
0,
|
|
|
|
cam.z - cam.y / (dir.y / dir.z)
|
|
|
|
);
|
|
|
|
float col = 1;
|
|
|
|
col = floor(surface_pos);
|
2023-08-08 20:22:50 +02:00
|
|
|
return col * (lSky(UP) + lSun(UP, sun_dir));
|
2023-07-29 21:05:57 +02:00
|
|
|
}
|
|
|
|
}
|
2023-07-30 17:00:22 +02:00
|
|
|
float3 light = lSun(ray.normal, sun_dir)
|
|
|
|
* lShadow(ray.hit_pos + ray.normal * SURF_DIST, sun_dir, 50)
|
|
|
|
+ lSky(ray.normal);
|
|
|
|
|
2023-08-08 20:22:50 +02:00
|
|
|
return light;
|
2023-07-29 21:05:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ENDCG
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|