uxn/src/apu.h

44 lines
1021 B
C
Raw Normal View History

/*
Copyright (c) 2021 Devine Lu Linvega
Copyright (c) 2021 Andrew Alderwick
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
typedef unsigned int Uint32;
typedef signed int Sint32;
#define SAMPLE_FREQUENCY 48000
typedef struct {
Uint16 *dat;
Uint8 i, n, sz, finishes;
} Queue;
typedef struct {
Uint32 count, advance, period;
Uint16 vector;
Sint16 start_value, end_value;
Queue queue;
} WaveformGenerator;
typedef struct {
WaveformGenerator wv[2];
Sint8 volume[2], playing;
} Note;
typedef struct {
2021-04-08 20:21:46 +00:00
Queue *queue;
Note *notes;
int n_notes;
2021-04-08 20:22:27 +00:00
Uint16 channel_addr;
} Apu;
void apu_render(Apu *apu, Uxn *u, Sint16 *samples, int n_samples);
void apu_play_note(Note *note, Uint16 wave_vector, Uint16 envelope_vector, Uint8 volume, Uint8 pitch);