ConOpSys V2970  P004.07
ANVILEX control operating system
Public Member Functions | Public Attributes | Private Types | Private Attributes | List of all members
TFunction_Block_Switch_Button_Controller Class Reference

Function block TFunction_Block_Switch_Button_Controller class declaration. More...

#include <Function_Block_Switch_Button_Controller.h>

Inheritance diagram for TFunction_Block_Switch_Button_Controller:
Inheritance graph
Collaboration diagram for TFunction_Block_Switch_Button_Controller:
Collaboration graph

Public Member Functions

 TFunction_Block_Switch_Button_Controller ()
 Class constructor method. More...
 
virtual ~TFunction_Block_Switch_Button_Controller ()
 Class destructor method. More...
 
virtual VOID Init ()
 Function block initialisation method. More...
 
virtual VOID Execute ()
 Function block execution method. More...
 
virtual VOID Send_Information (TProtocol_Base *object_Protocol)
 Send information about Function block over communication link protocol. More...
 
- Public Member Functions inherited from TFunction_Block_Base
 TFunction_Block_Base (U32 u32_Function_ID)
 Class constructor method. More...
 
virtual ~TFunction_Block_Base ()
 Class destructor method. More...
 
VOID Connect ()
 Function block connect method. More...
 
VOID Init ()
 Function block initialisation method. More...
 
virtual VOID Done ()
 Function block finalisation method. More...
 
virtual VOID Update ()
 Update parameters at runtime method. More...
 
virtual VOID Trip ()
 Function block trip method. More...
 
U32 Get_Function_Block_ID ()
 Get function block dentifier. More...
 
VOID Set_Initialisation_Error ()
 Set function block initialisation error. More...
 
BOOL Is_Initialisation_Error ()
 Return function block initialisation error status. More...
 
VOID Append_Connected_Status (BOOL *bool_Connected_Status)
 Append interconnection status of the function block. More...
 
BOOL Is_Connected ()
 Returns status of the function block interconnection. More...
 
BOOL Is_Initialised ()
 Returns status of the function block interconnection. More...
 
BOOL Get_Input_Connector (U32 u32_Connector_Index, TBlock_Input_Connector **object_Input_Connector)
 Get pointer to the input connector. More...
 
BOOL Get_Output_Connector (U32 u32_Connector_Index, TBlock_Output_Connector **object_Output_Connector)
 Get pointer to the output connector. More...
 
TFunction_Block_Status Get_Status ()
 Get function block status method. More...
 
__fastcall TBlock_Template (TComponent *Owner, TList *Storage)
 
__fastcall ~TBlock_Template ()
 
void __fastcall CreateBlock ()
 
virtual void __fastcall Paint ()
 
virtual bool __fastcall PropertiesDialog ()
 
virtual void __fastcall SaveToProjectFile (TMemIniFile *ProjectFile, AnsiString ParentSection)
 
virtual void __fastcall LoadFromProjectFile (TMemIniFile *ProjectFile, AnsiString ParentSection)
 
virtual void __fastcall SwapBlocks ()
 
virtual void __fastcall RepaintAllBlocks ()
 
VOID __fastcall Load_Block_From_List (TStringList *object_File_Source_CPP, TStringList *object_File_Source_H)
 
VOID __fastcall Get_SQL_Queries (TStringList *object_SQL_Queries)
 

Public Attributes

TBlock_Input_Connector object_bool_Enable_Input
 Block enable input signal (active high) More...
 
TBlock_Input_Connector object_bool_Toggle_Input
 Block toggle input signal (active high) More...
 
TBlock_Input_Connector object_bool_Emergency_Stop_Input
 Block emergency stop input signal (active low) More...
 
TBlock_Input_Connector object_bool_Internal_Stop_Input
 Internal stop signal. More...
 
TBlock_Input_Connector object_U32_Press_Counter_Limit
 Press counter limit. More...
 
TBlock_Output_Connector object_bool_Output
 Block output signal. More...
 
TBlock_Output_Connector object_bool_Output_Press_State
 Press state. More...
 
- Public Attributes inherited from TFunction_Block_Base
TListStorageOfBlocks = (TList*)NULL
 
int BlockID
 
int InputConnectorsCount
 
int OutputConnectorsCount
 
TListStorageOfInputConnectors
 
