Mathias Frhlich:
We should now be able to find wires or catapults when the ac3d model is loaded without the crease patch (caused by the much more unstructured scene graph emitted by the old loader). It should also emit more warnings if the carrier hardware configuration includes conflicting definitions. That code is the most intrusive one, it should not be used until you configure an aircraft carrier as a aimodel. So I think it should be save to apply that before the release too.
This commit is contained in:
parent
afe94f63ea
commit
499c702ffb
2 changed files with 102 additions and 44 deletions
|
@ -92,7 +92,7 @@ bool FGAICarrier::init() {
|
|||
// Attach a pointer to this carrier class to those objects.
|
||||
mark_wires(sel, wire_objects);
|
||||
mark_cat(sel, catapult_objects);
|
||||
mark_solid(sel, solid_objects, false);
|
||||
mark_solid(sel, solid_objects);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -129,14 +129,18 @@ void FGAICarrier::mark_nohot(ssgEntity* e) {
|
|||
}
|
||||
}
|
||||
|
||||
bool FGAICarrier::mark_wires(ssgEntity* e, const list<string>& wire_objects) {
|
||||
bool FGAICarrier::mark_wires(ssgEntity* e, const list<string>& wire_objects, bool mark) {
|
||||
bool found = false;
|
||||
if (e->isAKindOf(ssgTypeBranch())) {
|
||||
|
||||
ssgBranch* br = (ssgBranch*)e;
|
||||
ssgEntity* kid;
|
||||
|
||||
list<string>::const_iterator it;
|
||||
for (it = wire_objects.begin(); it != wire_objects.end(); ++it)
|
||||
mark = mark || (e->getName() && (*it) == e->getName());
|
||||
|
||||
for ( kid = br->getKid(0); kid != NULL ; kid = br->getNextKid() )
|
||||
found = mark_wires(kid, wire_objects) || found;
|
||||
found = mark_wires(kid, wire_objects, mark) || found;
|
||||
|
||||
if (found)
|
||||
br->setTraversalMaskBits(SSGTRAV_HOT);
|
||||
|
@ -144,19 +148,34 @@ bool FGAICarrier::mark_wires(ssgEntity* e, const list<string>& wire_objects) {
|
|||
} else if (e->isAKindOf(ssgTypeLeaf())) {
|
||||
list<string>::const_iterator it;
|
||||
for (it = wire_objects.begin(); it != wire_objects.end(); ++it) {
|
||||
if (e->getName() && (*it) == e->getName()) {
|
||||
if (mark || (e->getName() && (*it) == e->getName())) {
|
||||
e->setTraversalMaskBits(SSGTRAV_HOT);
|
||||
ssgBase* ud = e->getUserData();
|
||||
if (ud) {
|
||||
FGAICarrierHardware* ch = dynamic_cast<FGAICarrierHardware*>(ud);
|
||||
if (ch) {
|
||||
SG_LOG(SG_GENERAL, SG_WARN,
|
||||
"AICarrier: Carrier hardware gets marked twice!\n"
|
||||
" You have propably a whole branch marked as"
|
||||
" a wire which also includes other carrier hardware."
|
||||
);
|
||||
} else {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT,
|
||||
"AICarrier: Found user data attached to a leaf node which "
|
||||
"should be marked as a wire!\n ****Skipping!****");
|
||||
}
|
||||
} else {
|
||||
e->setUserData( FGAICarrierHardware::newWire( this ) );
|
||||
ssgLeaf *l = (ssgLeaf*)e;
|
||||
if ( l->getNumLines() != 1 ) {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT,
|
||||
"AICarrier: Found wires not modelled with exactly one line!");
|
||||
}
|
||||
|
||||
found = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return found;
|
||||
}
|
||||
|
||||
|
@ -168,7 +187,7 @@ bool FGAICarrier::mark_solid(ssgEntity* e, const list<string>& solid_objects, bo
|
|||
|
||||
list<string>::const_iterator it;
|
||||
for (it = solid_objects.begin(); it != solid_objects.end(); ++it)
|
||||
mark = mark || e->getName() && (*it) == e->getName();
|
||||
mark = mark || (e->getName() && (*it) == e->getName());
|
||||
|
||||
for ( kid = br->getKid(0); kid != NULL ; kid = br->getNextKid() )
|
||||
found = mark_solid(kid, solid_objects, mark) || found;
|
||||
|
@ -181,21 +200,42 @@ bool FGAICarrier::mark_solid(ssgEntity* e, const list<string>& solid_objects, bo
|
|||
for (it = solid_objects.begin(); it != solid_objects.end(); ++it) {
|
||||
if (mark || (e->getName() && (*it) == e->getName())) {
|
||||
e->setTraversalMaskBits(SSGTRAV_HOT);
|
||||
ssgBase* ud = e->getUserData();
|
||||
if (ud) {
|
||||
FGAICarrierHardware* ch = dynamic_cast<FGAICarrierHardware*>(ud);
|
||||
if (ch) {
|
||||
SG_LOG(SG_GENERAL, SG_WARN,
|
||||
"AICarrier: Carrier hardware gets marked twice!\n"
|
||||
" You have propably a whole branch marked solid"
|
||||
" which also includes other carrier hardware."
|
||||
);
|
||||
} else {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT,
|
||||
"AICarrier: Found user data attached to a leaf node which "
|
||||
"should be marked solid!\n ****Skipping!****");
|
||||
}
|
||||
} else {
|
||||
e->setUserData( FGAICarrierHardware::newSolid( this ) );
|
||||
found = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return found;
|
||||
}
|
||||
|
||||
bool FGAICarrier::mark_cat(ssgEntity* e, const list<string>& cat_objects) {
|
||||
bool FGAICarrier::mark_cat(ssgEntity* e, const list<string>& cat_objects, bool mark) {
|
||||
bool found = false;
|
||||
if (e->isAKindOf(ssgTypeBranch())) {
|
||||
ssgBranch* br = (ssgBranch*)e;
|
||||
ssgEntity* kid;
|
||||
|
||||
list<string>::const_iterator it;
|
||||
for (it = cat_objects.begin(); it != cat_objects.end(); ++it)
|
||||
mark = mark || (e->getName() && (*it) == e->getName());
|
||||
|
||||
for ( kid = br->getKid(0); kid != NULL ; kid = br->getNextKid() )
|
||||
found = mark_cat(kid, cat_objects) || found;
|
||||
found = mark_cat(kid, cat_objects, mark) || found;
|
||||
|
||||
if (found)
|
||||
br->setTraversalMaskBits(SSGTRAV_HOT);
|
||||
|
@ -203,20 +243,36 @@ bool FGAICarrier::mark_cat(ssgEntity* e, const list<string>& cat_objects) {
|
|||
} else if (e->isAKindOf(ssgTypeLeaf())) {
|
||||
list<string>::const_iterator it;
|
||||
for (it = cat_objects.begin(); it != cat_objects.end(); ++it) {
|
||||
if (e->getName() && (*it) == e->getName()) {
|
||||
if (mark || (e->getName() && (*it) == e->getName())) {
|
||||
e->setTraversalMaskBits(SSGTRAV_HOT);
|
||||
ssgBase* ud = e->getUserData();
|
||||
if (ud) {
|
||||
FGAICarrierHardware* ch = dynamic_cast<FGAICarrierHardware*>(ud);
|
||||
if (ch) {
|
||||
SG_LOG(SG_GENERAL, SG_WARN,
|
||||
"AICarrier: Carrier hardware gets marked twice!\n"
|
||||
" You have propably a whole branch marked as"
|
||||
" a catapult which also includes other carrier hardware."
|
||||
);
|
||||
} else {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT,
|
||||
"AICarrier: Found user data attached to a leaf node which "
|
||||
"should be marked as a catapult!\n ****Skipping!****");
|
||||
}
|
||||
} else {
|
||||
e->setUserData( FGAICarrierHardware::newCatapult( this ) );
|
||||
ssgLeaf *l = (ssgLeaf*)e;
|
||||
if ( l->getNumLines() != 1 ) {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT,
|
||||
"AICarrier: Found a cat not modelled with exactly one line!");
|
||||
}
|
||||
"AICarrier: Found a cat not modelled with exactly "
|
||||
"one line!");
|
||||
} else {
|
||||
// Now some special code to make sure the cat points in the right
|
||||
// direction. The 0 index must be the backward end, the 1 index
|
||||
// the forward end.
|
||||
// Forward is positive x-direction in our 3D model, also the model
|
||||
// as such is flattened when it is loaded, so we do not need to care
|
||||
// for transforms ...
|
||||
// as such is flattened when it is loaded, so we do not need to
|
||||
// care for transforms ...
|
||||
short v[2];
|
||||
l->getLine(0, v, v+1 );
|
||||
sgVec3 ends[2];
|
||||
|
@ -233,6 +289,8 @@ bool FGAICarrier::mark_cat(ssgEntity* e, const list<string>& cat_objects) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return found;
|
||||
}
|
||||
|
||||
|
|
|
@ -90,9 +90,9 @@ private:
|
|||
|
||||
void update(double dt);
|
||||
void mark_nohot(ssgEntity*);
|
||||
bool mark_wires(ssgEntity*, const list<string>&);
|
||||
bool mark_cat(ssgEntity*, const list<string>&);
|
||||
bool mark_solid(ssgEntity*, const list<string>&, bool);
|
||||
bool mark_wires(ssgEntity*, const list<string>&, bool = false);
|
||||
bool mark_cat(ssgEntity*, const list<string>&, bool = false);
|
||||
bool mark_solid(ssgEntity*, const list<string>&, bool = false);
|
||||
|
||||
list<string> solid_objects; // List of solid object names
|
||||
list<string> wire_objects; // List of wire object names
|
||||
|
|
Loading…
Reference in a new issue