mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Almost done with NucleusLib cmake conversion
--HG-- rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plNetCommon/plNetResManager.cpp => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetCommon/plNetResManager.cpp rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plNetCommon/plNetResManager.h => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetCommon/plNetResManager.h
This commit is contained in:
@ -0,0 +1,64 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(pnMessage_HEADERS
|
||||
plAttachMsg.h
|
||||
plAudioSysMsg.h
|
||||
plCameraMsg.h
|
||||
plClientMsg.h
|
||||
plCorrectionMsg.h
|
||||
plCursorChangeMsg.h
|
||||
plEnableMsg.h
|
||||
plEventCallbackMsg.h
|
||||
plFakeOutMsg.h
|
||||
plIntRefMsg.h
|
||||
plMessage.h
|
||||
plMessageWithCallbacks.h
|
||||
plMultiModMsg.h
|
||||
plNodeChangeMsg.h
|
||||
plNodeRefMsg.h
|
||||
plNotifyMsg.h
|
||||
plObjRefMsg.h
|
||||
plPipeResMakeMsg.h
|
||||
plPlayerPageMsg.h
|
||||
plProxyDrawMsg.h
|
||||
plRefMsg.h
|
||||
plRemoteAvatarInfoMsg.h
|
||||
plSatisfiedMsg.h
|
||||
plSDLModifierMsg.h
|
||||
plSDLNotificationMsg.h
|
||||
plSelfDestructMsg.h
|
||||
plServerReplyMsg.h
|
||||
plSetNetGroupIDMsg.h
|
||||
plSharedStateMsg.h
|
||||
plSimulationMsg.h
|
||||
plSimulationSynchMsg.h
|
||||
plSingleModMsg.h
|
||||
plSoundMsg.h
|
||||
plTimeMsg.h
|
||||
plWarpMsg.h
|
||||
pnMessageCreatable.h
|
||||
)
|
||||
|
||||
set(pnMessage_SOURCES
|
||||
plCameraMsg.cpp
|
||||
plClientMsg.cpp
|
||||
plMessage.cpp
|
||||
plMessageWithCallbacks.cpp
|
||||
plNodeChangeMsg.cpp
|
||||
plNotifyMsg.cpp
|
||||
plProxyDrawMsg.cpp
|
||||
plRefMsg.cpp
|
||||
plSDLModifierMsg.cpp
|
||||
plServerReplyMsg.cpp
|
||||
plSimulationMsg.cpp
|
||||
plSoundMsg.cpp
|
||||
plTimeMsg.cpp
|
||||
)
|
||||
|
||||
add_library(pnMessage STATIC ${pnMessage_HEADERS} ${pnMessage_SOURCES})
|
||||
|
||||
source_group("Header Files" FILES ${pnMessage_HEADERS})
|
||||
source_group("Source Files" FILES ${pnMessage_SOURCES})
|
@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plCameraMsg.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
|
||||
|
||||
//
|
||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// camera message class
|
||||
//
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsBitVector.h"
|
||||
#include "hsGeometry3.h"
|
||||
|
||||
|
@ -26,13 +26,13 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plClientMsg_inc
|
||||
#define plClientMsg_inc
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "../pnMessage/plRefMsg.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "pnMessage/plRefMsg.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "hsUtils.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
|
||||
//
|
||||
// Handles various types of client (app) msgs, relating
|
||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// this message is to fake out a gadget to see if it would potentially trigger...
|
||||
//
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsBitVector.h"
|
||||
|
||||
class hsStream;
|
||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// this message is to fake out a gadget to see if it would potentially trigger...
|
||||
//
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsBitVector.h"
|
||||
|
||||
class hsStream;
|
||||
|
@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define PLMESSAGE_PRIVATE
|
||||
#include "plMessage.h"
|
||||
#include "hsStream.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "hsTimer.h"
|
||||
#include "hsTemplates.h"
|
||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plMessage_inc
|
||||
#define plMessage_inc
|
||||
|
||||
#include "../pnFactory/plCreatable.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "pnFactory/plCreatable.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "hsTemplates.h"
|
||||
#include "hsStlUtils.h"
|
||||
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsResMgr.h"
|
||||
#include "plMessageWithCallbacks.h"
|
||||
#include "plEventCallbackMsg.h"
|
||||
#include "../pnNetCommon/plSynchedObject.h"
|
||||
#include "pnNetCommon/plSynchedObject.h"
|
||||
#include "plgDispatch.h"
|
||||
#include "hsBitVector.h"
|
||||
|
||||
|
@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "plMessage.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../pnModifier/plSingleModifier.h"
|
||||
#include "pnModifier/plSingleModifier.h"
|
||||
#include "hsUtils.h"
|
||||
#include "hsGeometry3.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plPipeResMakeMsg_inc
|
||||
#define plPipeResMakeMsg_inc
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
class plPipeline;
|
||||
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plPlayerPageMsg_inc
|
||||
#define plPlayerPageMsg_inc
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "hsStream.h"
|
||||
|
||||
|
@ -29,8 +29,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStream.h"
|
||||
|
||||
#include "hsResMgr.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "../pnKeyedObject/hsKeyedObject.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/hsKeyedObject.h"
|
||||
|
||||
plRefMsg::plRefMsg()
|
||||
: fRef(nil), fOldRef(nil), fContext(0)
|
||||
|
@ -30,7 +30,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
//
|
||||
// this message is to fake out a gadget to see if it would potentially trigger...
|
||||
//
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
class hsStream;
|
||||
class hsResMgr;
|
||||
|
@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "plSDLModifierMsg.h"
|
||||
#include "../PubUtilLib/plSDL/plSDL.h" // ugh.
|
||||
#include "plSDL/plSDL.h" // ugh.
|
||||
|
||||
plSDLModifierMsg::plSDLModifierMsg(const char* sdlName, Action a) :
|
||||
fSDLName(nil),
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plSDLModifierMsg_INC
|
||||
#define plSDLModifierMsg_INC
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsUtils.h"
|
||||
|
||||
//
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plSDLNotificationMsg_inc
|
||||
#define plSDLNotificationMsg_inc
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
class plSimpleStateVariable;
|
||||
class plSDLNotificationMsg : public plMessage
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plSatisfiedMsg_inc
|
||||
#define plSatisfiedMsg_inc
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
class plSatisfiedMsg : public plMessage
|
||||
{
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define plSetNetGroupIDMsg_h_inc
|
||||
|
||||
#include "plMessage.h"
|
||||
#include "../pnNetCommon/plNetGroup.h"
|
||||
#include "pnNetCommon/plNetGroup.h"
|
||||
|
||||
// Send this to a SynchedObject to change its NetGroupID
|
||||
class plSetNetGroupIDMsg : public plMessage
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define plSharedStateMsg_inc
|
||||
|
||||
#include "plMessage.h"
|
||||
#include "../pnNetCommon/plNetSharedState.h"
|
||||
#include "pnNetCommon/plNetSharedState.h"
|
||||
|
||||
class hsStream;
|
||||
class hsResMgr;
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef PLSIMULATIONMSG_H
|
||||
#define PLSIMULATIONMSG_H
|
||||
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
// PLSIMULATIONMSG
|
||||
// Virtual base class for all messages which are specific to the simulation interface
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef pnMessageCreatable_inc
|
||||
#define pnMessageCreatable_inc
|
||||
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
|
||||
#include "plMessage.h"
|
||||
|
||||
|
Reference in New Issue
Block a user