| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 1 | /* |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 2 | * Copyright (C) 2008-2012 The Android Open Source Project |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package android.renderscript; |
| 18 | |
| 19 | import java.util.Vector; |
| 20 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 21 | import android.util.Log; |
| 22 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 23 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 24 | * @deprecated in API 16 |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 25 | * <p>This class is a container for geometric data displayed with |
| 26 | * Renderscript. Internally, a mesh is a collection of allocations that |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 27 | * represent vertex data (positions, normals, texture |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 28 | * coordinates) and index data such as triangles and lines. </p> |
| 29 | * <p> |
| 30 | * Vertex data could either be interleaved within one |
| 31 | * allocation that is provided separately, as multiple allocation |
| 32 | * objects, or done as a combination of both. When a |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 33 | * vertex channel name matches an input in the vertex program, |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 34 | * Renderscript automatically connects the two together. |
| 35 | * </p> |
| 36 | * <p> |
| 37 | * Parts of the mesh can be rendered with either explicit |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 38 | * index sets or primitive types. |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 39 | * </p> |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 40 | **/ |
| 41 | public class Mesh extends BaseObj { |
| 42 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 43 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 44 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 45 | * Describes the way mesh vertex data is interpreted when rendering |
| 46 | * |
| 47 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 48 | public enum Primitive { |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 49 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 50 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 51 | * Vertex data will be rendered as a series of points |
| 52 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 53 | POINT (0), |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 54 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 55 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 56 | * Vertex pairs will be rendered as lines |
| 57 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 58 | LINE (1), |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 59 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 60 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 61 | * Vertex data will be rendered as a connected line strip |
| 62 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 63 | LINE_STRIP (2), |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 64 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 65 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 66 | * Vertices will be rendered as individual triangles |
| 67 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 68 | TRIANGLE (3), |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 69 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 70 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 71 | * Vertices will be rendered as a connected triangle strip |
| 72 | * defined by the first three vertices with each additional |
| 73 | * triangle defined by a new vertex |
| 74 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 75 | TRIANGLE_STRIP (4), |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 76 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 77 | * @deprecated in API 16 |
| Alex Sakhartchouk | ec0d335 | 2011-01-17 15:23:22 -0800 | [diff] [blame] | 78 | * Vertices will be rendered as a sequence of triangles that all |
| 79 | * share first vertex as the origin |
| 80 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 81 | TRIANGLE_FAN (5); |
| 82 | |
| 83 | int mID; |
| 84 | Primitive(int id) { |
| 85 | mID = id; |
| 86 | } |
| 87 | } |
| 88 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 89 | Allocation[] mVertexBuffers; |
| 90 | Allocation[] mIndexBuffers; |
| 91 | Primitive[] mPrimitives; |
| 92 | |
| 93 | Mesh(int id, RenderScript rs) { |
| Alex Sakhartchouk | 0de9444 | 2010-08-11 14:41:28 -0700 | [diff] [blame] | 94 | super(id, rs); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 97 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 98 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 99 | * @return number of allocations containing vertex data |
| 100 | * |
| 101 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 102 | public int getVertexAllocationCount() { |
| 103 | if(mVertexBuffers == null) { |
| 104 | return 0; |
| 105 | } |
| 106 | return mVertexBuffers.length; |
| 107 | } |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 108 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 109 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 110 | * @param slot index in the list of allocations to return |
| 111 | * @return vertex data allocation at the given index |
| 112 | * |
| 113 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 114 | public Allocation getVertexAllocation(int slot) { |
| 115 | return mVertexBuffers[slot]; |
| 116 | } |
| 117 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 118 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 119 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 120 | * @return number of primitives or index sets in the mesh |
| 121 | * |
| 122 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 123 | public int getPrimitiveCount() { |
| 124 | if(mIndexBuffers == null) { |
| 125 | return 0; |
| 126 | } |
| 127 | return mIndexBuffers.length; |
| 128 | } |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 129 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 130 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 131 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 132 | * @param slot locaton within the list of index set allocation |
| 133 | * @return allocation containing primtive index data or null if |
| 134 | * the index data is not specified explicitly |
| 135 | * |
| 136 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 137 | public Allocation getIndexSetAllocation(int slot) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 138 | return mIndexBuffers[slot]; |
| 139 | } |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 140 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 141 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 142 | * @param slot locaiton within the list of index set primitives |
| 143 | * @return index set primitive type |
| 144 | * |
| 145 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 146 | public Primitive getPrimitive(int slot) { |
| 147 | return mPrimitives[slot]; |
| 148 | } |
| 149 | |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 150 | @Override |
| 151 | void updateFromNative() { |
| Jason Sams | 06d69de | 2010-11-09 17:11:40 -0800 | [diff] [blame] | 152 | super.updateFromNative(); |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 153 | int vtxCount = mRS.nMeshGetVertexBufferCount(getID(mRS)); |
| 154 | int idxCount = mRS.nMeshGetIndexCount(getID(mRS)); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 155 | |
| 156 | int[] vtxIDs = new int[vtxCount]; |
| 157 | int[] idxIDs = new int[idxCount]; |
| 158 | int[] primitives = new int[idxCount]; |
| 159 | |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 160 | mRS.nMeshGetVertices(getID(mRS), vtxIDs, vtxCount); |
| 161 | mRS.nMeshGetIndices(getID(mRS), idxIDs, primitives, idxCount); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 162 | |
| 163 | mVertexBuffers = new Allocation[vtxCount]; |
| 164 | mIndexBuffers = new Allocation[idxCount]; |
| 165 | mPrimitives = new Primitive[idxCount]; |
| 166 | |
| 167 | for(int i = 0; i < vtxCount; i ++) { |
| 168 | if(vtxIDs[i] != 0) { |
| Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 169 | mVertexBuffers[i] = new Allocation(vtxIDs[i], mRS, null, Allocation.USAGE_SCRIPT); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 170 | mVertexBuffers[i].updateFromNative(); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | for(int i = 0; i < idxCount; i ++) { |
| 175 | if(idxIDs[i] != 0) { |
| Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 176 | mIndexBuffers[i] = new Allocation(idxIDs[i], mRS, null, Allocation.USAGE_SCRIPT); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 177 | mIndexBuffers[i].updateFromNative(); |
| 178 | } |
| 179 | mPrimitives[i] = Primitive.values()[primitives[i]]; |
| 180 | } |
| 181 | } |
| 182 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 183 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 184 | * @deprecated in API 16 |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 185 | * Mesh builder object. It starts empty and requires you to |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 186 | * add the types necessary to create vertex and index |
| Robert Ly | 11518ac | 2011-02-09 13:57:06 -0800 | [diff] [blame] | 187 | * allocations. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 188 | * |
| 189 | */ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 190 | public static class Builder { |
| 191 | RenderScript mRS; |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 192 | int mUsage; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 193 | |
| 194 | class Entry { |
| 195 | Type t; |
| 196 | Element e; |
| 197 | int size; |
| 198 | Primitive prim; |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 199 | int usage; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | int mVertexTypeCount; |
| 203 | Entry[] mVertexTypes; |
| 204 | Vector mIndexTypes; |
| 205 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 206 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 207 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 208 | * Creates builder object |
| Alex Sakhartchouk | f5c876e | 2011-01-13 14:53:43 -0800 | [diff] [blame] | 209 | * @param rs Context to which the mesh will belong. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 210 | * @param usage specifies how the mesh allocations are to be |
| 211 | * handled, whether they need to be uploaded to a |
| 212 | * buffer on the gpu, maintain a cpu copy, etc |
| 213 | */ |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 214 | public Builder(RenderScript rs, int usage) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 215 | mRS = rs; |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 216 | mUsage = usage; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 217 | mVertexTypeCount = 0; |
| 218 | mVertexTypes = new Entry[16]; |
| 219 | mIndexTypes = new Vector(); |
| 220 | } |
| 221 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 222 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 223 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 224 | * @return internal index of the last vertex buffer type added to |
| 225 | * builder |
| 226 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 227 | public int getCurrentVertexTypeIndex() { |
| 228 | return mVertexTypeCount - 1; |
| 229 | } |
| 230 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 231 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 232 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 233 | * @return internal index of the last index set added to the |
| 234 | * builder |
| 235 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 236 | public int getCurrentIndexSetIndex() { |
| 237 | return mIndexTypes.size() - 1; |
| 238 | } |
| 239 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 240 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 241 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 242 | * Adds a vertex data type to the builder object |
| 243 | * |
| Stephen Hines | b11e3d2 | 2011-01-11 19:30:58 -0800 | [diff] [blame] | 244 | * @param t type of the vertex data allocation to be created |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 245 | * |
| 246 | * @return this |
| 247 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 248 | public Builder addVertexType(Type t) throws IllegalStateException { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 249 | if (mVertexTypeCount >= mVertexTypes.length) { |
| 250 | throw new IllegalStateException("Max vertex types exceeded."); |
| 251 | } |
| 252 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 253 | mVertexTypes[mVertexTypeCount] = new Entry(); |
| 254 | mVertexTypes[mVertexTypeCount].t = t; |
| 255 | mVertexTypes[mVertexTypeCount].e = null; |
| 256 | mVertexTypeCount++; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 257 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 258 | } |
| 259 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 260 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 261 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 262 | * Adds a vertex data type to the builder object |
| 263 | * |
| 264 | * @param e element describing the vertex data layout |
| 265 | * @param size number of elements in the buffer |
| 266 | * |
| 267 | * @return this |
| 268 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 269 | public Builder addVertexType(Element e, int size) throws IllegalStateException { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 270 | if (mVertexTypeCount >= mVertexTypes.length) { |
| 271 | throw new IllegalStateException("Max vertex types exceeded."); |
| 272 | } |
| 273 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 274 | mVertexTypes[mVertexTypeCount] = new Entry(); |
| 275 | mVertexTypes[mVertexTypeCount].t = null; |
| 276 | mVertexTypes[mVertexTypeCount].e = e; |
| 277 | mVertexTypes[mVertexTypeCount].size = size; |
| 278 | mVertexTypeCount++; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 279 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 282 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 283 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 284 | * Adds an index set data type to the builder object |
| 285 | * |
| 286 | * @param t type of the index set data, could be null |
| 287 | * @param p primitive type |
| 288 | * |
| 289 | * @return this |
| 290 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 291 | public Builder addIndexSetType(Type t, Primitive p) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 292 | Entry indexType = new Entry(); |
| 293 | indexType.t = t; |
| 294 | indexType.e = null; |
| 295 | indexType.size = 0; |
| 296 | indexType.prim = p; |
| 297 | mIndexTypes.addElement(indexType); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 298 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 301 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 302 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 303 | * Adds an index set primitive type to the builder object |
| 304 | * |
| 305 | * @param p primitive type |
| 306 | * |
| 307 | * @return this |
| 308 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 309 | public Builder addIndexSetType(Primitive p) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 310 | Entry indexType = new Entry(); |
| 311 | indexType.t = null; |
| 312 | indexType.e = null; |
| 313 | indexType.size = 0; |
| 314 | indexType.prim = p; |
| 315 | mIndexTypes.addElement(indexType); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 316 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 319 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 320 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 321 | * Adds an index set data type to the builder object |
| 322 | * |
| 323 | * @param e element describing the index set data layout |
| 324 | * @param size number of elements in the buffer |
| 325 | * @param p primitive type |
| 326 | * |
| 327 | * @return this |
| 328 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 329 | public Builder addIndexSetType(Element e, int size, Primitive p) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 330 | Entry indexType = new Entry(); |
| 331 | indexType.t = null; |
| 332 | indexType.e = e; |
| 333 | indexType.size = size; |
| 334 | indexType.prim = p; |
| 335 | mIndexTypes.addElement(indexType); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 336 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | Type newType(Element e, int size) { |
| 340 | Type.Builder tb = new Type.Builder(mRS, e); |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 341 | tb.setX(size); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 342 | return tb.create(); |
| 343 | } |
| 344 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 345 | /** |
| Jason Sams | d4ca991 | 2012-05-08 19:02:07 -0700 | [diff] [blame] | 346 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 347 | * Create a Mesh object from the current state of the builder |
| 348 | * |
| 349 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 350 | public Mesh create() { |
| 351 | mRS.validate(); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 352 | int[] vtx = new int[mVertexTypeCount]; |
| 353 | int[] idx = new int[mIndexTypes.size()]; |
| 354 | int[] prim = new int[mIndexTypes.size()]; |
| 355 | |
| 356 | Allocation[] vertexBuffers = new Allocation[mVertexTypeCount]; |
| 357 | Allocation[] indexBuffers = new Allocation[mIndexTypes.size()]; |
| 358 | Primitive[] primitives = new Primitive[mIndexTypes.size()]; |
| 359 | |
| 360 | for(int ct = 0; ct < mVertexTypeCount; ct ++) { |
| 361 | Allocation alloc = null; |
| 362 | Entry entry = mVertexTypes[ct]; |
| 363 | if (entry.t != null) { |
| 364 | alloc = Allocation.createTyped(mRS, entry.t, mUsage); |
| 365 | } else if(entry.e != null) { |
| 366 | alloc = Allocation.createSized(mRS, entry.e, entry.size, mUsage); |
| 367 | } |
| 368 | vertexBuffers[ct] = alloc; |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 369 | vtx[ct] = alloc.getID(mRS); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | for(int ct = 0; ct < mIndexTypes.size(); ct ++) { |
| 373 | Allocation alloc = null; |
| 374 | Entry entry = (Entry)mIndexTypes.elementAt(ct); |
| 375 | if (entry.t != null) { |
| 376 | alloc = Allocation.createTyped(mRS, entry.t, mUsage); |
| 377 | } else if(entry.e != null) { |
| 378 | alloc = Allocation.createSized(mRS, entry.e, entry.size, mUsage); |
| 379 | } |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 380 | int allocID = (alloc == null) ? 0 : alloc.getID(mRS); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 381 | indexBuffers[ct] = alloc; |
| 382 | primitives[ct] = entry.prim; |
| 383 | |
| 384 | idx[ct] = allocID; |
| 385 | prim[ct] = entry.prim.mID; |
| 386 | } |
| 387 | |
| 388 | int id = mRS.nMeshCreate(vtx, idx, prim); |
| 389 | Mesh newMesh = new Mesh(id, mRS); |
| 390 | newMesh.mVertexBuffers = vertexBuffers; |
| 391 | newMesh.mIndexBuffers = indexBuffers; |
| 392 | newMesh.mPrimitives = primitives; |
| 393 | |
| 394 | return newMesh; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 395 | } |
| 396 | } |
| 397 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 398 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 399 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 400 | * Mesh builder object. It starts empty and requires the user to |
| 401 | * add all the vertex and index allocations that comprise the |
| 402 | * mesh |
| 403 | * |
| 404 | */ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 405 | public static class AllocationBuilder { |
| 406 | RenderScript mRS; |
| 407 | |
| 408 | class Entry { |
| 409 | Allocation a; |
| 410 | Primitive prim; |
| 411 | } |
| 412 | |
| 413 | int mVertexTypeCount; |
| 414 | Entry[] mVertexTypes; |
| 415 | |
| 416 | Vector mIndexTypes; |
| 417 | |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 418 | /** |
| 419 | * @deprecated in API 16 |
| 420 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 421 | public AllocationBuilder(RenderScript rs) { |
| 422 | mRS = rs; |
| 423 | mVertexTypeCount = 0; |
| 424 | mVertexTypes = new Entry[16]; |
| 425 | mIndexTypes = new Vector(); |
| 426 | } |
| 427 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 428 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 429 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 430 | * @return internal index of the last vertex buffer type added to |
| 431 | * builder |
| 432 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 433 | public int getCurrentVertexTypeIndex() { |
| 434 | return mVertexTypeCount - 1; |
| 435 | } |
| 436 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 437 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 438 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 439 | * @return internal index of the last index set added to the |
| 440 | * builder |
| 441 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 442 | public int getCurrentIndexSetIndex() { |
| 443 | return mIndexTypes.size() - 1; |
| 444 | } |
| 445 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 446 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 447 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 448 | * Adds an allocation containing vertex buffer data to the |
| 449 | * builder |
| 450 | * |
| 451 | * @param a vertex data allocation |
| 452 | * |
| 453 | * @return this |
| 454 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 455 | public AllocationBuilder addVertexAllocation(Allocation a) throws IllegalStateException { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 456 | if (mVertexTypeCount >= mVertexTypes.length) { |
| 457 | throw new IllegalStateException("Max vertex types exceeded."); |
| 458 | } |
| 459 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 460 | mVertexTypes[mVertexTypeCount] = new Entry(); |
| 461 | mVertexTypes[mVertexTypeCount].a = a; |
| 462 | mVertexTypeCount++; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 463 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 466 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 467 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 468 | * Adds an allocation containing index buffer data and index type |
| 469 | * to the builder |
| 470 | * |
| 471 | * @param a index set data allocation, could be null |
| 472 | * @param p index set primitive type |
| 473 | * |
| 474 | * @return this |
| 475 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 476 | public AllocationBuilder addIndexSetAllocation(Allocation a, Primitive p) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 477 | Entry indexType = new Entry(); |
| 478 | indexType.a = a; |
| 479 | indexType.prim = p; |
| 480 | mIndexTypes.addElement(indexType); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 481 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 484 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 485 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 486 | * Adds an index set type to the builder |
| 487 | * |
| 488 | * @param p index set primitive type |
| 489 | * |
| 490 | * @return this |
| 491 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 492 | public AllocationBuilder addIndexSetType(Primitive p) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 493 | Entry indexType = new Entry(); |
| 494 | indexType.a = null; |
| 495 | indexType.prim = p; |
| 496 | mIndexTypes.addElement(indexType); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 497 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 500 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 501 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 502 | * Create a Mesh object from the current state of the builder |
| 503 | * |
| 504 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 505 | public Mesh create() { |
| 506 | mRS.validate(); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 507 | |
| 508 | int[] vtx = new int[mVertexTypeCount]; |
| 509 | int[] idx = new int[mIndexTypes.size()]; |
| 510 | int[] prim = new int[mIndexTypes.size()]; |
| 511 | |
| 512 | Allocation[] indexBuffers = new Allocation[mIndexTypes.size()]; |
| 513 | Primitive[] primitives = new Primitive[mIndexTypes.size()]; |
| 514 | Allocation[] vertexBuffers = new Allocation[mVertexTypeCount]; |
| 515 | |
| 516 | for(int ct = 0; ct < mVertexTypeCount; ct ++) { |
| 517 | Entry entry = mVertexTypes[ct]; |
| 518 | vertexBuffers[ct] = entry.a; |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 519 | vtx[ct] = entry.a.getID(mRS); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | for(int ct = 0; ct < mIndexTypes.size(); ct ++) { |
| 523 | Entry entry = (Entry)mIndexTypes.elementAt(ct); |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 524 | int allocID = (entry.a == null) ? 0 : entry.a.getID(mRS); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 525 | indexBuffers[ct] = entry.a; |
| 526 | primitives[ct] = entry.prim; |
| 527 | |
| 528 | idx[ct] = allocID; |
| 529 | prim[ct] = entry.prim.mID; |
| 530 | } |
| 531 | |
| 532 | int id = mRS.nMeshCreate(vtx, idx, prim); |
| 533 | Mesh newMesh = new Mesh(id, mRS); |
| 534 | newMesh.mVertexBuffers = vertexBuffers; |
| 535 | newMesh.mIndexBuffers = indexBuffers; |
| 536 | newMesh.mPrimitives = primitives; |
| 537 | |
| 538 | return newMesh; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 539 | } |
| 540 | } |
| 541 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 542 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 543 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 544 | * Builder that allows creation of a mesh object point by point |
| 545 | * and triangle by triangle |
| 546 | * |
| 547 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 548 | public static class TriangleMeshBuilder { |
| 549 | float mVtxData[]; |
| 550 | int mVtxCount; |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 551 | int mMaxIndex; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 552 | short mIndexData[]; |
| 553 | int mIndexCount; |
| 554 | RenderScript mRS; |
| 555 | Element mElement; |
| 556 | |
| 557 | float mNX = 0; |
| 558 | float mNY = 0; |
| 559 | float mNZ = -1; |
| 560 | float mS0 = 0; |
| 561 | float mT0 = 0; |
| 562 | float mR = 1; |
| 563 | float mG = 1; |
| 564 | float mB = 1; |
| 565 | float mA = 1; |
| 566 | |
| 567 | int mVtxSize; |
| 568 | int mFlags; |
| 569 | |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 570 | /** |
| 571 | * @deprecated in API 16 |
| 572 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 573 | public static final int COLOR = 0x0001; |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 574 | /** |
| 575 | * @deprecated in API 16 |
| 576 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 577 | public static final int NORMAL = 0x0002; |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 578 | /** |
| 579 | * @deprecated in API 16 |
| 580 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 581 | public static final int TEXTURE_0 = 0x0100; |
| 582 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 583 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 584 | * @deprecated in API 16 |
| Alex Sakhartchouk | f5c876e | 2011-01-13 14:53:43 -0800 | [diff] [blame] | 585 | * @param rs Context to which the mesh will belong. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 586 | * @param vtxSize specifies whether the vertex is a float2 or |
| 587 | * float3 |
| 588 | * @param flags bitfield that is a combination of COLOR, NORMAL, |
| 589 | * and TEXTURE_0 that specifies what vertex data |
| 590 | * channels are present in the mesh |
| 591 | * |
| 592 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 593 | public TriangleMeshBuilder(RenderScript rs, int vtxSize, int flags) { |
| 594 | mRS = rs; |
| 595 | mVtxCount = 0; |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 596 | mMaxIndex = 0; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 597 | mIndexCount = 0; |
| 598 | mVtxData = new float[128]; |
| 599 | mIndexData = new short[128]; |
| 600 | mVtxSize = vtxSize; |
| 601 | mFlags = flags; |
| 602 | |
| 603 | if (vtxSize < 2 || vtxSize > 3) { |
| 604 | throw new IllegalArgumentException("Vertex size out of range."); |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | private void makeSpace(int count) { |
| 609 | if ((mVtxCount + count) >= mVtxData.length) { |
| 610 | float t[] = new float[mVtxData.length * 2]; |
| 611 | System.arraycopy(mVtxData, 0, t, 0, mVtxData.length); |
| 612 | mVtxData = t; |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | private void latch() { |
| 617 | if ((mFlags & COLOR) != 0) { |
| 618 | makeSpace(4); |
| 619 | mVtxData[mVtxCount++] = mR; |
| 620 | mVtxData[mVtxCount++] = mG; |
| 621 | mVtxData[mVtxCount++] = mB; |
| 622 | mVtxData[mVtxCount++] = mA; |
| 623 | } |
| 624 | if ((mFlags & TEXTURE_0) != 0) { |
| 625 | makeSpace(2); |
| 626 | mVtxData[mVtxCount++] = mS0; |
| 627 | mVtxData[mVtxCount++] = mT0; |
| 628 | } |
| 629 | if ((mFlags & NORMAL) != 0) { |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 630 | makeSpace(4); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 631 | mVtxData[mVtxCount++] = mNX; |
| 632 | mVtxData[mVtxCount++] = mNY; |
| 633 | mVtxData[mVtxCount++] = mNZ; |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 634 | mVtxData[mVtxCount++] = 0.0f; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 635 | } |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 636 | mMaxIndex ++; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 637 | } |
| 638 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 639 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 640 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 641 | * Adds a float2 vertex to the mesh |
| 642 | * |
| 643 | * @param x position x |
| 644 | * @param y position y |
| 645 | * |
| 646 | * @return this |
| 647 | * |
| 648 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 649 | public TriangleMeshBuilder addVertex(float x, float y) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 650 | if (mVtxSize != 2) { |
| 651 | throw new IllegalStateException("add mistmatch with declared components."); |
| 652 | } |
| 653 | makeSpace(2); |
| 654 | mVtxData[mVtxCount++] = x; |
| 655 | mVtxData[mVtxCount++] = y; |
| 656 | latch(); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 657 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 658 | } |
| 659 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 660 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 661 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 662 | * Adds a float3 vertex to the mesh |
| 663 | * |
| 664 | * @param x position x |
| 665 | * @param y position y |
| 666 | * @param z position z |
| 667 | * |
| 668 | * @return this |
| 669 | * |
| 670 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 671 | public TriangleMeshBuilder addVertex(float x, float y, float z) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 672 | if (mVtxSize != 3) { |
| 673 | throw new IllegalStateException("add mistmatch with declared components."); |
| 674 | } |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 675 | makeSpace(4); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 676 | mVtxData[mVtxCount++] = x; |
| 677 | mVtxData[mVtxCount++] = y; |
| 678 | mVtxData[mVtxCount++] = z; |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 679 | mVtxData[mVtxCount++] = 1.0f; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 680 | latch(); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 681 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 682 | } |
| 683 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 684 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 685 | * @deprecated in API 16 |
| Robert Ly | f11ffc11 | 2012-02-22 10:59:12 -0800 | [diff] [blame] | 686 | * Sets the texture coordinate for the vertices that are added after this method call. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 687 | * |
| 688 | * @param s texture coordinate s |
| 689 | * @param t texture coordinate t |
| 690 | * |
| 691 | * @return this |
| 692 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 693 | public TriangleMeshBuilder setTexture(float s, float t) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 694 | if ((mFlags & TEXTURE_0) == 0) { |
| 695 | throw new IllegalStateException("add mistmatch with declared components."); |
| 696 | } |
| 697 | mS0 = s; |
| 698 | mT0 = t; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 699 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 700 | } |
| 701 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 702 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 703 | * @deprecated in API 16 |
| Robert Ly | f11ffc11 | 2012-02-22 10:59:12 -0800 | [diff] [blame] | 704 | * Sets the normal vector for the vertices that are added after this method call. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 705 | * |
| 706 | * @param x normal vector x |
| 707 | * @param y normal vector y |
| 708 | * @param z normal vector z |
| 709 | * |
| 710 | * @return this |
| 711 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 712 | public TriangleMeshBuilder setNormal(float x, float y, float z) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 713 | if ((mFlags & NORMAL) == 0) { |
| 714 | throw new IllegalStateException("add mistmatch with declared components."); |
| 715 | } |
| 716 | mNX = x; |
| 717 | mNY = y; |
| 718 | mNZ = z; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 719 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 720 | } |
| 721 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 722 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 723 | * @deprecated in API 16 |
| Robert Ly | f11ffc11 | 2012-02-22 10:59:12 -0800 | [diff] [blame] | 724 | * Sets the color for the vertices that are added after this method call. |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 725 | * |
| 726 | * @param r red component |
| 727 | * @param g green component |
| 728 | * @param b blue component |
| 729 | * @param a alpha component |
| 730 | * |
| 731 | * @return this |
| 732 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 733 | public TriangleMeshBuilder setColor(float r, float g, float b, float a) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 734 | if ((mFlags & COLOR) == 0) { |
| 735 | throw new IllegalStateException("add mistmatch with declared components."); |
| 736 | } |
| 737 | mR = r; |
| 738 | mG = g; |
| 739 | mB = b; |
| 740 | mA = a; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 741 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 744 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 745 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 746 | * Adds a new triangle to the mesh builder |
| 747 | * |
| 748 | * @param idx1 index of the first vertex in the triangle |
| 749 | * @param idx2 index of the second vertex in the triangle |
| 750 | * @param idx3 index of the third vertex in the triangle |
| 751 | * |
| 752 | * @return this |
| 753 | **/ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 754 | public TriangleMeshBuilder addTriangle(int idx1, int idx2, int idx3) { |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 755 | if((idx1 >= mMaxIndex) || (idx1 < 0) || |
| 756 | (idx2 >= mMaxIndex) || (idx2 < 0) || |
| 757 | (idx3 >= mMaxIndex) || (idx3 < 0)) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 758 | throw new IllegalStateException("Index provided greater than vertex count."); |
| 759 | } |
| 760 | if ((mIndexCount + 3) >= mIndexData.length) { |
| 761 | short t[] = new short[mIndexData.length * 2]; |
| 762 | System.arraycopy(mIndexData, 0, t, 0, mIndexData.length); |
| 763 | mIndexData = t; |
| 764 | } |
| 765 | mIndexData[mIndexCount++] = (short)idx1; |
| 766 | mIndexData[mIndexCount++] = (short)idx2; |
| 767 | mIndexData[mIndexCount++] = (short)idx3; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 768 | return this; |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 769 | } |
| 770 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 771 | /** |
| Jason Sams | e619de6 | 2012-05-08 18:40:58 -0700 | [diff] [blame] | 772 | * @deprecated in API 16 |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 773 | * Creates the mesh object from the current state of the builder |
| 774 | * |
| 775 | * @param uploadToBufferObject specifies whether the vertex data |
| 776 | * is to be uploaded into the buffer |
| 777 | * object indicating that it's likely |
| 778 | * not going to be modified and |
| 779 | * rendered many times. |
| 780 | * Alternatively, it indicates the |
| 781 | * mesh data will be updated |
| 782 | * frequently and remain in script |
| 783 | * accessible memory |
| 784 | * |
| 785 | **/ |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 786 | public Mesh create(boolean uploadToBufferObject) { |
| 787 | Element.Builder b = new Element.Builder(mRS); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 788 | b.add(Element.createVector(mRS, |
| 789 | Element.DataType.FLOAT_32, |
| 790 | mVtxSize), "position"); |
| 791 | if ((mFlags & COLOR) != 0) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 792 | b.add(Element.F32_4(mRS), "color"); |
| 793 | } |
| 794 | if ((mFlags & TEXTURE_0) != 0) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 795 | b.add(Element.F32_2(mRS), "texture0"); |
| 796 | } |
| 797 | if ((mFlags & NORMAL) != 0) { |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 798 | b.add(Element.F32_3(mRS), "normal"); |
| 799 | } |
| 800 | mElement = b.create(); |
| 801 | |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 802 | int usage = Allocation.USAGE_SCRIPT; |
| 803 | if (uploadToBufferObject) { |
| 804 | usage |= Allocation.USAGE_GRAPHICS_VERTEX; |
| 805 | } |
| 806 | |
| 807 | Builder smb = new Builder(mRS, usage); |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 808 | smb.addVertexType(mElement, mMaxIndex); |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 809 | smb.addIndexSetType(Element.U16(mRS), mIndexCount, Primitive.TRIANGLE); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 810 | |
| 811 | Mesh sm = smb.create(); |
| 812 | |
| Alex Sakhartchouk | e60149d | 2011-11-15 15:15:21 -0800 | [diff] [blame] | 813 | sm.getVertexAllocation(0).copy1DRangeFromUnchecked(0, mMaxIndex, mVtxData); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 814 | if(uploadToBufferObject) { |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 815 | if (uploadToBufferObject) { |
| 816 | sm.getVertexAllocation(0).syncAll(Allocation.USAGE_SCRIPT); |
| 817 | } |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| Jason Sams | b97b251 | 2011-01-16 15:04:08 -0800 | [diff] [blame] | 820 | sm.getIndexSetAllocation(0).copy1DRangeFromUnchecked(0, mIndexCount, mIndexData); |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 821 | if (uploadToBufferObject) { |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 822 | sm.getIndexSetAllocation(0).syncAll(Allocation.USAGE_SCRIPT); |
| Jason Sams | d195240 | 2010-12-20 12:55:28 -0800 | [diff] [blame] | 823 | } |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 824 | |
| 825 | return sm; |
| 826 | } |
| 827 | } |
| 828 | } |
| 829 | |