/*---------------------------------------------------------------------------* Project: TwlSDK - OS File: ownerInfo.c Copyright 2003-2008 Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Date:: 2008-09-18#$ $Rev: 8573 $ $Author: okubata_ryoma $ *---------------------------------------------------------------------------*/ #include #include /*---------------------------------------------------------------------------* Name: OS_GetMacAddress Description: Gets the MAC address of the wireless hardware. Arguments: macAddress: Pointer to the buffer getting the MAC address. Six bytes of data get written to this buffer. Returns: None. *---------------------------------------------------------------------------*/ void OS_GetMacAddress(u8 *macAddress) { u8 *src; src = (u8 *)((u32)(OS_GetSystemWork()->nvramUserInfo) + ((sizeof(NVRAMConfig) + 3) & ~0x00000003)); MI_CpuCopy8(src, macAddress, 6); } /*---------------------------------------------------------------------------* Name: OS_GetOwnerInfo Description: Gets the owner information. Arguments: info: Pointer to the buffer getting the owner information. Data gets written to this buffer. Returns: None. *---------------------------------------------------------------------------*/ void OS_GetOwnerInfo(OSOwnerInfo *info) { NVRAMConfig *src; src = (NVRAMConfig *)(OS_GetSystemWork()->nvramUserInfo); info->language = (u8)(src->ncd.option.language); info->favoriteColor = (u8)(src->ncd.owner.favoriteColor); info->birthday.month = (u8)(src->ncd.owner.birthday.month); info->birthday.day = (u8)(src->ncd.owner.birthday.day); info->nickNameLength = (u16)(src->ncd.owner.nickname.length); info->commentLength = (u16)(src->ncd.owner.comment.length); MI_CpuCopy16(src->ncd.owner.nickname.str, info->nickName, OS_OWNERINFO_NICKNAME_MAX * sizeof(u16)); MI_CpuCopy16(src->ncd.owner.comment.str, info->comment, OS_OWNERINFO_COMMENT_MAX * sizeof(u16)); info->nickName[OS_OWNERINFO_NICKNAME_MAX] = 0; info->comment[OS_OWNERINFO_COMMENT_MAX] = 0; } /*---------------------------------------------------------------------------* Name: OS_GetOwnerRtcOffset Description: Gets the offset (in units of seconds) which fluctuates in response to the new value every time the owner changes the RTC setting. If the RTC is pushed forward into the future relative to the RTC time prior to being reset, the push-forward time is added. If the RTC is pushed back into the past, the push-back time is subtracted. Arguments: None. Returns: s64: Returns the offset value for RTC settings. *---------------------------------------------------------------------------*/ s64 OS_GetOwnerRtcOffset(void) { NVRAMConfig *src = (NVRAMConfig *)(OS_GetSystemWork()->nvramUserInfo); return src->ncd.option.rtcOffset; } /*---------------------------------------------------------------------------* Name: OS_GetFavoriteColorTable Description: Gets a pointer to the "Favorite Color" array that corresponds to the number of the favoriteColor member of the OSOwnerInfo structure. Arguments: None. Returns: Pointer to the GXRgb type constant array that stores corresponding color value. *---------------------------------------------------------------------------*/ const GXRgb *OS_GetFavoriteColorTable(void) { static const GXRgb col_table[OS_FAVORITE_COLOR_MAX] = { OS_FAVORITE_COLOR_VALUE_GRAY, OS_FAVORITE_COLOR_VALUE_BROWN, OS_FAVORITE_COLOR_VALUE_RED, OS_FAVORITE_COLOR_VALUE_PINK, OS_FAVORITE_COLOR_VALUE_ORANGE, OS_FAVORITE_COLOR_VALUE_YELLOW, OS_FAVORITE_COLOR_VALUE_LIME_GREEN, OS_FAVORITE_COLOR_VALUE_GREEN, OS_FAVORITE_COLOR_VALUE_DARK_GREEN, OS_FAVORITE_COLOR_VALUE_SEA_GREEN, OS_FAVORITE_COLOR_VALUE_TURQUOISE, OS_FAVORITE_COLOR_VALUE_BLUE, OS_FAVORITE_COLOR_VALUE_DARK_BLUE, OS_FAVORITE_COLOR_VALUE_PURPLE, OS_FAVORITE_COLOR_VALUE_VIOLET, OS_FAVORITE_COLOR_VALUE_MAGENTA, }; return col_table; } /*---------------------------------------------------------------------------* End of file *---------------------------------------------------------------------------*/