-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrleReader.py
executable file
·112 lines (96 loc) · 2.56 KB
/
rleReader.py
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
#!/usr/bin/python
'''
Syntax:
./rleReader.py <infile> <outfile> <padding>
where:
<infile> is the .rle input file, probably generated by Golly. Note that this
file is assumed to be a standard (not extended) .rle file using the B3/S23
rule set. If this is not the case, the rleReader may still work, but I
make no promises.
<outfile> is the (ascii text) file to which the data will be written.
<padding> is a positive integer specifying the width/height of a buffer region
of '0' values that will be appended to the domain.
'''
import random
import numpy as np
import sys
import re
infilename = 'life.rle'
outfilename = 'out.txt'
padding = 10
#get file name from call arguments
if len(sys.argv) >= 2:
infilename = sys.argv[1]
if len(sys.argv) >= 3:
outfilename = sys.argv[2]
#get padding amount
if len(sys.argv) >= 4:
padding = int(sys.argv[3])
#parse file into separate strings for each line
with open(infilename) as f:
data = f.readlines()
#remove any leading comment lines
while len(data) > 0 and (data[0].strip() == '' or data[0].startswith('#')):
data = data[1:]
#check that the first line is the dimensions line
if re.search("x\W*=\W*\d+", data[0].lower()) is None or re.search("y\W*=", data[0].lower()) is None:
print 'invalid dimensions line!'
exit()
xmatch = re.findall("x\W*=\W*\d+", data[0].lower())
ymatch = re.findall("y\W*=\W*\d+", data[0].lower())
nx = int(re.findall("\d+",xmatch[0])[0])
ny = int(re.findall("\d+",ymatch[0])[0])
print nx, ny
gridString = ''
for line in data[1:]:
gridString += line.strip()
gsData = re.findall("\d*o|\d*b|\$|!",gridString)
with open(outfilename,'w') as f:
rc = 0
cc = 0
f.write(str(nx + 2 * padding) + ' ' + str(ny + 2 * padding) + '\n')
for i in range(padding):
for j in range(2 * padding + nx):
f.write('0')
f.write('\n')
for i in range(padding):
f.write('0')
for run in gsData:
if run.endswith('b'):
length = 1
if len(run) > 1:
length = int(run[:-1])
for i in range(length):
f.write('0')
cc += length
elif run.endswith('o'):
length = 1
if len(run) > 1:
length = int(run[:-1])
for i in range(length):
f.write('1')
cc += length
elif '$' in run:
while cc < nx:
f.write('0')
cc += 1
for i in range(padding):
f.write('0')
f.write('\n')
for i in range(padding):
f.write('0')
cc = 0
rc += 1
elif '!' in run:
while cc < nx:
f.write('0')
cc += 1
for i in range(padding):
f.write('0')
f.write('\n')
cc = 0
rc += 1
for i in range(padding):
for j in range(2 * padding + nx):
f.write('0')
f.write('\n')