Project

General

Profile

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

library / src / main / java / org / distorted / library / EffectNames.java @ 5fd28c26

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 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;
21

    
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23
/**
24
 * Names of Effects one can apply to DistortedObjects.
25
 * <p>
26
 * Effect's 'Type' is one of the constants defined in {@see EffectTypes}.
27
 * </p>
28
 * <p>
29
 * Effect's 'Uniforms' are a vector of 7 (matrix effects) 9 (vertex) or 8 (fragment) floats, which
30
 * together form full information how to compute a given effect.
31
 * Typically, some of those values will be Interpolated in CPU (by one of the 'EffectQueueX.compute()'
32
 * methods) and the effect of such Interpolation sent to the Shaders.
33
 * </p>
34
 * <p>
35
 * Effect's 'Unity' is such a particular vector of its 'interpolated values' which makes the
36
 * effect NULL. For example, if the effect is 'MOVE' by a 3-dimensional vector, then a 'NULL
37
 * MOVE' is a MOVE by vector (0,0,0), thus (0,0,0) is the unity of the MOVE effect.
38
 * This is used by the EffectQueue classes to decide if the final form of the Effect is NULL - and
39
 * thus if it can safely be removed from Effect Queues without affecting the visual in any way.
40
 * </p>
41
 */
42
public enum EffectNames
43
  {
44
  // EFFECT NAME /////// EFFECT TYPE ////////////// UNITY /////////////////////////
45

    
46
  /////////////////////////////////////////////////////////////////////////////////
47
  // MATRIX EFFECTS.
48
  // Always 7 Uniforms: 4 per-effect interpolated values + 3 dimensional center.
49
 /**
50
   * Rotate the whole Object around a center point (in angle-axis notation).
51
   * <p>
52
   * Uniforms: (angle,axisX,axisY,axisZ,centerX,centerY,centerZ)
53
   * Unity: angle==0
54
   */
55
  ROTATE           ( EffectTypes.MATRIX  ,   new float[] {0.0f}           ),
56
 /**
57
   * Rotate the whole Object around a center point (in quaternion notation).
58
   * <p>
59
   * Uniforms: (quatX,quatY,quatZ,quatW,centerX,centerY,centerZ)
60
   * Unity: (quatX,quatY,quatZ) = (0,0,0)
61
   */
62
  QUATERNION       ( EffectTypes.MATRIX  ,   new float[] {0.0f,0.0f,0.0f} ),
63
 /**
64
   * Move the whole Object by a vector.
65
   * <p>
66
   * Uniforms: (vectorX,vectorY,vectorZ,UNUSED,UNUSED,UNUSED,UNUSED)
67
   * Unity: (vectorX,vectorY,vectorZ) = (0,0,0)
68
   */
69
  MOVE             ( EffectTypes.MATRIX  ,   new float[] {0.0f,0.0f,0.0f} ),
70
 /**
71
   * Scale the whole Object independently in all 3 dimensions.
72
   * <p>
73
   * Uniforms: (scaleX,scaleY,scaleZ,UNUSED,UNUSED,UNUSED,UNUSED)
74
   * Unity: (scaleX,scaleY,scaleZ) = (1,1,1)
75
   */
76
  SCALE            ( EffectTypes.MATRIX  ,   new float[] {1.0f,1.0f,1.0f} ),
77
 /**
78
   * Shear the whole Object in 3 dimensions around a center point.
79
   * <p>
80
   * Uniforms: (shearX,shearY,shearZ,UNUSED,centerX,centerY,centerZ)
81
   * Unity:  (shearX,shearY,shearZ) = (0,0,0)
82
   */
83
  SHEAR            ( EffectTypes.MATRIX  ,   new float[] {0.0f,0.0f,0.0f} ),
84
  // add new Matrix effects here...
85

    
86
 /////////////////////////////////////////////////////////////////////////////////
87
 // VERTEX EFFECTS
88
 // Always 9 Uniforms: 3 per-effect interpolated values, 4-dimensional Region,
89
 // 2-dimensional center of the effect.
90
 /**
91
   * Apply a 3D vector of force to area around a point on the surface of the Object.
92
   * <p>
93
   * Uniforms: (forceX,forceY,forceZ,regionX,regionY,regionRX,regionRY,centerX,centerY)
94
   * Unity: (forceX,forceY,forceZ) = (0,0,0)
95
   */
96
  DISTORT          ( EffectTypes.VERTEX  ,   new float[] {0.0f,0.0f,0.0f} ),      // keep this the first VERT effect (reason: getType)
97
 /**
98
   * Deform the whole Object by applying a 2D vector of force to a center point.
99
   * <p>
100
   * Uniforms: (forceX,forceY,UNUSED,UNUSED,UNUSED,UNUSED,UNUSED,centerX,centerY)
101
   * Unity: (forceX,forceY) = (0,0)
102
   */
103
  DEFORM           ( EffectTypes.VERTEX  ,   new float[] {0.0f,0.0f}      ),
104
 /**
105
   * Pull (or push away) all points around a center point to (from) it.
106
   * <p>
107
   * Uniforms: (sinkFactor,UNUSED,UNUSED,regionX,regionY,regionRX,regionRY,centerX,centerY)
108
   * Unity: sinkFactor = 1
109
   */
110
  SINK             ( EffectTypes.VERTEX  ,   new float[] {1.0f}           ),
111
 /**
112
   * Smoothly rotate a limited area around a center point.
113
   * <p>
114
   * Uniforms: (swirlAngle,UNUSED,UNUSED,regionX,regionY,regionRX,regionRY,centerX,centerY)
115
   * Unity: swirlAngle = 0
116
   */
117
  SWIRL            ( EffectTypes.VERTEX  ,   new float[] {0.0f}           ),
118
  // add new Vertex Effects here...
119

    
120
 /////////////////////////////////////////////////////////////////////////////////
121
 // FRAGMENT EFFECTS
122
 // Always 8 Uniforms: 4-per effect interpolated values, 4 dimensional Region.
123
 /**
124
   * Create square-shaped macroblocks.
125
   * <p>
126
   * Uniforms: (macroblockSize,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
127
   * Unity: macroblockSize = 1
128
   */
129
  MACROBLOCK       ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),      // keep this the first FRAG effect (reason: getType)
