Difference between revisions of "Libmii"
Jump to navigation
Jump to search
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Lowercase title}} | ||
{{Infobox development tools | {{Infobox development tools | ||
− | | title = | + | | title = libmii |
| description = Library | | description = Library | ||
| type = library | | type = library | ||
Line 6: | Line 7: | ||
| version = 1.0 | | version = 1.0 | ||
| download = http://libmii.googlecode.com/files/libmii.zip | | download = http://libmii.googlecode.com/files/libmii.zip | ||
− | | source = http://code.google.com/p/libmii/ | + | | source = http://code.google.com/p/libmii/source/browse/ |
| website = http://code.google.com/p/libmii/ | | website = http://code.google.com/p/libmii/ | ||
}} | }} | ||
− | ''' | + | '''libmii''' is a library for use with Nintendo Wii homebrew. It allows programmers to access the Mii data on the Wii and use it in homebrew applications. Libmii retrieves the raw data associated with each mii on your wii. To use this data to draw your miis, please see [[libmii/Rendering Miis]]. |
== Mii structure == | == Mii structure == | ||
− | + | libmii is based on the structure of this page: [[Mii Data#Mii format]] with a few additions. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Requirements == | == Requirements == | ||
− | |||
* libisfs (a copy is included within the libmii zip file) | * libisfs (a copy is included within the libmii zip file) | ||
== Installation == | == Installation == | ||
− | |||
# Download the zip file. | # Download the zip file. | ||
− | # Put the libmii.a and libisfs.a files in the libogc/lib/wii folder in devKitPro. | + | # Put the libmii.a and libisfs.a files in the libogc/lib/wii folder in devKitPro. (or applicable library folder) |
− | # Put the isfs folder and mii.h file in the libogc/include folder in devKitPro. | + | # Put the isfs folder and mii.h file in the libogc/include folder in devKitPro. (or applicable include folder) |
# Be sure to add "#include <mii.h>" in your source | # Be sure to add "#include <mii.h>" in your source | ||
# Edit your MakeFile LIBS: line to include "-lmii" and "-lisfs" | # Edit your MakeFile LIBS: line to include "-lmii" and "-lisfs" | ||
Line 40: | Line 32: | ||
== Example == | == Example == | ||
− | + | Just a [http://libmii.googlecode.com/files/libmiiexample.zip small example] of translating the mii data into variables that can be used in homebrew. | |
+ | |||
+ | == See also == | ||
+ | * [[:Category:Homebrew using libmii]] |
Latest revision as of 13:29, 24 August 2011
libmii | |
General | |
---|---|
Author(s) | mdbrim |
Type | Library |
Version | 1.0 |
Links | |
Download | |
Website | |
Source |
libmii is a library for use with Nintendo Wii homebrew. It allows programmers to access the Mii data on the Wii and use it in homebrew applications. Libmii retrieves the raw data associated with each mii on your wii. To use this data to draw your miis, please see libmii/Rendering Miis.
Mii structure
libmii is based on the structure of this page: Mii Data#Mii format with a few additions.
Requirements
- libisfs (a copy is included within the libmii zip file)
Installation
- Download the zip file.
- Put the libmii.a and libisfs.a files in the libogc/lib/wii folder in devKitPro. (or applicable library folder)
- Put the isfs folder and mii.h file in the libogc/include folder in devKitPro. (or applicable include folder)
- Be sure to add "#include <mii.h>" in your source
- Edit your MakeFile LIBS: line to include "-lmii" and "-lisfs"
Credits
Special thanks to Matthew Bauer for starting this project... without his framework and initial versions of Libmii, this working product would not have been possible (or at least have taken me a LOT longer to do!)
Example
Just a small example of translating the mii data into variables that can be used in homebrew.