コード例 #1
0
ファイル: InputHandler.cs プロジェクト: thismarvin/relatus
        /// <summary>
        /// Returns whether or not the given <see cref="InputMapping"/> is currently being activated.
        /// </summary>
        /// <param name="name">The name of the input mapping, that was saved within the current <see cref="InputProfile"/>, that should be tested.</param>
        /// <returns>Whether or not the <see cref="InputMapping"/> was just pressed.</returns>
        public bool Pressing(string name)
        {
            VerifyUpdateIsCalled();

            if (Profile == null)
            {
                throw new RelatusException("The input profile has not been set.");
            }

            InputMapping inputMapping = Profile.GetMapping(name);

            if (PlayerIndex == PlayerIndex.One)
            {
                if (KeyboardExt.Pressing(inputMapping.Keys) || MouseExt.Pressing(inputMapping.MouseButtons))
                {
                    return(true);
                }
            }

            if (gamePad.IsConnected)
            {
                if (gamePad.Pressing(inputMapping.GamepadButtons))
                {
                    return(true);
                }
            }

            return(false);
        }
コード例 #2
0
ファイル: InputHandler.cs プロジェクト: delveam/keep-stalling
        /// <summary>
        /// Returns whether or not the given <see cref="InputMapping"/> is currently being activated.
        /// </summary>
        /// <param name="name">The name of the input mapping, that was saved within the current <see cref="InputProfile"/>, that should be tested.</param>
        /// <returns>Whether or not the <see cref="InputMapping"/> was just pressed.</returns>
        public bool Pressing(string name)
        {
            VerifyUpdateIsCalled();

            InputMapping inputMapping = inputProfile.GetMapping(name);

            if (PlayerIndex == PlayerIndex.One)
            {
                if (KeyboardExt.Pressing(inputMapping.Keys) || MouseExt.Pressing(inputMapping.MouseButtons))
                {
                    return(true);
                }
            }

            if (gamePad.IsConnected)
            {
                if (gamePad.Pressing(inputMapping.GamepadButtons))
                {
                    return(true);
                }
            }

            return(false);
        }
コード例 #3
0
        public InputProfile RegisterMapping(InputMapping mapping)
        {
            inputMappings.Register(mapping.Name, mapping);

            return(this);
        }