]> git.mxchange.org Git - simgear.git/blob - simgear/scene/model/model.cxx
Jim Wilson:
[simgear.git] / simgear / scene / model / model.cxx
1 // model.cxx - manage a 3D aircraft model.
2 // Written by David Megginson, started 2002.
3 //
4 // This file is in the Public Domain, and comes with no warranty.
5
6 #ifdef HAVE_CONFIG_H
7 #include <simgear_config.h>
8 #endif
9
10 #include <simgear/compiler.h>
11
12 #include <string.h>             // for strcmp()
13
14 #include <vector>
15
16 #include <plib/sg.h>
17 #include <plib/ssg.h>
18 #include <plib/ul.h>
19
20 #include <simgear/misc/exception.hxx>
21 #include <simgear/misc/sg_path.hxx>
22 #include <simgear/props/props.hxx>
23 #include <simgear/props/props_io.hxx>
24
25 #include "animation.hxx"
26
27 #include "model.hxx"
28
29 SG_USING_STD(vector);
30
31
32 \f
33 ////////////////////////////////////////////////////////////////////////
34 // Static utility functions.
35 ////////////////////////////////////////////////////////////////////////
36
37 /**
38  * Callback to update an animation.
39  */
40 static int
41 animation_callback (ssgEntity * entity, int mask)
42 {
43     ((SGAnimation *)entity->getUserData())->update();
44     return true;
45 }
46
47
48 /**
49  * Locate a named SSG node in a branch.
50  */
51 static ssgEntity *
52 find_named_node (ssgEntity * node, const char * name)
53 {
54   char * node_name = node->getName();
55   if (node_name != 0 && !strcmp(name, node_name))
56     return node;
57   else if (node->isAKindOf(ssgTypeBranch())) {
58     int nKids = node->getNumKids();
59     for (int i = 0; i < nKids; i++) {
60       ssgEntity * result =
61         find_named_node(((ssgBranch*)node)->getKid(i), name);
62       if (result != 0)
63         return result;
64     }
65   } 
66   return 0;
67 }
68
69 /**
70  * Splice a branch in between all child nodes and their parents.
71  */
72 static void
73 splice_branch (ssgBranch * branch, ssgEntity * child)
74 {
75   int nParents = child->getNumParents();
76   branch->addKid(child);
77   for (int i = 0; i < nParents; i++) {
78     ssgBranch * parent = child->getParent(i);
79     parent->replaceKid(child, branch);
80   }
81 }
82
83 /**
84  * Make an offset matrix from rotations and position offset.
85  */
86 void
87 sgMakeOffsetsMatrix( sgMat4 * result, double h_rot, double p_rot, double r_rot,
88                      double x_off, double y_off, double z_off )
89 {
90   sgMat4 rot_matrix;
91   sgMat4 pos_matrix;
92   sgMakeRotMat4(rot_matrix, h_rot, p_rot, r_rot);
93   sgMakeTransMat4(pos_matrix, x_off, y_off, z_off);
94   sgMultMat4(*result, pos_matrix, rot_matrix);
95 }
96
97
98 void
99 sgMakeAnimation( ssgBranch * model,
100                  const char * name,
101                  vector<SGPropertyNode_ptr> &name_nodes,
102                  SGPropertyNode *prop_root,
103                  SGPropertyNode_ptr node,
104                  double sim_time_sec )
105 {
106   SGAnimation * animation = 0;
107   const char * type = node->getStringValue("type", "none");
108   if (!strcmp("none", type)) {
109     animation = new SGNullAnimation(node);
110   } else if (!strcmp("range", type)) {
111     animation = new SGRangeAnimation(node);
112   } else if (!strcmp("billboard", type)) {
113     animation = new SGBillboardAnimation(node);
114   } else if (!strcmp("select", type)) {
115     animation = new SGSelectAnimation(prop_root, node);
116   } else if (!strcmp("spin", type)) {
117     animation = new SGSpinAnimation(prop_root, node, sim_time_sec );
118   } else if (!strcmp("timed", type)) {
119     animation = new SGTimedAnimation(node);
120   } else if (!strcmp("rotate", type)) {
121     animation = new SGRotateAnimation(prop_root, node);
122   } else if (!strcmp("translate", type)) {
123     animation = new SGTranslateAnimation(prop_root, node);
124   } else if (!strcmp("texrotate", type)) {
125     animation = new SGTexRotateAnimation(prop_root, node);
126   } else if (!strcmp("textranslate", type)) {
127     animation = new SGTexTranslateAnimation(prop_root, node);
128   } else if (!strcmp("texmultiple", type)) {
129     animation = new SGTexMultipleAnimation(prop_root, node);
130   } else {
131     animation = new SGNullAnimation(node);
132     SG_LOG(SG_INPUT, SG_WARN, "Unknown animation type " << type);
133   }
134
135   if (name != 0)
136       animation->setName((char *)name);
137
138   ssgEntity * object;
139   if (name_nodes.size() > 0) {
140     object = find_named_node(model, name_nodes[0]->getStringValue());
141     if (object == 0) {
142       SG_LOG(SG_INPUT, SG_WARN, "Object " << name_nodes[0]->getStringValue()
143              << " not found");
144       delete animation;
145       animation = 0;
146     }
147   } else {
148     object = model;
149   }
150   
151   ssgBranch * branch = animation->getBranch();
152   splice_branch(branch, object);
153
154   for (unsigned int i = 1; i < name_nodes.size(); i++) {
155       const char * name = name_nodes[i]->getStringValue();
156       object = find_named_node(model, name);
157       if (object == 0) {
158           SG_LOG(SG_INPUT, SG_WARN, "Object " << name << " not found");
159           delete animation;
160           animation = 0;
161       }
162       ssgBranch * oldParent = object->getParent(0);
163       branch->addKid(object);
164       oldParent->removeKid(object);
165   }
166
167   animation->init();
168   branch->setUserData(animation);
169   branch->setTravCallback(SSG_CALLBACK_PRETRAV, animation_callback);
170 }
171
172
173
174 \f
175 ////////////////////////////////////////////////////////////////////////
176 // Global functions.
177 ////////////////////////////////////////////////////////////////////////
178
179 ssgBranch *
180 sgLoad3DModel( const string &fg_root, const string &path,
181                SGPropertyNode *prop_root,
182                double sim_time_sec )
183 {
184   ssgBranch * model = 0;
185   SGPropertyNode props;
186
187                                 // Load the 3D aircraft object itself
188   SGPath xmlpath;
189   SGPath modelpath = path;
190   if ( ulIsAbsolutePathName( path.c_str() ) ) {
191     xmlpath = modelpath;
192   }
193   else {
194     xmlpath = fg_root;
195     xmlpath.append(modelpath.str());
196   }
197
198                                 // Check for an XML wrapper
199   if (xmlpath.str().substr(xmlpath.str().size() - 4, 4) == ".xml") {
200     readProperties(xmlpath.str(), &props);
201     if (props.hasValue("/path")) {
202       modelpath = modelpath.dir();
203       modelpath.append(props.getStringValue("/path"));
204     } else {
205       if (model == 0)
206         model = new ssgBranch;
207     }
208   }
209
210                                 // Assume that textures are in
211                                 // the same location as the XML file.
212   if (model == 0) {
213     ssgTexturePath((char *)xmlpath.dir().c_str());
214     model = (ssgBranch *)ssgLoad((char *)modelpath.c_str());
215     if (model == 0)
216       throw sg_exception("Failed to load 3D model");
217   }
218
219                                 // Set up the alignment node
220   ssgTransform * alignmainmodel = new ssgTransform;
221   alignmainmodel->addKid(model);
222   sgMat4 res_matrix;
223   sgMakeOffsetsMatrix(&res_matrix,
224                       props.getFloatValue("/offsets/heading-deg", 0.0),
225                       props.getFloatValue("/offsets/roll-deg", 0.0),
226                       props.getFloatValue("/offsets/pitch-deg", 0.0),
227                       props.getFloatValue("/offsets/x-m", 0.0),
228                       props.getFloatValue("/offsets/y-m", 0.0),
229                       props.getFloatValue("/offsets/z-m", 0.0));
230   alignmainmodel->setTransform(res_matrix);
231
232   unsigned int i;
233
234                                 // Load animations
235   vector<SGPropertyNode_ptr> animation_nodes = props.getChildren("animation");
236   for (i = 0; i < animation_nodes.size(); i++) {
237     const char * name = animation_nodes[i]->getStringValue("name", 0);
238     vector<SGPropertyNode_ptr> name_nodes =
239       animation_nodes[i]->getChildren("object-name");
240     sgMakeAnimation( model, name, name_nodes, prop_root, animation_nodes[i],
241                      sim_time_sec);
242   }
243
244                                 // Load sub-models
245   vector<SGPropertyNode_ptr> model_nodes = props.getChildren("model");
246   for (i = 0; i < model_nodes.size(); i++) {
247     SGPropertyNode_ptr node = model_nodes[i];
248     ssgTransform * align = new ssgTransform;
249     sgMat4 res_matrix;
250     sgMakeOffsetsMatrix(&res_matrix,
251                         node->getFloatValue("offsets/heading-deg", 0.0),
252                         node->getFloatValue("offsets/roll-deg", 0.0),
253                         node->getFloatValue("offsets/pitch-deg", 0.0),
254                         node->getFloatValue("offsets/x-m", 0.0),
255                         node->getFloatValue("offsets/y-m", 0.0),
256                         node->getFloatValue("offsets/z-m", 0.0));
257     align->setTransform(res_matrix);
258
259     ssgBranch * kid = sgLoad3DModel( fg_root, node->getStringValue("path"),
260                                      prop_root, sim_time_sec );
261     align->addKid(kid);
262     model->addKid(align);
263   }
264
265   return alignmainmodel;
266 }
267
268
269 // end of model.cxx