2016-03-30 20:07:55 +00:00
|
|
|
#ifndef apu_h
|
|
|
|
#define apu_h
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/* Divides nicely and never overflows with 4 channels */
|
|
|
|
#define MAX_CH_AMP 0x1E00
|
|
|
|
#define CH_STEP (0x1E00/0xF)
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
#include "save_struct.h"
|
2016-03-30 20:07:55 +00:00
|
|
|
|
|
|
|
struct GB_gameboy_s;
|
|
|
|
typedef struct GB_gameboy_s GB_gameboy_t;
|
|
|
|
|
2016-06-10 12:28:50 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int16_t left;
|
|
|
|
int16_t right;
|
|
|
|
} GB_sample_t;
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
/* Not all used on all channels */
|
|
|
|
typedef struct
|
|
|
|
{
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_aligned_double phase;
|
|
|
|
GB_aligned_double frequency;
|
|
|
|
GB_aligned_double duty;
|
|
|
|
GB_aligned_double sound_length; /* In seconds */
|
2016-03-30 20:07:55 +00:00
|
|
|
int16_t amplitude;
|
|
|
|
int16_t start_amplitude;
|
|
|
|
bool stop_on_length;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t envelope_steps;
|
|
|
|
uint8_t cur_envelope_steps;
|
2016-03-30 20:07:55 +00:00
|
|
|
signed int envelope_direction;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t sweep_steps;
|
|
|
|
uint8_t cur_sweep_steps;
|
2016-03-30 20:07:55 +00:00
|
|
|
signed int sweep_direction;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t sweep_shift;
|
2016-03-30 20:07:55 +00:00
|
|
|
bool is_playing;
|
|
|
|
} GB_apu_channel_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GB_apu_channel_t wave_channels[4];
|
2016-06-18 17:29:11 +00:00
|
|
|
GB_aligned_double envelope_step_timer; /* In seconds */
|
|
|
|
GB_aligned_double sweep_step_timer; /* In seconds */
|
|
|
|
int8_t wave_form[32];
|
|
|
|
uint8_t wave_shift;
|
2016-03-30 20:07:55 +00:00
|
|
|
bool wave_enable;
|
|
|
|
uint16_t lfsr;
|
|
|
|
bool lfsr_7_bit;
|
|
|
|
double left_volume;
|
|
|
|
double right_volume;
|
|
|
|
bool left_on[4];
|
|
|
|
bool right_on[4];
|
|
|
|
bool global_enable;
|
2016-09-06 19:36:16 +00:00
|
|
|
uint16_t NRX3_X4_temp[3];
|
2016-03-30 20:07:55 +00:00
|
|
|
} GB_apu_t;
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_apu_render(GB_gameboy_t *gb, unsigned int sample_rate, unsigned int n_samples, GB_sample_t *samples);
|
|
|
|
void GB_apu_copy_buffer(GB_gameboy_t *gb, GB_sample_t *dest, unsigned int count);
|
|
|
|
void GB_apu_write(GB_gameboy_t *gb, uint8_t reg, uint8_t value);
|
|
|
|
uint8_t GB_apu_read(GB_gameboy_t *gb, uint8_t reg);
|
|
|
|
void GB_apu_init(GB_gameboy_t *gb);
|
|
|
|
void GB_apu_run(GB_gameboy_t *gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
|
|
|
|
#endif /* apu_h */
|