本文整理汇总了C#中TouchEventArgs.GetId方法的典型用法代码示例。如果您正苦于以下问题:C# TouchEventArgs.GetId方法的具体用法?C# TouchEventArgs.GetId怎么用?C# TouchEventArgs.GetId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TouchEventArgs
的用法示例。
在下文中一共展示了TouchEventArgs.GetId方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandleTouchStart
public void HandleTouchStart(TouchEventArgs e)
{
touchId = e.GetId();
previousTouchX = e.GetX();
previousTouchY = e.GetY();
screen.OnTouchStart(e);
}
示例2: HandleTouchMove
public void HandleTouchMove(TouchEventArgs e)
{
screen.OnTouchMove(e);
if (e.GetId() != touchId)
{
return;
}
float dx = e.GetX() - previousTouchX;
float dy = e.GetY() - previousTouchY;
previousTouchX = e.GetX();
previousTouchY = e.GetY();
ySpeed += dx / 10;
xSpeed += dy / 10;
}
示例3: OnTouchMove
public override void OnTouchMove(Game game, TouchEventArgs e)
{
float one = 1;
if (e.GetId() == touchIdMove)
{
float range = game.Width() * one / 20;
game.touchMoveDx = e.GetX() - touchMoveStartX;
game.touchMoveDy = -((e.GetY() - 1) - touchMoveStartY);
float length = game.Length(game.touchMoveDx, game.touchMoveDy, 0);
if (e.GetY() < game.Height() * 50 / 100)
{
game.touchMoveDx = 0;
game.touchMoveDy = 1;
}
else
{
if (length > 0)
{
game.touchMoveDx /= length;
game.touchMoveDy /= length;
}
}
}
if (e.GetId() == touchIdRotate)
{
game.touchOrientationDx += (e.GetX() - touchRotateStartX) / (game.Width() * one / 40);
game.touchOrientationDy += (e.GetY() - touchRotateStartY) / (game.Width() * one / 40);
touchRotateStartX = e.GetX();
touchRotateStartY = e.GetY();
}
}
示例4: OnTouchStart
public override void OnTouchStart(Game game_, TouchEventArgs e)
{
touchButtonsEnabled = true;
ScreenOnTouchStart(e);
if (e.GetHandled()) { return; }
if (e.GetX() <= game.Width() / 2)
{
if (touchIdMove == -1)
{
touchIdMove = e.GetId();
touchMoveStartX = e.GetX();
touchMoveStartY = e.GetY();
game.touchMoveDx = 0;
if (e.GetY() < game.Height() * 50 / 100)
{
game.touchMoveDy = 1;
}
else
{
game.touchMoveDy = 0;
}
}
}
if (((touchIdMove != -1)
&& (e.GetId() != touchIdMove))
|| (e.GetX() > game.Width() / 2))
{
if (touchIdRotate == -1)
{
touchIdRotate = e.GetId();
touchRotateStartX = e.GetX();
touchRotateStartY = e.GetY();
}
}
}
示例5: OnTouchEnd
public override void OnTouchEnd(Game game_, TouchEventArgs e)
{
ScreenOnTouchEnd(e);
if (e.GetHandled()) { return; }
if (e.GetId() == touchIdMove)
{
touchIdMove = -1;
game.touchMoveDx = 0;
game.touchMoveDy = 0;
}
if (e.GetId() == touchIdRotate)
{
touchIdRotate = -1;
game.touchOrientationDx = 0;
game.touchOrientationDy = 0;
}
}