Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / PostprocessEffect.java @ 7958d843

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.effectqueue.EffectQueue;
23
import org.distorted.library.main.DistortedFramebuffer;
24
import org.distorted.library.main.InternalMaster;
25
import org.distorted.library.program.DistortedProgram;
26

    
27
import java.lang.reflect.Method;
28
import java.nio.ByteBuffer;
29
import java.nio.ByteOrder;
30
import java.nio.FloatBuffer;
31
import java.util.ArrayList;
32

    
33
///////////////////////////////////////////////////////////////////////////////////////////////////
34
/**
35
 * Abstract class that represents an Effect that works by running a certain Shader Program(s) on a Framebuffer.
36
 */
37
public abstract class PostprocessEffect extends Effect implements InternalMaster.Slave
38
  {
39
  private static final int MIPMAP = 0;
40
  /**
41
   * 5 per-effect interpolated values.
42
   */
43
  public static final int NUM_FLOAT_UNIFORMS = 6;
44
  /**
45
   * 1: the name of the effect
46
   */
47
  public static final int NUM_INT_UNIFORMS = 1;
48

    
49
  static final int POS_DATA_SIZE= 2;
50
  static final int TEX_DATA_SIZE= 2;
51

    
52
  static final FloatBuffer mQuadPositions, mQuadTexture, mQuadTextureInv;
53

    
54
  static
55
    {
56
    int dataLength      = 4;
57
    int bytes_per_float = 4;
58

    
59
    float[] position  = { -0.5f, -0.5f,  -0.5f, 0.5f,  0.5f,-0.5f,  0.5f, 0.5f };
60
    float[] textureNor= {  0.0f,  0.0f,   0.0f, 1.0f,  1.0f, 0.0f,  1.0f, 1.0f };
61
    float[] textureInv= {  0.0f,  0.0f,   1.0f, 0.0f,  0.0f, 1.0f,  1.0f, 1.0f };
62

    
63
    mQuadPositions = ByteBuffer.allocateDirect(POS_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
64
    mQuadPositions.put(position).position(0);
65
    mQuadTexture   = ByteBuffer.allocateDirect(TEX_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
66
    mQuadTexture.put(textureNor).position(0);
67
    mQuadTextureInv= ByteBuffer.allocateDirect(TEX_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
68
    mQuadTextureInv.put(textureInv).position(0);
69
    }
70

    
71
  private static class Source
72
    {
73
    private String mName, mVertexShader, mFragmentShader;
74

    
75
    Source(String name, String vertex, String fragment)
76
      {
77
      mName           = name;
78
      mVertexShader   = vertex;
79
      mFragmentShader = fragment;
80
      }
81
    }
82

    
83
  static ArrayList<DistortedProgram> mPrograms = new ArrayList<>();
84
  private static ArrayList<Source> mSources = new ArrayList<>();
85
  private static int mNumSources = 0;
86

    
87
  private static class Job
88
    {
89
    int type;
90
    int level;
91

    
92
    Job(int t, int l)
93
      {
94
      type = t;
95
      level= l;
96
      }
97
    }
98

    
99
  private ArrayList<Job> mJobs = new ArrayList<>();
100
  private int mQualityLevel;
101

    
102
  float mQualityScale;
103

    
104
///////////////////////////////////////////////////////////////////////////////////////////////////
105

    
106
  static int register(final String name, final String vertexShader, final String fragmentShader)
107
    {
108
    mSources.add(new Source(name,vertexShader,fragmentShader));
109

    
110
    return mNumSources++;
111
    }
112

    
113
///////////////////////////////////////////////////////////////////////////////////////////////////
114
/**
115
 * Only for use by the library itself.
116
 *
117
 * @y.exclude
118
 */
119
  public static void createPrograms(int GLSL)
120
    {
121
    Source source;
122
    int len = mSources.size();
123

    
124
    String version = "#version "+GLSL+" es\n";
125

    
126
    for(int i=0; i<len; i++)
127
      {
128
      source = mSources.remove(0);
129

    
130
      try
131
        {
132
        mPrograms.add (new DistortedProgram(version+source.mVertexShader,version+source.mFragmentShader));
133
        }
134
      catch(Exception e)
135
        {
136
        android.util.Log.e("Effects", "exception trying to compile "+source.mName+" program: "+e.getMessage());
137
        throw new RuntimeException(e.getMessage());
138
        }
139
      }
140
    }
141

    
142
///////////////////////////////////////////////////////////////////////////////////////////////////
143
/**
144
 * Only for use by the library itself.
145
 *
146
 * @y.exclude
147
 */
148
  public abstract int apply(float[] uniforms, int index, DistortedFramebuffer buffer);
149

    
150
///////////////////////////////////////////////////////////////////////////////////////////////////
151
  /**
152
   * Only for use by the library itself.
153
   *
154
   * @y.exclude
155
   */
156
  public abstract boolean getRender();
157

    
158
///////////////////////////////////////////////////////////////////////////////////////////////////
159
  /**
160
   * Only for use by the library itself.
161
   *
162
   * @y.exclude
163
   */
164
  public int getQuality()
165
    {
166
    return mQualityLevel;
167
    }
168

    
169
///////////////////////////////////////////////////////////////////////////////////////////////////
170
/**
171
 * Only for use by the library itself.
172
 *
173
 * @y.exclude
174
 */
175
  public void addQueue(EffectQueue queue)
176
    {
177
    // NO OP
178
    }
179

    
180
///////////////////////////////////////////////////////////////////////////////////////////////////
181
/**
182
 * Only for use by the library itself.
183
 *
184
 * @y.exclude
185
 */
186
  public void remQueue(EffectQueue queue)
187
    {
188
    // NO OP
189
    }
190

    
191
///////////////////////////////////////////////////////////////////////////////////////////////////
192
/**
193
 * This is not really part of the public API. Has to be public only because it is a part of the
194
 * DistortedSlave interface, which should really be a class that we extend here instead but
195
 * Java has no multiple inheritance.
196
 *
197
 * @y.exclude
198
 */
199
  public void doWork()
200
    {
201
    int num = mJobs.size();
202
    Job job;
203

    
204
    for(int i=0; i<num; i++)
205
      {
206
      job = mJobs.remove(0);
207

    
208
      switch(job.type)
209
        {
210
        case MIPMAP: int level = job.level;
211
                     mQualityLevel = level;
212
                     mQualityScale = 1.0f;
213
                     for(int j=0; j<level; j++) mQualityScale*= EffectQuality.MULTIPLIER;
214
                     break;
215
        }
216
      }
217
    }
218

    
219
///////////////////////////////////////////////////////////////////////////////////////////////////
220

    
221
  static void destroyStatics()
222
    {
223
    mPrograms.clear();
224
    mSources.clear();
225
    mNumSources = 0;
226

    
227
    Method method;
228

    
229
    for(EffectName name: EffectName.values())
230
      {
231
      if( name.getType() == EffectType.POSTPROCESS )
232
        {
233
        Class<? extends Effect> cls = name.getEffectClass();
234

    
235
        try
236
          {
237
          method = cls.getDeclaredMethod("destroyStatics");  // destroyStatics not public, thus getDeclaredMethod
238
          }
239
        catch(NoSuchMethodException ex)
240
          {
241
          android.util.Log.e("postprocess", cls.getSimpleName()+": exception getting method: "+ex.getMessage());
242
          method = null;
243
          }
244

    
245
        try
246
          {
247
          if( method!=null ) method.invoke(null);
248
          }
249
        catch(Exception ex)
250
          {
251
          android.util.Log.e("postprocess", "exception invoking method: "+ex.getMessage());
252
          }
253
        }
254
      }
255
    }
256

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

    
259
  PostprocessEffect(EffectName name)
260
    {
261
    super(name);
262

    
263
    mQualityLevel = 0;
264
    mQualityScale = 1.0f;
265
    }
266

    
267
///////////////////////////////////////////////////////////////////////////////////////////////////
268
// PUBLIC API
269
///////////////////////////////////////////////////////////////////////////////////////////////////
270
/**
271
 * The higher the quality, the better the effect will look like and the slower it will be.
272
 * <p>
273
 * This works by rendering into smaller and smaller intermediate buffers. Each step renders into a
274
 * buffer that's half the size of the previous one.
275
 * <p>
276
 * We cannot this during mid-render - thus, give it to the Master to assign us back this job on the
277
 * next render.
278
 */
279
  public void setQuality(EffectQuality quality)
280
    {
281
    mJobs.add(new Job(MIPMAP,quality.getLevel()));
282
    InternalMaster.newSlave(this);
283
    }
284
  }
(17-17/32)