예제 #1
0
파일: DSP.cs 프로젝트: HaKDMoDz/InVision
		public RESULT getInput                  (int index, ref DSP input, ref DSPConnection inputconnection)
		{
			RESULT result      = RESULT.OK;
			IntPtr dsprawnew   = new IntPtr();
			DSP    dspnew      = null;
			IntPtr dspconnectionraw = new IntPtr();
			DSPConnection dspconnectionnew = null;

			try
			{
				result = FMOD_DSP_GetInput(dspraw, index, ref dsprawnew, ref dspconnectionraw);
			}
			catch
			{
				result = RESULT.ERR_INVALID_PARAM;
			}
			if (result != RESULT.OK)
			{
				return result;
			}

			if (input == null)
			{
				dspnew = new DSP();
				dspnew.setRaw(dsprawnew);
				input = dspnew;
			}
			else
			{
				input.setRaw(dsprawnew);
			}

			if (inputconnection == null)
			{
				dspconnectionnew = new DSPConnection();
				dspconnectionnew.setRaw(dspconnectionraw);
				inputconnection = dspconnectionnew;
			}
			else
			{
				inputconnection.setRaw(dspconnectionraw);
			}

			return result; 
		}
예제 #2
0
		public RESULT getDSPHead            (ref DSP dsp)
		{
			RESULT result      = RESULT.OK;
			IntPtr dspraw      = new IntPtr();
			DSP    dspnew      = null;

			try
			{
				result = FMOD_Channel_GetDSPHead(channelraw, ref dspraw);
			}
			catch
			{
				result = RESULT.ERR_INVALID_PARAM;
			}
			if (result != RESULT.OK)
			{
				return result;
			}

			dspnew = new DSP();
			dspnew.setRaw(dspraw);
			dsp = dspnew;

			return result; 
		}
예제 #3
0
파일: System.cs 프로젝트: HaKDMoDz/InVision
		public RESULT createDSPByType          (DSP_TYPE type, ref DSP dsp)
		{
			RESULT result = RESULT.OK;
			IntPtr dspraw = new IntPtr();
			DSP    dspnew = null;

			try
			{
				result = FMOD_System_CreateDSPByType(systemraw, type, ref dspraw);
			}
			catch
			{
				result = RESULT.ERR_INVALID_PARAM;
			}
			if (result != RESULT.OK)
			{
				return result;
			}

			if (dsp == null)
			{
				dspnew = new DSP();
				dspnew.setRaw(dspraw);
				dsp = dspnew;
			}
			else
			{
				dsp.setRaw(dspraw);
			}
                             
			return result;  
		}
예제 #4
0
파일: System.cs 프로젝트: HaKDMoDz/InVision
		// System level DSP access.
		public RESULT getDSPHead             (ref DSP dsp)
		{
			RESULT result   = RESULT.OK;
			IntPtr dspraw   = new IntPtr();
			DSP    dspnew   = null;

			try
			{
				result = FMOD_System_GetDSPHead(systemraw, ref dspraw);
			}
			catch
			{
				result = RESULT.ERR_INVALID_PARAM;
			}
			if (result != RESULT.OK)
			{
				return result;
			}

			if (dsp == null)
			{
				dspnew = new DSP();
				dspnew.setRaw(dspraw);
				dsp = dspnew;
			}
			else
			{
				dsp.setRaw(dspraw);
			}

			return result;
		}
예제 #5
0
파일: System.cs 프로젝트: HaKDMoDz/InVision
		public RESULT createDSP              (ref DSP_DESCRIPTION description, ref DSP dsp)
		{
			RESULT result = RESULT.OK;
			IntPtr dspraw = new IntPtr();
			DSP    dspnew = null;

			try
			{
				result = FMOD_System_CreateDSP(systemraw, ref description, ref dspraw);
			}
			catch
			{
				result = RESULT.ERR_INVALID_PARAM;
			}
			if (result != RESULT.OK)
			{
				return result;
			}

			if (dsp == null)
			{
				dspnew = new DSP();
				dspnew.setRaw(dspraw);
				dsp = dspnew;
			}
			else
			{
				dsp.setRaw(dspraw);
			}
                             
			return result;  
		}