473,799 Members | 3,290 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 1906
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
7143
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 appreciated! Thanks in advance,
1
9344
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 not work for me. Maybe it would be best to try to play a small mp3 or wav file instead - does VB 6.0 have built-in support for sounds like that? Tom
1
2871
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 seperate file in a specific directory, but instead 'integrate' it in my application? Thanks peter
7
6462
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? Thanks in advance. -Lee
1
3746
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, AudioPlayMode.Background) Case 2 : My.Computer.Audio.Play(My.Resources.Sounds.DoorOpen, AudioPlayMode.Background) Case 3 : My.Computer.Audio.Play(My.Resources.Sounds.DoorSlam, AudioPlayMode.Background)
4
4613
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
2982
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 entry. The data is being put into a text box, and a Return is sent after the data. I use the keypress event to capture the Return, and save the data. Then, I play the system sound, clear the text box, and set the focus back to the text box for the...
5
11138
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
7841
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: myPlayer.Play() and myPlayer.Stop() methods which works great, but i want to know when the sound actually stops playing (so I can change my button's picture). If I raise a custom event after the myPlayer.Play()
0
9687
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10484
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10228
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9072
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7565
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4141
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2938
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.