// TestDlg.cpp : implementation file // #include "stdafx.h" #include "Test.h" #include "TestDlg.h" #include "IvyApplication.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CAboutDlg dialog used for App About class CAboutDlg : public CDialog { public: CAboutDlg(); // Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAboutDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: //{{AFX_MSG(CAboutDlg) //}}AFX_MSG DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { //{{AFX_DATA_INIT(CAboutDlg) //}}AFX_DATA_INIT } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAboutDlg) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) //{{AFX_MSG_MAP(CAboutDlg) // No message handlers //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTestDlg dialog CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/) : ETSLayoutDialog(CTestDlg::IDD, pParent) { //{{AFX_DATA_INIT(CTestDlg) m_busnumber = ""; //}}AFX_DATA_INIT // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); bus = NULL; } void CTestDlg::DoDataExchange(CDataExchange* pDX) { ETSLayoutDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CTestDlg) DDX_Control(pDX, IDC_REGEXP, m_expr); DDX_Control(pDX, IDC_MSG, m_msg); DDX_Control(pDX, IDC_TEXT, m_text); DDX_Control(pDX, IDC_SLIDER7, m_slider7); DDX_Control(pDX, IDC_SLIDER6, m_slider6); DDX_Control(pDX, IDC_SLIDER5, m_slider5); DDX_Control(pDX, IDC_SLIDER4, m_slider4); DDX_Control(pDX, IDC_SLIDER3, m_slider3); DDX_Control(pDX, IDC_SLIDER2, m_slider2); DDX_Control(pDX, IDC_SLIDER1, m_slider1); DDX_Control(pDX, IDC_SLIDER0, m_slider0); DDX_Text(pDX, IDC_BUSNUMBER, m_busnumber); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CTestDlg, ETSLayoutDialog) //{{AFX_MSG_MAP(CTestDlg) ON_WM_SYSCOMMAND() ON_WM_QUERYDRAGICON() ON_BN_CLICKED(IDC_START, OnStart) ON_WM_CLOSE() ON_BN_CLICKED(IDC_SEND, OnSend) ON_BN_CLICKED(IDC_BIND, OnBind) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTestDlg message handlers BOOL CTestDlg::OnInitDialog() { ETSLayoutDialog::OnInitDialog(); // Add "About..." menu item to system menu. // IDM_ABOUTBOX must be in the system command range. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { CString strAboutMenu; strAboutMenu.LoadString(IDS_ABOUTBOX); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // 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 // define the Layout CreateRoot( VERTICAL ) << ( pane( HORIZONTAL, ABSOLUTE_VERT ) << item ( IDC_BUSNUMBER, GREEDY ) << item ( IDC_START, NORESIZE ) ) << item ( IDC_TEXT, GREEDY ) << ( pane( HORIZONTAL, ABSOLUTE_VERT ) << item( paneNull, GREEDY ) << item( IDC_SLIDER0, NORESIZE ) << item( IDC_SLIDER1, NORESIZE ) << item( IDC_SLIDER2, NORESIZE ) << item( IDC_SLIDER3, NORESIZE ) << item( IDC_SLIDER4, NORESIZE ) << item( IDC_SLIDER5, NORESIZE ) << item( IDC_SLIDER6, NORESIZE ) << item( IDC_SLIDER7, NORESIZE ) << item( paneNull, GREEDY ) ) << ( pane( HORIZONTAL, ABSOLUTE_VERT ) << item( IDC_STATIC_MSG, NORESIZE ) << item( IDC_MSG, GREEDY ) << item( IDC_SEND, NORESIZE ) ) << ( pane( HORIZONTAL, ABSOLUTE_VERT ) << item( IDC_STATIC_BIND, NORESIZE ) << item( IDC_REGEXP, GREEDY ) << item( IDC_BIND, NORESIZE ) ); UpdateLayout (); // TODO: Add extra initialization here m_slider0.SetRange( 0, 127); m_slider1.SetRange( 0, 127); m_slider2.SetRange( 0, 127); m_slider3.SetRange( 0, 127); m_slider4.SetRange( 0, 127); m_slider5.SetRange( 0, 127); m_slider6.SetRange( 0, 127); m_slider7.SetRange( 0, 127); m_slider0.SetWindowText( "MIDICS10:fader0 value=" ); m_slider1.SetWindowText( "MIDICS10:fader1 value=" ); m_slider2.SetWindowText( "MIDICS10:fader2 value=" ); m_slider3.SetWindowText( "MIDICS10:fader3 value=" ); m_slider4.SetWindowText( "MIDICS10:fader4 value=" ); m_slider5.SetWindowText( "MIDICS10:fader5 value=" ); m_slider6.SetWindowText( "MIDICS10:fader6 value=" ); m_slider7.SetWindowText( "MIDICS10:fader7 value=" ); bus = new Ivy( "TEST NT","TEST NT READY",this,FALSE); bus->BindMsg("^MIDICS10:fader([0-7]) value=([0-9]+)", BUS_CALLBACK_OF(CTestDlg, FaderCallback)); bus->BindMsg("^MIDICS10:knob([0-5]) value=([0-9]+)", BUS_CALLBACK_OF(CTestDlg, FaderCallback)); // bus->BindMsg("(.*)", BUS_CALLBACK_OF(CTestDlg, IvyCallback )); //bus->BindMsg("^S( A=([0-9]+))?( B=([0-9]+))?",cb); m_busnumber = bus->GetDomain( m_busnumber ); UpdateData(FALSE); return TRUE; // return TRUE unless you set the focus to a control } void CTestDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { ETSLayoutDialog::OnSysCommand(nID, lParam); } } // The system calls this to obtain the cursor to display while the user drags // the minimized window. HCURSOR CTestDlg::OnQueryDragIcon() { return (HCURSOR) m_hIcon; } void CTestDlg::OnStart() { UpdateData(TRUE); bus->stop(); m_busnumber = bus->GetDomain( m_busnumber ); bus->start(m_busnumber); UpdateData(FALSE); } void CTestDlg::IvyCallback(IvyApplication *app, int argc, const char **argv) { int i; CString text; TRACE(" Called function args:"); text.Format("Ivy callback %d args\r\n",argc ); WriteMessage( text ); for ( i = 0; i < argc; i++ ) { text.Format("Ivy callback arg%d '%s'\r\n",i, argv[i] ); WriteMessage( text ); TRACE(" '%s'",argv[i]); } TRACE("\n"); } void CTestDlg::FaderCallback(IvyApplication *app, int argc, const char **argv) { int fader; int value; if ( argc != 2 ) { TRACE("bad Fader call back\n"); return; } fader = atoi( argv[0] ); value = atoi( argv[1] ); switch ( fader ) { case 0: m_slider0.SetPos( value ); break; case 1: m_slider1.SetPos( value ); break; case 2: m_slider2.SetPos( value ); break; case 3: m_slider3.SetPos( value ); break; case 4: m_slider4.SetPos( value ); break; case 5: m_slider5.SetPos( value ); break; case 6: m_slider6.SetPos( value ); break; case 7: m_slider7.SetPos( value ); break; } //UpdateData(FALSE); } void CTestDlg::OnDirectMessage(IvyApplication *app, int id, const char *arg) { TRACE("Direct Msg Receive %d, %s\n",id,arg ); } void CTestDlg::OnApplicationConnected(IvyApplication *app) { CString text; text.Format("Application: %s ready\r\n",(LPCSTR)(app->GetName()) ); WriteMessage( text ); } void CTestDlg::OnApplicationDisconnected(IvyApplication *app) { CString text; text.Format("Application: %s bye\r\n",(LPCSTR)(app->GetName()) ); WriteMessage( text ); } void CTestDlg::WriteMessage(const CString & text) { m_text.SetSel( -1, -1, FALSE ); m_text.ReplaceSel( text ); } void CTestDlg::OnClose() { // TODO: Add your message handler code here and/or call default TRACE ( "Quitting\n"); if (bus) delete bus; ETSLayoutDialog::OnClose(); } void CTestDlg::OnSend() { CString buffer; m_msg.SetEditSel( 0, -1 ); m_msg.GetWindowText( buffer ); if ( buffer.IsEmpty() ) return; int count = bus->SendMsg( buffer ); if ( m_msg.FindStringExact(-1, buffer) == CB_ERR ) { m_msg.AddString( buffer ); } CString mess; mess.Format("Sending %d message %s\r\n",count,buffer); WriteMessage( mess ); m_msg.Clear(); } void CTestDlg::OnBind() { CString buffer; m_expr.SetEditSel( 0, -1 ); m_expr.GetWindowText( buffer ); if ( buffer.IsEmpty() ) return; int count = bus->BindMsg( buffer , BUS_CALLBACK_OF(CTestDlg, IvyCallback )); if ( m_expr.FindStringExact(-1, buffer) == CB_ERR ) { m_expr.AddString( buffer ); } CString mess; mess.Format("Binding to %s\r\n",buffer); WriteMessage( mess ); m_expr.Clear(); }