Browse Source

Move plRandom into pnEncryption.

--HG--
rename : Sources/Plasma/PubUtilLib/plMath/plRandom.h => Sources/Plasma/NucleusLib/pnEncryption/plRandom.h
Darryl Pogue 13 years ago
parent
commit
7a5d61f7c8
  1. 2
      Sources/Plasma/FeatureLib/pfAnimation/pfObjectFlocker.cpp
  2. 2
      Sources/Plasma/FeatureLib/pfAnimation/plBlower.h
  3. 1
      Sources/Plasma/NucleusLib/pnEncryption/CMakeLists.txt
  4. 0
      Sources/Plasma/NucleusLib/pnEncryption/plRandom.h
  5. 2
      Sources/Plasma/PubUtilLib/plAvatar/plAvBrainCritter.cpp
  6. 2
      Sources/Plasma/PubUtilLib/plAvatar/plAvBrainHuman.cpp
  7. 2
      Sources/Plasma/PubUtilLib/plAvatar/plAvatarClothing.cpp
  8. 2
      Sources/Plasma/PubUtilLib/plAvatar/plAvatarMgr.cpp
  9. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaBulletMgr.cpp
  10. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaDecalMgr.cpp
  11. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaFootMgr.cpp
  12. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaRippleMgr.cpp
  13. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaRippleMgrVS.cpp
  14. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaTorpedoMgr.cpp
  15. 2
      Sources/Plasma/PubUtilLib/plDrawable/plDynaWakeMgr.cpp
  16. 2
      Sources/Plasma/PubUtilLib/plDrawable/plWaveSet7.h
  17. 1
      Sources/Plasma/PubUtilLib/plMath/CMakeLists.txt
  18. 2
      Sources/Plasma/PubUtilLib/plParticleSystem/plParticleEffect.cpp
  19. 2
      Sources/Plasma/PubUtilLib/plParticleSystem/plParticleGenerator.cpp
  20. 2
      Sources/Tools/MaxComponent/plClusterComponent.cpp
  21. 2
      Sources/Tools/MaxComponent/plObjectFlockerComponent.cpp
  22. 2
      Sources/Tools/MaxConvert/plDistributor.h

2
Sources/Plasma/FeatureLib/pfAnimation/pfObjectFlocker.cpp

@ -50,7 +50,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plMessage/plAgeLoadedMsg.h"
#include "pnSceneObject/plSceneObject.h"
#include "hsTimer.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "pnMessage/plEnableMsg.h"
#include "plMessage/plAnimCmdMsg.h"
#include "plMessage/plLoadCloneMsg.h"

2
Sources/Plasma/FeatureLib/pfAnimation/plBlower.h

@ -45,7 +45,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "pnModifier/plSingleModifier.h"
#include "hsGeometry3.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "hsTemplates.h"
class plSceneObject;

1
Sources/Plasma/NucleusLib/pnEncryption/CMakeLists.txt

