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
  
175
  
176
  
177
  
178
  
179
  
180
  
181
  
182
  
183
  
184
  
185
  
186
  
187
  
188
  
189
  
190
  
191
  
192
  
193
  
194
  
195
  
196
  
197
  
198
  
199
  
200
  
201
  
202
  
203
  
204
  
205
  
206
  
207
  
208
  
209
  
210
  
211
  
212
  
213
  
214
  
215
  
216
  
217
  
218
  
219
  
220
  
221
  
222
  
223
  
224
  
225
  
226
  
227
  
228
  
229
  
230
  
231
  
232
  
233
  
234
  
235
  
236
  
237
  
238
  
239
  
240
  
241
  
242
  
243
  
244
  
245
  
246
  
247
  
248
  
249
  
250
  
251
  
252
  
253
  
254
  
255
  
256
  
257
  
258
  
259
  
260
  
261
  
262
  
263
  
264
  
265
  
266
  
267
  
268
  
269
  
270
  
271
  
272
  
273
  
274
  
275
  
276
  
277
  
278
  
279
  
280
  
281
  
282
  
#include <module.h> 
object this = this_object(); 
 
mapping (string:mixed *) variables=([]); 
 
object my_configuration() 
{ 
  object conf; 
  foreach(roxen->configurations, conf) 
    if(conf->otomod[this]) 
      return conf; 
  return 0; 
} 
 
string module_creator; 
string module_url; 
 
void set_module_creator(string c) 
{ 
  module_creator = c; 
} 
 
void set_module_url(string to) 
{ 
  module_url = to; 
} 
 
int killvar(string var) 
{ 
  if(!variables[var]) 
    error("Killing undefined variable.\n"); 
  m_delete(variables, var); 
  return 1; 
} 
 
void free_some_sockets_please(){} 
 
void start(void|int num) {} 
string status() {} 
 
string info() 
{  
  return this->register_module()[2]; 
} 
 
// Define a variable, with more than a little error checking... 
varargs int defvar(string var, mixed value, string name, int type, 
                   string doc_str, mixed misc, int|function not_in_config) 
{ 
  if(!strlen(var)) 
    error("No name for variable!\n"); 
 
  if(var[0]=='_' && previous_object() != roxen) 
    error("Variable names beginning with '_' are reserved for" 
          " internal usage.\n"); 
 
  if (!stringp(name)) 
    name = var; 
   
  if (!stringp(doc_str)) 
    doc_str = "No documentation"; 
   
  switch (type & VAR_TYPE_MASK) 
  { 
   case TYPE_TEXT_FIELD: 
   case TYPE_FILE: 
   case TYPE_STRING: 
   case TYPE_LOCATION: 
    if(value && !stringp(value)) 
      error("Passing illegal value to string type variable.\n"); 
    break; 
     
   case TYPE_FLOAT: 
    if(!floatp(value)) 
      error("Passing illegal value (not float) to floating point " 
            "decimal number variable.\n"); 
    break; 
   case TYPE_INT: 
    if(!intp(value)) 
      error("Passing illegal value (not int) to integer number variable.\n"); 
    break; 
 
   case TYPE_MODULE_LIST: 
    value = ({}); 
    break; 
     
   case TYPE_MODULE: 
    /* No default possible */ 
    value = 0; 
    break; 
 
   case TYPE_DIR_LIST: 
     int i; 
     if(!arrayp(value)) 
       error("Illegal type to TYPE_DIR_LIST, must be array.\n"); 
     for(i=0; i<sizeof(value); i++) 
       if(strlen(value[i])) 
       { 
         if(value[i][-1] != '/') 
           value[i] += "/"; 
       } else { 
         value[i]="./"; 
       } 
     break; 
 
   case TYPE_DIR: 
    if(value && !stringp(value)) 
      error("Passing illegal value (not string) to directory variable.\n"); 
 
    if(value && strlen(value) && ((string)value)[-1] != '/') 
      value+="/"; 
    break; 
     
   case TYPE_INT_LIST: 
   case TYPE_STRING_LIST: 
    if(!misc && value && !arrayp(value)) 
      error("Passing illegal misc (not array) to multiple choice variable.\n"); 
    if(misc && !arrayp(misc)) 
      error("Passing illegal misc (not array) to multiple choice variable.\n"); 
    if(misc && search(misc, value)==-1) 
      error("Passing value passed not present in the misc array.\n"); 
    break; 
     
   case TYPE_FLAG: 
    value=!!value; 
    break; 
     
   case TYPE_ERROR: 
    break; 
 
   case TYPE_COLOR: 
    if (!intp(value)) 
      error("Passing illegal value (not int) to color variable.\n"); 
    break; 
     
   default: 
    error("Illegal type ("+type+") in defvar.\n"); 
  } 
 
  variables[var]=allocate( VAR_SIZE ); 
  if(!variables[var]) 
    error("Out of memory in defvar.\n"); 
  variables[var][ VAR_VALUE ]=value; 
  variables[var][ VAR_TYPE ]=type&VAR_TYPE_MASK; 
  variables[var][ VAR_DOC_STR ]=doc_str; 
  variables[var][ VAR_NAME ]=name; 
  if((type&~VAR_TYPE_MASK) & VAR_EXPERT) 
    variables[var][ VAR_CONFIGURABLE ] = VAR_EXPERT; 
  else 
    if(intp(not_in_config)) 
      variables[var][ VAR_CONFIGURABLE ]= !not_in_config; 
    else if(functionp(not_in_config)) 
      variables[var][ VAR_CONFIGURABLE ]= not_in_config; 
  variables[var][ VAR_MISC ]=misc; 
  variables[var][ VAR_SHORTNAME ]= var; 
} 
 
 
// Convenience function, define an invissible variable, this variable 
// will be saved, but it won't be vissible in the configuration interface. 
int definvisvar(string name, int value, int type, array|void misc) 
{ 
  return defvar(name, value, "", type, "", misc, 1); 
} 
 
