Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / PostprocessEffect.java @ 46dc4091

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski  leszek@koltunski.pl                                          //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// This library is free software; you can redistribute it and/or                                 //
7
// modify it under the terms of the GNU Lesser General Public                                    //
8
// License as published by the Free Software Foundation; either                                  //
9
// version 2.1 of the License, or (at your option) any later version.                            //
10
//                                                                                               //
11
// This library 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 GNU                             //
14
// Lesser General Public License for more details.                                               //
15
//                                                                                               //
16
// You should have received a copy of the GNU Lesser General Public                              //
17
// License along with this library; if not, write to the Free Software                           //
18
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA                //
19
///////////////////////////////////////////////////////////////////////////////////////////////////
20

    
21
package org.distorted.library.effect;
22

    
23
import org.distorted.library.effectqueue.EffectQueue;
24
import org.distorted.library.main.DistortedFramebuffer;
25
import org.distorted.library.main.DistortedLibrary;
26
import org.distorted.library.main.InternalMaster;
27
import org.distorted.library.program.DistortedProgram;
28

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

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

    
51
  static final int POS_DATA_SIZE= 2;
52
  static final int TEX_DATA_SIZE= 2;
53

    
54
  static final FloatBuffer mQuadPositions, mQuadTexture, mQuadTextureInv;
55

    
56
  static