@ -10,6 +10,7 @@ set(pnEncryption_SOURCES
set(pnEncryption_HEADERS
plChallengeHash.h
plChecksum.h
plRandom.h
)
add_library(pnEncryption STATIC ${pnEncryption_SOURCES} ${pnEncryption_HEADERS})

0
Sources/Plasma/PubUtilLib/plMath/plRandom.h → Sources/Plasma/NucleusLib/pnEncryption/plRandom.h

2
Sources/Plasma/PubUtilLib/plAvatar/plAvBrainCritter.cpp

@ -55,7 +55,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plPipeline/plDebugText.h"
#include "pnSceneObject/plCoordinateInterface.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plNetClient/plNetClientMgr.h"
#include "plNetTransport/plNetTransportMember.h"

2
Sources/Plasma/PubUtilLib/plAvatar/plAvBrainHuman.cpp

@ -73,7 +73,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "pnSceneObject/plCoordinateInterface.h"
#include "plInputCore/plAvatarInputInterface.h"
#include "plInputCore/plInputDevice.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plPipeline/plDebugText.h"
#include "plNetClient/plNetLinkingMgr.h"

2
Sources/Plasma/PubUtilLib/plAvatar/plAvatarClothing.cpp

@ -73,7 +73,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plDrawable/plSpaceTree.h"
#include "plSurface/hsGMaterial.h"
#include "plSurface/plLayer.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plSDL/plSDL.h"
#include "plVault/plVault.h"
#include "plResMgr/plKeyFinder.h"

2
Sources/Plasma/PubUtilLib/plAvatar/plAvatarMgr.cpp

@ -74,7 +74,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plModifier/plSpawnModifier.h"
#include "plModifier/plMaintainersMarkerModifier.h"
#include "plVault/plDniCoordinateInfo.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "pnMessage/plPlayerPageMsg.h"
#include "pnMessage/plWarpMsg.h"

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaBulletMgr.cpp

@ -58,7 +58,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsFastMath.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static plRandom sRand;

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaDecalMgr.cpp

@ -75,7 +75,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "pnMessage/plTimeMsg.h"
#include "plgDispatch.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "hsFastMath.h"
#include "hsStream.h"

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaFootMgr.cpp

@ -60,7 +60,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plAvatar/plArmatureMod.h"
#include "plAvatar/plAvBrainHuman.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static plRandom sRand;
static const uint32_t kNumPrintIDs = 2;

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaRippleMgr.cpp

@ -61,7 +61,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plAvatar/plAvBrainHuman.h"
#include "plAvatar/plArmatureMod.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static plRandom sRand;
#include "plTweak.h"

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaRippleMgrVS.cpp

@ -68,7 +68,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plAvatar/plAvBrainHuman.h"
#include "plAvatar/plArmatureMod.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static plRandom sRand;
#include "plTweak.h"

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaTorpedoMgr.cpp

@ -54,7 +54,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTimer.h"
#include "plTweak.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static const uint32_t kNumPrintIDs = 0;

2
Sources/Plasma/PubUtilLib/plDrawable/plDynaWakeMgr.cpp

@ -64,7 +64,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plInterp/plAnimPath.h"
#include "hsFastMath.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static plRandom sRand;

2
Sources/Plasma/PubUtilLib/plDrawable/plWaveSet7.h

@ -46,7 +46,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsGeometry3.h"
#include "hsTemplates.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "hsBounds.h"
#include "plFixedWaterState7.h"

1
Sources/Plasma/PubUtilLib/plMath/CMakeLists.txt

@ -14,7 +14,6 @@ set(plMath_HEADERS
hsRadixSort.h
hsSearchVersion.h
plAvg.h
plRandom.h
plTriUtils.h
)

2
Sources/Plasma/PubUtilLib/plParticleSystem/plParticleEffect.cpp

@ -49,7 +49,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsResMgr.h"
#include "plPipeline.h"
#include "hsFastMath.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plParticleSystem.h"
#include "plMessage/plParticleUpdateMsg.h"

2
Sources/Plasma/PubUtilLib/plParticleSystem/plParticleGenerator.cpp

@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plMessage/plParticleUpdateMsg.h"
#include "plInterp/plController.h"
#include "hsResMgr.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
static const float DEFAULT_INVERSE_MASS = 1.f;

2
Sources/Tools/MaxComponent/plClusterComponent.cpp

@ -57,7 +57,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsBitVector.h"
#include "plMath/hsRadixSort.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "pfAnimation/plBlower.h"
#include "plDicer.h"

2
Sources/Tools/MaxComponent/plObjectFlockerComponent.cpp

@ -44,7 +44,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "resource.h"
#include "plComponent.h"
#include "plComponentReg.h"
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plObjectFlockerComponent.h"
#include "pnKeyedObject/plUoid.h"
#include "MaxMain/plMaxNode.h"

2
Sources/Tools/MaxConvert/plDistributor.h

@ -43,7 +43,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef plDistributor_inc
#define plDistributor_inc
#include "plMath/plRandom.h"
#include "pnEncryption/plRandom.h"
#include "plDistTree.h"
class INode;

Loading…
Cancel
Save