-
Notifications
You must be signed in to change notification settings - Fork 19
/
macro.c
109 lines (90 loc) · 1.88 KB
/
macro.c
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
/* $OpenBSD: macro.c,v 1.18 2023/03/08 04:43:11 guenther Exp $ */
/* This file is in the public domain. */
/*
* Keyboard macros.
*/
#include <sys/queue.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include "def.h"
#include "key.h"
#include "macro.h"
int inmacro = FALSE; /* Macro playback in progress */
int macrodef = FALSE; /* Macro recording in progress */
int macrocount = 0;
struct line *maclhead = NULL;
struct line *maclcur;
union macrodef macro[MAXMACRO];
int
definemacro(int f, int n)
{
struct line *lp1, *lp2;
macrocount = 0;
if (macrodef) {
ewprintf("already defining macro");
return (macrodef = FALSE);
}
/* free lines allocated for string arguments */
if (maclhead != NULL) {
for (lp1 = maclhead->l_fp; lp1 != maclhead; lp1 = lp2) {
lp2 = lp1->l_fp;
free(lp1);
}
free(lp1);
}
if ((maclhead = lp1 = lalloc(0)) == NULL)
return (FALSE);
ewprintf("Defining Keyboard Macro...");
maclcur = lp1->l_fp = lp1->l_bp = lp1;
return (macrodef = TRUE);
}
int
finishmacro(int f, int n)
{
if (macrodef == TRUE) {
macrodef = FALSE;
ewprintf("End Keyboard Macro Definition");
return (TRUE);
}
return (FALSE);
}
int
executemacro(int f, int n)
{
int i, j, flag, num;
PF funct;
if (macrodef ||
(macrocount >= MAXMACRO && macro[MAXMACRO - 1].m_funct
!= finishmacro)) {
dobeep();
ewprintf("Macro too long. Aborting.");
return (FALSE);
}
if (macrocount == 0)
return (TRUE);
inmacro = TRUE;
for (i = n; i > 0; i--) {
maclcur = maclhead->l_fp;
flag = 0;
num = 1;
for (j = 0; j < macrocount - 1; j++) {
funct = macro[j].m_funct;
if (funct == universal_argument) {
flag = FFARG;
num = macro[++j].m_count;
continue;
}
if ((*funct)(flag, num) != TRUE) {
inmacro = FALSE;
return (FALSE);
}
lastflag = thisflag;
thisflag = 0;
flag = 0;
num = 1;
}
}
inmacro = FALSE;
return (TRUE);
}