Browse Source

Rename: Its not a perkons, its a Heck Machines OSP

master
heck 9 months ago
parent
commit
83cc242614
  1. 2
      build.conf.example
  2. 2
      src/Makefile
  3. 4
      src/globals.hh
  4. 6
      src/instr_bd2.hh
  5. 6
      src/instr_fm.hh
  6. 6
      src/instr_grainlet.hh
  7. 6
      src/instr_hihat.hh
  8. 6
      src/instr_interface.hh
  9. 6
      src/instr_kick.hh
  10. 6
      src/instr_noise.hh
  11. 6
      src/instr_zosc.hh
  12. 3
      src/main_osp.cc
  13. 4
      src/midiclock.hh
  14. 4
      src/sequencer.hh
  15. 6
      src/track.hh
  16. 4
      src/types.hh
  17. 6
      src/utils.hh

2
build.conf.example

@ -3,7 +3,7 @@
# The program to compile and flash
# the name of the main cxx file without the prefix 'main_'
TARGET ?= perkons
TARGET ?= osp
DEBUG ?= 0

2
src/Makefile

@ -1,6 +1,6 @@
-include ../build.conf
TARGET ?= perkons
TARGET ?= osp
DEBUG ?= 0
LIBDAISY_DIR ?= ../../heck_libDaisy
DAISYSP_DIR ?= ../../heck_DaisySP

4
src/globals.hh

@ -1,5 +1,5 @@
#ifndef HECK_DAISY_GLOBALS_HH
#define HECK_DAISY_GLOBALS_HH
#ifndef HECK_OSP_GLOBALS_HH
#define HECK_OSP_GLOBALS_HH
#include <cstdint>
#include "daisy_seed.h"

6
src/instr_bd2.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_BD2_HH
#define HECK_DAISY_INSTR_BD2_HH
#ifndef HECK_OSP_INSTR_BD2_HH
#define HECK_OSP_INSTR_BD2_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_fm.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_FM_HH
#define HECK_DAISY_INSTR_FM_HH
#ifndef HECK_OSP_INSTR_FM_HH
#define HECK_OSP_INSTR_FM_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_grainlet.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_GRAINLET_HH
#define HECK_DAISY_INSTR_GRAINLET_HH
#ifndef HECK_OSP_INSTR_GRAINLET_HH
#define HECK_OSP_INSTR_GRAINLET_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_hihat.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_HIHAT_HH
#define HECK_DAISY_INSTR_HIHAT_HH
#ifndef HECK_OSP_INSTR_HIHAT_HH
#define HECK_OSP_INSTR_HIHAT_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_abstract.hh → src/instr_interface.hh

@ -1,5 +1,5 @@
#ifndef HECK_DAISY_PERKONS_INSTR_ABSTRACT
#define HECK_DAISY_PERKONS_INSTR_ABSTRACT
#ifndef HECK_OSP_INSTR_ABSTRACT
#define HECK_OSP_INSTR_ABSTRACT
#include "globals.hh"
@ -23,4 +23,4 @@ namespace Heck {
} // namespace Heck
#endif // HECK_DAISY_PERKONS_INSTR_ABSTRACT
#endif // HECK_OSP_INSTR_ABSTRACT

6
src/instr_kick.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_KICK_HH
#define HECK_DAISY_INSTR_KICK_HH
#ifndef HECK_OSP_INSTR_KICK_HH
#define HECK_OSP_INSTR_KICK_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_noise.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_NOISE_HH
#define HECK_DAISY_INSTR_NOISE_HH
#ifndef HECK_OSP_INSTR_NOISE_HH
#define HECK_OSP_INSTR_NOISE_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

6
src/instr_zosc.hh

@ -1,7 +1,7 @@
#ifndef HECK_DAISY_INSTR_ZOSC_HH
#define HECK_DAISY_INSTR_ZOSC_HH
#ifndef HECK_OSP_INSTR_ZOSC_HH
#define HECK_OSP_INSTR_ZOSC_HH
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "daisy_seed.h"
#include "daisysp.h"

3
src/main_perkons.cc → src/main_osp.cc

@ -1,4 +1,3 @@
// Hecks perkons extension
#include <array>
#include <memory>
@ -7,7 +6,7 @@
#include "utils.hh"
#include "midiclock.hh"
#include "sequencer.hh"
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "instr_kick.hh"
#include "instr_noise.hh"
#include "instr_fm.hh"

4
src/midiclock.hh

@ -1,5 +1,5 @@
#ifndef HECK_PERKONS_MIDICLOCK_HH
#define HECK_PERKONS_MIDICLOCK_HH
#ifndef HECK_OSP_MIDICLOCK_HH
#define HECK_OSP_MIDICLOCK_HH
namespace Heck {
struct MidiClock {

4
src/sequencer.hh

@ -1,5 +1,5 @@
#ifndef HECK_PERKONS_SEQUENCER_HH
#define HECK_PERKONS_SEQUENCER_HH
#ifndef HECK_OSP_SEQUENCER_HH
#define HECK_OSP_SEQUENCER_HH
#include <vector>
#include "daisy_seed.h"

6
src/track.hh

@ -1,8 +1,8 @@
#ifndef HECK_PERKONS_TRACK_HH
#define HECK_PERKONS_TRACK_HH
#ifndef HECK_OSP_TRACK_HH
#define HECK_OSP_TRACK_HH
#include "daisysp.h"
#include "instr_abstract.hh"
#include "instr_interface.hh"
#include "utils.hh"
#include "globals.hh"
namespace dsp = daisysp;

4
src/types.hh

@ -1,5 +1,5 @@
#ifndef HECK_DAISY_TYPES_HH
#define HECK_DAISY_TYPES_HH
#ifndef HECK_OSP_TYPES_HH
#define HECK_OSP_TYPES_HH
#include <cstdint>
#include "daisy_seed.h"

6
src/utils.hh

@ -1,5 +1,5 @@
#ifndef HECK_DAISY_UTILS_HH
#define HECK_DAISY_UTILS_HH
#ifndef HECK_OSP_UTILS_HH
#define HECK_OSP_UTILS_HH
#include "daisy_seed.h"
#include "globals.hh"
@ -12,4 +12,4 @@ namespace Heck {
float scalen_center_range(float val, float center, float range);
} // namespace Heck
#endif // HECK_DAISY_UTILS_HH
#endif // HECK_OSP_UTILS_HH
Loading…
Cancel
Save