Playing an .WAV file with (or without) Direct X

Weegee

Go Weegee!
Reaction score
102
Sup TH, I've been recently learning how to program in WINDOWS API and i've been having fun making menus, dialog boxes, etc. Recently, I've tried to put these skills to the test and make an application that opens up a song, plays it, then when it finishes, it allows the user to open up another song. Currently, I'm having troubles getting to the "playing" part as I cannot seem to find any documentation on how to do this >_>. I'm still a noob so don't expect me to be perfect in my coding ;D

Here's my main.cpp:
Code:
#include <Windows.h>
#include "resource.h"
 
const char g_szClassName[] = "myWindowClass";
char szFileName[MAX_PATH] = "";
// Step 4: the Window Procedure
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    // Creating OPEN FILE Dialog
    OPENFILENAME ofn;
 
    ZeroMemory(&ofn, sizeof(ofn));
 
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = hwnd;
    ofn.lpstrFilter = "WAVE Files (*.wav)\0*.wav\0All Files (*.*)\0*.*\0";
    ofn.lpstrFile = szFileName;
    ofn.nMaxFile = MAX_PATH;
    ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
    ofn.lpstrDefExt = "wav";
 
    switch(msg)
    {
    case WM_CREATE:
        {
            HMENU hMenu, hSubMenu;
 
            hMenu = CreateMenu();
 
            hSubMenu = CreatePopupMenu();
            AppendMenu (hSubMenu, MF_STRING, ID_FILE_EXIT, "E&xit");
            AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, "&File");
 
            hSubMenu = CreatePopupMenu();
            AppendMenu(hSubMenu, MF_STRING, ID_LOAD_MUSIC, "&Load");
            AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, "&Music");
 
            hSubMenu = CreatePopupMenu();
            AppendMenu(hSubMenu, MF_STRING, ID_HELP_ABOUT, "&Help");
            AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, "&About");
 
            SetMenu(hwnd, hMenu);
        }
    case WM_COMMAND:
        switch(LOWORD(wParam))
        {
            case ID_FILE_EXIT:
                PostMessage(hwnd, WM_CLOSE, 0, 0);
                break;
            case ID_LOAD_MUSIC:
                if (GetOpenFileName(&ofn))
                {
                     //
                    // Want to play the song here
                   //
                }
                break;
        }
        case WM_LBUTTONDOWN:
            {
            }
 
        break;
        case WM_CLOSE:
            DestroyWindow(hwnd);
        break;
        case WM_DESTROY:
            PostQuitMessage(0);
        break;
        default:
            return DefWindowProc(hwnd, msg, wParam, lParam);
    }
    return 0;
}
 
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow)
{
    WNDCLASSEX wc;
    HWND hwnd;
    MSG Msg;
 
    //Step 1: Registering the Window Class
    wc.cbSize        = sizeof(WNDCLASSEX);
    wc.style        = 0;
    wc.lpfnWndProc  = WndProc;
    wc.cbClsExtra    = 0;
    wc.cbWndExtra    = 0;
    wc.hInstance    = hInstance;
    wc.hIcon        = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON));
    wc.hCursor      = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
    wc.lpszMenuName  = MAKEINTRESOURCE(IDR_MYMENU);
    wc.lpszClassName = g_szClassName;
    wc.hIconSm        = (HICON)LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON), IMAGE_ICON, 16, 16, 0);
 
    if(!RegisterClassEx(&wc))
    {
        MessageBox(NULL, "Window Registration Failed!", "Error!",
            MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }
 
    // Step 2: Creating the Window
    hwnd = CreateWindowEx(
        WS_EX_CLIENTEDGE,
        g_szClassName,
        "Happy Fun Times",
        WS_OVERLAPPEDWINDOW,
        CW_USEDEFAULT, CW_USEDEFAULT, 240, 120,
        NULL, NULL, hInstance, NULL);
 
    if(hwnd == NULL)
    {
        MessageBox(NULL, "Window Creation Failed!", "Error!",
            MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }
 
    ShowWindow(hwnd, nCmdShow);
    UpdateWindow(hwnd);
 
    // Step 3: The Message Loop
    while(GetMessage(&Msg, NULL, 0, 0) > 0)
    {
        TranslateMessage(&Msg);
        DispatchMessage(&Msg);
    }
    return Msg.wParam;
}

The code where I open the file has comments below saying "Want to play song here". It's closer to the top. Anywyas, hopefully I provided enough information. I know this is kind of vauge but I can't find any tutorials online so my explanation of what I want to do is to be expected to be pretty vaugue :p. +Rep inbound :D!
 
BUMP :O

Are bumps even allowed on these forums anymore xD?

Does anyone know how to play the song with the location to the file that is obtained D:?

Edit: It seems playsound is useless when playing .wav files

Or any streamed audio in that case. Any suggestions TH.net? I Figured out how to find the correct path to the file but playsound doesn't do anything with it..
 
I don't know much about the Win API to play any sound files, but this one works fine for me:

Code:
PlaySound(TEXT("filename.wav"), NULL, SND_FILENAME);

People say it might have problems playing larger wav files (1+ MB).
 
I don't know much about the Win API to play any sound files, but this one works fine for me:

Code:
PlaySound(TEXT("filename.wav"), NULL, SND_FILENAME);

People say it might have problems playing larger wav files (1+ MB).

Thank you, the 1 mb rule wasn't being followed in my past attempts but when i used a smaller wave file it worked perfectly.

Now the question is, what are my options for playing a larger WAVE file? (+rep btw)

Edit: R.I.P. +Rep QQ
 
Well, you'd be best off using an audio library. Working with sound files yourself can be quite nasty.
A quick googling turns up http://www.portaudio.com/ but there are a lot of free audio libraries. I don't know which ones are easy to use, or best to use. Haven't done much with sounds yet.
 
Try obtaining DirectMusic, from Microsoft. They still have it up there for April 2007.

You need to send a message containing a byte buffer read from a WAV file. I think it sort of works with MIDI. I have a few source codes I can dig up, but they use MFC (using C++) instead of pure WinAPI in C.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good
  • The Helper The Helper:
    I would like to see it again like Ghan had it the first time with pagination though - without the pagination that view will not work but with pagination it just might...
  • The Helper The Helper:
    This drink recipe I have had more than a few times back in the day! Mind Eraser https://www.thehelper.net/threads/cocktail-mind-eraser.194720/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top