Project

General

Profile

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

library / src / main / java / org / distorted / library / MeshObject.java @ 226144d0

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

    
22
import android.opengl.GLES30;
23

    
24
import java.nio.FloatBuffer;
25

    
26
///////////////////////////////////////////////////////////////////////////////////////////////////
27
/**
28
 * Abstract class which represents a Mesh, ie 3 arrays of Vertex attributes: 1) positions
29
 * 2) normals 3) texture coordinates.
30
 * <p>
31
 * If you want to render to a particular shape, extend from here, construct the three FloatBuffers and
32
 * provide correct dataLength, i.e. the number of vertices.
33
 */
34
public abstract class MeshObject extends DistortedObject
35
   {
36
   static final int BYTES_PER_FLOAT   = 4; //
37
   static final int POSITION_DATA_SIZE= 3; // Size of the position data in elements
38
   static final int NORMAL_DATA_SIZE  = 3; // Size of the normal data in elements.
39
   static final int TEX_DATA_SIZE     = 2; // Size of the texture coordinate data in elements.
40

    
41
   int dataLength;
42
   FloatBuffer mMeshPositions, mMeshNormals, mMeshTexture;
43
   int[] mPosVBO = new int[1];
44
   int[] mNorVBO = new int[1];
45
   int[] mTexVBO = new int[1];
46

    
47
   final float zFactor; // strange workaround for the fact that we need to somehow store the 'depth'
48
                        // of the Mesh. Used in DistortedEffects. See DistortedTexture.getDepth().
49

    
50
///////////////////////////////////////////////////////////////////////////////////////////////////
51

    
52
   MeshObject(float factor)
53
     {
54
     super(DistortedObject.NOT_CREATED_YET,DistortedObject.TYPE_USER);
55

    
56
     zFactor = factor;
57
     recreate();
58
     }
59

    
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61
// must be called from a thread holding OpenGL Context
62
//
63
// Do NOT release mMeshPositions etc as we will need them when we need to re-create the buffers after
64
// a loss of OpenGL context!
65

    
66
   void create()
67
     {
68
     if( mPosVBO[0]<0 )
69
       {
70
       GLES30.glGenBuffers(1, mPosVBO, 0);
71
       GLES30.glBindBuffer(GLES30.GL_ARRAY_BUFFER, mPosVBO[0]);
72
       GLES30.glBufferData(GLES30.GL_ARRAY_BUFFER, dataLength*POSITION_DATA_SIZE*BYTES_PER_FLOAT, mMeshPositions, GLES30.GL_STATIC_READ);
73
       }
74
     if( mNorVBO[0]<0 )
75
       {
76
       GLES30.glGenBuffers(1, mNorVBO, 0);
77
       GLES30.glBindBuffer(GLES30.GL_ARRAY_BUFFER, mNorVBO[0]);
78
       GLES30.glBufferData(GLES30.GL_ARRAY_BUFFER, dataLength*  NORMAL_DATA_SIZE*BYTES_PER_FLOAT, mMeshNormals  , GLES30.GL_STATIC_READ);
79
       }
80
     if( mTexVBO[0]<0 )
81
       {
82
       GLES30.glGenBuffers(1, mTexVBO, 0);
83
       GLES30.glBindBuffer(GLES30.GL_ARRAY_BUFFER, mTexVBO[0]);
84
       GLES30.glBufferData(GLES30.GL_ARRAY_BUFFER, dataLength*    TEX_DATA_SIZE*BYTES_PER_FLOAT, mMeshTexture  , GLES30.GL_STATIC_READ);
85
       }
86

    
87
     GLES30.glBindBuffer(GLES30.GL_ARRAY_BUFFER, 0);
88
     }
89

    
90
///////////////////////////////////////////////////////////////////////////////////////////////////
91
// must be called from a thread holding OpenGL Context
92

    
93
   void delete()
94
     {
95
     if( mPosVBO[0]>=0 )
96
       {
97
       GLES30.glDeleteBuffers(1, mPosVBO, 0);
98
       mPosVBO[0] = -1;
99
       }
100
     if( mNorVBO[0]>=0 )
101
       {
102
       GLES30.glDeleteBuffers(1, mNorVBO, 0);
103
       mNorVBO[0] = -1;
104
       }
105
     if( mTexVBO[0]>=0 )
106
       {
107
       GLES30.glDeleteBuffers(1, mTexVBO, 0);
108
       mTexVBO[0] = -1;
109
       }
110
     }
111

    
112
///////////////////////////////////////////////////////////////////////////////////////////////////
113

    
114
   void recreate()
115
     {
116
     mPosVBO[0] = -1;
117
     mNorVBO[0] = -1;
118
     mTexVBO[0] = -1;
119
     }
120

    
121
///////////////////////////////////////////////////////////////////////////////////////////////////
122
// debugging only
123

    
124
   String printDetails()
125
     {
126
     return getClass().getSimpleName()+" vertices:"+dataLength;
127
     }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130
/**
131
 * Get the minimal set of Vertices which have the same convex hull as the whole set.
132
 * <p>
133
 * In case of Flat Meshes, the set is obviously just the 4 corners. In case of the Cubes Mesh,
134
 * it is a subset of the set of each rightmost- and leftmost- corners in each row.
135
 * <p>
136
 * This is used to be able to quickly compute, in window coordinates, the Mesh'es bounding rectangle.
137
 */
138
   abstract float[] getBoundingVertices();
139
   }
140

    
(26-26/26)