2018-08-07 22:38:41 +02:00
|
|
|
|
|
|
|
// Copyright 2013 Eric Messick (FixedImagePhoto.com/Contact)
|
|
|
|
// Copyright 2018 Albert Graef <aggraef@gmail.com>
|
|
|
|
|
2018-08-16 00:10:41 +02:00
|
|
|
#include <limits.h>
|
2018-08-07 22:38:41 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2018-08-09 11:11:45 +02:00
|
|
|
#include <stdint.h>
|
2018-08-07 22:38:41 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include<signal.h>
|
|
|
|
|
|
|
|
#include <regex.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/extensions/XTest.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
|
|
|
|
// delay in ms before processing each XTest event
|
|
|
|
// CurrentTime means no delay
|
|
|
|
#define DELAY CurrentTime
|
|
|
|
|
|
|
|
// we define these as extra KeySyms to represent mouse events
|
|
|
|
#define XK_Button_0 0x2000000 // just an offset, not a real button
|
|
|
|
#define XK_Button_1 0x2000001
|
|
|
|
#define XK_Button_2 0x2000002
|
|
|
|
#define XK_Button_3 0x2000003
|
|
|
|
#define XK_Scroll_Up 0x2000004
|
|
|
|
#define XK_Scroll_Down 0x2000005
|
|
|
|
|
|
|
|
#define PRESS 1
|
|
|
|
#define RELEASE 2
|
|
|
|
#define PRESS_RELEASE 3
|
|
|
|
#define HOLD 4
|
|
|
|
|
|
|
|
typedef struct _stroke {
|
|
|
|
struct _stroke *next;
|
|
|
|
// nonzero keysym indicates a key event
|
|
|
|
KeySym keysym;
|
2018-08-14 10:52:34 +02:00
|
|
|
int8_t press; // zero -> release, non-zero -> press
|
|
|
|
// nonzero value indicates a shift event
|
|
|
|
int8_t shift;
|
|
|
|
// keysym == shift == 0 => MIDI event
|
2018-08-07 22:38:41 +02:00
|
|
|
int status, data; // status and, if applicable, first data byte
|
2018-08-12 23:52:11 +02:00
|
|
|
int step; // step size (1, 127 or 8191 by default, depending on status)
|
2018-08-25 07:55:15 +02:00
|
|
|
// discrete steps (for special "modulus" translations only)
|
|
|
|
int n_steps, *steps;
|
2018-08-09 09:11:51 +02:00
|
|
|
// the incremental bit indicates an incremental control change (typically
|
|
|
|
// used with endless rotary encoders) to be represented as a sign bit value
|
2018-08-09 11:11:45 +02:00
|
|
|
uint8_t incr;
|
2018-08-29 14:52:20 +02:00
|
|
|
// the swap bit indicates that 1st and 2nd data byte are to be swapped in
|
|
|
|
// mod translations
|
|
|
|
uint8_t swap;
|
2018-09-15 23:52:56 +02:00
|
|
|
// the change bit indicates that the message should only be output if its
|
|
|
|
// value has changed since the last time
|
|
|
|
uint8_t change;
|
|
|
|
// cached values for the change bit
|
|
|
|
int d, v;
|
2018-08-26 14:47:52 +02:00
|
|
|
// the recursive bit indicates a MIDI message which is to be translated
|
|
|
|
// recursively
|
|
|
|
uint8_t recursive;
|
2018-09-13 09:05:28 +02:00
|
|
|
// the feedback bit indicates a MIDI message which is to be sent back to
|
|
|
|
// device or application (flipping the output port)
|
|
|
|
uint8_t feedback;
|
2018-08-07 22:38:41 +02:00
|
|
|
// the dirty bit indicates a MIDI event for which a release event still
|
|
|
|
// needs to be generated in key events
|
2018-08-09 11:11:45 +02:00
|
|
|
uint8_t dirty;
|
2018-08-07 22:38:41 +02:00
|
|
|
} stroke;
|
|
|
|
|
2018-08-15 00:06:08 +02:00
|
|
|
typedef struct _stroke_data {
|
|
|
|
// key (MIDI channel and, for note/CC/PB, data byte)
|
|
|
|
uint8_t chan, data;
|
|
|
|
// stroke data, indexed by press/release or up/down index
|
|
|
|
stroke *s[2];
|
2018-08-25 07:55:15 +02:00
|
|
|
// step size
|
|
|
|
int step[2], n_steps[2], *steps[2];
|
2018-08-15 00:06:08 +02:00
|
|
|
// incr flag (CC only)
|
|
|
|
uint8_t is_incr;
|
2018-08-25 07:55:15 +02:00
|
|
|
// modulus
|
2018-09-15 23:52:56 +02:00
|
|
|
uint16_t mod;
|
2018-09-14 06:19:46 +02:00
|
|
|
// anyshift flag (default rule)
|
|
|
|
uint8_t anyshift;
|
2018-08-15 00:06:08 +02:00
|
|
|
} stroke_data;
|
|
|
|
|
2018-09-12 19:57:03 +02:00
|
|
|
#define N_SHIFTS 4 // number of distinct shift states
|
|
|
|
#define N_ST (N_SHIFTS+1)
|
|
|
|
|
2018-08-07 22:38:41 +02:00
|
|
|
typedef struct _translation {
|
|
|
|
struct _translation *next;
|
|
|
|
char *name;
|
2018-08-09 11:11:45 +02:00
|
|
|
int is_default;
|
2018-08-07 22:38:41 +02:00
|
|
|
regex_t regex;
|
2018-08-11 21:04:09 +02:00
|
|
|
uint8_t portno;
|
2018-08-15 00:06:08 +02:00
|
|
|
// these are indexed by shift status
|
2018-09-12 19:57:03 +02:00
|
|
|
stroke_data *note[N_ST];
|
|
|
|
stroke_data *notes[N_ST];
|
|
|
|
stroke_data *pc[N_ST];
|
|
|
|
stroke_data *cc[N_ST];
|
|
|
|
stroke_data *ccs[N_ST];
|
|
|
|
stroke_data *pb[N_ST];
|
|
|
|
stroke_data *pbs[N_ST];
|
|
|
|
stroke_data *kp[N_ST];
|
|
|
|
stroke_data *kps[N_ST];
|
|
|
|
stroke_data *cp[N_ST];
|
|
|
|
stroke_data *cps[N_ST];
|
2018-08-15 00:06:08 +02:00
|
|
|
// actual and allocated sizes (can be at most 16*128)
|
2018-09-12 19:57:03 +02:00
|
|
|
uint16_t n_note[N_ST], n_notes[N_ST], n_pc[N_ST],
|
|
|
|
n_cc[N_ST], n_ccs[N_ST], n_pb[N_ST], n_pbs[N_ST],
|
|
|
|
n_kp[N_ST], n_kps[N_ST], n_cp[N_ST], n_cps[N_ST];
|
|
|
|
uint16_t a_note[N_ST], a_notes[N_ST], a_pc[N_ST],
|
|
|
|
a_cc[N_ST], a_ccs[N_ST], a_pb[N_ST], a_pbs[N_ST],
|
|
|
|
a_kp[N_ST], a_kps[N_ST], a_cp[N_ST], a_cps[N_ST];
|
2018-08-07 22:38:41 +02:00
|
|
|
} translation;
|
|
|
|
|
2018-08-11 21:04:09 +02:00
|
|
|
extern void reload_callback(void);
|
2018-08-10 04:44:26 +02:00
|
|
|
extern int read_config_file(void);
|
2018-08-07 22:38:41 +02:00
|
|
|
extern translation *get_translation(char *win_title, char *win_class);
|
2018-08-25 07:55:15 +02:00
|
|
|
extern void print_stroke_sequence(char *name, char *up_or_down, stroke *s,
|
|
|
|
int mod, int step, int n_steps, int *steps,
|
|
|
|
int val);
|
2018-08-11 21:04:09 +02:00
|
|
|
extern translation *default_translation, *default_midi_translation[2];
|
2018-08-12 08:34:04 +02:00
|
|
|
extern int debug_regex, debug_strokes, debug_keys, debug_midi;
|
|
|
|
extern int default_debug_regex, default_debug_strokes, default_debug_keys,
|
|
|
|
default_debug_midi;
|
2018-08-07 22:38:41 +02:00
|
|
|
extern char *config_file_name;
|
2018-09-19 23:34:22 +02:00
|
|
|
extern int jack_num_outputs, auto_feedback;
|
|
|
|
extern int passthrough[2], system_passthrough[2];
|
2018-08-14 10:52:34 +02:00
|
|
|
extern int midi_octave, shift;
|
2018-08-12 10:30:08 +02:00
|
|
|
extern char *jack_client_name;
|