shithub: orca

ref: d69dbb86405af9c82a8ae5c60027cf09e0c29034
dir: /bank.h/

View raw version
#pragma once
#include "base.h"

typedef enum {
  Oevent_type_midi_note,
  Oevent_type_midi_cc,
  Oevent_type_osc_ints,
  Oevent_type_udp_string,
} Oevent_types;

typedef struct {
  U8 oevent_type;
} Oevent_any;

typedef struct {
  U8 oevent_type;
  U8 channel, octave, note, velocity, duration;
} Oevent_midi_note;

typedef struct {
  U8 oevent_type;
  U8 channel, control, value;
} Oevent_midi_cc;

enum { Oevent_osc_int_count = 16 };

typedef struct {
  U8 oevent_type;
  Glyph glyph;
  U8 count;
  U8 numbers[Oevent_osc_int_count];
} Oevent_osc_ints;

enum { Oevent_udp_string_count = 16 };

typedef struct {
  U8 oevent_type;
  U8 count;
  char chars[Oevent_udp_string_count];
} Oevent_udp_string;

typedef union {
  Oevent_any any;
  Oevent_midi_note midi_note;
  Oevent_midi_cc midi_cc;
  Oevent_osc_ints osc_ints;
  Oevent_udp_string udp_string;
} Oevent;

typedef struct {
  Oevent *buffer;
  Usz count, capacity;
} Oevent_list;

void oevent_list_init(Oevent_list *olist);
void oevent_list_deinit(Oevent_list *olist);
void oevent_list_clear(Oevent_list *olist);
ORCA_FORCE_NO_INLINE
void oevent_list_copy(Oevent_list const *src, Oevent_list *dest);
ORCA_FORCE_NO_INLINE
Oevent *oevent_list_alloc_item(Oevent_list *olist);