mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
PCH-ize plMessage
This commit is contained in:
@ -13,7 +13,6 @@ set(plMessage_SOURCES
|
|||||||
plCaptureRenderMsg.cpp
|
plCaptureRenderMsg.cpp
|
||||||
plCCRMsg.cpp
|
plCCRMsg.cpp
|
||||||
plClimbMsg.cpp
|
plClimbMsg.cpp
|
||||||
plCollideMsg.cpp
|
|
||||||
plDynaDecalEnableMsg.cpp
|
plDynaDecalEnableMsg.cpp
|
||||||
plDynamicEnvMapMsg.cpp
|
plDynamicEnvMapMsg.cpp
|
||||||
plDynamicTextMsg.cpp
|
plDynamicTextMsg.cpp
|
||||||
@ -29,7 +28,6 @@ set(plMessage_SOURCES
|
|||||||
plLOSRequestMsg.cpp
|
plLOSRequestMsg.cpp
|
||||||
plMatrixUpdateMsg.cpp
|
plMatrixUpdateMsg.cpp
|
||||||
plMultistageMsg.cpp
|
plMultistageMsg.cpp
|
||||||
plNetCommMsgs.cpp
|
|
||||||
plNetVoiceListMsg.cpp
|
plNetVoiceListMsg.cpp
|
||||||
plOneShotCallbacks.cpp
|
plOneShotCallbacks.cpp
|
||||||
plOneShotMsg.cpp
|
plOneShotMsg.cpp
|
||||||
@ -119,6 +117,7 @@ set(plMessage_HEADERS
|
|||||||
plVaultNotifyMsg.h
|
plVaultNotifyMsg.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
use_precompiled_header(Pch.h Pch.cpp plMessage_HEADERS plMessage_SOURCES)
|
||||||
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS})
|
add_library(plMessage STATIC ${plMessage_SOURCES} ${plMessage_HEADERS})
|
||||||
|
|
||||||
source_group("Source Files" FILES ${plMessage_SOURCES})
|
source_group("Source Files" FILES ${plMessage_SOURCES})
|
||||||
|
@ -39,3 +39,5 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
|
#include "Pch.h"
|
@ -39,10 +39,23 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
/*****************************************************************************
|
|
||||||
*
|
|
||||||
* $/Plasma20/Sources/Plasma/PubUtilLib/plMessage/plNetCommMsgs.cpp
|
|
||||||
*
|
|
||||||
***/
|
|
||||||
|
|
||||||
#include "plNetCommMsgs.h"
|
// Plasma CoreLib
|
||||||
|
#include "HeadSpin.h"
|
||||||
|
#include "hsBitVector.h"
|
||||||
|
#include "hsColorRGBA.h"
|
||||||
|
#include "hsFastMath.h"
|
||||||
|
#include "hsGeometry3.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
#include "plString.h"
|
||||||
|
#include "hsTemplates.h"
|
||||||
|
|
||||||
|
// Plasma Nucleus
|
||||||
|
#include "plgDispatch.h"
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
|
#include "pnKeyedObject/plKey.h"
|
||||||
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
#include "pnMessage/plMessage.h"
|
||||||
|
#include "pnNetCommon/plNetApp.h"
|
@ -42,9 +42,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef SERVER // we use stuff the server doesn't link with
|
#ifndef SERVER // we use stuff the server doesn't link with
|
||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
|
|
||||||
#include "plAIMsg.h"
|
|
||||||
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plAIMsg.h"
|
||||||
|
|
||||||
#include "plAvatar/plArmatureMod.h"
|
#include "plAvatar/plArmatureMod.h"
|
||||||
|
|
||||||
|
@ -39,8 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plAccountUpdateMsg.h"
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plAccountUpdateMsg.h"
|
||||||
|
|
||||||
|
|
||||||
void plAccountUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plAccountUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -40,8 +40,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "plAnimCmdMsg.h"
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plAnimCmdMsg.h"
|
||||||
|
|
||||||
plAnimCmdMsg::~plAnimCmdMsg()
|
plAnimCmdMsg::~plAnimCmdMsg()
|
||||||
{
|
{
|
||||||
|
@ -42,12 +42,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef SERVER
|
#ifndef SERVER
|
||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
|
|
||||||
// singular
|
|
||||||
#include "plAvCoopMsg.h"
|
|
||||||
|
|
||||||
// global
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
// singular
|
||||||
|
#include "plAvCoopMsg.h"
|
||||||
|
|
||||||
// other
|
// other
|
||||||
#include "plAvatar/plAvatarMgr.h"
|
#include "plAvatar/plAvatarMgr.h"
|
||||||
|
@ -41,17 +41,16 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
|
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plAvatarMsg.h"
|
#include "plAvatarMsg.h"
|
||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "plMessage/plOneShotCallbacks.h"
|
||||||
|
|
||||||
#include "pnKeyedObject/plKey.h"
|
|
||||||
#include "pnSceneObject/plSceneObject.h"
|
#include "pnSceneObject/plSceneObject.h"
|
||||||
|
|
||||||
#include "plMessage/plOneShotCallbacks.h"
|
|
||||||
|
|
||||||
#ifndef SERVER
|
#ifndef SERVER
|
||||||
#include "plAvatar/plAvBrain.h"
|
# include "plAvatar/plAvBrain.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -41,11 +41,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
|
#include "hsFastMath.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plBulletMsg.h"
|
#include "plBulletMsg.h"
|
||||||
#include "hsFastMath.h"
|
|
||||||
|
|
||||||
void plBulletMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plBulletMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -39,11 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plCCRMsg.h"
|
|
||||||
|
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
#include "pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
#include "plResMgr/plResManager.h"
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plCCRMsg.h"
|
||||||
#include "plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
|
|
||||||
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plCCRPetitionMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
|
@ -41,6 +41,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plCaptureRenderMsg.h"
|
#include "plCaptureRenderMsg.h"
|
||||||
#include "plGImage/plMipmap.h"
|
#include "plGImage/plMipmap.h"
|
||||||
|
|
||||||
|
@ -39,12 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
// singular
|
|
||||||
#include "plClimbMsg.h"
|
|
||||||
|
|
||||||
// global
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plClimbMsg.h"
|
||||||
|
|
||||||
|
|
||||||
plClimbMsg::plClimbMsg()
|
plClimbMsg::plClimbMsg()
|
||||||
: fCommand(kNoCommand),
|
: fCommand(kNoCommand),
|
||||||
|
@ -41,10 +41,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plDynaDecalEnableMsg.h"
|
|
||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plDynaDecalEnableMsg.h"
|
||||||
|
|
||||||
|
|
||||||
plDynaDecalEnableMsg::plDynaDecalEnableMsg()
|
plDynaDecalEnableMsg::plDynaDecalEnableMsg()
|
||||||
: plMessage(nil, nil, nil),
|
: plMessage(nil, nil, nil),
|
||||||
|
@ -40,9 +40,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "plDynamicEnvMapMsg.h"
|
|
||||||
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plDynamicEnvMapMsg.h"
|
||||||
|
|
||||||
void plDynamicEnvMapMsg::Read(hsStream* s, hsResMgr* mgr)
|
void plDynamicEnvMapMsg::Read(hsStream* s, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -47,9 +47,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plDynamicTextMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plDynamicTextMsg.h"
|
||||||
|
|
||||||
void plDynamicTextMsg::SetTextColor( hsColorRGBA &c, bool blockRGB )
|
void plDynamicTextMsg::SetTextColor( hsColorRGBA &c, bool blockRGB )
|
||||||
{
|
{
|
||||||
|
@ -41,10 +41,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plInputEventMsg.h"
|
#include "hsBitVector.h"
|
||||||
#include "pnKeyedObject/plKey.h"
|
#include "pnKeyedObject/plKey.h"
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsBitVector.h"
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plInputEventMsg.h"
|
||||||
|
|
||||||
plInputEventMsg::plInputEventMsg() :
|
plInputEventMsg::plInputEventMsg() :
|
||||||
fEvent(-1)
|
fEvent(-1)
|
||||||
|
@ -39,16 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
|
||||||
// //
|
#include "hsResMgr.h"
|
||||||
// plInputIfaceMgrMsg //
|
#pragma hdrstop
|
||||||
// Message wrapper for commands to plDynamicTextMap. //
|
|
||||||
// //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#include "plInputIfaceMgrMsg.h"
|
#include "plInputIfaceMgrMsg.h"
|
||||||
#include "plInputCore/plInputInterface.h"
|
#include "plInputCore/plInputInterface.h"
|
||||||
#include "hsResMgr.h"
|
|
||||||
|
|
||||||
plInputIfaceMgrMsg::~plInputIfaceMgrMsg()
|
plInputIfaceMgrMsg::~plInputIfaceMgrMsg()
|
||||||
{
|
{
|
||||||
|
@ -42,6 +42,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plLOSHitMsg.h"
|
#include "plLOSHitMsg.h"
|
||||||
|
|
||||||
|
@ -39,9 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plLOSRequestMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plLOSRequestMsg.h"
|
||||||
|
|
||||||
plLOSRequestMsg::plLOSRequestMsg()
|
plLOSRequestMsg::plLOSRequestMsg()
|
||||||
: fRequestID(0),
|
: fRequestID(0),
|
||||||
|
@ -41,8 +41,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plLayRefMsg.h"
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plLayRefMsg.h"
|
||||||
|
|
||||||
void plLayRefMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plLayRefMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -39,14 +39,15 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plLinkToAgeMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
|
||||||
|
|
||||||
#include "plgDispatch.h"
|
#include "plgDispatch.h"
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plLinkToAgeMsg.h"
|
||||||
#include "plNetCommon/plNetServerSessionInfo.h"
|
#include "plNetCommon/plNetServerSessionInfo.h"
|
||||||
#include "plNetCommon/plNetCommon.h"
|
#include "plNetCommon/plNetCommon.h"
|
||||||
#include "hsBitVector.h"
|
|
||||||
#include "pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -41,11 +41,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plListenerMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
|
||||||
#include "pnKeyedObject/plUoid.h"
|
#include "pnKeyedObject/plUoid.h"
|
||||||
#include "pnKeyedObject/plFixedKey.h"
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plListenerMsg.h"
|
||||||
|
|
||||||
|
|
||||||
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)
|
void plListenerMsg::Read(hsStream* s, hsResMgr* mgr)
|
||||||
@ -74,10 +77,6 @@ plSetListenerMsg::plSetListenerMsg( uint8_t type, const plKey &srcKey, bool bind
|
|||||||
Set( srcKey, type, binding );
|
Set( srcKey, type, binding );
|
||||||
}
|
}
|
||||||
|
|
||||||
plSetListenerMsg::~plSetListenerMsg()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void plSetListenerMsg::Read( hsStream *s, hsResMgr *mgr )
|
void plSetListenerMsg::Read( hsStream *s, hsResMgr *mgr )
|
||||||
{
|
{
|
||||||
plMessage::IMsgRead(s, mgr);
|
plMessage::IMsgRead(s, mgr);
|
||||||
|
@ -104,8 +104,7 @@ public:
|
|||||||
|
|
||||||
plSetListenerMsg() : plMessage( nil, nil, nil ) { fType = 0; fBinding = false; }
|
plSetListenerMsg() : plMessage( nil, nil, nil ) { fType = 0; fBinding = false; }
|
||||||
plSetListenerMsg( uint8_t type, const plKey &srcKey, bool binding );
|
plSetListenerMsg( uint8_t type, const plKey &srcKey, bool binding );
|
||||||
~plSetListenerMsg();
|
|
||||||
|
|
||||||
CLASSNAME_REGISTER( plSetListenerMsg );
|
CLASSNAME_REGISTER( plSetListenerMsg );
|
||||||
GETINTERFACE_ANY( plSetListenerMsg, plMessage );
|
GETINTERFACE_ANY( plSetListenerMsg, plMessage );
|
||||||
|
|
||||||
|
@ -39,14 +39,16 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plLoadAgeMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
|
||||||
|
|
||||||
#include "hsBitVector.h"
|
#include "hsBitVector.h"
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
void plLoadAgeMsg::Read(hsStream* stream, hsResMgr* mgr)
|
#include "plLoadAgeMsg.h"
|
||||||
{
|
|
||||||
|
void plLoadAgeMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
|
{
|
||||||
plMessage::IMsgRead(stream, mgr);
|
plMessage::IMsgRead(stream, mgr);
|
||||||
|
|
||||||
// read agename
|
// read agename
|
||||||
|
@ -42,12 +42,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
#ifndef SERVER
|
#ifndef SERVER
|
||||||
|
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plLoadAvatarMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "pnNetCommon/plNetApp.h"
|
#include "hsStream.h"
|
||||||
#include "pnNetCommon/plSynchedObject.h"
|
|
||||||
|
|
||||||
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plLoadAvatarMsg.h"
|
||||||
#include "plAvatar/plAvatarTasks.h"
|
#include "plAvatar/plAvatarTasks.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,17 +42,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
#ifndef NO_AV_MSGS
|
#ifndef NO_AV_MSGS
|
||||||
#ifndef SERVER
|
#ifndef SERVER
|
||||||
|
|
||||||
// singular
|
|
||||||
#include "plLoadAvatarMsg.h"
|
|
||||||
|
|
||||||
// global
|
|
||||||
#include "hsResMgr.h"
|
|
||||||
|
|
||||||
// other
|
|
||||||
#include "pnNetCommon/plNetApp.h"
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
|
#include "hsResMgr.h"
|
||||||
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plLoadAvatarMsg.h"
|
||||||
|
|
||||||
// CTOR / default
|
// CTOR / default
|
||||||
plLoadCloneMsg::plLoadCloneMsg()
|
plLoadCloneMsg::plLoadCloneMsg()
|
||||||
|
@ -40,10 +40,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
|
||||||
#include "plMatrixUpdateMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plMatrixUpdateMsg.h"
|
||||||
|
|
||||||
void plMatrixUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plMatrixUpdateMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plMultistageMsg.h"
|
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plMultistageMsg.h"
|
||||||
|
|
||||||
void plMultistageModMsg::Read(hsStream *stream, hsResMgr *mgr)
|
void plMultistageModMsg::Read(hsStream *stream, hsResMgr *mgr)
|
||||||
{
|
{
|
||||||
|
@ -40,10 +40,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
|
||||||
#include "plNetVoiceListMsg.h"
|
|
||||||
#include "hsStream.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plNetVoiceListMsg.h"
|
||||||
|
|
||||||
void plNetVoiceListMsg::Read(hsStream* stream, hsResMgr* mgr)
|
void plNetVoiceListMsg::Read(hsStream* stream, hsResMgr* mgr)
|
||||||
{
|
{
|
||||||
|
@ -39,10 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plOneShotCallbacks.h"
|
|
||||||
#include "hsStream.h"
|
|
||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plOneShotCallbacks.h"
|
||||||
|
|
||||||
plOneShotCallbacks::plOneShotCallbacks()
|
plOneShotCallbacks::plOneShotCallbacks()
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plOneShotMsg.h"
|
#include "plOneShotMsg.h"
|
||||||
#include "plOneShotCallbacks.h"
|
#include "plOneShotCallbacks.h"
|
||||||
|
|
||||||
|
@ -41,11 +41,14 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plRenderRequestMsg.h"
|
|
||||||
#include "pnKeyedObject/plUoid.h"
|
|
||||||
#include "pnKeyedObject/plFixedKey.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
|
||||||
|
#include "pnKeyedObject/plFixedKey.h"
|
||||||
|
#include "pnKeyedObject/plUoid.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plRenderRequestMsg.h"
|
||||||
|
|
||||||
|
|
||||||
plRenderRequestMsg::plRenderRequestMsg(plKey sender, plRenderRequestBase* req)
|
plRenderRequestMsg::plRenderRequestMsg(plKey sender, plRenderRequestBase* req)
|
||||||
: plMessage(sender, nil, nil),
|
: plMessage(sender, nil, nil),
|
||||||
|
@ -39,10 +39,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plRideAnimatedPhysMsg.h"
|
|
||||||
// global
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plRideAnimatedPhysMsg.h"
|
||||||
|
|
||||||
plRideAnimatedPhysMsg::plRideAnimatedPhysMsg()
|
plRideAnimatedPhysMsg::plRideAnimatedPhysMsg()
|
||||||
:fRegion(nil)
|
:fRegion(nil)
|
||||||
|
@ -41,11 +41,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
#include "HeadSpin.h"
|
#include "HeadSpin.h"
|
||||||
#include "plRippleShapeMsg.h"
|
|
||||||
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plRippleShapeMsg.h"
|
||||||
|
|
||||||
plRippleShapeMsg::plRippleShapeMsg()
|
plRippleShapeMsg::plRippleShapeMsg()
|
||||||
: fShape(nil)
|
: fShape(nil)
|
||||||
|
@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plMessage/plSimStateMsg.h"
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plMessage/plSimStateMsg.h"
|
||||||
|
|
||||||
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)
|
void plSubWorldMsg::Read(hsStream *stream, hsResMgr *mgr)
|
||||||
{
|
{
|
||||||
|
@ -39,12 +39,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
// singular
|
|
||||||
#include "plSwimMsg.h"
|
|
||||||
|
|
||||||
// global
|
|
||||||
#include "hsResMgr.h"
|
#include "hsResMgr.h"
|
||||||
#include "hsStream.h"
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plSwimMsg.h"
|
||||||
|
|
||||||
|
|
||||||
// ctor default ------
|
// ctor default ------
|
||||||
// -------------
|
// -------------
|
||||||
|
@ -39,8 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "plSynchEnableMsg.h"
|
|
||||||
#include "pnNetCommon/plNetApp.h"
|
#include "pnNetCommon/plNetApp.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plSynchEnableMsg.h"
|
||||||
|
|
||||||
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
|
plSynchEnableMsg::plSynchEnableMsg(bool push, bool enable) : fPush(push), fEnable(enable)
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
|
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
#include "plTransitionMsg.h"
|
#include "plTransitionMsg.h"
|
||||||
|
|
||||||
plTransitionMsg::~plTransitionMsg()
|
plTransitionMsg::~plTransitionMsg()
|
||||||
|
@ -39,9 +39,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
|||||||
Mead, WA 99021
|
Mead, WA 99021
|
||||||
|
|
||||||
*==LICENSE==*/
|
*==LICENSE==*/
|
||||||
#include "hsStream.h"
|
|
||||||
#include "plVaultNotifyMsg.h"
|
|
||||||
|
|
||||||
|
#include "hsStream.h"
|
||||||
|
#pragma hdrstop
|
||||||
|
|
||||||
|
#include "plVaultNotifyMsg.h"
|
||||||
|
|
||||||
plVaultNotifyMsg::plVaultNotifyMsg()
|
plVaultNotifyMsg::plVaultNotifyMsg()
|
||||||
: fType( kNothing )
|
: fType( kNothing )
|
||||||
|
Reference in New Issue
Block a user