TListStorageOfOutputConnectors
 
TCore_Template * Core
 
TFooter_Template * Footer
 
TParameters_Template * Parameters
 
bool AutoSize
 
Graphics::TBitmap * Icon
 
__property TNotifyEvent OnInputConnectorSelected = { read = FOnInputConnectorSelected, write = FOnInputConnectorSelected }
 
__property TNotifyEvent OnOutputConnectorSelected = { read = FOnOutputConnectorSelected, write = FOnOutputConnectorSelected }
 
__property TNotifyEvent OnCoreSelected = { read = FOnCoreSelected, write = FOnCoreSelected }
 
__property TNotifyEvent OnModified = { read = FModified, write = FModified }
 
__property TNotifyEvent OnNeedToUpdate = { read = FNeedToUpdate, write = FNeedToUpdate }
 
__property TResolveConnectorAddressEvent OnResolveConnectorAddress = { read = FOnResolveConnectorAddress, write = FOnResolveConnectorAddress }
 
__property AnsiString Label = { read = FLabel, write = FLabel }
 
__property BOOL Border = { read = FBorder, write = FBorder, default = true }
 
__property BOOL Selected = { read = FSelected, write = SetSelectedFlag, default = false }
 
__property BOOL Flipped = { read = FFlipped, write = SetFlippedFlag, default = false }
 

Private Types

enum  TController_FSM_State {
  enum_Pressed , enum_Not_Pressed , enum_Ready , enum_Press ,
  enum_Error
}
 Button controller state definition. More...
 

Private Attributes

BOOL bool_State = (BOOL)false
 Internal state. More...
 
BOOL bool_Previous_Output_State = (BOOL)false
 Previous output state. More...
 
BOOL bool_New_Input_State = (BOOL)false
 New input state. More...
 
BOOL bool_Previous_Input_State = (BOOL)false
 Previous input state. More...
 
U32 u32_Press_Count = (U32)0
 Press counter. More...
 
TController_FSM_State enum_Controller_FSM_State = TController_FSM_State::enum_Ready
 Controller FSM state. More...
 

Additional Inherited Members

- Protected Member Functions inherited from TFunction_Block_Base
VOID Update_Connected_Status (BOOL bool_New_Connected_Status)
 Updates function block interconnection status. More...
 
VOID Create_Event (U32 u32_Event_ID)
 Create event method. More...
 
void __fastcall SetSelectedFlag (bool Value)
 
void __fastcall SetFlippedFlag (bool Value)
 
virtual void __fastcall SetNamesOfConnectors ()
 
void __fastcall CorePaint (TObject *Sender)
 
- Protected Attributes inherited from TFunction_Block_Base
TNotifyEvent FModified
 
TNotifyEvent FNeedToUpdate
 
TNotifyEvent FOnInputConnectorSelected
 
TNotifyEvent FOnOutputConnectorSelected
 
TNotifyEvent FOnCoreSelected
 
TResolveConnectorAddressEvent FOnResolveConnectorAddress
 
AnsiString FLabel = ""
 Function block label of the core string. More...
 
BOOL FBorder = (BOOL)true
 Function block border status. More...
 
BOOL FSelected = (BOOL)false
 Function block seleted status. More...
 
BOOL FFlipped = (BOOL)false
 Function block flipped status. More...
 
BOOL LockedMode = (BOOL)false
 
BOOL DobbleClicked = (BOOL)false
 
U32 u32_Locked_Position_X = (U32)0
 
U32 u32_Locked_Position_Y = (U32)0
 

Detailed Description

Function block TFunction_Block_Switch_Button_Controller class declaration.

Member Enumeration Documentation

◆ TController_FSM_State

Button controller state definition.

Enumerator
enum_Pressed 

Pressed state.

enum_Not_Pressed 

Not pressed state.

enum_Ready 

Ready state.

enum_Press 

Press state.

enum_Error 

Error state.

Constructor & Destructor Documentation

◆ TFunction_Block_Switch_Button_Controller()

TFunction_Block_Switch_Button_Controller::TFunction_Block_Switch_Button_Controller ( )

◆ ~TFunction_Block_Switch_Button_Controller()

TFunction_Block_Switch_Button_Controller::~TFunction_Block_Switch_Button_Controller ( )
virtual

Class destructor method.


