-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnut_fileutil.nut
438 lines (371 loc) · 8.93 KB
/
nut_fileutil.nut
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
///////////////////////////////////////////////////
//
// Attract-Mode Frontend - History.dat plugin
//
// File utilities
//
///////////////////////////////////////////////////
const AF_READ_BLOCK_SIZE=80960
local af_next_ln_overflow=""
local af_idx_path = FeConfigDirectory + "history.idx/"
local af_idx_command_path = FeConfigDirectory + "command.idx/"
local af_loaded_idx = {}
//
// Write a single line of output to f
//
function af_write_ln( f, line )
{
local b = blob( line.len() )
for (local i=0; i<line.len(); i++)
b.writen( line[i], 'b' )
f.writeblob( b )
}
//
// Get a single line of input from f
//
function af_get_next_ln( f )
{
local ln = af_next_ln_overflow
af_next_ln_overflow=""
while ( !f.eos() )
{
local char = f.readn( 'b' )
if ( char == '\n' )
return strip( ln )
ln += char.tochar()
}
af_next_ln_overflow=ln
return ""
}
//
// Scan through f and return the next line starting with a "$"
//
function af_scan_for_ctrl_ln( f )
{
local char
while ( !f.eos() )
{
char = f.readn( 'b' )
if (( char == '\n' ) && ( !f.eos() ))
{
char = f.readn( 'b' )
if ( char == '$' )
{
af_next_ln_overflow="$"
return af_get_next_ln( f )
}
}
}
return ""
}
//
// Generate our command.dat index files
//
function af_generate_command_index( prf )
{
local histf_name = fe.path_expand( prf.DAT_COMMAND_PATH )
local histf
try
{
histf = file( histf_name, "rb" )
}
catch ( e )
{
return "Error opening file: " + histf_name
}
local datatable = {}
local last_per=0
//
// Get an index for all the entries in history.dat
//
while ( !histf.eos() )
{
local newline = af_get_next_ln(histf)
if (newline.find ("### Mame Command Reference ###") != null) {
break
}
if (newline.find("$info=") != null) {
local romnames = newline.slice(6,newline.len())
local romarray = split(romnames,",")
local templine = ""
while ((templine != "«Buttons»") && (templine != "- CONTROLS -")){
templine = af_get_next_ln(histf)
}
templine = "0"
local separatorline = af_get_next_ln(histf)
local commandarray = []
while ((templine != separatorline) && (templine.len() > 0)){
templine = af_get_next_ln(histf)
if ((templine != separatorline) && (templine.len() > 0) ) {
try{
local arr = split(templine,":")
if ((strip(arr[0]) != "_S") && (strip(arr[0]) != "^S")) commandarray.push( strip(split(arr[1],"(")[0]) )
} catch(err){}
}
}
for (local i = 0 ; i < romarray.len();i++){
datatable[romarray[i]] <- commandarray
}
}
// Update the user with the percentage complete
local percent = 100.0 * ( histf.tell().tofloat() / histf.len().tofloat() )
if ( percent.tointeger() > last_per )
{
last_per = percent.tointeger()
if ( fe.overlay.splash_message(
"Generating index ("
+ last_per + "%)" ) )
break
}
}
//
// Make sure the directory we are writing to exists...
//
system( "mkdir \"" + af_idx_command_path + "\"" )
fe.overlay.splash_message( "Writing index file." )
local idx = file( af_idx_command_path + "info.idx", "w" )
foreach (item,val in datatable){
local str0 = item+"|"
for (local i = 0 ; i < val.len();i++){
str0 = str0 + val[i]+"|"
}
af_write_ln(idx, str0+"\n" )
}
idx.close()
histf.close()
return "Created index in " + af_idx_path
}
function af_create_command_table(){
local table = {}
local histf = null
try {histf = file ( af_idx_command_path + "info.idx", "rb" )} catch(err) {return(null)}
while ( !histf.eos() ){
local templine = af_get_next_ln( histf )
local temparray = split(templine,"|")
local tempname = temparray[0]
temparray.remove(0)
table[tempname] <- temparray
}
return table
}
//
// Return the text for the history.dat entry after the given offset
//
function af_get_command_entry( offset, prf )
{
local skiplines = 0
local histf = file ( prf.DAT_PATH, "rb" )
histf.seek( offset )
local entry = ""
local open_entry = false
while ( !histf.eos() )
{
local blb = histf.readblob( AF_READ_BLOCK_SIZE )
while ( !blb.eos() )
{
local line = af_get_next_ln( blb )
if ( !open_entry )
{
//
// forward to the $bio tag
//
if (( line.len() < 1 ) || ( line != "$bio" )) continue
open_entry = true
}
else
{
if (( line == "$end" ) || (line == "- CONTRIBUTE -"))
{
entry += "\n\n"
return entry
}
else if (!(blb.eos() && ( line == "" )))
skiplines ++
if (skiplines > 3) entry += line + "\n"
}
}
}
return entry
}
//
// Generate our history.dat index files
//
function af_generate_index( prf )
{
local histf_name = fe.path_expand( prf.DAT_PATH )
local histf
try
{
histf = file( histf_name, "rb" )
}
catch ( e )
{
return "Error opening file: " + histf_name
}
local indices = {}
local last_per=0
//
// Get an index for all the entries in history.dat
//
while ( !histf.eos() )
{
local base_pos = histf.tell()
local blb = histf.readblob( AF_READ_BLOCK_SIZE )
// Update the user with the percentage complete
local percent = 100.0 * ( histf.tell().tofloat() / histf.len().tofloat() )
if ( percent.tointeger() > last_per )
{
last_per = percent.tointeger()
if ( fe.overlay.splash_message(
"Generating index ("
+ last_per + "%)" ) )
break
}
while ( !blb.eos() )
{
local line = af_scan_for_ctrl_ln( blb )
if ( line.len() < 5 ) // skips $bio, $end
continue
local eq = line.find( "=", 1 )
if ( eq != null )
{
local systems = split( line.slice(1,eq), "," )
local roms = split( line.slice(eq+1), "," )
foreach ( s in systems )
{
if ( !indices.rawin( s ) )
indices[ s ] <- {}
if ( prf.INDEX_CLONES )
{
foreach ( r in roms )
(indices[ s ])[ r ]
<- ( base_pos + blb.tell() )
}
else if ( roms.len() > 0 )
{
(indices[ s ])[ roms[0] ]
<- ( base_pos + blb.tell() )
}
}
}
}
}
//
// Make sure the directory we are writing to exists...
//
system( "mkdir \"" + af_idx_path + "\"" )
fe.overlay.splash_message( "Writing index file." )
//
// Now write an index file for each system encountered
//
foreach ( n,l in indices )
{
local idx = file( af_idx_path + n + ".idx", "w" )
foreach ( rn,ri in l )
af_write_ln( idx, rn + ";" + ri + "\n" )
idx.close()
}
histf.close()
return "Created index for " + indices.len()
+ " systems in " + af_idx_path
}
//
// Return the text for the history.dat entry after the given offset
//
function af_get_history_entry( offset, prf )
{
local skiplines = 0
local histf = file ( prf.DAT_PATH, "rb" )
histf.seek( offset )
local skiplinelimit = 3
local entry = ""
local open_entry = false
while ( !histf.eos() )
{
local blb = histf.readblob( AF_READ_BLOCK_SIZE )
while ( !blb.eos() )
{
local line = af_get_next_ln( blb )
if ( !open_entry )
{
//
// forward to the $bio tag
//
if (( line.len() < 1 ) || ( line != "$bio" )) continue
open_entry = true
}
else
{
if (( line == "$end" ) || (line == "- CONTRIBUTE -"))
{
entry += "\n\n"
return entry
}
else if (!(blb.eos() && ( line == "" )))
if (line.find("years ago") != null){
skiplinelimit = 5
}
skiplines ++
if (skiplines > skiplinelimit) entry += line + "\n"
}
}
}
return entry
}
//
// Load the index for the given system if it is not already loaded
//
function af_load_index( sys )
{
// check if system index already loaded
//
if ( af_loaded_idx.rawin( sys ) )
return true
local idx
try
{
idx = file( af_idx_path + sys + ".idx", "r" )
}
catch( e )
{
af_loaded_idx[sys] <- null
return false
}
af_loaded_idx[sys] <- {}
while ( !idx.eos() )
{
local blb = idx.readblob( AF_READ_BLOCK_SIZE )
while ( !blb.eos() )
{
local line = af_get_next_ln( blb )
local bits = split( line, ";" )
if ( bits.len() > 0 )
(af_loaded_idx[sys])[bits[0]] <- bits[1].tointeger()
}
}
return true
}
//
// Return the index the history.dat entry for the specified system and rom
//
function af_get_history_offset( sys, rom, alt, cloneof )
{
foreach ( s in sys )
{
if (( af_load_index( s ) )
&& ( af_loaded_idx[s] != null ))
{
if ( af_loaded_idx[s].rawin( rom ) )
return (af_loaded_idx[s])[rom]
else if ((alt.len() > 0 )
&& ( af_loaded_idx[s].rawin( alt ) ))
return (af_loaded_idx[s])[alt]
else if ((cloneof.len() > 0 )
&& ( af_loaded_idx[s].rawin( cloneof ) ))
return (af_loaded_idx[s])[cloneof]
}
}
if (( sys.len() != 1 ) || ( sys[0] != "info" ))
return af_get_history_offset( ["info"], rom, alt, cloneof )
return -1
}