| |
| class PPERequestParamDataBase |
| { |
| PPERequesterBase m_Requester; |
| protected bool m_UpdatingDataValues; |
| protected bool m_IsActive; |
| protected bool m_SettingDefaultValues; |
| |
| protected int m_MaterialID; |
| protected int m_ParameterID; |
| protected int m_VariableType; |
| protected int m_RequesterIDX; |
| protected int m_InteractionMask; |
| protected int m_Priority; |
| |
| void PPERequestParamDataBase(int requester_idx, int mat_id, int param_id, int data_type = 0, int priority = 0, int mask = PPOperators.SET) |
| { |
| m_RequesterIDX = requester_idx; |
| m_MaterialID = mat_id; |
| m_ParameterID = param_id; |
| m_VariableType = data_type; |
| m_Priority = priority; |
| m_InteractionMask = mask; |
| m_UpdatingDataValues = false; |
| m_SettingDefaultValues = false; |
| m_IsActive = false; |
| InitValues(); |
| } |
| |
| void InitValues() |
| { |
| } |
| |
| void SetUpdatingDataValues(bool state) |
| { |
| m_UpdatingDataValues = state; |
| } |
| |
| bool GetUpdatingDataValues() |
| { |
| return m_UpdatingDataValues; |
| } |
| |
| void SetDataActive(bool state) |
| { |
| m_IsActive = state; |
| } |
| |
| bool IsDataActive() |
| { |
| return m_IsActive; |
| } |
| |
| void SetSettingDefaultValues(bool state) |
| { |
| m_SettingDefaultValues = state; |
| } |
| |
| bool IsSettingDefaultValues() |
| { |
| return m_SettingDefaultValues; |
| } |
| |
| int GetRequesterIDX() |
| { |
| return m_RequesterIDX; |
| } |
| |
| int GetMaterialID() |
| { |
| return m_MaterialID; |
| } |
| |
| int GetParameterID() |
| { |
| return m_ParameterID; |
| } |
| |
| int GetVarType() |
| { |
| return m_VariableType; |
| } |
| |
| void SetInteractionMask(int mask) |
| { |
| m_InteractionMask = mask; |
| } |
| |
| int GetInteractionMask() |
| { |
| return m_InteractionMask; |
| } |
| |
| void SetPriorityLayer(int priority) |
| { |
| m_Priority = priority; |
| } |
| |
| int GetPriorityLayer() |
| { |
| return m_Priority; |
| } |
| } |
|
|
| class PPERequestParamDataBool extends PPERequestParamDataBase |
| { |
| bool m_BoolTarget; |
| bool m_BoolCurrent; |
| bool m_BoolLast; |
| |
| void PPERequestParamDataBool(int requester_idx, int mat_id, int param_id, int data_type = 0, int priority = 0, int mask = PPOperators.SET, bool relative = false ) |
| { |
| m_BoolCurrent = 0; |
| m_BoolLast = 0; |
| m_VariableType = PPEConstants.VAR_TYPE_BOOL; |
| } |
| } |
|
|
| class PPERequestParamDataInt extends PPERequestParamDataBase |
| { |
| int m_IntTarget; |
| int m_IntCurrent; |
| int m_IntLast; |
| |
| void PPERequestParamDataInt(int requester_idx, int mat_id, int param_id, int data_type = 0, int priority = 0, int mask = PPOperators.SET, bool relative = false ) |
| { |
| m_IntCurrent = -1; |
| m_IntLast = -1; |
| m_VariableType = PPEConstants.VAR_TYPE_INT; |
| } |
| } |
|
|
| class PPERequestParamDataFloat extends PPERequestParamDataBase |
| { |
| float m_FloatTarget; |
| float m_FloatCurrent; |
| float m_FloatLast; |
| |
| float m_FloatFormerTarget; |
| float m_FloatStart; |
| |
| void PPERequestParamDataFloat(int requester_idx, int mat_id, int param_id, int data_type = 0, int priority = 0, int mask = PPOperators.SET, bool relative = false ) |
| { |
| m_VariableType = PPEConstants.VAR_TYPE_FLOAT; |
| } |
| |
| override void InitValues() |
| { |
| m_FloatTarget = float.LOWEST; |
| m_FloatCurrent = float.LOWEST; |
| m_FloatLast = float.LOWEST; |
| m_FloatFormerTarget = float.LOWEST; |
| m_FloatStart = float.LOWEST; |
| } |
| } |
|
|
| class PPERequestParamDataColor extends PPERequestParamDataBase |
| { |
| ref array<float> m_ColorTarget; |
| ref array<float> m_ColorCurrent; |
| ref array<float> m_ColorLast; |
| |
| ref array<float> m_ColorFormerTarget; |
| ref array<float> m_ColorStart; |
| |
| void PPERequestParamDataColor(int requester_idx, int mat_id, int param_id, int data_type = 0, int priority = 0, int mask = PPOperators.SET, bool relative = false ) |
| { |
| m_VariableType = PPEConstants.VAR_TYPE_COLOR; |
| } |
| |
| override void InitValues() |
| { |
| m_ColorTarget = {0.0,0.0,0.0,0.0}; |
| m_ColorCurrent = {0,0.0,0.0,0.0}; |
| m_ColorLast = {0.0,0.0,0.0,0.0}; |
| m_ColorFormerTarget = {0.0,0.0,0.0,0.0}; |
| m_ColorStart = {0.0,0.0,0.0,0.0}; |
| } |
| } |
|
|
| |
| class PPERequestParamDataVector extends PPERequestParamDataBase |
| { |
| vector m_VectorTarget; |
| vector m_VectorCurrent; |
| vector m_VectorLast; |
| } |
|
|