| Games-NES-ROM documentation | view source | Contained in the Games-NES-ROM distribution. |
Games::NES::ROM - View information about an NES game from a ROM file
use Games::NES::ROM;
# Read in the ROM without having to know its format
my $rom = Games::NES::ROM->load( 'file.nes' );
# Specifically read in an iNES file
$rom = Games::NES::ROM::INES->new( filename => 'file.nes' );
# Access the details
print 'PRG Banks: ', $rom->prg_count, "\n";
print 'CHR Banks: ', $rom->prg_count, "\n";
# etc...
# View the SHA-1 & CRC checksums
print 'SHA1: ', $rom->sha1, "\n";
print ' CRC: ', $rom->crc, "\n";
This module loads the details of an NES rom file. It is primarily meant to be used a base class for more specific file formats. Those formats include:
perl Makefile.PL
make
make test
make install
Attemps to read the ROM structure into memory using all available file formats until success.
Returns the number of PRG banks for this ROM.
Returns the number of CHR banks for this ROM.
Returns the SHA-1 checksum for the PRG and CHR data.
Returns the CRC checksum for the PRG and CHR data.
Returns the raw (composite) sprite in the specified CHR bank at the specified array index.
The following base attributes are available for all file formats:
Each file format will have an extended set of attributes specific to its data structure. Please consult their documentation for more information.
Brian Cassidy <bricas@cpan.org>
Copyright 2007-2010 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Games-NES-ROM documentation | view source | Contained in the Games-NES-ROM distribution. |