mirror of
https://github.com/zeldaret/mm.git
synced 2026-08-18 21:18:17 -04:00
4fa13e4132
* Delete unused headers * Move PR and io to ultra64 * move headers to ultra64 * more cleanups * more reorganizing * i think that should be all * format * ifdef guards cleanup * Add IO_READ and IO_WRITE macros for future use * warnings * review Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> * warnings again * warn * ifdef guards * fix merge * fix merge * fix merge * bss * padutils.h * bss * bss * bss * fix merge * bss * bss * bss * fix merge * fixes * fixes * bss * bss * fix merge * fix * fix * fix includepaths * fix paths * bss * fix * ultra64/ -> PR/ * header guards * fix ehader guards * fix * fix++ * format * bss is borken * prevent 2 * :despair: * bss * rename assert to dbg_hungup * fix * a * fix * bss * fix * bss * bss --------- Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com>
126 lines
3.5 KiB
C
126 lines
3.5 KiB
C
/**
|
|
* File: voicegetreaddata.c
|
|
*
|
|
* Gets voice recognition result from the Voice Recognition System
|
|
*/
|
|
|
|
#include "PR/controller_voice.h"
|
|
#include "PR/os_voice.h"
|
|
#include "PR/controller.h"
|
|
|
|
s32 osVoiceGetReadData(OSVoiceHandle* hd, OSVoiceData* result) {
|
|
static u8 sHandleStatus;
|
|
s32 errorCode;
|
|
s32 i;
|
|
u8 status;
|
|
u8 data[36];
|
|
|
|
switch (hd->mode) {
|
|
case VOICE_HANDLE_MODE_1:
|
|
errorCode = __osVoiceGetStatus(hd->mq, hd->channel, &status);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
if (status & 1) {
|
|
return CONT_ERR_NOT_READY;
|
|
}
|
|
|
|
errorCode = __osVoiceContRead2(hd->mq, hd->channel, 0, data);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
sHandleStatus = data[0] & 7;
|
|
hd->status = sHandleStatus;
|
|
if ((sHandleStatus != 0) && (sHandleStatus != 7)) {
|
|
return CONT_ERR_NOT_READY;
|
|
}
|
|
// fallthrough
|
|
case VOICE_HANDLE_MODE_2:
|
|
hd->mode = VOICE_HANDLE_MODE_2;
|
|
|
|
errorCode = __osVoiceGetStatus(hd->mq, hd->channel, &status);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
if (status & 2) {
|
|
return CONT_ERR_VOICE_NO_RESPONSE;
|
|
}
|
|
|
|
*(u32*)data = 0x600;
|
|
errorCode = __osVoiceContWrite4(hd->mq, hd->channel, 0, data);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
// fallthrough
|
|
case VOICE_HANDLE_MODE_3:
|
|
hd->mode = VOICE_HANDLE_MODE_3;
|
|
|
|
errorCode = __osVoiceGetStatus(hd->mq, hd->channel, &status);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
if (status & 1) {
|
|
return CONT_ERR_VOICE_NO_RESPONSE;
|
|
}
|
|
|
|
errorCode = __osVoiceContRead36(hd->mq, hd->channel, 0, data);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
result->warning = data[4] + (data[5] << 8);
|
|
result->answerNum = data[6];
|
|
result->voiceLevel = data[8] + (data[9] << 8);
|
|
result->voiceRelLevel = data[10] + (data[11] << 8);
|
|
result->voiceTime = data[12] + (data[13] << 8);
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
result->answer[i] = data[14 + (i << 2)] + (data[15 + (i << 2)] << 8);
|
|
result->distance[i] = data[16 + (i << 2)] + (data[17 + (i << 2)] << 8);
|
|
}
|
|
|
|
if (result->answer[0] == 0x7FFF) {
|
|
result->answerNum = 0;
|
|
}
|
|
|
|
hd->status = data[34] & 7;
|
|
if ((sHandleStatus == 0) || (hd->status == 0)) {
|
|
break;
|
|
}
|
|
// fallthrough
|
|
case VOICE_HANDLE_MODE_4:
|
|
hd->mode = VOICE_HANDLE_MODE_4;
|
|
|
|
errorCode = __osVoiceGetStatus(hd->mq, hd->channel, &status);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
if (status & 1) {
|
|
return CONT_ERR_VOICE_NO_RESPONSE;
|
|
}
|
|
|
|
errorCode = __osVoiceContRead2(hd->mq, hd->channel, 0, data);
|
|
if (errorCode != 0) {
|
|
return errorCode;
|
|
}
|
|
|
|
hd->status = data[0] & 7;
|
|
if (data[0] & 7) {
|
|
return CONT_ERR_VOICE_NO_RESPONSE;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
return CONT_ERR_INVALID;
|
|
}
|
|
|
|
hd->mode = VOICE_HANDLE_MODE_0;
|
|
return errorCode;
|
|
}
|