forked from florian-sander/gseen.mod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslang_multitext.c
151 lines (136 loc) · 4.07 KB
/
slang_multitext.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
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
/*
* Copyright (C) 2000,2001 Florian Sander
*
* 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.
*/
struct slang_mt_content {
struct slang_mt_content *next;
struct slang_text *text;
};
struct slang_multitext {
int nr;
struct slang_mt_content *contents;
};
static struct slang_multitext *slang_mtext_add(struct slang_multitext *, char *);
static int slang_multitext_expmem(struct slang_multitext *);
static void slang_multitext_free(struct slang_multitext *);
static char *slang_multitext_getrandomtext(struct slang_multitext *);
#ifndef SLANG_NOTYPES
static struct slang_text *slang_multitext_find(struct slang_multitext *, char *);
#endif
#ifndef SLANG_NOGETALL
static char *slang_multitext_get_first(struct slang_multitext *);
static char *slang_multitext_get_next();
#endif
static struct slang_multitext *slang_mtext_add(struct slang_multitext *where, char *text)
{
struct slang_mt_content *oc, *nc;
if (!where) {
where = nmalloc(sizeof(struct slang_multitext));
where->nr = 0;
where->contents = NULL;
}
nc = nmalloc(sizeof(struct slang_mt_content));
nc->next = NULL;
nc->text = slang_text_parse(text);
for (oc = where->contents; oc && oc->next; oc = oc->next);
if (oc) {
Assert(!oc->next);
oc->next = nc;
} else
where->contents = nc;
where->nr++;
return where;
}
static int slang_multitext_expmem(struct slang_multitext *what)
{
struct slang_mt_content *content;
int size = 0;
if (!what) {
debug0("WARNING! slang_multitext_expmem() called with NULL pointer!");
return 0;
}
size += sizeof(struct slang_multitext);
for (content = what->contents; content; content = content->next) {
size += sizeof(struct slang_mt_content);
size += slang_text_expmem(content->text);
}
return size;
}
static void slang_multitext_free(struct slang_multitext *what)
{
struct slang_mt_content *content, *next;
if (!what) {
debug0("WARNING! slang_multitext_free() called with NULL pointer!");
return;
}
content = what->contents;
while (content) {
next = content->next;
slang_text_free(content->text);
nfree(content);
content = next;
}
nfree(what);
}
static char *slang_multitext_getrandomtext(struct slang_multitext *where)
{
struct slang_mt_content *content;
unsigned long x;
if (!where)
return NULL;
x = random() % where->nr;
for (content = where->contents; content; content = content->next)
if (!x)
return slang_text_get(content->text);
else
x--;
// we should never reach this part
debug0("warning: getrandomtext didn't find anything!");
return NULL;
}
#ifndef SLANG_NOTYPES
static struct slang_text *slang_multitext_find(struct slang_multitext *where, char *what)
{
struct slang_mt_content *content;
Assert(where);
for (content = where->contents; content; content = content->next) {
Assert(content->text);
if (!slang_text_strcasecmp(content->text, what))
return content->text;
}
return NULL;
}
#endif
#ifndef SLANG_NOGETALL
static struct slang_mt_content *glob_mtext_content;
static char *slang_multitext_get_first(struct slang_multitext *where)
{
Assert(where);
glob_mtext_content = where->contents;
if (glob_mtext_content)
return slang_text_get(glob_mtext_content->text);
else
return NULL;
}
static char *slang_multitext_get_next()
{
glob_mtext_content = glob_mtext_content->next;
if (glob_mtext_content)
return slang_text_get(glob_mtext_content->text);
else
return NULL;
}
#endif