1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
|
/*
* Copyright 1996-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*
*/
package javax.media.j3d;
import javax.vecmath.Point2f;
/**
* Texture2D is a subclass of Texture class. It extends Texture
* class by adding a constructor and a mutator method for
* setting a 2D texture image.
* <p>
* Note that as of Java 3D 1.5, the texture width and height are no longer
* required to be an exact power of two. However, not all graphics devices
* supports non-power-of-two textures. If non-power-of-two texture mapping is
* unsupported on a particular Canvas3D, textures with a width or height that
* are not an exact power of two are ignored for that canvas.
*
* @see Canvas3D#queryProperties
*/
public class Texture2D extends Texture {
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Specifies that this Texture object allows reading its detail
* texture information (e.g., detail texture image, detail texture mode,
* detail texture function, detail texture function points count,
* detail texture level)
*
* @since Java 3D 1.3
*/
public static final int
ALLOW_DETAIL_TEXTURE_READ = CapabilityBits.TEXTURE2D_ALLOW_DETAIL_TEXTURE_READ;
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Performs linear sampling in both the base level
* texture image and the detail texture image, and combines the two
* texture values according to the detail texture mode.
*
* @since Java 3D 1.3
* @see #setMagFilter
*/
public static final int LINEAR_DETAIL = 6;
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Performs linear detail for the rgb
* components only. The alpha component is computed using
* BASE_LEVEL_LINEAR filter.
*
* @since Java 3D 1.3
* @see #setMagFilter
*/
public static final int LINEAR_DETAIL_RGB = 7;
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Performs linear detail for the alpha
* component only. The rgb components are computed using
* BASE_LEVEL_LINEAR filter.
*
* @since Java 3D 1.3
* @see #setMagFilter
*/
public static final int LINEAR_DETAIL_ALPHA = 8;
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Adds the detail texture image to the level 0 image of this texture
* object
*
* @since Java 3D 1.3
* @see #setDetailTextureMode
*/
public static final int DETAIL_ADD = 0;
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
* Modulates the detail texture image with the level 0 image of this
* texture object
*
* @since Java 3D 1.3
* @see #setDetailTextureMode
*/
public static final int DETAIL_MODULATE = 1;
// Array for setting default read capabilities
private static final int[] readCapabilities = {
ALLOW_DETAIL_TEXTURE_READ
};
/**
* Constructs a texture object using default values.
*
* The default values are as follows:
* <ul>
* detail texture image: null<br>
* detail texture mode: DETAIL_MODULATE<br>
* detail texture func: null<br>
* detail texture level: 2<br>
* </ul>
* <p>
* Note that the default constructor creates a texture object with
* a width and height of 0 and is, therefore, not useful.
*/
public Texture2D() {
super();
// set default read capabilities
setDefaultReadCapabilities(readCapabilities);
}
/**
* Constructs an empty Texture2D object with specified mipmapMode
* format, width and height. Image at base level must be set by
* the application using 'setImage' method. If mipmapMode is
* set to MULTI_LEVEL_MIPMAP, images for base level through maximum level
* must be set.
* Note that a texture with a non-power-of-two width or height will
* only be rendered on a graphics device that supports non-power-of-two
* textures.
*
* @param mipMapMode type of mipmap for this Texture: One of
* BASE_LEVEL, MULTI_LEVEL_MIPMAP.
* @param format data format of Textures saved in this object.
* One of INTENSITY, LUMINANCE, ALPHA, LUMINANCE_ALPHA, RGB, RGBA.
* @param width width of image at level 0.
* @param height height of image at level 0.
* @exception IllegalArgumentException if width or height are NOT
* greater than 0 OR invalid format/mipmapMode is specified.
*/
public Texture2D(
int mipMapMode,
int format,
int width,
int height) {
super(mipMapMode, format, width, height);
// set default read capabilities
setDefaultReadCapabilities(readCapabilities);
}
/**
* Constructs an empty Texture2D object with specified mipMapMode,
* format, width, height, and boundaryWidth.
* Defaults are used for all other
* parameters. If <code>mipMapMode</code> is set to
* <code>BASE_LEVEL</code>, then the image at level 0 must be set
* by the application (using either the <code>setImage</code> or
* <code>setImages</code> method). If <code>mipMapMode</code> is
* set to <code>MULTI_LEVEL_MIPMAP</code>, then images for levels
* Base Level through Maximum Level must be set.
* Note that a texture with a non-power-of-two width or height will
* only be rendered on a graphics device that supports non-power-of-two
* textures.
*
* @param mipMapMode type of mipmap for this Texture: one of
* BASE_LEVEL, MULTI_LEVEL_MIPMAP
* @param format data format of Textures saved in this object.
* One of INTENSITY, LUMINANCE, ALPHA, LUMINANCE_ALPHA, RGB, RGBA
* @param width width of image at level 0. This
* does not include the width of the boundary.
* @param height height of image at level 0. This
* does not include the width of the boundary.
* @param boundaryWidth width of the boundary, which must be 0 or 1.
* @exception IllegalArgumentException if width or height are not greater
* than 0, if an invalid format or mipMapMode is specified, or
* if the boundaryWidth is < 0 or > 1
*
* @since Java 3D 1.3
*/
public Texture2D(int mipMapMode,
int format,
int width,
int height,
int boundaryWidth) {
super(mipMapMode, format, width, height, boundaryWidth);
// set default read capabilities
setDefaultReadCapabilities(readCapabilities);
}
/**
* Sets the magnification filter function. This
* function is used when the pixel being rendered maps to an area
* less than or equal to one texel.
* @param magFilter the magnification filter, one of:
* FASTEST, NICEST, BASE_LEVEL_POINT, BASE_LEVEL_LINEAR,
* LINEAR_DETAIL, LINEAR_DETAIL_RGB, LINEAR_DETAIL_ALPHA,
* LINEAR_SHARPEN, LINEAR_SHARPEN_RGB, LINEAR_SHARPEN_ALPHA, or FILTER4.
*
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
* @exception IllegalArgumentException if <code>minFilter</code>
* is a value other than <code>FASTEST</code>, <code>NICEST</code>,
* <code>BASE_LEVEL_POINT</code>, <code>BASE_LEVEL_LINEAR</code>,
* <code>LINEAR_DETAIL</code>, <code>LINEAR_DETAIL_RGB</code>,
* <code>LINEAR_DETAIL_ALPHA</code>,
* <code>LINEAR_SHARPEN</code>, <code>LINEAR_SHARPEN_RGB</code>,
* <code>LINEAR_SHARPEN_ALPHA</code>, or
* <code>FILTER4</code>.
*
* @see Canvas3D#queryProperties
*
* @since Java 3D 1.3
*/
@Override
public void setMagFilter(int magFilter) {
checkForLiveOrCompiled();
switch (magFilter) {
case FASTEST:
case NICEST:
case BASE_LEVEL_POINT:
case BASE_LEVEL_LINEAR:
case LINEAR_DETAIL:
case LINEAR_DETAIL_RGB:
case LINEAR_DETAIL_ALPHA:
case LINEAR_SHARPEN:
case LINEAR_SHARPEN_RGB:
case LINEAR_SHARPEN_ALPHA:
case FILTER4:
break;
default:
throw new IllegalArgumentException(J3dI18N.getString("Texture29"));
}
((Texture2DRetained)this.retained).initMagFilter(magFilter);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param detailTexture ImageComponent2D object containing the
* detail texture image.
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
*
* @since Java 3D 1.3
* @see Canvas3D#queryProperties
*/
public void setDetailImage(ImageComponent2D detailTexture) {
checkForLiveOrCompiled();
((Texture2DRetained)this.retained).initDetailImage(detailTexture);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @return ImageComponent2D object containing the detail texture image.
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public ImageComponent2D getDetailImage() {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
return ((Texture2DRetained)this.retained).getDetailImage();
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param mode detail texture mode. One of: DETAIL_ADD or DETAIL_MODULATE
*
* @exception IllegalArgumentException if
* <code>mode</code> is a value other than
* <code>DETAIL_ADD</code>, or <code>DETAIL_MODULATE</code>
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
*
* @since Java 3D 1.3
* @see Canvas3D#queryProperties
*/
public void setDetailTextureMode(int mode) {
checkForLiveOrCompiled();
if ((mode != DETAIL_ADD) && (mode != DETAIL_MODULATE)) {
throw new IllegalArgumentException(
J3dI18N.getString("Texture2D1"));
}
((Texture2DRetained)this.retained).initDetailTextureMode(mode);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @return the detail texture mode.
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public int getDetailTextureMode() {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
return ((Texture2DRetained)this.retained).getDetailTextureMode();
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param level the detail texture level.
*
* @exception IllegalArgumentException if <code>level</code> < 0
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
*
* @since Java 3D 1.3
* @see Canvas3D#queryProperties
*/
public void setDetailTextureLevel(int level) {
checkForLiveOrCompiled();
if (level < 0) {
throw new IllegalArgumentException(
J3dI18N.getString("Texture2D2"));
}
((Texture2DRetained)this.retained).initDetailTextureLevel(level);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @return the detail texture level.
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public int getDetailTextureLevel() {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
return ((Texture2DRetained)this.retained).getDetailTextureLevel();
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param lod array containing the level-of-detail values.
* @param pts array containing the function values for the corresponding
* level-of-detail values.
*
* @exception IllegalStateException if the length of <code>lod</code>
* does not match the length of <code>pts</code>
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
*
* @since Java 3D 1.3
* @see Canvas3D#queryProperties
*/
public void setDetailTextureFunc(float[] lod, float[] pts) {
checkForLiveOrCompiled();
if (((lod != null) && (pts != null) && (lod.length == pts.length)) ||
((lod == null) && (pts == null))) {
((Texture2DRetained)this.retained).initDetailTextureFunc(lod, pts);
} else {
throw new IllegalStateException(J3dI18N.getString("Texture2D3"));
}
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param pts array of Point2f containing the lod as well as the
* corresponding function value.
*
* @exception RestrictedAccessException if the method is called
* when this object is part of live or compiled scene graph.
*
* @since Java 3D 1.3
* @see Canvas3D#queryProperties
*/
public void setDetailTextureFunc(Point2f[] pts) {
checkForLiveOrCompiled();
((Texture2DRetained)this.retained).initDetailTextureFunc(pts);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @return the number of points in the detail texture LOD function.
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public int getDetailTextureFuncPointsCount() {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
return ((Texture2DRetained)this.retained).getDetailTextureFuncPointsCount();
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param lod the array to receive the level-of-detail values.
* @param pts the array to receive the function values for the
* corresponding level-of-detail values.
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public void getDetailTextureFunc(float[] lod, float[] pts) {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
((Texture2DRetained)this.retained).getDetailTextureFunc(lod, pts);
}
/**
* @deprecated As of Java 3D 1.5 the optional detail texture feature is no
* longer supported.
*
* @param pts the array to receive the detail texture LOD function points
*
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*
* @since Java 3D 1.3
*/
public void getDetailTextureFunc(Point2f[] pts) {
if (isLiveOrCompiled()) {
if (!this.getCapability(ALLOW_DETAIL_TEXTURE_READ)) {
throw new CapabilityNotSetException(
J3dI18N.getString("Texture2D0"));
}
}
((Texture2DRetained)this.retained).getDetailTextureFunc(pts);
}
/**
* Creates a retained mode Texture2DRetained object that this
* Texture2D component object will point to.
*/
@Override
void createRetained() {
this.retained = new Texture2DRetained();
this.retained.setSource(this);
}
/**
* @deprecated replaced with cloneNodeComponent(boolean forceDuplicate)
*/
@Override
public NodeComponent cloneNodeComponent() {
Texture2DRetained t2d = (Texture2DRetained) retained;
Texture2D t = new Texture2D(t2d.getMipMapMode(), t2d.format,
t2d.width, t2d.height);
t.duplicateNodeComponent(this);
return t;
}
/**
* NOTE: Applications should <i>not</i> call this method directly.
* It should only be called by the cloneNode method.
*
* @deprecated replaced with duplicateNodeComponent(
* NodeComponent originalNodeComponent, boolean forceDuplicate)
*/
@Override
public void duplicateNodeComponent(NodeComponent originalNodeComponent) {
checkDuplicateNodeComponent(originalNodeComponent);
}
/**
* Copies all node information from <code>originalNodeComponent</code> into
* the current node. This method is called from the
* <code>duplicateNode</code> method. This routine does
* the actual duplication of all "local data" (any data defined in
* this object).
*
* @param originalNodeComponent the original node to duplicate.
* @param forceDuplicate when set to <code>true</code>, causes the
* <code>duplicateOnCloneTree</code> flag to be ignored. When
* <code>false</code>, the value of each node's
* <code>duplicateOnCloneTree</code> variable determines whether
* NodeComponent data is duplicated or copied.
*
* @see Node#cloneTree
* @see NodeComponent#setDuplicateOnCloneTree
*/
@Override
void duplicateAttributes(NodeComponent originalNodeComponent,
boolean forceDuplicate) {
super.duplicateAttributes(originalNodeComponent, forceDuplicate);
Texture2DRetained tex = (Texture2DRetained)
originalNodeComponent.retained;
Texture2DRetained rt = (Texture2DRetained) retained;
rt.initDetailImage(tex.getDetailImage());
rt.initDetailTextureMode(tex.getDetailTextureMode());
rt.initDetailTextureLevel(tex.getDetailTextureLevel());
rt.initDetailTextureFunc(tex.getDetailTextureFunc());
}
}
|