mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
PubUtilLib part III
This commit is contained in:
@ -21,3 +21,34 @@ add_subdirectory(plGLight)
|
|||||||
add_subdirectory(plInterp)
|
add_subdirectory(plInterp)
|
||||||
add_subdirectory(plIntersect)
|
add_subdirectory(plIntersect)
|
||||||
add_subdirectory(plJPEG)
|
add_subdirectory(plJPEG)
|
||||||
|
add_subdirectory(plMath)
|
||||||
|
add_subdirectory(plMessage)
|
||||||
|
#add_subdirectory(plModifier) # TODO: PhysX
|
||||||
|
#add_subdirectory(plNetClient) # TODO: STLport
|
||||||
|
add_subdirectory(plNetClientComm)
|
||||||
|
add_subdirectory(plNetClientRecorder)
|
||||||
|
#add_subdirectory(plNetCommon) # TODO: STLport
|
||||||
|
add_subdirectory(plNetGameLib)
|
||||||
|
#add_subdirectory(plNetMessage)
|
||||||
|
#add_subdirectory(plNetTransport)
|
||||||
|
#add_subdirectory(plParticleSystem)
|
||||||
|
#add_subdirectory(plPhysical)
|
||||||
|
#add_subdirectory(plPhysX)
|
||||||
|
#add_subdirectory(plPipeline)
|
||||||
|
#add_subdirectory(plProgressMgr)
|
||||||
|
#add_subdirectory(plResMgr)
|
||||||
|
#add_subdirectory(plScene)
|
||||||
|
#add_subdirectory(plSDL)
|
||||||
|
#add_subdirectory(plSDLBrowser) # Not being used by any current slns
|
||||||
|
#add_subdirectory(plSockets)
|
||||||
|
#add_subdirectory(plStatGather)
|
||||||
|
#add_subdirectory(plStatusLog)
|
||||||
|
#add_subdirectory(plStreamLogger)
|
||||||
|
#add_subdirectory(plSurface)
|
||||||
|
#add_subdirectory(plTransform)
|
||||||
|
#add_subdirectory(plUnifiedTime)
|
||||||
|
#add_subdirectory(plUUID)
|
||||||
|
#add_subdirectory(plVault)
|
||||||
|
#add_subdirectory(plWinStrBlock) # Not being used by any current slns
|
||||||
|
#add_subdirectory(plWndCtrls) # Not being used by any current slns
|
||||||
|
#add_subdirectory(PubUtilInc)
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
include_directories("../../CoreLib")
|
||||||
|
include_directories("../../NucleusLib")
|
||||||
|
include_directories("../../PubUtilLib")
|
||||||
|
|
||||||
|
set(plMath_SOURCES
|
||||||
|
hsNoiseFunc.cpp
|
||||||
|
hsRadixSort.cpp
|
||||||
|
plAvg.cpp
|
||||||
|
plTriUtils.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(plMath_HEADERS
|
||||||
|
hsNoiseFunc.h
|
||||||
|
hsRadixSort.h
|
||||||
|
hsSearchVersion.h
|
||||||
|
plAvg.h
|
||||||
|
plRandom.h
|
||||||
|
plTriUtils.h
|
||||||
|
)
|
||||||
|
|
||||||
|
add_library(plMath STATIC ${plMath_SOURCES} ${plMath_HEADERS})
|
||||||
|
|
||||||
|
source_group("Source Files" FILES ${plMath_SOURCES})
|
||||||
|
source_group("Header Files" FILES ${plMath_HEADERS})
|
@ -0,0 +1,131 @@
|
|||||||
|
include_directories("../../CoreLib")
|
||||||
|
include_directories("../../NucleusLib/inc")
|
||||||
|
include_directories("../../NucleusLib")
|
||||||
|
include_directories("../../PubUtilLib")
|
||||||
|
|
||||||
|
set(plMessage_SOURCES
|
||||||
|
plAccountUpdateMsg.cpp
|
||||||
|
plAIMsg.cpp
|
||||||
|
plAnimCmdMsg.cpp
|
||||||
|
plAvatarMsg.cpp
|
||||||
|
plAvCoopMsg.cpp
|
||||||
|
plBulletMsg.cpp
|
||||||
|
plCaptureRenderMsg.cpp
|
||||||
|
plCCRMsg.cpp
|
||||||
|
plClimbMsg.cpp
|
||||||
|
plCollideMsg.cpp
|
||||||
|
plDynaDecalEnableMsg.cpp
|
||||||
|
plDynamicEnvMapMsg.cpp
|
||||||
|
plDynamicTextMsg.cpp
|
||||||
|
plInputEventMsg.cpp
|
||||||
|
plInputIfaceMgrMsg.cpp
|
||||||
|
plLayRefMsg.cpp
|
||||||
|
plLinkToAgeMsg.cpp
|
||||||
|
plListenerMsg.cpp
|
||||||
|
plLoadAgeMsg.cpp
|
||||||
|
plLoadAvatarMsg.cpp
|
||||||
|
plLoadCloneMsg.cpp
|
||||||
|
plLOSHitMsg.cpp
|
||||||
|
plLOSRequestMsg.cpp
|
||||||
|
plMatrixUpdateMsg.cpp
|
||||||
|
plMultistageMsg.cpp
|
||||||
|
plNCAgeJoinerMsg.cpp
|
||||||
|
plNetClientMgrMsg.cpp
|
||||||
|
plNetCommMsgs.cpp
|
||||||
|
plNetVoiceListMsg.cpp
|
||||||
|
plOneShotCallbacks.cpp
|
||||||
|
plOneShotMsg.cpp
|
||||||
|
plRenderRequestMsg.cpp
|
||||||
|
plRideAnimatedPhysMsg.cpp
|
||||||
|
plRippleShapeMsg.cpp
|
||||||
|
plSimInfluenceMsg.cpp
|
||||||
|
plSimStateMsg.cpp
|
||||||
|
plSwimMsg.cpp
|
||||||
|
plSynchEnableMsg.cpp
|
||||||
|
plTransitionMsg.cpp
|
||||||
|
plVaultNotifyMsg.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(plMessage_HEADERS
|
||||||
|
plAccountUpdateMsg.h
|
||||||
|
plActivatorMsg.h
|
||||||
|
plAgeLoadedMsg.h
|
||||||
|
plAIMsg.h
|
||||||
|
plAngularVelocityMsg.h
|
||||||
|
plAnimCmdMsg.h
|
||||||
|
plAvatarFootMsg.h
|
||||||
|
plAvatarMsg.h
|
||||||
|
plAvCoopMsg.h
|
||||||
|
plBulletMsg.h
|
||||||
|
plCaptureRenderMsg.h
|
||||||
|
plCCRMessageCreatable.h
|
||||||
|
plCCRMsg.h
|
||||||
|
plClimbEventMsg.h
|
||||||
|
plClimbMsg.h
|
||||||
|
plCollideMsg.h
|
||||||
|
plCondRefMsg.h
|
||||||
|
plConnectedToVaultMsg.h
|
||||||
|
plConsoleMsg.h
|
||||||
|
plDeviceRecreateMsg.h
|
||||||
|
plDynaDecalEnableMsg.h
|
||||||
|
plDynamicEnvMapMsg.h
|
||||||
|
plDynamicTextMsg.h
|
||||||
|
plElementRefMsg.h
|
||||||
|
plExcludeRegionMsg.h
|
||||||
|
plInputEventMsg.h
|
||||||
|
plInputIfaceMgrMsg.h
|
||||||
|
plInterestingPing.h
|
||||||
|
plLayRefMsg.h
|
||||||
|
plLightRefMsg.h
|
||||||
|
plLinearVelocityMsg.h
|
||||||
|
plLinkToAgeMsg.h
|
||||||
|
plListenerMsg.h
|
||||||
|
plLoadAgeMsg.h
|
||||||
|
plLoadAvatarMsg.h
|
||||||
|
plLoadCloneMsg.h
|
||||||
|
plLOSHitMsg.h
|
||||||
|
plLOSRequestMsg.h
|
||||||
|
plMatRefMsg.h
|
||||||
|
plMatrixUpdateMsg.h
|
||||||
|
plMemberUpdateMsg.h
|
||||||
|
plMeshRefMsg.h
|
||||||
|
plMessageCreatable.h
|
||||||
|
plMovieMsg.h
|
||||||
|
plMultistageMsg.h
|
||||||
|
plNCAgeJoinerMsg.h
|
||||||
|
plNetClientMgrMsg.h
|
||||||
|
plNetCommMsgs.h
|
||||||
|
plNetOwnershipMsg.h
|
||||||
|
plNetVoiceListMsg.h
|
||||||
|
plNodeCleanupMsg.h
|
||||||
|
plOneShotCallbacks.h
|
||||||
|
plOneShotMsg.h
|
||||||
|
plParticleUpdateMsg.h
|
||||||
|
plPickedMsg.h
|
||||||
|
plPreloaderMsg.h
|
||||||
|
plRenderMsg.h
|
||||||
|
plRenderRequestMsg.h
|
||||||
|
plReplaceGeometryMsg.h
|
||||||
|
plResMgrHelperMsg.h
|
||||||
|
plResponderMsg.h
|
||||||
|
plRideAnimatedPhysMsg.h
|
||||||
|
plRippleShapeMsg.h
|
||||||
|
plRoomLoadNotifyMsg.h
|
||||||
|
plShadowCastMsg.h
|
||||||
|
plSimInfluenceMsg.h
|
||||||
|
plSimStateMsg.h
|
||||||
|
plSpawnModMsg.h
|
||||||
|
plSpawnRequestMsg.h
|
||||||
|
plSwimMsg.h
|
||||||
|
plSynchEnableMsg.h
|
||||||
|
plTimerCallbackMsg.h
|
||||||
|
plTransitionMsg.h
|
||||||
|
plTriggerMsg.h
|
||||||
|
plUniqueIdsMsg.h
|
||||||
|
plVaultNotifyMsg.h
|
||||||
|
)
|
||||||
|
|
||||||
|
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS})
|
||||||
|
|
||||||
|
source_group("Source Files" FILES ${plMessage_SOURCES})
|
||||||
|
source_group("Header Files" FILES ${plMessage_HEADERS})
|
@ -31,7 +31,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
|
||||||
#include "..\plAvatar\plArmatureMod.h"
|
#include "plAvatar/plArmatureMod.h"
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
|
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plAvBrainCritter;
|
class plAvBrainCritter;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plAccountUpdateMsg_inc
|
#ifndef plAccountUpdateMsg_inc
|
||||||
#define plAccountUpdateMsg_inc
|
#define plAccountUpdateMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plActivatorMsg_inc
|
#ifndef plActivatorMsg_inc
|
||||||
#define plActivatorMsg_inc
|
#define plActivatorMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plAgeLoadedMsg_INC
|
#ifndef plAgeLoadedMsg_INC
|
||||||
#define plAgeLoadedMsg_INC
|
#define plAgeLoadedMsg_INC
|
||||||
|
|
||||||
#include "../pnUtils/pnUtils.h"
|
#include "pnUtils/pnUtils.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// A msg sent locally when pending pages are done loading or unloading.
|
// A msg sent locally when pending pages are done loading or unloading.
|
||||||
|
@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
|
#include "pnMessage/plSimulationMsg.h"
|
||||||
#include "../../CoreLib/hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
class plAngularVelocityMsg : public plSimulationMsg
|
class plAngularVelocityMsg : public plSimulationMsg
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -27,12 +27,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plAnimCmdMsg_inc
|
#ifndef plAnimCmdMsg_inc
|
||||||
#define plAnimCmdMsg_inc
|
#define plAnimCmdMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessageWithCallbacks.h"
|
#include "pnMessage/plMessageWithCallbacks.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
#include "hsTemplates.h"
|
#include "hsTemplates.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
#include "../plInterp/plAnimEaseTypes.h"
|
#include "plInterp/plAnimEaseTypes.h"
|
||||||
#include "../plInterp/plAnimTimeConvert.h"
|
#include "plInterp/plAnimTimeConvert.h"
|
||||||
|
|
||||||
class plAGAnimInstance;
|
class plAGAnimInstance;
|
||||||
|
|
||||||
|
@ -34,8 +34,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
// other
|
// other
|
||||||
#include "../plAvatar/plAvatarMgr.h"
|
#include "plAvatar/plAvatarMgr.h"
|
||||||
#include "../plAvatar/plCoopCoordinator.h"
|
#include "plAvatar/plCoopCoordinator.h"
|
||||||
|
|
||||||
// plAvCoopMsg -----------
|
// plAvCoopMsg -----------
|
||||||
// ------------
|
// ------------
|
||||||
|
@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
// INCLUDES
|
// INCLUDES
|
||||||
//
|
//
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plAvatarFootMsg_inc
|
#ifndef plAvatarFootMsg_inc
|
||||||
#define plAvatarFootMsg_inc
|
#define plAvatarFootMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plEventCallbackMsg.h"
|
#include "pnMessage/plEventCallbackMsg.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -29,11 +29,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
#include "../pnKeyedObject/plKey.h"
|
#include "pnKeyedObject/plKey.h"
|
||||||
#include "../pnSceneObject/plSceneObject.h"
|
#include "pnSceneObject/plSceneObject.h"
|
||||||
|
|
||||||
#ifndef SERVER
|
#ifndef SERVER
|
||||||
#include "../plAvatar/plAvBrain.h"
|
#include "plAvatar/plAvBrain.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plAvatarMsg_inc
|
#ifndef plAvatarMsg_inc
|
||||||
#define plAvatarMsg_inc
|
#define plAvatarMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
#include "../plAvatar/plArmatureMod.h"
|
#include "plAvatar/plArmatureMod.h"
|
||||||
#include "../pnMessage/plEventCallbackMsg.h"
|
#include "pnMessage/plEventCallbackMsg.h"
|
||||||
|
|
||||||
class plSceneObject;
|
class plSceneObject;
|
||||||
class hsStream;
|
class hsStream;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plBulletMsg_inc
|
#ifndef plBulletMsg_inc
|
||||||
#define plBulletMsg_inc
|
#define plBulletMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
class plBulletMsg : public plMessage
|
class plBulletMsg : public plMessage
|
||||||
|
@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "plCCRMsg.h"
|
#include "plCCRMsg.h"
|
||||||
|
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
#include "../plResMgr/plResManager.h"
|
#include "plResMgr/plResManager.h"
|
||||||
#include "../plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
|
|
||||||
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plCCRMsg_h
|
#ifndef plCCRMsg_h
|
||||||
#define plCCRMsg_h
|
#define plCCRMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Abstract Baseclass for CCR messages.
|
// Abstract Baseclass for CCR messages.
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "plCaptureRenderMsg.h"
|
#include "plCaptureRenderMsg.h"
|
||||||
#include "../plGImage/plMipmap.h"
|
#include "plGImage/plMipmap.h"
|
||||||
|
|
||||||
plCaptureRenderMsg::~plCaptureRenderMsg()
|
plCaptureRenderMsg::~plCaptureRenderMsg()
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plCaptureRenderMsg_inc
|
#ifndef plCaptureRenderMsg_inc
|
||||||
#define plCaptureRenderMsg_inc
|
#define plCaptureRenderMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plMipmap;
|
class plMipmap;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plClimbEventMsg_h_inc
|
#ifndef plClimbEventMsg_h_inc
|
||||||
#define plClimbEventMsg_h_inc
|
#define plClimbEventMsg_h_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plClimbMsg_h
|
#ifndef plClimbMsg_h
|
||||||
#define plClimbMsg_h
|
#define plClimbMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
/** \class plClimbMsg
|
/** \class plClimbMsg
|
||||||
Things you can say with a climb message:
|
Things you can say with a climb message:
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLCOLLIDEMSG_INC
|
#ifndef PLCOLLIDEMSG_INC
|
||||||
#define PLCOLLIDEMSG_INC
|
#define PLCOLLIDEMSG_INC
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plCollideMsg : public plMessage
|
class plCollideMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plCondRefMsg_inc
|
#ifndef plCondRefMsg_inc
|
||||||
#define plCondRefMsg_inc
|
#define plCondRefMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plRefMsg.h"
|
#include "pnMessage/plRefMsg.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plConnectedToVaultMsg_INC
|
#ifndef plConnectedToVaultMsg_INC
|
||||||
#define plConnectedToVaultMsg_INC
|
#define plConnectedToVaultMsg_INC
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// A msg sent locally (once) when the client has successfully connected to the vault.
|
// A msg sent locally (once) when the client has successfully connected to the vault.
|
||||||
|
@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plConsoleMsg_inc
|
#ifndef plConsoleMsg_inc
|
||||||
#define plConsoleMsg_inc
|
#define plConsoleMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plEventCallbackMsg;
|
class plEventCallbackMsg;
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef _plDeviceRecreateMsg_h
|
#ifndef _plDeviceRecreateMsg_h
|
||||||
#define _plDeviceRecreateMsg_h
|
#define _plDeviceRecreateMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plDeviceRecreateMsg : public plMessage
|
class plDeviceRecreateMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plDynaDecalEnableMsg_inc
|
#ifndef plDynaDecalEnableMsg_inc
|
||||||
#define plDynaDecalEnableMsg_inc
|
#define plDynaDecalEnableMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnKeyedObject/plKey.h"
|
#include "pnKeyedObject/plKey.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plDynamicEnvMapMsg_inc
|
#ifndef plDynamicEnvMapMsg_inc
|
||||||
#define plDynamicEnvMapMsg_inc
|
#define plDynamicEnvMapMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
#include "hsColorRGBA.h"
|
#include "hsColorRGBA.h"
|
||||||
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef _plDynamicTextMsg_h
|
#ifndef _plDynamicTextMsg_h
|
||||||
#define _plDynamicTextMsg_h
|
#define _plDynamicTextMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsColorRGBA.h"
|
#include "hsColorRGBA.h"
|
||||||
|
|
||||||
class plDynamicTextMap;
|
class plDynamicTextMap;
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plExcludeRegionMsg_inc
|
#ifndef plExcludeRegionMsg_inc
|
||||||
#define plExcludeRegionMsg_inc
|
#define plExcludeRegionMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "plInputEventMsg.h"
|
#include "plInputEventMsg.h"
|
||||||
#include "../pnKeyedObject/plKey.h"
|
#include "pnKeyedObject/plKey.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
|
||||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plInputEventMsg_inc
|
#ifndef plInputEventMsg_inc
|
||||||
#define plInputEventMsg_inc
|
#define plInputEventMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnInputCore/plControlDefinition.h"
|
#include "pnInputCore/plControlDefinition.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
|
@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "plInputIfaceMgrMsg.h"
|
#include "plInputIfaceMgrMsg.h"
|
||||||
#include "../plInputCore/plInputInterface.h"
|
#include "plInputCore/plInputInterface.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsRefCnt.h"
|
#include "hsRefCnt.h"
|
||||||
|
|
||||||
|
@ -35,8 +35,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnUtils/pnUtils.h"
|
#include "pnUtils/pnUtils.h"
|
||||||
|
|
||||||
class plInputInterface;
|
class plInputInterface;
|
||||||
class plInputIfaceMgrMsg : public plMessage
|
class plInputIfaceMgrMsg : public plMessage
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plInterestingPing_inc
|
#ifndef plInterestingPing_inc
|
||||||
#define plInterestingPing_inc
|
#define plInterestingPing_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLOSHitMsg_inc
|
#ifndef plLOSHitMsg_inc
|
||||||
#define plLOSHitMsg_inc
|
#define plLOSHitMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plLOSRequestMsg.h"
|
#include "plLOSRequestMsg.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
|
||||||
plLOSRequestMsg::plLOSRequestMsg()
|
plLOSRequestMsg::plLOSRequestMsg()
|
||||||
: fRequestID(0),
|
: fRequestID(0),
|
||||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLOSRequestMsg_inc
|
#ifndef plLOSRequestMsg_inc
|
||||||
#define plLOSRequestMsg_inc
|
#define plLOSRequestMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plPhysical/plSimDefs.h"
|
#include "plPhysical/plSimDefs.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
class plLOSRequestMsg : public plMessage
|
class plLOSRequestMsg : public plMessage
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLayRefMsg_inc
|
#ifndef plLayRefMsg_inc
|
||||||
#define plLayRefMsg_inc
|
#define plLayRefMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plRefMsg.h"
|
#include "pnMessage/plRefMsg.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLightRefMsg_inc
|
#ifndef plLightRefMsg_inc
|
||||||
#define plLightRefMsg_inc
|
#define plLightRefMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plRefMsg.h"
|
#include "pnMessage/plRefMsg.h"
|
||||||
|
|
||||||
class hsKeyedObject;
|
class hsKeyedObject;
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
|
#include "pnMessage/plSimulationMsg.h"
|
||||||
#include "../../CoreLib/hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
class plLinearVelocityMsg : public plSimulationMsg
|
class plLinearVelocityMsg : public plSimulationMsg
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
#include "plgDispatch.h"
|
#include "plgDispatch.h"
|
||||||
#include "../plNetCommon/plNetServerSessionInfo.h"
|
#include "plNetCommon/plNetServerSessionInfo.h"
|
||||||
#include "../plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLinkToAgeMsg_INC
|
#ifndef plLinkToAgeMsg_INC
|
||||||
#define plLinkToAgeMsg_INC
|
#define plLinkToAgeMsg_INC
|
||||||
|
|
||||||
#include "../pnMessage/plMessageWithCallbacks.h"
|
#include "pnMessage/plMessageWithCallbacks.h"
|
||||||
#include "../pnMessage/plEventCallbackMsg.h"
|
#include "pnMessage/plEventCallbackMsg.h"
|
||||||
#include "../plNetCommon/plNetServerSessionInfo.h"
|
#include "plNetCommon/plNetServerSessionInfo.h"
|
||||||
#include "../plNetCommon/plNetCommonHelpers.h"
|
#include "plNetCommon/plNetCommonHelpers.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "plListenerMsg.h"
|
#include "plListenerMsg.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
#include "../pnKeyedObject/plFixedKey.h"
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
|
|
||||||
|
|
||||||
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)
|
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plListenerMsg_inc
|
#ifndef plListenerMsg_inc
|
||||||
#define plListenerMsg_inc
|
#define plListenerMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
class plListenerMsg : public plMessage
|
class plListenerMsg : public plMessage
|
||||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plLoadAgeMsg_INC
|
#ifndef plLoadAgeMsg_INC
|
||||||
#define plLoadAgeMsg_INC
|
#define plLoadAgeMsg_INC
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plUUID/plUUID.h"
|
#include "plUUID/plUUID.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -29,10 +29,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "plLoadAvatarMsg.h"
|
#include "plLoadAvatarMsg.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
#include "../pnNetCommon/plSynchedObject.h"
|
#include "pnNetCommon/plSynchedObject.h"
|
||||||
|
|
||||||
#include "../plAvatar/plAvatarTasks.h"
|
#include "plAvatar/plAvatarTasks.h"
|
||||||
|
|
||||||
|
|
||||||
//////////////////
|
//////////////////
|
||||||
|
@ -31,7 +31,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "plLoadCloneMsg.h"
|
#include "plLoadCloneMsg.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
|
||||||
class plAvTask;
|
class plAvTask;
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
// other
|
// other
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#define plLoadCloneMsgMsg_INC
|
#define plLoadCloneMsgMsg_INC
|
||||||
|
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
// #include "hsUtils.h"
|
// #include "hsUtils.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
|
||||||
/** \class plLoadCloneMsg
|
/** \class plLoadCloneMsg
|
||||||
Tell the net client manager to allocate a new object based on copying an
|
Tell the net client manager to allocate a new object based on copying an
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMatRefMsg_inc
|
#ifndef plMatRefMsg_inc
|
||||||
#define plMatRefMsg_inc
|
#define plMatRefMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plRefMsg.h"
|
#include "pnMessage/plRefMsg.h"
|
||||||
|
|
||||||
class plMatRefMsg : public plGenRefMsg
|
class plMatRefMsg : public plGenRefMsg
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMatrixUpdateMsg_inc
|
#ifndef plMatrixUpdateMsg_inc
|
||||||
#define plMatrixUpdateMsg_inc
|
#define plMatrixUpdateMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsMatrix44.h"
|
#include "hsMatrix44.h"
|
||||||
|
|
||||||
class plMatrixUpdateMsg : public plMessage
|
class plMatrixUpdateMsg : public plMessage
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMemberUpdateMsg_INC
|
#ifndef plMemberUpdateMsg_INC
|
||||||
#define plMemberUpdateMsg_INC
|
#define plMemberUpdateMsg_INC
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsUtils.h"
|
#include "hsUtils.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMeshRefMsg_inc
|
#ifndef plMeshRefMsg_inc
|
||||||
#define plMeshRefMsg_inc
|
#define plMeshRefMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plRefMsg.h"
|
#include "pnMessage/plRefMsg.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMessageCreatable_inc
|
#ifndef plMessageCreatable_inc
|
||||||
#define plMessageCreatable_inc
|
#define plMessageCreatable_inc
|
||||||
|
|
||||||
#include "../pnFactory/plCreator.h"
|
#include "pnFactory/plCreator.h"
|
||||||
|
|
||||||
#include "plInterestingPing.h"
|
#include "plInterestingPing.h"
|
||||||
|
|
||||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMovieMsg_inc
|
#ifndef plMovieMsg_inc
|
||||||
#define plMovieMsg_inc
|
#define plMovieMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnKeyedObject/plFixedKey.h"
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
#include "hsPoint2.h"
|
#include "hsPoint2.h"
|
||||||
#include "hsTemplates.h"
|
#include "hsTemplates.h"
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plMultistageMsg_inc
|
#ifndef plMultistageMsg_inc
|
||||||
#define plMultistageMsg_inc
|
#define plMultistageMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
|
||||||
// Messages sent to a MultistageModifier.
|
// Messages sent to a MultistageModifier.
|
||||||
|
@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
|
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
|
||||||
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
|
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNCAGEJOINERMSG_H
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
|
|
||||||
class plNCAgeJoinerMsg : public plMessage {
|
class plNCAgeJoinerMsg : public plMessage {
|
||||||
|
@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
|
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
|
||||||
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
|
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCLIENTMGRMSG_H
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
|
|
||||||
class plNetClientMgrMsg : public plMessage {
|
class plNetClientMgrMsg : public plMessage {
|
||||||
|
@ -33,10 +33,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCOMMMSGS_H
|
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLNETCOMMMSGS_H
|
||||||
|
|
||||||
|
|
||||||
#include "../pnUtils/pnUtils.h"
|
#include "pnUtils/pnUtils.h"
|
||||||
#include "../pnNetBase/pnNetBase.h"
|
#include "pnNetBase/pnNetBase.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnNetProtocol/pnNetProtocol.h"
|
#include "pnNetProtocol/pnNetProtocol.h"
|
||||||
|
|
||||||
|
|
||||||
class plNetCommReplyMsg : public plMessage {
|
class plNetCommReplyMsg : public plMessage {
|
||||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#define plNetOwnershipMsg_INC
|
#define plNetOwnershipMsg_INC
|
||||||
|
|
||||||
#include "hsStlUtils.h"
|
#include "hsStlUtils.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plNetMessage/plNetMessage.h"
|
#include "plNetMessage/plNetMessage.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// A msg sent locally when this client changes ownership of a group of objects
|
// A msg sent locally when this client changes ownership of a group of objects
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plNetVoiceListMsg_inc
|
#ifndef plNetVoiceListMsg_inc
|
||||||
#define plNetVoiceListMsg_inc
|
#define plNetVoiceListMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsTemplates.h"
|
#include "hsTemplates.h"
|
||||||
|
|
||||||
class plNetVoiceListMsg : public plMessage
|
class plNetVoiceListMsg : public plMessage
|
||||||
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef _plNodeCleanupMsg_h
|
#ifndef _plNodeCleanupMsg_h
|
||||||
#define _plNodeCleanupMsg_h
|
#define _plNodeCleanupMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plNodeCleanupMsg : public plMessage
|
class plNodeCleanupMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsStlUtils.h"
|
#include "hsStlUtils.h"
|
||||||
#include "hsRefCnt.h"
|
#include "hsRefCnt.h"
|
||||||
|
|
||||||
#include "../pnKeyedObject/plKey.h"
|
#include "pnKeyedObject/plKey.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plParticleUpdateMsg_inc
|
#ifndef plParticleUpdateMsg_inc
|
||||||
#define plParticleUpdateMsg_inc
|
#define plParticleUpdateMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plPickedMsg_inc
|
#ifndef plPickedMsg_inc
|
||||||
#define plPickedMsg_inc
|
#define plPickedMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
|
#ifndef PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
|
||||||
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
|
#define PLASMA20_SOURCES_PLASMA_PUBUTILLIB_PLMESSAGE_PLPRELOADERMSG_H
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plPreloaderMsg : public plMessage {
|
class plPreloaderMsg : public plMessage {
|
||||||
public:
|
public:
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plRenderMsg_inc
|
#ifndef plRenderMsg_inc
|
||||||
#define plRenderMsg_inc
|
#define plRenderMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plPipeline;
|
class plPipeline;
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "plRenderRequestMsg.h"
|
#include "plRenderRequestMsg.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
#include "../pnKeyedObject/plFixedKey.h"
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plRenderRequestMsg_inc
|
#ifndef plRenderRequestMsg_inc
|
||||||
#define plRenderRequestMsg_inc
|
#define plRenderRequestMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsRefCnt.h"
|
#include "hsRefCnt.h"
|
||||||
|
|
||||||
class plRenderRequest;
|
class plRenderRequest;
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plReplaceGeometryMsg_inc
|
#ifndef plReplaceGeometryMsg_inc
|
||||||
#define plReplaceGeometryMsg_inc
|
#define plReplaceGeometryMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plSharedMesh;
|
class plSharedMesh;
|
||||||
class hsGMaterial;
|
class hsGMaterial;
|
||||||
|
@ -29,8 +29,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plResMgr/plResManagerHelper.h"
|
#include "plResMgr/plResManagerHelper.h"
|
||||||
|
|
||||||
class plResManagerHelper;
|
class plResManagerHelper;
|
||||||
class plResMgrHelperMsg : public plMessage
|
class plResMgrHelperMsg : public plMessage
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plResponderMsg_inc
|
#ifndef plResponderMsg_inc
|
||||||
#define plResponderMsg_inc
|
#define plResponderMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
// Derive your message from this class if you need to know the key of the avatar
|
// Derive your message from this class if you need to know the key of the avatar
|
||||||
// that activated your responder
|
// that activated your responder
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PL_RIDE_ANIMATED_PHYS_MSG
|
#ifndef PL_RIDE_ANIMATED_PHYS_MSG
|
||||||
#define PL_RIDE_ANIMATED_PHYS_MSG
|
#define PL_RIDE_ANIMATED_PHYS_MSG
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plRideAnimatedPhysMsg : public plMessage
|
class plRideAnimatedPhysMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plRippleShapeMsg_inc
|
#ifndef plRippleShapeMsg_inc
|
||||||
#define plRippleShapeMsg_inc
|
#define plRippleShapeMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plPrintShape;
|
class plPrintShape;
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
// Its up to the receiver to decide if they are interested in that particular room
|
// Its up to the receiver to decide if they are interested in that particular room
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plRoomLoadNotifyMsg : public plMessage
|
class plRoomLoadNotifyMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plShadowCastMsg_inc
|
#ifndef plShadowCastMsg_inc
|
||||||
#define plShadowCastMsg_inc
|
#define plShadowCastMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class plPipeline;
|
class plPipeline;
|
||||||
class plShadowCaster;
|
class plShadowCaster;
|
||||||
|
@ -23,8 +23,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "../plMessage/plSimInfluenceMsg.h"
|
#include "plMessage/plSimInfluenceMsg.h"
|
||||||
#include "../../CoreLib/hsStream.h"
|
#include "hsStream.h"
|
||||||
/*
|
/*
|
||||||
|
|
||||||
void plSimInfluenceMsg::Read(hsStream *stream, hsResMgr *mgr)
|
void plSimInfluenceMsg::Read(hsStream *stream, hsResMgr *mgr)
|
||||||
|
@ -29,8 +29,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLSIMINFLUENCEMSG_H
|
#ifndef PLSIMINFLUENCEMSG_H
|
||||||
#define PLSIMINFLUENCEMSG_H
|
#define PLSIMINFLUENCEMSG_H
|
||||||
/*
|
/*
|
||||||
#include "../../NucleusLib/pnMessage/plSimulationMsg.h"
|
#include "pnMessage/plSimulationMsg.h"
|
||||||
#include "../../CoreLib/hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
////////////
|
////////////
|
||||||
//
|
//
|
||||||
|
@ -23,7 +23,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "../plMessage/plSimStateMsg.h"
|
#include "plMessage/plSimStateMsg.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)
|
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)
|
||||||
|
@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef PLSIMSTATEMSG_INC
|
#ifndef PLSIMSTATEMSG_INC
|
||||||
#define PLSIMSTATEMSG_INC
|
#define PLSIMSTATEMSG_INC
|
||||||
|
|
||||||
#include "../pnMessage/plSimulationMsg.h"
|
#include "pnMessage/plSimulationMsg.h"
|
||||||
|
|
||||||
// use a nil key to return to main world
|
// use a nil key to return to main world
|
||||||
// otherwise pass in the key of the world you're going to.
|
// otherwise pass in the key of the world you're going to.
|
||||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plSpawnModMsg_inc
|
#ifndef plSpawnModMsg_inc
|
||||||
#define plSpawnModMsg_inc
|
#define plSpawnModMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
#include "hsGeometry3.h"
|
#include "hsGeometry3.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plSpawnRequestMsg_inc
|
#ifndef plSpawnRequestMsg_inc
|
||||||
#define plSpawnRequestMsg_inc
|
#define plSpawnRequestMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plSwimMsg_h
|
#ifndef plSwimMsg_h
|
||||||
#define plSwimMsg_h
|
#define plSwimMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
/** \class plSwimMsg
|
/** \class plSwimMsg
|
||||||
You're either entering the pool, or leaving. Those are the only swim messages right now.
|
You're either entering the pool, or leaving. Those are the only swim messages right now.
|
||||||
|
@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plSynchEnableMsg.h"
|
#include "plSynchEnableMsg.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
|
||||||
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
|
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plSynchEnableMsg_h
|
#ifndef plSynchEnableMsg_h
|
||||||
#define plSynchEnableMsg_h
|
#define plSynchEnableMsg_h
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Push or pop a cmd to enable/disable dirty state tracking.
|
// Push or pop a cmd to enable/disable dirty state tracking.
|
||||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plTimerCallbackMsg_inc
|
#ifndef plTimerCallbackMsg_inc
|
||||||
#define plTimerCallbackMsg_inc
|
#define plTimerCallbackMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
|
||||||
class hsResMgr;
|
class hsResMgr;
|
||||||
|
@ -29,7 +29,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "../pnMessage/plMessageWithCallbacks.h"
|
#include "pnMessage/plMessageWithCallbacks.h"
|
||||||
|
|
||||||
class plTransitionMsg : public plMessageWithCallbacks
|
class plTransitionMsg : public plMessageWithCallbacks
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plTriggerMsg_inc
|
#ifndef plTriggerMsg_inc
|
||||||
#define plTriggerMsg_inc
|
#define plTriggerMsg_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
|
|
||||||
|
|
||||||
class plTriggerMsg : public plMessage
|
class plTriggerMsg : public plMessage
|
||||||
|
@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef plVaultNotifyMsg_h_inc
|
#ifndef plVaultNotifyMsg_h_inc
|
||||||
#define plVaultNotifyMsg_h_inc
|
#define plVaultNotifyMsg_h_inc
|
||||||
|
|
||||||
#include "../pnMessage/plMessage.h"
|
#include "pnMessage/plMessage.h"
|
||||||
#include "../plNetCommon/plNetCommonHelpers.h"
|
#include "plNetCommon/plNetCommonHelpers.h"
|
||||||
#include "../plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
|
|
||||||
class plVaultNotifyMsg : public plMessage
|
class plVaultNotifyMsg : public plMessage
|
||||||
{
|
{
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
include_directories("../../CoreLib")
|
||||||
|
include_directories("../../FeatureLib")
|
||||||
|
include_directories("../../NucleusLib/inc")
|
||||||
|
include_directories("../../NucleusLib")
|
||||||
|
include_directories("../../PubUtilLib")
|
||||||
|
|
||||||
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||||
|
|
||||||
|
set(plNetClientComm_SOURCES
|
||||||
|
plNetClientComm.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(plNetClientComm_HEADERS
|
||||||
|
plNetClientComm.h
|
||||||
|
plNetClientCommCreatable.h
|
||||||
|
)
|
||||||
|
|
||||||
|
add_library(plNetClientComm STATIC ${plNetClientComm_SOURCES} ${plNetClientComm_HEADERS})
|
||||||
|
|
||||||
|
source_group("Source Files" FILES ${plNetClientComm_SOURCES})
|
||||||
|
source_group("Header Files" FILES ${plNetClientComm_HEADERS})
|
@ -31,21 +31,21 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "plNetClientComm.h"
|
#include "plNetClientComm.h"
|
||||||
|
|
||||||
#include "../pnAsyncCore/pnAsyncCore.h"
|
#include "pnAsyncCore/pnAsyncCore.h"
|
||||||
#include "../pnProduct/pnProduct.h"
|
#include "pnProduct/pnProduct.h"
|
||||||
#include "../pnNetCli/pnNetCli.h"
|
#include "pnNetCli/pnNetCli.h"
|
||||||
#include "../plNetGameLib/plNetGameLib.h"
|
#include "plNetGameLib/plNetGameLib.h"
|
||||||
#include "../pnIni/pnIni.h"
|
#include "pnIni/pnIni.h"
|
||||||
|
|
||||||
#include "../plMessage/plNetCommMsgs.h"
|
#include "plMessage/plNetCommMsgs.h"
|
||||||
#include "../plMessage/plNetClientMgrMsg.h"
|
#include "plMessage/plNetClientMgrMsg.h"
|
||||||
#include "../plNetMessage/plNetMessage.h"
|
#include "plNetMessage/plNetMessage.h"
|
||||||
#include "../plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
#include "../plVault/plVault.h"
|
#include "plVault/plVault.h"
|
||||||
#include "../plMessage/plAccountUpdateMsg.h"
|
#include "plMessage/plAccountUpdateMsg.h"
|
||||||
#include "../plNetClient/plNetClientMgr.h"
|
#include "plNetClient/plNetClientMgr.h"
|
||||||
|
|
||||||
#include "../../FeatureLib/pfMessage/pfKIMsg.h"
|
#include "pfMessage/pfKIMsg.h"
|
||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
|
@ -38,11 +38,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "../pnUtils/pnUtils.h"
|
#include "pnUtils/pnUtils.h"
|
||||||
#include "../pnNetBase/pnNetBase.h"
|
#include "pnNetBase/pnNetBase.h"
|
||||||
#include "../plNetCommon/plNetServerSessionInfo.h"
|
#include "plNetCommon/plNetServerSessionInfo.h"
|
||||||
#include "../plNetCommon/plNetCommonHelpers.h"
|
#include "plNetCommon/plNetCommonHelpers.h"
|
||||||
#include "../plMessage/plNetCommMsgs.h"
|
#include "plMessage/plNetCommMsgs.h"
|
||||||
|
|
||||||
|
|
||||||
class plNetMessage;
|
class plNetMessage;
|
||||||
|
@ -0,0 +1,19 @@
|
|||||||
|
include_directories("../../CoreLib")
|
||||||
|
include_directories("../../NucleusLib/inc")
|
||||||
|
include_directories("../../NucleusLib")
|
||||||
|
include_directories("../../PubUtilLib")
|
||||||
|
|
||||||
|
set(plNetClientRecorder_SOURCES
|
||||||
|
plNetClientRecorder.cpp
|
||||||
|
plNetClientStatsRecorder.cpp
|
||||||
|
plNetClientStreamRecorder.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(plNetClientRecorder_HEADERS
|
||||||
|
plNetClientRecorder.h
|
||||||
|
)
|
||||||
|
|
||||||
|
add_library(plNetClientRecorder STATIC ${plNetClientRecorder_SOURCES} ${plNetClientRecorder_HEADERS})
|
||||||
|
|
||||||
|
source_group("Source Files" FILES ${plNetClientRecorder_SOURCES})
|
||||||
|
source_group("Header Files" FILES ${plNetClientRecorder_HEADERS})
|
@ -27,20 +27,20 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsTimer.h"
|
#include "hsTimer.h"
|
||||||
|
|
||||||
#include "../plNetMessage/plNetMessage.h"
|
#include "plNetMessage/plNetMessage.h"
|
||||||
#include "plCreatableIndex.h"
|
#include "plCreatableIndex.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "plgDispatch.h"
|
#include "plgDispatch.h"
|
||||||
#include "../plSDL/plSDL.h"
|
#include "plSDL/plSDL.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
|
||||||
#include "../plMessage/plLinkToAgeMsg.h"
|
#include "plMessage/plLinkToAgeMsg.h"
|
||||||
#include "../plMessage/plLoadAvatarMsg.h"
|
#include "plMessage/plLoadAvatarMsg.h"
|
||||||
#include "../pnMessage/plNotifyMsg.h"
|
#include "pnMessage/plNotifyMsg.h"
|
||||||
#include "../plMessage/plAgeLoadedMsg.h"
|
#include "plMessage/plAgeLoadedMsg.h"
|
||||||
|
|
||||||
#include "../plStatusLog/plStatusLog.h"
|
#include "plStatusLog/plStatusLog.h"
|
||||||
#include "../plFile/hsFiles.h"
|
#include "plFile/hsFiles.h"
|
||||||
|
|
||||||
plNetClientRecorder::plNetClientRecorder(TimeWrapper* timeWrapper) :
|
plNetClientRecorder::plNetClientRecorder(TimeWrapper* timeWrapper) :
|
||||||
fTimeWrapper(timeWrapper)
|
fTimeWrapper(timeWrapper)
|
||||||
|
@ -25,19 +25,19 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plNetClientRecorder.h"
|
#include "plNetClientRecorder.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "../plNetMessage/plNetMessage.h"
|
#include "plNetMessage/plNetMessage.h"
|
||||||
#include "plCreatableIndex.h"
|
#include "plCreatableIndex.h"
|
||||||
#include "plgDispatch.h"
|
#include "plgDispatch.h"
|
||||||
#include "../plSDL/plSDL.h"
|
#include "plSDL/plSDL.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
|
||||||
#include "../plMessage/plLinkToAgeMsg.h"
|
#include "plMessage/plLinkToAgeMsg.h"
|
||||||
#include "../plMessage/plLoadAvatarMsg.h"
|
#include "plMessage/plLoadAvatarMsg.h"
|
||||||
#include "../plMessage/plLinkToAgeMsg.h"
|
#include "plMessage/plLinkToAgeMsg.h"
|
||||||
#include "../pnMessage/plNotifyMsg.h"
|
#include "pnMessage/plNotifyMsg.h"
|
||||||
#include "../plMessage/plAgeLoadedMsg.h"
|
#include "plMessage/plAgeLoadedMsg.h"
|
||||||
|
|
||||||
#include "../plStatusLog/plStatusLog.h"
|
#include "plStatusLog/plStatusLog.h"
|
||||||
|
|
||||||
|
|
||||||
plNetClientStatsRecorder::plNetClientStatsRecorder(TimeWrapper* timeWrapper) :
|
plNetClientStatsRecorder::plNetClientStatsRecorder(TimeWrapper* timeWrapper) :
|
||||||
|
@ -25,20 +25,20 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plNetClientRecorder.h"
|
#include "plNetClientRecorder.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "../plNetMessage/plNetMessage.h"
|
#include "plNetMessage/plNetMessage.h"
|
||||||
#include "plCreatableIndex.h"
|
#include "plCreatableIndex.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "plgDispatch.h"
|
#include "plgDispatch.h"
|
||||||
#include "../plSDL/plSDL.h"
|
#include "plSDL/plSDL.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
|
||||||
#include "../plMessage/plLinkToAgeMsg.h"
|
#include "plMessage/plLinkToAgeMsg.h"
|
||||||
#include "../plMessage/plLoadAvatarMsg.h"
|
#include "plMessage/plLoadAvatarMsg.h"
|
||||||
#include "../plMessage/plLinkToAgeMsg.h"
|
#include "plMessage/plLinkToAgeMsg.h"
|
||||||
#include "../pnMessage/plNotifyMsg.h"
|
#include "pnMessage/plNotifyMsg.h"
|
||||||
#include "../plMessage/plAgeLoadedMsg.h"
|
#include "plMessage/plAgeLoadedMsg.h"
|
||||||
|
|
||||||
#include "../plStatusLog/plStatusLog.h"
|
#include "plStatusLog/plStatusLog.h"
|
||||||
|
|
||||||
plNetClientStreamRecorder::plNetClientStreamRecorder(TimeWrapper* timeWrapper) :
|
plNetClientStreamRecorder::plNetClientStreamRecorder(TimeWrapper* timeWrapper) :
|
||||||
plNetClientLoggingRecorder(timeWrapper),
|
plNetClientLoggingRecorder(timeWrapper),
|
||||||
|
@ -29,9 +29,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "hsStlUtils.h"
|
#include "hsStlUtils.h"
|
||||||
#include "hsTimer.h"
|
#include "hsTimer.h"
|
||||||
#include "../pnNetCommon/pnNetCommon.h"
|
#include "pnNetCommon/pnNetCommon.h"
|
||||||
#include "../pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
#include "../pnFactory/plCreatable.h"
|
#include "pnFactory/plCreatable.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsTypes.h"
|
#include "hsTypes.h"
|
||||||
#include "hsStlUtils.h"
|
#include "hsStlUtils.h"
|
||||||
#include "../pnFactory/plCreatable.h"
|
#include "pnFactory/plCreatable.h"
|
||||||
#include "../pnNetCommon/plNetServers.h"
|
#include "pnNetCommon/plNetServers.h"
|
||||||
#include "../plNetCommon/plSpawnPointInfo.h"
|
#include "plNetCommon/plSpawnPointInfo.h"
|
||||||
#include "../plUUID/plUUID.h"
|
#include "plUUID/plUUID.h"
|
||||||
|
|
||||||
|
|
||||||
class hsStream;
|
class hsStream;
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user