2023-04-02 05:29:30 +03:00
|
|
|
/*
|
2024-01-02 00:15:26 +03:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2023-04-02 05:29:30 +03:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
#include <SDL3/SDL_main.h>
|
|
|
|
#include <SDL3/SDL_test.h>
|
2023-07-31 06:00:52 +03:00
|
|
|
#include "testutils.h"
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2024-01-24 04:40:51 +03:00
|
|
|
#ifdef SDL_PLATFORM_EMSCRIPTEN
|
2023-08-09 19:56:06 +03:00
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define SLIDER_WIDTH_PERC 500.f / 600.f
|
2023-08-31 23:13:45 +03:00
|
|
|
#define SLIDER_HEIGHT_PERC 70.f / 480.f
|
2023-08-09 19:56:06 +03:00
|
|
|
|
|
|
|
static int done;
|
|
|
|
static SDLTest_CommonState *state;
|
|
|
|
|
|
|
|
static SDL_AudioSpec spec;
|
|
|
|
static SDL_AudioStream *stream;
|
|
|
|
static Uint8 *audio_buf = NULL;
|
|
|
|
static Uint32 audio_len = 0;
|
|
|
|
|
2024-09-18 17:52:28 +03:00
|
|
|
static bool auto_loop = true;
|
|
|
|
static bool auto_flush = false;
|
2023-08-31 23:13:45 +03:00
|
|
|
|
|
|
|
static Uint64 last_get_callback = 0;
|
2023-09-06 20:38:01 +03:00
|
|
|
static int last_get_amount_additional = 0;
|
|
|
|
static int last_get_amount_total = 0;
|
2023-08-31 23:13:45 +03:00
|
|
|
|
|
|
|
typedef struct Slider
|
|
|
|
{
|
|
|
|
SDL_FRect area;
|
2024-09-18 17:52:28 +03:00
|
|
|
bool changed;
|
2023-08-31 23:13:45 +03:00
|
|
|
char fmtlabel[64];
|
|
|
|
float pos;
|
2023-09-06 20:38:01 +03:00
|
|
|
int flags;
|
2023-08-31 23:13:45 +03:00
|
|
|
float min;
|
|
|
|
float mid;
|
|
|
|
float max;
|
|
|
|
float value;
|
|
|
|
} Slider;
|
|
|
|
|
|
|
|
#define NUM_SLIDERS 3
|
|
|
|
Slider sliders[NUM_SLIDERS];
|
|
|
|
static int active_slider = -1;
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
static void init_slider(int index, const char* fmtlabel, int flags, float value, float min, float max)
|
2023-08-31 23:13:45 +03:00
|
|
|
{
|
|
|
|
Slider* slider = &sliders[index];
|
|
|
|
|
|
|
|
slider->area.x = state->window_w * (1.f - SLIDER_WIDTH_PERC) / 2;
|
|
|
|
slider->area.y = state->window_h * (0.2f + (index * SLIDER_HEIGHT_PERC * 1.4f));
|
|
|
|
slider->area.w = SLIDER_WIDTH_PERC * state->window_w;
|
|
|
|
slider->area.h = SLIDER_HEIGHT_PERC * state->window_h;
|
2024-09-18 17:52:28 +03:00
|
|
|
slider->changed = true;
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_strlcpy(slider->fmtlabel, fmtlabel, SDL_arraysize(slider->fmtlabel));
|
2023-09-06 20:38:01 +03:00
|
|
|
slider->flags = flags;
|
2023-08-31 23:13:45 +03:00
|
|
|
slider->min = min;
|
|
|
|
slider->max = max;
|
|
|
|
slider->value = value;
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
if (slider->flags & 1) {
|
2023-08-31 23:13:45 +03:00
|
|
|
slider->pos = (value - slider->min + 0.5f) / (slider->max - slider->min + 1.0f);
|
|
|
|
} else {
|
|
|
|
slider->pos = 0.5f;
|
|
|
|
slider->mid = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static float lerp(float v0, float v1, float t)
|
|
|
|
{
|
|
|
|
return (1 - t) * v0 + t * v1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_text(SDL_Renderer* renderer, int x, int y, const char* text)
|
|
|
|
{
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xFD, 0xF6, 0xE3, 0xFF);
|
|
|
|
SDLTest_DrawString(renderer, (float) x, (float) y, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_textf(SDL_Renderer* renderer, int x, int y, const char* fmt, ...)
|
|
|
|
{
|
|
|
|
char text[256];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
SDL_vsnprintf(text, SDL_arraysize(text), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
draw_text(renderer, x, y, text);
|
|
|
|
}
|
|
|
|
|
2024-07-17 21:09:32 +03:00
|
|
|
static void queue_audio(void)
|
2023-08-31 23:13:45 +03:00
|
|
|
{
|
|
|
|
Uint8* new_data = NULL;
|
|
|
|
int new_len = 0;
|
2024-09-18 17:52:28 +03:00
|
|
|
bool result = true;
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_AudioSpec new_spec;
|
|
|
|
|
2024-07-03 10:19:00 +03:00
|
|
|
SDL_zero(new_spec);
|
2023-08-31 23:13:45 +03:00
|
|
|
new_spec.format = spec.format;
|
|
|
|
new_spec.channels = (int) sliders[2].value;
|
|
|
|
new_spec.freq = (int) sliders[1].value;
|
|
|
|
|
|
|
|
SDL_Log("Converting audio from %i to %i", spec.freq, new_spec.freq);
|
|
|
|
|
2024-04-04 21:22:29 +03:00
|
|
|
/* You shouldn't actually use SDL_ConvertAudioSamples like this (just put the data straight into the stream and let it handle conversion) */
|
2024-08-23 03:33:49 +03:00
|
|
|
result = result && SDL_ConvertAudioSamples(&spec, audio_buf, audio_len, &new_spec, &new_data, &new_len);
|
|
|
|
result = result && SDL_SetAudioStreamFormat(stream, &new_spec, NULL);
|
|
|
|
result = result && SDL_PutAudioStreamData(stream, new_data, new_len);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
|
|
|
if (auto_flush) {
|
2024-08-23 03:33:49 +03:00
|
|
|
result = result && SDL_FlushAudioStream(stream);
|
2023-08-31 23:13:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_free(new_data);
|
|
|
|
|
2024-08-23 03:33:49 +03:00
|
|
|
if (result) {
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_Log("Queued audio");
|
2024-08-23 03:33:49 +03:00
|
|
|
} else {
|
|
|
|
SDL_Log("Failed to queue audio: %s", SDL_GetError());
|
2023-08-31 23:13:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void skip_audio(float amount)
|
|
|
|
{
|
|
|
|
float speed;
|
2024-03-26 19:05:15 +03:00
|
|
|
SDL_AudioSpec dst_spec;
|
|
|
|
int num_bytes;
|
2024-08-23 03:33:49 +03:00
|
|
|
int result = 0;
|
2023-08-31 23:13:45 +03:00
|
|
|
void* buf = NULL;
|
|
|
|
|
|
|
|
SDL_LockAudioStream(stream);
|
|
|
|
|
2023-09-03 21:37:57 +03:00
|
|
|
speed = SDL_GetAudioStreamFrequencyRatio(stream);
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_GetAudioStreamFormat(stream, NULL, &dst_spec);
|
|
|
|
|
2023-09-03 21:37:57 +03:00
|
|
|
SDL_SetAudioStreamFrequencyRatio(stream, 100.0f);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
2024-03-26 19:05:15 +03:00
|
|
|
num_bytes = (int)(SDL_AUDIO_FRAMESIZE(dst_spec) * dst_spec.freq * ((speed * amount) / 100.0f));
|
|
|
|
buf = SDL_malloc(num_bytes);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
2023-11-10 00:29:15 +03:00
|
|
|
if (buf) {
|
2024-08-23 03:33:49 +03:00
|
|
|
result = SDL_GetAudioStreamData(stream, buf, num_bytes);
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_free(buf);
|
|
|
|
}
|
|
|
|
|
2023-09-03 21:37:57 +03:00
|
|
|
SDL_SetAudioStreamFrequencyRatio(stream, speed);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
|
|
|
SDL_UnlockAudioStream(stream);
|
|
|
|
|
2024-08-23 03:33:49 +03:00
|
|
|
if (result >= 0) {
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_Log("Skipped %.2f seconds", amount);
|
|
|
|
} else {
|
|
|
|
SDL_Log("Failed to skip: %s", SDL_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *AudioChansToStr(const int channels)
|
|
|
|
{
|
|
|
|
switch (channels) {
|
|
|
|
case 1: return "Mono";
|
|
|
|
case 2: return "Stereo";
|
|
|
|
case 3: return "2.1";
|
|
|
|
case 4: return "Quad";
|
|
|
|
case 5: return "4.1";
|
|
|
|
case 6: return "5.1";
|
|
|
|
case 7: return "6.1";
|
|
|
|
case 8: return "7.1";
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return "?";
|
|
|
|
}
|
|
|
|
|
2024-09-19 18:47:22 +03:00
|
|
|
static void scale_mouse_coords(SDL_FPoint *p)
|
|
|
|
{
|
|
|
|
SDL_Window *window = SDL_GetMouseFocus();
|
|
|
|
if (window) {
|
|
|
|
int w, p_w;
|
|
|
|
float scale;
|
|
|
|
SDL_GetWindowSize(window, &w, NULL);
|
|
|
|
SDL_GetWindowSizeInPixels(window, &p_w, NULL);
|
|
|
|
scale = (float)p_w / (float)w;
|
|
|
|
p->x *= scale;
|
|
|
|
p->y *= scale;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
static void loop(void)
|
2023-04-02 05:29:30 +03:00
|
|
|
{
|
2023-08-31 23:13:45 +03:00
|
|
|
int i, j;
|
2023-08-09 19:56:06 +03:00
|
|
|
SDL_Event e;
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_FPoint p;
|
|
|
|
SDL_AudioSpec src_spec, dst_spec;
|
2024-04-04 21:22:29 +03:00
|
|
|
int queued_bytes = 0;
|
2023-08-31 23:13:45 +03:00
|
|
|
int available_bytes = 0;
|
|
|
|
float available_seconds = 0;
|
2023-08-09 19:56:06 +03:00
|
|
|
|
|
|
|
while (SDL_PollEvent(&e)) {
|
|
|
|
SDLTest_CommonEvent(state, &e, &done);
|
2024-01-24 04:40:51 +03:00
|
|
|
#ifdef SDL_PLATFORM_EMSCRIPTEN
|
2023-08-09 19:56:06 +03:00
|
|
|
if (done) {
|
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
#endif
|
2023-08-31 23:13:45 +03:00
|
|
|
if (e.type == SDL_EVENT_KEY_DOWN) {
|
2024-07-01 05:58:48 +03:00
|
|
|
SDL_Keycode key = e.key.key;
|
2024-07-01 06:05:22 +03:00
|
|
|
if (key == SDLK_Q) {
|
2023-09-12 22:09:17 +03:00
|
|
|
if (SDL_AudioDevicePaused(state->audio_id)) {
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_ResumeAudioDevice(state->audio_id);
|
|
|
|
} else {
|
|
|
|
SDL_PauseAudioDevice(state->audio_id);
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
2024-07-01 06:05:22 +03:00
|
|
|
} else if (key == SDLK_W) {
|
2023-11-03 19:27:29 +03:00
|
|
|
auto_loop = !auto_loop;
|
2024-07-01 06:05:22 +03:00
|
|
|
} else if (key == SDLK_E) {
|
2023-11-03 19:27:29 +03:00
|
|
|
auto_flush = !auto_flush;
|
2024-07-01 06:05:22 +03:00
|
|
|
} else if (key == SDLK_A) {
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_ClearAudioStream(stream);
|
|
|
|
SDL_Log("Cleared audio stream");
|
2024-07-01 06:05:22 +03:00
|
|
|
} else if (key == SDLK_S) {
|
2023-08-31 23:13:45 +03:00
|
|
|
queue_audio();
|
2024-07-01 06:05:22 +03:00
|
|
|
} else if (key == SDLK_D) {
|
2023-08-31 23:13:45 +03:00
|
|
|
float amount = 1.0f;
|
2024-06-22 05:50:10 +03:00
|
|
|
amount *= (e.key.mod & SDL_KMOD_CTRL) ? 10.0f : 1.0f;
|
|
|
|
amount *= (e.key.mod & SDL_KMOD_SHIFT) ? 10.0f : 1.0f;
|
2023-08-31 23:13:45 +03:00
|
|
|
skip_audio(amount);
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
if (SDL_GetMouseState(&p.x, &p.y) & SDL_BUTTON_LMASK) {
|
2024-09-19 18:47:22 +03:00
|
|
|
scale_mouse_coords(&p);
|
2023-08-31 23:13:45 +03:00
|
|
|
if (active_slider == -1) {
|
|
|
|
for (i = 0; i < NUM_SLIDERS; ++i) {
|
|
|
|
if (SDL_PointInRectFloat(&p, &sliders[i].area)) {
|
|
|
|
active_slider = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
2023-08-31 23:13:45 +03:00
|
|
|
} else {
|
|
|
|
active_slider = -1;
|
|
|
|
}
|
2023-08-21 00:50:41 +03:00
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
if (active_slider != -1) {
|
|
|
|
Slider* slider = &sliders[active_slider];
|
|
|
|
|
|
|
|
float value = (p.x - slider->area.x) / slider->area.w;
|
|
|
|
value = SDL_clamp(value, 0.0f, 1.0f);
|
|
|
|
slider->pos = value;
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
if (slider->flags & 1) {
|
2023-08-31 23:13:45 +03:00
|
|
|
value = slider->min + (value * (slider->max - slider->min + 1.0f));
|
|
|
|
value = SDL_clamp(value, slider->min, slider->max);
|
|
|
|
} else {
|
|
|
|
value = (value * 2.0f) - 1.0f;
|
|
|
|
value = (value >= 0)
|
|
|
|
? lerp(slider->mid, slider->max, value)
|
|
|
|
: lerp(slider->mid, slider->min, -value);
|
|
|
|
}
|
2023-08-21 00:50:41 +03:00
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
if (value != slider->value) {
|
|
|
|
slider->value = value;
|
2024-09-18 17:52:28 +03:00
|
|
|
slider->changed = true;
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
2023-08-31 23:13:45 +03:00
|
|
|
}
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
if (sliders[0].changed) {
|
2024-09-18 17:52:28 +03:00
|
|
|
sliders[0].changed = false;
|
2023-09-03 21:37:57 +03:00
|
|
|
SDL_SetAudioStreamFrequencyRatio(stream, sliders[0].value);
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2024-08-23 03:33:49 +03:00
|
|
|
if (SDL_GetAudioStreamFormat(stream, &src_spec, &dst_spec)) {
|
2023-08-31 23:13:45 +03:00
|
|
|
available_bytes = SDL_GetAudioStreamAvailable(stream);
|
2023-09-04 00:07:05 +03:00
|
|
|
available_seconds = (float)available_bytes / (float)(SDL_AUDIO_FRAMESIZE(dst_spec) * dst_spec.freq);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
|
|
|
/* keep it looping. */
|
|
|
|
if (auto_loop && (available_seconds < 10.0f)) {
|
|
|
|
queue_audio();
|
|
|
|
}
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
2023-07-31 06:00:52 +03:00
|
|
|
|
2024-04-04 21:22:29 +03:00
|
|
|
queued_bytes = SDL_GetAudioStreamQueued(stream);
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
for (i = 0; i < state->num_windows; i++) {
|
2023-08-31 23:13:45 +03:00
|
|
|
int draw_y = 0;
|
|
|
|
SDL_Renderer* rend = state->renderers[i];
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(rend, 0x00, 0x2B, 0x36, 0xFF);
|
|
|
|
SDL_RenderClear(rend);
|
|
|
|
|
|
|
|
for (j = 0; j < NUM_SLIDERS; ++j) {
|
|
|
|
Slider* slider = &sliders[j];
|
|
|
|
SDL_FRect area;
|
|
|
|
|
|
|
|
SDL_copyp(&area, &slider->area);
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(rend, 0x07, 0x36, 0x42, 0xFF);
|
|
|
|
SDL_RenderFillRect(rend, &area);
|
|
|
|
|
|
|
|
area.w *= slider->pos;
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(rend, 0x58, 0x6E, 0x75, 0xFF);
|
|
|
|
SDL_RenderFillRect(rend, &area);
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
draw_textf(rend, (int)slider->area.x, (int)slider->area.y, slider->fmtlabel,
|
|
|
|
(slider->flags & 2) ? ((float)(int)slider->value) : slider->value);
|
2023-08-31 23:13:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
draw_textf(rend, 0, draw_y, "%7s, Loop: %3s, Flush: %3s",
|
2023-09-12 22:09:17 +03:00
|
|
|
SDL_AudioDevicePaused(state->audio_id) ? "Paused" : "Playing", auto_loop ? "On" : "Off", auto_flush ? "On" : "Off");
|
2023-08-31 23:13:45 +03:00
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
|
|
|
draw_textf(rend, 0, draw_y, "Available: %4.2f (%i bytes)", available_seconds, available_bytes);
|
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
2024-04-04 21:22:29 +03:00
|
|
|
draw_textf(rend, 0, draw_y, "Queued: %i bytes", queued_bytes);
|
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_LockAudioStream(stream);
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
draw_textf(rend, 0, draw_y, "Get Callback: %i/%i bytes, %2i ms ago",
|
|
|
|
last_get_amount_additional, last_get_amount_total, (int)(SDL_GetTicks() - last_get_callback));
|
2023-08-31 23:13:45 +03:00
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
|
|
|
SDL_UnlockAudioStream(stream);
|
|
|
|
|
|
|
|
draw_y = state->window_h - FONT_LINE_HEIGHT * 3;
|
|
|
|
|
|
|
|
draw_textf(rend, 0, draw_y, "Wav: %6s/%6s/%i",
|
2024-08-26 07:32:29 +03:00
|
|
|
SDL_GetAudioFormatName(spec.format), AudioChansToStr(spec.channels), spec.freq);
|
2023-08-31 23:13:45 +03:00
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
|
|
|
draw_textf(rend, 0, draw_y, "Src: %6s/%6s/%i",
|
2024-08-26 07:32:29 +03:00
|
|
|
SDL_GetAudioFormatName(src_spec.format), AudioChansToStr(src_spec.channels), src_spec.freq);
|
2023-08-31 23:13:45 +03:00
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
|
|
|
draw_textf(rend, 0, draw_y, "Dst: %6s/%6s/%i",
|
2024-08-26 07:32:29 +03:00
|
|
|
SDL_GetAudioFormatName(dst_spec.format), AudioChansToStr(dst_spec.channels), dst_spec.freq);
|
2023-08-31 23:13:45 +03:00
|
|
|
draw_y += FONT_LINE_HEIGHT;
|
|
|
|
|
|
|
|
SDL_RenderPresent(rend);
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-06 20:38:01 +03:00
|
|
|
static void SDLCALL our_get_callback(void *userdata, SDL_AudioStream *strm, int additional_amount, int total_amount)
|
2023-08-31 23:13:45 +03:00
|
|
|
{
|
|
|
|
last_get_callback = SDL_GetTicks();
|
2023-09-06 20:38:01 +03:00
|
|
|
last_get_amount_additional = additional_amount;
|
|
|
|
last_get_amount_total = total_amount;
|
2023-08-31 23:13:45 +03:00
|
|
|
}
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char *filename = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, SDL_INIT_AUDIO | SDL_INIT_VIDEO);
|
2023-11-10 00:29:15 +03:00
|
|
|
if (!state) {
|
2023-07-31 06:00:52 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
/* Parse commandline */
|
|
|
|
for (i = 1; i < argc;) {
|
|
|
|
int consumed;
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
consumed = SDLTest_CommonArg(state, i);
|
|
|
|
if (!consumed) {
|
|
|
|
if (!filename) {
|
|
|
|
filename = argv[i];
|
|
|
|
consumed = 1;
|
2023-04-02 05:29:30 +03:00
|
|
|
}
|
|
|
|
}
|
2023-08-09 19:56:06 +03:00
|
|
|
if (consumed <= 0) {
|
|
|
|
static const char *options[] = { "[sample.wav]", NULL };
|
|
|
|
SDLTest_CommonLogUsage(state, argv[0], options);
|
|
|
|
exit(1);
|
|
|
|
}
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
i += consumed;
|
|
|
|
}
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
/* Load the SDL library */
|
|
|
|
if (!SDLTest_CommonInit(state)) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-08-31 23:13:45 +03:00
|
|
|
FONT_CHARACTER_SIZE = 16;
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
filename = GetResourceFilename(filename, "sample.wav");
|
2024-08-23 03:33:49 +03:00
|
|
|
if (!SDL_LoadWAV(filename, &spec, &audio_buf, &audio_len)) {
|
2023-08-09 19:56:06 +03:00
|
|
|
SDL_Log("Failed to load '%s': %s", filename, SDL_GetError());
|
2024-03-26 19:05:15 +03:00
|
|
|
SDL_free(filename);
|
2023-08-09 19:56:06 +03:00
|
|
|
SDL_Quit();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-03-26 19:05:15 +03:00
|
|
|
SDL_free(filename);
|
2023-09-06 20:38:01 +03:00
|
|
|
init_slider(0, "Speed: %3.2fx", 0x0, 1.0f, 0.2f, 5.0f);
|
|
|
|
init_slider(1, "Freq: %g", 0x2, (float)spec.freq, 4000.0f, 192000.0f);
|
|
|
|
init_slider(2, "Channels: %g", 0x3, (float)spec.channels, 1.0f, 8.0f);
|
2023-08-31 23:13:45 +03:00
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
for (i = 0; i < state->num_windows; i++) {
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_SetWindowTitle(state->windows[i], "Resampler Test");
|
2023-08-09 19:56:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
stream = SDL_CreateAudioStream(&spec, &spec);
|
2023-08-31 23:13:45 +03:00
|
|
|
SDL_SetAudioStreamGetCallback(stream, our_get_callback, NULL);
|
|
|
|
|
2023-08-09 19:56:06 +03:00
|
|
|
SDL_BindAudioStream(state->audio_id, stream);
|
|
|
|
|
2024-01-24 04:40:51 +03:00
|
|
|
#ifdef SDL_PLATFORM_EMSCRIPTEN
|
2023-08-09 19:56:06 +03:00
|
|
|
emscripten_set_main_loop(loop, 0, 1);
|
|
|
|
#else
|
|
|
|
while (!done) {
|
|
|
|
loop();
|
2023-04-02 05:29:30 +03:00
|
|
|
}
|
2023-08-09 19:56:06 +03:00
|
|
|
#endif
|
2023-04-02 05:29:30 +03:00
|
|
|
|
2023-08-22 19:44:28 +03:00
|
|
|
SDLTest_CleanupTextDrawing();
|
2023-06-24 08:44:12 +03:00
|
|
|
SDL_DestroyAudioStream(stream);
|
2023-04-02 05:29:30 +03:00
|
|
|
SDL_free(audio_buf);
|
2023-08-09 19:56:06 +03:00
|
|
|
SDLTest_CommonQuit(state);
|
2023-04-02 05:29:30 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|