Project

General

Profile

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

library / src / main / java / org / distorted / library / mesh / MeshBase.java @ 7594a5d2

1 d333eb6b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4 46b572b5 Leszek Koltunski
// This file is part of Distorted.                                                               //
5 d333eb6b Leszek Koltunski
//                                                                                               //
6 46b572b5 Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 d333eb6b Leszek Koltunski
// 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 46b572b5 Leszek Koltunski
// Distorted is distributed in the hope that it will be useful,                                  //
12 d333eb6b Leszek Koltunski
// 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 46b572b5 Leszek Koltunski
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 d333eb6b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 6c00149d Leszek Koltunski
package org.distorted.library.mesh;
21 6a06a912 Leszek Koltunski
22 e6519ac8 Leszek Koltunski
import android.opengl.GLES31;
23 c90aca24 Leszek Koltunski
import android.opengl.Matrix;
24 6c00149d Leszek Koltunski
25 fa8bc998 Leszek Koltunski
import org.distorted.library.effect.MatrixEffect;
26 7602a827 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
27
import org.distorted.library.main.InternalBuffer;
28 da681e7e Leszek Koltunski
import org.distorted.library.program.DistortedProgram;
29 6c00149d Leszek Koltunski
30 da681e7e Leszek Koltunski
import java.nio.ByteBuffer;
31
import java.nio.ByteOrder;
32 6a06a912 Leszek Koltunski
import java.nio.FloatBuffer;
33 c90aca24 Leszek Koltunski
import java.util.ArrayList;
34 6a06a912 Leszek Koltunski
35
///////////////////////////////////////////////////////////////////////////////////////////////////
36 e0b6c593 Leszek Koltunski
/**
37 e5ba319d Leszek Koltunski
 * Abstract class which represents a Mesh, ie an array of vertices (rendered as a TRIANGLE_STRIP).
38 e0b6c593 Leszek Koltunski
 * <p>
39 da681e7e Leszek Koltunski
 * If you want to render to a particular shape, extend from here, construct a float array
40 7a5e538a Leszek Koltunski
 * containing per-vertex attributes, and call back setAttribs().
41 e0b6c593 Leszek Koltunski
 */
