1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -07:00
mm/heuristics.py

50 lines
1.4 KiB
Python
Raw Normal View History

2015-03-08 09:52:19 -07:00
def try_makerom(f):
2015-03-04 04:37:37 -08:00
f.seek(0)
2015-03-08 09:52:19 -07:00
if f.read(12) == b'\x80\x37\x12\x40\x00\x00\x00\x0f\x80\x00\x04\x00':
return True
return False
def try_dmadata(f):
f.seek(0)
if f.read(20) == b"\x00\x00\x00\x00\x00\x00\x10\x60\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x60":
return True
return False
def try_actor(f):
2015-03-13 12:16:26 -07:00
# actors are just object files really,
# so anything we can detect with
# would just detect code or inconsistent data.
# maybe there's some common-looking function between them.
return False
2015-03-04 04:37:37 -08:00
2015-03-08 09:52:19 -07:00
def try_scene_or_room(f, bank=2):
2015-03-04 04:37:37 -08:00
# note: doesn't detect syotes_room_0 because it's missing a header
f.seek(0)
while True:
command = f.read(8)
if len(command) == 0:
return False
if command[2:4] != b'\x00\x00':
return False
if command[0] > 0x1e:
return False
2015-03-08 09:52:19 -07:00
if command[4] != bank and command[4] != 0x00:
2015-03-04 04:37:37 -08:00
if command[0] not in (0x05, 0x10, 0x11, 0x12):
return False
if command == b'\x14\x00\x00\x00\x00\x00\x00\x00':
return True
def detect_format(f, fn=None):
2015-03-08 09:52:19 -07:00
if try_makerom(f):
return None
if try_dmadata(f):
return None
if try_actor(f):
return 'actor'
if try_scene_or_room(f, 2):
2015-03-04 04:37:37 -08:00
return 'scene'
2015-03-08 09:52:19 -07:00
if try_scene_or_room(f, 3):
2015-03-04 04:37:37 -08:00
return 'room'
return None