mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Finished PubUtilLib cmakification
--HG-- rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudio/plOGGCodec.cpp => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudioCore/plOGGCodec.cpp rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudio/plOGGCodec.h => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudioCore/plOGGCodec.h rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudio/plWavFile.cpp => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp rename : MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudio/plWavFile.h => MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.h
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../FeatureLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(plNetCommon_SOURCES
|
||||
plClientGuid.cpp
|
||||
plNetCommon.cpp
|
||||
plNetCommonHelpers.cpp
|
||||
plNetMember.cpp
|
||||
plNetMsgScreener.cpp
|
||||
plNetServerSessionInfo.cpp
|
||||
plSpawnPointInfo.cpp
|
||||
)
|
||||
|
||||
set(plNetCommon_HEADERS
|
||||
plClientGuid.h
|
||||
plNetCommon.h
|
||||
plNetCommonConstants.h
|
||||
plNetCommonCreatable.h
|
||||
plNetCommonHelpers.h
|
||||
plNetMember.h
|
||||
plNetMsgHandler.h
|
||||
plNetMsgScreener.h
|
||||
plNetServerSessionInfo.h
|
||||
plSpawnPointInfo.h
|
||||
)
|
||||
|
||||
add_library(plNetCommon STATIC ${plNetCommon_SOURCES} ${plNetCommon_HEADERS})
|
||||
|
||||
source_group("Source Files" FILES ${plNetCommon_SOURCES})
|
||||
source_group("Header Files" FILES ${plNetCommon_HEADERS})
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStream.h"
|
||||
#include <sstream>
|
||||
#include "plNetCommon.h"
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "../plSockets/plNet.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "plSockets/plNet.h"
|
||||
|
||||
plClientGuid::plClientGuid()
|
||||
:fPlayerID(0)
|
||||
|
@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "hsConfig.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "../pnFactory/plCreatable.h"
|
||||
#include "../plUUID/plUUID.h"
|
||||
#include "pnFactory/plCreatable.h"
|
||||
#include "plUUID/plUUID.h"
|
||||
|
||||
class plClientGuid : public plCreatable
|
||||
{
|
||||
|
@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
*==LICENSE==*/
|
||||
#include "plNetCommon.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "../plUUID/plUUID.h"
|
||||
#include "plUUID/plUUID.h"
|
||||
#include <algorithm>
|
||||
|
||||
namespace plNetCommon
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plNetCommonCreatable_inc
|
||||
#define plNetCommonCreatable_inc
|
||||
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
|
||||
#ifndef SERVER
|
||||
#include "plNetMember.h"
|
||||
|
@ -28,8 +28,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStream.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "plNetCommonHelpers.h"
|
||||
#include "../pnNetCommon/plGenericVar.h"
|
||||
#include "../plCompression/plZlibCompress.h"
|
||||
#include "pnNetCommon/plGenericVar.h"
|
||||
#include "plCompression/plZlibCompress.h"
|
||||
#include <algorithm>
|
||||
#include <iterator>
|
||||
|
||||
|
@ -27,24 +27,24 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plNetMsgScreener.h"
|
||||
#include "plCreatableIndex.h"
|
||||
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "../pnMessage/plNotifyMsg.h"
|
||||
#include "../pnMessage/plEnableMsg.h"
|
||||
#include "../pnMessage/plSetNetGroupIDMsg.h"
|
||||
#include "../pnInputCore/plControlEventCodes.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
#include "pnMessage/plNotifyMsg.h"
|
||||
#include "pnMessage/plEnableMsg.h"
|
||||
#include "pnMessage/plSetNetGroupIDMsg.h"
|
||||
#include "pnInputCore/plControlEventCodes.h"
|
||||
|
||||
#include "../plMessage/plCCRMsg.h"
|
||||
#include "../plMessage/plLinkToAgeMsg.h"
|
||||
#include "../plMessage/plAvatarMsg.h"
|
||||
#include "../plMessage/plInputIfaceMgrMsg.h"
|
||||
#include "../plMessage/plInputEventMsg.h"
|
||||
#include "../plMessage/plAnimCmdMsg.h"
|
||||
#include "../plMessage/plBulletMsg.h"
|
||||
#include "../plMessage/plAvCoopMsg.h"
|
||||
#include "../plMessage/plParticleUpdateMsg.h"
|
||||
#include "plMessage/plCCRMsg.h"
|
||||
#include "plMessage/plLinkToAgeMsg.h"
|
||||
#include "plMessage/plAvatarMsg.h"
|
||||
#include "plMessage/plInputIfaceMgrMsg.h"
|
||||
#include "plMessage/plInputEventMsg.h"
|
||||
#include "plMessage/plAnimCmdMsg.h"
|
||||
#include "plMessage/plBulletMsg.h"
|
||||
#include "plMessage/plAvCoopMsg.h"
|
||||
#include "plMessage/plParticleUpdateMsg.h"
|
||||
|
||||
#include "../../FeatureLib/pfMessage/pfKIMsg.h"
|
||||
#include "../../FeatureLib/pfMessage/plClothingMsg.h"
|
||||
#include "pfMessage/pfKIMsg.h"
|
||||
#include "pfMessage/plClothingMsg.h"
|
||||
|
||||
//
|
||||
// say why the msg got rejected
|
||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plNetMsgScreener_h
|
||||
#define plNetMsgScreener_h
|
||||
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "../plStatusLog/plLoggable.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "plStatusLog/plLoggable.h"
|
||||
|
||||
//
|
||||
// Class which decides what game messages are allowed to be sent to the server.
|
||||
|
@ -25,11 +25,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
*==LICENSE==*/
|
||||
#include "hsTypes.h"
|
||||
#include "hsStream.h"
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "plNetServerSessionInfo.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "plNetCommon.h"
|
||||
#include "../plVault/plVault.h"
|
||||
#include "plVault/plVault.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
|
@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "plSpawnPointInfo.h"
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsBitVector.h"
|
||||
|
||||
|
Reference in New Issue
Block a user