Project

General

Profile

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

examples / src / main / java / org / distorted / examples / effectqueue / EffectQueueRenderer.java @ e4330c89

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.examples.effectqueue;
21

    
22
import javax.microedition.khronos.egl.EGLConfig;
23
import javax.microedition.khronos.opengles.GL10;
24

    
25
import android.graphics.Bitmap;
26
import android.graphics.Canvas;
27
import android.graphics.Paint;
28
import android.graphics.Paint.Style;
29
import android.opengl.GLSurfaceView;
30

    
31
import org.distorted.library.effect.EffectName;
32
import org.distorted.library.effect.MatrixEffectScale;
33
import org.distorted.library.main.DistortedEffects;
34
import org.distorted.library.main.DistortedScreen;
35
import org.distorted.library.main.MeshFlat;
36
import org.distorted.library.main.DistortedTexture;
37
import org.distorted.library.main.Distorted;
38
import org.distorted.library.message.EffectListener;
39
import org.distorted.library.message.EffectMessage;
40
import org.distorted.library.type.Static3D;
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43

    
44
class EffectQueueRenderer implements GLSurfaceView.Renderer, EffectListener
45
  {  
46
  private static final int NUMLINES =  10;
47
  final int BWID = 300;
48
  final int BHEI = 400;
49
   
50
  private EffectQueueSurfaceView mView;
51
  private Paint mPaint;
52
  private int texWidth, texHeight;
53
  private Static3D mScale;
54

    
55
  private DistortedTexture mTexture;
56
  private MeshFlat mMesh;
57
  private DistortedEffects mEffects;
58
  private DistortedScreen mScreen;
59

    
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61

    
62
  EffectQueueRenderer(EffectQueueSurfaceView v)
63
    {    
64
    mPaint = new Paint();
65
    mPaint.setAntiAlias(true);
66
    mPaint.setFakeBoldText(true);
67
    mPaint.setStyle(Style.FILL);
68
      
69
    mView = v;
70
      
71
    texWidth = BWID;
72
    texHeight= BHEI;
73
    mScale = new Static3D(1,1,1);
74
    MatrixEffectScale scaleEffect = new MatrixEffectScale(mScale);
75

    
76
    mMesh = new MeshFlat(80,80*texHeight/texWidth);
77
    mTexture = new DistortedTexture(texWidth,texHeight);
78
    mEffects = new DistortedEffects();
79
    mEffects.apply(scaleEffect);
80
    mEffects.registerForMessages(this);
81

    
82
    mScreen = new DistortedScreen();
83
    }
84

    
85
///////////////////////////////////////////////////////////////////////////////////////////////////
86

    
87
  DistortedEffects getEffects()
88
    {
89
    return mEffects;
90
    }
91

    
92
///////////////////////////////////////////////////////////////////////////////////////////////////
93

    
94
  public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
95
    {
96
    Bitmap bitmap = Bitmap.createBitmap(texWidth,texHeight, Bitmap.Config.ARGB_8888);
97
    Canvas canvas = new Canvas(bitmap);
98

    
99
    mPaint.setColor(0xff008800);
100
    canvas.drawRect(0, 0, texWidth, texHeight, mPaint);
101
    mPaint.setColor(0xffffffff);
102

    
103
    for(int i=0; i<=NUMLINES ; i++ )
104
      {
105
      canvas.drawRect(texWidth*i/NUMLINES - 1,                       0,  texWidth*i/NUMLINES + 1,  texHeight               , mPaint);
106
      canvas.drawRect(                      0, texHeight*i/NUMLINES -1,  texWidth               ,  texHeight*i/NUMLINES + 1, mPaint);
107
      }
108
    mTexture.setTexture(bitmap);
109

    
110
    mScreen.detachAll();
111
    mScreen.attach(mTexture,mEffects,mMesh);
112

    
113
    DistortedEffects.enableEffect(EffectName.DISTORT);
114
    DistortedEffects.enableEffect(EffectName.SINK);
115
    DistortedEffects.enableEffect(EffectName.SMOOTH_ALPHA);
116
    DistortedEffects.enableEffect(EffectName.SATURATION);
117
    DistortedEffects.enableEffect(EffectName.SMOOTH_CHROMA);
118

    
119
    try
120
      {
121
      Distorted.onCreate(mView.getContext());
122
      }
123
    catch(Exception ex)
124
      {
125
      android.util.Log.e("EffectQueue", ex.getMessage() );
126
      }
127
    }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130

    
131
  public void onSurfaceChanged(GL10 glUnused, int width, int height)
132
    {
133
    mScale.set((float)width/texWidth,(float)height/texHeight,1);
134
    mScreen.resize(width,height);
135
    mView.setScreenSize(width,height);
136
    }
137
   
138
///////////////////////////////////////////////////////////////////////////////////////////////////
139
   
140
  public void onDrawFrame(GL10 glUnused)
141
    {   
142
    mScreen.render( System.currentTimeMillis() );
143
    }
144

    
145
///////////////////////////////////////////////////////////////////////////////////////////////////
146
// the library sending messages to us. This is running on a library 'MessageSender' thread.
147

    
148
  public void effectMessage(final EffectMessage em, final long effectID, final long objectID)
149
    {
150
    EffectQueueActivity act = (EffectQueueActivity)mView.getContext();
151

    
152
    switch(em)
153
      {
154
      case EFFECT_REMOVED : act.effectRemoved(effectID) ; break;
155
      case EFFECT_FINISHED: act.effectFinished(effectID); break;
156
      default             : break;
157
      }
158
    }
159
  }
(2-2/3)