Note
None
Override
Not allowed
Attention
Don't call this method directly.

Member Function Documentation

◆ Execute()

VOID TFunction_Block_Switch_Button_Controller::Execute ( )
virtual

◆ Init()

VOID TFunction_Block_Switch_Button_Controller::Init ( )
virtual

Function block initialisation method.


Note
None
Returns
None
Override
Not allowed
Attention
None

References bool_State, and enum_Controller_FSM_State.

◆ Send_Information()

VOID TFunction_Block_Switch_Button_Controller::Send_Information ( TProtocol_Base object_Protocol)
virtual

Send information about Function block over communication link protocol.


Note
This method sends information about Function block over specified communication link protocol.
Parameters
[in]*object_Protocol- Pointer to the communication link protocol
Returns
None
Override
Not allowed
Attention
None

Reimplemented from TFunction_Block_Base.

References bool_State, object_bool_Emergency_Stop_Input, object_bool_Enable_Input, object_bool_Internal_Stop_Input, object_bool_Output, object_bool_Output_Press_State, object_bool_Toggle_Input, TProtocol_Base::Transmit_BOOL_Value_As_Decimal(), TProtocol_Base::Transmit_Connector_Value_As_Decimal(), and TProtocol_Base::Transmit_String().

Here is the call graph for this function:

Member Data Documentation

◆ bool_New_Input_State

BOOL TFunction_Block_Switch_Button_Controller::bool_New_Input_State = (BOOL)false
private

New input state.

Referenced by Execute().

◆ bool_Previous_Input_State

BOOL TFunction_Block_Switch_Button_Controller::bool_Previous_Input_State = (BOOL)false
private

Previous input state.

Referenced by Execute().

◆ bool_Previous_Output_State

BOOL TFunction_Block_Switch_Button_Controller::bool_Previous_Output_State = (BOOL)false
private

Previous output state.

Referenced by Execute().

◆ bool_State

BOOL TFunction_Block_Switch_Button_Controller::bool_State = (BOOL)false
private

Internal state.

Referenced by Execute(), Init(), and Send_Information().

◆ enum_Controller_FSM_State

TController_FSM_State TFunction_Block_Switch_Button_Controller::enum_Controller_FSM_State = TController_FSM_State::enum_Ready
private

Controller FSM state.

Referenced by Execute(), and Init().

◆ object_bool_Emergency_Stop_Input

TBlock_Input_Connector TFunction_Block_Switch_Button_Controller::object_bool_Emergency_Stop_Input

Block emergency stop input signal (active low)

Referenced by Execute(), Send_Information(), and TFunction_Block_Switch_Button_Controller().

◆ object_bool_Enable_Input

TBlock_Input_Connector TFunction_Block_Switch_Button_Controller::object_bool_Enable_Input

Block enable input signal (active high)

Referenced by Execute(), Send_Information(), and TFunction_Block_Switch_Button_Controller().

◆ object_bool_Internal_Stop_Input

TBlock_Input_Connector TFunction_Block_Switch_Button_Controller::object_bool_Internal_Stop_Input

Internal stop signal.

Referenced by Send_Information(), and TFunction_Block_Switch_Button_Controller().

◆ object_bool_Output

TBlock_Output_Connector TFunction_Block_Switch_Button_Controller::object_bool_Output

Block output signal.

Referenced by Execute(), Send_Information(), and TFunction_Block_Switch_Button_Controller().

◆ object_bool_Output_Press_State

TBlock_Output_Connector TFunction_Block_Switch_Button_Controller::object_bool_Output_Press_State

◆ object_bool_Toggle_Input

TBlock_Input_Connector TFunction_Block_Switch_Button_Controller::object_bool_Toggle_Input

Block toggle input signal (active high)

Referenced by Execute(), Send_Information(), and TFunction_Block_Switch_Button_Controller().

◆ object_U32_Press_Counter_Limit

TBlock_Input_Connector TFunction_Block_Switch_Button_Controller::object_U32_Press_Counter_Limit

Press counter limit.

Referenced by Execute(), and TFunction_Block_Switch_Button_Controller().

◆ u32_Press_Count

U32 TFunction_Block_Switch_Button_Controller::u32_Press_Count = (U32)0
private

Press counter.

Referenced by Execute().


The documentation for this class was generated from the following files: