Differenze tra le versioni di "Generare un'onda sinusoidale con il componente gb.openal"
Da Gambas-it.org - Wikipedia.
Riga 29: | Riga 29: | ||
buffer = Al.GenBuffers(1) | buffer = Al.GenBuffers(1) | ||
− | + | Onda(dati) | |
Formato_audio = 4352 | Formato_audio = 4352 | ||
Riga 54: | Riga 54: | ||
− | '''Private''' Function | + | '''Private''' Function Onda(bb As Byte[]) <FONT Color=gray>' ''Crea i dati dell'onda sonora''</font> |
Dim i As Integer | Dim i As Integer |
Versione delle 14:49, 28 mar 2018
Utilizzando le risorse della Classe " Alc " del Componente gb.openal di Gambas, è possibile eseguire un'onda sinusoidale, i cui dati saranno realizzati mediante appsota formula matematica.
Vediamo un esempio pratico:
Private Const AMPIEZZA As Byte = 127 Private Const FREQUENZA As Short = 880 Private Const CAMPIONAMENTO As Integer = 44100 Private Const DURATA As Single = 4.0 Public Sub Main() Dim disp As AlcDevice Dim cont As AlcContext Dim src, buffer As Integer[] Dim err As Boolean Dim Formato_audio As Integer Dim dati As New Byte[] ' Configura il dispositivo e il contesto audio con la Clsase "Alc": disp = Alc.OpenDevice(Null) cont = Alc.CreateContext(disp) err = cont.MakeCurrent() If err = False Then Error.Raise("Impossibile creare il contesto audio !") src = Al.GenSources(1) ' Configura il buffer audio: buffer = Al.GenBuffers(1) Onda(dati) Formato_audio = 4352 ' I dati audio sono caricati nel buffer audio: Al.BufferData(buffer[0], Formato_audio, dati.Data, dati.Count, CAMPIONAMENTO) ' Connette il buffer audio al sorgente audio: Al.Sourcei(src[0], Al.BUFFER, buffer[0]) ' Esegue il sorgente audio: Al.SourcePlay(src[0]) ' Consente l'esecuzione per l'intera durata dell'onda sonora: Sleep DURATA ' Libera la memoria: Al.DeleteBuffers(buffer) Al.DeleteSources(src) Alc.DestroyContext(cont) Alc.CloseDevice(disp) End Private Function Onda(bb As Byte[]) ' Crea i dati dell'onda sonora Dim i As Integer For i = 0 To (DURATA * 2 * CAMPIONAMENTO) - 1 bb.Push(CByte(128 + AMPIEZZA * Sin(CFloat(i / CAMPIONAMENTO * FREQUENZA * (2 * Pi))))) Next End