| /******************************************************************************* |
| * Copyright (c) 2012 Profactor GmbH |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Gerhard Ebenhofer - initial API and implementation and/or initial documentation |
| *******************************************************************************/ |
| |
| #ifndef _FB_RANDOM_H_ |
| #define _FB_RANDOM_H_ |
| |
| #include <basicfb.h> |
| #include <forte_real.h> |
| #include <forte_uint.h> |
| |
| class FORTE_FB_RANDOM: public CBasicFB{ |
| DECLARE_FIRMWARE_FB(FORTE_FB_RANDOM) |
| |
| private: |
| static const CStringDictionary::TStringId scm_anDataInputNames[]; |
| static const CStringDictionary::TStringId scm_anDataInputTypeIds[]; |
| CIEC_UINT &SEED() { |
| return *static_cast<CIEC_UINT*>(getDI(0)); |
| }; |
| |
| static const CStringDictionary::TStringId scm_anDataOutputNames[]; |
| static const CStringDictionary::TStringId scm_anDataOutputTypeIds[]; |
| CIEC_REAL &VAL() { |
| return *static_cast<CIEC_REAL*>(getDO(0)); |
| }; |
| |
| static const TEventID scm_nEventINITID = 0; |
| static const TEventID scm_nEventREQID = 1; |
| static const TForteInt16 scm_anEIWithIndexes[]; |
| static const TDataIOID scm_anEIWith[]; |
| static const CStringDictionary::TStringId scm_anEventInputNames[]; |
| |
| static const TEventID scm_nEventINITOID = 0; |
| static const TEventID scm_nEventCNFID = 1; |
| static const TForteInt16 scm_anEOWithIndexes[]; |
| static const TDataIOID scm_anEOWith[]; |
| static const CStringDictionary::TStringId scm_anEventOutputNames[]; |
| |
| static const SFBInterfaceSpec scm_stFBInterfaceSpec; |
| |
| FORTE_BASIC_FB_DATA_ARRAY(2, 1, 1, 0, 0); |
| |
| virtual void setInitialValues(); |
| void alg_INIT(void); |
| void alg_REQ(void); |
| static const TForteInt16 scm_nStateSTART = 0; |
| static const TForteInt16 scm_nStateREQ = 1; |
| static const TForteInt16 scm_nStateState = 2; |
| |
| void enterStateSTART(void); |
| void enterStateREQ(void); |
| void enterStateState(void); |
| |
| virtual void executeEvent(int pa_nEIID); |
| |
| public: |
| FORTE_FB_RANDOM(CStringDictionary::TStringId pa_nInstanceNameId, CResource *pa_poSrcRes) : |
| CBasicFB(pa_poSrcRes, &scm_stFBInterfaceSpec, pa_nInstanceNameId, |
| 0, m_anFBConnData, m_anFBVarsData){ |
| }; |
| |
| virtual ~FORTE_FB_RANDOM(){}; |
| |
| }; |
| |
| #endif //close the ifdef sequence from the beginning of the file |
| |