javax.media.j3d.TexCoordGeneration Maven / Gradle / Ivy
/* * 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.Vector4f; /** * The TexCoordGeneration object contains all parameters needed for * automatic texture coordinate generation. It is included as part * of an Appearance component object. *
are the eye * coordinates of the vertex.* Texture coordinates determine which texel in the texture map is * assigned to a given vertex. Texture coordinates are interpolated * between vertices, similarly to how colors are interpolated between * two vertices of lines and polygons. *
* Texture coordinates consist of two, three or four coordinates. * These coordinates * are referred to as the S, T, R, and Q * coordinates. * 2D textures use the S and T coordinates. 3D textures * use the S, T and R coordinates. The Q * coordinate, similar to the w coordinate of the (x, y, z, w) * object coordinates, is used to create homogeneous coordinates. *
* Rather than the programmer having to explicitly assign texture * coordinates, Java 3D can automatically generate the texture * coordinates to achieve texture mapping onto contours. * The TexCoordGeneration attributes specify the functions for automatically * generating texture coordinates. The texture attributes that can be * defined are: *
*
- Texture format - defines whether the generated texture * coordinates are 2D, 3D, or 4D:
*
*
*- TEXTURE_COORDINATE_2 - generates 2D texture coordinates * (S and T).
*
- TEXTURE_COORDINATE_3 - generates 3D texture coordinates * (S, T, and R).
*
- TEXTURE_COORDINATE_4 - generates 4D texture coordinates * (S, T, R, and Q).
*
- Texture generation mode - defines how the texture coordinates * are generated:
*
*
- OBJECT_LINEAR - texture coordinates are generated as a linear * function in object coordinates. The function used is:
*
*
*g = p1xo + p2yo + p3zo + p4wo
** where
*
g
is the value computed for the coordinate.
*p1
,p2
, *p3
, andp4
* are the plane equation coefficients (described below).
* xo, yo, zo, and wo are * the object coordinates of the vertex.*
- EYE_LINEAR - texture coordinates are generated as a linear * function in eye coordinates. The function used is:
*
*
g = p1'xe + p2'ye + p3'ze + p4'we
** where
*
xe
,ye
, *ze
, and we
*p1'
,p2'
, *p3'
, andp4'
* are the plane equation coefficients transformed into eye * coordinates.* * *
* *
* *
* *
* The equation coefficients are set by the setPlaneS
,
* setPlaneT
, setPlaneR
, and setPlaneQ
* methods for each of the S, T, R, and Q coordinate functions, respectively.
* By default the equation coefficients are set as follows:
*
-
* plane S = (1.0, 0.0, 0.0, 0.0)
* plane T = (0.0, 1.0, 0.0, 0.0)
* plane R = (0.0, 0.0, 0.0, 0.0)
* plane Q = (0.0, 0.0, 0.0, 0.0)
*
setEnable
method. When enabled, the specified
* texture coordinate is computed according to the generating function
* associated with the coordinate. When disabled, subsequent vertices
* take the specified texture coordinate from the current set of
* texture coordinates.* * @see Canvas3D#queryProperties */ public class TexCoordGeneration extends NodeComponent { /** * Specifies that this TexCoordGeneration object allows reading its * enable flag. */ public static final int ALLOW_ENABLE_READ = CapabilityBits.TEX_COORD_GENERATION_ALLOW_ENABLE_READ; /** * Specifies that this TexCoordGeneration object allows writing its * enable flag. */ public static final int ALLOW_ENABLE_WRITE = CapabilityBits.TEX_COORD_GENERATION_ALLOW_ENABLE_WRITE; /** * Specifies that this TexCoordGeneration object allows reading its * format information. */ public static final int ALLOW_FORMAT_READ = CapabilityBits.TEX_COORD_GENERATION_ALLOW_FORMAT_READ; /** * Specifies that this TexCoordGeneration object allows reading its * mode information. */ public static final int ALLOW_MODE_READ = CapabilityBits.TEX_COORD_GENERATION_ALLOW_MODE_READ; /** * Specifies that this TexCoordGeneration object allows reading its * planeS, planeR, and planeT component information. */ public static final int ALLOW_PLANE_READ = CapabilityBits.TEX_COORD_GENERATION_ALLOW_PLANE_READ; /** * Specifies that this TexCoordGeneration object allows writing its * planeS, planeR, and planeT component information. * * @since Java 3D 1.3 */ public static final int ALLOW_PLANE_WRITE = CapabilityBits.TEX_COORD_GENERATION_ALLOW_PLANE_WRITE; /** * Generates texture coordinates as a linear function in * object coordinates. * * @see #setGenMode */ public static final int OBJECT_LINEAR = 0; /** * Generates texture coordinates as a linear function in * eye coordinates. * * @see #setGenMode */ public static final int EYE_LINEAR = 1; /** * Generates texture coordinates using a spherical reflection * mapping in eye coordinates. * * @see #setGenMode */ public static final int SPHERE_MAP = 2; /** * Generates texture coordinates that match vertices' normals in * eye coordinates. * * @see #setGenMode * @see Canvas3D#queryProperties * * @since Java 3D 1.3 */ public static final int NORMAL_MAP = 3; /** * Generates texture coordinates that match vertices' reflection * vectors in eye coordinates. * * @see #setGenMode * @see Canvas3D#queryProperties * * @since Java 3D 1.3 */ public static final int REFLECTION_MAP = 4; // Definitions for format /** * Generates 2D texture coordinates (S and T). * * @see #setFormat */ public static final int TEXTURE_COORDINATE_2 = 0; /** * Generates 3D texture coordinates (S, T, and R). * * @see #setFormat */ public static final int TEXTURE_COORDINATE_3 = 1; /** * Generates 4D texture coordinates (S, T, R, and Q). * * @see #setFormat * * @since Java 3D 1.3 */ public static final int TEXTURE_COORDINATE_4 = 2; // Array for setting default read capabilities private static final int[] readCapabilities = { ALLOW_ENABLE_READ, ALLOW_FORMAT_READ, ALLOW_MODE_READ, ALLOW_PLANE_READ }; /** * Constructs a TexCoordGeneration object with default parameters. * The default values are as follows: *
-
* enable flag : true
* texture generation mode : OBJECT_LINEAR
* format : TEXTURE_COORDINATE_2
* plane S : (1,0,0,0)
* plane T : (0,1,0,0)
* plane R : (0,0,0,0)
* plane Q : (0,0,0,0)
*
genMode
is
* a value other than OBJECT_LINEAR
, EYE_LINEAR
,
* SPHERE_MAP
, NORMAL_MAP
, or
* REFLECTION_MAP
.
*
* @see Canvas3D#queryProperties
*/
public void setGenMode(int genMode) {
checkForLiveOrCompiled();
if ((genMode < OBJECT_LINEAR) || (genMode > REFLECTION_MAP)) {
throw new IllegalArgumentException(
J3dI18N.getString("TexCoordGeneration5"));
}
((TexCoordGenerationRetained)this.retained).initGenMode(genMode);
}
/**
* Retrieves the current TexCoordGeneration generation mode.
* @return the texture generation mode
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public int getGenMode() {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_MODE_READ))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration3"));
return ((TexCoordGenerationRetained)this.retained).getGenMode();
}
/**
* Sets the S coordinate plane equation. This plane equation
* is used to generate the S coordinate in OBJECT_LINEAR and EYE_LINEAR
* texture generation modes.
* @param planeS plane equation for the S coordinate
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void setPlaneS(Vector4f planeS) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_WRITE))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration6"));
if (isLive())
((TexCoordGenerationRetained)this.retained).setPlaneS(planeS);
else
((TexCoordGenerationRetained)this.retained).initPlaneS(planeS);
}
/**
* Retrieves a copy of the plane equation used to
* generate the S coordinate.
* @param planeS the S coordinate plane equation
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void getPlaneS(Vector4f planeS) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_READ))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration4"));
((TexCoordGenerationRetained)this.retained).getPlaneS(planeS);
}
/**
* Sets the T coordinate plane equation. This plane equation
* is used to generate the T coordinate in OBJECT_LINEAR and EYE_LINEAR
* texture generation modes.
* @param planeT plane equation for the T coordinate
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void setPlaneT(Vector4f planeT) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_WRITE))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration6"));
if (isLive())
((TexCoordGenerationRetained)this.retained).setPlaneT(planeT);
else
((TexCoordGenerationRetained)this.retained).initPlaneT(planeT);
}
/**
* Retrieves a copy of the plane equation used to
* generate the T coordinate.
* @param planeT the T coordinate plane equation
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void getPlaneT(Vector4f planeT) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_READ))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration4"));
((TexCoordGenerationRetained)this.retained).getPlaneT(planeT);
}
/**
* Sets the R coordinate plane equation. This plane equation
* is used to generate the R coordinate in OBJECT_LINEAR and EYE_LINEAR
* texture generation modes.
* @param planeR plane equation for the R coordinate
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void setPlaneR(Vector4f planeR) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_WRITE))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration6"));
if (isLive())
((TexCoordGenerationRetained)this.retained).setPlaneR(planeR);
else
((TexCoordGenerationRetained)this.retained).initPlaneR(planeR);
}
/**
* Retrieves a copy of the plane equation used to
* generate the R coordinate.
* @param planeR the R coordinate plane equation
* @exception CapabilityNotSetException if appropriate capability is
* not set and this object is part of live or compiled scene graph
*/
public void getPlaneR(Vector4f planeR) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_READ))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration4"));
((TexCoordGenerationRetained)this.retained).getPlaneR(planeR);
}
/**
* Sets the Q coordinate plane equation. This plane equation
* is used to generate the Q coordinate in OBJECT_LINEAR and EYE_LINEAR
* texture generation modes.
* @param planeQ plane equation for the Q coordinate
* @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 setPlaneQ(Vector4f planeQ) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_WRITE))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration6"));
if (isLive())
((TexCoordGenerationRetained)this.retained).setPlaneQ(planeQ);
else
((TexCoordGenerationRetained)this.retained).initPlaneQ(planeQ);
}
/**
* Retrieves a copy of the plane equation used to
* generate the Q coordinate.
* @param planeQ the Q coordinate plane equation
* @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 getPlaneQ(Vector4f planeQ) {
if (isLiveOrCompiled())
if(!this.getCapability(ALLOW_PLANE_READ))
throw new CapabilityNotSetException(J3dI18N.getString("TexCoordGeneration4"));
((TexCoordGenerationRetained)this.retained).getPlaneQ(planeQ);
}
/**
* Creates a retained mode TexCoordGenerationRetained object that this
* TexCoordGeneration component object will point to.
*/
@Override
void createRetained() {
this.retained = new TexCoordGenerationRetained();
this.retained.setSource(this);
}
/**
* @deprecated replaced with cloneNodeComponent(boolean forceDuplicate)
*/
@Override
public NodeComponent cloneNodeComponent() {
TexCoordGeneration tga = new TexCoordGeneration();
tga.duplicateNodeComponent(this);
return tga;
}
/**
* Copies all node information from originalNodeComponent
into
* the current node. This method is called from the
* duplicateNode
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 true
, causes the
* duplicateOnCloneTree
flag to be ignored. When
* false
, the value of each node's
* duplicateOnCloneTree
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);
TexCoordGenerationRetained tex = (TexCoordGenerationRetained)
originalNodeComponent.retained;
TexCoordGenerationRetained rt = (TexCoordGenerationRetained) retained;
Vector4f v = new Vector4f();
rt.initGenMode(tex.getGenMode());
tex.getPlaneS(v);
rt.initPlaneS(v);
tex.getPlaneT(v);
rt.initPlaneT(v);
tex.getPlaneR(v);
rt.initPlaneR(v);
tex.getPlaneQ(v);
rt.initPlaneQ(v);
rt.initFormat(tex.getFormat());
rt.initEnable(tex.getEnable());
}
}