⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 event1dlg.cpp

📁 关于台湾研华远程以太网模块上位机控制源代码
💻 CPP
字号:
// Event1Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "Event1.h"
#include "Event1Dlg.h"

#include <winsock2.h>
#include "..\..\..\include\adamtcp.h"

UINT ThreadProc( LPVOID lpParam );

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

char			szIPAddress[20];
static int		iTotalReceive;
static int		iTotalTimeout;
static int		iThreadIndex;
//----------------------------------------------
struct _StreamData   *pStreamData,StreamData;
static BYTE byLoopFlag=1;
HANDLE    hEvent;
/////////////////////////////////////////////////////////////////////////////
// CEvent1Dlg dialog

CEvent1Dlg::CEvent1Dlg(CWnd* pParent /*=NULL*/)
	: CDialog(CEvent1Dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CEvent1Dlg)
	m_strIPAddress = _T("");
	//m_strStartAddress = _T("");
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CEvent1Dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CEvent1Dlg)
	DDX_Text(pDX, IDC_EDIT_IPADDRESS, m_strIPAddress);
	//DDX_Text(pDX, IDC_EDIT_STARTADDRESS, m_strStartAddress);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CEvent1Dlg, CDialog)
	//{{AFX_MSG_MAP(CEvent1Dlg)
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(ID_EXIT, OnExit)
	ON_BN_CLICKED(ID_STOP, OnStop)
	ON_BN_CLICKED(ID_START, OnStart)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEvent1Dlg message handlers

BOOL CEvent1Dlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	// TODO: Add extra initialization here
	m_strIPAddress="172.18.1.41";
	SetDlgItemText(IDC_EDIT_IPADDRESS,m_strIPAddress);

	// get the DLL version 
	char   szCh[20];
    int    iVersion;    
 
	iVersion=ADAMTCP_GetDLLVersion();
	_ltoa( iVersion, szCh, 16 );
	SetDlgItemText(IDC_EDIT_DLLVER, szCh);

    //--- To initialize DLL to work ---
    int   iRetVal;

    iRetVal=ADAMTCP_Open();
    if( iRetVal!=0 )
    {
        MessageBox("ADAMTCP_Open() Failure !!!");
    }

    (CButton *)GetDlgItem(ID_STOP)->EnableWindow( FALSE );
   
	return TRUE;  // return TRUE  unless you set the focus to a control
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CEvent1Dlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CEvent1Dlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}

void CEvent1Dlg::OnExit() 
{
    //--- Finally, calling ADAMTCP_Close() to release all allocated resource  ---
    ADAMTCP_Close();
	
	// TODO: Add your control notification handler code here
	CDialog::OnOK();

}

void CEvent1Dlg::OnStart() 
{
	int       iRetVal; 
    CString   strText,strTemp;

	(CButton *)GetDlgItem(ID_START)->EnableWindow( FALSE );
	(CButton *)GetDlgItem(ID_STOP)->EnableWindow( TRUE );

	m_bStopThread = FALSE;
	m_pThread = NULL;

    m_iTotalReceive=0;
    m_iTotalTimeout=0;
    m_iThreadIndex=0;

    // get the 5000/TCP's IP Address
	GetDlgItemText(IDC_EDIT_IPADDRESS,szIPAddress,20);
    //MessageBox( szIPAddress);

    //-----  create a event for synchronization ---------------
    hEvent = CreateEvent(NULL,
			     FALSE,   // auto reset
			     FALSE,  // init state as Non-Signal
			     NULL);

    //--- adding the first 5000/TCP for streaming ----
    iRetVal=ADAMTCP_AddTCPForStream(szIPAddress);
    if( iRetVal<0 )
    {
		MessageBox("ADAMTCP_AddTCPForStream() Failure !!!");
    }

	((CListBox*)GetDlgItem(IDC_LIST_STREAM))->ResetContent();
    m_pListBox=(CListBox*)GetDlgItem(IDC_LIST_STREAM);

	if( m_pThread == NULL )
	{
		m_ThreadData.hEvent = &hEvent;
		m_ThreadData.lpStopThread = &m_bStopThread;
		m_ThreadData.TotalReceive=&m_iTotalReceive;
        m_ThreadData.TotalTimeout=&m_iTotalTimeout;
        m_ThreadData.ThreadIndex=&m_iThreadIndex;
		m_ThreadData.pListBox=m_pListBox;
  	    // Start the thread.
		m_pThread =
			AfxBeginThread(ThreadProc, (LPVOID) &m_ThreadData);
	}

    //--- Starting to receive the streaming data come from 5000/TCP ---
    ADAMTCP_StartStream( &hEvent);
}

