Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / PostprocessEffect.java @ d58407a8

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

    
154
///////////////////////////////////////////////////////////////////////////////////////////////////
155
  /**
156
   * Only for use by the library itself.
157
   *
158
   * @y.exclude
159
   */
160
  public abstract boolean getRenderDirectly();
161

    
162
///////////////////////////////////////////////////////////////////////////////////////////////////
163
  /**
164
   * Only for use by the library itself.
165
   *
166
   * @y.exclude
167
   */
168
  public int getQuality()
169
    {
170
    return mQualityLevel;
171
    }
172

    
173
///////////////////////////////////////////////////////////////////////////////////////////////////
174
/**
175
 * Only for use by the library itself.
176
 *
177
 * @y.exclude
178
 */
179
  public void addQueue(EffectQueue queue)
180
    {
181
    // NO OP
182
    }
183

    
184
///////////////////////////////////////////////////////////////////////////////////////////////////
185
/**
186
 * Only for use by the library itself.
187
 *
188
 * @y.exclude
189
 */
190
  public void remQueue(EffectQueue queue)
191
    {
192
    // NO OP
193
    }
194

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

    
208
    for(int i=0; i<num; i++)
209
      {
210
      job = mJobs.remove(0);
211

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

    
223
///////////////////////////////////////////////////////////////////////////////////////////////////
224

    
225
  static void destroyStatics()
226
    {
227
    mPrograms.clear();
228
    mSources.clear();
229
    mNumSources = 0;
230

    
231
    Method method;
232

    
233
    for(EffectName name: EffectName.values())
234
      {
235
      if( name.getType() == EffectType.POSTPROCESS )
236
        {
237
        Class<? extends Effect> cls = name.getEffectClass();
238

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

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

    
261
///////////////////////////////////////////////////////////////////////////////////////////////////
262

    
263
  PostprocessEffect(EffectName name)
264
    {
265
    super(name);
266

    
267
    mQualityLevel = 0;
268
    mQualityScale = 1.0f;
269
    }
270

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