mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
PubUtilLib Part IV
This commit is contained in:
@ -0,0 +1,39 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(plSDL_SOURCES
|
||||
plSDLMgr.cpp
|
||||
plSDLParser.cpp
|
||||
plStateChangeNotifier.cpp
|
||||
plStateDataRecord.cpp
|
||||
plStateDescriptor.cpp
|
||||
plStateVariable.cpp
|
||||
plVarDescriptor.cpp
|
||||
)
|
||||
|
||||
set(plSDL_HEADERS
|
||||
plSDL.h
|
||||
plSDLCreatable.h
|
||||
plSDLDescriptor.h
|
||||
)
|
||||
|
||||
set(plSDL_SDLFILES
|
||||
SDL/animation.sdl
|
||||
SDL/avatar.sdl
|
||||
SDL/cloneMessage.sdl
|
||||
SDL/clothing.sdl
|
||||
SDL/morph.sdl
|
||||
SDL/particle.sdl
|
||||
SDL/physical.sdl
|
||||
SDL/responder.sdl
|
||||
SDL/sound.sdl
|
||||
SDL/xregion.sdl
|
||||
)
|
||||
|
||||
add_library(plSDL STATIC ${plSDL_SOURCES} ${plSDL_HEADERS} ${plSDL_SDLFILES})
|
||||
|
||||
source_group("Source Files" FILES ${plSDL_SOURCES})
|
||||
source_group("Header Files" FILES ${plSDL_HEADERS})
|
||||
source_group("SDL" FILES ${plSDL_SDLFILES})
|
@ -34,11 +34,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsUtils.h"
|
||||
#include "hsStlUtils.h"
|
||||
|
||||
#include "../pnFactory/plCreatable.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnFactory/plCreatable.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
|
||||
#include "../plUnifiedTime/plUnifiedTime.h"
|
||||
#include "plUnifiedTime/plUnifiedTime.h"
|
||||
|
||||
namespace plSDL
|
||||
{
|
||||
|
@ -26,8 +26,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStream.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "plSDL.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "../pnNetCommon/pnNetCommon.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
#include "pnNetCommon/pnNetCommon.h"
|
||||
#include <algorithm>
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -26,10 +26,10 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsTypes.h"
|
||||
#include "hsStlUtils.h"
|
||||
#include "plSDL.h"
|
||||
#include "../plFile/hsFiles.h"
|
||||
#include "../plFile/plStreamSource.h"
|
||||
#include "../pnNetCommon/pnNetCommon.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "plFile/hsFiles.h"
|
||||
#include "plFile/plStreamSource.h"
|
||||
#include "pnNetCommon/pnNetCommon.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
|
||||
static const int kTokenLen=256;
|
||||
|
||||
|
@ -24,8 +24,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
*==LICENSE==*/
|
||||
#include "plSDL.h"
|
||||
#include "../pnMessage/plSDLNotificationMsg.h"
|
||||
#include "algorithm"
|
||||
#include "pnMessage/plSDLNotificationMsg.h"
|
||||
#include <algorithm>
|
||||
|
||||
// static
|
||||
UInt32 plStateChangeNotifier::fCurrentPlayerID = 0;
|
||||
|
@ -30,8 +30,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStlUtils.h"
|
||||
#include "plSDL.h"
|
||||
|
||||
#include "../plNetMessage/plNetMessage.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "plNetMessage/plNetMessage.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
|
||||
const char* plSDL::kAgeSDLObjectName = {"AgeSDLHook"};
|
||||
|
||||
|
@ -25,7 +25,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
*==LICENSE==*/
|
||||
#include "hsStream.h"
|
||||
#include "plSDL.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
|
||||
const UInt8 plStateDescriptor::kVersion=1; // for Read/Write format
|
||||
|
||||
|
@ -29,21 +29,21 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsStlUtils.h"
|
||||
#include "plSDL.h"
|
||||
|
||||
#include "../pnProduct/pnProduct.h"
|
||||
#include "../pnFactory/plCreatable.h"
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "../pnKeyedObject/plKeyImp.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "../pnNetCommon/pnNetCommon.h"
|
||||
#include "pnProduct/pnProduct.h"
|
||||
#include "pnFactory/plCreatable.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plKeyImp.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
#include "pnNetCommon/pnNetCommon.h"
|
||||
|
||||
#include "../plResMgr/plResManager.h"
|
||||
#include "../plResMgr/plKeyFinder.h"
|
||||
#include "../plUnifiedTime/plClientUnifiedTime.h"
|
||||
#include "plResMgr/plResManager.h"
|
||||
#include "plResMgr/plKeyFinder.h"
|
||||
#include "plUnifiedTime/plClientUnifiedTime.h"
|
||||
|
||||
|
||||
#include "../plResMgr/plResManager.h"
|
||||
#include "../plUnifiedTime/plClientUnifiedTime.h"
|
||||
#include "plResMgr/plResManager.h"
|
||||
#include "plUnifiedTime/plClientUnifiedTime.h"
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
|
@ -27,11 +27,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plSDL.h"
|
||||
#include "hsStlUtils.h"
|
||||
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "../pnNetCommon/plNetApp.h"
|
||||
#include "../pnMessage/plMessage.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
#include "pnNetCommon/plNetApp.h"
|
||||
#include "pnMessage/plMessage.h"
|
||||
|
||||
#include "../plUnifiedTime/plUnifiedTime.h"
|
||||
#include "plUnifiedTime/plUnifiedTime.h"
|
||||
|
||||
const UInt8 plVarDescriptor::kVersion=3; // for Read/Write format
|
||||
|
||||
|
Reference in New Issue
Block a user