![]() |
MAK RTIspy API Documentation for HLA 1.3
|
Inheritance diagram for BallController1516e:
Collaboration diagram for BallController1516e:Public Member Functions | |
| BallController1516e (BallMap *data, DdmRegionMap *regionData) | |
| virtual | ~BallController1516e () |
| virtual bool | createAndJoinFederation (const std::wstring &federation, const std::wstring &federateType, const std::wstring &federateName=std::wstring(), bool includeInterExt=false) |
| virtual bool | resignAndDestroyFederation () |
| virtual bool | subscribe () |
| virtual bool | unsubscribe () |
| virtual void | deleteBall (const std::wstring id) |
| virtual void | acquireBall (const std::wstring id) |
| virtual void | divestBall (const std::wstring id) |
| virtual bool | subscribeWithRegion (int xLowerBound, int yLowerBound, int xUpperBound, int yUpperBound) |
| virtual bool | unsubscribeWithRegions (bool resubscribeWithoutRegion) |
| void | nameReservationFailed (const std::wstring &name) |
| void | nameReservationSucceeded (const std::wstring &name) |
| void | ballDiscovered (ObjectParams1516e *objParams) |
| void | ballRemoved (rti1516e::ObjectInstanceHandle handle) |
| void | ballVisible (rti1516e::ObjectInstanceHandle handle) |
| void | ballNotVisible (rti1516e::ObjectInstanceHandle handle) |
| void | ballUpdated (rti1516e::ObjectInstanceHandle handle, const rti1516e::AttributeHandleValueMap &attrVals) |
| void | displayInteractionText (rti1516e::InteractionClassHandle handle, const rti1516e::ParameterHandleValueMap ¶mVals) |
| void | releaseOwnership (rti1516e::ObjectInstanceHandle theObject, rti1516e::AttributeHandleSet const &attributes) |
| void | ownershipAcquired (rti1516e::ObjectInstanceHandle theObject, rti1516e::AttributeHandleSet const &attributes) |
| void | assumeOwnership (rti1516e::ObjectInstanceHandle theObject, rti1516e::AttributeHandleSet const &attributes) |
| void | confirmDivestiture (rti1516e::ObjectInstanceHandle theObject, rti1516e::AttributeHandleSet const &attributes) |
| virtual void | setDimensions (int minX, int minY, int maxX, int maxY) |
| virtual const std::wstring & | federateId () const |
| virtual const std::wstring & | federateType () const |
| virtual const std::wstring & | federateName () const |
| virtual const std::wstring & | federationName () const |
| virtual bool | isFederateNameSupported () const |
| virtual bool | isInteractionExtensionSupported () const |
Protected Member Functions | |
| virtual void | sendUpdates () |
| virtual void | receiveUpdates () |
| virtual void | requestNewBall (Ball *ball, const std::wstring name) |
| void | setAttributesForBall (rti1516e::AttributeHandleValueMap &attrVals, const Ball *ball) |
| void | setBallFromAttributes (Ball *ball, const rti1516e::AttributeHandleValueMap &attrVals) |
| void | setTextEventFromParameters (TextEvent &textEvent, const rti1516e::ParameterHandleValueMap ¶mVals) |
| void | subscribeToDefaultRegion () |
| void | unsubscribeFromDefaultRegion (bool deleteDiscoveredBalls) |
| void | subscribeInteractionClass () |
| void | unsubscribeInteractionClass () |
| virtual void | deleteKnownBalls (bool deleteOwned, bool deleteOthers) |
| void | markBallsOutOfScope () |
| bool | createPublicationRegion (Ball *ball) |
| rti1516e::VariableLengthData | constructTag (const Ball *ball) const |
Protected Attributes | |
| BallMap | myUnnamedBalls |
| BallMap | myPendingBalls |
| std::auto_ptr < rti1516e::RTIambassador > | myRtiAmbassador |
| HlaBounceFederateAmbassador * | myFederateAmbassador |
| rti1516e::FederateHandle | myFederateHandle |
| std::wstring | myFederateHandleString |
| std::wstring | myFederateType |
| std::wstring | myFederationName |
| bool | myIsSubscribedToDefaultRegion |
| int | myDdmXRangeConv |
| int | myDdmYRangeConv |
| rti1516e::ObjectClassHandle | myBallClass |
| rti1516e::AttributeHandle | myColorAttr |
| rti1516e::AttributeHandle | mySizeAttr |
| rti1516e::AttributeHandle | myXAttr |
| rti1516e::AttributeHandle | myYAttr |
| rti1516e::AttributeHandle | mySpeedAttr |
| rti1516e::AttributeHandle | myDirectionAttr |
| rti1516e::AttributeHandleSet | myAllBallAttrs |
| rti1516e::AttributeHandle | myPrivToDeleteAttr |
| rti1516e::DimensionHandle | myXDim |
| rti1516e::DimensionHandle | myYDim |
| bool | myIsUsingInteractionModule |
| rti1516e::InteractionClassHandle | myTextClass |
| rti1516e::ParameterHandle | myTextParam |
| rti1516e::ParameterHandle | myTextXParam |
| rti1516e::ParameterHandle | myTextYParam |
| rti1516e::ParameterHandle | myTextSizeParam |
| rti1516e::ParameterHandle | myTextIntervalParam |
| rti1516e::ParameterHandleSet | myAllTextParams |
Static Protected Attributes | |
| static const std::wstring | theFddFile = "MakHlaBounce1516e.xml" |
| static const std::wstring | theBallClassName = "Ball" |
| static const std::wstring | theColorAttrName = "Color" |
| static const std::wstring | theSizeAttrName = "Size" |
| static const std::wstring | theXAttrName = "XLocation" |
| static const std::wstring | theYAttrName = "YLocation" |
| static const std::wstring | theSpeedAttrName = "Speed" |
| static const std::wstring | theDirectionAttrName = "Direction" |
| static const std::wstring | thePrivToDeleteAttrName = "HLAprivilegeToDeleteObject" |
| static const std::wstring | theXDimName = "X" |
| static const std::wstring | theYDimName = "Y" |
| static const std::wstring | theInteractionFomModule = "MakHlaBounceInter1516e.xml" |
| static const std::wstring | theTextClassName = "DisplayText" |
| static const std::wstring | theTextParamName = "Text" |
| static const std::wstring | theTextXParamName = "XLocation" |
| static const std::wstring | theTextYParamName = "YLocation" |
| static const std::wstring | theTextSizeParamName = "Size" |
| static const std::wstring | theTextIntervalParamName = "Interval" |
Private Member Functions | |
| BallController1516e () | |
| BallController1516e::BallController1516e | ( | BallMap * | data, |
| DdmRegionMap * | regionData | ||
| ) |
| BallController1516e::~BallController1516e | ( | ) | [virtual] |
| BallController1516e::BallController1516e | ( | ) | [private] |
| void BallController1516e::acquireBall | ( | const std::wstring | id | ) | [virtual] |
Implements BallController.
References constructTag(), ObjectParams1516e::instanceHandle(), Ball::isMine(), Ball::isVisible(), myAllBallAttrs, BallController::myBallData, BallController::myLog, BallController::myOwnershipTransferEnabled, myPrivToDeleteAttr, myRtiAmbassador, Ball::objectParams(), and rti1516e::Exception::what().
| void BallController1516e::assumeOwnership | ( | rti1516e::ObjectInstanceHandle | theObject, |
| rti1516e::AttributeHandleSet const & | attributes | ||
| ) |
| void BallController1516e::ballDiscovered | ( | ObjectParams1516e * | objParams | ) |
| void BallController1516e::ballNotVisible | ( | rti1516e::ObjectInstanceHandle | handle | ) |
References BallController::myBallData, and ObjectParams1516e::setIsInScope().
| void BallController1516e::ballRemoved | ( | rti1516e::ObjectInstanceHandle | handle | ) |
References BallController::myBallData.
| void BallController1516e::ballUpdated | ( | rti1516e::ObjectInstanceHandle | handle, |
| const rti1516e::AttributeHandleValueMap & | attrVals | ||
| ) |
References BallController::myBallData, and setBallFromAttributes().
| void BallController1516e::ballVisible | ( | rti1516e::ObjectInstanceHandle | handle | ) |
References BallController::myBallData, and ObjectParams1516e::setIsInScope().
| void BallController1516e::confirmDivestiture | ( | rti1516e::ObjectInstanceHandle | theObject, |
| rti1516e::AttributeHandleSet const & | attributes | ||
| ) |
| rti1516e::VariableLengthData BallController1516e::constructTag | ( | const Ball * | ball | ) | const [protected] |
References Ball::id().
Referenced by acquireBall(), confirmDivestiture(), deleteBall(), deleteKnownBalls(), divestBall(), and sendUpdates().
| bool BallController1516e::createAndJoinFederation | ( | const std::wstring & | federation, |
| const std::wstring & | federateType, | ||
| const std::wstring & | federateName = std::wstring(), |
||
| bool | includeInterExt = false |
||
| ) | [virtual] |
Implements BallController.
References federateType(), myAllBallAttrs, myAllTextParams, myBallClass, myColorAttr, BallController::myDdmEnabled, myDirectionAttr, myFederateHandle, myFederateHandleString, myFederateType, myFederationName, BallController::myIsConnected, BallController::myIsJoined, myIsUsingInteractionModule, BallController::myLog, BallController::myOwnershipTransferEnabled, myPrivToDeleteAttr, myRtiAmbassador, mySizeAttr, mySpeedAttr, myTextClass, myTextIntervalParam, myTextParam, myTextSizeParam, myTextXParam, myTextYParam, myXAttr, myXDim, myYAttr, myYDim, theBallClassName, theColorAttrName, theDirectionAttrName, theFddFile, theInteractionFomModule, thePrivToDeleteAttrName, theSizeAttrName, theSpeedAttrName, theTextClassName, theTextIntervalParamName, theTextParamName, theTextSizeParamName, theTextXParamName, theTextYParamName, theXAttrName, theXDimName, theYAttrName, theYDimName, and rti1516e::Exception::what().
| bool BallController1516e::createPublicationRegion | ( | Ball * | ball | ) | [protected] |
References ObjectParams1516e::instanceHandle(), myAllBallAttrs, myDdmXRangeConv, myDdmYRangeConv, BallController::myLog, myRtiAmbassador, myXDim, myYDim, Ball::objectParams(), rti1516e::RangeBounds::setLowerBound(), ObjectParams1516e::setRegionHandle(), rti1516e::RangeBounds::setUpperBound(), Ball::size(), rti1516e::Exception::what(), Ball::x(), and Ball::y().
Referenced by ownershipAcquired(), and sendUpdates().
| void BallController1516e::deleteBall | ( | const std::wstring | id | ) | [virtual] |
Implements BallController.
References constructTag(), ObjectParams1516e::instanceHandle(), Ball::isMine(), Ball::markForDeletion(), BallController::myBallData, BallController::myDdmEnabled, BallController::myLog, myRtiAmbassador, Ball::objectParams(), ObjectParams1516e::regionHandle(), and rti1516e::Exception::what().
| void BallController1516e::deleteKnownBalls | ( | bool | deleteOwned, |
| bool | deleteOthers | ||
| ) | [protected, virtual] |
References constructTag(), ObjectParams1516e::instanceHandle(), Ball::isMine(), Ball::markForDeletion(), BallController::myBallData, BallController::myDdmEnabled, BallController::myIsJoined, myRtiAmbassador, Ball::objectParams(), and ObjectParams1516e::regionHandle().
Referenced by resignAndDestroyFederation(), unsubscribeFromDefaultRegion(), and unsubscribeWithRegions().
| void BallController1516e::displayInteractionText | ( | rti1516e::InteractionClassHandle | handle, |
| const rti1516e::ParameterHandleValueMap & | paramVals | ||
| ) |
| void BallController1516e::divestBall | ( | const std::wstring | id | ) | [virtual] |
Implements BallController.
References constructTag(), ObjectParams1516e::instanceHandle(), Ball::isMine(), myAllBallAttrs, BallController::myBallData, BallController::myLog, BallController::myOwnershipTransferEnabled, myPrivToDeleteAttr, myRtiAmbassador, Ball::objectParams(), and rti1516e::Exception::what().
| const std::wstring & BallController1516e::federateId | ( | ) | const [virtual] |
Implements BallController.
References myFederateHandleString.
| const std::wstring & BallController1516e::federateName | ( | ) | const [virtual] |
Implements BallController.
| const std::wstring & BallController1516e::federateType | ( | ) | const [virtual] |
| const std::wstring & BallController1516e::federationName | ( | ) | const [virtual] |
Implements BallController.
References myFederationName.
| bool BallController1516e::isFederateNameSupported | ( | ) | const [virtual] |
Implements BallController.
| bool BallController1516e::isInteractionExtensionSupported | ( | ) | const [virtual] |
Implements BallController.
| void BallController1516e::markBallsOutOfScope | ( | ) | [protected] |
References Ball::isMine(), BallController::myBallData, Ball::objectParams(), ObjectParams1516e::setIsInScope(), and Ball::setVisible().
Referenced by unsubscribeFromDefaultRegion().
| void BallController1516e::nameReservationFailed | ( | const std::wstring & | name | ) |
References BallController::myLog, and myUnnamedBalls.
| void BallController1516e::nameReservationSucceeded | ( | const std::wstring & | name | ) |
References myPendingBalls, and myUnnamedBalls.
| void BallController1516e::ownershipAcquired | ( | rti1516e::ObjectInstanceHandle | theObject, |
| rti1516e::AttributeHandleSet const & | attributes | ||
| ) |
| void BallController1516e::receiveUpdates | ( | ) | [protected, virtual] |
Implements BallController.
References BallController::myIsJoined, and myRtiAmbassador.
| void BallController1516e::releaseOwnership | ( | rti1516e::ObjectInstanceHandle | theObject, |
| rti1516e::AttributeHandleSet const & | attributes | ||
| ) |
| void BallController1516e::requestNewBall | ( | Ball * | ball, |
| const std::wstring | name | ||
| ) | [protected, virtual] |
Implements BallController.
References myRtiAmbassador, and myUnnamedBalls.
| bool BallController1516e::resignAndDestroyFederation | ( | ) | [virtual] |
Implements BallController.
References rti1516e::DELETE_OBJECTS, deleteKnownBalls(), BallController::myDdmEnabled, myFederationName, BallController::myIsJoined, BallController::myIsSubscribed, myIsSubscribedToDefaultRegion, myIsUsingInteractionModule, BallController::myLog, myRtiAmbassador, and rti1516e::Exception::what().
Referenced by ~BallController1516e().
| void BallController1516e::sendUpdates | ( | ) | [protected, virtual] |
Implements BallController.
References constructTag(), createPublicationRegion(), Ball::id(), ObjectParams1516e::instanceHandle(), Ball::isMarkedForDeletion(), Ball::isMine(), Ball::markForDeletion(), myBallClass, BallController::myBallData, BallController::myDdmEnabled, myDdmXRangeConv, myDdmYRangeConv, BallController::myIsJoined, BallController::myIsSubscribed, myIsSubscribedToDefaultRegion, BallController::myLog, myPendingBalls, myRtiAmbassador, myXDim, myYDim, Ball::objectParams(), ObjectParams1516e::regionHandle(), setAttributesForBall(), ObjectParams1516e::setClassHandle(), ObjectParams1516e::setInstanceHandle(), ObjectParams1516e::setInstanceName(), rti1516e::RangeBounds::setLowerBound(), Ball::setObjectParams(), rti1516e::RangeBounds::setUpperBound(), Ball::size(), rti1516e::Exception::what(), Ball::x(), and Ball::y().
| void BallController1516e::setAttributesForBall | ( | rti1516e::AttributeHandleValueMap & | attrVals, |
| const Ball * | ball | ||
| ) | [protected] |
References Ball::color(), Ball::direction(), myColorAttr, myDirectionAttr, mySizeAttr, mySpeedAttr, myXAttr, myYAttr, Ball::size(), Ball::speed(), Ball::x(), and Ball::y().
Referenced by sendUpdates().
| void BallController1516e::setBallFromAttributes | ( | Ball * | ball, |
| const rti1516e::AttributeHandleValueMap & | attrVals | ||
| ) | [protected] |
References ObjectParams1516e::isInScope(), myColorAttr, myDirectionAttr, mySizeAttr, mySpeedAttr, myXAttr, myYAttr, Ball::objectParams(), Ball::setColor(), Ball::setDirection(), Ball::setSize(), Ball::setSpeed(), Ball::setVisible(), Ball::setX(), and Ball::setY().
Referenced by ballUpdated().
| void BallController1516e::setDimensions | ( | int | minX, |
| int | minY, | ||
| int | maxX, | ||
| int | maxY | ||
| ) | [virtual] |
Reimplemented from BallController.
References myDdmXRangeConv, and myDdmYRangeConv.
| void BallController1516e::setTextEventFromParameters | ( | TextEvent & | textEvent, |
| const rti1516e::ParameterHandleValueMap & | paramVals | ||
| ) | [protected] |
References myTextIntervalParam, myTextParam, myTextSizeParam, myTextXParam, myTextYParam, TextEvent::setInterval(), TextEvent::setSize(), TextEvent::setText(), TextEvent::setX(), and TextEvent::setY().
Referenced by displayInteractionText().
| bool BallController1516e::subscribe | ( | ) | [virtual] |
Implements BallController.
References myIsSubscribedToDefaultRegion, subscribeInteractionClass(), and subscribeToDefaultRegion().
| void BallController1516e::subscribeInteractionClass | ( | ) | [protected] |
References myIsUsingInteractionModule, BallController::myLog, myRtiAmbassador, myTextClass, and rti1516e::Exception::what().
Referenced by subscribe().
| void BallController1516e::subscribeToDefaultRegion | ( | ) | [protected] |
References myAllBallAttrs, myBallClass, BallController::myIsSubscribed, myIsSubscribedToDefaultRegion, BallController::myLog, myRtiAmbassador, and rti1516e::Exception::what().
Referenced by subscribe(), and unsubscribeWithRegions().
| bool BallController1516e::subscribeWithRegion | ( | int | xLowerBound, |
| int | yLowerBound, | ||
| int | xUpperBound, | ||
| int | yUpperBound | ||
| ) | [virtual] |
Implements BallController.
References DdmRegion1516e::id(), myAllBallAttrs, myBallClass, BallController::myDdmEnabled, myDdmXRangeConv, myDdmYRangeConv, BallController::myIsSubscribed, myIsSubscribedToDefaultRegion, BallController::myLog, BallController::myRegionData, myRtiAmbassador, myXDim, myYDim, DdmRegion1516e::setHandle(), rti1516e::RangeBounds::setLowerBound(), DdmRegion::setRangeBounds(), rti1516e::RangeBounds::setUpperBound(), unsubscribeFromDefaultRegion(), and rti1516e::Exception::what().
| bool BallController1516e::unsubscribe | ( | ) | [virtual] |
Implements BallController.
References BallController::myIsSubscribed, unsubscribeFromDefaultRegion(), unsubscribeInteractionClass(), and unsubscribeWithRegions().
| void BallController1516e::unsubscribeFromDefaultRegion | ( | bool | deleteDiscoveredBalls | ) | [protected] |
| void BallController1516e::unsubscribeInteractionClass | ( | ) | [protected] |
References myIsUsingInteractionModule, BallController::myLog, myRtiAmbassador, myTextClass, and rti1516e::Exception::what().
Referenced by unsubscribe().
| bool BallController1516e::unsubscribeWithRegions | ( | bool | resubscribeWithoutRegion | ) | [virtual] |
Implements BallController.
References deleteKnownBalls(), DdmRegion1516e::handle(), DdmRegion::markForDeletion(), myAllBallAttrs, myBallClass, BallController::myDdmEnabled, BallController::myIsSubscribed, myIsSubscribedToDefaultRegion, BallController::myLog, BallController::myRegionData, myRtiAmbassador, subscribeToDefaultRegion(), and rti1516e::Exception::what().
Referenced by unsubscribe().
Referenced by createAndJoinFederation(), and displayInteractionText().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
int BallController1516e::myDdmXRangeConv [protected] |
Referenced by createPublicationRegion(), sendUpdates(), setDimensions(), and subscribeWithRegion().
int BallController1516e::myDdmYRangeConv [protected] |
Referenced by createPublicationRegion(), sendUpdates(), setDimensions(), and subscribeWithRegion().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
Referenced by BallController1516e(), and ~BallController1516e().
Referenced by createAndJoinFederation().
std::wstring BallController1516e::myFederateHandleString [protected] |
Referenced by createAndJoinFederation(), and federateId().
std::wstring BallController1516e::myFederateType [protected] |
Referenced by createAndJoinFederation(), and federateType().
std::wstring BallController1516e::myFederationName [protected] |
Referenced by createAndJoinFederation(), federationName(), and resignAndDestroyFederation().
bool BallController1516e::myIsUsingInteractionModule [protected] |
BallMap BallController1516e::myPendingBalls [protected] |
Referenced by nameReservationSucceeded(), and sendUpdates().
Referenced by acquireBall(), createAndJoinFederation(), and divestBall().
std::auto_ptr< rti1516e::RTIambassador > BallController1516e::myRtiAmbassador [protected] |
Referenced by acquireBall(), assumeOwnership(), BallController1516e(), confirmDivestiture(), createAndJoinFederation(), createPublicationRegion(), deleteBall(), deleteKnownBalls(), divestBall(), receiveUpdates(), releaseOwnership(), requestNewBall(), resignAndDestroyFederation(), sendUpdates(), subscribeInteractionClass(), subscribeToDefaultRegion(), subscribeWithRegion(), unsubscribeFromDefaultRegion(), unsubscribeInteractionClass(), unsubscribeWithRegions(), and ~BallController1516e().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
Referenced by createAndJoinFederation(), and setTextEventFromParameters().
Referenced by createAndJoinFederation(), and setTextEventFromParameters().
Referenced by createAndJoinFederation(), and setTextEventFromParameters().
Referenced by createAndJoinFederation(), and setTextEventFromParameters().
Referenced by createAndJoinFederation(), and setTextEventFromParameters().
BallMap BallController1516e::myUnnamedBalls [protected] |
Referenced by nameReservationFailed(), nameReservationSucceeded(), and requestNewBall().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
rti1516e::DimensionHandle BallController1516e::myXDim [protected] |
Referenced by createAndJoinFederation(), createPublicationRegion(), sendUpdates(), and subscribeWithRegion().
Referenced by createAndJoinFederation(), setAttributesForBall(), and setBallFromAttributes().
rti1516e::DimensionHandle BallController1516e::myYDim [protected] |
Referenced by createAndJoinFederation(), createPublicationRegion(), sendUpdates(), and subscribeWithRegion().
const std::wstring BallController1516e::theBallClassName = "Ball" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theColorAttrName = "Color" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theDirectionAttrName = "Direction" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theFddFile = "MakHlaBounce1516e.xml" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theInteractionFomModule = "MakHlaBounceInter1516e.xml" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::thePrivToDeleteAttrName = "HLAprivilegeToDeleteObject" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theSizeAttrName = "Size" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theSpeedAttrName = "Speed" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextClassName = "DisplayText" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextIntervalParamName = "Interval" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextParamName = "Text" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextSizeParamName = "Size" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextXParamName = "XLocation" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theTextYParamName = "YLocation" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theXAttrName = "XLocation" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theXDimName = "X" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theYAttrName = "YLocation" [static, protected] |
Referenced by createAndJoinFederation().
const std::wstring BallController1516e::theYDimName = "Y" [static, protected] |
Referenced by createAndJoinFederation().