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 11: Line 11:
 
** ''Tile Size:'' 8 tiles of 120x120
 
** ''Tile Size:'' 8 tiles of 120x120
 
** ''Tile Anchor Point:'' 0,0 (no special anchor point required)
 
** ''Tile Anchor Point:'' 0,0 (no special anchor point required)
* '''Variable(s) from libmii:''' mii.faceShape
+
* '''Variable(s) from libmii:'''
** ''Possible Values:''
+
:{| cellpadding="5" cellspacing="0" border="1"
::{| cellpadding="5" cellspacing="0" border="1"
 
 
!align="center"|Variable
 
!align="center"|Variable
 
!align="center"|Possible Values
 
!align="center"|Possible Values
Line 30: Line 29:
 
** ''Tile Size:'' 56 tiles of 120x120
 
** ''Tile Size:'' 56 tiles of 120x120
 
** ''Tile Anchor Point:'' 60,0 (allows for easy horizontal flip for reverse part)
 
** ''Tile Anchor Point:'' 60,0 (allows for easy horizontal flip for reverse part)
* '''Variable(s) from libmii:''' mii.hairType, mii.hairColor, mii.hairPart
+
* '''Variable(s) from libmii:'''  
** ''Possible Values:''
+
:{| cellpadding="5" cellspacing="0" border="1"
::{| cellpadding="5" cellspacing="0" border="1"
 
 
!align="center"|Variable
 
!align="center"|Variable
 
!align="center"|Possible Values
 
!align="center"|Possible Values

Revision as of 04:35, 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:
Variable Possible Values Notes
mii.faceShape 0 - 7 values correspond with order of tiles
  • 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:
Variable Possible Values Notes
mii.hairType 0 - 71 values DO NOT align with order of tiles (see note below)
mii.hairColor 0 - 7 see COLORS section below to get translation
mii.hairPart 0 or 1 0 is normal part, 1 is reversed
  • Notes: two arrays have been created called hairbg[72] and hairfg[72]. See the ARRAYS section below for description of how these work.

Eye Brows

Eyes

Noses

Mouth

Beard

Mustache

Glasses

Facial Features

Mole

Layers

Putting it all together

Example