130
 /**
131
   * Make a given Region (partially) transparent.
132
   * <p>
133
   * Uniforms: (transparencyLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
134
   * Unity: transparencyLevel = 1
135
   */
136
  ALPHA            ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
137
 /**
138
   * Make a given Region (partially) transparent.
139
   * Effect smoothly fades towards the edges of the region.
140
   * <p>
141
   * Uniforms: (transparencyLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
142
   * Unity: transparencyLevel = 1
143
   */
144
  SMOOTH_ALPHA     ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
145
 /**
146
   * Blend current color in the texture with a given color.
147
   * <p>
148
   * Uniforms: (blendLevel,colorR,colorG,colorB, regionX, regionY, regionRX, regionRY)
149
   * Unity: blendLevel = 0
150
   */
151
  CHROMA           ( EffectTypes.FRAGMENT,   new float[] {0.0f}           ),
152
 /**
153
   * Smoothly blend current color in the texture with a given color.
154
   * <p>
155
   * Uniforms: (blendLevel,colorR,colorG,colorB, regionX, regionY, regionRX, regionRY)
156
   * Unity: blendLevel = 0
157
   */
158
  SMOOTH_CHROMA    ( EffectTypes.FRAGMENT,   new float[] {0.0f}           ),
159
 /**
160
   * Change brightness level of a given Region.
161
   * <p>
162
   * Uniforms: (brightnessLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
163
   * Unity: brightnessLevel = 1
164
   */
165
  BRIGHTNESS       ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
166
 /**
167
   * Smoothly change brightness level of a given Region.
168
   * <p>
169
   * Uniforms: (brightnessLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
170
   * Unity: brightnessLevel = 1
171
   */
