In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Libmii/Rendering Miis"

From WiiBrew
Jump to navigation Jump to search
Line 7: Line 7:
  
 
=== Face Shape ===
 
=== Face Shape ===
* '''Image File(s):''' mii_heads.png (contains the 8 different face shapes used by the Miis)
+
* '''Image File(s):''' mii_heads.png (contains the 8 different face shapes)
 
** ''Image Size:'' 480x240
 
** ''Image Size:'' 480x240
 
** ''Tile Size:'' 8 tiles of 120x120
 
** ''Tile Size:'' 8 tiles of 120x120
Line 13: Line 13:
 
* '''Variable(s) from libmii:''' mii.faceShape
 
* '''Variable(s) from libmii:''' mii.faceShape
 
** ''Possible Values:''  
 
** ''Possible Values:''  
::{| cellspacing="0" border="1"
+
::{| cellpadding="5" cellspacing="0" border="1"
 
!align="center"|Variable
 
!align="center"|Variable
 
!align="center"|Possible Values
 
!align="center"|Possible Values
 
|-
 
|-
|mii.faceShape
+
!align="center"|mii.faceShape
|0 - 7  
+
!align="center"|0 - 7  
 
|}
 
|}
 
* '''Notes:'''
 
* '''Notes:'''
  
 
=== Hair ===
 
=== Hair ===
* '''Image File(s):''' mii_heads.png (contains the 8 different face shapes used by the Miis)
+
* '''Image File(s):''' mii_hairs1.png, mii_hairs2.png (contains the parts for the 72 different hair styles)
** ''Image Size:'' 480x240
+
** ''Image Size:'' 2 files of 960x840
** ''Tile Size:'' 8 tiles of 120x120
+
** ''Tile Size:'' 56 tiles of 120x120
** ''Tile Anchor Point:'' 0,0 (no special anchor point required)
+
** ''Tile Anchor Point:'' 60,0 (allows for easy horizontal flip for reverse part)
* '''Variable(s) from libmii:''' mii.faceShape
+
* '''Variable(s) from libmii:''' mii.hairType, mii.hairColor, mii.hairPart
** ''Possible Values:'' 0 - 7 (corresponds to the order of tiles in mii_heads.png)
+
** ''Possible Values:''  
 +
::{| cellpadding="5" cellspacing="0" border="1"
 +
!align="center"|Variable
 +
!align="center"|Possible Values
 +
|-
 +
!align="center"|mii.hairType
 +
!align="center"|0 - 71
 +
|-
 +
!align="center"|mii.hairColor
 +
!align="center"|0 - 7
 +
|-
 +
!align="center"|mii.hairPart
 +
!align="center"|0 or 1
 +
|}
 
* '''Notes:'''
 
* '''Notes:'''
  

Revision as of 04:22, 6 April 2010

This page is for describing how to use libmii to draw your Miis. The goal will be to eventually have instructions and directions for use with each of the popular graphics library and a raw example not requiring a library.

I'll also post the standard basic arrangement of each sprite so that users can easily create the commands for the graphics library of choice.

Body Parts

The following discusses each of the body parts and how to arrange each sprite as far as location, size, and rotation and where the anchor fix for each sprite should be in order to scale and rotate around the correct coordinates. The sprite files can be found (insert sprite link here)

Face Shape

  • Image File(s): mii_heads.png (contains the 8 different face shapes)
    • Image Size: 480x240
    • Tile Size: 8 tiles of 120x120
    • Tile Anchor Point: 0,0 (no special anchor point required)
  • Variable(s) from libmii: mii.faceShape
    • Possible Values:
Variable Possible Values
mii.faceShape 0 - 7
  • Notes:

Hair

  • Image File(s): mii_hairs1.png, mii_hairs2.png (contains the parts for the 72 different hair styles)
    • Image Size: 2 files of 960x840
    • Tile Size: 56 tiles of 120x120
    • Tile Anchor Point: 60,0 (allows for easy horizontal flip for reverse part)
  • Variable(s) from libmii: mii.hairType, mii.hairColor, mii.hairPart
    • Possible Values:
Variable Possible Values
mii.hairType 0 - 71
mii.hairColor 0 - 7
mii.hairPart 0 or 1
  • Notes:

Eye Brows

Eyes

Noses

Mouth

Beard

Mustache

Glasses

Facial Features

Mole

Layers

Putting it all together

Example