Panda3D
|
Converts a height field in the form of a greyscale image into a scene consisting of a number of GeomNodes. More...
#include "heightfieldTesselator.h"
Public Member Functions | |
HeightfieldTesselator (const string &name) | |
NodePath | generate () |
Generates a tree of nodes that represents the heightfield. More... | |
double | get_elevation (double x, double y) |
Fetches the elevation at (x,y), where the input coordinate is specified in pixels. More... | |
PNMImage & | heightfield () |
Returns a reference to the heightfield (a PNMImage) contained inside the HeightfieldTesselator. More... | |
void | set_focal_point (int x, int y) |
Sets the focal point. More... | |
bool | set_heightfield (const Filename &filename, PNMFileType *type=NULL) |
Loads the specified greyscale image file into the heightfield. More... | |
void | set_horizontal_scale (double h) |
Sets the horizontal scale. More... | |
void | set_max_triangles (int n) |
Sets the max triangles per geom. More... | |
void | set_poly_count (int n) |
Sets the polygon-count target. More... | |
void | set_vertical_scale (double v) |
Sets the vertical scale. More... | |
void | set_visibility_radius (int r) |
Sets the visibility radius. More... | |
![]() | |
Namable (const string &initial_name="") | |
Namable (const Namable ©) | |
void | clear_name () |
Resets the Namable's name to empty. More... | |
const string & | get_name () const |
bool | has_name () const |
Returns true if the Namable has a nonempty name set, false if the name is empty. More... | |
Namable & | operator= (const Namable &other) |
void | output (ostream &out) const |
Outputs the Namable. More... | |
void | set_name (const string &name) |
Additional Inherited Members | |
![]() | |
static TypeHandle | get_class_type () |
static void | init_type () |
Converts a height field in the form of a greyscale image into a scene consisting of a number of GeomNodes.
The tesselation uses an LOD algorithm. You supply a "focal point" (X,Y) which tells the tesselator where the bulk of the detail should be concentrated. The intent is that as the player walks around the terrain, you should occasionally move the focal point to wherever the player is. You should not move the focal point every frame: tesselation is not that fast. Also, changing the focal point may cause popping, so it is best to minimize the number of changes. There are a number of parameters that you can use to control tesselation, such as a target polygon count, and a visibility radius.
The heightfield needs to be a multiple of 128 pixels in each dimension. It does not need to be square, and it does not need to be a power of two. For example, a 384 x 640 heightfield is fine. Be aware that tesselation time is proportional to heightfield area, so if you plan to use a size larger than about 512x512, it may be desirable to benchmark.
Altering parameters, such as the poly count, the view radius, or the focal point, does not alter any GeomNodes already generated. Parameter changes only affect subsequently-generated GeomNodes. It is possible to cache many different tesselations of the same terrain.
Definition at line 68 of file heightfieldTesselator.h.
NodePath HeightfieldTesselator::generate | ( | ) |
Generates a tree of nodes that represents the heightfield.
This can be reparented into the scene.
Definition at line 142 of file heightfieldTesselator.cxx.
References NodePath::attach_new_node(), PNMImageHeader::get_x_size(), and PNMImageHeader::get_y_size().
Referenced by get_elevation().
double HeightfieldTesselator::get_elevation | ( | double | x, |
double | y | ||
) |
Fetches the elevation at (x,y), where the input coordinate is specified in pixels.
This ignores the current tesselation level and instead provides an accurate number. Linear blending is used for non-integral coordinates.
Definition at line 75 of file heightfieldTesselator.cxx.
References GeomVertexWriter::add_data3(), generate(), PNMImage::get_gray(), PNMImageHeader::get_x_size(), PNMImageHeader::get_y_size(), and LVecBase3f::normalize().
|
inline |
Returns a reference to the heightfield (a PNMImage) contained inside the HeightfieldTesselator.
You can use the reference to alter the heightfield.
Definition at line 50 of file heightfieldTesselator.I.
References set_heightfield().
|
inline |
Sets the focal point.
The tesselator generates high-resolution terrain around the focal point, and progressively lower and lower resolution terrain as you get farther away. The units are in pixels.
Definition at line 107 of file heightfieldTesselator.I.
References set_horizontal_scale().
Referenced by set_visibility_radius().
|
inline |
Loads the specified greyscale image file into the heightfield.
Definition at line 61 of file heightfieldTesselator.I.
References PNMImage::read(), and set_poly_count().
Referenced by heightfield().
|
inline |
Sets the horizontal scale.
The default scale is 1.0, meaning that each pixel in the heightfield is 1x1 panda units wide.
Definition at line 120 of file heightfieldTesselator.I.
References set_vertical_scale().
Referenced by set_focal_point().
|
inline |
Sets the max triangles per geom.
Definition at line 142 of file heightfieldTesselator.I.
Referenced by set_vertical_scale().
|
inline |
Sets the polygon-count target.
The tesselator usually manages to come within about 20% of the target, plus or minus.
Definition at line 74 of file heightfieldTesselator.I.
References set_visibility_radius().
Referenced by set_heightfield().
|
inline |
Sets the vertical scale.
The default scale is 255.0, meaning that each as the gray value ranges from (0-1), the elevation ranges from (0-255) feet.
Definition at line 132 of file heightfieldTesselator.I.
References set_max_triangles().
Referenced by set_horizontal_scale().
|
inline |
Sets the visibility radius.
Polygons that are completely outside the radius (relative to the focal point) are cropped away. The cropping is imperfect (all approximations are conservative), so this should be used in conjunction with a far clipping plane, fog, or some other visibility limiting mechanism. The units are in pixels.
Definition at line 91 of file heightfieldTesselator.I.
References set_focal_point().
Referenced by set_poly_count().