Como parece que todavía falta algún tiempo para poder descargar temas online (si es que es posible algún día) encontre por ahí el script del glovepie que permite jugar al frets of fire con la guitarra de la versión wii en el pc.
Cortesía de mdvalenz de foro wiili.org
FoF - WiiGuitar.PIE
Code:
// 2-Player WiiGuitar script for FoF
// Created by Mario Valenzuela
// Adapted from Marc-Andre Larouche's ZNES script
// Thanks to jlaudio7 for the key mapping
// Feel free to modify this script to use the WiiGuitar for another purpose
// Player 1 settings
// WiiGuitar button mapping
// Strumming
Enter = Wiimote1.Classic.Down
RightShift = Wiimote1.Classic.Up
// Frets
F1 = Wiimote1.Classic.a
F2 = Wiimote1.Classic.b
F3 = Wiimote1.Classic.x
F4 = Wiimote1.Classic.y
F5 = Wiimote1.Classic.ZL
// Face buttons
// Switch if you want the other button to be cancel
Escape = Wiimote1.Classic.Plus
//Escape = Wiimote1.Classic.Minus
// Whammy bar
// Only shows % depressed in the debug window
var.rAnalog1 = Wiimote1.Classic.R * 100
// These don't map to anything on the WiiGuitar
// = Wiimote1.Classic.Left
// = Wiimote1.Classic.Right
// = Wiimote1.Classic.Home
// = Wiimote1.Classic.ZR
// = Wiimote1.Classic.L
// Right analog stick
// Analog stick for movement in FoF
Left = Wiimote1.Classic.Joy1X <= -25%
Right = Wiimote1.Classic.Joy1X >= 25%
Up = Wiimote1.Classic.Joy1Y <= -25%
Down = Wiimote1.Classic.Joy1Y >= 25%
// Wiimote button mapping
// Glovepie uses
Shift+P+I+E = Wiimote1.Home
// Unused Wiimote buttons, if you want to map anything to them
// = Wiimote1.Down
// = Wiimote1.Left
// = Wiimote1.Right
// = Wiimote1.Up
// = Wiimote1.A
// = Wiimote1.B
// = Wiimote1.Plus
// = Wiimote1.Minus
// = Wiimote1.One
// = Wiimote1.Two
// LEDs
Wiimote1.LED1 = true;
Wiimote1.LED2 = false;
Wiimote1.LED3 = false;
Wiimote1.LED4 = false;
// Player 2 settings
// WiiGuitar button mapping
// Strumming
PageDown = Wiimote2.Classic.Down
PageUp = Wiimote2.Classic.Up
// Frets
F8 = Wiimote2.Classic.a
F9 = Wiimote2.Classic.b
F10 = Wiimote2.Classic.x
F11 = Wiimote2.Classic.y
F12 = Wiimote2.Classic.ZL
// Face buttons
// Switch if you want the other button to be cancel
F7 = Wiimote2.Classic.Plus
//F7 = Wiimote2.Classic.Minus
// Whammy bar
// Only shows % depressed in the debug window
var.rAnalog2 = Wiimote2.Classic.R * 100
// These don't map to anything on the WiiGuitar
// = Wiimote2.Classic.Left
// = Wiimote2.Classic.Right
// = Wiimote2.Classic.Home
// = Wiimote2.Classic.ZR
// = Wiimote2.Classic.L
// Right analog stick
// Analog stick for movement
Left = Wiimote2.Classic.Joy1X <= -25%
Right = Wiimote2.Classic.Joy1X >= 25%
Up = Wiimote2.Classic.Joy1Y <= -25%
Down = Wiimote2.Classic.Joy1Y >= 25%
// Wiimote button mapping
// Glovepie uses
Shift+P+I+E = Wiimote2.Home
// Unused Wiimote buttons, if you want to map anything to them
// = Wiimote2.Down
// = Wiimote2.Left
// = Wiimote2.Right
// = Wiimote2.Up
// = Wiimote2.A
// = Wiimote2.B
// = Wiimote2.Plus
// = Wiimote2.Minus
// = Wiimote2.One
// = Wiimote2.Two
// LEDs
Wiimote2.LED1 = false;
Wiimote2.LED2 = true;
Wiimote2.LED3 = false;
Wiimote2.LED4 = false;
Debug = var.rAnalog1 + " " + var.rAnalog2
// Possible additions
// Accelerometer for activating star power if FoF adds the feature
// Rumble for star power if FoF adds the feature
// Rumble and sound for missed note
// Whammy bar information going to outside program
Funcionando para 1player y pendiente de probar las opciones para dos jugadores.