forked from ThunderGemios10/The-Super-Duper-Script-Editor-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheboot_text.py
74 lines (58 loc) · 2.19 KB
/
eboot_text.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
################################################################################
### Copyright © 2012-2013 BlackDragonHunt
###
### This file is part of the Super Duper Script Editor.
###
### The Super Duper Script Editor 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 3 of the License,
### or (at your option) any later version.
###
### The Super Duper Script Editor 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 the Super Duper Script Editor.
### If not, see <http://www.gnu.org/licenses/>.
################################################################################
from bitstring import ConstBitStream
import codecs
from csv import DictReader, DictWriter
import common
CSV_FILE = common.editor_config.eboot_text
class EbootText():
def __init__(
self,
pos = ConstBitStream(),
orig = u"",
text = u"",
enc = "UTF-8",
):
self.pos = pos
self.orig = orig
self.text = text
self.enc = enc
def get_eboot_text():
eboot_csv = DictReader(open(CSV_FILE, 'rb'))
eboot_text = []
for row in eboot_csv:
pos = ConstBitStream(hex = row['Position'])
orig = row['Orig'].decode("UTF-8")
text = row['Text'].decode("UTF-8")
enc = row['Encoding'].decode("UTF-8")
line = EbootText(pos, orig, text, enc)
eboot_text.append(line)
return eboot_text
def text_to_csv(eboot_text):
eboot_csv = DictWriter(open(CSV_FILE, 'wb'), fieldnames = ['Position', 'Orig', 'Text', 'Encoding'])
eboot_csv.writerow({'Position':'Position', 'Orig':'Orig', 'Text':'Text', 'Encoding':'Encoding'})
for line in eboot_text:
row = {}
row['Position'] = line.pos.hex
row['Orig'] = line.orig.encode("UTF-8")
row['Text'] = line.text.encode("UTF-8")
row['Encoding'] = line.enc.encode("UTF-8")
eboot_csv.writerow(row)
### EOF ###