Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / MatrixEffect.java @ 78ff6ea9

1 8eccf334 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski                                                               //
3
//                                                                                               //
4 46b572b5 Leszek Koltunski
// This file is part of Distorted.                                                               //
5 8eccf334 Leszek Koltunski
//                                                                                               //
6 46b572b5 Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 8eccf334 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 8eccf334 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 8eccf334 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20
package org.distorted.library.effect;
21
22 43814a57 Leszek Koltunski
import org.distorted.library.effectqueue.EffectQueue;
23
24 8eccf334 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
25 faa3ff56 Leszek Koltunski
/**
26 a20f274f Leszek Koltunski
 * Abstract class that represents an Effect that works by modifying the ModelView matrix.
27 faa3ff56 Leszek Koltunski
 */
28 8eccf334 Leszek Koltunski
public abstract class MatrixEffect extends Effect
29
  {
30 96e3b88a Leszek Koltunski
  /**
31
   * 7: 4 per-effect interpolated values + 3 dimensional center.
32
   */
33
  public static final int NUM_FLOAT_UNIFORMS = 7;
34
  /**
35
   * 0: nothing
36
   */
37
  public static final int NUM_INT_UNIFORMS = 1;
38
39 e979d285 Leszek Koltunski
  static final int CENTER_OFFSET = 4;
40 6d62a900 Leszek Koltunski
41 227b03bd Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
42 faa3ff56 Leszek Koltunski
/**
43
 * Only for use by the library itself.
44
 *
45
 * @y.exclude
46
 */
47 62c869ad Leszek Koltunski
  public abstract void apply(float[] matrixP, float[] matrixV, float[] uniforms, int index);
48 227b03bd Leszek Koltunski
49 43814a57 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
50
/**
51
 * Only for use by the library itself.
52
 *
53
 * @y.exclude
54
 */
55
  public void addQueue(EffectQueue queue)
56
    {
57
    // NO OP
58
    }
59
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61
/**
62
 * Only for use by the library itself.
63
 *
64
 * @y.exclude
65
 */
66
  public void remQueue(EffectQueue queue)
67
    {
68
    // NO OP
69
    }
70
71 2f1f7570 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
72 143095f7 Leszek Koltunski
// empty function for completeness
73 2f1f7570 Leszek Koltunski
74
  static void destroyStatics()
75
    {
76
77
    }
78
79 b547aaba leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
80 8eccf334 Leszek Koltunski
81 a0d5e302 Leszek Koltunski
  MatrixEffect(EffectName name)
82 b547aaba leszek
    {
83 9d0d8530 leszek
    super(name);
84 b547aaba leszek
    }
85 8eccf334 Leszek Koltunski
  }