/* * Copyright (C) 2019-2025 Roger Clark, VK3KYY / G4KYF * Daniel Caujolle-Bert, F1RMB * * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * 4. Use of this source code or binary releases for commercial purposes is strictly forbidden. This includes, without limitation, * incorporation in a commercial product or incorporation into a product or project which allows commercial use. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include "user_interface/uiGlobals.h" #include "user_interface/menuSystem.h" #include "user_interface/uiUtilities.h" #include "user_interface/uiLocalisation.h" static void updateScreen(bool isFirstRun); static void handleEvent(uiEvent_t *ev); static void exitSplashScreen(void); #if ! defined(PLATFORM_GD77S) static bool validatePinCodeCallback(void); static void pincodeAudioAlert(void); #endif const uint32_t SILENT_PROMPT_HOLD_DURATION_MILLISECONDS = 2000; static uint32_t initialEventTime; #if ! defined(PLATFORM_GD77S) static bool pinHandled = false; static int32_t pinCode; #endif menuStatus_t uiSplashScreen(uiEvent_t *ev, bool isFirstRun) { uint8_t melodyBuf[512]; if (isFirstRun) { #if ! defined(PLATFORM_GD77S) if (pinHandled) { pinHandled = false; keyboardReset(); } else { int pinLength = codeplugGetPasswordPin(&pinCode); if (pinLength != 0) { snprintf(uiDataGlobal.MessageBox.message, MESSAGEBOX_MESSAGE_LEN_MAX, "%s", currentLanguage->pin_code); uiDataGlobal.MessageBox.type = MESSAGEBOX_TYPE_PIN_CODE; uiDataGlobal.MessageBox.pinLength = pinLength; uiDataGlobal.MessageBox.validatorCallback = validatePinCodeCallback; menuSystemPushNewMenu(UI_MESSAGE_BOX); (void)addTimerCallback(pincodeAudioAlert, 500, UI_MESSAGE_BOX, false); // Need to delay playing this for a while, because otherwise it may get played before the volume is turned up enough to hear it. return MENU_STATUS_SUCCESS; } } #endif initialEventTime = ev->time; #if defined(PLATFORM_GD77S) // Don't play boot melody when the 77S is already speaking, otherwise if will mute the speech halfway if (voicePromptsIsPlaying() == false) #endif { if (codeplugGetOpenGD77CustomData(CODEPLUG_CUSTOM_DATA_TYPE_BEEP, melodyBuf)) { if ((melodyBuf[0] == 0) && (melodyBuf[1] == 0)) // Zero length boot melody { char line1[(SCREEN_LINE_BUFFER_SIZE * 2) + 1]; char line2[SCREEN_LINE_BUFFER_SIZE]; uint8_t bootScreenType; // Load TA text even if Splash screen is not shown codeplugGetBootScreenData(line1, line2, &bootScreenType); strcat(line1, line2); HRC6000SetTalkerAlias(line1); exitSplashScreen(); return MENU_STATUS_SUCCESS; } else { soundCreateSong(melodyBuf); soundSetMelody(melody_generic); } } else { soundSetMelody(MELODY_POWER_ON); } } updateScreen(isFirstRun); } else { handleEvent(ev); } return MENU_STATUS_SUCCESS; } static void updateScreen(bool isFirstRun) { char line1[(SCREEN_LINE_BUFFER_SIZE * 2) + 1]; char line2[SCREEN_LINE_BUFFER_SIZE]; uint8_t bootScreenType; bool customDataHasImage = false; codeplugGetBootScreenData(line1, line2, &bootScreenType); displayThemeApply(THEME_ITEM_FG_SPLASHSCREEN, THEME_ITEM_BG_SPLASHSCREEN); if (bootScreenType == 0) { #if defined (PLATFORM_MDUV380) || defined(PLATFORM_MD380) || defined(PLATFORM_RT84_DM1701) || defined(PLATFORM_MD2017) uint8_t *dataBuf = (uint8_t *)displayGetScreenBuffer(); displayClearBuf(); customDataHasImage = codeplugGetOpenGD77CustomData(CODEPLUG_CUSTOM_DATA_TYPE_IMAGE, dataBuf); if (customDataHasImage) { displayConvertGD77ImageData(dataBuf); } #else customDataHasImage = codeplugGetOpenGD77CustomData(CODEPLUG_CUSTOM_DATA_TYPE_IMAGE, (uint8_t *)displayGetScreenBuffer()); #endif } if (!customDataHasImage) { displayClearBuf(); displayPrintCentered(8, "FreeTRX", FONT_SIZE_3); displayPrintCentered((DISPLAY_SIZE_Y / 4) * 2, line1, FONT_SIZE_3); displayPrintCentered((DISPLAY_SIZE_Y / 4) * 3, line2, FONT_SIZE_3); } displayThemeResetToDefault(); if (isFirstRun) { // Set Talker alias now, concatenate the two lines. strcat(line1, line2); HRC6000SetTalkerAlias(line1); } displayRender(); } static void handleEvent(uiEvent_t *ev) { if ((ev->events & FUNCTION_EVENT) && (ev->function == FUNC_REDRAW)) { updateScreen(false); return; } if (nonVolatileSettings.audioPromptMode != AUDIO_PROMPT_MODE_SILENT) { if ((melody_play == NULL) || (ev->events != NO_EVENT)) { #if ! defined(PLATFORM_MD9600) uint8_t filteredSK1Button = (ev->buttons & ~(BUTTON_SK1_SHORT_UP | BUTTON_SK1_LONG_DOWN | BUTTON_SK1_EXTRA_LONG_DOWN)); // If Safe Pwr-On is enabled, ignore SK1 button events if ((melody_play != NULL) && ((ev->events == BUTTON_EVENT) && settingsIsOptionBitSet(BIT_SAFE_POWER_ON) && (filteredSK1Button == BUTTON_SK1 || filteredSK1Button == 0))) { return; } #endif // Any button or key event, stop the melody then leave if (melody_play != NULL) { soundStopMelody(); } exitSplashScreen(); } } else { if ((ev->events != NO_EVENT) || ((ev->time - initialEventTime) > SILENT_PROMPT_HOLD_DURATION_MILLISECONDS)) { exitSplashScreen(); } } } static void exitSplashScreen(void) { menuSystemSetCurrentMenu(nonVolatileSettings.initialMenuNumber); } #if ! defined(PLATFORM_GD77S) static bool validatePinCodeCallback(void) { if (uiDataGlobal.MessageBox.keyPressed == KEY_GREEN) { if (freqEnterRead(0, uiDataGlobal.MessageBox.pinLength, false) == pinCode) { pinHandled = true; return true; } } else if (uiDataGlobal.MessageBox.keyPressed == KEY_RED) { freqEnterReset(); } return false; } static void pincodeAudioAlert(void) { if (nonVolatileSettings.audioPromptMode >= AUDIO_PROMPT_MODE_VOICE_THRESHOLD) { voicePromptsInit(); voicePromptsAppendLanguageString(currentLanguage->pin_code); voicePromptsPlay(); } else { soundSetMelody(MELODY_ACK_BEEP); } } #endif