OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2010, Google Inc. |
| 3 * All rights reserved. |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are |
| 7 * met: |
| 8 * |
| 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. |
| 11 * * Redistributions in binary form must reproduce the above |
| 12 * copyright notice, this list of conditions and the following disclaimer |
| 13 * in the documentation and/or other materials provided with the |
| 14 * distribution. |
| 15 * * Neither the name of Google Inc. nor the names of its |
| 16 * contributors may be used to endorse or promote products derived from |
| 17 * this software without specific prior written permission. |
| 18 * |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ |
| 31 |
| 32 |
| 33 /** |
| 34 * A ParamArray is an object that holds an array of Params. |
| 35 * @constructor |
| 36 */ |
| 37 o3d.ParamArray = function() { |
| 38 o3d.NamedObject.call(this); |
| 39 this.params_ = []; |
| 40 }; |
| 41 o3d.inherit('ParamArray', 'NamedObject'); |
| 42 |
| 43 |
| 44 /** |
| 45 * Creates a Param of the given type at the index requested. If a Param already |
| 46 * exists at that index the new param will be replace it. If the index is past |
| 47 * the end of the current array params of the requested type will be created to |
| 48 * fill out the array to the requested index. |
| 49 * |
| 50 * @param {number} index Index at which to create new param. |
| 51 * @param {string} param_type_name The type of Param to create. For a list of |
| 52 * valid types see ParamObject.createParam |
| 53 * @return {!o3d.ParamArray} The newly created Param or null if failure. |
| 54 */ |
| 55 o3d.ParamArray.prototype.createParam = function(index, param_type_name) { |
| 56 param_type_name = o3d.filterTypeName_(param_type_name); |
| 57 if (!o3d.global.o3d[param_type_name]) |
| 58 throw ('Invalid param type name: ' + param_type_name); |
| 59 if (index >= this.params_.length) { |
| 60 this.resize(index + 1, param_type_name); |
| 61 } else { |
| 62 var param = new o3d.global.o3d[param_type_name]; |
| 63 param.gl = this.gl; |
| 64 param.owner_ = this; |
| 65 this.params_[index] = param; |
| 66 } |
| 67 |
| 68 return this.filterResult_(this.params_[index]); |
| 69 }; |
| 70 |
| 71 |
| 72 /** |
| 73 * Gets a Param by index. |
| 74 * |
| 75 * @param {number} index Index of Param to get. |
| 76 * @return {!o3d.Param} The Param at index, or null if out of range. |
| 77 */ |
| 78 o3d.ParamArray.prototype.getParam = function(index) { |
| 79 var result = this.params_[index]; |
| 80 return this.filterResult_(result); |
| 81 }; |
| 82 |
| 83 |
| 84 /** |
| 85 * Removes a range of params. This shrinks the array and affects the indices of |
| 86 * later occurring items. |
| 87 * |
| 88 * @param {number} start_index Index of first param to remove. |
| 89 * @param {number} num_to_remove The number of params to remove starting at |
| 90 * start_index. |
| 91 */ |
| 92 o3d.ParamArray.prototype.removeParams = function(start_index, num_to_remove) { |
| 93 var paramsNew = []; |
| 94 var j = 0; |
| 95 for (var i = 0; i < this.params_.length; i++) { |
| 96 if (i >= start_index && i < start_index + num_to_remove) { |
| 97 // Skip these to remove them. |
| 98 } else { |
| 99 paramsNew[j] = this.params_[i]; |
| 100 j++; |
| 101 } |
| 102 } |
| 103 this.params_ = paramsNew; |
| 104 }; |
| 105 |
| 106 |
| 107 /** |
| 108 * Resizes the array. |
| 109 * |
| 110 * @param {number} num_params The number of params to make the array. |
| 111 * @param {string} param_type_name The type of Param to create if resizing |
| 112 * requires params to be created. For a list of valid types see |
| 113 * ParamObject.createParam. |
| 114 */ |
| 115 o3d.ParamArray.prototype.resize = function(num_params, param_type_name) { |
| 116 param_type_name = o3d.filterTypeName_(param_type_name); |
| 117 if (!o3d.global.o3d[param_type_name]) |
| 118 throw ('Invalid param type name: ' + param_type_name); |
| 119 |
| 120 for (var i = this.params_.length; i < num_params; i++) { |
| 121 var param = new o3d.global.o3d[param_type_name]; |
| 122 param.gl = this.gl; |
| 123 param.owner_ = this; |
| 124 this.params_[i] = param; |
| 125 } |
| 126 }; |
| 127 |
| 128 /** |
| 129 * The params stored in this ParamArray. |
| 130 * |
| 131 * @type {!Array.<!o3d.Param>} |
| 132 * @private |
| 133 */ |
| 134 o3d.ParamArray.prototype.params_ = []; |
| 135 |
| 136 /** |
| 137 * Gets all the param on this param object. |
| 138 * |
| 139 * Each access to this field gets the entire list, so it is best to get it |
| 140 * just once. For example: |
| 141 * |
| 142 * var params = ParamArray.params; |
| 143 * for (var i = 0; i < params.length; i++) { |
| 144 * var param = params[i]; |
| 145 * } |
| 146 * |
| 147 * Note that modifications to this array [e.g. push()] will not affect |
| 148 * the underlying ParamArray, while modifications to the array's members |
| 149 * <b>will</b> affect them. |
| 150 * |
| 151 * @type {!Array.<!o3d.Param>} |
| 152 */ |
| 153 o3d.ParamArray.prototype.__defineGetter__('params', |
| 154 function() { |
| 155 var params = []; |
| 156 for (var i = 0; i < this.length; i++) { |
| 157 params[i] = this.params_[i]; |
| 158 } |
| 159 return params; |
| 160 } |
| 161 ); |
| 162 |
| 163 |
| 164 /** |
| 165 * Returns the number of parameters in this ParamArray. |
| 166 * |
| 167 * @type {number} |
| 168 */ |
| 169 o3d.ParamArray.prototype.__defineGetter__('length', |
| 170 function() { |
| 171 return this.params_.length; |
| 172 } |
| 173 ); |
| 174 |
| 175 |
| 176 /** |
| 177 * Filters results, turning 'undefined' into 'null'. |
| 178 * |
| 179 * @param {*} result |
| 180 * @private |
| 181 */ |
| 182 o3d.ParamArray.prototype.filterResult_= function(result) { |
| 183 return (result ? result : null); |
| 184 }; |
OLD | NEW |