void CEvent1Dlg::OnStop() 
{
 	// TODO: Add your control notification handler code here
	HANDLE hThread = m_pThread->m_hThread;

	// Set the flag to kill the thread to TRUE;
    m_bStopThread = TRUE;

	// Wait for the thread to end.
	::WaitForSingleObject( hThread, 1000 );

    //--- Stop receiving the streaming data come from 5000/TCP ---	
	ADAMTCP_StopStream( );
    //--- Close the event handle ---
    CloseHandle(hEvent);

	(CButton *)GetDlgItem(ID_START)->EnableWindow( TRUE );
	(CButton *)GetDlgItem(ID_STOP)->EnableWindow( FALSE );

    m_iTotalReceive=0;
    m_iTotalTimeout=0;
    m_iThreadIndex=0;
}

UINT ThreadProc( LPVOID lpParam )
{
	THREAD_DATA *lpThreadData =(THREAD_DATA *) lpParam;
	int    iRetVal;
    CString   strText; 
	//char   szCh[20];

	while( !(*lpThreadData->lpStopThread) )
	{
		*lpThreadData->ThreadIndex=101;
	    if(WaitForSingleObject(*lpThreadData->hEvent,1000)==WAIT_OBJECT_0)  // waiting for 5 seconds
	    { 		
			   if( (*lpThreadData->TotalReceive)%3==2 )
			   {
				   (lpThreadData->pListBox)->ResetContent();
			   }
			   (*lpThreadData->TotalReceive)++;

               //iRetVal=ADAMTCP_ReadStreamData("172.18.1.41",&StreamData);
			   iRetVal=ADAMTCP_ReadStreamData(szIPAddress,&StreamData);
               pStreamData=(struct _StreamData *)&StreamData;

		       //strText.Format( "Receive:%d", iTotalReceive++);
		       //((CListBox*)GetDlgItem(IDC_LIST_STREAM))->InsertString( -1, strText );

		       //strText.Format( "Receive:%d", iTotalReceive++);
		       strText.Format( "Receive:%d", *lpThreadData->TotalReceive);
		       (lpThreadData->pListBox)->InsertString( -1, strText );
			  
	           strText.Format ("DI/DO data of Slot0 to Slot 7:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.DIO[0],StreamData.DIO[1],
							       StreamData.DIO[2],StreamData.DIO[3],
							       StreamData.DIO[4],StreamData.DIO[5],	
							       StreamData.DIO[6],StreamData.DIO[7]);
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("AI/Ao data of Slot0:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
               strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.Slot0[0],StreamData.Slot0[1],
							       StreamData.Slot0[2],StreamData.Slot0[3],
							       StreamData.Slot0[4],StreamData.Slot0[5],
							       StreamData.Slot0[6],StreamData.Slot0[7]);	
			   (lpThreadData->pListBox)->InsertString( -1, strText );
			   strText.Format("AI/AO data of Slot1:\n");
			   (lpThreadData->pListBox)->InsertString( -1, strText );
               strText.Format("%04x:%04x:%04x:%04x-%04x:%04x:%04x:%04x\n",StreamData.Slot1[0],StreamData.Slot1[1],
							       StreamData.Slot1[2],StreamData.Slot1[3],
							       StreamData.Slot1[4],StreamData.Slot1[5],
							       StreamData.Slot1[6],StreamData.Slot1[7]);			
			   (lpThreadData->pListBox)->InsertString( -1, strText );
               

		}
		else
		{
			(*lpThreadData->TotalTimeout)++;
		}

	}
	(*lpThreadData->ThreadIndex)=102;
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -