modal/src/modal.c

209 lines
3.8 KiB
C
Raw Normal View History

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-07 18:50:27 -04:00
while(!spacer(s[0]) && *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-05 13:34:46 -04:00
static int
2024-04-08 11:59:41 -04:00
bind(int id, char *b)
2024-04-05 13:34:46 -04:00
{
2024-04-08 11:59:41 -04:00
if(regs[id]) {
char *a = regs[id], *aa = walk(a), *bb = walk(b);
while(a < aa && b < bb)
if(*a++ != *b++) return 0;
} else if(id == ':') {
char *bb = walk(b);
if(*b == '(') b++, --bb;
while(b < bb) putc(*(b++), stdout);
} else
regs[id] = b;
2024-04-08 11:44:21 -04:00
return 1;
2024-04-05 13:34:46 -04:00
}
2024-04-04 15:09:47 -04:00
static char *
2024-04-04 13:30:31 -04:00
match(char *p, Rule *r)
{
2024-04-05 13:34:46 -04:00
int i;
2024-04-04 13:30:31 -04:00
char c, *a = r->a, *b = p;
2024-04-05 13:34:46 -04:00
for(i = 0x21; i < 0x7f; i++)
2024-04-07 19:16:33 -04:00
if((char)i != ':')
regs[i] = 0;
2024-04-04 13:30:31 -04:00
while((c = *a)) {
2024-04-05 13:34:46 -04:00
if(c == '?') {
2024-04-08 11:59:41 -04:00
if(!bind(*(++a), b)) return NULL;
2024-04-07 00:12:30 -04:00
a++, b = walk(b);
2024-04-08 12:15:51 -04:00
continue;
2024-04-05 13:34:46 -04:00
}
2024-04-07 00:12:30 -04:00
if(*a != *b) return NULL;
2024-04-04 13:30:31 -04:00
a++, b++;
}
2024-04-06 12:19:58 -04:00
return spacer(*b) ? b : NULL;
2024-04-04 13:30:31 -04:00
}
2024-04-04 12:29:36 -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-07 12:13:35 -04:00
*outp_++ = '(', *outp_++ = c, depth++;
2024-04-07 14:22:18 -04:00
if(!spacer(*s))
*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-07 19:16:33 -04:00
commit(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-07 17:55:55 -04:00
static int
2024-04-07 18:50:27 -04:00
save(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-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-07 23:59:45 -04:00
char c, *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-06 13:59:02 -04:00
if(p[0] == '<' && p[1] == '>') {
2024-04-06 21:09:18 -04:00
Rule *r = &rules[rules_len++];
p += 3;
2024-04-08 12:42:37 -04:00
r->a = parse_rule(p), p = walk(p) + 1;
r->b = parse_rule(p), p = walk(p);
2024-04-07 17:55:55 -04:00
return save(-1, p);
2024-04-06 13:59:02 -04:00
}
2024-04-07 23:59:45 -04:00
if(p == o || spacer(*(p - 1))) {
2024-04-06 12:10:19 -04:00
for(i = 0; i < rules_len; i++) {
Rule *r = &rules[i];
char *res = match(p, r);
if(res != NULL) {
char cc, *b = r->b;
2024-04-07 23:59:45 -04:00
if(!*b && outp_ != bank_a && outp_ != bank_b) outp_--;
2024-04-06 12:10:19 -04:00
while((cc = *b++)) {
2024-04-08 12:28:36 -04:00
if(cc == '?')
2024-04-07 19:16:33 -04:00
commit(*b++);
2024-04-06 12:10:19 -04:00
else
*outp_++ = cc;
}
2024-04-07 17:55:55 -04:00
return save(i, res);
2024-04-04 20:15:16 -04:00
}
2024-04-04 15:09:47 -04:00
}
}
2024-04-04 22:55:05 -04:00
*outp_++ = c;
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
}