mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
PubUtilLib Part IV
This commit is contained in:
@ -0,0 +1,81 @@
|
||||
include_directories("../../CoreLib")
|
||||
include_directories("../../NucleusLib/inc")
|
||||
include_directories("../../NucleusLib")
|
||||
include_directories("../../PubUtilLib")
|
||||
|
||||
set(plSurface_SOURCES
|
||||
hsGMaterial.cpp
|
||||
plGrassShaderMod.cpp
|
||||
plLayer.cpp
|
||||
plLayerAnimation.cpp
|
||||
plLayerDepth.cpp
|
||||
plLayerInterface.cpp
|
||||
plLayerMultiply.cpp
|
||||
plLayerOr.cpp
|
||||
plLayerShadowBase.cpp
|
||||
plShader.cpp
|
||||
plShaderTable.cpp
|
||||
)
|
||||
|
||||
set(plSurface_HEADERS
|
||||
hsGMaterial.h
|
||||
plGrassShaderMod.h
|
||||
plLayer.h
|
||||
plLayerAnimation.h
|
||||
plLayerDepth.h
|
||||
plLayerInterface.h
|
||||
plLayerMultiply.h
|
||||
plLayerOr.h
|
||||
plLayerShadowBase.h
|
||||
plShader.h
|
||||
plShaderTable.h
|
||||
plSurfaceCreatable.h
|
||||
)
|
||||
|
||||
set(plSurface_SHADERS
|
||||
ps_BiasNormals.h
|
||||
ps_CaddAAdd.h
|
||||
ps_CaddAbase.h
|
||||
ps_CaddAMult.h
|
||||
ps_CalphaAadd.h
|
||||
ps_CalphaAbase.h
|
||||
ps_CalphaAMult.h
|
||||
ps_CbaseAbase.h
|
||||
ps_CmultAAdd.h
|
||||
ps_CmultAbase.h
|
||||
ps_CmultAMult.h
|
||||
ps_CompCosines.h
|
||||
ps_GrassShader.h
|
||||
ps_MoreCosines.h
|
||||
ps_ShoreLeave6.h
|
||||
ps_WaveDecEnv.h
|
||||
ps_WaveFixed.h
|
||||
ps_WaveGraph.h
|
||||
ps_WaveGrid.h
|
||||
ps_WaveRip.h
|
||||
vs_BiasNormals.h
|
||||
vs_CompCosines.h
|
||||
vs_GrassShader.h
|
||||
vs_ShoreLeave6.h
|
||||
vs_ShoreLeave7.h
|
||||
vs_WaveDec1Lay.h
|
||||
vs_WaveDec1Lay_7.h
|
||||
vs_WaveDec2Lay11.h
|
||||
vs_WaveDec2Lay11_7.h
|
||||
vs_WaveDec2Lay12.h
|
||||
vs_WaveDec2Lay12_7.h
|
||||
vs_WaveDecEnv.h
|
||||
vs_WaveDecEnv_7.h
|
||||
vs_WaveFixedFin6.h
|
||||
vs_WaveFixedFin7.h
|
||||
vs_WaveGraph2.h
|
||||
vs_WaveGridFin.h
|
||||
vs_WaveRip.h
|
||||
vs_WaveRip7.h
|
||||
)
|
||||
|
||||
add_library(plSurface STATIC ${plSurface_SOURCES} ${plSurface_HEADERS} ${plSurface_SHADERS})
|
||||
|
||||
source_group("Source Files" FILES ${plSurface_SOURCES})
|
||||
source_group("Header Files" FILES ${plSurface_HEADERS})
|
||||
source_group("Shaders" FILES ${plSurface_SHADERS})
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsResMgr.h"
|
||||
#include "plLayerInterface.h"
|
||||
#include "plLayer.h"
|
||||
#include "../plMessage/plMatRefMsg.h"
|
||||
#include "plMessage/plMatRefMsg.h"
|
||||
#include "plProfile.h"
|
||||
|
||||
plProfile_CreateTimer("MaterialAnims", "Animation", MaterialAnims);
|
||||
|
@ -29,23 +29,23 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsResMgr.h"
|
||||
#include "plgDispatch.h"
|
||||
|
||||
#include "../pnKeyedObject/plUoid.h"
|
||||
#include "pnKeyedObject/plUoid.h"
|
||||
|
||||
//#include "../pnSceneObject/plDrawInterface.h"
|
||||
//#include "pnSceneObject/plDrawInterface.h"
|
||||
|
||||
#include "../pnMessage/plObjRefMsg.h"
|
||||
#include "../pnMessage/plTimeMsg.h"
|
||||
#include "../plMessage/plMatRefMsg.h"
|
||||
#include "../plMessage/plAgeLoadedMsg.h"
|
||||
#include "../plMessage/plLayRefMsg.h"
|
||||
#include "pnMessage/plObjRefMsg.h"
|
||||
#include "pnMessage/plTimeMsg.h"
|
||||
#include "plMessage/plMatRefMsg.h"
|
||||
#include "plMessage/plAgeLoadedMsg.h"
|
||||
#include "plMessage/plLayRefMsg.h"
|
||||
|
||||
#include "../plDrawable/plAccessGeometry.h"
|
||||
#include "../plDrawable/plAccessSpan.h"
|
||||
#include "../plDrawable/plAccessVtxSpan.h"
|
||||
#include "plDrawable/plAccessGeometry.h"
|
||||
#include "plDrawable/plAccessSpan.h"
|
||||
#include "plDrawable/plAccessVtxSpan.h"
|
||||
|
||||
#include "../plSurface/hsGMaterial.h"
|
||||
#include "../plSurface/plShader.h"
|
||||
#include "../plSurface/plLayer.h"
|
||||
#include "plSurface/hsGMaterial.h"
|
||||
#include "plSurface/plShader.h"
|
||||
#include "plSurface/plLayer.h"
|
||||
|
||||
void plGrassWave::Write(hsStream *s)
|
||||
{
|
||||
|
@ -26,7 +26,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef PLGRASSSHADERMOD_INC
|
||||
#define PLGRASSSHADERMOD_INC
|
||||
|
||||
#include "../pnModifier/plModifier.h"
|
||||
#include "pnModifier/plModifier.h"
|
||||
|
||||
class plSceneObject;
|
||||
class hsGMaterial;
|
||||
|
@ -26,19 +26,19 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "plLayer.h"
|
||||
#include "../plMessage/plAnimCmdMsg.h"
|
||||
#include "plMessage/plAnimCmdMsg.h"
|
||||
#include "hsStream.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "hsMatrix44.h"
|
||||
#include "hsGMatState.inl"
|
||||
#include "../plMessage/plLayRefMsg.h"
|
||||
#include "../plGImage/plBitmap.h"
|
||||
#include "../plPipeline/hsGDeviceRef.h"
|
||||
#include "plMessage/plLayRefMsg.h"
|
||||
#include "plGImage/plBitmap.h"
|
||||
#include "plPipeline/hsGDeviceRef.h"
|
||||
#include "plShader.h"
|
||||
|
||||
#include "plPipeline.h"
|
||||
#include "plgDispatch.h"
|
||||
#include "../pnMessage/plPipeResMakeMsg.h"
|
||||
#include "pnMessage/plPipeResMakeMsg.h"
|
||||
|
||||
plLayer::plLayer()
|
||||
{
|
||||
|
@ -27,21 +27,21 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsTypes.h"
|
||||
#include "hsTimer.h"
|
||||
#include "plLayerAnimation.h"
|
||||
#include "../pnKeyedObject/plKey.h"
|
||||
#include "pnKeyedObject/plKey.h"
|
||||
|
||||
#include "../plInterp/plController.h"
|
||||
#include "../plMessage/plAnimCmdMsg.h"
|
||||
#include "../plMessage/plLinkToAgeMsg.h"
|
||||
#include "../pnMessage/plSDLModifierMsg.h"
|
||||
#include "../plModifier/plLayerSDLModifier.h"
|
||||
#include "../pnMessage/plCameraMsg.h"
|
||||
#include "../plNetClient/plLinkEffectsMgr.h"
|
||||
#include "plInterp/plController.h"
|
||||
#include "plMessage/plAnimCmdMsg.h"
|
||||
#include "plMessage/plLinkToAgeMsg.h"
|
||||
#include "pnMessage/plSDLModifierMsg.h"
|
||||
#include "plModifier/plLayerSDLModifier.h"
|
||||
#include "pnMessage/plCameraMsg.h"
|
||||
#include "plNetClient/plLinkEffectsMgr.h"
|
||||
#include "plgDispatch.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../plModifier/plSDLModifier.h"
|
||||
#include "../plSDL/plSDL.h"
|
||||
#include "../pnMessage/plSDLNotificationMsg.h"
|
||||
#include "../plMessage/plAvatarMsg.h"
|
||||
#include "plModifier/plSDLModifier.h"
|
||||
#include "plSDL/plSDL.h"
|
||||
#include "pnMessage/plSDLNotificationMsg.h"
|
||||
#include "plMessage/plAvatarMsg.h"
|
||||
|
||||
plLayerAnimationBase::plLayerAnimationBase()
|
||||
:
|
||||
|
@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#define plLayerAnimation_inc
|
||||
|
||||
#include "plLayerInterface.h"
|
||||
#include "../plInterp/plAnimTimeConvert.h"
|
||||
#include "plInterp/plAnimTimeConvert.h"
|
||||
|
||||
class plMessage;
|
||||
class plController;
|
||||
|
@ -26,12 +26,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
|
||||
#include "hsTypes.h"
|
||||
#include "plLayerInterface.h"
|
||||
#include "../plMessage/plLayRefMsg.h"
|
||||
#include "plMessage/plLayRefMsg.h"
|
||||
#include "plLayer.h"
|
||||
#include "hsMatrix44.h"
|
||||
#include "hsGMatState.h"
|
||||
#include "hsResMgr.h"
|
||||
#include "../pnNetCommon/plSDLTypes.h"
|
||||
#include "pnNetCommon/plSDLTypes.h"
|
||||
|
||||
plLayerInterface::plLayerInterface()
|
||||
: fUnderLay(nil),
|
||||
|
@ -27,8 +27,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plLayerInterface_inc
|
||||
#define plLayerInterface_inc
|
||||
|
||||
#include "../pnNetCommon/plSynchedValue.h"
|
||||
#include "../pnNetCommon/plSynchedObject.h"
|
||||
#include "pnNetCommon/plSynchedValue.h"
|
||||
#include "pnNetCommon/plSynchedObject.h"
|
||||
#include "hsGMatState.h"
|
||||
|
||||
struct hsMatrix44;
|
||||
|
@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "hsMatrix44.h"
|
||||
#include "hsColorRGBA.h"
|
||||
|
||||
#include "../plPipeline/hsGDeviceRef.h"
|
||||
#include "plPipeline/hsGDeviceRef.h"
|
||||
|
||||
|
||||
// Little shader const helper
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plShader_inc
|
||||
#define plShader_inc
|
||||
|
||||
#include "../pnKeyedObject/hsKeyedObject.h"
|
||||
#include "pnKeyedObject/hsKeyedObject.h"
|
||||
#include "hsTemplates.h"
|
||||
#include "hsGeometry3.h"
|
||||
#include "hsMatrix44.h"
|
||||
|
@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#ifndef plSurfaceCreatable_inc
|
||||
#define plSurfaceCreatable_inc
|
||||
|
||||
#include "../pnFactory/plCreator.h"
|
||||
#include "pnFactory/plCreator.h"
|
||||
|
||||
#include "hsGMaterial.h"
|
||||
|
||||
|
Reference in New Issue
Block a user