-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrols.cpp
More file actions
137 lines (116 loc) · 2.93 KB
/
controls.cpp
File metadata and controls
137 lines (116 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
TiMidity -- Experimental MIDI to WAVE converter
Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
controls.c
*/
#include "config.h"
#include "controls.h"
int last_rc_command = 0;
int last_rc_arg = 0;
int check_for_rc(void) {
int rc = last_rc_command;
int32 val;
if (!rc)
{
rc = ctl->read(&val);
last_rc_command = rc;
last_rc_arg = val;
}
switch (rc)
{
case RC_QUIT: /* [] */
case RC_LOAD_FILE:
case RC_NEXT: /* >>| */
case RC_REALLY_PREVIOUS: /* |<< */
case RC_PATCHCHANGE:
case RC_CHANGE_VOICES:
case RC_STOP:
return rc;
default:
return 0;
}
}
#ifdef KMIDI
extern ControlMode kmidi_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &kmidi_control_mode
# endif
#endif
#ifdef IA_GTK
extern ControlMode gtk_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE >k_control_mode
# endif
#endif
#ifdef IA_MOTIF
extern ControlMode motif_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &motif_control_mode
# endif
#endif
#ifdef IA_XAW
extern ControlMode xaw_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &xaw_control_mode
# endif
#endif
#ifdef TCLTK
extern ControlMode tk_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &tk_control_mode
# endif
#endif
#ifdef IA_NCURSES
extern ControlMode ncurses_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &ncurses_control_mode
# endif
#endif
#ifdef IA_SLANG
extern ControlMode slang_control_mode;
# ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &slang_control_mode
# endif
#endif
/* Minimal control mode */
extern ControlMode dumb_control_mode;
#ifndef DEFAULT_CONTROL_MODE
# define DEFAULT_CONTROL_MODE &dumb_control_mode
#endif
ControlMode *ctl_list[]={
#ifdef IA_NCURSES
&ncurses_control_mode,
#endif
#ifdef IA_SLANG
&slang_control_mode,
#endif
#ifdef IA_MOTIF
&motif_control_mode,
#endif
#ifdef IA_XAW
&xaw_control_mode,
#endif
#ifdef KMIDI
&kmidi_control_mode,
#endif
#ifdef IA_GTK
>k_control_mode,
#endif
#ifdef TCLTK
&tk_control_mode,
#endif
&dumb_control_mode,
0
};
ControlMode *ctl=DEFAULT_CONTROL_MODE;