473,498 Members | 1,785 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Playing a sound and dealing with a keystroke

10 New Member
Hello all,

I'm currently writing a 3D Game demo and i'm having trouble getting the program to play a sound and deal with a keystroke at the same time.

If a sound is playing the program will wait for the sound to finish before dealing with a user input, this is obviously no good if I want music playing through out i've tried finding examples of how to do this but have had no luck, can anyone help???

Thanks in advance
Oct 26 '07 #1
3 1885
weaknessforcats
9,208 Recognized Expert Moderator Expert
Use multithreading. Your sound should be on a worker thread allowing the mainline to conunue while the sound is playing.
Oct 27 '07 #2
thenath24
10 New Member
Use multithreading. Your sound should be on a worker thread allowing the mainline to conunue while the sound is playing.
Hi there,

Thanks for the tip, having read into multithreading on the MSDN library I tried to implement a simple example given in my program.

While it didn't give me any errors, it also didn't work, have I missed something?;


Expand|Select|Wrap|Line Numbers
  1. //code that I want to generate a sound
  2. case VK_SPACE:
  3.                     unsigned long iID;
  4.                     hThread = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)PlaySound,NULL,0,&iID);
  5.                     CloseHandle(hThread);
  6.                 break;
  7.  
Expand|Select|Wrap|Line Numbers
  1. //function I want to be called when the new thread is created
  2. void PlaySound(long lParam)
  3. {
  4.     PlaySound("GUN01.WAV",NULL,SND_NODEFAULT);
  5. }
Oct 29 '07 #3
weaknessforcats
9,208 Recognized Expert Moderator Expert
The function argument in CreateThread for the address of your PlaySound function has to be a ThreadProc (you might look that up).

A ThreadProc can be any function that has this form:
Expand|Select|Wrap|Line Numbers
  1. DWORD WINAPI ThreadProc(LPVOID);
  2.  
So, you have to write a funtion like:
Expand|Select|Wrap|Line Numbers
  1. DWORD WINAPI theNath24(LPVOID arg)
  2. {
  3.     //use arg to point to a struct whose member contain
  4.     //the arguments for PlaySound()
  5.     //Fish out the arguments.
  6.     //You call PlaySound() here
  7. }
  8.  
Then you make your CreateThread call:
Expand|Select|Wrap|Line Numbers
  1. struct Parms
  2. {
  3. //Put your arguments in here as members
  4. };
  5. Parms* args = new Parms;
  6. //Load args members with the values for PlaySound()
  7. //
  8. hThread = CreateThread(NULL,0, theNath,args,0,&iID);
  9. //
  10. //off you go.
  11.  
Oct 30 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
7098
by: Brian Basquille | last post by:
Hello all, What is the syntax for simply playing a WAV file in your program? Am learning VB and have two VB books but don't wanna root through them to find the code. Any help would be much...
1
9251
by: Kiteman \(Canada\) | last post by:
Instead of a beep sound playing as an alarm or reminder I would like to be able to play a more interesting sound. On the web, I found and tried a sound routine that uses the SOUND.DRV but it does...
1
2809
by: Peter Schmitz | last post by:
Hi, I'm just trying to play a *.wav file, making use of the unmanaged function "sndPlaySoundA" in winmm.dll, but I still got one question: How can I avoid, that the sound file itself has to be...
7
6414
by: Lee Moody | last post by:
I just want quick and easy way to play a .wav file out the standard sound device. It could even be as simple as activating a sound assigned to an existing windows sound event. Any suggestions?...
1
3730
by: Terry Olsen | last post by:
Using the following routine to play embedded wav files: Private Sub PlaySound(ByVal Sound As Int32) Select Case Sound Case 1 : My.Computer.Audio.Play(My.Resources.Sounds.GoOnline,...
4
4587
by: fAnSKyer/C# newbie | last post by:
I am using winmm.dll and I found that I can't just suspend it and resume it? What should I do? Any better idea? Should I use thread? and thread.suspend will work? Thanks
6
2964
by: =?Utf-8?B?VmVybm9uIFBlcHBlcnM=?= | last post by:
I have an application that is designed for using with a bar code scanner. I want the user to know that the scan was complete and the data was entered, so I am playing a system sound after data...
5
11037
by: gazza67 | last post by:
Hi, Does anyone know how to check for when a sound has finished playing? I am currently using the SoundPlayer, there doesnt seem to be any event for this - am I missing something? Gary
3
7723
by: Jack | last post by:
Hi, I'm writing a simple wav player (like winamp) and using the SoundPlayer class in c# 2005. Using winform buttons, I can begin playing the sound and stop half-way through the sound using:...
0
7121
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6993
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7162
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6881
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5456
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4899
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
1
650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
287
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.