Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / FragmentEffectSaturation.java @ da9b3f07

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// Distorted is free software: you can redistribute it and/or modify                             //
7
// 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
// Distorted is distributed in the hope that it will be useful,                                  //
12
// 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
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.library.effect;
21

    
22
import org.distorted.library.type.Data1D;
23
import org.distorted.library.type.Data4D;
24
import org.distorted.library.type.Dynamic1D;
25
import org.distorted.library.type.Dynamic4D;
26
import org.distorted.library.type.Static1D;
27
import org.distorted.library.type.Static4D;
28

    
29
///////////////////////////////////////////////////////////////////////////////////////////////////
30

    
31
public class FragmentEffectSaturation extends FragmentEffect
32
  {
33
  private static final float[] UNITIES         = new float[] {1.0f};
34
  private static final int DIMENSION           = 1;
35
  private static final boolean SUPPORTS_CENTER = false;
36
  private static final boolean SUPPORTS_REGION = true;
37

    
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39
/**
40
 * Makes a certain sub-region of the Object smoothly change its saturation level.
41
 *
42
 * @param saturation 1-dimensional Data that returns the level of saturation we want to have
43
 *                   at any given moment. Valid range: <0,infinity)
44
 * @param region     Region this Effect is limited to.
45
 * @param smooth     If true, the level of 'saturation' will smoothly fade out towards the edges of the region.
46
 */
47
  public FragmentEffectSaturation(Data1D saturation, Data4D region, boolean smooth)
48
    {
49
    super(smooth?EffectName.SMOOTH_SATURATION:EffectName.SATURATION ,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION,UNITIES);
50

    
51
    if( saturation instanceof Dynamic1D )
52
      {
53
      mDynamic0 = (Dynamic1D)saturation;
54
      }
55
    else if ( saturation instanceof Static1D )
56
      {
57
      mStatic0 = (Static1D)saturation;
58
      }
59

    
60
    if( region instanceof Static4D)
61
      {
62
      mStaticRegion = (Static4D)region;
63
      }
64
    else if( region instanceof Dynamic4D)
65
      {
66
      mDynamicRegion = (Dynamic4D)region;
67
      }
68
    }
69

    
70
///////////////////////////////////////////////////////////////////////////////////////////////////
71
/**
72
 * Makes the whole Object smoothly change its saturation level.
73
 *
74
 * @param saturation 1-dimensional Data that returns the level of saturation we want to have
75
 *                   at any given moment. Valid range: <0,infinity)
76
 */
77
  public FragmentEffectSaturation(Data1D saturation)
78
    {
79
    super(EffectName.SATURATION,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION,UNITIES);
80

    
81
    if( saturation instanceof Dynamic1D )
82
      {
83
      mDynamic0 = (Dynamic1D)saturation;
84
      }
85
    else if ( saturation instanceof Static1D )
86
      {
87
      mStatic0 = (Static1D)saturation;
88
      }
89

    
90
    mStaticRegion = new Static4D(0,0,Float.MAX_VALUE, Float.MAX_VALUE);
91
    }
92

    
93
///////////////////////////////////////////////////////////////////////////////////////////////////
94

    
95
  public boolean compute(float[] uniforms, int index, long currentDuration, long step )
96
    {
97
    if( mDynamicRegion!=null )
98
      {
99
      mDynamicRegion.interpolateMain(uniforms,index+4,currentDuration,step);
100
      }
101
    else
102
      {
103
      uniforms[index+4] = mStaticRegion.getX();
104
      uniforms[index+5] = mStaticRegion.getY();
105
      uniforms[index+6] = mStaticRegion.getZ();
106
      uniforms[index+7] = mStaticRegion.getW();
107
      }
108

    
109
    if( mDynamic0!=null )
110
      {
111
      return mDynamic0.interpolateMain(uniforms,index,currentDuration,step);
112
      }
113
    else
114
      {
115
      uniforms[index] = ((Static1D)mStatic0).getX();
116
      return false;
117
      }
118
    }
119
  }
(9-9/25)