File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 132132# In the Standalone Launcher context menu the situation is similar to the ROM context menu.
133133# The difference is that rom_obj is a Launcher object instance instead of a ROM object.
134134# ------------------------------------------------------------------------------------------------
135+
136+ # This class is used to filter No-Intro BIOS ROMs and MAME BIOS, Devices and Mecanichal machines.
137+ # No-Intro BIOSes are easy to filter, filename starts with '[BIOS]'
138+ # MAME is more complicated. The Offline Scraper includes 3 JSON filenames
139+ # MAME_BIOSes.json
140+ # MAME_Devices.json
141+ # MAME_Mechanical.json
142+ # used to filter MAME machines.
143+ # This class is (will be) used in the ROM Scanner.
144+ class FilterROM (object ):
145+ def __init__ (self , PATHS , settings ):
146+ log_debug ('FilterROM.__init__() BEGIN...' )
147+ self .PATHS = PATHS
148+ self .settings = settings
149+
135150class ScraperFactory (object ):
136151 def __init__ (self , PATHS , settings ):
137- # log_debug('ScraperFactory.__init__() BEGIN ...')
152+ # log_debug('ScraperFactory.__init__() BEGIN...')
138153 self .PATHS = PATHS
139154 self .settings = settings
140155
You can’t perform that action at this time.
0 commit comments