From 2103008a3341bf71ad91e27d1b4a026156e80754 Mon Sep 17 00:00:00 2001 From: hawk86104 Date: Fri, 1 Dec 2023 19:17:49 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9A=82=E5=AD=98=20=E6=B3=A2=E7=BA=B9=20h?= =?UTF-8?q?ttps://shaderfrog.com/2/editor/clnwgwyy50000pa2ykmvprcf7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../water/components/tilingCaustics.vue | 2 +- src/plugins/water/components/waterGlass.vue | 52 +++++++ src/plugins/water/config.js | 3 +- src/plugins/water/pages/waterGlass.vue | 58 +++++++ src/plugins/water/shaders/waterGlass.frag | 4 + src/plugins/water/shaders/waterGlass.vert | 141 ++++++++++++++++++ 6 files changed, 258 insertions(+), 2 deletions(-) create mode 100644 src/plugins/water/components/waterGlass.vue create mode 100644 src/plugins/water/pages/waterGlass.vue create mode 100644 src/plugins/water/shaders/waterGlass.frag create mode 100644 src/plugins/water/shaders/waterGlass.vert diff --git a/src/plugins/water/components/tilingCaustics.vue b/src/plugins/water/components/tilingCaustics.vue index 66a0dd81..3e5cabfe 100644 --- a/src/plugins/water/components/tilingCaustics.vue +++ b/src/plugins/water/components/tilingCaustics.vue @@ -38,7 +38,7 @@ const props = withDefaults( const smState = { uniforms: { - resolution: { type: "v2", value: { x: 2, y: 2 } }, + resolution: { type: "v2", value: { x: 1, y: 1 } }, backgroundColor: { type: "c", value: new THREE.Color(props.color) }, color: { type: "c", value: new THREE.Color('#fff') }, speed: { type: "f", value: props.speed }, diff --git a/src/plugins/water/components/waterGlass.vue b/src/plugins/water/components/waterGlass.vue new file mode 100644 index 00000000..6fefc931 --- /dev/null +++ b/src/plugins/water/components/waterGlass.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/src/plugins/water/config.js b/src/plugins/water/config.js index 984bfe8c..5527a2f0 100644 --- a/src/plugins/water/config.js +++ b/src/plugins/water/config.js @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2023-11-10 16:11:27 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2023-12-01 15:10:24 + * @LastEditTime: 2023-12-01 17:22:22 */ export default { @@ -18,5 +18,6 @@ export default { "require": [], "preview": [ { "src": "plugins/water/preview/tilingCaustics.png", "type": "img", "name": "tilingCaustics", "title": "波纹A" }, + { "src": "plugins/water/preview/tilingCaustics.png", "type": "img", "name": "waterGlass", "title": "波浪A" }, ] } \ No newline at end of file diff --git a/src/plugins/water/pages/waterGlass.vue b/src/plugins/water/pages/waterGlass.vue new file mode 100644 index 00000000..6d8e7ca2 --- /dev/null +++ b/src/plugins/water/pages/waterGlass.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/src/plugins/water/shaders/waterGlass.frag b/src/plugins/water/shaders/waterGlass.frag new file mode 100644 index 00000000..93f9a571 --- /dev/null +++ b/src/plugins/water/shaders/waterGlass.frag @@ -0,0 +1,4 @@ + +void main(){ + csm_FragColor=vec4(0.,0.,0.,1.); +} \ No newline at end of file diff --git a/src/plugins/water/shaders/waterGlass.vert b/src/plugins/water/shaders/waterGlass.vert new file mode 100644 index 00000000..7e74eb57 --- /dev/null +++ b/src/plugins/water/shaders/waterGlass.vert @@ -0,0 +1,141 @@ +uniform float time; +uniform float amplitude; +uniform float speed; +uniform float frequency; + +// Description : Array and textureless GLSL 2D/3D/4D simplex +// noise functions. +// Author : Ian McEwan, Ashima Arts. +// Maintainer : ijm +// Lastmod : 20110822 (ijm) +// License : Copyright (C) 2011 Ashima Arts. All rights reserved. +// Distributed under the MIT License. See LICENSE file. +// https://github.com/ashima/webgl-noise +// + +vec3 mod289(vec3 x){ + return x-floor(x*(1./289.))*289.; +} + +vec4 mod289(vec4 x){ + return x-floor(x*(1./289.))*289.; +} + +vec4 permute(vec4 x){ + return mod289(((x*34.)+1.)*x); +} + +vec4 taylorInvSqrt(vec4 r){ + return 1.79284291400159-.85373472095314*r; +} + +float noise(vec3 v){ + const vec2 C=vec2(1./6.,1./3.); + const vec4 D=vec4(0.,.5,1.,2.); + + // First corner + vec3 i=floor(v+dot(v,C.yyy)); + vec3 x0=v-i+dot(i,C.xxx); + + // Other corners + vec3 g=step(x0.yzx,x0.xyz); + vec3 l=1.-g; + vec3 i1=min(g.xyz,l.zxy); + vec3 i2=max(g.xyz,l.zxy); + + // x0 = x0 - 0.0 + 0.0 * C.xxx; + // x1 = x0 - i1 + 1.0 * C.xxx; + // x2 = x0 - i2 + 2.0 * C.xxx; + // x3 = x0 - 1.0 + 3.0 * C.xxx; + vec3 x1=x0-i1+C.xxx; + vec3 x2=x0-i2+C.yyy;// 2.0*C.x = 1/3 = C.y + vec3 x3=x0-D.yyy;// -1.0+3.0*C.x = -0.5 = -D.y + + // Permutations + i=mod289(i); + vec4 p=permute(permute(permute( + i.z+vec4(0.,i1.z,i2.z,1.)) + +i.y+vec4(0.,i1.y,i2.y,1.)) + +i.x+vec4(0.,i1.x,i2.x,1.)); + + // Gradients: 7x7 points over a square, mapped onto an octahedron. + // The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294) + float n_=.142857142857;// 1.0/7.0 + vec3 ns=n_*D.wyz-D.xzx; + + vec4 j=p-49.*floor(p*ns.z*ns.z);// mod(p,7*7) + + vec4 x_=floor(j*ns.z); + vec4 y_=floor(j-7.*x_);// mod(j,N) + + vec4 x=x_*ns.x+ns.yyyy; + vec4 y=y_*ns.x+ns.yyyy; + vec4 h=1.-abs(x)-abs(y); + + vec4 b0=vec4(x.xy,y.xy); + vec4 b1=vec4(x.zw,y.zw); + + //vec4 s0 = vec4(lessThan(b0,0.0))*2.0 - 1.0; + //vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0; + vec4 s0=floor(b0)*2.+1.; + vec4 s1=floor(b1)*2.+1.; + vec4 sh=-step(h,vec4(0.)); + + vec4 a0=b0.xzyw+s0.xzyw*sh.xxyy; + vec4 a1=b1.xzyw+s1.xzyw*sh.zzww; + + vec3 p0=vec3(a0.xy,h.x); + vec3 p1=vec3(a0.zw,h.y); + vec3 p2=vec3(a1.xy,h.z); + vec3 p3=vec3(a1.zw,h.w); + + //Normalise gradients + vec4 norm=taylorInvSqrt(vec4(dot(p0,p0),dot(p1,p1),dot(p2,p2),dot(p3,p3))); + p0*=norm.x; + p1*=norm.y; + p2*=norm.z; + p3*=norm.w; + + // Mix final noise value + vec4 m=max(.6-vec4(dot(x0,x0),dot(x1,x1),dot(x2,x2),dot(x3,x3)),0.); + m=m*m; + return 42.*dot(m*m,vec4(dot(p0,x0),dot(p1,x1), + dot(p2,x2),dot(p3,x3))); + } + + // the function which defines the displacement + float displace(vec3 point){ + return noise(vec3(point.x*frequency,point.y*frequency,time*speed))*amplitude; + } + + // http://lolengine.net/blog/2013/09/21/picking-orthogonal-vector-combing-coconuts + vec3 orthogonal(vec3 v){ + return normalize(abs(v.x)>abs(v.z) + ?vec3(-v.y,v.x,0.) + :vec3(0.,-v.z,v.y)); + } + + void main(){ + vec3 displacedPosition=position+normal*displace(position); + + float offset=.0001; + vec3 tangent=orthogonal(normal); + vec3 bitangent=normalize(cross(normal,tangent)); + vec3 neighbour1=position+tangent*offset; + vec3 neighbour2=position+bitangent*offset; + vec3 displacedNeighbour1=neighbour1+normal*displace(neighbour1); + vec3 displacedNeighbour2=neighbour2+normal*displace(neighbour2); + + // https://i.ya-webdesign.com/images/vector-normals-tangent-16.png + vec3 displacedTangent=displacedNeighbour1-displacedPosition; + vec3 displacedBitangent=displacedNeighbour2-displacedPosition; + + // https://upload.wikimedia.org/wikipedia/commons/d/d2/Right_hand_rule_cross_product.svg + vec3 displacedNormal=normalize(cross(displacedTangent,displacedBitangent)); + + // vNormal=normalMatrix*displacedNormal; + //vNormal = normal; + csm_Normal=normalMatrix*displacedNormal; + // gl_Position=projectionMatrix*modelViewMatrix*vec4(displacedPosition,1.); + csm_Position=displacedPosition; + } \ No newline at end of file From 1d0729eda9e439166d9fa7622b48f2cda9a53384 Mon Sep 17 00:00:00 2001 From: hawk86104 Date: Fri, 1 Dec 2023 20:16:51 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=85=A2=E6=85=A2=E6=9D=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/water/components/waterGlass.vue | 14 +++++++------- src/plugins/water/pages/waterGlass.vue | 9 ++++++--- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/plugins/water/components/waterGlass.vue b/src/plugins/water/components/waterGlass.vue index 6fefc931..1991b7b4 100644 --- a/src/plugins/water/components/waterGlass.vue +++ b/src/plugins/water/components/waterGlass.vue @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2023-12-01 14:04:27 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2023-12-01 19:14:34 + * @LastEditTime: 2023-12-01 19:24:26 -->