LongMsg.cpp
上传用户:fs3633
上传日期:2021-05-14
资源大小:909k
文件大小:3k
源码类别:

midi

开发平台:

Visual C++

  1. /*
  2.   CLongMsg.cpp
  3.   Implementation for the CLongMsg class.
  4.   Copyright (C) 2002 Leslie Sanford
  5.   This library is free software; you can redistribute it and/or
  6.   modify it under the terms of the GNU Lesser General Public
  7.   License as published by the Free Software Foundation; either
  8.   version 2.1 of the License, or (at your option) any later version.
  9.   This library is distributed in the hope that it will be useful,
  10.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.   Lesser General Public License for more details.
  13.   You should have received a copy of the GNU Lesser General Public
  14.   License along with this library; if not, write to the Free Software
  15.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 
  16.   USA
  17.   Contact: Leslie Sanford (jabberdabber@hotmail.com)
  18.   Last modified: 12/14/2002
  19. */
  20. //---------------------------------------------------------------------
  21. // Dependencies
  22. //---------------------------------------------------------------------
  23. #include "StdAfx.h"
  24. #include "LongMsg.h"
  25. #include "MIDIOutDevice.h"
  26. // Using declaration
  27. using midi::CLongMsg;
  28. //---------------------------------------------------------------------
  29. // CLongMsg implementation
  30. //---------------------------------------------------------------------
  31. // Default constructor
  32. CLongMsg::CLongMsg() :
  33. m_Msg(0),
  34. m_Length(0)
  35. {}
  36. // Constructor
  37. CLongMsg::CLongMsg(const char *Msg, DWORD Length) :
  38. m_Msg(0),
  39. m_Length(0)
  40. {
  41.     SetMsg(Msg, Length);
  42. }
  43. // Constructor
  44. CLongMsg::CLongMsg(const CLongMsg &Msg)
  45. {
  46.     m_Msg = 0;
  47.     m_Length = 0;
  48.     *this = Msg;
  49. }
  50. // Destructor
  51. CLongMsg::~CLongMsg()
  52. {
  53.     // Release resources for this object if they exist
  54.     if(m_Msg != 0)
  55.     {
  56.         delete [] m_Msg;
  57.     }
  58. }
  59. // Assignment
  60. CLongMsg &CLongMsg::operator = (const CLongMsg &Msg)
  61. {
  62.     // Test for self assignment
  63.     if(this != &Msg)
  64.     {
  65.         SetMsg(Msg.m_Msg, Msg.m_Length);
  66.     }
  67.     return *this;
  68. }
  69. // Sends MIDI message
  70. void CLongMsg::SendMsg(midi::CMIDIOutDevice &OutDevice)
  71. {
  72.     OutDevice.SendMsg(m_Msg, m_Length);
  73. }
  74. // Sets message
  75. void CLongMsg::SetMsg(const char *Msg, DWORD Length)
  76. {
  77.     // Release old message if it exists
  78.     if(m_Msg != 0)
  79.     {
  80.         delete [] m_Msg;
  81.     }
  82.     // 
  83.     // Allocate and initialize new message
  84.     //
  85.     m_Msg = new char[Length];
  86.     m_Length = Length;
  87.     for(DWORD i = 0; i < m_Length; i++)
  88.     {
  89.         m_Msg[i] = Msg[i];
  90.     }
  91. }
  92. // Subscripting
  93. char &CLongMsg::operator [] (int i)
  94. {
  95.     // Bounds checking
  96.     if(m_Length == 0 || i < 0 || i >= m_Length)
  97.     {
  98.         throw CLongMsgIndexOutOfBounds();
  99.     }
  100.     return m_Msg[i];
  101. }