本文整理汇总了C#中FMOD.Sound类的典型用法代码示例。如果您正苦于以下问题:C# Sound类的具体用法?C# Sound怎么用?C# Sound使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Sound类属于FMOD命名空间,在下文中一共展示了Sound类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Sound
internal Sound(FMOD.Sound sound, string file, string name, float volume = 1.0f)
{
_sound = sound;
_file = file;
_name = name;
_volume = volume;
}
示例2: createStream
public RESULT createStream(byte[] data, MODE mode, ref CREATESOUNDEXINFO exinfo, ref Sound sound)
{
RESULT result = RESULT.OK;
IntPtr soundraw = new IntPtr();
Sound soundnew = null;
try
{
result = FMOD_System_CreateStream(systemraw, data, mode, ref exinfo, ref soundraw);
}
catch
{
result = RESULT.ERR_INVALID_PARAM;
}
if (result != RESULT.OK)
{
return result;
}
if (sound == null)
{
soundnew = new Sound();
soundnew.setRaw(soundraw);
sound = soundnew;
}
else
{
sound.setRaw(soundraw);
}
return result;
}
示例3: playSound
public RESULT playSound(CHANNELINDEX channelid, Sound sound, bool paused, ref Channel channel)
{
RESULT result = RESULT.OK;
IntPtr channelraw;
Channel channelnew = null;
if (channel != null)
{
channelraw = channel.getRaw();
}
else
{
channelraw = new IntPtr();
}
try
{
result = FMOD_System_PlaySound(systemraw, channelid, sound.getRaw(), (paused ? 1 : 0), ref channelraw);
}
catch
{
result = RESULT.ERR_INVALID_PARAM;
}
if (result != RESULT.OK)
{
return result;
}
if (channel == null)
{
channelnew = new Channel();
channelnew.setRaw(channelraw);
channel = channelnew;
}
else
{
channel.setRaw(channelraw);
}
return result;
}
示例4: FMOD_SoundGroup_GetSound
public RESULT getSound (int index, out Sound sound)
{
sound = null;
IntPtr soundraw;
RESULT result = FMOD_SoundGroup_GetSound(rawPtr, index, out soundraw);
sound = new Sound(soundraw);
return result;
}
示例5: setSubSound
public RESULT setSubSound(int index, Sound subsound)
{
IntPtr subsoundraw = subsound.getRaw();
return FMOD_Sound_SetSubSound(soundraw, index, subsoundraw);
}
示例6: FMOD_System_RecordStart
public RESULT recordStart (int id, Sound sound, bool loop)
{
return FMOD_System_RecordStart(rawPtr, id, sound.getRaw(), loop);
}
示例7: getSubSoundParent
public RESULT getSubSoundParent(out Sound parentsound)
{
parentsound = null;
IntPtr subsoundraw;
RESULT result = FMOD_Sound_GetSubSoundParent(rawPtr, out subsoundraw);
parentsound = new Sound(subsoundraw);
return result;
}
示例8: createSound
// Sound/DSP/Channel creation and retrieval.
public RESULT createSound(string name_or_data, MODE mode, ref CREATESOUNDEXINFO exinfo, ref Sound sound)
{
var result = RESULT.OK;
var soundraw = new IntPtr();
Sound soundnew = null;
mode = mode | MODE.UNICODE;
try
{
result = FMOD_System_CreateSound(systemraw, name_or_data, mode, ref exinfo, ref soundraw);
}
catch
{
result = RESULT.ERR_INVALID_PARAM;
}
if (result != RESULT.OK)
{
return result;
}
if (sound == null)
{
soundnew = new Sound();
soundnew.setRaw(soundraw);
sound = soundnew;
}
else
{
sound.setRaw(soundraw);
}
return result;
}
示例9: preloadFSB
// Pre-loading FSB files (from disk or from memory, use FMOD_OPENMEMORY_POINT to point to pre-loaded memory).
public RESULT preloadFSB(string filename, int streaminstance, Sound sound)
{
return FMOD_EventSystem_PreloadFSB(eventsystemraw, filename, streaminstance, sound.getRaw());
}
示例10: GetSoundName
private string GetSoundName(Sound sound)
{
StringBuilder sb = new StringBuilder(256);
sound.getName(sb, sb.Capacity);
return sb.ToString().Trim();
}
示例11: getSubSound
public RESULT getSubSound(int index, ref Sound subsound)
{
var result = RESULT.OK;
var subsoundraw = new IntPtr();
Sound subsoundnew = null;
try
{
result = FMOD_Sound_GetSubSound(soundraw, index, ref subsoundraw);
}
catch
{
result = RESULT.ERR_INVALID_PARAM;
}
if (result != RESULT.OK)
{
return result;
}
if (subsound == null)
{
subsoundnew = new Sound();
subsoundnew.setRaw(subsoundraw);
subsound = subsoundnew;
}
else
{
subsound.setRaw(subsoundraw);
}
return result;
}
示例12: SoundChannel
public SoundChannel(Sound sound)
{
m_fadeTimer = new System.Timers.Timer(FADE_TIMER_INTERVAL);
m_fadeTimer.Elapsed += new ElapsedEventHandler(fadeTimer_Elapsed);
this.Sound = sound;
}
示例13: GetSoundName
private string GetSoundName(Sound sound)
{
StringBuilder name = new StringBuilder(0x100);
sound.getName(name, name.Capacity);
return name.ToString().Trim();
}
示例14: createStream
public RESULT createStream (string name, MODE mode, out Sound sound)
{
CREATESOUNDEXINFO exinfo = new CREATESOUNDEXINFO();
exinfo.cbsize = Marshal.SizeOf(exinfo);
return createStream(name, mode, ref exinfo, out sound);
}
示例15: recordStart
public RESULT recordStart(Sound sound, bool loop)
{
return FMOD_System_RecordStart(systemraw, sound.getRaw(), loop);
}