sointu/tests
Veikko Sariola e0a793ea6d Reorganize the project folder structure and how go packages are organized.
Sointu.asm / lib stuff lives at the root folder. There is a folder called "go4k", which is where
all go stuff lives. Following the ideas from https://medium.com/@benbjohnson/standard-package-layout-7cdbc8391fc1
the go4k folder is the "domain-model" of the go side, and should have no dependencies.
It contains Unit, Instrument, Synth interface etc. Putting go4k under a sub-folder is actually
in the spirit of Ben, as go4k adds dependency to the go language.

Bridge ties the domain-model to the sointulib through cgo. It returns C.Synth, but
makes sure the C.Synth implements the Synth interface, so others are able to use the
Synth no matter how it actually is done. MockSynth and WebProxy synth are good
prospects for other implementations of Synth.

It is a bit fuzzy where methods like "Play" that have no dependencies other than domain
model structs should go. They probably should live in the go4k package as well.

The file-organization on the Go-side is not at all finalized. But how packages are broken
into files is mostly a documentation issue; it does not affect the users of the packages at
all.

BTW: The name go4k was chosen because Ben advocated naming the subpackages
according to the dependency they introduce AND because the prototype of 4klang was
called go4k (there are still some defines in the 4klang source revealing this). go4k thus
honors our roots but is also not so bad name: it's the main package of a 4k synth tracker,
written in go.
2020-10-31 22:05:47 +02:00
..
expected_output Implement a bridge to call Sointu from Go language. 2020-10-22 21:19:13 +03:00
CMakeLists.txt Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_add_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_add.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_addp_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_addp.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_aux_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_aux.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_chords.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_clip_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_clip.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_compressor_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_compressor.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_crush_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_crush.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_dampmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_drymod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_feedbackmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_flanger.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_notetracking.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_pregainmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_reverb.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_delay.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_distort_mod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_distort_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_distort.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_envelope_mod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_envelope_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_envelope.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_band.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_freqmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_high.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_low.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_peak.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_resmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_filter_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_gain_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_gain.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_hold_mod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_hold_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_hold.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_in_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_in.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_invgain_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_invgain.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_loadnote_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_loadnote.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_loadval_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_loadval.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_mul_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_mul.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_mulp_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_mulp.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_multiple_instruments.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_noise_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_noise.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_colormod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_detunemod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_gainmod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_gate.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_lfo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_phasemod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_pulse.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_sample_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_sample.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_shapemod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_sine.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_transposemod.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_trisaw.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_unison_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_oscillat_unison.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_outaux_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_outaux.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_panning_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_panning.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_polyphony.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_pop_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_pop.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_push_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_push.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_receive_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_receive.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_render_samples_api.c Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_render_samples.c Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_renderer.c Change the C-API to roughly match the new Go-API. 2020-10-27 21:58:56 +02:00
test_send_global.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_send_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_send.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_speed.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_xch_stereo.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00
test_xch.asm Reorganize the project folder structure and how go packages are organized. 2020-10-31 22:05:47 +02:00