Difference between revisions of "Mouse or touch control Input"
(→Adding GamePad Control) |
(→Adding Touch Control) |
||
Line 43: | Line 43: | ||
=Adding Touch Control= | =Adding Touch Control= | ||
− | With in the Game1.cs file, find the the Game1 class and find the | + | With in the Game1.cs file, find the the Game1 class and find the Initialize method within the Game1.cs file. You need to add the line below to set the FreeDrag gesture: |
<syntaxhighlight lang=csharp> | <syntaxhighlight lang=csharp> | ||
− | // | + | //Enable the FreeDrag gesture. |
− | + | TouchPanel.EnabledGestures = GestureType.FreeDrag; | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 66: | Line 55: | ||
==Reading the GamePad and Move== | ==Reading the GamePad and Move== | ||
− | Now in the UpdatePlayer method add the code to | + | Now in the UpdatePlayer method add the code to move the player based upon the FreeDrag gesture: |
<syntaxhighlight lang=csharp> | <syntaxhighlight lang=csharp> | ||
− | + | // Windows 8 Touch Gestures for MonoGame | |
− | player.Position | + | while (TouchPanel.IsGestureAvailable) |
+ | { | ||
+ | GestureSample gesture = TouchPanel.ReadGesture(); | ||
+ | if (gesture.GestureType == GestureType.FreeDrag) | ||
+ | { | ||
+ | player.Position += gesture.Delta; | ||
+ | } | ||
+ | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ==Other Touch Gestures== | |
+ | <syntaxhighlight lang=csharp> | ||
+ | GestureType.Hold | ||
+ | |||
+ | GestureType.Tap | ||
+ | |||
+ | GestureType.DoubleTap | ||
+ | |||
+ | GestureType.FreeDrag | ||
+ | |||
+ | GestureType.Flick | ||
+ | GestureType.Pinch | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | You can enable many gestures at the same time: | ||
<syntaxhighlight lang=csharp> | <syntaxhighlight lang=csharp> | ||
− | + | TouchPanel.EnabledGestures = gesture1 | gesture2 | gesture ... ; | |
− | + | </syntaxhighlight> | |
− | + | You would need to add checks for the other enabled gestures, eg: | |
− | + | <syntaxhighlight lang=csharp> | |
+ | if (gesture.GestureType == GestureType.Tap) | ||
+ | { | ||
+ | |||
+ | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 15:32, 28 March 2017
This page is to document how to you can handle mouse and touch input. You could essentially program all inputs within your player movement code. The page about the keyboard input is: Adding and Processing Player Input.
Contents
Adding GamePad Control
With in the Game1.cs file, find the the Game1 class and find the line Player player; . After this line enter the following, this will be used to save the current and previous gamepad state and to also control the speed of movement (you may already have this if you have already coded the keyboard input):
// Gamepad states used to determine button presses
GamePadState currentGamePadState;
GamePadState previousGamePadState;
// A movement speed for the player
float playerMoveSpeed;
Now find the Initialize method within the Game1.cs file. You need to add the line below to set the movement speed:
// Set a constant player move speed
playerMoveSpeed = 8.0f;
The Update method within the Game1.cs file is used while the game is running. In order to make this easy to understand and read, we will create a new method to update the player and call it from the Update method. If you haven't already created the UpdatePlayer method, create the UpdatePlayer method and call it from Update, see below:
Reading the GamePad and Move
Now in the UpdatePlayer method add the code to detect left\right & up\down movement:
player.Position.X += currentGamePadState.ThumbSticks.Left.X * playerMoveSpeed;
player.Position.Y -= currentGamePadState.ThumbSticks.Left.Y * playerMoveSpeed;
Now, back in the Update method add the following lines to listen to the gamepad. Enter them just before we call UpdatePlayer:
// Save the previous state of the game pad so we can determine single movement
previousGamePadState = currentGamePadState;;
// Read the current state of the gamepad and store it
currentGamePadState = GamePad.GetState(PlayerIndex.One);
Adding Touch Control
With in the Game1.cs file, find the the Game1 class and find the Initialize method within the Game1.cs file. You need to add the line below to set the FreeDrag gesture:
//Enable the FreeDrag gesture.
TouchPanel.EnabledGestures = GestureType.FreeDrag;
The Update method within the Game1.cs file is used while the game is running. In order to make this easy to understand and read, we will create a new method to update the player and call it from the Update method. If you haven't already created the UpdatePlayer method, create the UpdatePlayer method and call it from Update, see below:
Reading the GamePad and Move
Now in the UpdatePlayer method add the code to move the player based upon the FreeDrag gesture:
// Windows 8 Touch Gestures for MonoGame
while (TouchPanel.IsGestureAvailable)
{
GestureSample gesture = TouchPanel.ReadGesture();
if (gesture.GestureType == GestureType.FreeDrag)
{
player.Position += gesture.Delta;
}
}
Other Touch Gestures
GestureType.Hold
GestureType.Tap
GestureType.DoubleTap
GestureType.FreeDrag
GestureType.Flick
GestureType.Pinch
You can enable many gestures at the same time:
TouchPanel.EnabledGestures = gesture1 | gesture2 | gesture ... ;
You would need to add checks for the other enabled gestures, eg:
if (gesture.GestureType == GestureType.Tap)
{
}