253 lines
11 KiB
C
253 lines
11 KiB
C
|
/*
|
||
|
* This file is part of the Micro Python project, http://micropython.org/
|
||
|
*
|
||
|
* The MIT License (MIT)
|
||
|
*
|
||
|
* Copyright (c) 2021 Artyom Skrobov
|
||
|
* Copyright (c) 2023 Jeff Epler for Adafruit Industries
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
* in the Software without restriction, including without limitation the rights
|
||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
* furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
* THE SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "py/objproperty.h"
|
||
|
#include "py/runtime.h"
|
||
|
#include "shared-bindings/util.h"
|
||
|
#include "shared-bindings/synthio/Note.h"
|
||
|
#include "shared-module/synthio/Note.h"
|
||
|
|
||
|
static const mp_arg_t note_properties[] = {
|
||
|
{ MP_QSTR_frequency, MP_ARG_OBJ | MP_ARG_REQUIRED, {.u_obj = NULL } },
|
||
|
{ MP_QSTR_amplitude, MP_ARG_OBJ, {.u_obj = MP_ROM_INT(1) } },
|
||
|
{ MP_QSTR_tremolo_rate, MP_ARG_OBJ, {.u_obj = NULL } },
|
||
|
{ MP_QSTR_tremolo_depth, MP_ARG_OBJ, {.u_obj = NULL } },
|
||
|
{ MP_QSTR_vibrato_rate, MP_ARG_OBJ, {.u_obj = NULL } },
|
||
|
{ MP_QSTR_vibrato_depth, MP_ARG_OBJ, {.u_obj = NULL } },
|
||
|
{ MP_QSTR_waveform, MP_ARG_OBJ, {.u_obj = MP_ROM_NONE } },
|
||
|
{ MP_QSTR_envelope, MP_ARG_OBJ, {.u_obj = MP_ROM_NONE } },
|
||
|
};
|
||
|
//| class Note:
|
||
|
//| def __init__(
|
||
|
//| self,
|
||
|
//| frequency: float,
|
||
|
//| amplitude: float = 1.0,
|
||
|
//| waveform: Optional[ReadableBuffer] = None,
|
||
|
//| envelope: Optional[Envelope] = None,
|
||
|
//| tremolo_depth: float = 0.0,
|
||
|
//| tremolo_rate: float = 0.0,
|
||
|
//| vibrato_depth: float = 0.0,
|
||
|
//| vibrato_rate: float = 0.0,
|
||
|
//| ) -> None:
|
||
|
//| """Construct a Note object, with a frequency in Hz, and optional amplitude (volume), waveform, envelope, tremolo (volume change) and vibrato (frequency change).
|
||
|
//|
|
||
|
//| If waveform or envelope are `None` the synthesizer object's default waveform or envelope are used.
|
||
|
//|
|
||
|
//| If the same Note object is played on multiple Synthesizer objects, the result is undefined.
|
||
|
//| """
|
||
|
STATIC mp_obj_t synthio_note_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
|
||
|
enum { ARG_frequency, ARG_amplitude, ARG_waveform, ARG_envelope, ARG_tremolo_rate, ARG_tremolo_depth, ARG_vibrato_rate, ARG_vibrato_depth };
|
||
|
mp_arg_val_t args[MP_ARRAY_SIZE(note_properties)];
|
||
|
mp_arg_parse_all_kw_array(n_args, n_kw, all_args, MP_ARRAY_SIZE(note_properties), note_properties, args);
|
||
|
|
||
|
synthio_note_obj_t *self = m_new_obj(synthio_note_obj_t);
|
||
|
self->base.type = &synthio_note_type;
|
||
|
|
||
|
mp_obj_t result = MP_OBJ_FROM_PTR(self);
|
||
|
for (size_t i = 0; i < MP_ARRAY_SIZE(note_properties); i++) {
|
||
|
if (args[i].u_obj != NULL) {
|
||
|
mp_store_attr(result, note_properties[i].qst, args[i].u_obj);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
};
|
||
|
|
||
|
//| frequency: float
|
||
|
//| """The base frequency of the note, in Hz."""
|
||
|
STATIC mp_obj_t synthio_note_get_frequency(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_frequency(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_frequency_obj, synthio_note_get_frequency);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_frequency(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_frequency(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_frequency_obj, synthio_note_set_frequency);
|
||
|
MP_PROPERTY_GETSET(synthio_note_frequency_obj,
|
||
|
(mp_obj_t)&synthio_note_get_frequency_obj,
|
||
|
(mp_obj_t)&synthio_note_set_frequency_obj);
|
||
|
|
||
|
//| amplitude: float
|
||
|
//| """The base amplitude of the note, from 0 to 1"""
|
||
|
STATIC mp_obj_t synthio_note_get_amplitude(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_amplitude(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_amplitude_obj, synthio_note_get_amplitude);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_amplitude(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_amplitude(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_amplitude_obj, synthio_note_set_amplitude);
|
||
|
MP_PROPERTY_GETSET(synthio_note_amplitude_obj,
|
||
|
(mp_obj_t)&synthio_note_get_amplitude_obj,
|
||
|
(mp_obj_t)&synthio_note_set_amplitude_obj);
|
||
|
|
||
|
|
||
|
//| tremolo_depth: float
|
||
|
//| """The tremolo depth of the note, from 0 to 1"""
|
||
|
STATIC mp_obj_t synthio_note_get_tremolo_depth(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_tremolo_depth(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_tremolo_depth_obj, synthio_note_get_tremolo_depth);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_tremolo_depth(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_tremolo_depth(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_tremolo_depth_obj, synthio_note_set_tremolo_depth);
|
||
|
MP_PROPERTY_GETSET(synthio_note_tremolo_depth_obj,
|
||
|
(mp_obj_t)&synthio_note_get_tremolo_depth_obj,
|
||
|
(mp_obj_t)&synthio_note_set_tremolo_depth_obj);
|
||
|
|
||
|
//| tremolo_rate: float
|
||
|
//| """The tremolo rate of the note, in Hz."""
|
||
|
STATIC mp_obj_t synthio_note_get_tremolo_rate(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_tremolo_rate(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_tremolo_rate_obj, synthio_note_get_tremolo_rate);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_tremolo_rate(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_tremolo_rate(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_tremolo_rate_obj, synthio_note_set_tremolo_rate);
|
||
|
MP_PROPERTY_GETSET(synthio_note_tremolo_rate_obj,
|
||
|
(mp_obj_t)&synthio_note_get_tremolo_rate_obj,
|
||
|
(mp_obj_t)&synthio_note_set_tremolo_rate_obj);
|
||
|
|
||
|
//| vibrato_depth: float
|
||
|
//| """The vibrato depth of the note, from 0 to 1"""
|
||
|
STATIC mp_obj_t synthio_note_get_vibrato_depth(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_vibrato_depth(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_vibrato_depth_obj, synthio_note_get_vibrato_depth);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_vibrato_depth(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_vibrato_depth(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_vibrato_depth_obj, synthio_note_set_vibrato_depth);
|
||
|
MP_PROPERTY_GETSET(synthio_note_vibrato_depth_obj,
|
||
|
(mp_obj_t)&synthio_note_get_vibrato_depth_obj,
|
||
|
(mp_obj_t)&synthio_note_set_vibrato_depth_obj);
|
||
|
|
||
|
//| vibrato_rate: float
|
||
|
//| """The vibrato rate of the note, in Hz."""
|
||
|
STATIC mp_obj_t synthio_note_get_vibrato_rate(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return mp_obj_new_float(common_hal_synthio_note_get_vibrato_rate(self));
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_vibrato_rate_obj, synthio_note_get_vibrato_rate);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_vibrato_rate(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_vibrato_rate(self, mp_obj_get_float(arg));
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_vibrato_rate_obj, synthio_note_set_vibrato_rate);
|
||
|
MP_PROPERTY_GETSET(synthio_note_vibrato_rate_obj,
|
||
|
(mp_obj_t)&synthio_note_get_vibrato_rate_obj,
|
||
|
(mp_obj_t)&synthio_note_set_vibrato_rate_obj);
|
||
|
|
||
|
//| waveform: Optional[ReadableBuffer]
|
||
|
//| """The waveform of this note. Setting the waveform to a buffer of a different size resets the note's phase."""
|
||
|
STATIC mp_obj_t synthio_note_get_waveform(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return common_hal_synthio_note_get_waveform_obj(self);
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_waveform_obj, synthio_note_get_waveform);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_waveform(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_waveform(self, arg);
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_waveform_obj, synthio_note_set_waveform);
|
||
|
MP_PROPERTY_GETSET(synthio_note_waveform_obj,
|
||
|
(mp_obj_t)&synthio_note_get_waveform_obj,
|
||
|
(mp_obj_t)&synthio_note_set_waveform_obj);
|
||
|
|
||
|
|
||
|
//| envelope: Envelope
|
||
|
//| """The envelope of this note"""
|
||
|
//|
|
||
|
STATIC mp_obj_t synthio_note_get_envelope(mp_obj_t self_in) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
return common_hal_synthio_note_get_envelope_obj(self);
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_1(synthio_note_get_envelope_obj, synthio_note_get_envelope);
|
||
|
|
||
|
STATIC mp_obj_t synthio_note_set_envelope(mp_obj_t self_in, mp_obj_t arg) {
|
||
|
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||
|
common_hal_synthio_note_set_envelope(self, arg);
|
||
|
return mp_const_none;
|
||
|
}
|
||
|
MP_DEFINE_CONST_FUN_OBJ_2(synthio_note_set_envelope_obj, synthio_note_set_envelope);
|
||
|
MP_PROPERTY_GETSET(synthio_note_envelope_obj,
|
||
|
(mp_obj_t)&synthio_note_get_envelope_obj,
|
||
|
(mp_obj_t)&synthio_note_set_envelope_obj);
|
||
|
|
||
|
static void note_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
||
|
(void)kind;
|
||
|
properties_print_helper(print, self_in, note_properties, MP_ARRAY_SIZE(note_properties));
|
||
|
}
|
||
|
|
||
|
STATIC const mp_rom_map_elem_t synthio_note_locals_dict_table[] = {
|
||
|
{ MP_ROM_QSTR(MP_QSTR_frequency), MP_ROM_PTR(&synthio_note_frequency_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_amplitude), MP_ROM_PTR(&synthio_note_amplitude_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_waveform), MP_ROM_PTR(&synthio_note_waveform_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_envelope), MP_ROM_PTR(&synthio_note_envelope_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_tremolo_depth), MP_ROM_PTR(&synthio_note_tremolo_depth_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_tremolo_rate), MP_ROM_PTR(&synthio_note_tremolo_rate_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_vibrato_depth), MP_ROM_PTR(&synthio_note_vibrato_depth_obj) },
|
||
|
{ MP_ROM_QSTR(MP_QSTR_vibrato_rate), MP_ROM_PTR(&synthio_note_vibrato_rate_obj) },
|
||
|
};
|
||
|
STATIC MP_DEFINE_CONST_DICT(synthio_note_locals_dict, synthio_note_locals_dict_table);
|
||
|
|
||
|
const mp_obj_type_t synthio_note_type = {
|
||
|
{ &mp_type_type },
|
||
|
.name = MP_QSTR_Note,
|
||
|
.make_new = synthio_note_make_new,
|
||
|
.locals_dict = (mp_obj_dict_t *)&synthio_note_locals_dict,
|
||
|
.print = note_print,
|
||
|
};
|