sceneObject.cpp 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) 2012 GarageGames, LLC
  3. //
  4. // Permission is hereby granted, free of charge, to any person obtaining a copy
  5. // of this software and associated documentation files (the "Software"), to
  6. // deal in the Software without restriction, including without limitation the
  7. // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8. // sell copies of the Software, and to permit persons to whom the Software is
  9. // furnished to do so, subject to the following conditions:
  10. //
  11. // The above copyright notice and this permission notice shall be included in
  12. // all copies or substantial portions of the Software.
  13. //
  14. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. // IN THE SOFTWARE.
  21. //-----------------------------------------------------------------------------
  22. //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
  23. // Arcane-FX for MIT Licensed Open Source version of Torque 3D from GarageGames
  24. // Copyright (C) 2015 Faust Logic, Inc.
  25. //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
  26. #include "platform/platform.h"
  27. #include "scene/sceneObject.h"
  28. #include "platform/profiler.h"
  29. #include "console/consoleTypes.h"
  30. #include "console/engineAPI.h"
  31. #include "console/simPersistID.h"
  32. #include "sim/netConnection.h"
  33. #include "core/stream/bitStream.h"
  34. #include "scene/sceneManager.h"
  35. #include "scene/sceneTracker.h"
  36. #include "scene/sceneRenderState.h"
  37. #include "scene/zones/sceneZoneSpace.h"
  38. #include "collision/extrudedPolyList.h"
  39. #include "collision/earlyOutPolyList.h"
  40. #include "collision/optimizedPolyList.h"
  41. #include "math/mPolyhedron.h"
  42. #include "gfx/bitmap/gBitmap.h"
  43. #include "math/util/frustum.h"
  44. #include "math/mathIO.h"
  45. #include "math/mTransform.h"
  46. #include "T3D/gameBase/gameProcess.h"
  47. #include "T3D/gameBase/gameConnection.h"
  48. #include "T3D/accumulationVolume.h"
  49. IMPLEMENT_CONOBJECT(SceneObject);
  50. ConsoleDocClass( SceneObject,
  51. "@brief A networkable object that exists in the 3D world.\n\n"
  52. "The SceneObject class provides the foundation for 3D objects in the Engine. It "
  53. "exposes the functionality for:\n\n"
  54. "<ul><li>Position, rotation and scale within the world.</li>"
  55. "<li>Working with a scene graph (in the Zone and Portal sections), allowing efficient "
  56. "and robust rendering of the game scene.</li>"
  57. "<li>Various helper functions, including functions to get bounding information "
  58. "and momentum/velocity.</li>"
  59. "<li>Mounting one SceneObject to another.</li>"
  60. "<li>An interface for collision detection, as well as ray casting.</li>"
  61. "<li>Lighting. SceneObjects can register lights both at lightmap generation "
  62. "time, and dynamic lights at runtime (for special effects, such as from flame "
  63. "or a projectile, or from an explosion).</li></ul>\n\n"
  64. "You do not typically work with SceneObjects themselves. The SceneObject provides a reference "
  65. "within the game world (the scene), but does not render to the client on its own. The "
  66. "same is true of collision detection beyond that of the bounding box. Instead you "
  67. "use one of the many classes that derrive from SceneObject, such as TSStatic.\n\n"
  68. "@section SceneObject_Hiding Difference Between setHidden() and isRenderEnabled\n\n"
  69. "When it comes time to decide if a SceneObject should render or not, there are two "
  70. "methods that can stop the SceneObject from rendering at all. You need to be aware of "
  71. "the differences between these two methods as they impact how the SceneObject is networked "
  72. "from the server to the client.\n\n"
  73. "The first method of manually controlling if a SceneObject is rendered is through its "
  74. "SceneObject::isRenderEnabled property. When set to false the SceneObject is considered invisible but "
  75. "still present within the scene. This means it still takes part in collisions and continues "
  76. "to be networked.\n\n"
  77. "The second method is using the setHidden() method. This will actually remove a SceneObject "
  78. "from the scene and it will no longer be networked from the server to the cleint. Any client-side "
  79. "ghost of the object will be deleted as the server no longer considers the object to be in scope.\n\n"
  80. "@ingroup gameObjects\n"
  81. );
  82. #ifdef TORQUE_TOOLS
  83. extern bool gEditingMission;
  84. #endif
  85. Signal< void( SceneObject* ) > SceneObject::smSceneObjectAdd;
  86. Signal< void( SceneObject* ) > SceneObject::smSceneObjectRemove;
  87. //-----------------------------------------------------------------------------
  88. SceneObject::SceneObject()
  89. {
  90. mContainer = 0;
  91. mTypeMask = DefaultObjectType;
  92. mCollisionCount = 0;
  93. mGlobalBounds = false;
  94. mObjScale.set(1,1,1);
  95. mObjToWorld.identity();
  96. mLastXform.identity();
  97. mWorldToObj.identity();
  98. mObjBox = Box3F(Point3F(0, 0, 0), Point3F(0, 0, 0));
  99. mWorldBox = Box3F(Point3F(0, 0, 0), Point3F(0, 0, 0));
  100. mWorldSphere = SphereF(Point3F(0, 0, 0), 0);
  101. mRenderObjToWorld.identity();
  102. mRenderWorldToObj.identity();
  103. mRenderWorldBox = Box3F(Point3F(0, 0, 0), Point3F(0, 0, 0));
  104. mRenderWorldSphere = SphereF(Point3F(0, 0, 0), 0);
  105. mContainerSeqKey = 0;
  106. mBinRefHead = NULL;
  107. mSceneManager = NULL;
  108. mNumCurrZones = 0;
  109. mZoneRefHead = NULL;
  110. mZoneRefDirty = false;
  111. mBinMinX = 0xFFFFFFFF;
  112. mBinMaxX = 0xFFFFFFFF;
  113. mBinMinY = 0xFFFFFFFF;
  114. mBinMaxY = 0xFFFFFFFF;
  115. mLightPlugin = NULL;
  116. mMount.object = NULL;
  117. mMount.link = NULL;
  118. mMount.list = NULL;
  119. mMount.node = -1;
  120. mMount.xfm = MatrixF::Identity;
  121. mMountPID = NULL;
  122. mSceneObjectLinks = NULL;
  123. mObjectFlags.set( RenderEnabledFlag | SelectionEnabledFlag );
  124. // PATHSHAPE
  125. // init the scenegraph relationships to indicate no parent, no children, and no siblings
  126. mGraph.parent = NULL;
  127. mGraph.nextSibling = NULL;
  128. mGraph.firstChild = NULL;
  129. mGraph.objToParent.identity();
  130. // PATHSHAPE END
  131. mIsScopeAlways = false;
  132. mAccuTex = NULL;
  133. mSelectionFlags = 0;
  134. mPathfindingIgnore = false;
  135. mGameObjectAssetId = StringTable->insert("");
  136. mDirtyGameObject = false;
  137. }
  138. //-----------------------------------------------------------------------------
  139. SceneObject::~SceneObject()
  140. {
  141. AssertFatal( mZoneRefHead == NULL && mBinRefHead == NULL,
  142. "SceneObject::~SceneObject - Object still linked in reference lists!");
  143. AssertFatal( !mSceneObjectLinks,
  144. "SceneObject::~SceneObject() - object is still linked to SceneTrackers" );
  145. mAccuTex = NULL;
  146. unlink();
  147. }
  148. //-----------------------------------------------------------------------------
  149. bool SceneObject::castRayRendered(const Point3F &start, const Point3F &end, RayInfo *info)
  150. {
  151. // By default, all ray checking against the rendered mesh will be passed
  152. // on to the collision mesh. This saves having to define both methods
  153. // for simple objects.
  154. return castRay( start, end, info );
  155. }
  156. //-----------------------------------------------------------------------------
  157. bool SceneObject::containsPoint( const Point3F& point )
  158. {
  159. // If it's not in the AABB, then it can't be in the OBB either,
  160. // so early out.
  161. if( !mWorldBox.isContained( point ) )
  162. return false;
  163. // Transform point into object space and test it against
  164. // our object space bounding box.
  165. Point3F objPoint( 0, 0, 0 );
  166. getWorldTransform().mulP( point, &objPoint );
  167. objPoint.convolveInverse( getScale() );
  168. return ( mObjBox.isContained( objPoint ) );
  169. }
  170. //-----------------------------------------------------------------------------
  171. bool SceneObject::collideBox(const Point3F &start, const Point3F &end, RayInfo *info)
  172. {
  173. const F32 * pStart = (const F32*)start;
  174. const F32 * pEnd = (const F32*)end;
  175. const F32 * pMin = (const F32*)mObjBox.minExtents;
  176. const F32 * pMax = (const F32*)mObjBox.maxExtents;
  177. F32 maxStartTime = -1;
  178. F32 minEndTime = 1;
  179. F32 startTime;
  180. F32 endTime;
  181. // used for getting normal
  182. U32 hitIndex = 0xFFFFFFFF;
  183. U32 side;
  184. // walk the axis
  185. for(U32 i = 0; i < 3; i++)
  186. {
  187. //
  188. if(pStart[i] < pEnd[i])
  189. {
  190. if(pEnd[i] < pMin[i] || pStart[i] > pMax[i])
  191. return(false);
  192. F32 dist = pEnd[i] - pStart[i];
  193. startTime = (pStart[i] < pMin[i]) ? (pMin[i] - pStart[i]) / dist : -1;
  194. endTime = (pEnd[i] > pMax[i]) ? (pMax[i] - pStart[i]) / dist : 1;
  195. side = 1;
  196. }
  197. else
  198. {
  199. if(pStart[i] < pMin[i] || pEnd[i] > pMax[i])
  200. return(false);
  201. F32 dist = pStart[i] - pEnd[i];
  202. startTime = (pStart[i] > pMax[i]) ? (pStart[i] - pMax[i]) / dist : -1;
  203. endTime = (pEnd[i] < pMin[i]) ? (pStart[i] - pMin[i]) / dist : 1;
  204. side = 0;
  205. }
  206. //
  207. if(startTime > maxStartTime)
  208. {
  209. maxStartTime = startTime;
  210. hitIndex = i * 2 + side;
  211. }
  212. if(endTime < minEndTime)
  213. minEndTime = endTime;
  214. if(minEndTime < maxStartTime)
  215. return(false);
  216. }
  217. // fail if inside
  218. if(maxStartTime < 0.f)
  219. return(false);
  220. //
  221. static Point3F boxNormals[] = {
  222. Point3F( 1, 0, 0),
  223. Point3F(-1, 0, 0),
  224. Point3F( 0, 1, 0),
  225. Point3F( 0,-1, 0),
  226. Point3F( 0, 0, 1),
  227. Point3F( 0, 0,-1),
  228. };
  229. //
  230. AssertFatal(hitIndex != 0xFFFFFFFF, "SceneObject::collideBox");
  231. info->t = maxStartTime;
  232. info->object = this;
  233. mObjToWorld.mulV(boxNormals[hitIndex], &info->normal);
  234. info->material = 0;
  235. return(true);
  236. }
  237. //-----------------------------------------------------------------------------
  238. void SceneObject::disableCollision()
  239. {
  240. for (SceneObject* ptr = getMountList(); ptr; ptr = ptr->getMountLink())
  241. ptr->disableCollision();
  242. mCollisionCount++;
  243. AssertFatal(mCollisionCount < 50, "SceneObject::disableCollision called 50 times on the same object. Is this inside a circular loop?" );
  244. }
  245. //-----------------------------------------------------------------------------
  246. void SceneObject::enableCollision()
  247. {
  248. for (SceneObject* ptr = getMountList(); ptr; ptr = ptr->getMountLink())
  249. ptr->enableCollision();
  250. if (mCollisionCount)
  251. --mCollisionCount;
  252. }
  253. //-----------------------------------------------------------------------------
  254. bool SceneObject::onAdd()
  255. {
  256. if ( !Parent::onAdd() )
  257. return false;
  258. mIsScopeAlways = mNetFlags.test( ScopeAlways );
  259. mWorldToObj = mObjToWorld;
  260. mWorldToObj.affineInverse();
  261. resetWorldBox();
  262. setRenderTransform(mObjToWorld);
  263. resolveMountPID();
  264. smSceneObjectAdd.trigger(this);
  265. return true;
  266. }
  267. //-----------------------------------------------------------------------------
  268. void SceneObject::onRemove()
  269. {
  270. smSceneObjectRemove.trigger(this);
  271. unmount();
  272. plUnlink();
  273. Parent::onRemove();
  274. // PATHSHAPE
  275. if ( getParent() != NULL) attachToParent( NULL);
  276. // PATHSHAPE END
  277. }
  278. //-----------------------------------------------------------------------------
  279. void SceneObject::addToScene()
  280. {
  281. if( mSceneManager )
  282. return;
  283. if( isClientObject() )
  284. gClientSceneGraph->addObjectToScene( this );
  285. else
  286. gServerSceneGraph->addObjectToScene( this );
  287. }
  288. //-----------------------------------------------------------------------------
  289. void SceneObject::removeFromScene()
  290. {
  291. if( !mSceneManager )
  292. return;
  293. mSceneManager->removeObjectFromScene( this );
  294. }
  295. //-----------------------------------------------------------------------------
  296. void SceneObject::onDeleteNotify( SimObject *obj )
  297. {
  298. // We are comparing memory addresses so even if obj really is not a
  299. // ProcessObject this cast shouldn't break anything.
  300. if ( obj == mAfterObject )
  301. mAfterObject = NULL;
  302. if ( obj == mMount.object )
  303. unmount();
  304. Parent::onDeleteNotify( obj );
  305. }
  306. //-----------------------------------------------------------------------------
  307. void SceneObject::inspectPostApply()
  308. {
  309. if( isServerObject() )
  310. setMaskBits( MountedMask );
  311. Parent::inspectPostApply();
  312. }
  313. //-----------------------------------------------------------------------------
  314. void SceneObject::setGlobalBounds()
  315. {
  316. mGlobalBounds = true;
  317. mObjBox.minExtents.set( -1e10, -1e10, -1e10 );
  318. mObjBox.maxExtents.set( 1e10, 1e10, 1e10 );
  319. if( mSceneManager )
  320. mSceneManager->notifyObjectDirty( this );
  321. }
  322. //-----------------------------------------------------------------------------
  323. void SceneObject::setTransform( const MatrixF& mat )
  324. {
  325. // This test is a bit expensive so turn it off in release.
  326. #ifdef TORQUE_DEBUG
  327. //AssertFatal( mat.isAffine(), "SceneObject::setTransform() - Bad transform (non affine)!" );
  328. #endif
  329. PROFILE_SCOPE( SceneObject_setTransform );
  330. // PATHSHAPE
  331. UpdateXformChange(mat);
  332. PerformUpdatesForChildren(mat);
  333. // PATHSHAPE END
  334. // Update the transforms.
  335. mObjToWorld = mWorldToObj = mat;
  336. mWorldToObj.affineInverse();
  337. // Update the world-space AABB.
  338. resetWorldBox();
  339. // If we're in a SceneManager, sync our scene state.
  340. if( mSceneManager != NULL )
  341. mSceneManager->notifyObjectDirty( this );
  342. setRenderTransform( mat );
  343. }
  344. //-----------------------------------------------------------------------------
  345. void SceneObject::setScale( const VectorF &scale )
  346. {
  347. AssertFatal( !mIsNaN( scale ), "SceneObject::setScale() - The scale is NaN!" );
  348. // Avoid unnecessary scaling operations.
  349. if ( mObjScale.equal( scale ) )
  350. return;
  351. mObjScale = scale;
  352. setTransform(MatrixF(mObjToWorld));
  353. // Make sure that any subclasses of me get a chance to react to the
  354. // scale being changed.
  355. onScaleChanged();
  356. setMaskBits( ScaleMask );
  357. }
  358. void SceneObject::setForwardVector(VectorF newForward, VectorF upVector)
  359. {
  360. MatrixF mat = getTransform();
  361. VectorF up(0.0f, 0.0f, 1.0f);
  362. VectorF axisX;
  363. VectorF axisY = newForward;
  364. VectorF axisZ;
  365. if (upVector != VectorF::Zero)
  366. up = upVector;
  367. // Validate and normalize input:
  368. F32 lenSq;
  369. lenSq = axisY.lenSquared();
  370. if (lenSq < 0.000001f)
  371. {
  372. axisY.set(0.0f, 1.0f, 0.0f);
  373. Con::errorf("SceneObject::setForwardVector() - degenerate forward vector");
  374. }
  375. else
  376. {
  377. axisY /= mSqrt(lenSq);
  378. }
  379. lenSq = up.lenSquared();
  380. if (lenSq < 0.000001f)
  381. {
  382. up.set(0.0f, 0.0f, 1.0f);
  383. Con::errorf("SceneObject::setForwardVector() - degenerate up vector - too small");
  384. }
  385. else
  386. {
  387. up /= mSqrt(lenSq);
  388. }
  389. if (fabsf(mDot(up, axisY)) > 0.9999f)
  390. {
  391. Con::errorf("SceneObject::setForwardVector() - degenerate up vector - same as forward");
  392. // I haven't really tested this, but i think it generates something which should be not parallel to the previous vector:
  393. F32 tmp = up.x;
  394. up.x = -up.y;
  395. up.y = up.z;
  396. up.z = tmp;
  397. }
  398. // construct the remaining axes:
  399. mCross(axisY, up, &axisX);
  400. mCross(axisX, axisY, &axisZ);
  401. mat.setColumn(0, axisX);
  402. mat.setColumn(1, axisY);
  403. mat.setColumn(2, axisZ);
  404. setTransform(mat);
  405. }
  406. //-----------------------------------------------------------------------------
  407. void SceneObject::resetWorldBox()
  408. {
  409. AssertFatal(mObjBox.isValidBox(), "SceneObject::resetWorldBox - Bad object box!");
  410. mWorldBox = mObjBox;
  411. mWorldBox.minExtents.convolve(mObjScale);
  412. mWorldBox.maxExtents.convolve(mObjScale);
  413. mObjToWorld.mul(mWorldBox);
  414. AssertFatal(mWorldBox.isValidBox(), "SceneObject::resetWorldBox - Bad world box!");
  415. // Create mWorldSphere from mWorldBox
  416. mWorldBox.getCenter(&mWorldSphere.center);
  417. mWorldSphere.radius = (mWorldBox.maxExtents - mWorldSphere.center).len();
  418. // Update tracker links.
  419. for( SceneObjectLink* link = mSceneObjectLinks; link != NULL;
  420. link = link->getNextLink() )
  421. link->update();
  422. }
  423. //-----------------------------------------------------------------------------
  424. void SceneObject::resetObjectBox()
  425. {
  426. AssertFatal( mWorldBox.isValidBox(), "SceneObject::resetObjectBox - Bad world box!" );
  427. mObjBox = mWorldBox;
  428. mWorldToObj.mul( mObjBox );
  429. Point3F objScale( mObjScale );
  430. objScale.setMax( Point3F( (F32)POINT_EPSILON, (F32)POINT_EPSILON, (F32)POINT_EPSILON ) );
  431. mObjBox.minExtents.convolveInverse( objScale );
  432. mObjBox.maxExtents.convolveInverse( objScale );
  433. AssertFatal( mObjBox.isValidBox(), "SceneObject::resetObjectBox - Bad object box!" );
  434. // Update the mWorldSphere from mWorldBox
  435. mWorldBox.getCenter( &mWorldSphere.center );
  436. mWorldSphere.radius = ( mWorldBox.maxExtents - mWorldSphere.center ).len();
  437. // Update scene managers.
  438. for( SceneObjectLink* link = mSceneObjectLinks; link != NULL;
  439. link = link->getNextLink() )
  440. link->update();
  441. }
  442. //-----------------------------------------------------------------------------
  443. void SceneObject::setRenderTransform(const MatrixF& mat)
  444. {
  445. PROFILE_START(SceneObj_setRenderTransform);
  446. mRenderObjToWorld = mRenderWorldToObj = mat;
  447. mRenderWorldToObj.affineInverse();
  448. AssertFatal(mObjBox.isValidBox(), "Bad object box!");
  449. resetRenderWorldBox();
  450. PROFILE_END();
  451. }
  452. //-----------------------------------------------------------------------------
  453. void SceneObject::resetRenderWorldBox()
  454. {
  455. AssertFatal( mObjBox.isValidBox(), "Bad object box!" );
  456. mRenderWorldBox = mObjBox;
  457. mRenderWorldBox.minExtents.convolve( mObjScale );
  458. mRenderWorldBox.maxExtents.convolve( mObjScale );
  459. mRenderObjToWorld.mul( mRenderWorldBox );
  460. AssertFatal( mRenderWorldBox.isValidBox(), "Bad world box!" );
  461. // Create mRenderWorldSphere from mRenderWorldBox.
  462. mRenderWorldBox.getCenter( &mRenderWorldSphere.center );
  463. mRenderWorldSphere.radius = ( mRenderWorldBox.maxExtents - mRenderWorldSphere.center ).len();
  464. }
  465. //-----------------------------------------------------------------------------
  466. void SceneObject::setHidden( bool hidden )
  467. {
  468. if( hidden != isHidden() )
  469. {
  470. // Add/remove the object from the scene. Removing it
  471. // will also cause the NetObject to go out of scope since
  472. // the container query will not find it anymore. However,
  473. // ScopeAlways objects need to be treated separately as we
  474. // do next.
  475. if( !hidden )
  476. addToScene();
  477. else
  478. removeFromScene();
  479. // ScopeAlways objects stay in scope no matter what, i.e. even
  480. // if they aren't in the scene query anymore. So, to force ghosts
  481. // to go away, we need to clear ScopeAlways while we are hidden.
  482. if( hidden && mIsScopeAlways )
  483. clearScopeAlways();
  484. else if( !hidden && mIsScopeAlways )
  485. setScopeAlways();
  486. Parent::setHidden( hidden );
  487. }
  488. }
  489. //-----------------------------------------------------------------------------
  490. void SceneObject::initPersistFields()
  491. {
  492. docsURL;
  493. //Disabled temporarily
  494. /*addGroup("GameObject");
  495. addField("GameObject", TypeGameObjectAssetPtr, Offset(mGameObjectAsset, SceneObject), "The asset Id used for the game object this entity is based on.");
  496. addField("dirtyGameObject", TypeBool, Offset(mDirtyGameObject, SceneObject), "If this entity is a GameObject, it flags if this instance delinates from the template.",
  497. AbstractClassRep::FieldFlags::FIELD_HideInInspectors);
  498. endGroup("GameObject");*/
  499. addGroup( "Transform" );
  500. addProtectedField( "position", TypeMatrixPosition, Offset( mObjToWorld, SceneObject ),
  501. &_setFieldPosition, &defaultProtectedGetFn,
  502. "Object world position." );
  503. addProtectedField( "rotation", TypeMatrixRotation, Offset( mObjToWorld, SceneObject ),
  504. &_setFieldRotation, &defaultProtectedGetFn,
  505. "Object world orientation." );
  506. addProtectedField( "scale", TypePoint3F, Offset( mObjScale, SceneObject ),
  507. &_setFieldScale, &defaultProtectedGetFn,
  508. "Object world scale." );
  509. endGroup( "Transform" );
  510. addGroup( "Editing" );
  511. addProtectedField( "isRenderEnabled", TypeBool, Offset( mObjectFlags, SceneObject ),
  512. &_setRenderEnabled, &_getRenderEnabled,
  513. "Controls client-side rendering of the object.\n"
  514. "@see isRenderable()\n" );
  515. addProtectedField( "isSelectionEnabled", TypeBool, Offset( mObjectFlags, SceneObject ),
  516. &_setSelectionEnabled, &_getSelectionEnabled,
  517. "Determines if the object may be selected from wihin the Tools.\n"
  518. "@see isSelectable()\n" );
  519. endGroup( "Editing" );
  520. addGroup( "Mounting" );
  521. addProtectedField( "mountPID", TypePID, Offset( mMountPID, SceneObject ), &_setMountPID, &defaultProtectedGetFn,
  522. "@brief PersistentID of object we are mounted to.\n\n"
  523. "Unlike the SimObjectID that is determined at run time, the PersistentID of an object is saved with the level/mission and "
  524. "may be used to form a link between objects." );
  525. addField( "mountNode", TypeS32, Offset( mMount.node, SceneObject ), "Node we are mounted to." );
  526. addField( "mountPos", TypeMatrixPosition, Offset( mMount.xfm, SceneObject ), "Position we are mounted at ( object space of our mount object )." );
  527. addField( "mountRot", TypeMatrixRotation, Offset( mMount.xfm, SceneObject ), "Rotation we are mounted at ( object space of our mount object )." );
  528. endGroup( "Mounting" );
  529. Parent::initPersistFields();
  530. }
  531. bool SceneObject::_setGameObject(void* object, const char* index, const char* data)
  532. {
  533. // Sanity!
  534. AssertFatal(data != NULL, "Cannot use a NULL asset Id.");
  535. return true; //rbI->setMeshAsset(data);
  536. }
  537. //-----------------------------------------------------------------------------
  538. bool SceneObject::_setFieldPosition( void *object, const char *index, const char *data )
  539. {
  540. SceneObject* so = static_cast<SceneObject*>( object );
  541. if ( so )
  542. {
  543. MatrixF txfm( so->getTransform() );
  544. Con::setData( TypeMatrixPosition, &txfm, 0, 1, &data );
  545. so->setTransform( txfm );
  546. }
  547. return false;
  548. }
  549. //-----------------------------------------------------------------------------
  550. bool SceneObject::_setFieldRotation( void *object, const char *index, const char *data )
  551. {
  552. SceneObject* so = static_cast<SceneObject*>( object );
  553. if ( so )
  554. {
  555. MatrixF txfm( so->getTransform() );
  556. Con::setData( TypeMatrixRotation, &txfm, 0, 1, &data );
  557. so->setTransform( txfm );
  558. }
  559. return false;
  560. }
  561. //-----------------------------------------------------------------------------
  562. bool SceneObject::_setFieldScale( void *object, const char *index, const char *data )
  563. {
  564. SceneObject* so = static_cast<SceneObject*>( object );
  565. if ( so )
  566. {
  567. Point3F scale;
  568. Con::setData( TypePoint3F, &scale, 0, 1, &data );
  569. so->setScale( scale );
  570. }
  571. return false;
  572. }
  573. //-----------------------------------------------------------------------------
  574. bool SceneObject::writeField( StringTableEntry fieldName, const char* value )
  575. {
  576. if( !Parent::writeField( fieldName, value ) )
  577. return false;
  578. static StringTableEntry sIsRenderEnabled = StringTable->insert( "isRenderEnabled" );
  579. static StringTableEntry sIsSelectionEnabled = StringTable->insert( "isSelectionEnabled" );
  580. static StringTableEntry sMountNode = StringTable->insert( "mountNode" );
  581. static StringTableEntry sMountPos = StringTable->insert( "mountPos" );
  582. static StringTableEntry sMountRot = StringTable->insert( "mountRot" );
  583. // Don't write flag fields if they are at their default values.
  584. if( fieldName == sIsRenderEnabled && dAtob( value ) )
  585. return false;
  586. else if( fieldName == sIsSelectionEnabled && dAtob( value ) )
  587. return false;
  588. else if ( mMountPID == NULL && ( fieldName == sMountNode ||
  589. fieldName == sMountPos ||
  590. fieldName == sMountRot ) )
  591. {
  592. return false;
  593. }
  594. return true;
  595. }
  596. //-----------------------------------------------------------------------------
  597. static void scopeCallback( SceneObject* obj, void* conPtr )
  598. {
  599. NetConnection* ptr = reinterpret_cast< NetConnection* >( conPtr );
  600. if( obj->isScopeable() )
  601. ptr->objectInScope(obj);
  602. }
  603. void SceneObject::onCameraScopeQuery( NetConnection* connection, CameraScopeQuery* query )
  604. {
  605. SceneManager* sceneManager = getSceneManager();
  606. GameConnection* conn = dynamic_cast<GameConnection*> (connection);
  607. if (conn && (query->visibleDistance = conn->getVisibleGhostDistance()) == 0.0f)
  608. if ((query->visibleDistance = sceneManager->getVisibleGhostDistance()) == 0.0f)
  609. query->visibleDistance = sceneManager->getVisibleDistance();
  610. // Object itself is in scope.
  611. if( this->isScopeable() )
  612. connection->objectInScope( this );
  613. // If we're mounted to something, that object is in scope too.
  614. if( isMounted() )
  615. connection->objectInScope( mMount.object );
  616. // If we're added to a scene graph, let the graph do the scene scoping.
  617. // Otherwise just put everything in the server container in scope.
  618. if( getSceneManager() )
  619. getSceneManager()->scopeScene( query, connection );
  620. else
  621. gServerContainer.findObjects( 0xFFFFFFFF, scopeCallback, connection );
  622. }
  623. //-----------------------------------------------------------------------------
  624. bool SceneObject::isRenderEnabled() const
  625. {
  626. #ifdef TORQUE_TOOLS
  627. if (gEditingMission)
  628. {
  629. AbstractClassRep *classRep = getClassRep();
  630. return (mObjectFlags.test(RenderEnabledFlag) && classRep->isRenderEnabled());
  631. }
  632. #endif
  633. return (mObjectFlags.test(RenderEnabledFlag));
  634. }
  635. //-----------------------------------------------------------------------------
  636. void SceneObject::setRenderEnabled( bool value )
  637. {
  638. if( value )
  639. mObjectFlags.set( RenderEnabledFlag );
  640. else
  641. mObjectFlags.clear( RenderEnabledFlag );
  642. setMaskBits( FlagMask );
  643. }
  644. //-----------------------------------------------------------------------------
  645. const char* SceneObject::_getRenderEnabled( void* object, const char* data )
  646. {
  647. SceneObject* obj = reinterpret_cast< SceneObject* >( object );
  648. if( obj->mObjectFlags.test( RenderEnabledFlag ) )
  649. return "1";
  650. else
  651. return "0";
  652. }
  653. //-----------------------------------------------------------------------------
  654. bool SceneObject::_setRenderEnabled( void *object, const char *index, const char *data )
  655. {
  656. SceneObject* obj = reinterpret_cast< SceneObject* >( object );
  657. obj->setRenderEnabled( dAtob( data ) );
  658. return false;
  659. }
  660. //-----------------------------------------------------------------------------
  661. bool SceneObject::isSelectionEnabled() const
  662. {
  663. AbstractClassRep *classRep = getClassRep();
  664. return ( mObjectFlags.test( SelectionEnabledFlag ) && classRep->isSelectionEnabled() );
  665. }
  666. //-----------------------------------------------------------------------------
  667. void SceneObject::setSelectionEnabled( bool value )
  668. {
  669. if( value )
  670. mObjectFlags.set( SelectionEnabledFlag );
  671. else
  672. mObjectFlags.clear( SelectionEnabledFlag );
  673. // Not synchronized on network so don't set dirty bit.
  674. }
  675. //-----------------------------------------------------------------------------
  676. const char* SceneObject::_getSelectionEnabled( void* object, const char* data )
  677. {
  678. SceneObject* obj = reinterpret_cast< SceneObject* >( object );
  679. if( obj->mObjectFlags.test( SelectionEnabledFlag ) )
  680. return "true";
  681. else
  682. return "false";
  683. }
  684. //-----------------------------------------------------------------------------
  685. bool SceneObject::_setSelectionEnabled( void *object, const char *index, const char *data )
  686. {
  687. SceneObject* obj = reinterpret_cast< SceneObject* >( object );
  688. obj->setSelectionEnabled( dAtob( data ) );
  689. return false;
  690. }
  691. //--------------------------------------------------------------------------
  692. U32 SceneObject::packUpdate( NetConnection* conn, U32 mask, BitStream* stream )
  693. {
  694. U32 retMask = Parent::packUpdate( conn, mask, stream );
  695. if ( stream->writeFlag( mask & FlagMask ) )
  696. stream->writeRangedU32( (U32)mObjectFlags, 0, getObjectFlagMax() );
  697. // PATHSHAPE
  698. //Begin attachment
  699. retMask = 0; //retry mask
  700. if (stream->writeFlag(getParent() != NULL)) {
  701. stream->writeAffineTransform(mGraph.objToParent);
  702. }
  703. if (stream->writeFlag(mask & MountedMask))
  704. {
  705. // Check to see if we need to write an object ID
  706. if (stream->writeFlag(mGraph.parent)) {
  707. S32 t = conn->getGhostIndex(mGraph.parent);
  708. // Check to see if we can actually ghost this...
  709. if (t == -1) {
  710. // Cant, try again later
  711. retMask |= MountedMask;
  712. stream->writeFlag(false);
  713. }
  714. else {
  715. // Can, write it.
  716. stream->writeFlag(true);
  717. stream->writeRangedU32(U32(t), 0, NetConnection::MaxGhostCount);
  718. stream->writeAffineTransform(mGraph.objToParent);
  719. //Con::errorf("%d: sent mounted on %d", getId(), mGraph.parent->getId());
  720. }
  721. }
  722. }
  723. // End of Attachment
  724. // PATHSHAPE END
  725. if ( mask & MountedMask )
  726. {
  727. if ( mMount.object )
  728. {
  729. S32 gIndex = conn->getGhostIndex( mMount.object );
  730. if ( stream->writeFlag( gIndex != -1 ) )
  731. {
  732. stream->writeFlag( true );
  733. stream->writeInt( gIndex, NetConnection::GhostIdBitSize );
  734. if ( stream->writeFlag( mMount.node != -1 ) )
  735. stream->writeInt( mMount.node, NumMountPointBits );
  736. mathWrite( *stream, mMount.xfm );
  737. }
  738. else
  739. // Will have to try again later
  740. retMask |= MountedMask;
  741. }
  742. else
  743. // Unmount if this isn't the initial packet
  744. if ( stream->writeFlag( !(mask & InitialUpdateMask) ) )
  745. stream->writeFlag( false );
  746. }
  747. else
  748. stream->writeFlag( false );
  749. return retMask;
  750. }
  751. //-----------------------------------------------------------------------------
  752. void SceneObject::unpackUpdate( NetConnection* conn, BitStream* stream )
  753. {
  754. Parent::unpackUpdate( conn, stream );
  755. // FlagMask
  756. if ( stream->readFlag() )
  757. mObjectFlags = stream->readRangedU32( 0, getObjectFlagMax() );
  758. // PATHSHAPE
  759. // begin of attachment
  760. if (stream->readFlag())
  761. {
  762. MatrixF m;
  763. stream->readAffineTransform(&m);
  764. mGraph.objToParent = m;
  765. }
  766. if (stream->readFlag())
  767. {
  768. // Check to see if we need to read an object ID
  769. if (stream->readFlag())
  770. {
  771. // Check to see if we can actually ghost this...
  772. if (stream->readFlag())
  773. {
  774. GameBase *newParent = static_cast<GameBase*>(conn->resolveGhost(stream->readRangedU32(0, NetConnection::MaxGhostCount)));
  775. MatrixF m;
  776. stream->readAffineTransform(&m);
  777. if (getParent() != newParent)
  778. {
  779. clearProcessAfter();
  780. processAfter(newParent);
  781. }
  782. attachToParent(newParent, &m);
  783. //Con::errorf("%d: got mounted on %d", getId(), mParentObject->getId());
  784. }
  785. }
  786. else
  787. {
  788. attachToParent(NULL);
  789. }
  790. }
  791. // End of attachment
  792. // PATHSHAPE END
  793. // MountedMask
  794. if ( stream->readFlag() )
  795. {
  796. if ( stream->readFlag() )
  797. {
  798. S32 gIndex = stream->readInt( NetConnection::GhostIdBitSize );
  799. SceneObject* obj = dynamic_cast<SceneObject*>( conn->resolveGhost( gIndex ) );
  800. S32 node = -1;
  801. if ( stream->readFlag() ) // node != -1
  802. node = stream->readInt( NumMountPointBits );
  803. MatrixF xfm;
  804. mathRead( *stream, &xfm );
  805. if ( !obj )
  806. {
  807. conn->setLastError( "Invalid packet from server." );
  808. return;
  809. }
  810. obj->mountObject( this, node, xfm );
  811. }
  812. else
  813. unmount();
  814. }
  815. }
  816. //-----------------------------------------------------------------------------
  817. void SceneObject::_updateZoningState() const
  818. {
  819. if( mZoneRefDirty )
  820. {
  821. SceneZoneSpaceManager* manager = getSceneManager()->getZoneManager();
  822. if( manager )
  823. manager->updateObject( const_cast< SceneObject* >( this ) );
  824. else
  825. mZoneRefDirty = false;
  826. }
  827. }
  828. //-----------------------------------------------------------------------------
  829. U32 SceneObject::getCurrZone( const U32 index ) const
  830. {
  831. _updateZoningState();
  832. // Not the most efficient way to do this, walking the list,
  833. // but it's an uncommon call...
  834. ZoneRef* walk = mZoneRefHead;
  835. for( U32 i = 0; i < index; ++ i )
  836. {
  837. walk = walk->nextInObj;
  838. AssertFatal( walk != NULL, "SceneObject::_getCurrZone - Too few object refs!" );
  839. }
  840. AssertFatal( walk != NULL, "SceneObject::_getCurrZone - Too few object refs!" );
  841. return walk->zone;
  842. }
  843. //-----------------------------------------------------------------------------
  844. Point3F SceneObject::getPosition() const
  845. {
  846. Point3F pos;
  847. mObjToWorld.getColumn(3, &pos);
  848. return pos;
  849. }
  850. //-----------------------------------------------------------------------------
  851. Point3F SceneObject::getRenderPosition() const
  852. {
  853. Point3F pos;
  854. mRenderObjToWorld.getColumn(3, &pos);
  855. return pos;
  856. }
  857. //-----------------------------------------------------------------------------
  858. void SceneObject::setPosition(const Point3F &pos)
  859. {
  860. AssertFatal( !mIsNaN( pos ), "SceneObject::setPosition() - The position is NaN!" );
  861. MatrixF xform = mObjToWorld;
  862. xform.setColumn(3, pos);
  863. setTransform(xform);
  864. }
  865. //-----------------------------------------------------------------------------
  866. F32 SceneObject::distanceTo(const Point3F &pnt) const
  867. {
  868. return mWorldBox.getDistanceToPoint( pnt );
  869. }
  870. //-----------------------------------------------------------------------------
  871. void SceneObject::processAfter( ProcessObject *obj )
  872. {
  873. AssertFatal( dynamic_cast<SceneObject*>( obj ), "SceneObject::processAfter - Got non-SceneObject!" );
  874. mAfterObject = (SceneObject*)obj;
  875. if ( mAfterObject->mAfterObject == this )
  876. mAfterObject->mAfterObject = NULL;
  877. getProcessList()->markDirty();
  878. }
  879. //-----------------------------------------------------------------------------
  880. void SceneObject::clearProcessAfter()
  881. {
  882. mAfterObject = NULL;
  883. }
  884. //-----------------------------------------------------------------------------
  885. void SceneObject::setProcessTick( bool t )
  886. {
  887. if ( t == mProcessTick )
  888. return;
  889. if ( mProcessTick )
  890. {
  891. if ( !getMountedObjectCount() )
  892. plUnlink(); // Only unlink if there is nothing mounted to us
  893. mProcessTick = false;
  894. }
  895. else
  896. {
  897. // Just to be sure...
  898. plUnlink();
  899. getProcessList()->addObject( this );
  900. mProcessTick = true;
  901. }
  902. }
  903. //-----------------------------------------------------------------------------
  904. ProcessList* SceneObject::getProcessList() const
  905. {
  906. if ( isClientObject() )
  907. return ClientProcessList::get();
  908. else
  909. return ServerProcessList::get();
  910. }
  911. //-------------------------------------------------------------------------
  912. bool SceneObject::isMounted()
  913. {
  914. resolveMountPID();
  915. return mMount.object != NULL;
  916. }
  917. //-----------------------------------------------------------------------------
  918. S32 SceneObject::getMountedObjectCount()
  919. {
  920. S32 count = 0;
  921. for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link)
  922. count++;
  923. return count;
  924. }
  925. //-----------------------------------------------------------------------------
  926. SceneObject* SceneObject::getMountedObject(S32 idx)
  927. {
  928. if (idx >= 0) {
  929. S32 count = 0;
  930. for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link)
  931. if (count++ == idx)
  932. return itr;
  933. }
  934. return NULL;
  935. }
  936. //-----------------------------------------------------------------------------
  937. S32 SceneObject::getMountedObjectNode(S32 idx)
  938. {
  939. if (idx >= 0) {
  940. S32 count = 0;
  941. for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link)
  942. if (count++ == idx)
  943. return itr->mMount.node;
  944. }
  945. return -1;
  946. }
  947. //-----------------------------------------------------------------------------
  948. SceneObject* SceneObject::getMountNodeObject(S32 node)
  949. {
  950. for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link)
  951. if (itr->mMount.node == node)
  952. return itr;
  953. return NULL;
  954. }
  955. //-----------------------------------------------------------------------------
  956. bool SceneObject::_setMountPID( void* object, const char* index, const char* data )
  957. {
  958. SceneObject* so = static_cast<SceneObject*>( object );
  959. if ( so )
  960. {
  961. // Unmount old object (PID reference is released even if it had been resolved yet)
  962. if ( so->mMountPID )
  963. {
  964. so->mMountPID->decRefCount();
  965. so->mMountPID = NULL;
  966. }
  967. so->unmount();
  968. // Get the new PID (new object will be mounted on demand)
  969. Con::setData( TypePID, &so->mMountPID, 0, 1, &data );
  970. if ( so->mMountPID )
  971. so->mMountPID->incRefCount(); // Prevent PID from being deleted out from under us!
  972. }
  973. return false;
  974. }
  975. void SceneObject::resolveMountPID()
  976. {
  977. if ( mMountPID && !mMount.object )
  978. {
  979. SceneObject *obj = dynamic_cast< SceneObject* >( mMountPID->getObject() );
  980. if ( obj )
  981. obj->mountObject( this, mMount.node, mMount.xfm );
  982. }
  983. }
  984. //-----------------------------------------------------------------------------
  985. void SceneObject::mountObject( SceneObject *obj, S32 node, const MatrixF &xfm )
  986. {
  987. if ( obj->mMount.object == this )
  988. {
  989. // Already mounted to this
  990. // So update our node and xfm which may have changed.
  991. obj->mMount.node = node;
  992. obj->mMount.xfm = xfm;
  993. }
  994. else
  995. {
  996. if ( obj->mMount.object )
  997. obj->unmount();
  998. obj->mMount.object = this;
  999. obj->mMount.node = node;
  1000. obj->mMount.link = mMount.list;
  1001. obj->mMount.xfm = xfm;
  1002. mMount.list = obj;
  1003. // Assign PIDs to both objects
  1004. if ( isServerObject() )
  1005. {
  1006. obj->getOrCreatePersistentId();
  1007. if ( !obj->mMountPID )
  1008. {
  1009. obj->mMountPID = getOrCreatePersistentId();
  1010. obj->mMountPID->incRefCount();
  1011. }
  1012. }
  1013. obj->onMount( this, node );
  1014. }
  1015. }
  1016. //-----------------------------------------------------------------------------
  1017. void SceneObject::unmountObject( SceneObject *obj )
  1018. {
  1019. if ( obj->mMount.object == this )
  1020. {
  1021. // Find and unlink the object
  1022. for ( SceneObject **ptr = &mMount.list; *ptr; ptr = &(*ptr)->mMount.link )
  1023. {
  1024. if ( *ptr == obj )
  1025. {
  1026. *ptr = obj->mMount.link;
  1027. break;
  1028. }
  1029. }
  1030. obj->mMount.object = NULL;
  1031. obj->mMount.link = NULL;
  1032. if( obj->mMountPID != NULL ) // Only on server.
  1033. {
  1034. obj->mMountPID->decRefCount();
  1035. obj->mMountPID = NULL;
  1036. }
  1037. obj->onUnmount( this, obj->mMount.node );
  1038. }
  1039. }
  1040. //-----------------------------------------------------------------------------
  1041. void SceneObject::unmount()
  1042. {
  1043. if (mMount.object)
  1044. mMount.object->unmountObject(this);
  1045. }
  1046. //-----------------------------------------------------------------------------
  1047. void SceneObject::onMount( SceneObject *obj, S32 node )
  1048. {
  1049. deleteNotify( obj );
  1050. if ( !isGhost() )
  1051. {
  1052. setMaskBits( MountedMask );
  1053. //onMount_callback( node );
  1054. }
  1055. }
  1056. //-----------------------------------------------------------------------------
  1057. void SceneObject::onUnmount( SceneObject *obj, S32 node )
  1058. {
  1059. clearNotify(obj);
  1060. if ( !isGhost() )
  1061. {
  1062. setMaskBits( MountedMask );
  1063. //onUnmount_callback( node );
  1064. }
  1065. }
  1066. //-----------------------------------------------------------------------------
  1067. void SceneObject::getMountTransform( S32 index, const MatrixF &xfm, MatrixF *outMat )
  1068. {
  1069. MatrixF mountTransform( xfm );
  1070. const Point3F &scale = getScale();
  1071. Point3F position = mountTransform.getPosition();
  1072. position.convolve( scale );
  1073. mountTransform.setPosition( position );
  1074. outMat->mul( mObjToWorld, mountTransform );
  1075. }
  1076. //-----------------------------------------------------------------------------
  1077. void SceneObject::getRenderMountTransform( F32 delta, S32 index, const MatrixF &xfm, MatrixF *outMat )
  1078. {
  1079. MatrixF mountTransform( xfm );
  1080. const Point3F &scale = getScale();
  1081. Point3F position = mountTransform.getPosition();
  1082. position.convolve( scale );
  1083. mountTransform.setPosition( position );
  1084. outMat->mul( mRenderObjToWorld, mountTransform );
  1085. }
  1086. //=============================================================================
  1087. // Console API.
  1088. //=============================================================================
  1089. // MARK: ---- Console API ----
  1090. //-----------------------------------------------------------------------------
  1091. DefineEngineMethod( SceneObject, getType, S32, (),,
  1092. "Return the type mask for this object.\n"
  1093. "@return The numeric type mask for the object." )
  1094. {
  1095. return object->getTypeMask();
  1096. }
  1097. //-----------------------------------------------------------------------------
  1098. DefineEngineMethod( SceneObject, mountObject, bool,
  1099. ( SceneObject* objB, S32 slot, TransformF txfm ), ( TransformF::Identity ),
  1100. "@brief Mount objB to this object at the desired slot with optional transform.\n\n"
  1101. "@param objB Object to mount onto us\n"
  1102. "@param slot Mount slot ID\n"
  1103. "@param txfm (optional) mount offset transform\n"
  1104. "@return true if successful, false if failed (objB is not valid)" )
  1105. {
  1106. if ( objB )
  1107. {
  1108. object->mountObject( objB, slot, txfm.getMatrix() );
  1109. return true;
  1110. }
  1111. return false;
  1112. }
  1113. //-----------------------------------------------------------------------------
  1114. DefineEngineMethod( SceneObject, unmountObject, bool, ( SceneObject* target ),,
  1115. "@brief Unmount an object from ourselves.\n\n"
  1116. "@param target object to unmount\n"
  1117. "@return true if successful, false if failed\n" )
  1118. {
  1119. if ( target )
  1120. {
  1121. object->unmountObject(target);
  1122. return true;
  1123. }
  1124. return false;
  1125. }
  1126. //-----------------------------------------------------------------------------
  1127. DefineEngineMethod( SceneObject, unmount, void, (),,
  1128. "Unmount us from the currently mounted object if any.\n" )
  1129. {
  1130. object->unmount();
  1131. }
  1132. //-----------------------------------------------------------------------------
  1133. DefineEngineMethod( SceneObject, isMounted, bool, (),,
  1134. "@brief Check if we are mounted to another object.\n\n"
  1135. "@return true if mounted to another object, false if not mounted." )
  1136. {
  1137. return object->isMounted();
  1138. }
  1139. //-----------------------------------------------------------------------------
  1140. DefineEngineMethod( SceneObject, getObjectMount, S32, (),,
  1141. "@brief Get the object we are mounted to.\n\n"
  1142. "@return the SimObjectID of the object we're mounted to, or 0 if not mounted." )
  1143. {
  1144. return object->isMounted()? object->getObjectMount()->getId(): 0;
  1145. }
  1146. //-----------------------------------------------------------------------------
  1147. DefineEngineMethod( SceneObject, getMountedObjectCount, S32, (),,
  1148. "Get the number of objects mounted to us.\n"
  1149. "@return the number of mounted objects." )
  1150. {
  1151. return object->getMountedObjectCount();
  1152. }
  1153. //-----------------------------------------------------------------------------
  1154. DefineEngineMethod( SceneObject, getMountedObject, S32, ( S32 slot ),,
  1155. "Get the object mounted at a particular slot.\n"
  1156. "@param slot mount slot index to query\n"
  1157. "@return ID of the object mounted in the slot, or 0 if no object." )
  1158. {
  1159. SceneObject* mobj = object->getMountedObject( slot );
  1160. return mobj? mobj->getId(): 0;
  1161. }
  1162. //-----------------------------------------------------------------------------
  1163. DefineEngineMethod( SceneObject, getMountedObjectNode, S32, ( S32 slot ),,
  1164. "@brief Get the mount node index of the object mounted at our given slot.\n\n"
  1165. "@param slot mount slot index to query\n"
  1166. "@return index of the mount node used by the object mounted in this slot." )
  1167. {
  1168. return object->getMountedObjectNode( slot );
  1169. }
  1170. //-----------------------------------------------------------------------------
  1171. DefineEngineMethod( SceneObject, getMountNodeObject, S32, ( S32 node ),,
  1172. "@brief Get the object mounted at our given node index.\n\n"
  1173. "@param node mount node index to query\n"
  1174. "@return ID of the first object mounted at the node, or 0 if none found." )
  1175. {
  1176. SceneObject* mobj = object->getMountNodeObject( node );
  1177. return mobj? mobj->getId(): 0;
  1178. }
  1179. //-----------------------------------------------------------------------------
  1180. DefineEngineMethod( SceneObject, getTransform, TransformF, (),,
  1181. "Get the object's transform.\n"
  1182. "@return the current transform of the object\n" )
  1183. {
  1184. return object->getTransform();
  1185. }
  1186. //-----------------------------------------------------------------------------
  1187. DefineEngineMethod( SceneObject, getInverseTransform, TransformF, (),,
  1188. "Get the object's inverse transform.\n"
  1189. "@return the inverse transform of the object\n" )
  1190. {
  1191. return object->getWorldTransform();
  1192. }
  1193. //-----------------------------------------------------------------------------
  1194. DefineEngineMethod( SceneObject, getPosition, Point3F, (),,
  1195. "Get the object's world position.\n"
  1196. "@return the current world position of the object\n" )
  1197. {
  1198. return object->getTransform().getPosition();
  1199. }
  1200. DefineEngineMethod( SceneObject, setPosition, void, (Point3F pos),,
  1201. "Set the object's world position.\n"
  1202. "@param pos the new world position of the object\n" )
  1203. {
  1204. return object->setPosition(pos);
  1205. }
  1206. //-----------------------------------------------------------------------------
  1207. DefineEngineMethod( SceneObject, getEulerRotation, Point3F, (),,
  1208. "Get Euler rotation of this object.\n"
  1209. "@return the orientation of the object in the form of rotations around the "
  1210. "X, Y and Z axes in degrees.\n" )
  1211. {
  1212. Point3F euler = object->getTransform().toEuler();
  1213. // Convert to degrees.
  1214. euler.x = mRadToDeg( euler.x );
  1215. euler.y = mRadToDeg( euler.y );
  1216. euler.z = mRadToDeg( euler.z );
  1217. return euler;
  1218. }
  1219. DefineEngineMethod(SceneObject, setEulerRotation, void, (Point3F inRot), ,
  1220. "set Euler rotation of this object.\n"
  1221. "@set the orientation of the object in the form of rotations around the "
  1222. "X, Y and Z axes in degrees.\n")
  1223. {
  1224. MatrixF curMat = object->getTransform();
  1225. Point3F curPos = curMat.getPosition();
  1226. Point3F curScale = curMat.getScale();
  1227. EulerF inRotRad = inRot * M_PI_F / 180.0;
  1228. curMat.set(inRotRad, curPos);
  1229. curMat.scale(curScale);
  1230. object->setTransform(curMat);
  1231. }
  1232. //-----------------------------------------------------------------------------
  1233. DefineEngineMethod( SceneObject, getForwardVector, VectorF, (),,
  1234. "Get the direction this object is facing.\n"
  1235. "@return a vector indicating the direction this object is facing.\n"
  1236. "@note This is the object's y axis." )
  1237. {
  1238. return object->getTransform().getForwardVector();
  1239. }
  1240. //-----------------------------------------------------------------------------
  1241. DefineEngineMethod( SceneObject, getRightVector, VectorF, (),,
  1242. "Get the right vector of the object.\n"
  1243. "@return a vector indicating the right direction of this object."
  1244. "@note This is the object's x axis." )
  1245. {
  1246. return object->getTransform().getRightVector();
  1247. }
  1248. //-----------------------------------------------------------------------------
  1249. DefineEngineMethod( SceneObject, getUpVector, VectorF, (),,
  1250. "Get the up vector of the object.\n"
  1251. "@return a vector indicating the up direction of this object."
  1252. "@note This is the object's z axis." )
  1253. {
  1254. return object->getTransform().getUpVector();
  1255. }
  1256. //-----------------------------------------------------------------------------
  1257. DefineEngineMethod( SceneObject, setTransform, void, ( TransformF txfm ),,
  1258. "Set the object's transform (orientation and position)."
  1259. "@param txfm object transform to set" )
  1260. {
  1261. // PATHSHAPE
  1262. object->PerformUpdatesForChildren(txfm.getMatrix());
  1263. // PATHSHAPE END
  1264. if ( !txfm.hasRotation() )
  1265. object->setPosition( txfm.getPosition() );
  1266. else
  1267. object->setTransform( txfm.getMatrix() );
  1268. }
  1269. //-----------------------------------------------------------------------------
  1270. DefineEngineMethod( SceneObject, getScale, Point3F, (),,
  1271. "Get the object's scale.\n"
  1272. "@return object scale as a Point3F" )
  1273. {
  1274. return object->getScale();
  1275. }
  1276. //-----------------------------------------------------------------------------
  1277. DefineEngineMethod( SceneObject, setScale, void, ( Point3F scale ),,
  1278. "Set the object's scale.\n"
  1279. "@param scale object scale to set\n" )
  1280. {
  1281. object->setScale( scale );
  1282. }
  1283. //-----------------------------------------------------------------------------
  1284. DefineEngineMethod( SceneObject, getWorldBox, Box3F, (),,
  1285. "Get the object's world bounding box.\n"
  1286. "@return six fields, two Point3Fs, containing the min and max points of the "
  1287. "worldbox." )
  1288. {
  1289. return object->getWorldBox();
  1290. }
  1291. //-----------------------------------------------------------------------------
  1292. DefineEngineMethod( SceneObject, getWorldBoxCenter, Point3F, (),,
  1293. "Get the center of the object's world bounding box.\n"
  1294. "@return the center of the world bounding box for this object." )
  1295. {
  1296. Point3F center;
  1297. object->getWorldBox().getCenter( &center );
  1298. return center;
  1299. }
  1300. //-----------------------------------------------------------------------------
  1301. DefineEngineMethod( SceneObject, getObjectBox, Box3F, (),,
  1302. "Get the object's bounding box (relative to the object's origin).\n"
  1303. "@return six fields, two Point3Fs, containing the min and max points of the "
  1304. "objectbox." )
  1305. {
  1306. return object->getObjBox();
  1307. }
  1308. //-----------------------------------------------------------------------------
  1309. DefineEngineMethod( SceneObject, isGlobalBounds, bool, (),,
  1310. "Check if this object has a global bounds set.\n"
  1311. "If global bounds are set to be true, then the object is assumed to have an "
  1312. "infinitely large bounding box for collision and rendering purposes.\n"
  1313. "@return true if the object has a global bounds." )
  1314. {
  1315. return object->isGlobalBounds();
  1316. }
  1317. DefineEngineMethod(SceneObject, setForwardVector, void, (VectorF newForward, VectorF upVector), (VectorF(0, 0, 0), VectorF(0, 0, 1)),
  1318. "Sets the forward vector of a scene object, making it face Y+ along the new vector.\n"
  1319. "@param The new forward vector to set.\n"
  1320. "@param (Optional) The up vector to use to help orient the rotation.")
  1321. {
  1322. object->setForwardVector(newForward, upVector);
  1323. }
  1324. // PATHSHAPE
  1325. // Move RenderTransform by set amount
  1326. // no longer used
  1327. void SceneObject::moveRender(const Point3F &delta)
  1328. {
  1329. Point3F pos;
  1330. const MatrixF& tmat = getRenderTransform();
  1331. tmat.getColumn(3,&pos);
  1332. AngAxisF aa(tmat);
  1333. pos += delta;
  1334. MatrixF mat;
  1335. aa.setMatrix(&mat);
  1336. mat.setColumn(3,pos);
  1337. setRenderTransform(mat);
  1338. }
  1339. void SceneObject::PerformUpdatesForChildren(MatrixF mat){
  1340. for (U32 i=0; i < getNumChildren(); i++) {
  1341. SceneObject *o = getChild(i);
  1342. o->updateChildTransform(); //update the position of the child object
  1343. }
  1344. }
  1345. // This function will move the players based on how much it's
  1346. // parent have moved
  1347. void SceneObject::updateChildTransform(){
  1348. if (getParent() != NULL){
  1349. MatrixF one;
  1350. MatrixF two;
  1351. MatrixF three;
  1352. MatrixF four;
  1353. MatrixF mat;
  1354. one= getTransform();
  1355. two = getParent()->getTransform();
  1356. one.affineInverse();
  1357. four.mul(two,one);
  1358. mat.mul(getParent()->mLastXform,getTransform());
  1359. setTransform(mat);
  1360. }
  1361. }
  1362. // This function will move the rendered image based on how much it's
  1363. // parent have moved since the processtick.
  1364. // For some reason the player object must be updated via it's GetRenderTransform seen below,
  1365. // Other objects seem to require getTransform() only
  1366. void SceneObject::updateRenderChangesByParent(){
  1367. if (getParent() != NULL){
  1368. MatrixF renderXform = getParent()->getRenderTransform();
  1369. MatrixF xform = getParent()->getTransform();
  1370. xform.affineInverse();
  1371. MatrixF offset;
  1372. offset.mul(renderXform, xform);
  1373. MatrixF mat;
  1374. //add the "offset" caused by the parents change, and add it to it's own
  1375. // This is needed by objects that update their own render transform thru interpolate tick
  1376. // Mostly for stationary objects.
  1377. if (getClassName() == StringTable->insert("Player"))
  1378. mat.mul(offset,getRenderTransform());
  1379. else
  1380. mat.mul(offset,getTransform());
  1381. setRenderTransform(mat);
  1382. }
  1383. }
  1384. //Ramen - Move Transform by set amount
  1385. //written by Anthony Lovell
  1386. void SceneObject::move(F32 x, F32 y, F32 z)
  1387. {
  1388. Point3F delta;
  1389. delta.x = x;
  1390. delta.y = y;
  1391. delta.z = z;
  1392. move(delta);
  1393. }
  1394. // move by a specified delta in root coordinate space
  1395. void SceneObject::move(const Point3F &delta)
  1396. {
  1397. Point3F pos;
  1398. const MatrixF& tmat = getTransform();
  1399. tmat.getColumn(3,&pos);
  1400. AngAxisF aa(tmat);
  1401. pos += delta;
  1402. MatrixF mat;
  1403. aa.setMatrix(&mat);
  1404. mat.setColumn(3,pos);
  1405. setTransform(mat);
  1406. }
  1407. //written by Anthony Lovell ----------------------------------------------------------
  1408. U32
  1409. SceneObject::getNumChildren() const
  1410. {
  1411. U32 num = 0;
  1412. for (SceneObject *cur = mGraph.firstChild; cur; cur = cur->mGraph.nextSibling)
  1413. num++;
  1414. return num;
  1415. }
  1416. //written by Anthony Lovell ----------------------------------------------------------
  1417. SceneObject *
  1418. SceneObject::getChild(U32 index) const
  1419. {
  1420. SceneObject *cur = mGraph.firstChild;
  1421. for (U32 i = 0;
  1422. cur && i < index;
  1423. i++)
  1424. cur = cur->mGraph.nextSibling;
  1425. return cur;
  1426. }
  1427. void SceneObject::UpdateXformChange(const MatrixF &mat){
  1428. // This function gets the difference between the Transform and current Render transform
  1429. // Used for Interpolation matching with the child objects who rely on this data.
  1430. MatrixF oldxform = getTransform();
  1431. oldxform.affineInverse();
  1432. mLastXform.mul(mat,oldxform);
  1433. }
  1434. //----------------------------------------------------------
  1435. bool
  1436. SceneObject::attachChildAt(SceneObject *subObject, MatrixF atThisOffset, S32 node)
  1437. {
  1438. AssertFatal(subObject, "attaching a null subObject");
  1439. AssertFatal(!isChildOf(subObject), "cyclic attachChild()");
  1440. bool b = subObject->attachToParent(this, &atThisOffset, node);
  1441. if (!b)
  1442. return false;
  1443. return true;
  1444. }
  1445. //----------------------------------------------------------
  1446. bool
  1447. SceneObject::attachChildAt(SceneObject *subObject, Point3F atThisPosition)
  1448. {
  1449. AssertFatal(subObject, "attaching a null subObject");
  1450. AssertFatal(!isChildOf(subObject), "cyclic attachChild()");
  1451. bool b = subObject->attachToParent(this);
  1452. if (!b)
  1453. return false;
  1454. subObject->mGraph.objToParent.setColumn(3, atThisPosition);
  1455. // calcTransformFromLocalTransform();
  1456. return true;
  1457. }
  1458. //----------------------------------------------------------
  1459. bool
  1460. SceneObject::attachChild(SceneObject *child)
  1461. {
  1462. AssertFatal(child, "attaching a null subObject");
  1463. AssertFatal(!isChildOf(child), "cyclic attachChild()");
  1464. return child->attachToParent(this);
  1465. }
  1466. //----------------------------------------------------------
  1467. /// returns a count of children plus their children, recursively
  1468. U32
  1469. SceneObject::getNumProgeny() const
  1470. {
  1471. U32 num = 0;
  1472. for (SceneObject *cur = mGraph.firstChild; cur; cur = cur->mGraph.nextSibling) {
  1473. num += 1 + cur->getNumProgeny();
  1474. }
  1475. return num;
  1476. }
  1477. DefineEngineMethod(SceneObject, getNumChildren, S32, (),, "returns number of direct child objects")
  1478. {
  1479. return object->getNumChildren();
  1480. }
  1481. DefineEngineMethod(SceneObject, getNumProgeny, S32, (),, "returns number of recursively-nested child objects")
  1482. {
  1483. return object->getNumProgeny();
  1484. }
  1485. DefineEngineMethod(SceneObject, getChild, S32, (S32 _index), (0), "getChild(S32 index) -- returns child SceneObject at given index")
  1486. {
  1487. SceneObject *s = object->getChild(_index);
  1488. return s ? s->getId() : 0;
  1489. }
  1490. DefineEngineMethod(SceneObject, attachChildAt, bool, (SceneObject* _subObject, MatrixF _offset, S32 _node), (nullAsType<SceneObject*>(), MatrixF::Identity, 0), "(SceneObject subObject, MatrixF offset, S32 offset)"
  1491. "Mount object to this one with the specified offset expressed in our coordinate space.")
  1492. {
  1493. if (_subObject != nullptr)
  1494. {
  1495. return object->attachChildAt(_subObject, _offset, _node);
  1496. }
  1497. else
  1498. {
  1499. Con::errorf("Couldn't addObject()!");
  1500. return false;
  1501. }
  1502. }
  1503. DefineEngineMethod(SceneObject, attachToParent, bool, (const char*_sceneObject), ,"attachToParent(SceneObject)"
  1504. "specify a null or non-null parent")
  1505. {
  1506. SceneObject * t;
  1507. if(Sim::findObject(_sceneObject, t))
  1508. {
  1509. return object->attachToParent(t);
  1510. }
  1511. else
  1512. {
  1513. if ((!String::compare("0", _sceneObject))|| (!String::compare("", _sceneObject)))
  1514. return object->attachToParent(NULL);
  1515. else
  1516. {
  1517. Con::errorf("Couldn't setParent()!");
  1518. return false;
  1519. }
  1520. }
  1521. }
  1522. DefineEngineMethod(SceneObject, getParent, S32, (),, "returns ID of parent SceneObject")
  1523. {
  1524. SceneObject *p = object->getParent();
  1525. return p ? p->getId() : -1;
  1526. }
  1527. DefineEngineMethod(SceneObject, attachChild, bool, (const char*_subObject),, "(SceneObject subObject)"
  1528. "attach an object to this one, preserving its present transform.")
  1529. {
  1530. SceneObject * t;
  1531. MatrixF m;
  1532. if(Sim::findObject(_subObject, t))
  1533. return object->attachChild(t);
  1534. Con::errorf("Couldn't addObject()!");
  1535. return false;
  1536. }
  1537. bool SceneObject::isChildOf(SceneObject *so)
  1538. {
  1539. SceneObject *p = mGraph.parent;
  1540. if (p) {
  1541. if (p == so)
  1542. return true;
  1543. else
  1544. return p->isChildOf(so);
  1545. } else
  1546. return false;
  1547. }
  1548. bool SceneObject::attachToParent(SceneObject *newParent, MatrixF *atThisOffset/* = NULL */, S32 node )
  1549. {
  1550. SceneObject *oldParent = mGraph.parent;
  1551. if (oldParent == newParent)
  1552. return true;
  1553. // cycles in the scene hierarchy are forbidden!
  1554. // that is: a SceneObject cannot be a child of its progeny
  1555. if (newParent && newParent->isChildOf(this))
  1556. return false;
  1557. mGraph.parent = newParent;
  1558. if (oldParent) {
  1559. clearNotify(oldParent);
  1560. // remove this SceneObject from the list of children of oldParent
  1561. SceneObject *cur = oldParent->mGraph.firstChild;
  1562. if (cur == this) { // if we are the first child, this is easy
  1563. oldParent->mGraph.firstChild = mGraph.nextSibling;
  1564. } else {
  1565. while (cur->mGraph.nextSibling != this) {
  1566. cur = cur->mGraph.nextSibling;
  1567. // ASSERT cur != NULL;
  1568. }
  1569. cur->mGraph.nextSibling = mGraph.nextSibling;
  1570. }
  1571. oldParent->onLostChild(this);
  1572. }
  1573. if (newParent) {
  1574. deleteNotify(newParent); // if we are deleted, inform our parent
  1575. // add this SceneObject to the list of children of oldParent
  1576. mGraph.nextSibling = newParent->mGraph.firstChild;
  1577. newParent->mGraph.firstChild = this;
  1578. mGraph.parent = newParent;
  1579. newParent->onNewChild(this);
  1580. if (atThisOffset)
  1581. mGraph.objToParent = *atThisOffset;
  1582. } else {
  1583. mGraph.parent = NULL;
  1584. mGraph.nextSibling = NULL;
  1585. mGraph.objToParent = mObjToWorld;
  1586. }
  1587. onLostParent(oldParent);
  1588. onNewParent(newParent);
  1589. setMaskBits(MountedMask);
  1590. return true;
  1591. }
  1592. DefineEngineMethod(SceneObject, detachChild, bool, (const char*_subObject),, "SceneObject subObject")
  1593. {
  1594. SceneObject * t;
  1595. if(Sim::findObject(_subObject, t)) {
  1596. return t->attachToParent(NULL);
  1597. } else
  1598. return false;
  1599. }
  1600. IMPLEMENT_CALLBACK(SceneObject, onNewParent, void, (SceneObject *newParent), (newParent), "");
  1601. IMPLEMENT_CALLBACK(SceneObject, onLostParent, void, (SceneObject *oldParent), (oldParent), "");
  1602. IMPLEMENT_CALLBACK(SceneObject, onNewChild, void, (SceneObject *newKid), (newKid), "");
  1603. IMPLEMENT_CALLBACK(SceneObject, onLostChild, void, (SceneObject *lostKid), (lostKid), "");
  1604. void SceneObject::onNewParent(SceneObject *newParent) { if (isServerObject()) onNewParent_callback(newParent); }
  1605. void SceneObject::onLostParent(SceneObject *oldParent) { if (isServerObject()) onLostParent_callback(oldParent); }
  1606. void SceneObject::onNewChild(SceneObject *newKid) { if (isServerObject()) onNewChild_callback(newKid); }
  1607. void SceneObject::onLostChild(SceneObject *lostKid) { if (isServerObject()) onLostChild_callback(lostKid); }