2002-02-23 21:20:00 +00:00
|
|
|
|
// model.cxx - manage a 3D aircraft model.
|
|
|
|
|
// Written by David Megginson, started 2002.
|
|
|
|
|
//
|
|
|
|
|
// This file is in the Public Domain, and comes with no warranty.
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
#include <string.h> // for strcmp()
|
|
|
|
|
|
2002-02-23 21:20:00 +00:00
|
|
|
|
#include <plib/sg.h>
|
|
|
|
|
#include <plib/ssg.h>
|
|
|
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
|
|
|
|
#include <simgear/debug/logstream.hxx>
|
2002-04-05 03:19:34 +00:00
|
|
|
|
#include <simgear/math/point3d.hxx>
|
|
|
|
|
#include <simgear/math/sg_geodesy.hxx>
|
2002-02-23 21:20:00 +00:00
|
|
|
|
#include <simgear/misc/exception.hxx>
|
2002-02-25 20:07:34 +00:00
|
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2002-02-23 21:20:00 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
#include <Main/globals.hxx>
|
|
|
|
|
#include <Scenery/scenery.hxx>
|
2002-02-23 21:20:00 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
#include "model.hxx"
|
2002-02-23 21:20:00 +00:00
|
|
|
|
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Static utility functions.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-03-27 14:52:19 +00:00
|
|
|
|
|
2002-04-01 14:00:08 +00:00
|
|
|
|
/**
|
|
|
|
|
* Locate a named SSG node in a branch.
|
|
|
|
|
*/
|
2002-02-23 21:20:00 +00:00
|
|
|
|
static ssgEntity *
|
2002-03-30 21:24:19 +00:00
|
|
|
|
find_named_node (ssgEntity * node, const char * name)
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
|
|
|
|
char * node_name = node->getName();
|
2002-03-30 21:24:19 +00:00
|
|
|
|
if (node_name != 0 && !strcmp(name, node_name))
|
2002-02-23 21:20:00 +00:00
|
|
|
|
return node;
|
|
|
|
|
else if (node->isAKindOf(ssgTypeBranch())) {
|
|
|
|
|
int nKids = node->getNumKids();
|
|
|
|
|
for (int i = 0; i < nKids; i++) {
|
|
|
|
|
ssgEntity * result =
|
|
|
|
|
find_named_node(((ssgBranch*)node)->getKid(i), name);
|
|
|
|
|
if (result != 0)
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2002-02-24 21:14:38 +00:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
/**
|
|
|
|
|
* Splice a branch in between all child nodes and their parents.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
splice_branch (ssgBranch * branch, ssgEntity * child)
|
|
|
|
|
{
|
|
|
|
|
int nParents = child->getNumParents();
|
|
|
|
|
branch->addKid(child);
|
|
|
|
|
for (int i = 0; i < nParents; i++) {
|
|
|
|
|
ssgBranch * parent = child->getParent(i);
|
|
|
|
|
parent->replaceKid(child, branch);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set up the transform matrix for a spin or rotation.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
set_rotation (sgMat4 &matrix, double position_deg,
|
|
|
|
|
sgVec3 ¢er, sgVec3 &axis)
|
|
|
|
|
{
|
|
|
|
|
float temp_angle = -position_deg * SG_DEGREES_TO_RADIANS ;
|
|
|
|
|
|
|
|
|
|
float s = (float) sin ( temp_angle ) ;
|
|
|
|
|
float c = (float) cos ( temp_angle ) ;
|
|
|
|
|
float t = SG_ONE - c ;
|
|
|
|
|
|
|
|
|
|
// axis was normalized at load time
|
|
|
|
|
// hint to the compiler to put these into FP registers
|
|
|
|
|
float x = axis[0];
|
|
|
|
|
float y = axis[1];
|
|
|
|
|
float z = axis[2];
|
|
|
|
|
|
|
|
|
|
matrix[0][0] = t * x * x + c ;
|
|
|
|
|
matrix[0][1] = t * y * x - s * z ;
|
|
|
|
|
matrix[0][2] = t * z * x + s * y ;
|
|
|
|
|
matrix[0][3] = SG_ZERO;
|
|
|
|
|
|
|
|
|
|
matrix[1][0] = t * x * y + s * z ;
|
|
|
|
|
matrix[1][1] = t * y * y + c ;
|
|
|
|
|
matrix[1][2] = t * z * y - s * x ;
|
|
|
|
|
matrix[1][3] = SG_ZERO;
|
|
|
|
|
|
|
|
|
|
matrix[2][0] = t * x * z - s * y ;
|
|
|
|
|
matrix[2][1] = t * y * z + s * x ;
|
|
|
|
|
matrix[2][2] = t * z * z + c ;
|
|
|
|
|
matrix[2][3] = SG_ZERO;
|
|
|
|
|
|
|
|
|
|
// hint to the compiler to put these into FP registers
|
|
|
|
|
x = center[0];
|
|
|
|
|
y = center[1];
|
|
|
|
|
z = center[2];
|
|
|
|
|
|
|
|
|
|
matrix[3][0] = x - x*matrix[0][0] - y*matrix[1][0] - z*matrix[2][0];
|
|
|
|
|
matrix[3][1] = y - x*matrix[0][1] - y*matrix[1][1] - z*matrix[2][1];
|
|
|
|
|
matrix[3][2] = z - x*matrix[0][2] - y*matrix[1][2] - z*matrix[2][2];
|
|
|
|
|
matrix[3][3] = SG_ONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set up the transform matrix for a translation.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
set_translation (sgMat4 &matrix, double position_m, sgVec3 &axis)
|
|
|
|
|
{
|
|
|
|
|
sgVec3 xyz;
|
|
|
|
|
sgScaleVec3(xyz, axis, position_m);
|
|
|
|
|
sgMakeTransMat4(matrix, xyz);
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-07 15:04:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* make model transformation Matrix - based on optimizations by NHV
|
|
|
|
|
*/
|
|
|
|
|
static void MakeTRANS( sgMat4 dst, const double Theta,
|
|
|
|
|
const double Phi, const double Psi,
|
|
|
|
|
const double lon, const double lat)
|
|
|
|
|
{
|
|
|
|
|
SGfloat cosTheta = (SGfloat) cos(Theta);
|
|
|
|
|
SGfloat sinTheta = (SGfloat) sin(Theta);
|
|
|
|
|
SGfloat cosPhi = (SGfloat) cos(Phi);
|
|
|
|
|
SGfloat sinPhi = (SGfloat) sin(Phi);
|
|
|
|
|
SGfloat sinPsi = (SGfloat) sin(Psi) ;
|
|
|
|
|
SGfloat cosPsi = (SGfloat) cos(Psi) ;
|
|
|
|
|
|
|
|
|
|
SGfloat cosLon = SGD_ONE;
|
|
|
|
|
SGfloat sinLon = SGD_ZERO;
|
|
|
|
|
SGfloat cosLat = SGD_ONE;
|
|
|
|
|
SGfloat sinLat = SGD_ZERO;
|
|
|
|
|
|
|
|
|
|
if ( lon != SG_ZERO ) {
|
|
|
|
|
sinLon = (SGfloat) sin( lon ) ;
|
|
|
|
|
cosLon = (SGfloat) cos( lon ) ;
|
|
|
|
|
}
|
|
|
|
|
if ( lat != SG_ZERO ) {
|
|
|
|
|
sinLat = (SGfloat) sin( lat ) ;
|
|
|
|
|
cosLat = (SGfloat) cos( lat ) ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sgMat4 tmp;
|
|
|
|
|
|
|
|
|
|
tmp[0][0] = cosPhi * cosTheta;
|
|
|
|
|
tmp[0][1] = sinPhi * cosPsi + cosPhi * -sinTheta * -sinPsi;
|
|
|
|
|
tmp[0][2] = sinPhi * sinPsi + cosPhi * -sinTheta * cosPsi;
|
|
|
|
|
|
|
|
|
|
tmp[1][0] = -sinPhi * cosTheta;
|
|
|
|
|
tmp[1][1] = cosPhi * cosPsi + -sinPhi * -sinTheta * -sinPsi;
|
|
|
|
|
tmp[1][2] = cosPhi * sinPsi + -sinPhi * -sinTheta * cosPsi;
|
|
|
|
|
|
|
|
|
|
tmp[2][0] = sinTheta;
|
|
|
|
|
tmp[2][1] = cosTheta * -sinPsi;
|
|
|
|
|
tmp[2][2] = cosTheta * cosPsi;
|
|
|
|
|
|
|
|
|
|
float a = cosLon * cosLat; // world up [0]
|
|
|
|
|
float b = -sinLon;
|
|
|
|
|
float c = sinLat * cosLon;
|
|
|
|
|
dst[2][0] = a*tmp[0][0] + b*tmp[0][1] + c*tmp[0][2] ;
|
|
|
|
|
dst[1][0] = a*tmp[1][0] + b*tmp[1][1] + c*tmp[1][2] ;
|
|
|
|
|
dst[0][0] = -(a*tmp[2][0] + b*tmp[2][1] + c*tmp[2][2]) ;
|
|
|
|
|
dst[3][0] = SG_ZERO ;
|
|
|
|
|
|
|
|
|
|
a = cosLat * sinLon; // world up [1]
|
|
|
|
|
b = cosLon;
|
|
|
|
|
c = sinLat * sinLon;
|
|
|
|
|
dst[2][1] = a*tmp[0][0] + b*tmp[0][1] + c*tmp[0][2] ;
|
|
|
|
|
dst[1][1] = a*tmp[1][0] + b*tmp[1][1] + c*tmp[1][2] ;
|
|
|
|
|
dst[0][1] = -(a*tmp[2][0] + b*tmp[2][1] + c*tmp[2][2]) ;
|
|
|
|
|
dst[3][1] = SG_ZERO ;
|
|
|
|
|
|
|
|
|
|
a = -sinLat; // world up [2]
|
|
|
|
|
c = cosLat;
|
|
|
|
|
dst[2][2] = a*tmp[0][0] + c*tmp[0][2] ;
|
|
|
|
|
dst[1][2] = a*tmp[1][0] + c*tmp[1][2] ;
|
|
|
|
|
dst[0][2] = -(a*tmp[2][0] + c*tmp[2][2]) ;
|
|
|
|
|
dst[3][2] = SG_ZERO ;
|
|
|
|
|
|
|
|
|
|
dst[2][3] = SG_ZERO ;
|
|
|
|
|
dst[1][3] = SG_ZERO ;
|
|
|
|
|
dst[0][3] = SG_ZERO ;
|
|
|
|
|
dst[3][3] = SG_ONE ;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// TODO: once this is working, look at Norm's optimized version
|
|
|
|
|
static void
|
|
|
|
|
world_coordinate( sgCoord *obj_pos,
|
|
|
|
|
double lat_deg, double lon_deg, double elev_ft,
|
|
|
|
|
double roll_deg, double pitch_deg, double hdg_deg)
|
|
|
|
|
{
|
2002-04-05 18:48:04 +00:00
|
|
|
|
// setup translation
|
|
|
|
|
double sea_level_radius_m;
|
|
|
|
|
double lat_geoc_rad;
|
|
|
|
|
|
|
|
|
|
// Convert from geodetic to geocentric
|
|
|
|
|
// coordinates.
|
|
|
|
|
sgGeodToGeoc(lat_deg * SGD_DEGREES_TO_RADIANS,
|
|
|
|
|
elev_ft * SG_FEET_TO_METER,
|
|
|
|
|
&sea_level_radius_m,
|
|
|
|
|
&lat_geoc_rad);
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
Point3D center = scenery.get_center();
|
|
|
|
|
|
2002-04-05 18:48:04 +00:00
|
|
|
|
Point3D geod = Point3D(lon_deg * SG_DEGREES_TO_RADIANS,
|
|
|
|
|
lat_geoc_rad,
|
|
|
|
|
sea_level_radius_m);
|
|
|
|
|
geod.setz(geod.radius() + elev_ft * SG_FEET_TO_METER);
|
2002-04-05 03:19:34 +00:00
|
|
|
|
|
2002-04-05 18:48:04 +00:00
|
|
|
|
Point3D world_pos = sgPolarToCart3d( geod );
|
2002-04-05 03:19:34 +00:00
|
|
|
|
Point3D offset = world_pos - center;
|
|
|
|
|
|
|
|
|
|
sgMat4 POS;
|
|
|
|
|
sgMakeTransMat4( POS, offset.x(), offset.y(), offset.z() );
|
|
|
|
|
|
2002-04-07 15:04:49 +00:00
|
|
|
|
sgMat4 TRANS;
|
2002-04-05 03:19:34 +00:00
|
|
|
|
|
2002-04-07 15:04:49 +00:00
|
|
|
|
MakeTRANS( TRANS, pitch_deg * SG_DEGREES_TO_RADIANS,
|
|
|
|
|
roll_deg * SG_DEGREES_TO_RADIANS,
|
|
|
|
|
-hdg_deg * SG_DEGREES_TO_RADIANS,
|
|
|
|
|
lon_deg * SG_DEGREES_TO_RADIANS,
|
|
|
|
|
-lat_deg * SG_DEGREES_TO_RADIANS );
|
2002-04-05 03:19:34 +00:00
|
|
|
|
|
|
|
|
|
sgPostMultMat4( TRANS, POS );
|
|
|
|
|
|
|
|
|
|
sgSetCoord( obj_pos, TRANS );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel
|
2002-03-30 21:24:19 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-03-27 14:52:19 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::FG3DModel ()
|
2002-02-27 12:46:38 +00:00
|
|
|
|
: _model(0),
|
2002-02-23 21:20:00 +00:00
|
|
|
|
_selector(new ssgSelector),
|
2002-02-26 00:10:06 +00:00
|
|
|
|
_position(new ssgTransform)
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::~FG3DModel ()
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
|
|
|
|
// since the nodes are attached to the scene graph, they'll be
|
|
|
|
|
// deleted automatically
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < _animations.size(); i++) {
|
|
|
|
|
Animation * tmp = _animations[i];
|
|
|
|
|
_animations[i] = 0;
|
|
|
|
|
delete tmp;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::init (const string &path)
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
2002-02-27 12:46:38 +00:00
|
|
|
|
SGPropertyNode props;
|
|
|
|
|
|
2002-02-23 21:20:00 +00:00
|
|
|
|
// Load the 3D aircraft object itself
|
2002-03-20 22:40:11 +00:00
|
|
|
|
SGPath xmlpath = globals->get_fg_root();
|
2002-04-05 03:19:34 +00:00
|
|
|
|
SGPath modelpath = path;
|
2002-03-20 22:40:11 +00:00
|
|
|
|
xmlpath.append(modelpath.str());
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Check for an XML wrapper
|
2002-03-20 22:40:11 +00:00
|
|
|
|
if (xmlpath.str().substr(xmlpath.str().size() - 4, 4) == ".xml") {
|
|
|
|
|
readProperties(xmlpath.str(), &props);
|
2002-02-27 12:46:38 +00:00
|
|
|
|
if (props.hasValue("/path")) {
|
2002-03-20 22:40:11 +00:00
|
|
|
|
modelpath = modelpath.dir();
|
|
|
|
|
modelpath.append(props.getStringValue("/path"));
|
2002-02-25 20:07:34 +00:00
|
|
|
|
} else {
|
2002-04-05 03:19:34 +00:00
|
|
|
|
throw sg_exception("No path for model");
|
2002-02-25 20:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Assume that textures are in
|
|
|
|
|
// the same location as the XML file.
|
2002-03-20 22:40:11 +00:00
|
|
|
|
ssgTexturePath((char *)xmlpath.dir().c_str());
|
|
|
|
|
_model = ssgLoad((char *)modelpath.c_str());
|
2002-04-05 03:19:34 +00:00
|
|
|
|
if (_model == 0)
|
|
|
|
|
throw sg_exception("Failed to load 3D model");
|
2002-02-23 21:20:00 +00:00
|
|
|
|
|
2002-02-26 00:10:06 +00:00
|
|
|
|
// Load animations
|
2002-03-30 21:24:19 +00:00
|
|
|
|
vector<SGPropertyNode *> animation_nodes = props.getChildren("animation");
|
2002-03-04 15:46:44 +00:00
|
|
|
|
for (unsigned int i = 0; i < animation_nodes.size(); i++) {
|
2002-02-27 20:32:24 +00:00
|
|
|
|
vector<SGPropertyNode *> name_nodes =
|
|
|
|
|
animation_nodes[i]->getChildren("object-name");
|
|
|
|
|
if (name_nodes.size() < 1) {
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "No object-name given for transformation");
|
|
|
|
|
} else {
|
2002-03-04 15:46:44 +00:00
|
|
|
|
for (unsigned int j = 0; j < name_nodes.size(); j++) {
|
2002-03-30 21:24:19 +00:00
|
|
|
|
Animation * animation =
|
|
|
|
|
make_animation(name_nodes[j]->getStringValue(), animation_nodes[i]);
|
|
|
|
|
if (animation != 0)
|
|
|
|
|
_animations.push_back(animation);
|
2002-02-27 20:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set up the alignment node
|
|
|
|
|
ssgTransform * align = new ssgTransform;
|
2002-02-26 00:10:06 +00:00
|
|
|
|
align->addKid(_model);
|
2002-02-23 21:20:00 +00:00
|
|
|
|
sgMat4 rot_matrix;
|
|
|
|
|
sgMat4 off_matrix;
|
|
|
|
|
sgMat4 res_matrix;
|
2002-02-27 12:46:38 +00:00
|
|
|
|
float h_rot = props.getFloatValue("/offsets/heading-deg", 0.0);
|
|
|
|
|
float p_rot = props.getFloatValue("/offsets/roll-deg", 0.0);
|
|
|
|
|
float r_rot = props.getFloatValue("/offsets/pitch-deg", 0.0);
|
|
|
|
|
float x_off = props.getFloatValue("/offsets/x-m", 0.0);
|
|
|
|
|
float y_off = props.getFloatValue("/offsets/y-m", 0.0);
|
|
|
|
|
float z_off = props.getFloatValue("/offsets/z-m", 0.0);
|
2002-02-23 21:20:00 +00:00
|
|
|
|
sgMakeRotMat4(rot_matrix, h_rot, p_rot, r_rot);
|
|
|
|
|
sgMakeTransMat4(off_matrix, x_off, y_off, z_off);
|
|
|
|
|
sgMultMat4(res_matrix, off_matrix, rot_matrix);
|
|
|
|
|
align->setTransform(res_matrix);
|
|
|
|
|
|
|
|
|
|
// Set up the position node
|
|
|
|
|
_position->addKid(align);
|
|
|
|
|
|
|
|
|
|
// Set up the selector node
|
|
|
|
|
_selector->addKid(_position);
|
|
|
|
|
_selector->clrTraversalMaskBits(SSGTRAV_HOT);
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
void
|
|
|
|
|
FG3DModel::update (int dt)
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
2002-04-05 03:19:34 +00:00
|
|
|
|
for (unsigned int i = 0; i < _animations.size(); i++)
|
|
|
|
|
_animations[i]->update(dt);
|
|
|
|
|
|
|
|
|
|
_selector->select(true);
|
|
|
|
|
|
|
|
|
|
sgCoord obj_pos;
|
|
|
|
|
world_coordinate(&obj_pos, _lat_deg, _lon_deg, _elev_ft,
|
|
|
|
|
_roll_deg, _pitch_deg, _heading_deg);
|
|
|
|
|
_position->setTransform(&obj_pos);
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
bool
|
|
|
|
|
FG3DModel::getVisible () const
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
2002-04-05 03:19:34 +00:00
|
|
|
|
return _selector->getSelect();
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::setVisible (bool visible)
|
2002-02-23 21:20:00 +00:00
|
|
|
|
{
|
2002-04-05 03:19:34 +00:00
|
|
|
|
_selector->select(visible);
|
|
|
|
|
}
|
2002-03-25 14:32:13 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
void
|
|
|
|
|
FG3DModel::setPosition (double lon_deg, double lat_deg, double elev_ft)
|
|
|
|
|
{
|
|
|
|
|
_lon_deg = lon_deg;
|
|
|
|
|
_lat_deg = lat_deg;
|
|
|
|
|
_elev_ft = elev_ft;
|
|
|
|
|
}
|
2002-03-05 13:39:45 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
void
|
|
|
|
|
FG3DModel::setOrientation (double roll_deg, double pitch_deg,
|
|
|
|
|
double heading_deg)
|
|
|
|
|
{
|
|
|
|
|
_roll_deg = roll_deg;
|
|
|
|
|
_pitch_deg = pitch_deg;
|
|
|
|
|
_heading_deg = heading_deg;
|
2002-02-26 00:10:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::Animation *
|
|
|
|
|
FG3DModel::make_animation (const char * object_name,
|
2002-03-30 21:24:19 +00:00
|
|
|
|
SGPropertyNode * node)
|
2002-02-26 00:10:06 +00:00
|
|
|
|
{
|
2002-03-30 21:24:19 +00:00
|
|
|
|
Animation * animation = 0;
|
|
|
|
|
const char * type = node->getStringValue("type");
|
|
|
|
|
if (!strcmp("none", type)) {
|
|
|
|
|
animation = new NullAnimation();
|
2002-04-01 14:00:08 +00:00
|
|
|
|
} else if (!strcmp("select", type)) {
|
|
|
|
|
animation = new SelectAnimation();
|
2002-03-30 21:24:19 +00:00
|
|
|
|
} else if (!strcmp("spin", type)) {
|
|
|
|
|
animation = new SpinAnimation();
|
|
|
|
|
} else if (!strcmp("rotate", type)) {
|
|
|
|
|
animation = new RotateAnimation();
|
|
|
|
|
} else if (!strcmp("translate", type)) {
|
|
|
|
|
animation = new TranslateAnimation();
|
2002-02-27 20:32:24 +00:00
|
|
|
|
} else {
|
2002-03-30 21:24:19 +00:00
|
|
|
|
animation = new NullAnimation();
|
|
|
|
|
SG_LOG(SG_INPUT, SG_WARN, "Unknown animation type " << type);
|
2002-02-27 20:32:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
ssgEntity * object = find_named_node(_model, object_name);
|
|
|
|
|
if (object == 0) {
|
|
|
|
|
SG_LOG(SG_INPUT, SG_WARN, "Object " << object_name << " not found");
|
|
|
|
|
delete animation;
|
|
|
|
|
animation = 0;
|
2002-02-26 00:10:06 +00:00
|
|
|
|
} else {
|
2002-03-30 21:24:19 +00:00
|
|
|
|
animation->init(object, node);
|
2002-02-26 00:10:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
return animation;
|
|
|
|
|
}
|
2002-02-26 00:10:06 +00:00
|
|
|
|
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::Animation
|
2002-03-30 21:24:19 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::Animation::Animation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::Animation::~Animation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::NullAnimation
|
2002-03-30 21:24:19 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::NullAnimation::NullAnimation ()
|
2002-04-01 14:00:08 +00:00
|
|
|
|
: _branch(new ssgBranch)
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2002-02-26 14:30:04 +00:00
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::NullAnimation::~NullAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
2002-04-01 14:00:08 +00:00
|
|
|
|
_branch = 0;
|
2002-03-30 21:24:19 +00:00
|
|
|
|
}
|
2002-02-27 12:46:38 +00:00
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::NullAnimation::init (ssgEntity * object,
|
2002-04-01 14:00:08 +00:00
|
|
|
|
SGPropertyNode * props)
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
2002-04-01 14:00:08 +00:00
|
|
|
|
splice_branch(_branch, object);
|
|
|
|
|
_branch->setName(props->getStringValue("name", 0));
|
2002-02-26 00:10:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::NullAnimation::update (int dt)
|
2002-02-26 00:10:06 +00:00
|
|
|
|
{
|
2002-02-23 21:20:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-25 22:01:13 +00:00
|
|
|
|
|
2002-04-01 14:00:08 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::SelectAnimation
|
2002-04-01 14:00:08 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SelectAnimation::SelectAnimation ()
|
2002-04-01 14:00:08 +00:00
|
|
|
|
: _condition(0),
|
|
|
|
|
_selector(new ssgSelector)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SelectAnimation::~SelectAnimation ()
|
2002-04-01 14:00:08 +00:00
|
|
|
|
{
|
|
|
|
|
delete _condition;
|
|
|
|
|
_selector = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SelectAnimation::init (ssgEntity * object,
|
2002-04-01 14:00:08 +00:00
|
|
|
|
SGPropertyNode * props)
|
|
|
|
|
{
|
|
|
|
|
splice_branch(_selector, object);
|
|
|
|
|
_selector->setName(props->getStringValue("name", 0));
|
|
|
|
|
SGPropertyNode * node = props->getChild("condition");
|
|
|
|
|
if (node != 0) {
|
|
|
|
|
_condition = fgReadCondition(node);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SelectAnimation::update (int dt)
|
2002-04-01 14:00:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (_condition != 0 && _condition->test())
|
|
|
|
|
_selector->select(0xffff);
|
|
|
|
|
else
|
|
|
|
|
_selector->select(0x0000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-25 22:01:13 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::SpinAnimation
|
2002-03-25 22:01:13 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SpinAnimation::SpinAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
: _prop(0),
|
|
|
|
|
_factor(0),
|
|
|
|
|
_position_deg(0),
|
|
|
|
|
_transform(new ssgTransform)
|
2002-03-25 22:01:13 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SpinAnimation::~SpinAnimation ()
|
2002-03-25 22:01:13 +00:00
|
|
|
|
{
|
2002-03-30 21:24:19 +00:00
|
|
|
|
_transform = 0;
|
2002-03-25 22:01:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-27 12:46:38 +00:00
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SpinAnimation::init (ssgEntity * object,
|
2002-03-30 21:24:19 +00:00
|
|
|
|
SGPropertyNode * props)
|
2002-02-27 12:46:38 +00:00
|
|
|
|
{
|
2002-03-30 21:24:19 +00:00
|
|
|
|
// Splice in the new transform node
|
|
|
|
|
splice_branch(_transform, object);
|
2002-04-01 14:00:08 +00:00
|
|
|
|
_transform->setName(props->getStringValue("name", 0));
|
2002-03-30 21:24:19 +00:00
|
|
|
|
_prop = fgGetNode(props->getStringValue("property", "/null"), true);
|
|
|
|
|
_factor = props->getDoubleValue("factor", 1.0);
|
|
|
|
|
_position_deg = props->getDoubleValue("starting-position-deg", 0);
|
|
|
|
|
_center[0] = props->getFloatValue("center/x-m", 0);
|
|
|
|
|
_center[1] = props->getFloatValue("center/y-m", 0);
|
|
|
|
|
_center[2] = props->getFloatValue("center/z-m", 0);
|
|
|
|
|
_axis[0] = props->getFloatValue("axis/x", 0);
|
|
|
|
|
_axis[1] = props->getFloatValue("axis/y", 0);
|
|
|
|
|
_axis[2] = props->getFloatValue("axis/z", 0);
|
|
|
|
|
sgNormalizeVec3(_axis);
|
|
|
|
|
}
|
2002-02-27 12:46:38 +00:00
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::SpinAnimation::update (int dt)
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
float velocity_rpms = (_prop->getDoubleValue() * _factor / 60000.0);
|
|
|
|
|
_position_deg += (dt * velocity_rpms * 360);
|
|
|
|
|
while (_position_deg < 0)
|
|
|
|
|
_position_deg += 360.0;
|
|
|
|
|
while (_position_deg >= 360.0)
|
|
|
|
|
_position_deg -= 360.0;
|
|
|
|
|
set_rotation(_matrix, _position_deg, _center, _axis);
|
|
|
|
|
_transform->setTransform(_matrix);
|
|
|
|
|
}
|
2002-02-27 12:46:38 +00:00
|
|
|
|
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::RotateAnimation
|
2002-03-30 21:24:19 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::RotateAnimation::RotateAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
: _prop(0),
|
|
|
|
|
_offset_deg(0.0),
|
|
|
|
|
_factor(1.0),
|
|
|
|
|
_has_min(false),
|
|
|
|
|
_min_deg(0.0),
|
|
|
|
|
_has_max(false),
|
|
|
|
|
_max_deg(1.0),
|
|
|
|
|
_position_deg(0.0),
|
|
|
|
|
_transform(new ssgTransform)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::RotateAnimation::~RotateAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
_transform = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::RotateAnimation::init (ssgEntity * object,
|
2002-03-30 21:24:19 +00:00
|
|
|
|
SGPropertyNode * props)
|
|
|
|
|
{
|
|
|
|
|
// Splice in the new transform node
|
|
|
|
|
splice_branch(_transform, object);
|
2002-04-01 14:00:08 +00:00
|
|
|
|
_transform->setName(props->getStringValue("name", 0));
|
2002-03-30 21:24:19 +00:00
|
|
|
|
_prop = fgGetNode(props->getStringValue("property", "/null"), true);
|
|
|
|
|
_offset_deg = props->getDoubleValue("offset-deg", 0.0);
|
|
|
|
|
_factor = props->getDoubleValue("factor", 1.0);
|
|
|
|
|
if (props->hasValue("min-deg")) {
|
|
|
|
|
_has_min = true;
|
|
|
|
|
_min_deg = props->getDoubleValue("min-deg");
|
|
|
|
|
}
|
|
|
|
|
if (props->hasValue("max-deg")) {
|
|
|
|
|
_has_max = true;
|
|
|
|
|
_max_deg = props->getDoubleValue("max-deg");
|
|
|
|
|
}
|
|
|
|
|
_position_deg = props->getDoubleValue("starting-position-deg", 0);
|
|
|
|
|
_center[0] = props->getFloatValue("center/x-m", 0);
|
|
|
|
|
_center[1] = props->getFloatValue("center/y-m", 0);
|
|
|
|
|
_center[2] = props->getFloatValue("center/z-m", 0);
|
|
|
|
|
_axis[0] = props->getFloatValue("axis/x", 0);
|
|
|
|
|
_axis[1] = props->getFloatValue("axis/y", 0);
|
|
|
|
|
_axis[2] = props->getFloatValue("axis/z", 0);
|
|
|
|
|
sgNormalizeVec3(_axis);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::RotateAnimation::update (int dt)
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
_position_deg = ((_prop->getDoubleValue() + _offset_deg) * _factor);
|
|
|
|
|
if (_has_min && _position_deg < _min_deg)
|
|
|
|
|
_position_deg = _min_deg;
|
|
|
|
|
if (_has_max && _position_deg > _max_deg)
|
|
|
|
|
_position_deg = _max_deg;
|
|
|
|
|
set_rotation(_matrix, _position_deg, _center, _axis);
|
|
|
|
|
_transform->setTransform(_matrix);
|
2002-02-27 12:46:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-30 21:24:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-04-05 03:19:34 +00:00
|
|
|
|
// Implementation of FG3DModel::TranslateAnimation
|
2002-03-30 21:24:19 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::TranslateAnimation::TranslateAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
: _prop(0),
|
|
|
|
|
_offset_m(0.0),
|
|
|
|
|
_factor(1.0),
|
|
|
|
|
_has_min(false),
|
|
|
|
|
_min_m(0.0),
|
|
|
|
|
_has_max(false),
|
|
|
|
|
_max_m(1.0),
|
|
|
|
|
_position_m(0.0),
|
|
|
|
|
_transform(new ssgTransform)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::TranslateAnimation::~TranslateAnimation ()
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
_transform = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::TranslateAnimation::init (ssgEntity * object,
|
2002-03-30 21:24:19 +00:00
|
|
|
|
SGPropertyNode * props)
|
|
|
|
|
{
|
|
|
|
|
// Splice in the new transform node
|
|
|
|
|
splice_branch(_transform, object);
|
2002-04-01 14:00:08 +00:00
|
|
|
|
_transform->setName(props->getStringValue("name", 0));
|
2002-03-30 21:24:19 +00:00
|
|
|
|
_prop = fgGetNode(props->getStringValue("property", "/null"), true);
|
|
|
|
|
_offset_m = props->getDoubleValue("offset-m", 0.0);
|
|
|
|
|
_factor = props->getDoubleValue("factor", 1.0);
|
|
|
|
|
if (props->hasValue("min-m")) {
|
|
|
|
|
_has_min = true;
|
|
|
|
|
_min_m = props->getDoubleValue("min-m");
|
|
|
|
|
}
|
|
|
|
|
if (props->hasValue("max-m")) {
|
|
|
|
|
_has_max = true;
|
|
|
|
|
_max_m = props->getDoubleValue("max-m");
|
|
|
|
|
}
|
|
|
|
|
_position_m = props->getDoubleValue("starting-position-m", 0);
|
|
|
|
|
_axis[0] = props->getFloatValue("axis/x", 0);
|
|
|
|
|
_axis[1] = props->getFloatValue("axis/y", 0);
|
|
|
|
|
_axis[2] = props->getFloatValue("axis/z", 0);
|
|
|
|
|
sgNormalizeVec3(_axis);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-04-05 03:19:34 +00:00
|
|
|
|
FG3DModel::TranslateAnimation::update (int dt)
|
2002-03-30 21:24:19 +00:00
|
|
|
|
{
|
|
|
|
|
_position_m = ((_prop->getDoubleValue() + _offset_m) * _factor);
|
|
|
|
|
if (_has_min && _position_m < _min_m)
|
|
|
|
|
_position_m = _min_m;
|
|
|
|
|
if (_has_max && _position_m > _max_m)
|
|
|
|
|
_position_m = _max_m;
|
|
|
|
|
set_translation(_matrix, _position_m, _axis);
|
|
|
|
|
_transform->setTransform(_matrix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-02-23 21:20:00 +00:00
|
|
|
|
// end of model.cxx
|
2002-04-07 15:04:49 +00:00
|
|
|
|
|
|
|
|
|
|