string check_variable( string s, mixed value ) 
{ 
  // Check if `value' is O.K. to store in the variable `s'.  If so, 
  // return 0, otherwise return a string, describing the error. 
 
  return 0; 
} 
 
varargs mixed query(string var, int ok) 
{ 
  if(var) 
    if(variables[var]) 
      return variables[var][VAR_VALUE]; 
    else if(!ok) 
      error("Querying undefined variable.\n"); 
 
  return variables; 
} 
 
void set_module_list(string var, string what, object to) 
{ 
  int p; 
  p = search(variables[var][VAR_VALUE], what); 
  if(p == -1) 
  { 
#ifdef MODULE_DEBUG 
    perror("The variable '"+var+"': '"+what+"' found by hook.\n"); 
    perror("Not found in variable!\n"); 
#endif 
  } else  
    variables[var][VAR_VALUE][p]=to; 
} 
 
void set(string var, mixed value) 
{ 
  if(!variables[var]) 
    error( "Setting undefined variable.\n" ); 
  else 
    if(variables[var][VAR_TYPE] == TYPE_MODULE && stringp(value)) 
      roxen->register_module_load_hook( value, set, var ); 
    else if(variables[var][VAR_TYPE] == TYPE_MODULE_LIST) 
    { 
      variables[var][VAR_VALUE]=value; 
      if(arrayp(value)) 
        foreach(value, value) 
          if(stringp(value)) 
            roxen->register_module_load_hook(value,set_module_list,var,value); 
    } 
    else 
      variables[var][VAR_VALUE]=value; 
} 
 
int setvars( mapping (string:mixed) vars ) 
{ 
  string v; 
  int err; 
 
  foreach( indices( vars ), v ) 
    if(variables[v]) 
      set( v, vars[v] ); 
  return !err; 
} 
 
 
string comment() 
{ 
  return ""; 
} 
 
/* 
 * Parse and return a parsed version of the security levels for this module 
 * 
 */ 
 
array query_seclevels() 
{ 
  string sl, sec; 
  array patterns=({ }); 
 
  if(catch(query("_seclevels"))) 
    return patterns; 
   
  foreach(replace(query("_seclevels"),({" ","\t","\\\n"}),({"","",""}))/"\n",sl) 
  { 
    if(!strlen(sl) || sl[0]=='#') 
      continue; 
    string type, value; 
    if(sscanf(sl, "%s=%s", type, value)==2) 
    { 
      value = replace(value, ({ "?", ".", "*" }), ({ ".", "\.", ".*" })); 
      switch(type) 
      { 
      case "allowip": 
        patterns += ({ ({ MOD_ALLOW, new(Regexp, value)->match, }) }); 
        break; 
 
      case "denyip": 
        patterns += ({ ({ MOD_DENY, new(Regexp,value)->match, }) }); 
        break; 
 
      case "allowuser": 
        value = replace("("+(value/",")*")|("+")","(any)","(.*)"); 
        patterns += ({ ({ MOD_USER, new(Regexp, value)->match, }) }); 
        break; 
      } 
    } 
  } 
  return patterns; 
} 
 
 
mixed stat_file(string f, object id){} 
mixed find_dir(string f, object id){} 
mixed real_file(string f, object id){}