42 715e7726 Leszek Koltunski
public abstract class MeshBase
43 6a06a912 Leszek Koltunski
   {
44 227b9bca Leszek Koltunski
   // sizes of attributes of an individual vertex.
45
   private static final int POS_DATA_SIZE= 3; // vertex coordinates: x,y,z
46
   private static final int NOR_DATA_SIZE= 3; // normal vector: x,y,z
47
   private static final int INF_DATA_SIZE= 3; // 'inflate' vector: x,y,z
48 7a5e538a Leszek Koltunski
   private static final int TEX_DATA_SIZE= 2; // texture coordinates: s,t
49 6f2d931d Leszek Koltunski
50
   static final int POS_ATTRIB   = 0;
51
   static final int NOR_ATTRIB   = POS_DATA_SIZE;
52
   static final int INF_ATTRIB   = POS_DATA_SIZE + NOR_DATA_SIZE;
53
   static final int TEX_ATTRIB   = POS_DATA_SIZE + NOR_DATA_SIZE + INF_DATA_SIZE;
54 227b9bca Leszek Koltunski
   static final int VERT_ATTRIBS = POS_DATA_SIZE + NOR_DATA_SIZE + INF_DATA_SIZE + TEX_DATA_SIZE;  // number of attributes of a 'normal' vertex
55
   static final int TRAN_ATTRIBS = POS_DATA_SIZE + POS_DATA_SIZE;                                  // number of attributes of a transform feedback vertex
56 6a06a912 Leszek Koltunski
57 da681e7e Leszek Koltunski
   private static final int BYTES_PER_FLOAT = 4;
58 3ef3364d Leszek Koltunski
59 6f2d931d Leszek Koltunski
   private static final int OFFSET_POS = POS_ATTRIB*BYTES_PER_FLOAT;
60
   private static final int OFFSET_NOR = NOR_ATTRIB*BYTES_PER_FLOAT;
61
   private static final int OFFSET_INF = INF_ATTRIB*BYTES_PER_FLOAT;
62
   private static final int OFFSET_TEX = TEX_ATTRIB*BYTES_PER_FLOAT;
63 227b9bca Leszek Koltunski
   private static final int TRAN_SIZE  = TRAN_ATTRIBS*BYTES_PER_FLOAT;
64
   private static final int VERT_SIZE  = VERT_ATTRIBS*BYTES_PER_FLOAT;
65 a51fe521 Leszek Koltunski
66 fa8bc998 Leszek Koltunski
   private boolean mShowNormals;      // when rendering this mesh, draw normal vectors?
67
   private InternalBuffer mVBO, mTFO; // main vertex buffer and transform feedback buffer
68 da681e7e Leszek Koltunski
   private int mNumVertices;
69 fa8bc998 Leszek Koltunski
   private float[] mVertAttribs;      // packed: PosX,PosY,PosZ, NorX,NorY,NorZ, InfX,InfY,InfZ, TexS,TexT
70 7a5e538a Leszek Koltunski
   private float mInflate;
71 044b5494 Leszek Koltunski
   private float mStretchX, mStretchY, mStretchZ;
72 3ef3364d Leszek Koltunski
73 c90aca24 Leszek Koltunski
   private class Component
74
     {
75
     private int mEndIndex;
76
     private float[] mTextureMap;
77
78
     Component()
79
       {
80
       mTextureMap = new float[8];
81
82 9099e567 Leszek Koltunski
       mTextureMap[ 0] = 0.0f;  // LD_X
83
       mTextureMap[ 1] = 0.0f;  // LD_Y
84
       mTextureMap[ 2] = 0.0f;  // LU_X
85
       mTextureMap[ 3] = 1.0f;  // LU_Y
86
       mTextureMap[ 4] = 1.0f;  // RU_X
87
       mTextureMap[ 5] = 1.0f;  // RU_Y
88
       mTextureMap[ 6] = 1.0f;  // RD_X
89
       mTextureMap[ 7] = 0.0f;  // RD_Y
90 c90aca24 Leszek Koltunski
       }
91
     Component(Component original)
92
       {
93
       mEndIndex = original.mEndIndex;
94
       mTextureMap = new float[8];
95
       System.arraycopy(original.mTextureMap,0,mTextureMap,0,8);
96
       }
97
     }
98
99
   private ArrayList<Component> mComponent;
100
101 6a06a912 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
102 3ef3364d Leszek Koltunski
103 9099e567 Leszek Koltunski
   MeshBase(float sx, float sy, float sz)
104 3ef3364d Leszek Koltunski
     {
105 9099e567 Leszek Koltunski
     mStretchX = sx;
106
     mStretchY = sy;
107
     mStretchZ = sz;
108 044b5494 Leszek Koltunski
109 3fc9327a Leszek Koltunski
     mShowNormals = false;
110 c90aca24 Leszek Koltunski
     mInflate     = 0.0f;
111
     mComponent = new ArrayList<>();
112
     mComponent.add(new Component());
113
114
     mVBO = new InternalBuffer(GLES31.GL_ARRAY_BUFFER             , GLES31.GL_STATIC_READ);
115
     mTFO = new InternalBuffer(GLES31.GL_TRANSFORM_FEEDBACK_BUFFER, GLES31.GL_STATIC_READ);
116
     }
117
118
///////////////////////////////////////////////////////////////////////////////////////////////////
119
// copy constructor
120
121
   MeshBase(MeshBase original)
122
     {
123 044b5494 Leszek Koltunski
     mStretchX = original.mStretchX;
124
     mStretchY = original.mStretchY;
125
     mStretchZ = original.mStretchZ;
126
127 c90aca24 Leszek Koltunski
     mShowNormals = original.mShowNormals;
128
     mInflate     = original.mInflate;
129
130
     int size = original.mComponent.size();
131
     mComponent = new ArrayList<>();
132
     for(int i=0; i<size; i++)
133
       {
134
       Component comp = new Component(original.mComponent.get(i));
135
       mComponent.add(comp);
136
       }
137 42571056 Leszek Koltunski
138 7602a827 Leszek Koltunski
     mVBO = new InternalBuffer(GLES31.GL_ARRAY_BUFFER             , GLES31.GL_STATIC_READ);
139
     mTFO = new InternalBuffer(GLES31.GL_TRANSFORM_FEEDBACK_BUFFER, GLES31.GL_STATIC_READ);
140 c90aca24 Leszek Koltunski
141
     System.arraycopy(original.mVertAttribs,0,mVertAttribs,0,original.mNumVertices*VERT_ATTRIBS);
142
     setAttribs(mVertAttribs);
143 42571056 Leszek Koltunski
     }
144
145
///////////////////////////////////////////////////////////////////////////////////////////////////
146 6c00149d Leszek Koltunski
// when a derived class is done computing its mesh, it has to call this method.
147 42571056 Leszek Koltunski
148 227b9bca Leszek Koltunski
   void setAttribs(float[] vertexAttribs)
149 42571056 Leszek Koltunski
     {
150 227b9bca Leszek Koltunski
     mNumVertices = vertexAttribs.length/VERT_ATTRIBS;
151 fa8bc998 Leszek Koltunski
     mVertAttribs = vertexAttribs;
152 da681e7e Leszek Koltunski
153 c90aca24 Leszek Koltunski
     mComponent.get(0).mEndIndex = mNumVertices;
154
155 fa8bc998 Leszek Koltunski
     FloatBuffer attribs = ByteBuffer.allocateDirect(mNumVertices*VERT_SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
156
     attribs.put(vertexAttribs).position(0);
157 da681e7e Leszek Koltunski
158 fa8bc998 Leszek Koltunski
     mVBO.setData(mNumVertices*VERT_SIZE, attribs);
159
     mTFO.setData(mNumVertices*TRAN_SIZE, null   );
160 42571056 Leszek Koltunski
     }
161
162
///////////////////////////////////////////////////////////////////////////////////////////////////
163 6c00149d Leszek Koltunski
/**
164
 * Not part of public API, do not document (public only because has to be used from the main package)
165
 *
166
 * @y.exclude
167
 */
168 da681e7e Leszek Koltunski
   public int getTFO()
169 42571056 Leszek Koltunski
     {
170 da681e7e Leszek Koltunski
     return mTFO.mIndex[0];
171 42571056 Leszek Koltunski
     }
172
173
///////////////////////////////////////////////////////////////////////////////////////////////////
174 6c00149d Leszek Koltunski
/**
175
 * Not part of public API, do not document (public only because has to be used from the main package)
176
 *
177
 * @y.exclude
178
 */
179 da681e7e Leszek Koltunski
   public int getNumVertices()
180 226144d0 leszek
     {
181 da681e7e Leszek Koltunski
     return mNumVertices;
182 226144d0 leszek
     }
183 42571056 Leszek Koltunski
184 6c00149d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
185 044b5494 Leszek Koltunski
/**
186
 * Sets the stretch parameters. Coordinates of all vertices will be first pre-multiplied by those.
187
 */
188
  public void setStretch(int sx, int sy, int sz)
189
    {
190
    mStretchX = sx;
191
    mStretchY = sy;
192
    mStretchZ = sz;
193
    }
194
195
///////////////////////////////////////////////////////////////////////////////////////////////////
196
/**
197
 * X coordinates of all vertices will be first pre-multiplied by this parameter.
198
 */
199
  public float getStretchX()
200
    {
201
    return mStretchX;
202
    }
203
204
///////////////////////////////////////////////////////////////////////////////////////////////////
205
/**
206
 * Y coordinates of all vertices will be first pre-multiplied by this parameter.
207
 */
208
  public float getStretchY()
209
    {
210
    return mStretchY;
211
    }
212
213
///////////////////////////////////////////////////////////////////////////////////////////////////
214
/**
215
 * Z coordinates of all vertices will be first pre-multiplied by this parameter.
216
 */
217
  public float getStretchZ()
218
    {
219
    return mStretchZ;
220
    }
221
222
///////////////////////////////////////////////////////////////////////////////////////////////////
223 6c00149d Leszek Koltunski
/**
224
 * Not part of public API, do not document (public only because has to be used from the main package)
225
 *
226
 * @y.exclude
227
 */
228 da681e7e Leszek Koltunski
   public void bindVertexAttribs(DistortedProgram program)
229 6c00149d Leszek Koltunski
     {
230 da681e7e Leszek Koltunski
     GLES31.glBindBuffer(GLES31.GL_ARRAY_BUFFER, mVBO.mIndex[0] );
231 227b9bca Leszek Koltunski
     GLES31.glVertexAttribPointer(program.mAttribute[0], POS_DATA_SIZE, GLES31.GL_FLOAT, false, VERT_SIZE, OFFSET_POS);
232
     GLES31.glVertexAttribPointer(program.mAttribute[1], NOR_DATA_SIZE, GLES31.GL_FLOAT, false, VERT_SIZE, OFFSET_NOR);
233
     GLES31.glVertexAttribPointer(program.mAttribute[2], INF_DATA_SIZE, GLES31.GL_FLOAT, false, VERT_SIZE, OFFSET_INF);
234
     GLES31.glVertexAttribPointer(program.mAttribute[3], TEX_DATA_SIZE, GLES31.GL_FLOAT, false, VERT_SIZE, OFFSET_TEX);
235 da681e7e Leszek Koltunski
     GLES31.glBindBuffer(GLES31.GL_ARRAY_BUFFER, 0);
236
     }
237
238
///////////////////////////////////////////////////////////////////////////////////////////////////
239
/**
240
 * Not part of public API, do not document (public only because has to be used from the main package)
241
 *
242
 * @y.exclude
243
 */
244
   public void bindTransformAttribs(DistortedProgram program)
245
     {
246
     GLES31.glBindBuffer(GLES31.GL_ARRAY_BUFFER, mTFO.mIndex[0] );
247 227b9bca Leszek Koltunski
     GLES31.glVertexAttribPointer(program.mAttribute[0], POS_DATA_SIZE, GLES31.GL_FLOAT, false, 0, 0);
248 da681e7e Leszek Koltunski
     GLES31.glBindBuffer(GLES31.GL_ARRAY_BUFFER, 0);
249 6c00149d Leszek Koltunski
     }
250
251 7a5e538a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
252
/**
253
 * Not part of public API, do not document (public only because has to be used from the main package)
254
 *
255
 * @y.exclude
256
 */
257
   public void setInflate(float inflate)
258
     {
259
     mInflate = inflate;
260
     }
261
262
///////////////////////////////////////////////////////////////////////////////////////////////////
263
/**
264
 * Not part of public API, do not document (public only because has to be used from the main package)
265
 *
266
 * @y.exclude
267
 */
268
   public float getInflate()
269
     {
270
     return mInflate;
271
     }
272
273 466450b5 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
274
// PUBLIC API
275 3fc9327a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
276
/**
277
 * When rendering this Mesh, do we want to render the Normal vectors as well?
278 420836fc leszek
 * <p>
279
 * Will work only on OpenGL ES >= 3.0 devices.
280 3fc9327a Leszek Koltunski
 *
281
 * @param show Controls if we render the Normal vectors or not.
282
 */
283
   public void setShowNormals(boolean show)
284
     {
285 7602a827 Leszek Koltunski
     mShowNormals = (DistortedLibrary.GLSL >= 300 && show);
286 3fc9327a Leszek Koltunski
     }
287 466450b5 Leszek Koltunski
288 6c00149d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
289
/**
290
 * When rendering this mesh, should we also draw the normal vectors?
291
 *
292
 * @return <i>true</i> if we do render normal vectors
293
 */
294
   public boolean getShowNormals()
295
     {
296
     return mShowNormals;
297
     }
298
299 466450b5 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
300
/**
301
 * Release all internal resources.
302
 */
303
   public void markForDeletion()
304
     {
305 fa8bc998 Leszek Koltunski
     mVertAttribs = null;
306 466450b5 Leszek Koltunski
307
     mVBO.markForDeletion();
308
     mTFO.markForDeletion();
309
     }
310 fa8bc998 Leszek Koltunski
311
///////////////////////////////////////////////////////////////////////////////////////////////////
312
/**
313 c90aca24 Leszek Koltunski
 * Apply all Effects to the vertex mesh. Overwrite the mesh in place.
314 fa8bc998 Leszek Koltunski
 * <p>
315 c90aca24 Leszek Koltunski
 * This is a static, permanent modification of the vertices contained in this Mesh. If the effects
316
 * contain any Dynamics, they will be evaluated at 0.
317 fa8bc998 Leszek Koltunski
 *
318
 * Please note that calling this once with the complete list of Effects will be much faster than
319
 * calling it repeatedly with one Effect at a time, as we have to reallocate the array of vertices
320
 * each time.
321
 */
322
   public void apply(MatrixEffect[] effects)
323
     {
324 c90aca24 Leszek Koltunski
     float[][] matrix = new float[effects.length][16];
325
     float[] tmp;
326
     float[] array = new float[4];
327
     float x,y,z;
328
     int numEffects = 0;
329
330
     for(MatrixEffect eff: effects)
331 fa8bc998 Leszek Koltunski
       {
332 c90aca24 Leszek Koltunski
       if( eff!=null )
333 fa8bc998 Leszek Koltunski
         {
334 c90aca24 Leszek Koltunski
         Matrix.setIdentityM(matrix[numEffects],0);
335
         eff.compute(array,0,0,0);
336
         eff.apply(matrix[numEffects], array, 0);
337
         numEffects++;
338 fa8bc998 Leszek Koltunski
         }
339
       }
340
341 7594a5d2 Leszek Koltunski
     for(int index=0; index<mNumVertices*VERT_ATTRIBS; index+=VERT_ATTRIBS )
342 c90aca24 Leszek Koltunski
       {
343
       for(int mat=0; mat<numEffects; mat++)
344
         {
345
         tmp = matrix[mat];
346
347
         x = mVertAttribs[index+POS_ATTRIB  ];
348
         y = mVertAttribs[index+POS_ATTRIB+1];
349
         z = mVertAttribs[index+POS_ATTRIB+2];
350
351
         mVertAttribs[index+POS_ATTRIB  ] = tmp[0]*x + tmp[4]*y + tmp[ 8]*z + tmp[12];
352
         mVertAttribs[index+POS_ATTRIB+1] = tmp[1]*x + tmp[5]*y + tmp[ 9]*z + tmp[13];
353
         mVertAttribs[index+POS_ATTRIB+2] = tmp[2]*x + tmp[6]*y + tmp[10]*z + tmp[14];
354
355 7594a5d2 Leszek Koltunski
//android.util.Log.e("mesh", "vert BEFORE: ("+x+","+y+","+z+")");
356
//android.util.Log.e("mesh", "vert AFTER: ("+mVertAttribs[index+POS_ATTRIB  ]+","+mVertAttribs[index+POS_ATTRIB+1]+","+mVertAttribs[index+POS_ATTRIB+2]+")");
357
358 c90aca24 Leszek Koltunski
         x = mVertAttribs[index+NOR_ATTRIB  ];
359
         y = mVertAttribs[index+NOR_ATTRIB+1];
360
         z = mVertAttribs[index+NOR_ATTRIB+2];
361
362
         mVertAttribs[index+NOR_ATTRIB  ] = tmp[0]*x + tmp[4]*y + tmp[ 8]*z;
363
         mVertAttribs[index+NOR_ATTRIB+1] = tmp[1]*x + tmp[5]*y + tmp[ 9]*z;
364
         mVertAttribs[index+NOR_ATTRIB+2] = tmp[2]*x + tmp[6]*y + tmp[10]*z;
365
366
         x = mVertAttribs[index+INF_ATTRIB  ];
367
         y = mVertAttribs[index+INF_ATTRIB+1];
368
         z = mVertAttribs[index+INF_ATTRIB+2];
369
370
         mVertAttribs[index+INF_ATTRIB  ] = tmp[0]*x + tmp[4]*y + tmp[ 8]*z;
371
         mVertAttribs[index+INF_ATTRIB+1] = tmp[1]*x + tmp[5]*y + tmp[ 9]*z;
372
         mVertAttribs[index+INF_ATTRIB+2] = tmp[2]*x + tmp[6]*y + tmp[10]*z;
373
         }
374
       }
375
376
     FloatBuffer attribs = ByteBuffer.allocateDirect(mNumVertices*VERT_SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
377
     attribs.put(mVertAttribs).position(0);
378
379
     mVBO.setData(mNumVertices*VERT_SIZE, attribs);
380
     mTFO.setData(mNumVertices*TRAN_SIZE, null   );
381
     }
382
383
///////////////////////////////////////////////////////////////////////////////////////////////////
384
/**
385
 * Join a list of Meshes into this one.
386
 * <p>
387
 * Please note that calling this once with the complete list of Meshes will be much faster than
388
 * calling it repeatedly with one Mesh at a time, as we have to reallocate the array of vertices
389
 * each time.
390
 */
391
   public void join(MeshBase[] meshes)
392
     {
393 ea88d502 Leszek Koltunski
     MeshBase mesh;
394
     Component comp;
395
     int com, num, len = meshes.length;
396
     int origVertices = mNumVertices;
397
398
     // compute new numVertices; take care of Components
399
     mNumVertices+= ( mNumVertices%2==1 ? 2:1 );
400
     com = mComponent.size();
401
     mComponent.get(com-1).mEndIndex = mNumVertices;
402
403
     for(int i=0; i<len; i++)
404
       {
405
       mesh = meshes[i];
406
       com = mesh.mComponent.size();
407
408
       for(int j=0; j<com; j++)
409
         {
410
         comp = new Component(mesh.mComponent.get(j));
411
         comp.mEndIndex += mNumVertices;
412
         mComponent.add(comp);
413
         }
414
415
       num = mesh.mNumVertices;
416
       mNumVertices+= (i<len-1 ? ( num%2==1 ? num+2 : num+1 ) : num);
417
       }
418
419
     // allocate new attrib array
420
     float[] newAttribs = new float[VERT_ATTRIBS*mNumVertices];
421
     num = origVertices;
422
423
     System.arraycopy(mVertAttribs,                             0, newAttribs,                         0, VERT_ATTRIBS*num);
424
     System.arraycopy(mVertAttribs, VERT_ATTRIBS*(origVertices-1), newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS    );
425
     origVertices++;
426
427
     if( num%2==1 )
428
       {
429
       System.arraycopy(mVertAttribs, VERT_ATTRIBS*(origVertices-1), newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS);
430
       origVertices++;
431
       }
432
433
     for(int i=0; i<len; i++)
434
       {
435
       mesh = meshes[i];
436
       num = mesh.mNumVertices;
437
438
       System.arraycopy(mesh.mVertAttribs, 0, newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS    );
439
       origVertices++;
440
       System.arraycopy(mesh.mVertAttribs, 0, newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS*num);
441
       origVertices+=num;
442
443
       if( i<len-1 )
444
         {
445
         System.arraycopy(mesh.mVertAttribs, VERT_ATTRIBS*(num-1), newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS);
446
         origVertices++;
447
448
         if( num%2==1 )
449
           {
450
           System.arraycopy(mesh.mVertAttribs, VERT_ATTRIBS*(num-1), newAttribs, VERT_ATTRIBS*origVertices, VERT_ATTRIBS);
451
           origVertices++;
452
           }
453
         }
454
       }
455 c90aca24 Leszek Koltunski
456 ea88d502 Leszek Koltunski
     if( origVertices!=mNumVertices )
457
       {
458
       android.util.Log.e("mesh", "join: origVertices: "+origVertices+" numVertices: "+mNumVertices);
459
       }
460
461
     mVertAttribs = newAttribs;
462
463
     FloatBuffer attribs = ByteBuffer.allocateDirect(mNumVertices*VERT_SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
464
     attribs.put(mVertAttribs).position(0);
465
466
     mVBO.setData(mNumVertices*VERT_SIZE, attribs);
467
     mTFO.setData(mNumVertices*TRAN_SIZE, null   );
468 fa8bc998 Leszek Koltunski
     }
469 9099e567 Leszek Koltunski
470
///////////////////////////////////////////////////////////////////////////////////////////////////
471
/**
472
 * Sets texture maps for all components of this mesh.
473
 * <p>
474
 * Please note that calling this once with the complete list of Maps will be much faster than
475
 * calling it repeatedly with one Maps at a time, as we have to reallocate the array of vertices
476
 * each time.
477
 */
478
   public void setTextureMap(float[][] maps)
479
     {
480
     int components = mComponent.size();
481
482
     for(int comp=0; comp<components; comp++)
483
       {
484
485
       }
486
     }
487 6a06a912 Leszek Koltunski
   }
488 226144d0 leszek
489 3fc9327a Leszek Koltunski