mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-19 01:29:49 +00:00
f509dfb9f6
* Start implementing the godot_better_input plugin * Update ShortcutEdit.gd * Load & save preset option * Add some groups and fix action events not being deleted on load * Add MenuInputAction class for multiple menu accelerators * Create a proper plugin and a BetterInput autoload * Update menu accelerators * Move settings to BetterInput * Move menu enums to Global, make more MenuInputActions * Add more menu events * Add new groups * Optimize BetterInput _input() method * Remove a lot of lines of code * Change some previous events, add ignore actions and a View menu group * Change update_item_accelerator to update_ui * Move MenuInputAction initialization to BetterInput.gd * Update hint tooltips when a shortcut changes Temporarily comment out some code regarding the configurable modifiers * Some MenuInputAction variable name changes * Add handle_input() to InputAction * Update the shortcuts of buttons * Fix shortcut selector menu position * Change plugin name into Keychain * Fix keyboard input dialog exiting when Enter or Space is being pressed * Add two more groups * Make groups folded by default * Temporarily make tool modifier shortcuts not configurable A temporary change, they will be made configurable again, with different actions that are currently mapped to the same events, local/independent from each other. * Add license for Keychain * Fix issue where a key event would be added in other input types * Fix bug where the assigned state was not updated when the dialog appeared again * Update Main.tscn * Add a disabled line edit in keyboard shortcut selector to grab focus * Load presets in the Keychain autoload This way, the input actions get updated from the start, instead of only at the ShortcutEdit scene. WARNING, this currently causes crashes if the menu items have no shortcut binded to them. * Move custom settings away from Keychain.gd To keep it the same as the upstream plugin * Change menu enum names * Made action_get_first_key() more general * Use arrays for menu items instead of dictionaries, fixes crash * Move moveable panels to Window menu * Format * Optimize hint tooltip updating * Add support for translations in Keychain * Translation changes * Made tool modifiers configurable Needs more testing. * Made camera arrow key movement configurable & joypad axis support This commit removes the ability to press Shift and Control+Shift to adjust the camera arrow key movement speed. Instead, the speed depends on the zoom level. The right joypad analog stick is configured to move the camera by default. * Rename presets into shortcut profiles, use Resources and let users create their own * [skip ci] Update addons README * Update Global.gd
191 lines
6.4 KiB
GDScript
191 lines
6.4 KiB
GDScript
extends ConfirmationDialog
|
|
|
|
enum InputTypes { KEYBOARD, MOUSE, JOY_BUTTON, JOY_AXIS }
|
|
|
|
export(InputTypes) var input_type: int = InputTypes.KEYBOARD
|
|
var listened_input: InputEvent
|
|
|
|
onready var root: Node = get_parent()
|
|
onready var input_type_l: Label = $VBoxContainer/InputTypeLabel
|
|
onready var entered_shortcut: LineEdit = $VBoxContainer/EnteredShortcut
|
|
onready var option_button: OptionButton = $VBoxContainer/OptionButton
|
|
onready var already_exists: Label = $VBoxContainer/AlreadyExistsLabel
|
|
|
|
|
|
func _ready() -> void:
|
|
set_process_input(false)
|
|
if input_type == InputTypes.KEYBOARD:
|
|
get_ok().focus_neighbour_top = entered_shortcut.get_path()
|
|
get_cancel().focus_neighbour_top = entered_shortcut.get_path()
|
|
entered_shortcut.focus_neighbour_bottom = get_ok().get_path()
|
|
else:
|
|
get_ok().focus_neighbour_top = option_button.get_path()
|
|
get_cancel().focus_neighbour_top = option_button.get_path()
|
|
option_button.focus_neighbour_bottom = get_ok().get_path()
|
|
|
|
get_close_button().focus_mode = Control.FOCUS_NONE
|
|
|
|
|
|
func _input(event: InputEvent) -> void:
|
|
if not event is InputEventKey:
|
|
return
|
|
if event.pressed:
|
|
listened_input = event
|
|
entered_shortcut.text = OS.get_scancode_string(event.get_scancode_with_modifiers())
|
|
_show_assigned_state(event)
|
|
|
|
|
|
func _show_assigned_state(event: InputEvent) -> void:
|
|
var metadata = root.currently_editing_tree_item.get_metadata(0)
|
|
var action := ""
|
|
if metadata is InputEvent: # Editing an input event
|
|
action = root.currently_editing_tree_item.get_parent().get_metadata(0)
|
|
elif metadata is String: # Adding a new input event to an action
|
|
action = metadata
|
|
|
|
var matching_pair: Array = _find_matching_event_in_map(action, event)
|
|
if matching_pair:
|
|
already_exists.text = tr("Already assigned to: %s") % root.get_action_name(matching_pair[0])
|
|
else:
|
|
already_exists.text = ""
|
|
|
|
|
|
func _on_ShortcutSelectorDialog_confirmed() -> void:
|
|
if listened_input == null:
|
|
return
|
|
_apply_shortcut_change(listened_input)
|
|
|
|
|
|
func _apply_shortcut_change(input_event: InputEvent) -> void:
|
|
var metadata = root.currently_editing_tree_item.get_metadata(0)
|
|
if metadata is InputEvent: # Editing an input event
|
|
var parent_metadata = root.currently_editing_tree_item.get_parent().get_metadata(0)
|
|
var changed: bool = _set_shortcut(parent_metadata, metadata, input_event)
|
|
if !changed:
|
|
return
|
|
root.currently_editing_tree_item.set_metadata(0, input_event)
|
|
root.currently_editing_tree_item.set_text(0, root.event_to_str(input_event))
|
|
elif metadata is String: # Adding a new input event to an action
|
|
var changed: bool = _set_shortcut(metadata, null, input_event)
|
|
if !changed:
|
|
return
|
|
root.add_event_tree_item(input_event, root.currently_editing_tree_item)
|
|
|
|
|
|
func _set_shortcut(action: String, old_event: InputEvent, new_event: InputEvent) -> bool:
|
|
if InputMap.action_has_event(action, new_event): # If the current action already has that event
|
|
return false
|
|
if old_event:
|
|
Keychain.action_erase_event(action, old_event)
|
|
|
|
# Loop through other actions to see if the event exists there, to re-assign it
|
|
var matching_pair := _find_matching_event_in_map(action, new_event)
|
|
|
|
if matching_pair:
|
|
var group := ""
|
|
if action in Keychain.actions:
|
|
group = Keychain.actions[action].group
|
|
|
|
var action_to_replace: String = matching_pair[0]
|
|
var input_to_replace: InputEvent = matching_pair[1]
|
|
Keychain.action_erase_event(action_to_replace, input_to_replace)
|
|
Keychain.selected_profile.change_action(action_to_replace)
|
|
var tree_item: TreeItem = root.tree.get_root()
|
|
var prev_tree_item: TreeItem
|
|
while tree_item != null: # Loop through Tree's TreeItems...
|
|
var metadata = tree_item.get_metadata(0)
|
|
if metadata is InputEvent:
|
|
if input_to_replace.shortcut_match(metadata):
|
|
var map_action: String = tree_item.get_parent().get_metadata(0)
|
|
if map_action in Keychain.actions:
|
|
# If it's local, check if it's the same group, otherwise ignore
|
|
if !Keychain.actions[map_action].global:
|
|
if Keychain.actions[map_action].group != group:
|
|
tree_item = _get_next_tree_item(tree_item)
|
|
continue
|
|
tree_item.free()
|
|
break
|
|
|
|
tree_item = _get_next_tree_item(tree_item)
|
|
|
|
Keychain.action_add_event(action, new_event)
|
|
Keychain.selected_profile.change_action(action)
|
|
return true
|
|
|
|
|
|
# Based on https://github.com/godotengine/godot/blob/master/scene/gui/tree.cpp#L685
|
|
func _get_next_tree_item(current: TreeItem) -> TreeItem:
|
|
if current.get_children():
|
|
current = current.get_children()
|
|
elif current.get_next():
|
|
current = current.get_next()
|
|
else:
|
|
while current and !current.get_next():
|
|
current = current.get_parent()
|
|
if current:
|
|
current = current.get_next()
|
|
return current
|
|
|
|
|
|
func _find_matching_event_in_map(action: String, event: InputEvent) -> Array:
|
|
var group := ""
|
|
if action in Keychain.actions:
|
|
group = Keychain.actions[action].group
|
|
|
|
for map_action in InputMap.get_actions():
|
|
if map_action in Keychain.ignore_actions:
|
|
continue
|
|
if Keychain.ignore_ui_actions and map_action.begins_with("ui_"):
|
|
continue
|
|
for map_event in InputMap.get_action_list(map_action):
|
|
if event.shortcut_match(map_event):
|
|
if map_action in Keychain.actions:
|
|
# If it's local, check if it's the same group, otherwise ignore
|
|
if !Keychain.actions[map_action].global:
|
|
if Keychain.actions[map_action].group != group:
|
|
continue
|
|
|
|
return [map_action, map_event]
|
|
|
|
return []
|
|
|
|
|
|
func _on_ShortcutSelectorDialog_about_to_show() -> void:
|
|
if input_type == InputTypes.KEYBOARD:
|
|
listened_input = null
|
|
already_exists.text = ""
|
|
entered_shortcut.text = ""
|
|
yield(get_tree(), "idle_frame")
|
|
entered_shortcut.grab_focus()
|
|
else:
|
|
if !listened_input:
|
|
_on_OptionButton_item_selected(0)
|
|
else:
|
|
_show_assigned_state(listened_input)
|
|
|
|
|
|
func _on_ShortcutSelectorDialog_popup_hide() -> void:
|
|
set_process_input(false)
|
|
|
|
|
|
func _on_OptionButton_item_selected(index: int) -> void:
|
|
if input_type == InputTypes.MOUSE:
|
|
listened_input = InputEventMouseButton.new()
|
|
listened_input.button_index = index + 1
|
|
elif input_type == InputTypes.JOY_BUTTON:
|
|
listened_input = InputEventJoypadButton.new()
|
|
listened_input.button_index = index
|
|
elif input_type == InputTypes.JOY_AXIS:
|
|
listened_input = InputEventJoypadMotion.new()
|
|
listened_input.axis = index / 2
|
|
listened_input.axis_value = -1.0 if index % 2 == 0 else 1.0
|
|
_show_assigned_state(listened_input)
|
|
|
|
|
|
func _on_EnteredShortcut_focus_entered() -> void:
|
|
set_process_input(true)
|
|
|
|
|
|
func _on_EnteredShortcut_focus_exited() -> void:
|
|
set_process_input(false)
|