62 SetTransformType(FGForce::tCustom);
73 element = thruster_element->
FindElement(
"location");
75 else cerr <<
fgred <<
" No thruster location found." <<
reset << endl;
77 SetLocation(location);
79 string property_name, base_property_name;
80 base_property_name = CreateIndexedPropertyName(
"propulsion/engine", EngineNum);
82 property_name = base_property_name +
"/x-reference-position";
83 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetLocationX);
84 property_name = base_property_name +
"/y-reference-position";
85 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetLocationY);
86 property_name = base_property_name +
"/z-reference-position";
87 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetLocationZ);
88 property_name = base_property_name +
"/x-position";
89 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetActingLocationX, &FGForce::SetActingLocationX);
90 property_name = base_property_name +
"/y-position";
91 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetActingLocationY, &FGForce::SetActingLocationY);
92 property_name = base_property_name +
"/z-position";
93 PropertyManager->Tie(property_name.c_str(), (
FGForce*)
this, &FGForce::GetActingLocationZ, &FGForce::SetActingLocationZ);
95 element = thruster_element->
FindElement(
"pointing");
102 mT(1,1) = pointing(1);
103 mT(2,1) = pointing(2);
104 mT(3,1) = pointing(3);
111 SetAnglesToBody(orientation);
112 property_name = base_property_name +
"/pitch-angle-rad";
113 PropertyManager->Tie( property_name.c_str(), (
FGForce *)
this, &FGForce::GetPitch, &FGForce::SetPitch);
114 property_name = base_property_name +
"/yaw-angle-rad";
115 PropertyManager->Tie( property_name.c_str(), (
FGForce *)
this, &FGForce::GetYaw, &FGForce::SetYaw);
120 property_name = base_property_name +
"/reverser-angle-rad";
121 PropertyManager->Tie( property_name.c_str(), (
FGThruster *)
this, &FGThruster::GetReverserAngle,
122 &FGThruster::SetReverserAngle);