Ejemplo n.º 1
0
        public void OnGamepadButtonsPressed(Buttons GamepadButtons)
        {
            if (IsGamepadFocused && !RecentlyGainedFocus)
            {
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.RucksackCycleSortOrder))
                {
                    CycleSortOrder();
                }
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.RucksackCycleSortProperty))
                {
                    CycleSortProperty();
                }

                if (!GamepadControls.HandleNavigationButtons(this, GamepadButtons, HoveredSlot))
                {
                    this.IsGamepadFocused = false;
                }

                //  Handle action buttons
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.PrimaryAction))
                {
                    HandlePrimaryAction(GetHoveredItem());
                }
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.SecondaryAction))
                {
                    HandleSecondaryAction(GetHoveredItem());
                    SecondaryActionButtonPressedLocation = HoveredSlot;
                    SecondaryActionButtonPressedTime     = DateTime.Now;
                }
            }
        }
Ejemplo n.º 2
0
        public void OnGamepadButtonsPressed(Buttons GamepadButtons)
        {
            //  Handle closing the menu
            if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.CloseBag))
            {
                if (IsShowingModalMenu && CustomizeIconBounds != null)
                {
                    CloseModalMenu();
                }
                else
                {
                    Bag.CloseContents();
                }
                return;
            }

            //  Handle modifier buttons
            if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.TransferMultipleModifier))
            {
                IsTransferMultipleModifierHeld = true;
            }
            if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.TransferHalfModifier))
            {
                IsTransferHalfModifierHeld = true;
            }

            if (!IsGamepadFocused && !InventoryMenu.IsGamepadFocused && !Content.IsGamepadFocused)
            {
                InventoryMenu.IsGamepadFocused = true;
            }

            if (IsGamepadFocused && !RecentlyGainedFocus)
            {
                if (!GamepadControls.HandleNavigationButtons(this, GamepadButtons, HoveredButtonBounds))
                {
                    this.IsGamepadFocused = false;
                }

                //  Handle action buttons
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.PrimaryAction))
                {
                    HandlePrimaryAction();
                }
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.SecondaryAction))
                {
                    HandleSecondaryAction();
                }
            }

            if (IsShowingModalMenu && CustomizeIconMenu != null)
            {
                //TODO
            }

            InventoryMenu.OnGamepadButtonsPressed(GamepadButtons);
            Content.OnGamepadButtonsPressed(GamepadButtons);
        }
Ejemplo n.º 3
0
        public void Update(UpdateTickedEventArgs e)
        {
            RecentlyGainedFocus = false;

            if (e.IsMultipleOf(GamepadControls.Current.NavigationRepeatFrequency) && IsGamepadFocused && IsNavigatingWithGamepad)
            {
                if (!GamepadControls.HandleNavigationButtons(this, null, HoveredSlot))
                {
                    this.IsGamepadFocused = false;
                }
            }
        }
Ejemplo n.º 4
0
        public void OnGamepadButtonsPressed(Buttons GamepadButtons)
        {
            if (IsGamepadFocused && !RecentlyGainedFocus)
            {
                if (!GamepadControls.HandleNavigationButtons(this, GamepadButtons, HoveredSlot))
                {
                    this.IsGamepadFocused = false;
                }

                //  Handle action buttons
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.PrimaryAction))
                {
                    HandlePrimaryAction(GetHoveredBag());
                }
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.SecondaryAction))
                {
                    HandleSecondaryAction(GetHoveredBag());
                }
            }
        }
Ejemplo n.º 5
0
        public void Update(UpdateTickedEventArgs e)
        {
            RecentlyGainedFocus = false;

            if (e.IsMultipleOf(ItemBagMenu.TransferRepeatFrequency) && HoveredSlot.HasValue)
            {
                if (IsSecondaryActionButtonHeld && SecondaryActionButtonPressedLocation.HasValue && HoveredSlot.Value == SecondaryActionButtonPressedLocation.Value &&
                    SecondaryActionButtonPressedTime.HasValue && DateTime.Now.Subtract(SecondaryActionButtonPressedTime.Value).TotalMilliseconds >= 500)
                {
                    HandleSecondaryAction(GetHoveredItem());
                }
            }

            if (e.IsMultipleOf(GamepadControls.Current.NavigationRepeatFrequency) && IsGamepadFocused && IsNavigatingWithGamepad)
            {
                if (!GamepadControls.HandleNavigationButtons(this, null, HoveredSlot))
                {
                    this.IsGamepadFocused = false;
                }
            }
        }
Ejemplo n.º 6
0
        public void Update(UpdateTickedEventArgs e)
        {
            RecentlyGainedFocus = false;

            if (IsShowingModalMenu && CustomizeIconMenu != null)
            {
                CustomizeIconMenu.Update(e);
            }
            else
            {
                if (e.IsMultipleOf(GamepadControls.Current.NavigationRepeatFrequency) && IsGamepadFocused && IsNavigatingWithGamepad)
                {
                    if (!GamepadControls.HandleNavigationButtons(this, null, HoveredButtonBounds))
                    {
                        this.IsGamepadFocused = false;
                    }
                }

                InventoryMenu.Update(e);
                Content.Update(e);
            }
        }
Ejemplo n.º 7
0
        public void OnGamepadButtonsPressed(Buttons GamepadButtons)
        {
            if (IsGamepadFocused && !RecentlyGainedFocus)
            {
                if (!GamepadControls.HandleNavigationButtons(this, GamepadButtons, GetHoveredSlot(true)))
                {
                    this.IsGamepadFocused = false;
                }

                //  Handle action buttons
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.PrimaryAction))
                {
                    HandlePrimaryAction(GetHoveredItem());
                }
                if (GamepadControls.IsMatch(GamepadButtons, GamepadControls.Current.SecondaryAction))
                {
                    HandleSecondaryAction(GetHoveredItem());
                    SecondaryActionButtonPressedItem = HoveredBundleItem;
                    SecondaryActionButtonPressedTime = DateTime.Now;
                }
            }
        }
Ejemplo n.º 8
0
        public void Update(UpdateTickedEventArgs e)
        {
            RecentlyGainedFocus = false;

            if (e.IsMultipleOf(ItemBagMenu.TransferRepeatFrequency) && HoveredSlot.HasValue)
            {
                if (IsSecondaryActionButtonHeld && SecondaryActionButtonPressedLocation.HasValue && HoveredSlot.Value == SecondaryActionButtonPressedLocation.Value &&
                    SecondaryActionButtonPressedTime.HasValue && DateTime.Now.Subtract(SecondaryActionButtonPressedTime.Value).TotalMilliseconds >= 500
                    // Disallow Hold-to-repeat if sorting is set to a property that will cause the items to be dynamically re-ordered as items are removed
                    && Rucksack.SortProperty != SortingProperty.StackValue && Rucksack.SortProperty != SortingProperty.Quantity)
                {
                    HandleSecondaryAction(GetHoveredItem());
                }
            }

            if (e.IsMultipleOf(GamepadControls.Current.NavigationRepeatFrequency) && IsGamepadFocused && IsNavigatingWithGamepad)
            {
                if (!GamepadControls.HandleNavigationButtons(this, null, HoveredSlot))
                {
                    this.IsGamepadFocused = false;
                }
            }
        }