Project

General

Profile

Download (5.83 KB) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / effect / VertexEffectSink.java @ f046b159

1 125cee3d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski                                                               //
3
//                                                                                               //
4 46b572b5 Leszek Koltunski
// This file is part of Distorted.                                                               //
5 125cee3d Leszek Koltunski
//                                                                                               //
6 46b572b5 Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 125cee3d Leszek Koltunski
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11 46b572b5 Leszek Koltunski
// Distorted is distributed in the hope that it will be useful,                                  //
12 125cee3d Leszek Koltunski
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17 46b572b5 Leszek Koltunski
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 125cee3d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20
package org.distorted.library.effect;
21
22
import org.distorted.library.type.Data1D;
23
import org.distorted.library.type.Data3D;
24
import org.distorted.library.type.Data4D;
25
26
///////////////////////////////////////////////////////////////////////////////////////////////////
27 faa3ff56 Leszek Koltunski
/**
28
 * Pull all points around the center of the Effect towards the center point (if degree>=1) or push them
29
 * away from it (degree<=1).
30
 */
31 125cee3d Leszek Koltunski
public class VertexEffectSink extends VertexEffect
32
  {
33 f046b159 Leszek Koltunski
  private static final EffectName NAME = EffectName.SINK;
34
35 0dd98279 Leszek Koltunski
  private Data1D mSink;
36
  private Data3D mCenter;
37
  private Data4D mRegion;
38
39 125cee3d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
40 6bb59aad Leszek Koltunski
/**
41 faa3ff56 Leszek Koltunski
 * Only for use by the library itself.
42 6bb59aad Leszek Koltunski
 *
43 faa3ff56 Leszek Koltunski
 * @y.exclude
44 6bb59aad Leszek Koltunski
 */
45 15aa7d94 Leszek Koltunski
  public boolean compute(float[] uniforms, int index, long currentDuration, long step )
46
    {
47 b24e4719 Leszek Koltunski
    mCenter.get(uniforms,index+CENTER_OFFSET,currentDuration,step);
48
    mRegion.get(uniforms,index+REGION_OFFSET,currentDuration,step);
49 f046b159 Leszek Koltunski
    return mSink.get(uniforms,index+VALUES_OFFSET,currentDuration,step);
50 125cee3d Leszek Koltunski
    }
51 7cd24173 leszek
52 faa3ff56 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53 f046b159 Leszek Koltunski
54
  static String code()
55 7cd24173 leszek
    {
56 f046b159 Leszek Koltunski
    return
57 7cd24173 leszek
58 0f10a0b6 Leszek Koltunski
        "vec3 ps = vUniforms[effect+1].yzw - v;            \n"
59 5f76092f Leszek Koltunski
      + "float h = vUniforms[effect].x;                    \n"
60 0f10a0b6 Leszek Koltunski
      + "float deg = degree(vUniforms[effect+2],ps);       \n"
61 5f76092f Leszek Koltunski
      + "float t = deg * (1.0-h)/max(1.0,h);               \n"
62
      + "v += t*ps;                                        \n"
63 7cd24173 leszek
64 5f76092f Leszek Koltunski
      + "const float A = 1.6;                              \n" // max amount of change in normal vector when pulling
65
      + "const float B = 10.0;                             \n" // when pushing
66 569ea22c Leszek Koltunski
      + "vec3 n_ps = dot(ps,n)*ps;                         \n" // n_ps = (component of n that's parallel to ps) * |ps|^2 (=dot(ps,ps))
67 5f76092f Leszek Koltunski
      + "float dot_ps = dot(ps,ps);                        \n"
68
      + "float sign_ps= sign(dot_ps);                      \n"
69 569ea22c Leszek Koltunski
      + "n_ps = (sign_ps*n_ps)/(dot_ps-(sign_ps-1.0));     \n" // uff! now n_ps is the parallel to ps component of n, even if ps==0
70 5f76092f Leszek Koltunski
      + "float move = deg*(h-1.0)/(h/B+1.0/A);             \n" // move(0)=-A*deg, move(1)=0, move(inf)=B*deg
71 569ea22c Leszek Koltunski
      + "n += move*n_ps;                                   \n"
72 f046b159 Leszek Koltunski
      + "n = normalize(n);";
73
    }
74
75
///////////////////////////////////////////////////////////////////////////////////////////////////
76
// PUBLIC API
77
///////////////////////////////////////////////////////////////////////////////////////////////////
78
// Pull P=(v.x,v.y) towards center of the effect with P' = P + (1-h)*dist(S-P)
79
// when h>1 we are pushing points away from S: P' = P + (1/h-1)*dist(S-P)
80
///////////////////////////////////////////////////////////////////////////////////////////////////
81
/**
82
 * Have to call this before the shaders get compiled (i.e before DistortedLibrary.onCreate()) for the Effect to work.
83
 */
84
  public static void enable()
85
    {
86
    addEffect(NAME, code() );
87 7cd24173 leszek
    }
88 faa3ff56 Leszek Koltunski
89
///////////////////////////////////////////////////////////////////////////////////////////////////
90
/**
91
 * Pull all points around the center of the Effect towards the center point (if degree>=1) or push them
92
 * away from it (degree<=1)
93
 *
94
 * @param sink   The current degree of the Effect.
95
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
96
 * @param region Region that masks the Effect.
97
 */
98
  public VertexEffectSink(Data1D sink, Data3D center, Data4D region)
99
    {
100 f046b159 Leszek Koltunski
    super(NAME);
101 faa3ff56 Leszek Koltunski
    mSink   = sink;
102
    mCenter = center;
103 dd89c7f4 Leszek Koltunski
    mRegion = (region==null ? MAX_REGION : region);
104 faa3ff56 Leszek Koltunski
    }
105
106
///////////////////////////////////////////////////////////////////////////////////////////////////
107
/**
108
 * Pull all points around the center of the Effect towards the center point(if degree>=1) or push them
109
 * away from it (degree<=1)
110
 *
111
 * @param sink   The current degree of the Effect.
112
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
113
 */
114
  public VertexEffectSink(Data1D sink, Data3D center)
115
    {
116 f046b159 Leszek Koltunski
    super(NAME);
117 faa3ff56 Leszek Koltunski
    mSink   = sink;
118
    mCenter = center;
119 dd89c7f4 Leszek Koltunski
    mRegion = MAX_REGION;
120 faa3ff56 Leszek Koltunski
    }
121 125cee3d Leszek Koltunski
  }