57
    {
58
    int dataLength      = 4;
59
    int bytes_per_float = 4;
60

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

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

    
73
  private static class Source
74
    {
75
    private final String mName, mVertexShader, mFragmentShader;
76

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

    
85
  static ArrayList<DistortedProgram> mPrograms = new ArrayList<>();
86
  private final static ArrayList<Source> mSources = new ArrayList<>();
87
  private static int mNumSources = 0;
88

    
89
  private static class Job
90
    {
91
    int type;
92
    int level;
93

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

    
101
  private final ArrayList<Job> mJobs = new ArrayList<>();
102
  private int mQualityLevel;
103
  private boolean mUseHaloDepth;
104

    
105
  float mQualityScale;
106

    
107
///////////////////////////////////////////////////////////////////////////////////////////////////
108

    
109
  static int register(final String name, final String vertexShader, final String fragmentShader)
110
    {
111
    mSources.add(new Source(name,vertexShader,fragmentShader));
112

    
113
    return mNumSources++;
114
    }
115

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

    
127
    String version = "#version "+GLSL+" es\n";
128

    
129
    for(int i=0; i<len; i++)
130
      {
131
      source = mSources.remove(0);
132

    
133
      try
134
        {
135
        mPrograms.add (new DistortedProgram(version+source.mVertexShader,version+source.mFragmentShader));
136
        }
137
      catch(Exception e)
138
        {
139
        DistortedLibrary.logMessage("PostproocessEffect: exception trying to compile "+source.mName+" program: "+e.getMessage());
140
        throw new RuntimeException(e.getMessage());
141
        }
142
      }
143
    }
144

    
145
///////////////////////////////////////////////////////////////////////////////////////////////////
146
/**
147
 * At this moment the 'buffer' contains a) preprocessed object b) real object rendered 'on top' of
148
 * the preprocessed one.
149
 * Postprocess buffer. What this means exactly depends on the effect -
150
 *
151
 * Only for use by the library itself.
152
 *
153
 * @y.exclude
154
 */
155
  public abstract int postprocess(float[] uniforms, int index, DistortedFramebuffer buffer);
156

    
157
///////////////////////////////////////////////////////////////////////////////////////////////////
158
  /**
159
   * Do we render the object directly to the final surface, and only postprocess and then blit its
160
   * 'halo', or do we render the object along with its halo to the intermediate framebuffer and
161
   * postprocess it as well?
162
   *
163
   * Only for use by the library itself.
164
   *
165
   * @y.exclude
166
   */
167
  public abstract boolean getRenderDirectly();
168

    
169
///////////////////////////////////////////////////////////////////////////////////////////////////
170
  /**
171
   * Only for use by the library itself.
172
   *
173
   * @y.exclude
174
   */
175
  public int getQuality()
176
    {
177
    return mQualityLevel;
178
    }
179

    
180
///////////////////////////////////////////////////////////////////////////////////////////////////
181
  /**
182
   * Only for use by the library itself.
183
   *
184
   * @y.exclude
185
   */
186
  public boolean getHaloDepth()
187
    {
188
    return mUseHaloDepth;
189
    }
190

    
191
///////////////////////////////////////////////////////////////////////////////////////////////////
192
/**
193
 * Only for use by the library itself.
194
 *
195
 * @y.exclude
196
 */
197
  public void addQueue(EffectQueue queue)
198
    {
199
    // NO OP
200
    }
201

    
202
///////////////////////////////////////////////////////////////////////////////////////////////////
203
/**
204
 * Only for use by the library itself.
205
 *
206
 * @y.exclude
207
 */
208
  public void remQueue(EffectQueue queue)
209
    {
210
    // NO OP
211
    }
212

    
213
///////////////////////////////////////////////////////////////////////////////////////////////////
214
/**
215
 * This is not really part of the public API. Has to be public only because it is a part of the
216
 * DistortedSlave interface, which should really be a class that we extend here instead but
217
 * Java has no multiple inheritance.
218
 *
219
 * @y.exclude
220
 */
221
  public void doWork()
222
    {
223
    int num = mJobs.size();
224
    Job job;
225

    
226
    for(int i=0; i<num; i++)
227
      {
228
      job = mJobs.remove(0);
229

    
230
      if( job.type==MIPMAP )
231
        {
232
        int level = job.level;
233
        mQualityLevel = level;
234
        mQualityScale = EffectQuality.getMipmap(level);
235
        break;
236
        }
237
      }
238
    }
239

    
240
///////////////////////////////////////////////////////////////////////////////////////////////////
241

    
242
  static void destroyStatics()
243
    {
244
    mPrograms.clear();
245
    mSources.clear();
246
    mNumSources = 0;
247

    
248
    Method method;
249

    
250
    for(EffectName name: EffectName.values())
251
      {
252
      if( name.getType() == EffectType.POSTPROCESS )
253
        {
254
        Class<? extends Effect> cls = name.getEffectClass();
255

    
256
        try
257
          {
258
          method = cls.getDeclaredMethod("destroyStatics");  // destroyStatics not public, thus getDeclaredMethod
259
          }
260
        catch(NoSuchMethodException ex)
261
          {
262
          DistortedLibrary.logMessage("PostprocessEffect: "+cls.getSimpleName()+": exception getting method: "+ex.getMessage());
263
          method = null;
264
          }
265

    
266
        try
267
          {
268
          if( method!=null ) method.invoke(null);
269
          }
270
        catch(Exception ex)
271
          {
272
          DistortedLibrary.logMessage("PostprocessEffect: exception invoking method: "+ex.getMessage());
273
          }
274
        }
275
      }
276
    }
277

    
278
///////////////////////////////////////////////////////////////////////////////////////////////////
279

    
280
  PostprocessEffect(EffectName name)
281
    {
282
    super(name);
283

    
284
    mQualityLevel = 0;
285
    mQualityScale = 1.0f;
286
    mUseHaloDepth = true;
287
    }
288

    
289
///////////////////////////////////////////////////////////////////////////////////////////////////
290
// PUBLIC API
291
///////////////////////////////////////////////////////////////////////////////////////////////////
292
/**
293
 * The higher the quality, the better the effect will look like and the slower it will be.
294
 * <p>
295
 * This works by rendering into smaller and smaller intermediate buffers. Each step renders into a
296
 * buffer that's half the size of the previous one.
297
 * <p>
298
 * We cannot this during mid-render - thus, give it to the Master to assign us back this job on the
299
 * next render.
300
 */
301
  public void setQuality(EffectQuality quality)
302
    {
303
    mJobs.add(new Job(MIPMAP,quality.getLevel()));
304
    InternalMaster.newSlave(this);
305
    }
306

    
307
///////////////////////////////////////////////////////////////////////////////////////////////////
308
/**
309
 * When preprocessing - so drawning the 'halo' - do we also want to write the depth buffer?
310
 * If yes, the halo would cover the whole object; if no, it would be just around it (and possibly
311
 * could be covered by other similarly postprocessed objects nearby)
312
 *
313
 * @param depth should the halo around the object cover it or not?
314
 */
315
  public void setHaloDepth(boolean depth)
316
    {
317
    mUseHaloDepth = depth;
318
    }
319
  }
(17-17/34)