172
  SMOOTH_BRIGHTNESS( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
173
 /**
174
   * Change saturation level of a given Region.
175
   * <p>
176
   * Uniforms: (saturationLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
177
   * Unity: saturationLevel = 1
178
   */
179
  SATURATION       ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
180
 /**
181
   * Smoothly change saturation level of a given Region.
182
   * <p>
183
   * Uniforms: (saturationLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
184
   * Unity: saturationLevel = 1
185
   */
186
  SMOOTH_SATURATION( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
187
 /**
188
   * Change contrast level of a given Region.
189
   * <p>
190
   * Uniforms: (contrastLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
191
   * Unity: contrastLevel = 1
192
   */
193
  CONTRAST         ( EffectTypes.FRAGMENT,   new float[] {1.0f}           ),
194
 /**
195
   * Smoothly change contrast level of a given Region.
196
   * <p>
197
   * Uniforms: (contrastLevel,UNUSED,UNUSED,UNUSED, regionX, regionY, regionRX, regionRY)
198
   * Unity: contrastLevel = 1
199
   */
200
  SMOOTH_CONTRAST  ( EffectTypes.FRAGMENT,   new float[] {1.0f}           );
201
  // add new Fragment effects here...
202

    
203
///////////////////////////////////////////////////////////////////////////////////////////////////
204
  
205
  private static final int MAXDIM = 4;  // maximum supported dimension of an effect  
206
  
207
  private EffectTypes type;
208
  private float[] unity;
209
  
210
  static private float[] unities;
211
  static private int[] dimensions;
212
  
213
  static
214
    {
215
    int len = values().length;
216
    int i=0;
217
    
218
    dimensions = new int[len];
219
    unities    = new float[MAXDIM*len];
220
    
221
    for(EffectNames name: EffectNames.values())
222
      {
223
      dimensions[i] = (name.unity==null ? 0 : name.unity.length);
224
      
225
      switch(dimensions[i])
226
        {
227
        case 4: unities[MAXDIM*i+3] = name.unity[3];
228
        case 3: unities[MAXDIM*i+2] = name.unity[2];
229
        case 2: unities[MAXDIM*i+1] = name.unity[1];
230
        case 1: unities[MAXDIM*i+0] = name.unity[0];
231
        case 0: break;
232
        }
233
      
234
      i++;  
235
      }
236
    }
237
  
238
///////////////////////////////////////////////////////////////////////////////////////////////////
239
  
240
  EffectNames(EffectTypes type, float[] unity)
241
    {
242
    this.type = type;  
243
    this.unity= unity;
244
    }
245

    
246
///////////////////////////////////////////////////////////////////////////////////////////////////
247
// yes, I know we could have used values(i) but that allocates a new copy each time!
248

    
249
  static EffectTypes getType(int ordinal)
250
    {
251
    if( ordinal<DISTORT.ordinal()     ) return EffectTypes.MATRIX;
252
    if( ordinal<MACROBLOCK.ordinal()  ) return EffectTypes.VERTEX;
253

    
254
    return EffectTypes.FRAGMENT;
255
    }
256

    
257
///////////////////////////////////////////////////////////////////////////////////////////////////
258

    
259
  static void fillWithUnities(int ordinal, float[] buffer, int index)
260
    {
261
    switch(dimensions[ordinal])
262
      {
263
      case 0: break;
264
      case 1: buffer[index+0]=unities[MAXDIM*ordinal+0];
265
              break;
266
      case 2: buffer[index+0]=unities[MAXDIM*ordinal+0]; 
267
              buffer[index+1]=unities[MAXDIM*ordinal+1];
268
              break;
269
      case 3: buffer[index+0]=unities[MAXDIM*ordinal+0]; 
270
              buffer[index+1]=unities[MAXDIM*ordinal+1]; 
271
              buffer[index+2]=unities[MAXDIM*ordinal+2];
272
              break;
273
      case 4: buffer[index+0]=unities[MAXDIM*ordinal+0]; 
274
              buffer[index+1]=unities[MAXDIM*ordinal+1]; 
275
              buffer[index+2]=unities[MAXDIM*ordinal+2];
276
              buffer[index+3]=unities[MAXDIM*ordinal+3];
277
              break;
278
      }  
279
    }
280
  
281
///////////////////////////////////////////////////////////////////////////////////////////////////
282
  
283
  static boolean isUnity(int ordinal, float[] buffer, int index)
284
    {
285
    switch(dimensions[ordinal])
286
      {
287
      case 0: return true;
288
      case 1: return buffer[index+0]==unities[MAXDIM*ordinal+0];
289
      case 2: return buffer[index+0]==unities[MAXDIM*ordinal+0] && 
290
                     buffer[index+1]==unities[MAXDIM*ordinal+1];
291
      case 3: return buffer[index+0]==unities[MAXDIM*ordinal+0] && 
292
                     buffer[index+1]==unities[MAXDIM*ordinal+1] && 
293
                     buffer[index+2]==unities[MAXDIM*ordinal+2];
294
      case 4: return buffer[index+0]==unities[MAXDIM*ordinal+0] && 
295
                     buffer[index+1]==unities[MAXDIM*ordinal+1] && 
296
                     buffer[index+2]==unities[MAXDIM*ordinal+2] &&
297
                     buffer[index+3]==unities[MAXDIM*ordinal+3];
298
      }
299
   
300
    return false;
301
    }
302

    
303
///////////////////////////////////////////////////////////////////////////////////////////////////
304
// PUBLIC API
305
///////////////////////////////////////////////////////////////////////////////////////////////////
306
/**
307
 * Returns the Type of an individual Effect. For example, EffectNames.ROTATION.getType() will
308
 * return EffectTypes.MATRIX.
309
 * @return type of the effect.
310
 */
311
  public EffectTypes getType()
312
    {
313
    return type;
314
    }
315
  }
(12-12/17)