-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_io.py
38 lines (32 loc) · 1.14 KB
/
file_io.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
from tkinter import filedialog, messagebox
import ntpath
class FileIO:
def __init__(self, interpreter):
"""Class for handling reading/writing to files"""
self.interpreter = interpreter
self.file_open = False
self.rom = ''
self.filename = ''
return
def open(self):
self.filename = filedialog.askopenfilename(title='Choose your Game')
# Strip file string from path string
if not isinstance(self.filename, str):
return
self.rom = ntpath.basename(self.filename)
# Open in binary mode
try:
with open(self.filename, 'rb') as file:
self.interpreter.load_program_to_memory(file)
self.file_open = True
except IOError as error:
if self.interpreter.debug:
print(error)
messagebox.showerror("ROM Error", "Couldn't open file")
self.file_open = False
def save_state(self):
"""Save the interpreter state"""
return
def load_state(self):
"""Load a saved interpreter state"""
return