2006-08-15 12:27:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2006-08-16 08:07:59 +00:00
|
|
|
* $Id$
|
2006-08-15 12:27:07 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Jonathan Gordon
|
2017-09-26 14:32:07 +00:00
|
|
|
* Copyright (C) 2017 William Wilgus
|
2008-01-21 09:48:44 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-08-15 12:27:07 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
2006-08-17 13:31:34 +00:00
|
|
|
#include "lang.h"
|
|
|
|
|
2020-07-17 14:31:31 +00:00
|
|
|
#if !defined(BOOTLOADER)
|
2017-09-26 14:32:07 +00:00
|
|
|
#include "language.h"
|
|
|
|
#endif
|
|
|
|
|
2009-01-05 09:59:11 +00:00
|
|
|
#include "appevents.h"
|
2006-08-15 12:27:07 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "action.h"
|
|
|
|
#include "kernel.h"
|
2017-09-26 14:32:07 +00:00
|
|
|
|
2006-08-17 12:33:36 +00:00
|
|
|
#include "splash.h"
|
2008-01-21 09:48:44 +00:00
|
|
|
#include "settings.h"
|
2009-06-11 20:36:02 +00:00
|
|
|
#include "misc.h"
|
2017-09-26 14:32:07 +00:00
|
|
|
|
2010-06-21 06:04:19 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
#include "statusbar-skinned.h"
|
2017-09-26 14:32:07 +00:00
|
|
|
#include "viewport.h"
|
2010-06-21 06:04:19 +00:00
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
#include "backlight.h"
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
#include "power.h"
|
|
|
|
#endif
|
|
|
|
#endif /* HAVE_BACKLIGHT */
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/*#define LOGF_ENABLE*/
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#include "logf.h"
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#define REPEAT_WINDOW_TICKS HZ/4
|
|
|
|
#define ACTION_FILTER_TICKS HZ/2 /* timeout between filtered actions SL/BL */
|
|
|
|
|
|
|
|
/* holds the action state between calls to get_action \ get_action_custom) */
|
|
|
|
static action_last_t action_last =
|
|
|
|
{
|
|
|
|
.action = ACTION_NONE,
|
|
|
|
.button = BUTTON_NONE | BUTTON_REL, /* allow the ipod wheel to
|
|
|
|
work on startup */
|
|
|
|
.context = CONTEXT_STD,
|
|
|
|
.data = 0,
|
|
|
|
.repeated = false,
|
|
|
|
.tick = 0,
|
|
|
|
.wait_for_release = false,
|
2006-08-17 12:33:36 +00:00
|
|
|
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
#ifndef DISABLE_ACTION_REMAP
|
|
|
|
.check_remap = false,
|
|
|
|
.core_keymap = NULL,
|
|
|
|
#endif
|
|
|
|
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2017-09-26 14:32:07 +00:00
|
|
|
.ts_data = 0,
|
|
|
|
.ts_short_press = false,
|
2007-10-22 12:26:53 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
.backlight_mask = SEL_ACTION_NONE,
|
|
|
|
.bl_filter_tick = 0,
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAS_BUTTON_HOLD
|
|
|
|
.keys_locked = false,
|
|
|
|
.screen_has_lock = false,
|
|
|
|
.sl_filter_tick = 0,
|
|
|
|
.softlock_mask = SEL_ACTION_NONE,
|
|
|
|
.unlock_combo = BUTTON_NONE,
|
|
|
|
#endif
|
|
|
|
}; /* action_last_t action_last */
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
** INTERNAL ACTION FUNCTIONS **************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************
|
|
|
|
* has_flag compares value to a (SINGLE) flag
|
|
|
|
* returns true if set, false otherwise
|
|
|
|
*/
|
|
|
|
static inline bool has_flag(unsigned int value, unsigned int flag)
|
|
|
|
{
|
|
|
|
return ((value & flag) == flag);
|
|
|
|
}
|
2007-06-04 13:52:02 +00:00
|
|
|
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT) || !defined(HAS_BUTTON_HOLD)
|
2017-09-26 14:32:07 +00:00
|
|
|
/* HELPER FUNCTIONS selective softlock and backlight */
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
* is_action_filtered, selective softlock and backlight use this
|
|
|
|
* to lookup which actions are filtered, matches are only true if
|
|
|
|
* action is found and supplied SEL_ACTION mask has the flag.
|
|
|
|
* returns false if the action isn't found or isn't enabled,
|
|
|
|
* true if the action is found and is enabled
|
|
|
|
*/
|
|
|
|
static bool is_action_filtered(int action, unsigned int mask, int context)
|
|
|
|
{
|
|
|
|
bool match = false;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case ACTION_NONE:
|
|
|
|
break;
|
|
|
|
/*Actions that are not mapped will not turn on the backlight option NOUNMAPPED*/
|
|
|
|
case ACTION_UNKNOWN:
|
|
|
|
match = has_flag(mask, SEL_ACTION_NOUNMAPPED);
|
|
|
|
break;
|
|
|
|
case ACTION_WPS_PLAY:
|
|
|
|
case ACTION_FM_PLAY:
|
|
|
|
match = has_flag(mask, SEL_ACTION_PLAY);
|
|
|
|
break;
|
2021-03-14 19:03:00 +00:00
|
|
|
//case ACTION_STD_PREVREPEAT: // seek not exempted outside of WPS
|
|
|
|
//case ACTION_STD_NEXTREPEAT:
|
2017-09-26 14:32:07 +00:00
|
|
|
case ACTION_WPS_SEEKBACK:
|
|
|
|
case ACTION_WPS_SEEKFWD:
|
|
|
|
case ACTION_WPS_STOPSEEK:
|
|
|
|
match = has_flag(mask, SEL_ACTION_SEEK);
|
|
|
|
break;
|
2021-03-14 19:03:00 +00:00
|
|
|
//case ACTION_STD_PREV: // skip/scrollwheel not exempted outside of WPS
|
|
|
|
//case ACTION_STD_NEXT:
|
2017-09-26 14:32:07 +00:00
|
|
|
case ACTION_WPS_SKIPNEXT:
|
|
|
|
case ACTION_WPS_SKIPPREV:
|
|
|
|
case ACTION_FM_NEXT_PRESET:
|
|
|
|
case ACTION_FM_PREV_PRESET:
|
|
|
|
match = has_flag(mask, SEL_ACTION_SKIP);
|
|
|
|
break;
|
2021-03-14 19:03:00 +00:00
|
|
|
#ifdef HAVE_VOLUME_IN_LIST
|
|
|
|
case ACTION_LIST_VOLUP: // volume exempted outside of WPS if the device supports it
|
|
|
|
case ACTION_LIST_VOLDOWN:
|
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
case ACTION_WPS_VOLUP:
|
|
|
|
case ACTION_WPS_VOLDOWN:
|
|
|
|
match = has_flag(mask, SEL_ACTION_VOL);
|
|
|
|
break;
|
|
|
|
case ACTION_SETTINGS_INC:/*FMS*/
|
|
|
|
case ACTION_SETTINGS_INCREPEAT:/*FMS*/
|
|
|
|
case ACTION_SETTINGS_DEC:/*FMS*/
|
|
|
|
case ACTION_SETTINGS_DECREPEAT:/*FMS*/
|
|
|
|
match = (context == CONTEXT_FM) && has_flag(mask, SEL_ACTION_VOL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* display action code of unfiltered actions */
|
|
|
|
logf ("unfiltered actions: context: %d action: %d, last btn: %d, \
|
|
|
|
mask: %d", context, action, action_last.button, mask);
|
|
|
|
break;
|
|
|
|
}/*switch*/
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return match;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* is_action_discarded:
|
|
|
|
* Most every action takes two rounds through get_action_worker,
|
|
|
|
* once for the keypress and once for the key release,
|
|
|
|
* actions with pre_button codes take even more, some actions however, only
|
|
|
|
* take once; actions defined with only a button and no release/repeat event,
|
|
|
|
* these actions should be acted upon immediately except when we have
|
|
|
|
* selective backlighting/softlock enabled and in this case we only act upon
|
|
|
|
* them immediately if there is no chance they have another event tied to them
|
|
|
|
* determined using !is_prebutton or if action is completed
|
|
|
|
* returns true if event was discarded and false if it was kept
|
|
|
|
*/
|
|
|
|
static bool is_action_discarded(action_cur_t *cur, bool filtered, long *tick)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
bool ret = true;
|
|
|
|
bool completed = (cur->button & (BUTTON_REPEAT | BUTTON_REL)) != 0;
|
2006-08-15 12:27:07 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
/* Scrollwheel doesn't generate release events */
|
|
|
|
completed |= (cur->button & (BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD)) != 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*directly after a match a key release event may trigger another*/
|
|
|
|
if (filtered && cur->action != ACTION_UNKNOWN)
|
|
|
|
{
|
|
|
|
*tick = current_tick + ACTION_FILTER_TICKS;
|
|
|
|
}
|
|
|
|
/* has button been released/repeat or is this the only action it could be */
|
|
|
|
if (completed || !cur->is_prebutton)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
/* if the action is not filtered and this isn't just a
|
|
|
|
* key release event then return false
|
|
|
|
* keeping action, and reset tick
|
|
|
|
*/
|
|
|
|
if (!filtered && *tick < current_tick)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
*tick = 0;
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************
|
|
|
|
* action_handle_backlight is used to both delay
|
|
|
|
* and activate the backlight if HAVE_BACKLIGHT
|
|
|
|
* and SEL_ACTION_ENABLED; backlight state is
|
|
|
|
* set true/false and ignore_next sets the backlight
|
|
|
|
* driver to ignore backlight_on commands from
|
|
|
|
* other modules for a finite duration;
|
|
|
|
* Ignore is set each time the action system
|
|
|
|
* handles the backlight as a precaution since, if
|
|
|
|
* the action system was not triggered the device would
|
|
|
|
* appear unresponsive to the user.
|
|
|
|
* If a backlight_on event hasn't been handled in the
|
|
|
|
* ignore duration it will timeout and the next call
|
|
|
|
* to backlight_on will trigger as normal
|
|
|
|
*/
|
|
|
|
static void action_handle_backlight(bool backlight, bool ignore_next)
|
|
|
|
{
|
|
|
|
#if !defined(HAVE_BACKLIGHT)
|
|
|
|
(void) backlight;
|
|
|
|
(void) ignore_next;
|
|
|
|
return;
|
|
|
|
#else /* HAVE_BACKLIGHT */
|
|
|
|
if (backlight)
|
|
|
|
{
|
|
|
|
backlight_on_ignore(false, 0);
|
|
|
|
backlight_on();
|
|
|
|
}
|
|
|
|
|
|
|
|
backlight_on_ignore(ignore_next, 5*HZ);/*must be set everytime we handle bl*/
|
|
|
|
|
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
|
|
|
if (backlight)
|
|
|
|
{
|
|
|
|
buttonlight_on_ignore(false, 0);
|
|
|
|
buttonlight_on();
|
|
|
|
}
|
|
|
|
|
|
|
|
buttonlight_on_ignore(ignore_next, 5*HZ);/* as a precautionary fallback */
|
|
|
|
#endif /* HAVE_BUTTON_LIGHT */
|
|
|
|
|
|
|
|
#endif/* HAVE_BACKLIGHT */
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /*defined(HAVE_BACKLIGHT) || !defined(HAS_BUTTON_HOLD) HELPER FUNCTIONS*/
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* action_poll_button filters button presses for get_action_worker;
|
|
|
|
* if button_get_w_tmo returns...
|
|
|
|
* BUTTON_NONE, SYS_EVENTS, MULTIMEDIA BUTTONS, ACTION_REDRAW
|
|
|
|
* they are allowed to pass immediately through to handler.
|
|
|
|
* if waiting for button release ACTION_NONE is returned until
|
|
|
|
* button is released/repeated.
|
|
|
|
*/
|
|
|
|
static inline bool action_poll_button(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
int *button = &cur->button;
|
|
|
|
|
|
|
|
*button = button_get_w_tmo(cur->timeout);
|
|
|
|
/* **************************************************************************
|
|
|
|
* if action_wait_for_release() was called without a button being pressed
|
|
|
|
* then actually waiting for release would do the wrong thing, i.e.
|
|
|
|
* the next key press is entirely ignored. So, if here comes a normal
|
|
|
|
* button press (neither release nor repeat) the press is a fresh one and
|
|
|
|
* no point in waiting for release
|
|
|
|
*
|
|
|
|
* This logic doesn't work for touchscreen which can send normal
|
|
|
|
* button events repeatedly before the first repeat (as in BUTTON_REPEAT).
|
|
|
|
* These cannot be distinguished from the very first touch
|
|
|
|
* but there's nothing we can do about it here
|
|
|
|
*/
|
|
|
|
if (*button == BUTTON_NONE || (*button & (BUTTON_REPEAT|BUTTON_REL)) == 0)
|
|
|
|
{
|
|
|
|
last->wait_for_release = false;
|
|
|
|
}
|
|
|
|
/* ********************************************************
|
|
|
|
* Can return button immediately, sys_event & multimedia
|
|
|
|
* button presses don't use the action system, Data from
|
|
|
|
* sys events can be pulled with button_get_data.
|
|
|
|
* BUTTON_REDRAW should result in a screen refresh
|
|
|
|
*/
|
|
|
|
if (*button == BUTTON_NONE || (*button & (SYS_EVENT|BUTTON_MULTIMEDIA)) != 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (*button == BUTTON_REDRAW)
|
|
|
|
{ /* screen refresh */
|
|
|
|
*button = ACTION_REDRAW;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
/* *************************************************
|
|
|
|
* If waiting for release, Don't send any buttons
|
|
|
|
* through until we see the release event
|
|
|
|
*/
|
|
|
|
if (last->wait_for_release)
|
|
|
|
{
|
|
|
|
if (has_flag(*button, BUTTON_REL))
|
|
|
|
{ /* remember the button for button eating on context change */
|
|
|
|
last->wait_for_release = false;
|
|
|
|
last->button = *button;
|
|
|
|
}
|
|
|
|
|
|
|
|
*button = ACTION_NONE;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
/* *********************************************
|
|
|
|
* Scrollwheel doesn't generate release events
|
|
|
|
* further processing needed
|
|
|
|
*/
|
|
|
|
else if ((last->button & (BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD)) != 0)
|
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* *************************************************************
|
|
|
|
* On Context Changed eat all buttons until the previous button
|
|
|
|
* was |BUTTON_REL (also eat the |BUTTON_REL button)
|
|
|
|
*/
|
|
|
|
else if ((cur->context != last->context) && ((last->button & BUTTON_REL) == 0))
|
|
|
|
{
|
|
|
|
if (has_flag(*button, BUTTON_REL))
|
|
|
|
{
|
|
|
|
last->button = *button;
|
|
|
|
last->action = ACTION_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*button = ACTION_NONE; /* "safest" return value */
|
|
|
|
}
|
|
|
|
/* ****************************
|
|
|
|
* regular button press,
|
|
|
|
* further processing needed
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current context might contain ALLOW_SOFTLOCK save prior to stripping it */
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
last->context = cur->context;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* update_screen_has_lock sets screen_has_lock
|
|
|
|
* if passed context contains ALLOW_SOFTLOCK
|
|
|
|
* and removes ALLOW_SOFTLOCK from the passed
|
|
|
|
* context flag
|
|
|
|
*/
|
|
|
|
static inline void update_screen_has_lock(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
|
|
|
#if defined(HAS_BUTTON_HOLD)
|
|
|
|
(void) last;
|
|
|
|
(void) cur;
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
last->screen_has_lock = has_flag(cur->context, ALLOW_SOFTLOCK);
|
|
|
|
cur->context &= ~ALLOW_SOFTLOCK;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************
|
|
|
|
* get_action_touchscreen allows touchscreen
|
|
|
|
* presses to have short_press and repeat events
|
|
|
|
*/
|
|
|
|
static inline bool get_action_touchscreen(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
|
|
|
|
|
|
|
#if !defined(HAVE_TOUCHSCREEN)
|
|
|
|
(void) last;
|
|
|
|
(void) cur;
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
if (has_flag(cur->button, BUTTON_TOUCHSCREEN))
|
|
|
|
{
|
|
|
|
last->repeated = false;
|
|
|
|
last->ts_short_press = false;
|
|
|
|
if (has_flag(last->button, BUTTON_TOUCHSCREEN))
|
|
|
|
{
|
|
|
|
if (has_flag(cur->button, BUTTON_REL) &&
|
|
|
|
!has_flag(last->button, BUTTON_REPEAT))
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
last->ts_short_press = true;
|
|
|
|
}
|
|
|
|
else if (has_flag(cur->button, BUTTON_REPEAT))
|
|
|
|
{
|
|
|
|
last->repeated = true;
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
last->button = cur->button;
|
2021-08-12 18:38:46 +00:00
|
|
|
last->tick = current_tick;
|
2017-09-26 14:32:07 +00:00
|
|
|
cur->action = ACTION_TOUCHSCREEN;
|
|
|
|
return true;
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
#endif
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* button_flip_horizontally, passed button is horizontally inverted to support
|
|
|
|
* RTL language if the given language and context combination require it
|
|
|
|
* Affected contexts: CONTEXT_STD, CONTEXT_TREE, CONTEXT_LIST, CONTEXT_MAINMENU
|
|
|
|
* Affected buttons with rtl language:
|
|
|
|
* BUTTON_LEFT, BUTTON_RIGHT,
|
|
|
|
* Affected buttons with rtl language and !simulator:
|
|
|
|
* BUTTON_SCROLL_BACK, BUTTON_SCROLL_FWD, BUTTON_MINUS, BUTTON_PLUS
|
|
|
|
*/
|
|
|
|
static inline void button_flip_horizontally(int context, int *button)
|
2009-10-05 17:53:45 +00:00
|
|
|
{
|
|
|
|
|
2020-07-17 14:31:31 +00:00
|
|
|
#if defined(BOOTLOADER)
|
2017-09-26 14:32:07 +00:00
|
|
|
(void) context;
|
|
|
|
(void) *button;
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
int newbutton = *button;
|
2009-10-05 17:53:45 +00:00
|
|
|
if (!(lang_is_rtl() && ((context == CONTEXT_STD) ||
|
2009-10-08 22:19:36 +00:00
|
|
|
(context == CONTEXT_TREE) || (context == CONTEXT_LIST) ||
|
|
|
|
(context == CONTEXT_MAINMENU))))
|
2009-10-05 17:53:45 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
return;
|
2009-10-05 17:53:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 22:27:03 +00:00
|
|
|
#if defined(BUTTON_LEFT) && defined(BUTTON_RIGHT)
|
2017-09-26 14:32:07 +00:00
|
|
|
newbutton &= ~(BUTTON_LEFT | BUTTON_RIGHT);
|
|
|
|
if (has_flag(*button, BUTTON_LEFT))
|
|
|
|
{
|
2009-10-05 17:53:45 +00:00
|
|
|
newbutton |= BUTTON_RIGHT;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (has_flag(*button, BUTTON_RIGHT))
|
|
|
|
{
|
2009-10-05 17:53:45 +00:00
|
|
|
newbutton |= BUTTON_LEFT;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
2020-10-08 22:27:03 +00:00
|
|
|
#else
|
|
|
|
#warning "BUTTON_LEFT / BUTTON_RIGHT not defined!"
|
|
|
|
#endif
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
newbutton &= ~(BUTTON_SCROLL_BACK | BUTTON_SCROLL_FWD);
|
|
|
|
if (has_flag(*button, BUTTON_SCROLL_BACK))
|
|
|
|
{
|
2009-10-05 17:53:45 +00:00
|
|
|
newbutton |= BUTTON_SCROLL_FWD;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (has_flag(*button, BUTTON_SCROLL_FWD))
|
|
|
|
{
|
2009-10-05 17:53:45 +00:00
|
|
|
newbutton |= BUTTON_SCROLL_BACK;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
2009-10-05 17:53:45 +00:00
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
#if defined(BUTTON_MINUS) && defined(BUTTON_PLUS)
|
2017-11-18 16:06:40 +00:00
|
|
|
newbutton &= ~(BUTTON_MINUS | BUTTON_PLUS);
|
2017-09-26 14:32:07 +00:00
|
|
|
if (has_flag(*button, BUTTON_MINUS))
|
|
|
|
{
|
2009-12-05 15:54:05 +00:00
|
|
|
newbutton |= BUTTON_PLUS;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (has_flag(*button, BUTTON_PLUS))
|
|
|
|
{
|
2009-12-05 15:54:05 +00:00
|
|
|
newbutton |= BUTTON_MINUS;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
2009-12-05 15:54:05 +00:00
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
#endif /* !SIMULATOR */
|
|
|
|
|
|
|
|
*button = newbutton;
|
2020-07-17 14:31:31 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2017-09-26 14:32:07 +00:00
|
|
|
} /* button_flip_horizontally */
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* action_code_worker is the worker function for action_code_lookup.
|
|
|
|
* returns ACTION_UNKNOWN or the requested return value from the list.
|
|
|
|
* BE AWARE IF YOUR DESIRED ACTION IS IN A LOWER 'CHAINED' CONTEXT::
|
|
|
|
* *** is_prebutton can miss pre_buttons
|
|
|
|
* ** An action without pre_button_code (pre_button_code = BUTTON_NONE)
|
|
|
|
* * will be returned from the higher context
|
|
|
|
*/
|
|
|
|
static inline int action_code_worker(action_last_t *last,
|
|
|
|
action_cur_t *cur,
|
|
|
|
int *end )
|
|
|
|
{
|
|
|
|
int ret = ACTION_UNKNOWN;
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
int i = *end;
|
2017-09-26 14:32:07 +00:00
|
|
|
unsigned int found = 0;
|
|
|
|
while (cur->items[i].button_code != BUTTON_NONE)
|
|
|
|
{
|
|
|
|
if (cur->items[i].button_code == cur->button)
|
|
|
|
{
|
|
|
|
/********************************************************
|
|
|
|
* { Action Code, Button code, Prereq button code }
|
|
|
|
* CAVEAT: This will allways return the action without
|
|
|
|
* pre_button_code (pre_button_code = BUTTON_NONE)
|
|
|
|
* if it is found before 'falling through'
|
|
|
|
* to a lower 'chained' context.
|
|
|
|
*
|
|
|
|
* Example: button = UP|REL, last_button = UP;
|
|
|
|
* while looking in CONTEXT_WPS there is an action defined
|
|
|
|
* {ACTION_FOO, BUTTON_UP|BUTTON_REL, BUTTON_NONE}
|
|
|
|
* then ACTION_FOO in CONTEXT_WPS will be returned
|
|
|
|
* EVEN THOUGH you are expecting a fully matched
|
|
|
|
* ACTION_BAR from CONTEXT_STD
|
|
|
|
* {ACTION_BAR, BUTTON_UP|BUTTON_REL, BUTTON_UP}
|
|
|
|
*/
|
|
|
|
if (cur->items[i].pre_button_code == last->button)
|
|
|
|
{ /* Always allow an exact match */
|
|
|
|
found++;
|
|
|
|
*end = i;
|
|
|
|
}
|
|
|
|
else if (!found && cur->items[i].pre_button_code == BUTTON_NONE)
|
|
|
|
{ /* Only allow Loose match if exact match wasn't found */
|
|
|
|
found++;
|
|
|
|
*end = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (has_flag(cur->items[i].pre_button_code, cur->button))
|
|
|
|
{ /* This could be another action depending on next button press */
|
|
|
|
cur->is_prebutton = true;
|
|
|
|
if (found > 1) /* There is already an exact match */
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
*end = i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = cur->items[*end].action_code;
|
|
|
|
}
|
2009-10-05 17:53:45 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return ret;
|
2009-10-05 17:53:45 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* get_next_context returns the next CONTEXT to be searched for action_code
|
|
|
|
* by action_code_lookup(); if needed it first continues incrementing till
|
|
|
|
* the end of current context map is reached; If there is another
|
|
|
|
* 'chained' context below the current context this new context is returned
|
|
|
|
* if there is not a 'chained' context to return, CONTEXT_STD is returned;
|
|
|
|
*/
|
2006-12-12 07:55:17 +00:00
|
|
|
static inline int get_next_context(const struct button_mapping *items, int i)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
|
|
|
while (items[i].button_code != BUTTON_NONE)
|
2017-09-26 14:32:07 +00:00
|
|
|
{
|
2006-08-15 12:27:07 +00:00
|
|
|
i++;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
2008-01-21 09:48:44 +00:00
|
|
|
return (items[i].action_code == ACTION_NONE ) ?
|
2017-09-26 14:32:07 +00:00
|
|
|
CONTEXT_STD : items[i].action_code;
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
2011-11-11 19:40:32 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/************************************************************************
|
|
|
|
* action_code_lookup passes current button, last button and is_prebutton
|
|
|
|
* to action_code_worker() which uses the current button map to
|
|
|
|
* lookup action_code.
|
|
|
|
* BE AWARE IF YOUR DESIRED ACTION IS IN A LOWER 'CHAINED' CONTEXT::
|
|
|
|
* *** is_prebutton can miss pre_buttons
|
|
|
|
* ** An action without pre_button_code (pre_button_code = BUTTON_NONE)
|
|
|
|
* * will be returned from the higher context see action_code_worker()
|
|
|
|
* for a more in-depth explanation
|
|
|
|
* places action into current_action
|
|
|
|
*/
|
|
|
|
static inline void action_code_lookup(action_last_t *last, action_cur_t *cur)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
int action = ACTION_NONE;
|
|
|
|
int context = cur->context;
|
|
|
|
int i = 0;
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
#ifndef DISABLE_ACTION_REMAP
|
|
|
|
last->check_remap = (last->core_keymap != NULL);
|
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
cur->is_prebutton = false;
|
|
|
|
|
2021-05-16 15:42:01 +00:00
|
|
|
#ifdef HAVE_LOCKED_ACTIONS
|
|
|
|
/* This only applies to the first context, to allow locked contexts to
|
|
|
|
* specify a fall through to their non-locked version */
|
|
|
|
if (is_keys_locked())
|
|
|
|
context |= CONTEXT_LOCKED;
|
|
|
|
#endif
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
/* logf("context = %x",context); */
|
|
|
|
#if (BUTTON_REMOTE != 0)
|
2019-04-22 21:23:28 +00:00
|
|
|
if ((cur->button & BUTTON_REMOTE) != 0)
|
2017-09-26 14:32:07 +00:00
|
|
|
{
|
2017-11-18 16:06:40 +00:00
|
|
|
context |= CONTEXT_REMOTE;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-12-11 01:24:42 +00:00
|
|
|
if ((context & CONTEXT_PLUGIN) && cur->get_context_map)
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
{
|
2017-12-11 01:24:42 +00:00
|
|
|
cur->items = cur->get_context_map(context);
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
}
|
|
|
|
#ifndef DISABLE_ACTION_REMAP
|
|
|
|
else if(last->check_remap) /* attempt to look up the button in user supplied remap */
|
|
|
|
{
|
|
|
|
cur->items = last->core_keymap;
|
|
|
|
i = 0;
|
|
|
|
action = ACTION_UNKNOWN;
|
|
|
|
/* check the lut at the beginning for the desired context */
|
|
|
|
while (cur->items[i].action_code != (int) CONTEXT_STOPSEARCHING)
|
|
|
|
{
|
|
|
|
if (cur->items[i].action_code == CORE_CONTEXT_REMAP(context))
|
|
|
|
{
|
|
|
|
i = cur->items[i].button_code;
|
|
|
|
action = action_code_worker(last, cur, &i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action != ACTION_UNKNOWN)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Not found -- fall through to inbuilt keymaps */
|
|
|
|
i = 0;
|
|
|
|
last->check_remap = false;
|
|
|
|
cur->items = get_context_mapping(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2017-12-11 01:24:42 +00:00
|
|
|
else
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
{
|
2017-12-11 01:24:42 +00:00
|
|
|
cur->items = get_context_mapping(context);
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
if (cur->items != NULL)
|
|
|
|
{
|
|
|
|
action = action_code_worker(last, cur, &i);
|
|
|
|
|
|
|
|
if (action == ACTION_UNKNOWN)
|
|
|
|
{
|
|
|
|
context = get_next_context(cur->items, i);
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (context != (int)CONTEXT_STOPSEARCHING)
|
|
|
|
{
|
|
|
|
i = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* No more items, action was found, or STOPSEARCHING was specified */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cur->action = action;
|
|
|
|
}
|
2011-11-11 19:40:32 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifndef HAS_BUTTON_HOLD
|
|
|
|
/*************************************
|
|
|
|
* do_key_lock (dis)/enables softlock
|
|
|
|
* based on lock flag, last button and
|
|
|
|
* buttons still in queue are purged
|
|
|
|
* if HAVE_TOUCHSCREEN then depending
|
|
|
|
* on user selection it will be locked
|
|
|
|
* or unlocked as well
|
|
|
|
*/
|
|
|
|
static inline void do_key_lock(bool lock)
|
|
|
|
{
|
|
|
|
action_last.keys_locked = lock;
|
|
|
|
action_last.button = BUTTON_NONE;
|
|
|
|
button_clear_queue();
|
|
|
|
#if defined(HAVE_TOUCHPAD) || defined(HAVE_TOUCHSCREEN)
|
|
|
|
/* disable touch device on keylock if std behavior or selected disable touch */
|
|
|
|
if (!has_flag(action_last.softlock_mask, SEL_ACTION_ENABLED) ||
|
|
|
|
has_flag(action_last.softlock_mask, SEL_ACTION_NOTOUCH))
|
2012-07-18 08:25:32 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
button_enable_touch(!lock);
|
2012-07-18 08:25:32 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
#endif
|
|
|
|
}
|
2012-07-18 08:25:32 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/**********************************************
|
|
|
|
* do_auto_softlock when user selects autolock
|
|
|
|
* unlock_combo stored for later unlock
|
|
|
|
* activates autolock on backlight timeout
|
|
|
|
* toggles autolock on / off by
|
|
|
|
* ACTION_STD_KEYLOCK presses;
|
|
|
|
*/
|
|
|
|
static inline int do_auto_softlock(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
2012-04-05 11:00:05 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#if !defined(HAVE_BACKLIGHT)
|
|
|
|
(void) last;
|
|
|
|
return cur->action;
|
|
|
|
#else
|
|
|
|
int action = cur->action;
|
|
|
|
bool is_timeout = false;
|
|
|
|
int timeout;
|
|
|
|
if (has_flag(last->softlock_mask, SEL_ACTION_ALOCK_OK))
|
|
|
|
{
|
|
|
|
timeout = backlight_get_current_timeout();
|
|
|
|
is_timeout = (timeout > 0 && (current_tick > action_last.tick + timeout));
|
|
|
|
}
|
2012-07-18 08:25:32 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (is_timeout)
|
|
|
|
{
|
|
|
|
do_key_lock(true);
|
2021-06-06 18:33:03 +00:00
|
|
|
|
2021-08-12 18:38:46 +00:00
|
|
|
#if defined(HAVE_TOUCHPAD) || defined(HAVE_TOUCHSCREEN)
|
2021-06-06 18:33:03 +00:00
|
|
|
/* if the touchpad is supposed to be off and the current buttonpress
|
|
|
|
* is from the touchpad, nullify both button and action. */
|
|
|
|
if (!has_flag(action_last.softlock_mask, SEL_ACTION_ENABLED) ||
|
|
|
|
has_flag(action_last.softlock_mask, SEL_ACTION_NOTOUCH))
|
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
#if defined(HAVE_TOUCHPAD)
|
2021-06-06 18:33:03 +00:00
|
|
|
cur->button = touchpad_filter(cur->button);
|
2021-08-12 18:38:46 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_TOUCHSCREEN)
|
|
|
|
const int touch_fakebuttons =
|
|
|
|
BUTTON_TOPLEFT | BUTTON_TOPMIDDLE | BUTTON_TOPRIGHT |
|
|
|
|
BUTTON_LEFT | BUTTON_CENTER | BUTTON_RIGHT |
|
|
|
|
BUTTON_BOTTOMLEFT | BUTTON_BOTTOMMIDDLE | BUTTON_BOTTOMRIGHT;
|
|
|
|
if (has_flag(cur->button, BUTTON_TOUCHSCREEN))
|
|
|
|
cur->button = BUTTON_NONE;
|
|
|
|
else
|
|
|
|
cur->button &= ~touch_fakebuttons;
|
|
|
|
#endif
|
2021-06-06 18:33:03 +00:00
|
|
|
if (cur->button == BUTTON_NONE)
|
|
|
|
{
|
|
|
|
action = ACTION_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
else if (action == ACTION_STD_KEYLOCK)
|
2009-07-03 05:08:33 +00:00
|
|
|
{
|
2021-04-03 18:54:03 +00:00
|
|
|
if (!has_flag(last->softlock_mask, SEL_ACTION_ALWAYSAUTOLOCK)) // normal operation, clear/arm autolock
|
2009-07-03 05:08:33 +00:00
|
|
|
{
|
2021-04-03 18:54:03 +00:00
|
|
|
last->unlock_combo = cur->button;/* set unlock combo to allow unlock */
|
|
|
|
last->softlock_mask ^= SEL_ACTION_ALOCK_OK;
|
|
|
|
action_handle_backlight(true, false);
|
|
|
|
/* If we don't wait for a moment for the backlight queue
|
|
|
|
* to process, the user will never see the message */
|
|
|
|
if (!is_backlight_on(false))
|
|
|
|
{
|
|
|
|
sleep(HZ/2);
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2021-04-03 18:54:03 +00:00
|
|
|
if (has_flag(last->softlock_mask, SEL_ACTION_ALOCK_OK))
|
|
|
|
{
|
|
|
|
splash(HZ/2, ID2P(LANG_ACTION_AUTOLOCK_ON));
|
|
|
|
action = ACTION_REDRAW;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
splash(HZ/2, ID2P(LANG_ACTION_AUTOLOCK_OFF));
|
|
|
|
}
|
|
|
|
} else if (!has_flag(last->softlock_mask, SEL_ACTION_ALOCK_OK)) // always autolock, but not currently armed
|
2017-09-26 14:32:07 +00:00
|
|
|
{
|
2021-04-03 18:54:03 +00:00
|
|
|
last->unlock_combo = cur->button;/* set unlock combo to allow unlock */
|
|
|
|
last->softlock_mask ^= SEL_ACTION_ALOCK_OK;
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return action;
|
|
|
|
#endif /* HAVE_BACKLIGHT */
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAS_BUTTON_HOLD */
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
* do_softlock Handles softlock once action is known
|
|
|
|
* selective softlock allows user selected actions to
|
|
|
|
* bypass a currently locked state, special lock state
|
|
|
|
* autolock is handled here as well if HAVE_BACKLIGHT
|
|
|
|
*/
|
|
|
|
static inline void do_softlock(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
|
|
|
#if defined(HAS_BUTTON_HOLD)
|
|
|
|
(void) last;
|
|
|
|
(void) cur;
|
|
|
|
return;
|
|
|
|
#else
|
|
|
|
int action = cur->action;
|
|
|
|
|
2021-05-27 23:26:59 +00:00
|
|
|
/* check to make sure we don't get stuck without a way to unlock - if locked,
|
|
|
|
* we can still use unlock_combo to unlock */
|
|
|
|
if (!last->screen_has_lock && !last->keys_locked)
|
|
|
|
{
|
|
|
|
/* no need to check softlock return immediately */
|
2017-09-26 14:32:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool filtered = true;
|
|
|
|
bool notify_user = false;
|
|
|
|
bool sl_activate = true; /* standard softlock behavior */
|
|
|
|
|
|
|
|
if ((!last->keys_locked) && has_flag(last->softlock_mask, SEL_ACTION_AUTOLOCK))
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action = do_auto_softlock(last, cur);
|
2006-08-17 12:33:36 +00:00
|
|
|
}
|
2021-03-20 00:13:58 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/* Lock/Unlock toggled by ACTION_STD_KEYLOCK presses*/
|
|
|
|
if ((action == ACTION_STD_KEYLOCK)
|
|
|
|
|| (last->keys_locked && last->unlock_combo == cur->button))
|
|
|
|
{
|
2021-03-20 00:13:58 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
// if backlight is off and keys are unlocked, do nothing and exit.
|
|
|
|
// The backlight should come on without locking keypad.
|
|
|
|
if ((!last->keys_locked) && (!is_backlight_on(false)))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
last->unlock_combo = cur->button;
|
|
|
|
do_key_lock(!last->keys_locked);
|
|
|
|
notify_user = true;
|
|
|
|
}
|
|
|
|
#if (BUTTON_REMOTE != 0)/* Allow remote actions through */
|
|
|
|
else if (has_flag(cur->button, BUTTON_REMOTE))
|
2013-09-02 09:03:56 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
return;
|
2013-09-02 09:03:56 +00:00
|
|
|
}
|
|
|
|
#endif
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
else if (last->keys_locked && action != ACTION_REDRAW)
|
2009-10-28 21:36:24 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
if (has_flag(last->softlock_mask, SEL_ACTION_ENABLED))
|
2009-10-28 21:36:24 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
filtered = is_action_filtered(action, last->softlock_mask, cur->context);
|
|
|
|
|
|
|
|
sl_activate = !is_action_discarded(cur, filtered, &last->sl_filter_tick);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sl_activate)
|
|
|
|
{ /*All non-std softlock options are set to 0 if advanced sl is disabled*/
|
|
|
|
if (!has_flag(last->softlock_mask, SEL_ACTION_NONOTIFY))
|
|
|
|
{ /* always true on standard softlock behavior*/
|
|
|
|
notify_user = has_flag(cur->button, BUTTON_REL);
|
|
|
|
action = ACTION_REDRAW;
|
2009-10-28 21:36:24 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
else
|
|
|
|
action = ACTION_NONE;
|
2009-10-28 21:36:24 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
else if (!filtered)
|
|
|
|
{ /* catch blocked actions on fast repeated presses */
|
|
|
|
action = ACTION_NONE;
|
|
|
|
}
|
|
|
|
}/* keys_locked */
|
2009-10-28 21:36:24 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifdef BUTTON_POWER /*always notify if power button pressed while keys locked*/
|
|
|
|
notify_user |= (has_flag(cur->button, BUTTON_POWER|BUTTON_REL)
|
|
|
|
&& last->keys_locked);
|
2009-10-05 17:17:30 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (notify_user)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_handle_backlight(true, false);
|
|
|
|
|
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
/* If we don't wait for a moment for the backlight queue to process,
|
|
|
|
* the user will never see the message
|
|
|
|
*/
|
|
|
|
if (!is_backlight_on(false))
|
|
|
|
{
|
|
|
|
sleep(HZ/2);
|
|
|
|
}
|
2006-08-15 12:27:07 +00:00
|
|
|
#endif
|
2021-03-20 20:11:05 +00:00
|
|
|
if (!has_flag(last->softlock_mask, SEL_ACTION_ALLNONOTIFY))
|
2017-09-26 14:32:07 +00:00
|
|
|
{
|
2021-03-20 20:11:05 +00:00
|
|
|
if (last->keys_locked)
|
|
|
|
{
|
|
|
|
splash(HZ/2, ID2P(LANG_KEYLOCK_ON));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
splash(HZ/2, ID2P(LANG_KEYLOCK_OFF));
|
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
action = ACTION_REDRAW;
|
|
|
|
last->button = BUTTON_NONE;
|
|
|
|
button_clear_queue();
|
|
|
|
}
|
2008-01-21 09:48:44 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
cur->action = action;
|
|
|
|
#endif/*!HAS_BUTTON_HOLD*/
|
|
|
|
}
|
2009-02-03 10:55:30 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* update_action_last copies the current action values into action_last
|
|
|
|
* saving the current state & allowing get_action_worker() to return
|
|
|
|
* while waiting for the next button press; Since some actions take
|
|
|
|
* multiple buttons, this allows those actions to be looked up and
|
|
|
|
* returned in a non-blocking way;
|
|
|
|
* Returns action, checks\sets repeated, plays keyclick (if applicable)
|
|
|
|
*/
|
|
|
|
static inline int update_action_last(action_last_t *last, action_cur_t *cur)
|
|
|
|
{
|
|
|
|
int action = cur->action;
|
2009-02-03 10:55:30 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
logf ("action system: context: %d last context: %d, action: %d, \
|
|
|
|
last action: %d, button %d, last btn: %d, last repeated: %d, \
|
|
|
|
last_data: %d", cur->context, last->context, cur->action,
|
|
|
|
last->action, cur->button, last->button, last->repeated, last->data);
|
|
|
|
|
|
|
|
if (action == last->action)
|
|
|
|
{
|
|
|
|
last->repeated = (current_tick < last->tick + REPEAT_WINDOW_TICKS);
|
2009-02-03 10:55:30 +00:00
|
|
|
}
|
2008-01-21 09:48:44 +00:00
|
|
|
else
|
2017-09-26 14:32:07 +00:00
|
|
|
{
|
|
|
|
last->repeated = false;
|
|
|
|
}
|
2007-03-04 07:45:12 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
last->action = action;
|
|
|
|
last->button = cur->button;
|
|
|
|
last->data = button_get_data();
|
|
|
|
last->tick = current_tick;
|
2012-01-12 11:28:36 +00:00
|
|
|
|
|
|
|
/* Produce keyclick */
|
2017-09-26 14:32:07 +00:00
|
|
|
keyclick_click(false, action);
|
2012-01-12 11:28:36 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return action;
|
|
|
|
}
|
2006-08-15 12:27:07 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/********************************************************
|
|
|
|
* init_act_cur initializes passed struct action_cur_t
|
|
|
|
* with context, timeout,and get_context_map.
|
|
|
|
* other values set to default
|
|
|
|
* if get_context_map is NULL standard
|
|
|
|
* context mapping will be used
|
|
|
|
*/
|
|
|
|
static void init_act_cur(action_cur_t *cur,
|
|
|
|
int context, int timeout,
|
|
|
|
const struct button_mapping* (*get_context_map)(int))
|
|
|
|
{
|
|
|
|
cur->action = ACTION_UNKNOWN;
|
|
|
|
cur->button = BUTTON_NONE;
|
|
|
|
cur->context = context;
|
|
|
|
cur->is_prebutton = false;
|
|
|
|
cur->items = NULL;
|
|
|
|
cur->timeout = timeout;
|
2017-12-11 01:24:42 +00:00
|
|
|
cur->get_context_map = get_context_map;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************
|
|
|
|
* do_backlight allows exemptions to the backlight on
|
|
|
|
* user selected actions; Actions need to be looked up
|
|
|
|
* before the decision to turn on backlight is made,
|
|
|
|
* if selective backlighting is enabled then
|
|
|
|
* filter first keypress events may need
|
|
|
|
* to be taken into account as well
|
|
|
|
* IF SEL_ACTION_ENABLED then:
|
|
|
|
* Returns action or is FFKeypress is enabled,
|
|
|
|
* ACTION_NONE on first keypress
|
|
|
|
* delays backlight_on until action is known
|
|
|
|
* handles backlight_on if needed
|
|
|
|
*/
|
|
|
|
static inline int do_backlight(action_last_t *last, action_cur_t *cur, int action)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#if !defined(HAVE_BACKLIGHT)
|
|
|
|
(void) last;
|
|
|
|
(void) cur;
|
|
|
|
return action;
|
|
|
|
#else
|
|
|
|
if (!has_flag(last->backlight_mask, SEL_ACTION_ENABLED)
|
|
|
|
|| (action & (SYS_EVENT|BUTTON_MULTIMEDIA)) != 0
|
|
|
|
|| action == ACTION_REDRAW)
|
|
|
|
{
|
|
|
|
return action;
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
bool filtered;
|
|
|
|
bool bl_activate = false;
|
|
|
|
bool bl_is_off = !is_backlight_on(false);
|
|
|
|
|
|
|
|
#if CONFIG_CHARGING /* disable if on external power */
|
|
|
|
bl_is_off &= !(has_flag(last->backlight_mask, SEL_ACTION_NOEXT)
|
|
|
|
&& power_input_present());
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
#endif
|
2017-09-26 14:32:07 +00:00
|
|
|
/* skip if backlight on | incorrect context | SEL_ACTION_NOEXT + ext pwr */
|
|
|
|
if ((cur->context == CONTEXT_FM || cur->context == CONTEXT_WPS) && bl_is_off)
|
|
|
|
{
|
|
|
|
filtered = is_action_filtered(action, last->backlight_mask, cur->context);
|
|
|
|
bl_activate = !is_action_discarded(cur, filtered, &last->bl_filter_tick);
|
|
|
|
}
|
|
|
|
else /* standard backlight behaviour */
|
|
|
|
{
|
|
|
|
bl_activate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action != ACTION_NONE && bl_activate)
|
|
|
|
{
|
|
|
|
action_handle_backlight(true, true);
|
|
|
|
/* Handle first keypress enables backlight only */
|
|
|
|
if (has_flag(last->backlight_mask, SEL_ACTION_FFKEYPRESS) && bl_is_off)
|
|
|
|
{
|
|
|
|
action = ACTION_NONE;
|
|
|
|
last->button = BUTTON_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
action_handle_backlight(false, true);/* set ignore next true */
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return action;
|
|
|
|
#endif /* !HAVE_BACKLIGHT */
|
2006-08-15 12:27:07 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/********************************************************************
|
|
|
|
* get_action_worker() searches the button list of the passed context
|
|
|
|
* for the just pressed button. If there is a match it returns the
|
|
|
|
* value from the list. If there is no match, the last item in the
|
|
|
|
* list "points" to the next context in a chain so the "chain" is
|
|
|
|
* followed until the button is found. ACTION_NONE int the button
|
|
|
|
* list will get CONTEXT_STD which is always the last list checked.
|
|
|
|
*
|
|
|
|
* BE AWARE IF YOUR DESIRED ACTION IS IN A LOWER 'CHAINED' CONTEXT::
|
|
|
|
* *** is_prebutton can miss pre_buttons
|
|
|
|
* ** An action without pre_button_code (pre_button_code = BUTTON_NONE)
|
|
|
|
* * will be returned from the higher context see action_code_worker()
|
|
|
|
* for a more in-depth explanation
|
|
|
|
*
|
|
|
|
* Timeout can be: TIMEOUT_NOBLOCK to return immediatly
|
|
|
|
* TIMEOUT_BLOCK to wait for a button press
|
|
|
|
* Any number >0 to wait that many ticks for a press
|
|
|
|
*/
|
|
|
|
static int get_action_worker(action_last_t *last, action_cur_t *cur)
|
2006-08-15 12:27:07 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
send_event(GUI_EVENT_ACTIONUPDATE, NULL);
|
2006-08-15 12:27:07 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/*if button = none/special; returns immediately*/
|
|
|
|
if (action_poll_button(last, cur))
|
2009-06-11 20:36:02 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
return cur->button;
|
2009-06-11 20:36:02 +00:00
|
|
|
}
|
2006-08-15 12:27:07 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
update_screen_has_lock(last, cur);
|
2007-07-22 21:02:24 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (get_action_touchscreen(last, cur))
|
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
do_softlock(last, cur);
|
2017-09-26 14:32:07 +00:00
|
|
|
return cur->action;
|
|
|
|
}
|
2007-03-04 07:45:12 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
button_flip_horizontally(cur->context, &cur->button);
|
|
|
|
|
|
|
|
action_code_lookup(last, cur);
|
|
|
|
|
|
|
|
do_softlock(last, cur);
|
|
|
|
|
|
|
|
return update_action_last(last, cur);
|
2007-03-04 07:45:12 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
* END INTERNAL ACTION FUNCTIONS ***********************************************
|
|
|
|
*******************************************************************************/
|
2007-10-22 12:26:53 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* EXPORTED ACTION FUNCTIONS ***************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2008-06-02 16:08:01 +00:00
|
|
|
/* return BUTTON_NONE on error
|
|
|
|
* BUTTON_REPEAT if repeated press
|
|
|
|
* BUTTON_REPEAT|BUTTON_REL if release after repeated press
|
2010-04-19 19:49:42 +00:00
|
|
|
* BUTTON_REL if it's a short press = release after press
|
2008-08-23 09:46:38 +00:00
|
|
|
* BUTTON_TOUCHSCREEN if press
|
2008-06-02 16:08:01 +00:00
|
|
|
*/
|
2008-08-23 09:46:38 +00:00
|
|
|
int action_get_touchscreen_press(short *x, short *y)
|
2007-10-22 12:26:53 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
|
2007-10-22 12:26:53 +00:00
|
|
|
int data;
|
2017-09-26 14:32:07 +00:00
|
|
|
int ret = BUTTON_TOUCHSCREEN;
|
|
|
|
|
|
|
|
if (!has_flag(action_last.button, BUTTON_TOUCHSCREEN))
|
|
|
|
{
|
2007-10-22 12:26:53 +00:00
|
|
|
return BUTTON_NONE;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
2007-10-22 12:26:53 +00:00
|
|
|
data = button_get_data();
|
2017-09-26 14:32:07 +00:00
|
|
|
if (has_flag(action_last.button, BUTTON_REL))
|
2007-10-22 12:26:53 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
*x = (action_last.ts_data&0xffff0000)>>16;
|
|
|
|
*y = (action_last.ts_data&0xffff);
|
2007-10-22 12:26:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*x = (data&0xffff0000)>>16;
|
|
|
|
*y = (data&0xffff);
|
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
action_last.ts_data = data;
|
|
|
|
|
|
|
|
if (action_last.repeated)
|
|
|
|
{
|
|
|
|
ret = BUTTON_REPEAT;
|
|
|
|
}
|
|
|
|
else if (action_last.ts_short_press)
|
|
|
|
{
|
|
|
|
ret = BUTTON_REL;
|
|
|
|
}
|
2008-06-02 16:08:01 +00:00
|
|
|
/* This is to return a BUTTON_REL after a BUTTON_REPEAT. */
|
2017-09-26 14:32:07 +00:00
|
|
|
else if (has_flag(action_last.button, BUTTON_REL))
|
|
|
|
{
|
|
|
|
ret = BUTTON_REPEAT|BUTTON_REL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-10-22 12:26:53 +00:00
|
|
|
}
|
2009-10-11 20:11:48 +00:00
|
|
|
|
|
|
|
int action_get_touchscreen_press_in_vp(short *x1, short *y1, struct viewport *vp)
|
|
|
|
{
|
|
|
|
short x, y;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = action_get_touchscreen_press(&x, &y);
|
|
|
|
|
|
|
|
if (ret != BUTTON_NONE && viewport_point_within_vp(vp, x, y))
|
|
|
|
{
|
|
|
|
*x1 = x - vp->x;
|
|
|
|
*y1 = y - vp->y;
|
|
|
|
return ret;
|
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
|
|
|
if (has_flag(ret, BUTTON_TOUCHSCREEN))
|
|
|
|
{
|
2009-10-11 20:11:48 +00:00
|
|
|
return ACTION_UNKNOWN;
|
2017-09-26 14:32:07 +00:00
|
|
|
}
|
|
|
|
|
2009-10-11 20:11:48 +00:00
|
|
|
return BUTTON_NONE;
|
|
|
|
}
|
2007-10-22 12:26:53 +00:00
|
|
|
#endif
|
2009-07-03 05:08:33 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
bool action_userabort(int timeout)
|
|
|
|
{
|
|
|
|
int action = get_custom_action(CONTEXT_STD, timeout, NULL);
|
|
|
|
bool ret = (action == ACTION_STD_CANCEL);
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
default_event_handler(action);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-07-03 05:08:33 +00:00
|
|
|
void action_wait_for_release(void)
|
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.wait_for_release = true;
|
2009-07-03 05:08:33 +00:00
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
int get_action(int context, int timeout)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_cur_t current;
|
|
|
|
init_act_cur(¤t, context, timeout, NULL);
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
int action = get_action_worker(&action_last, ¤t);
|
|
|
|
|
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
if (action == ACTION_TOUCHSCREEN)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action = sb_touch_to_button(context);
|
|
|
|
}
|
|
|
|
#endif
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
action = do_backlight(&action_last, ¤t, action);
|
|
|
|
|
|
|
|
return action;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
|
Add custom action mapping to core
results of an idea I discussed in IRC
changed the way the lookup in the remap file works..
entries consist of 3 int [action, button, prebtn]
context look up table is at the beginning
action_code contains the (context | CONTEXT_REMAPPED)
button_code contains the index of the first remapped action for the matched context
[0] CORE_CONTEXT_REMAP(ctx1) offset1=(3), count=(1)
[1] CORE_CONTEXT_REMAP(ctx2, offset2=(5), count=(1)
[2] sentinel, 0, 0
[3] act0, btn, 0
[4] sentinel 0, 0
[5] act1, btn, 0
[6] sentinel, 0, 0
Note:
last entry of each group is always the sentinel [CONTEXT_STOPSEARCHING, BUTTON_NONE, BUTTON_NONE]
contexts must match exactly -- re-mapped contexts run before the built in w/ fall through contexts
ie. you can't remap std_context and expect it to match std_context actions from the WPS context.
-- Done --
Code for reading core remap entries
-- Done --
import of core remap entires from disk
-- Done --
plugin to set new key mapping (the hard part)
The plugin is started and FULLY functional
you can add actions and contexts
you can change context, action, button, prebtn
delete keymap files
load keymapfiles
save user keymaps
test keymaps before applying them
loading keymaps to core still requires restart
-----------------------------------------------------------------------------------------------
Change-Id: Ib8b88c5ae91af4d540e1829de5db32669cd68203
2021-04-03 01:34:29 +00:00
|
|
|
int action_set_keymap(struct button_mapping* core_keymap, int count)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef DISABLE_ACTION_REMAP
|
|
|
|
count = -1;
|
|
|
|
#else
|
|
|
|
if (count > 0 && core_keymap != NULL) /* saf-tey checks :) */
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
if (core_keymap[count - 1].action_code != (int) CONTEXT_STOPSEARCHING ||
|
|
|
|
core_keymap[count - 1].button_code != BUTTON_NONE) /* check for sentinel at end*/
|
|
|
|
count = -1;
|
|
|
|
|
|
|
|
/* check the lut at the beginning for invalid offsets */
|
|
|
|
while (count > 0 && core_keymap[i].action_code != (int) CONTEXT_STOPSEARCHING)
|
|
|
|
{
|
|
|
|
if ((core_keymap[i].action_code & CONTEXT_REMAPPED) == CONTEXT_REMAPPED)
|
|
|
|
{
|
|
|
|
int firstbtn = core_keymap[i].button_code;
|
|
|
|
int endpos = firstbtn + core_keymap[i].pre_button_code;
|
|
|
|
if (firstbtn > count || firstbtn < i || endpos > count)
|
|
|
|
{
|
|
|
|
/* offset out of bounds */
|
|
|
|
count = -2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (core_keymap[endpos].action_code != (int) CONTEXT_STOPSEARCHING)
|
|
|
|
{
|
|
|
|
/* stop sentinel is not at end of action lut*/
|
|
|
|
count = -3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* something other than a context remap in the lut */
|
|
|
|
{
|
|
|
|
count = -4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if (i >= count) /* no sentinel in the lut */
|
|
|
|
{
|
|
|
|
count = -5;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count <= 0)
|
|
|
|
core_keymap = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
core_keymap = NULL;
|
|
|
|
}
|
|
|
|
action_last.core_keymap = core_keymap;
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
int get_custom_action(int context,int timeout,
|
|
|
|
const struct button_mapping* (*get_context_map)(int))
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_cur_t current;
|
|
|
|
init_act_cur(¤t, context, timeout, get_context_map);
|
|
|
|
|
|
|
|
return get_action_worker(&action_last, ¤t);
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
intptr_t get_action_data(void)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
return action_last.data;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
int get_action_statuscode(int *button)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
int ret = 0;
|
|
|
|
if (button)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
*button = action_last.button;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (has_flag(action_last.button, BUTTON_REMOTE))
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
ret |= ACTION_REMOTE;
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
if (action_last.repeated)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
ret |= ACTION_REPEAT;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
return ret;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
/* Enable selected actions to leave the backlight off */
|
|
|
|
void set_selective_backlight_actions(bool selective, unsigned int mask,
|
|
|
|
bool filter_fkp)
|
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_handle_backlight(true, selective);
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
if (selective) /* we will handle filter_first_keypress here so turn it off*/
|
|
|
|
{
|
|
|
|
set_backlight_filter_keypress(false);/* turnoff ffkp in button.c */
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.backlight_mask = mask | SEL_ACTION_ENABLED;
|
|
|
|
if (filter_fkp)
|
|
|
|
{
|
|
|
|
action_last.backlight_mask |= SEL_ACTION_FFKEYPRESS;
|
|
|
|
}
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_backlight_filter_keypress(filter_fkp);
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.backlight_mask = SEL_ACTION_NONE;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_BACKLIGHT */
|
|
|
|
|
|
|
|
#ifndef HAS_BUTTON_HOLD
|
|
|
|
bool is_keys_locked(void)
|
|
|
|
{
|
2021-05-27 23:26:59 +00:00
|
|
|
return (action_last.keys_locked);
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/* Enable selected actions to bypass a locked state */
|
|
|
|
void set_selective_softlock_actions(bool selective, unsigned int mask)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.keys_locked = false;
|
|
|
|
if (selective)
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.softlock_mask = mask | SEL_ACTION_ENABLED;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
else
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
{
|
2017-09-26 14:32:07 +00:00
|
|
|
action_last.softlock_mask = SEL_ACTION_NONE;
|
Selective Backlight/Advanced Softlock - Selective actions based on context
Selective backlight allows the user to choose actions that will not
enable the backlight when pressed.
Advanced softlock allows user to choose actions that will not be
blocked by screenlock on devices without a hold button.
Both only occur in FM and WPS Contexts.
Update:
Back from the dead
-Cleaned up code, removed unnecessary calls, re-arranged last filter action
timeout conditional to work in case last_filtered_action_tick was never set
-Added entries to the manual
-Fixed back button on some menus not activating backlight
-Made menus more intuitive, no actions selected now changes menu item to off.
-Added talk fuctionality.
-Added option to disable selective backlight while on external power.
-Rewrote backlight and softlock handling code to fix issue with scrollwheels
-Menu changed to have toggle(yes/no) and settings
-Optimized selective actions lookup
-Added option to disable notification of 'buttons locked' while softlocked
-Removed uneeded code, consolidated action lookup to single function
-Fixed incorrect name on selective softlock menu
-Added option to disable touch on touchscreen devices
-Fixed backlight on original screenlock without selective screenlock active
-Added text selection in mask_select for when show_icons is off
-Fixed voice in mask_select to speak if voice is defined instead of spelling
-Added more lang defines (play skip seek)
-Added option to disable unknown keys turning on backlight
-Fixed Conditional argument In wrong place causing players without
backlight to fail to build
-Fixed Disable Unknown blocking detection of context change
-Fixed canceling menu didn't update new settings
-Added Autolock on backlight off
-Removed backlight_on_force from backlight.c, Now sets ignore next to false
and uses backlight_on
-Cleaned up autolock code added strings to lang file
-Fixed issue where rapid presses would bypass softlock
-Removed old softlock code, Cleaned selective actions code
-Changed menu to match existing RB menus
-Fixed Backlight_on_Hold blocked by backlight_ignore_next
-Fixed ignore_next for ipod
-Fixed bug allowing context with softlock to bypass selective backlight
-Changed mask_select to no longer prompt for changes to be saved
-Changed menu names
-Added ignore timeout to allow ipod scroll wheel to work properly and other
players to still work properly, removed some previous code including
ignore_event
-Increased ignore timeout to prevent sd card accesses from interrupting action
code and turning on backlight
-Changed Unknown action to unmapped action in menu, changed handling code
-Removed unneeded logic and variables for handling unfiltered actions
-Reverted unmapped action code to previous functionality
-Added manual entries (thanks JohnB)
-Removed elusive unhandled unicode character from manual, changed formatting slightly
Actions:
Volume,Play,Seek,Skip
Extras:
Disable unmapped actions
Disable selective backlight on external power
Disable touch during softlock on touchscreen devices
Disable softlock notifications (power button still notifies)
Autolock on backlight off
Method:
Adds a function to ignore backlight on next call
If selected action occurs backlight is forced on,
Filter_first_keypress stays intact.
Selective softlock allows selected actions through, bypasses the normal
softlock routine.
ToDo:
DONE
previous commit (#1) has attribution for folder_select.c which mask_select
is based from.
Change-Id: I08132ddcfd64c81751ef23b720f3ec6d68695fe4
2016-11-22 05:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-27 23:26:59 +00:00
|
|
|
|
2021-08-12 18:38:46 +00:00
|
|
|
/* look for an action in the given context, return button which triggers it.
|
|
|
|
* (note: pre_button isn't taken into account here) */
|
|
|
|
static int find_button_for_action(int context, int action)
|
2021-05-27 23:26:59 +00:00
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
const struct button_mapping *items;
|
|
|
|
int i;
|
2021-05-27 23:26:59 +00:00
|
|
|
|
2021-08-12 18:38:46 +00:00
|
|
|
do
|
2021-05-27 23:26:59 +00:00
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
items = get_context_mapping(context);
|
|
|
|
if (items == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (i = 0; items[i].button_code != BUTTON_NONE; ++i)
|
2021-05-27 23:26:59 +00:00
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
if (items[i].action_code == action)
|
|
|
|
return items[i].button_code;
|
2021-05-27 23:26:59 +00:00
|
|
|
}
|
|
|
|
|
2021-08-12 18:38:46 +00:00
|
|
|
/* get chained context, if none it will be CONTEXT_STOPSEARCHING */
|
|
|
|
context = items[i].action_code;
|
|
|
|
} while (context != (int)CONTEXT_STOPSEARCHING);
|
|
|
|
|
|
|
|
return BUTTON_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void action_autosoftlock_init(void)
|
|
|
|
{
|
|
|
|
/* search in WPS and STD contexts for the keylock button combo */
|
|
|
|
static const int contexts[2] = { CONTEXT_WPS, CONTEXT_STD };
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; ++i)
|
|
|
|
{
|
|
|
|
int button = find_button_for_action(contexts[i], ACTION_STD_KEYLOCK);
|
|
|
|
if (button != BUTTON_NONE)
|
2021-05-27 23:26:59 +00:00
|
|
|
{
|
2021-08-12 18:38:46 +00:00
|
|
|
action_last.unlock_combo = button;
|
|
|
|
break;
|
2021-05-27 23:26:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we have autolock and alwaysautolock, go ahead and arm it */
|
|
|
|
if (has_flag(action_last.softlock_mask, SEL_ACTION_AUTOLOCK) &&
|
|
|
|
has_flag(action_last.softlock_mask, SEL_ACTION_ALWAYSAUTOLOCK) &&
|
|
|
|
(action_last.unlock_combo != BUTTON_NONE))
|
|
|
|
{
|
|
|
|
action_last.softlock_mask = action_last.softlock_mask | SEL_ACTION_ALOCK_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2017-09-26 14:32:07 +00:00
|
|
|
#endif /* !HAS_BUTTON_HOLD */
|
2021-05-27 23:26:59 +00:00
|
|
|
|
2017-09-26 14:32:07 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
* END EXPORTED ACTION FUNCTIONS ***********************************************
|
|
|
|
*******************************************************************************/
|