summaryrefslogtreecommitdiff
path: root/unsorted/Utils.c
blob: b627c4dbf7dfd4f21947226410a62cb2f2054873 (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "parser.h"

int my_tolower(char c) {
    if (c >= 'A' && c <= 'Z')
        return c | 0x20;
    else
        return c;
}

int my_isdigit(char c) {
    return (c >= '0' && c <= '9');
}

int my_isalpha(char c) {
    return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}

int my_isalnum(char c) {
    return my_isdigit(c) || my_isalpha(c);
}

int my_isxdigit(char c) {
    return my_isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
}

char *Utils_SpellList(char *list, char *buffer, char opts) {
    char *sptr;
    char *eptr;
    char *nptr;
    char *bptr;
    int pflen;
    int npflen;
    int undo;
    char *neptr;
    int cnt;

    undo = 0;
    bptr = buffer;
    sptr = list;
    pflen = 0;
    while (sptr) {
        if ((opts & 1) && !pflen)
            *(bptr++) = *MAINOPTCHAR;

        eptr = strchr(sptr, '|');
        if (!eptr) {
            eptr = sptr + strlen(sptr);
            nptr = 0;
        } else if (eptr[1] == '|') {
            nptr = 0;
        } else {
            nptr = eptr + 1;
        }

        if (undo == 0 && !pflen) {
            if (opts & 8) {
                *(bptr++) = '[';
                *(bptr++) = 'n';
                *(bptr++) = 'o';
                *(bptr++) = ']';
            }
            if (opts & 0x20) {
                *(bptr++) = '[';
                *(bptr++) = 'n';
                *(bptr++) = 'o';
                *(bptr++) = '-';
                *(bptr++) = ']';
            }
        }

        npflen = 0;
        if (nptr) {
            while (sptr < nptr && *nptr && *nptr != '|' && sptr[npflen] == nptr[npflen])
                npflen++;

            if (npflen) {
                neptr = strchr(nptr, '|');
                if (!neptr)
                    neptr = nptr + strlen(nptr);
                if ((neptr - nptr) < (eptr - sptr) || ((sptr[1] && sptr[1] != '|') ? (sptr[1] != nptr[1]) : 0))
                    npflen = 0;
                if (opts & 0x40)
                    npflen = 0;
            }
        }

        if (pflen) {
            sptr += pflen;
            while (sptr < eptr) {
                *(bptr++) = *(sptr++);
            }
            if (npflen > pflen) {
                *(bptr++) = '[';
                undo++;
            }
            if (npflen < pflen) {
                *(bptr++) = ']';
                undo--;
            }
        } else if (npflen) {
            for (cnt = npflen; cnt > 0; cnt--) {
                *(bptr++) = *(sptr++);
            }
            *(bptr++) = '[';
            undo++;
        }

        while (sptr < eptr) {
            *(bptr++) = *(sptr++);
        }

        if (opts & 0x10) {
            *(bptr++) = '[';
            *(bptr++) = '-';
            *(bptr++) = ']';
        }
        if (opts & 0x40) {
            *(bptr++) = '+';
        }

        sptr = nptr;
        if (nptr && bptr[-1] != '[') {
            if ((opts & 1) || (bptr[-1] == ']') || ((opts & 8) && !undo)) {
                *(bptr++) = ' ';
                *(bptr++) = '|';
                *(bptr++) = ' ';
            } else {
                *(bptr++) = '|';
            }
        }

        opts &= ~0x40;
        pflen = npflen;
    }

    for (cnt = undo; cnt; cnt--) {
        *(bptr++) = ']';
    }

    if (opts & 4)
        bptr += sprintf(bptr, "=...");

    *bptr = 0;
    return bptr;
}

int Utils_CompareOptionString(const char *a, const char *b, int cased, int sticky) {
    const char *ae;
    const char *be;

    for (ae = a; *ae && *ae != '|'; ae++) {}
    for (be = b; *be && *be != '|'; be++) {}

    if (sticky && (be - b) < (ae - a))
        return 0;

    if (cased) {
        while (a < ae && b < be) {
            if (*a != *b)
                break;
            a++;
            b++;
        }
    } else {
        while (a < ae && b < be) {
            if (my_tolower(*a) != my_tolower(*b))
                break;
            a++;
            b++;
        }
    }

    return (a == ae) && (sticky || b == be);
}