2024-04-04 12:04:27 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-04-04 12:29:36 -04:00
|
|
|
typedef struct {
|
2024-04-04 13:01:09 -04:00
|
|
|
char *a, *b;
|
2024-04-04 12:29:36 -04:00
|
|
|
} Rule;
|
|
|
|
|
2024-04-07 19:16:33 -04:00
|
|
|
static int rules_len, direction;
|
2024-04-04 12:29:36 -04:00
|
|
|
static Rule rules[0x100];
|
2024-04-04 14:54:31 -04:00
|
|
|
static char dict[0x8000], *dict_ = dict;
|
2024-04-06 18:11:38 -04:00
|
|
|
static char bank_a[0x4000], *prog_ = bank_a;
|
|
|
|
static char bank_b[0x4000], *outp_ = bank_b;
|
2024-04-04 13:59:00 -04:00
|
|
|
static char *regs[0x100];
|
|
|
|
|
2024-04-06 12:42:55 -04:00
|
|
|
#define spacer(c) (c < 0x21 || c == '(' || c == ')')
|
2024-04-04 19:52:09 -04:00
|
|
|
|
2024-04-04 13:59:00 -04:00
|
|
|
static char *
|
|
|
|
walk(char *s)
|
|
|
|
{
|
|
|
|
char c;
|
2024-04-04 22:40:16 -04:00
|
|
|
int depth = 0;
|
2024-04-04 22:37:03 -04:00
|
|
|
if(s[0] == '(') {
|
|
|
|
while((c = *s++)) {
|
|
|
|
if(c == '(') depth++;
|
|
|
|
if(c == ')') --depth;
|
|
|
|
if(!depth) return s;
|
2024-04-04 20:26:16 -04:00
|
|
|
}
|
2024-04-04 14:35:58 -04:00
|
|
|
}
|
2024-04-08 13:10:56 -04:00
|
|
|
while((c = *s) && !spacer(c) && *s++)
|
2024-04-04 22:40:16 -04:00
|
|
|
;
|
2024-04-04 20:15:16 -04:00
|
|
|
return s;
|
2024-04-04 13:59:00 -04:00
|
|
|
}
|
|
|
|
|
2024-04-07 12:08:58 -04:00
|
|
|
static char *
|
|
|
|
plode(char *s)
|
|
|
|
{
|
2024-04-07 12:13:35 -04:00
|
|
|
int i, depth = 0;
|
2024-04-07 12:08:58 -04:00
|
|
|
char c;
|
|
|
|
if(s[0] == '(') { /* implode */
|
2024-04-07 12:13:35 -04:00
|
|
|
while((c = *s++)) {
|
|
|
|
if(c == '(') depth++;
|
|
|
|
if(!spacer(c)) *outp_++ = c;
|
|
|
|
if(c == ')') --depth;
|
|
|
|
if(!depth) return s;
|
|
|
|
}
|
2024-04-07 12:08:58 -04:00
|
|
|
} else { /* explode */
|
2024-04-07 14:22:18 -04:00
|
|
|
*outp_++ = *s++, *outp_++ = ' ';
|
|
|
|
while((c = *s++) && !spacer(c)) {
|
2024-04-08 13:10:56 -04:00
|
|
|
*outp_++ = '(', *outp_++ = c, depth++, c = *s;
|
|
|
|
if(!spacer(c))
|
2024-04-07 14:22:18 -04:00
|
|
|
*outp_++ = ' ';
|
|
|
|
}
|
2024-04-07 12:13:35 -04:00
|
|
|
for(i = 0; i < depth; i++)
|
2024-04-07 12:08:58 -04:00
|
|
|
*outp_++ = ')';
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2024-04-06 11:17:58 -04:00
|
|
|
static int
|
2024-04-08 13:23:28 -04:00
|
|
|
bind_reg(int r, char *b)
|
|
|
|
{
|
|
|
|
if(regs[r]) {
|
|
|
|
char *a = regs[r], *aa = walk(a), *bb = walk(b);
|
|
|
|
while(a < aa && b < bb)
|
|
|
|
if(*a++ != *b++) return 0;
|
|
|
|
} else if(r == ':') {
|
|
|
|
char *bb = walk(b);
|
|
|
|
if(*b == '(') b++, --bb;
|
|
|
|
while(b < bb) putc(*(b++), stdout);
|
|
|
|
} else
|
|
|
|
regs[r] = b;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
write_reg(char r)
|
2024-04-04 15:20:06 -04:00
|
|
|
{
|
2024-04-08 12:28:36 -04:00
|
|
|
char *s = regs[(int)r];
|
2024-04-07 12:08:58 -04:00
|
|
|
if(r == '*')
|
|
|
|
s = plode(s);
|
2024-04-08 12:28:36 -04:00
|
|
|
else if(s) {
|
|
|
|
char *ss = walk(s);
|
|
|
|
while((s < ss) && (*outp_++ = *s++))
|
|
|
|
;
|
|
|
|
} else
|
|
|
|
*outp_++ = r;
|
2024-04-06 11:17:58 -04:00
|
|
|
return 1;
|
2024-04-04 15:20:06 -04:00
|
|
|
}
|
|
|
|
|
2024-04-08 13:23:28 -04:00
|
|
|
static char *
|
|
|
|
match_rule(char *p, Rule *r)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char c, *a = r->a, *b = p;
|
|
|
|
for(i = 0x21; i < 0x7f; i++)
|
|
|
|
if((char)i != ':')
|
|
|
|
regs[i] = 0;
|
|
|
|
while((c = *a)) {
|
|
|
|
if(c == '?') {
|
|
|
|
if(!bind_reg(*(++a), b)) return NULL;
|
|
|
|
a++, b = walk(b);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(*a != *b) return NULL;
|
|
|
|
a++, b++;
|
|
|
|
}
|
|
|
|
c = *b;
|
|
|
|
return spacer(c) ? b : NULL;
|
|
|
|
}
|
|
|
|
|
2024-04-07 17:55:55 -04:00
|
|
|
static int
|
2024-04-08 13:23:28 -04:00
|
|
|
commit_rule(int rule, char *s)
|
2024-04-04 17:55:51 -04:00
|
|
|
{
|
2024-04-07 18:50:27 -04:00
|
|
|
while((*outp_++ = *s++))
|
2024-04-07 17:55:55 -04:00
|
|
|
;
|
|
|
|
*outp_++ = 0;
|
2024-04-06 11:36:10 -04:00
|
|
|
if((direction = !direction))
|
|
|
|
prog_ = bank_b, outp_ = bank_a;
|
|
|
|
else
|
|
|
|
prog_ = bank_a, outp_ = bank_b;
|
2024-04-07 18:50:27 -04:00
|
|
|
if(rule >= 0)
|
|
|
|
fprintf(stderr, "%02d %s\n", rule, prog_);
|
2024-04-07 17:55:55 -04:00
|
|
|
return 1;
|
2024-04-04 17:55:51 -04:00
|
|
|
}
|
|
|
|
|
2024-04-06 11:17:58 -04:00
|
|
|
static char *
|
2024-04-08 12:42:37 -04:00
|
|
|
parse_rule(char *s)
|
2024-04-06 11:17:58 -04:00
|
|
|
{
|
2024-04-08 12:42:37 -04:00
|
|
|
char *ss = walk(s), *d = dict_;
|
|
|
|
if(*s == '(') s++, ss--;
|
|
|
|
while((s < ss) && (*dict_++ = *s++))
|
2024-04-06 11:17:58 -04:00
|
|
|
;
|
|
|
|
*dict_++ = 0;
|
2024-04-08 12:42:37 -04:00
|
|
|
return d;
|
2024-04-06 11:17:58 -04:00
|
|
|
}
|
|
|
|
|
2024-04-08 13:23:28 -04:00
|
|
|
static int
|
|
|
|
add_rule(char *p)
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
Rule *r = &rules[rules_len++];
|
|
|
|
p += 2;
|
|
|
|
while((c = *p) && c <= ' ') p++;
|
|
|
|
r->a = parse_rule(p), p = walk(p);
|
|
|
|
while((c = *p) && c <= ' ') p++;
|
|
|
|
r->b = parse_rule(p), p = walk(p);
|
|
|
|
return commit_rule(-1, p);
|
|
|
|
}
|
|
|
|
|
2024-04-04 13:07:49 -04:00
|
|
|
static int
|
2024-04-07 19:16:33 -04:00
|
|
|
rewrite(void)
|
2024-04-04 13:07:49 -04:00
|
|
|
{
|
2024-04-08 13:10:56 -04:00
|
|
|
char c, c_ = 0, last = 0, *p = direction ? bank_b : bank_a, *o = p;
|
2024-04-07 18:50:27 -04:00
|
|
|
while((c = *p) && c <= ' ') p++;
|
2024-04-04 13:30:31 -04:00
|
|
|
while((c = *p)) {
|
2024-04-04 22:55:05 -04:00
|
|
|
int i;
|
2024-04-08 13:23:28 -04:00
|
|
|
if(p[0] == '<' && p[1] == '>') return add_rule(p);
|
2024-04-08 13:10:56 -04:00
|
|
|
if(p != o) c_ = *(p - 1);
|
|
|
|
if(p == o || spacer(c_)) {
|
2024-04-06 12:10:19 -04:00
|
|
|
for(i = 0; i < rules_len; i++) {
|
|
|
|
Rule *r = &rules[i];
|
2024-04-08 13:23:28 -04:00
|
|
|
char *res = match_rule(p, r);
|
2024-04-06 12:10:19 -04:00
|
|
|
if(res != NULL) {
|
|
|
|
char cc, *b = r->b;
|
2024-04-08 13:03:15 -04:00
|
|
|
if(!*b && last == ' ') outp_--;
|
2024-04-06 12:10:19 -04:00
|
|
|
while((cc = *b++)) {
|
2024-04-08 12:28:36 -04:00
|
|
|
if(cc == '?')
|
2024-04-08 13:23:28 -04:00
|
|
|
write_reg(*b++);
|
2024-04-06 12:10:19 -04:00
|
|
|
else
|
|
|
|
*outp_++ = cc;
|
|
|
|
}
|
2024-04-08 13:23:28 -04:00
|
|
|
return commit_rule(i, res);
|
2024-04-04 20:15:16 -04:00
|
|
|
}
|
2024-04-04 15:09:47 -04:00
|
|
|
}
|
|
|
|
}
|
2024-04-08 13:03:15 -04:00
|
|
|
*outp_++ = last = c;
|
2024-04-04 22:55:05 -04:00
|
|
|
p++;
|
2024-04-04 13:30:31 -04:00
|
|
|
}
|
2024-04-04 17:48:04 -04:00
|
|
|
*outp_++ = 0;
|
2024-04-04 22:55:05 -04:00
|
|
|
return 0;
|
2024-04-04 13:07:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2024-04-04 17:55:51 -04:00
|
|
|
print_rules(void)
|
2024-04-04 13:07:49 -04:00
|
|
|
{
|
|
|
|
int i;
|
2024-04-06 18:11:38 -04:00
|
|
|
fprintf(stderr, "\n");
|
2024-04-05 11:54:39 -04:00
|
|
|
for(i = 0; i < rules_len; i++)
|
2024-04-06 18:11:38 -04:00
|
|
|
fprintf(stderr, "<> (%s) (%s)\n", rules[i].a, rules[i].b);
|
|
|
|
fprintf(stderr, "\n");
|
2024-04-04 13:07:49 -04:00
|
|
|
}
|
|
|
|
|
2024-04-07 13:58:39 -04:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
2024-04-07 13:56:43 -04:00
|
|
|
{
|
2024-04-07 13:58:39 -04:00
|
|
|
FILE *f;
|
2024-04-07 13:56:43 -04:00
|
|
|
char c, *w = bank_a;
|
2024-04-07 13:58:39 -04:00
|
|
|
if(argc < 2)
|
|
|
|
return !printf("usage: modal [-v] source.modal\n");
|
|
|
|
if(argc < 3 && argv[1][0] == '-' && argv[1][1] == 'v')
|
2024-04-08 12:42:37 -04:00
|
|
|
return !printf("Modal - Modal Interpreter, 8 Apr 2024.\n");
|
2024-04-07 13:58:39 -04:00
|
|
|
if(!(f = fopen(argv[1], "r")))
|
|
|
|
return !printf("Invalid Modal file: %s.\n", argv[1]);
|
2024-04-07 13:56:43 -04:00
|
|
|
while(fread(&c, 1, 1, f)) {
|
2024-04-07 16:09:58 -04:00
|
|
|
if(w > bank_a) {
|
2024-04-07 18:32:53 -04:00
|
|
|
if(c == ' ' && *(w - 1) == '(') continue;
|
|
|
|
if(c == ')' && *(w - 1) == ' ') w--;
|
2024-04-07 13:56:43 -04:00
|
|
|
if(c == ' ' && *(w - 1) == ' ') w--;
|
|
|
|
}
|
|
|
|
*w++ = c;
|
|
|
|
}
|
|
|
|
*w++ = 0;
|
|
|
|
fclose(f);
|
2024-04-07 19:16:33 -04:00
|
|
|
regs[':'] = argv[2];
|
|
|
|
while(rewrite())
|
2024-04-04 18:10:25 -04:00
|
|
|
;
|
2024-04-06 13:28:00 -04:00
|
|
|
print_rules();
|
2024-04-04 14:54:31 -04:00
|
|
|
return 0;
|
2024-04-04 12:04:27 -04:00
|
|
|
}
|