serenity/Userland/aplay.cpp
Robin Burchell 2177594c96 Port LibGUI to use CIPCClientSideConnection
As a consequence, move to use an explicit handshake() method rather than
calling virtuals from the constructor. This seemed to not bother
AClientConnection, but LibGUI crashes (rightfully) because of it.
2019-07-17 20:16:44 +02:00

30 lines
723 B
C++

#include <LibCore/CEventLoop.h>
#include <LibAudio/AWavLoader.h>
#include <LibAudio/AClientConnection.h>
#include <LibAudio/ABuffer.h>
#include <cstdio>
int main(int argc, char **argv)
{
CEventLoop loop;
if (argc < 2) {
fprintf(stderr, "Need a WAV to play\n");
return 1;
}
printf("Establishing connection\n");
AClientConnection a_conn;
a_conn.handshake();
printf("Established connection\n");
AWavLoader loader;
const auto& buffer = loader.load_wav(argv[1]);
if (!buffer) {
dbgprintf("Can't parse WAV: %s\n", loader.error_string());
return 1;
}
printf("Playing WAV\n");
a_conn.play(*buffer);
printf("Exiting! :)\n");
return 0;
}