Project

General

Profile

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

examples / src / main / java / org / distorted / examples / olimpic / OlimpicRenderer.java @ 16b22aab

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.olimpic;
21

    
22
import java.io.IOException;
23
import java.io.InputStream;
24

    
25
import javax.microedition.khronos.egl.EGLConfig;
26
import javax.microedition.khronos.opengles.GL10;
27

    
28
import org.distorted.examples.R;
29

    
30
import org.distorted.library.effect.FragmentEffectChroma;
31
import org.distorted.library.effect.MatrixEffectMove;
32
import org.distorted.library.effect.MatrixEffectRotate;
33
import org.distorted.library.effect.MatrixEffectScale;
34
import org.distorted.library.main.DistortedEffects;
35
import org.distorted.library.main.DistortedScreen;
36
import org.distorted.library.main.DistortedNode;
37
import org.distorted.library.mesh.MeshFlat;
38
import org.distorted.library.type.Dynamic1D;
39
import org.distorted.library.type.Static3D;
40
import org.distorted.library.type.Static1D;
41
import org.distorted.library.main.Distorted;
42
import org.distorted.library.main.DistortedTexture;
43

    
44
import android.graphics.Bitmap;
45
import android.graphics.BitmapFactory;
46
import android.opengl.GLSurfaceView;
47

    
48
///////////////////////////////////////////////////////////////////////////////////////////////////
49

    
50
class OlimpicRenderer implements GLSurfaceView.Renderer 
51
{
52
   private static final int LEAF_SIZE = 100;
53
   private static final int NUM_CIRCLES = 5;
54
   static final int NUM_LEAVES  = 8;
55
   
56
   private GLSurfaceView mView;
57
   private DistortedNode mRoot;
58
   private DistortedTexture mLeaf;
59
   private DistortedScreen mScreen;
60
   private MeshFlat mMesh;
61
   private int mScreenW, mScreenH;
62
   private int mPrevRendered, mCurrRendered;
63
   private Static3D mScale;
64

    
65
   private DistortedNode[] mCircleNode = new DistortedNode[NUM_CIRCLES];
66
   private DistortedEffects[] mEffects = new DistortedEffects[NUM_LEAVES];
67

    
68
///////////////////////////////////////////////////////////////////////////////////////////////////
69

    
70
   void pressed(int color, int number, boolean checked)
71
     {
72
     if( color>=0 && color<NUM_CIRCLES )
73
       {
74
       if( number==0 )
75
         {
76
         if( checked ) mRoot.attach(mCircleNode[color]);
77
         else          mRoot.detach(mCircleNode[color]);
78
         }
79
       else if( number>0 && number<=NUM_LEAVES )
80
         {
81
         if( checked ) mCircleNode[color].attach( mLeaf, mEffects[number-1], mMesh);
82
         else          mCircleNode[color].detach(mEffects[number-1]);
83
         }
84
       }
85
     }
86

    
87
///////////////////////////////////////////////////////////////////////////////////////////////////
88

    
89
   OlimpicRenderer(GLSurfaceView v)
90
      {     
91
      mView = v;
92

    
93
      mPrevRendered = -1;
94
      mCurrRendered = -1;
95

    
96
      mLeaf = new DistortedTexture(LEAF_SIZE,LEAF_SIZE);
97
      DistortedTexture surface = new DistortedTexture(3*LEAF_SIZE,3*LEAF_SIZE);
98
      mMesh = new MeshFlat(1,1);
99
      mScale= new Static3D(1,1,1);
100

    
101
      DistortedEffects effects = new DistortedEffects();
102
      effects.apply(new MatrixEffectScale(mScale));
103

    
104
      mScreenW = 9*LEAF_SIZE;
105
      mScreenH = 9*LEAF_SIZE;
106
      DistortedTexture rootTexture = new DistortedTexture(mScreenW,mScreenH);
107
      mRoot = new DistortedNode(rootTexture, effects, mMesh);
108
     
109
      Dynamic1D rot = new Dynamic1D(5000,0.0f);
110
      rot.setMode(Dynamic1D.MODE_JUMP);
111
      rot.add(new Static1D(  0));
112
      rot.add(new Static1D(360));
113

    
114
      int[] colors    = new int[] {0,0,1,  0,0,0,  1,0,0,  1,1,0,  0,1,0}; // blue, black, red, yellow, green  
115
      int[] positions = new int[] {-3*LEAF_SIZE  ,   LEAF_SIZE  ,
116
                                              0  ,   LEAF_SIZE  ,
117
                                    3*LEAF_SIZE  ,   LEAF_SIZE  ,
118
                                   -3*LEAF_SIZE/2,-3*LEAF_SIZE/2,
119
                                    3*LEAF_SIZE/2,-3*LEAF_SIZE/2 };
120
      
121
      Static3D center = new Static3D(0,0,0);
122
      Static3D axis   = new Static3D(0,0,1);
123
      Static3D moveVector = new Static3D(-LEAF_SIZE,0,0);
124

    
125
      for(int j=0; j<NUM_LEAVES; j++)
126
        {
127
        mEffects[j] = new DistortedEffects();
128
        mEffects[j].apply( new MatrixEffectRotate(new Static1D(j*(360/NUM_LEAVES)), axis, center) );
129
        mEffects[j].apply(new MatrixEffectMove(moveVector));
130
        }
131

    
132
      for(int i=0; i<NUM_CIRCLES; i++)
133
        {
134
        effects = new DistortedEffects();
135
        effects.apply( new MatrixEffectMove(new Static3D(positions[2*i], positions[2*i+1], 0)) );
136
        effects.apply( new MatrixEffectRotate(rot, axis, center) );
137
        effects.apply( new FragmentEffectChroma(new Static1D(0.5f), new Static3D(colors[3*i],colors[3*i+1], colors[3*i+2])) );
138

    
139
        mCircleNode[i] = new DistortedNode( surface, effects, mMesh);
140
        mRoot.attach(mCircleNode[i]);
141

    
142
        for(int j=0; j<NUM_LEAVES; j++) mCircleNode[i].attach(mLeaf, mEffects[j], mMesh);
143
        }
144

    
145
      mScreen = new DistortedScreen();
146
      mScreen.attach(mRoot);
147
      }
148

    
149
///////////////////////////////////////////////////////////////////////////////////////////////////
150
   
151
   public void onDrawFrame(GL10 glUnused)
152
     {
153
     mCurrRendered = mScreen.render(System.currentTimeMillis());
154

    
155
     if( mCurrRendered!=mPrevRendered )
156
       {
157
       mPrevRendered = mCurrRendered;
158

    
159
       final OlimpicActivity act = (OlimpicActivity)mView.getContext();
160

    
161
       act.runOnUiThread(new Runnable()
162
          {
163
          public void run()
164
            {
165
           act.setText("rendered: "+mCurrRendered+" objects");
166
           }
167
          });
168
       }
169
     }
170

    
171
///////////////////////////////////////////////////////////////////////////////////////////////////
172
    
173
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
174
     {
175
     float horiRatio = (float)width / mScreenW;
176
     float vertRatio = (float)height/ mScreenH;
177
     float factor    = horiRatio > vertRatio ? vertRatio : horiRatio;
178

    
179
     mScale.set(factor,factor,factor);
180
     mScreen.resize(width, height);
181
     }
182

    
183
///////////////////////////////////////////////////////////////////////////////////////////////////
184
    
185
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
186
     {
187
     InputStream is = mView.getContext().getResources().openRawResource(R.raw.leaf);
188
     Bitmap leaf;
189
      
190
     try
191
       {
192
       leaf = BitmapFactory.decodeStream(is);
193
       }
194
     finally
195
       {
196
       try
197
         {
198
         is.close();
199
         }
200
       catch(IOException e) { }
201
       }
202
      
203
     mLeaf.setTexture(leaf);
204

    
205
     FragmentEffectChroma.enable();
206

    
207
     try
208
       {
209
       Distorted.onCreate(mView.getContext());
210
       }
211
     catch(Exception ex)
212
       {
213
       android.util.Log.e("Olympic", ex.getMessage() );
214
       }
215
     }
216
}
(2-2/3)