/usr/include/OGRE/RTShaderSystem/OgreShaderExHardwareSkinning.h is in libogre-1.9-dev 1.9.0+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org
Copyright (c) 2000-2013 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef _ShaderExHardwareSkinning_
#define _ShaderExHardwareSkinning_
#include "OgreShaderPrerequisites.h"
#ifdef RTSHADER_SYSTEM_BUILD_EXT_SHADERS
#include "OgreShaderSubRenderState.h"
#include "OgreShaderParameter.h"
#include "OgreRenderSystem.h"
#include "OgreShaderFunctionAtom.h"
#include "OgreShaderExLinearSkinning.h"
#include "OgreShaderExHardwareSkinningTechnique.h"
#include "OgreShaderExDualQuaternionSkinning.h"
#include "OgreShaderExLinearSkinning.h"
#define HS_MAX_WEIGHT_COUNT 4
namespace Ogre {
namespace RTShader {
class HardwareSkinningFactory;
/** \addtogroup Core
* @{
*/
/** \addtogroup RTShader
* @{
*/
/** Implement a sub render state which performs hardware skinning.
Meaning, this sub render states adds calculations which multiply
the points and normals by their assigned bone matricies.
*/
class _OgreRTSSExport HardwareSkinning : public SubRenderState
{
public:
struct SkinningData
{
SkinningData() :
isValid(true), maxBoneCount(0), maxWeightCount(0), skinningType(ST_LINEAR), correctAntipodalityHandling(false), scalingShearingSupport(false)
{}
bool isValid;
ushort maxBoneCount;
ushort maxWeightCount;
SkinningType skinningType;
bool correctAntipodalityHandling;
bool scalingShearingSupport;
};
// Interface.
public:
/** Class default constructor */
HardwareSkinning();
/**
@see SubRenderState::getType.
*/
virtual const String& getType() const;
/**
@see SubRenderState::getType.
*/
virtual int getExecutionOrder() const;
/**
@see SubRenderState::copyFrom.
*/
virtual void copyFrom(const SubRenderState& rhs);
/**
Set the hardware skinning parameters.
@param boneCount The maximum number of bones in the model this material
is assigned to. Note that this parameter can be higher but not
lower than the actual number of bones.
@param weightCount The maximum number of weights/bones affecting a vertex.
@param skinningType The type of skinning desired.
@param correctAntipodalityHandling If correct antipodality handling should be utilized (Only applicable for dual quaternion skinning).
@param scalingShearingSupport If scaling and shearing support should be enabled (Only applicable for dual quaternion skinning).
*/
void setHardwareSkinningParam(ushort boneCount, ushort weightCount, SkinningType skinningType = ST_LINEAR, bool correctAntipodalityHandling = false, bool scalingShearingSupport = false);
/**
Returns the number of bones in the model assigned to the material.
@see setHardwareSkinningParam()
*/
ushort getBoneCount();
/**
Returns the number of weights/bones affecting a vertex.
@see setHardwareSkinningParam()
*/
ushort getWeightCount();
/**
Returns the current skinning type in use.
@see setHardwareSkinningParam()
*/
SkinningType getSkinningType();
/**
Only applicable for dual quaternion skinning.
@see setHardwareSkinningParam()
*/
bool hasCorrectAntipodalityHandling();
/**
Only applicable for dual quaternion skinning.
@see setHardwareSkinningParam()
*/
bool hasScalingShearingSupport();
/**
@see SubRenderState::preAddToRenderState.
*/
virtual bool preAddToRenderState(const RenderState* renderState, Pass* srcPass, Pass* dstPass);
/**
Set the factory which created this sub render state
*/
void _setCreator(const HardwareSkinningFactory* pCreator) { mCreator = pCreator; }
static String Type;
// Protected methods
protected:
/**
@see SubRenderState::resolveParameters.
*/
virtual bool resolveParameters(ProgramSet* programSet);
/**
@see SubRenderState::resolveDependencies.
*/
virtual bool resolveDependencies(ProgramSet* programSet);
/**
@see SubRenderState::addFunctionInvocations.
*/
virtual bool addFunctionInvocations(ProgramSet* programSet);
SharedPtr<LinearSkinning> mLinear;
SharedPtr<DualQuaternionSkinning> mDualQuat;
SharedPtr<HardwareSkinningTechnique> mActiveTechnique;
///The factory which created this sub render state
const HardwareSkinningFactory* mCreator;
SkinningType mSkinningType;
};
_OgreRTSSExport void operator<<(std::ostream& o, const HardwareSkinning::SkinningData& data);
/**
A factory that enables creation of HardwareSkinning instances.
@remarks Sub class of SubRenderStateFactory
*/
class _OgreRTSSExport HardwareSkinningFactory : public SubRenderStateFactory,
public Singleton<HardwareSkinningFactory>
{
public:
HardwareSkinningFactory();
/**
@see SubRenderStateFactory::getType.
*/
virtual const String& getType() const;
/**
@see SubRenderStateFactory::createInstance.
*/
virtual SubRenderState* createInstance(ScriptCompiler* compiler, PropertyAbstractNode* prop, Pass* pass, SGScriptTranslator* translator);
/**
@see SubRenderStateFactory::writeInstance.
*/
virtual void writeInstance(MaterialSerializer* ser, SubRenderState* subRenderState, Pass* srcPass, Pass* dstPass);
/**
Sets the list of custom shadow caster materials
*/
virtual void setCustomShadowCasterMaterials(const SkinningType skinningType, const MaterialPtr& caster1Weight, const MaterialPtr& caster2Weight,
const MaterialPtr& caster3Weight, const MaterialPtr& caster4Weight);
/**
Sets the list of custom shadow receiver materials
*/
virtual void setCustomShadowReceiverMaterials(const SkinningType skinningType, const MaterialPtr& receiver1Weight, const MaterialPtr& receiver2Weight,
const MaterialPtr& receiver3Weight, const MaterialPtr& receiver4Weight);
/**
Returns the name of a custom shadow caster material for a given number of weights
*/
const MaterialPtr& getCustomShadowCasterMaterial(const SkinningType skinningType, ushort index) const;
/**
Returns the name of a custom shadow receiver material for a given number of weights
*/
const MaterialPtr& getCustomShadowReceiverMaterial(const SkinningType skinningType, ushort index) const;
/**
@brief
Prepares an entity's material for use in the hardware skinning (HS).
This function prepares an entity's material for use by the HS sub-render
state. This function scans the entity and extracts the information of the amount
of bones and weights in the entity. This function replaces the need specify in
the material script the amount of bones and weights needed to make the HS work.
Note that this class does not save the the bone and weight count information
internally. Rather this information is stored in the entity's materials as a
user binded object.
@param pEntity A pointer to an entity who's materials need preparing.
*/
void prepareEntityForSkinning(const Entity* pEntity, SkinningType skinningType = ST_LINEAR, bool correctAntidpodalityHandling = false, bool shearScale = false);
/**
@brief
The maximum number of bones for which hardware skinning is performed.
This number should be limited to avoid problems of using to many parameters
in a shader. For example, in pixel shader 3 this should be around 70-90
dependent on other sub-render states in the shader.
The default value for this property is 70 which correspond to pixel shader model 3 limitations
*/
ushort getMaxCalculableBoneCount() const {
return mMaxCalculableBoneCount; }
/**
Sets the maximum number of bones for which hardware skinning is performed.
@see getMaxCalculableBoneCount()
*/
void setMaxCalculableBoneCount(ushort count) {
mMaxCalculableBoneCount = count; }
/**
Override standard Singleton retrieval.
@remarks Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static HardwareSkinningFactory& getSingleton(void);
/**
Override standard Singleton retrieval.
@remarks Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static HardwareSkinningFactory* getSingletonPtr(void);
protected:
/**
@brief
Extracts the maximum amount of bones and weights used in an specific subentity of given entity.
@param pEntity The entity from which the information needs to be extracted.
@param subEntityIndex The index of subentity from which the information needs to be extracted.
@param boneCount The maximum number of bones used by the entity.
@param weightCount The maximum number of weights used by the entity.
@return Returns true if the entity can use HS. False if not.
*/
bool extractSkeletonData(const Entity* pEntity, unsigned int subEntityIndex,
ushort& boneCount, ushort& weightCount);
/**
@brief
Updates an entity's the skeleton data onto one of it's materials.
@param pMaterial The material to update with the information.
@param isValid Tells if the material can be used with HS.
@param boneCount The maximum number of bones used by the entity.
@param weightCount The maximum number of weights used by the entity.
@return Returns true if the data was updated on the material. False if not.
*/
bool imprintSkeletonData(const MaterialPtr& pMaterial, bool isValid,
ushort boneCount, ushort weightCount, SkinningType skinningType, bool correctAntidpodalityHandling, bool scalingShearingSupport);
protected:
/**
@see SubRenderStateFactory::createInstanceImpl.
*/
virtual SubRenderState* createInstanceImpl();
/// A set of custom shadow caster materials
MaterialPtr mCustomShadowCasterMaterialsLinear[HS_MAX_WEIGHT_COUNT];
MaterialPtr mCustomShadowCasterMaterialsDualQuaternion[HS_MAX_WEIGHT_COUNT];
/// A set of custom shadow receiver materials
MaterialPtr mCustomShadowReceiverMaterialsLinear[HS_MAX_WEIGHT_COUNT];
MaterialPtr mCustomShadowReceiverMaterialsDualQuaternion[HS_MAX_WEIGHT_COUNT];
///The maximum number of bones for which hardware skinning is performed.
///@see getMaxCalculableBoneCount()
ushort mMaxCalculableBoneCount;
};
/** @} */
/** @} */
}
}
#endif
#endif
|