Logging: New messages will not replace old messages anymore when window is opened
OpenAL: Corrected some comments
This commit is contained in:
parent
658bf188cc
commit
48413a76e7
|
@ -237,9 +237,10 @@ BOOL Logging::OnInitDialog()
|
||||||
|
|
||||||
void Logging::log(const char *s)
|
void Logging::log(const char *s)
|
||||||
{
|
{
|
||||||
DWORD size = (DWORD)::SendMessage(m_log, WM_GETTEXTLENGTH, 0, 0);
|
CString text;
|
||||||
m_log.SetSel(size, size);
|
m_log.GetWindowText( text );
|
||||||
m_log.ReplaceSel(s);
|
text.Insert( 0, s );
|
||||||
|
m_log.SetWindowText( text );
|
||||||
}
|
}
|
||||||
|
|
||||||
void Logging::OnClose()
|
void Logging::OnClose()
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#ifndef LOGALL
|
#ifndef LOGALL
|
||||||
|
// replace logging functions with comments
|
||||||
#define winlog //
|
#define winlog //
|
||||||
#define debugState() //
|
#define debugState() //
|
||||||
#endif
|
#endif
|
||||||
|
@ -53,11 +54,11 @@ public:
|
||||||
OpenAL();
|
OpenAL();
|
||||||
virtual ~OpenAL();
|
virtual ~OpenAL();
|
||||||
|
|
||||||
bool init(); // initialize the primary and secondary sound buffer
|
bool init(); // initialize the sound buffer queue
|
||||||
void pause(); // pause the secondary sound buffer
|
void pause(); // pause the secondary sound buffer
|
||||||
void reset(); // stop and reset the secondary sound buffer
|
void reset(); // stop and reset the secondary sound buffer
|
||||||
void resume(); // resume the secondary sound buffer
|
void resume(); // play/resume the secondary sound buffer
|
||||||
void write(); // write the emulated sound to the secondary sound buffer
|
void write(); // write the emulated sound to a sound buffer
|
||||||
|
|
||||||
private:
|
private:
|
||||||
OPENALFNTABLE ALFunction;
|
OPENALFNTABLE ALFunction;
|
||||||
|
@ -189,6 +190,7 @@ bool OpenAL::init()
|
||||||
assert( AL_NO_ERROR == ALFunction.alGetError() );
|
assert( AL_NO_ERROR == ALFunction.alGetError() );
|
||||||
|
|
||||||
freq = 44100 / soundQuality;
|
freq = 44100 / soundQuality;
|
||||||
|
|
||||||
// calculate the number of samples per frame first
|
// calculate the number of samples per frame first
|
||||||
// then multiply it with the size of a sample frame (16 bit * stereo)
|
// then multiply it with the size of a sample frame (16 bit * stereo)
|
||||||
soundBufferLen = ( freq / 60 ) * 4;
|
soundBufferLen = ( freq / 60 ) * 4;
|
||||||
|
@ -270,7 +272,8 @@ void OpenAL::write()
|
||||||
// ==initial buffer filling==
|
// ==initial buffer filling==
|
||||||
winlog( " initial buffer filling\n" );
|
winlog( " initial buffer filling\n" );
|
||||||
for( int i = 0 ; i < theApp.oalBufferCount ; i++ ) {
|
for( int i = 0 ; i < theApp.oalBufferCount ; i++ ) {
|
||||||
// filling the buffers explicitly with silence would be cleaner...
|
// Filling the buffers explicitly with silence would be cleaner,
|
||||||
|
// but the very first sample is usually silence anyway.
|
||||||
ALFunction.alBufferData( buffer[i], AL_FORMAT_STEREO16, soundFinalWave, soundBufferLen, freq );
|
ALFunction.alBufferData( buffer[i], AL_FORMAT_STEREO16, soundFinalWave, soundBufferLen, freq );
|
||||||
assert( AL_NO_ERROR == ALFunction.alGetError() );
|
assert( AL_NO_ERROR == ALFunction.alGetError() );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue