Games::Nintendo::Wii::Mii - Mii in Nintendo Wii data parser and builder.


Games-Nintendo-Wii-Mii documentation  | view source Contained in the Games-Nintendo-Wii-Mii distribution.

Index


NAME

Top

Games::Nintendo::Wii::Mii - Mii in Nintendo Wii data parser and builder.

VERSION

Top

version 0.02

SYNOPSIS

Top

    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

Top

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

Top

Toru Yamaguchi, <zigorou@cpan.org>

SEE ALSO

Top

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

Top

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

Top


Games-Nintendo-Wii-Mii documentation  | view source Contained in the Games-Nintendo-Wii-Mii distribution.