mirror of
https://github.com/mogzol/sharpii.git
synced 2024-11-14 06:35:05 +01:00
bc65416cf7
- You can now download an IOS with -ios # in NUSD - Downloaded IOS wads are now named like so: IOS##-64-####.wad - Under certain conditions, when downloading a wad with NUS, it will not be saved in a folder, just as the WAD (see ReadMe) - If missing dll's are detected (WadInstaller or libWiiSharp), Sharpii will ask to download them, if they are required. - You can now use a .dol file instead of a .wad with the '-dol' in the WAD editor/packer - Probably a few other little things I have forgotten - Even more code cleanup and bug fixes
82 lines
1.2 KiB
C
82 lines
1.2 KiB
C
#include <stdio.h>
|
|
#include <ogcsys.h>
|
|
|
|
#include "sys.h"
|
|
#include "wpad.h"
|
|
|
|
/* Constants */
|
|
#define MAX_WIIMOTES 4
|
|
|
|
|
|
void __Wpad_PowerCallback(s32 chan)
|
|
{
|
|
/* Poweroff console */
|
|
Sys_Shutdown();
|
|
}
|
|
|
|
|
|
s32 Wpad_Init(void)
|
|
{
|
|
s32 ret;
|
|
|
|
/* Initialize GC Pads */
|
|
|
|
ret = PAD_Init();
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
/* Initialize Wiimote subsystem */
|
|
ret = WPAD_Init();
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
/* Set POWER button callback */
|
|
WPAD_SetPowerButtonCallback(__Wpad_PowerCallback);
|
|
|
|
return ret;
|
|
}
|
|
|
|
void Wpad_Disconnect(void)
|
|
{
|
|
u32 cnt;
|
|
|
|
/* Disconnect Wiimotes */
|
|
for (cnt = 0; cnt < MAX_WIIMOTES; cnt++)
|
|
WPAD_Disconnect(cnt);
|
|
|
|
/* Shutdown Wiimote subsystem */
|
|
WPAD_Shutdown();
|
|
}
|
|
|
|
u32 Wpad_GetButtons(void)
|
|
{
|
|
u32 buttons = 0, cnt;
|
|
|
|
/* Scan pads */
|
|
WPAD_ScanPads();
|
|
|
|
/* Get pressed buttons */
|
|
for (cnt = 0; cnt < MAX_WIIMOTES; cnt++)
|
|
buttons |= WPAD_ButtonsDown(cnt);
|
|
|
|
return buttons;
|
|
}
|
|
|
|
u32 Wpad_WaitButtons(void)
|
|
{
|
|
u32 buttons = 0;
|
|
|
|
/* Wait for button pressing */
|
|
while (!buttons) {
|
|
buttons = Wpad_GetButtons();
|
|
if (!buttons)
|
|
{
|
|
PAD_ScanPads();
|
|
buttons = PAD_ButtonsDown(0);
|
|
}
|
|
VIDEO_WaitVSync();
|
|
}
|
|
|
|
return buttons;
|
|
}
|