Line 1:
Line 1:
−
{{Infobox homebrewapp
+
{{Lowercase title}}
−
| title = Libmii
+
{{Infobox development tools
+
| title = libmii
| description = Library
| description = Library
−
| type = Development
+
| type = library
−
| author = [[User:Mjbauer95|Mjbauer95]]
+
| author = [[User:mdbrim|mdbrim]]
−
| version = 0.3c
+
| version = 1.0
−
| download = [http://65.30.72.135/libmii/release/0.3c.tar.gz Here]
+
| download = http://libmii.googlecode.com/files/libmii.zip
−
| source = [http://65.30.72.135/libmii/release/source-0.3c.tar.gz Here] [http://github.com/paradoq/libmii git]
+
| source = http://code.google.com/p/libmii/source/browse/
−
| website = [http://65.30.72.135/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]].
−
'''Libmii''' is an in-development library to allow homebrew developers to use Miis in their applications.
+
== Mii structure ==
+
libmii is based on the structure of this page: [[Mii Data#Mii format]] with a few additions.
−
==Mii structure==
+
== Requirements ==
−
Libmii uses a similar structure to the one on [[Wiimote/Mii_Data#Mii_format|Mii format]]. It is included in the .h file [http://65.30.72.135/libmii/release/0.3c.tar.gz Here].
+
* libisfs (a copy is included within the libmii zip file)
−
==What works==
+
== Installation ==
−
(as of version [http://65.30.72.135/libmii/release/0.3c.tar.gz 0.3c])
+
# Download the zip file.
−
* Name
+
# Put the libmii.a and libisfs.a files in the libogc/lib/wii folder in devKitPro. (or applicable library folder)
−
* Creator
+
# Put the isfs folder and mii.h file in the libogc/include folder in devKitPro. (or applicable include folder)
−
* Birthday
+
# Be sure to add "#include <mii.h>" in your source
−
* Favorite
+
# Edit your MakeFile LIBS: line to include "-lmii" and "-lisfs"
−
* Gender
−
==Example==
+
== Credits ==
−
{{Infobox homebrewapp
+
* Current code: [[User:mdbrim|mdbrim]]
−
| title = Libmii Example
+
* Original code: [[User:Mjbauer95|Mjbauer95]]
−
| type = Demo
+
−
| author = [[User:Mjbauer95|Mjbauer95]]
+
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!)
−
| version = 0.3c
+
−
| download = [http://65.30.72.135/libmii/example/release/0.3c.tar.gz Here]
+
== Example ==
−
| source = [http://65.30.72.135/libmii/example/release/source-0.3c.tar.gz Here] [http://github.com/paradoq/libmii git]
+
Just a [http://libmii.googlecode.com/files/libmiiexample.zip small example] of translating the mii data into variables that can be used in homebrew.
−
| hbc = 1
−
| hbb = 1
−
| peripherals = {{Wiimote}}
−
| website = [http://65.30.72.135/libmii/example]
−
}}
−
There is an example [http://65.30.72.135/libmii/example/release/0.3c.tar.gz here]. The source is also available [http://65.30.72.135/libmii/example/release/source-0.3c.tar.gz here].
−
[[Category:Libraries]]
+
== See also ==
+
* [[:Category:Homebrew using libmii]]