Project

General

Profile

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

library / src / main / java / org / distorted / library / mesh / MeshTriangles.java @ e54bfada

1 9099e567 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 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.mesh;
21
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23 b17aa4aa Leszek Koltunski
/**
24
 * Create a Mesh which approximates an equilateral triangle.
25
 */
26 9099e567 Leszek Koltunski
public class MeshTriangles extends MeshBase
27
  {
28
  private int numVertices;
29
  private int remainingVert;
30
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32
33 e54bfada Leszek Koltunski
  private int addVertex(int vertex, float x, float y, float[] attribs1, float[] attribs2)
34 9099e567 Leszek Koltunski
     {
35
     remainingVert--;
36
37 e54bfada Leszek Koltunski
     attribs1[VERT1_ATTRIBS*vertex + POS_ATTRIB  ] = x-0.5f;
38
     attribs1[VERT1_ATTRIBS*vertex + POS_ATTRIB+1] = y-0.5f;
39
     attribs1[VERT1_ATTRIBS*vertex + POS_ATTRIB+2] = 0.0f;
40 9099e567 Leszek Koltunski
41 e54bfada Leszek Koltunski
     attribs1[VERT1_ATTRIBS*vertex + NOR_ATTRIB  ] = 0.0f;
42
     attribs1[VERT1_ATTRIBS*vertex + NOR_ATTRIB+1] = 0.0f;
43
     attribs1[VERT1_ATTRIBS*vertex + NOR_ATTRIB+2] = 1.0f;
44 9099e567 Leszek Koltunski
45 e54bfada Leszek Koltunski
     attribs1[VERT1_ATTRIBS*vertex + INF_ATTRIB  ] = (x-0.5f);
46
     attribs1[VERT1_ATTRIBS*vertex + INF_ATTRIB+1] = (y-0.5f);
47
     attribs1[VERT1_ATTRIBS*vertex + INF_ATTRIB+2] = 0.01f   ;  // Inflated surface needs to be slightly in front
48 9099e567 Leszek Koltunski
49 e54bfada Leszek Koltunski
     attribs2[VERT2_ATTRIBS*vertex + TEX_ATTRIB  ] = x;
50
     attribs2[VERT2_ATTRIBS*vertex + TEX_ATTRIB+1] = y;
51 9099e567 Leszek Koltunski
52
     return vertex+1;
53
     }
54
55
///////////////////////////////////////////////////////////////////////////////////////////////////
56
57
  private void computeNumberOfVertices(int level)
58
     {
59
     numVertices = level*(level+2);
60
     remainingVert = numVertices;
61
     }
62
63
///////////////////////////////////////////////////////////////////////////////////////////////////
64
65 e54bfada Leszek Koltunski
  private int buildRow(int vertex,float sx, float sy, int length, float dx, float dy, float[] attribs1, float[] attribs2)
66 9099e567 Leszek Koltunski
    {
67
    for(int i=0; i<length; i++)
68
      {
69 e54bfada Leszek Koltunski
      vertex = addVertex(vertex, sx   , sy   , attribs1, attribs2);
70
      vertex = addVertex(vertex, sx+dx, sy+dy, attribs1, attribs2);
71 9099e567 Leszek Koltunski
      sx += 2*dx;
72
      }
73
74 e54bfada Leszek Koltunski
    vertex = addVertex(vertex, sx, sy, attribs1, attribs2);
75 9099e567 Leszek Koltunski
76
    return vertex;
77
    }
78
79
///////////////////////////////////////////////////////////////////////////////////////////////////
80
81 e54bfada Leszek Koltunski
  private void buildGrid(float[] attribs1, float[] attribs2, int level)
82 9099e567 Leszek Koltunski
     {
83
     float sx = 0.0f;
84
     float sy = 0.0f;
85
     float dx = 0.5f/level;
86 b35570ad Leszek Koltunski
     float dy = 1.0f/level;
87 9099e567 Leszek Koltunski
     int vertex = 0;
88
89
     for(int row=level; row>=1; row--)
90
       {
91 e54bfada Leszek Koltunski
       vertex = buildRow(vertex,sx,sy,row,dx,dy,attribs1,attribs2);
92 9099e567 Leszek Koltunski
93
       sx += 2*dx*(row-0.5f);
94
       sy += dy;
95
       dx *= -1;
96
       }
97
     }
98
99
///////////////////////////////////////////////////////////////////////////////////////////////////
100
// PUBLIC API
101
///////////////////////////////////////////////////////////////////////////////////////////////////
102
  /**
103
   * Creates the underlying grid of vertices with the usual attribs which approximates an equilateral
104
   * triangle.
105
   *
106
   * @param level Specifies the level of slicing. Valid values: level &ge; 1
107
   */
108
  public MeshTriangles(int level)
109
     {
110 0f10a0b6 Leszek Koltunski
     super();
111 9099e567 Leszek Koltunski
112
     computeNumberOfVertices(level);
113
114 e54bfada Leszek Koltunski
     float[] attribs1= new float[VERT1_ATTRIBS*numVertices];
115
     float[] attribs2= new float[VERT2_ATTRIBS*numVertices];
116
117
     buildGrid(attribs1, attribs2, level);
118 9099e567 Leszek Koltunski
119
     if( remainingVert!=0 )
120
       android.util.Log.d("MeshTriangles", "remainingVert " +remainingVert );
121
122 e54bfada Leszek Koltunski
     setAttribs(attribs1, attribs2);
123 9099e567 Leszek Koltunski
     }
124 cbd502ec Leszek Koltunski
125
///////////////////////////////////////////////////////////////////////////////////////////////////
126
/**
127
 * deep copy.
128
 */
129
  public MeshTriangles(MeshTriangles mesh)
130
    {
131
    super(mesh);
132
    }
133
134
///////////////////////////////////////////////////////////////////////////////////////////////////
135
/**
136
 * deep copy.
137
 */
138
  public MeshTriangles deepCopy()
139
    {
140
    return new MeshTriangles(this);
141
    }
142 9099e567 Leszek Koltunski
  }