NAME
Games::Nintendo::Wii::Mii - Mii in Nintendo Wii data parser and builder.
VERSION
version 0.02
SYNOPSIS
use Games::Nintendo::Wii::Mii;
my $mii = Games::Nintendo::Wii::Mii->new;
$mii->parse_from_file('zigorou.mii');
$mii->profile->name("ZIGOROU");
$mii->profile->creator_name("TORU");
$mii->save_to_file("new_zigorou.mii");
print $mii->to_xml();
METHODS
new()
Constructor.
parse_from_file($filename)
Parse mii data from mii binary file.
parse_from_binary($binary)
Parse mii data from mii binary.
parse_from_hex($hex)
Parse mii data from mii binary hexdump.
parse_from_xml_file($xml_file)
Parse mii data from xml file.
parse_from_xml_string($xml_string)
Parse mii data from xml string.
parse_from_xml($doc)
Parse mii data from xml document object (See XML::LibXML::Document)
save_to_file($filename)
Save mii binary to file.
save_to_xml_file($filename)
Save mii xml to file.
to_binary()
To binary data.
to_hexdump()
To hexdump.
to_xml()
To xml.
to_edit_url()
To online editable url powered by MiiEditor http://www.miieditor.com/
to_view_url()
To online viewable url powered by MiiEditor http://www.miieditor.com/
AUTHOR
Toru Yamaguchi, <zigorou@cpan.org>
SEE ALSO
- Mii Data Structure
-
Describe mii data format, see below.
http://wiibrew.org/index.php?title=Wiimote/Mii_Data
- Mii Editor
-
Online mii data editor created by flash and php.
http://www.miieditor.com/
This module use DTD and editor, viewer created by miieditor.com. Thanks a lot.
- Carp
- Encode
- File::Slurp
- IO::File
- Readonly
- Tie::IxHash
- URI
- XML::LibXML
BUGS
Please report any bugs or feature requests to bug-games-nintendo-wii-mii@rt.cpan.org
, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT & LICENSE
Copyright 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.