Project

General

Profile

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

examples / src / main / java / org / distorted / examples / dynamic / DynamicRenderer.java @ 392e16fd

1 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 f988589e Leszek Koltunski
package org.distorted.examples.dynamic;
21 427ab7bf Leszek Koltunski
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.GLES20;
30
import android.opengl.GLSurfaceView;
31
32 392e16fd Leszek Koltunski
import org.distorted.library.DistortedFramebuffer;
33 10b7e588 Leszek Koltunski
import org.distorted.library.GridFlat;
34 40eef4b9 Leszek Koltunski
import org.distorted.library.DistortedEffectQueues;
35
import org.distorted.library.DistortedTexture;
36 5068fa06 Leszek Koltunski
import org.distorted.library.Distorted;
37 427ab7bf Leszek Koltunski
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39
40 97dadfe5 Leszek Koltunski
class DynamicRenderer implements GLSurfaceView.Renderer
41 427ab7bf Leszek Koltunski
   {  
42 fe3c72ce Leszek Koltunski
   private DynamicSurfaceView mView;
43 40eef4b9 Leszek Koltunski
   private DistortedTexture mTexture;
44 392e16fd Leszek Koltunski
   private DistortedEffectQueues mEffects;
45
   private DistortedFramebuffer mScreen;
46 10b7e588 Leszek Koltunski
   private GridFlat mGrid;
47 427ab7bf Leszek Koltunski
   private Canvas mCanvas;
48
   private Bitmap mBitmap;
49
   private Paint mPaint;
50 97dadfe5 Leszek Koltunski
51
   static int texW, texH;
52 427ab7bf Leszek Koltunski
    
53
///////////////////////////////////////////////////////////////////////////////////////////////////
54
55 fe3c72ce Leszek Koltunski
   DynamicRenderer(DynamicSurfaceView v)
56 427ab7bf Leszek Koltunski
     {    
57
     mPaint = new Paint();
58
     mPaint.setAntiAlias(true);
59
     mPaint.setFakeBoldText(true);
60
     mPaint.setColor(0xff447da7);
61
     mPaint.setStyle(Style.FILL);
62
      
63 7451c98a Leszek Koltunski
     mView   = v;
64 40eef4b9 Leszek Koltunski
     mGrid   = new GridFlat(1,1);
65 392e16fd Leszek Koltunski
     mEffects = new DistortedEffectQueues();
66
     mScreen = new DistortedFramebuffer(0);
67 427ab7bf Leszek Koltunski
     }
68
69
///////////////////////////////////////////////////////////////////////////////////////////////////
70
   
71
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
72
     {   
73
     try
74 3c8b1903 Leszek Koltunski
       {
75
       Distorted.onSurfaceCreated(mView.getContext());
76
       }
77
     catch(Exception ex)
78
       {
79
       android.util.Log.e("Renderer", ex.getMessage() );
80
       }
81 427ab7bf Leszek Koltunski
     }
82
83
///////////////////////////////////////////////////////////////////////////////////////////////////
84
85
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
86
     {
87 97dadfe5 Leszek Koltunski
     texW = width;
88
     texH = height;
89
90 7451c98a Leszek Koltunski
     mTexture= new DistortedTexture(texW,texH);
91 40eef4b9 Leszek Koltunski
     mBitmap = Bitmap.createBitmap(texW,texH, Bitmap.Config.ARGB_8888);
92
     mCanvas = new Canvas(mBitmap);
93 97dadfe5 Leszek Koltunski
94 392e16fd Leszek Koltunski
     mScreen.resize(texW,texH);
95 fe3c72ce Leszek Koltunski
     mView.onSurfaceChanged(texW,texH);
96 427ab7bf Leszek Koltunski
     }
97
   
98
///////////////////////////////////////////////////////////////////////////////////////////////////
99
   
100
   public void onDrawFrame(GL10 glUnused)
101
     {   
102
     GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT | GLES20.GL_DEPTH_BUFFER_BIT);               
103
       
104
     long time = System.currentTimeMillis();
105
      
106 97dadfe5 Leszek Koltunski
     mCanvas.drawRect(0, 0, texW, texH, mPaint);
107 fe3c72ce Leszek Koltunski
     mView.drawCurve(mCanvas,time);
108 40eef4b9 Leszek Koltunski
     mTexture.setTexture(mBitmap);
109 392e16fd Leszek Koltunski
     mEffects.draw(time,mTexture,mGrid,mScreen);
110 427ab7bf Leszek Koltunski
     }
111
112
///////////////////////////////////////////////////////////////////////////////////////////////////
113
  }