simulate windows touch input
更多信息请参考页面http://social.technet.microsoft.com/wiki/contents/articles/6460.simulating-touch-input-in-windows-8-using-touch-injection-api.aspx
如何模拟windows的touch操作,奋斗了几天终于出结果了,网上搜索了一个c#版本的,但是总是没有效果,并且c#要求的条件比较多,于是自己写了一个autoit轻量级的版本。autoit代码:
#RequireAdmin
Local $retval = _SimulateTouch(10, 1000, 300, 300)
MsgBox(0, "", $retval)
; #INDEX# =======================================================================================================================
; Title .........: _SimulateTouch
; AutoIt Version : 3.3.6
; Description ...: Simulate touch action. The function can work on minimum supported client: windows8[desktop apps only] and minimum supported server: windows server 2012[desktop apps only]
; Author(s) .....: qlplwh@163.com
; Dll(s) ........: user32.dll
; Parameters.....: $TouchTimes-----------Touch times;
; $TouchInterval--------Touch Interval;
; $TouchCoordinates_x---Touch coordinates x;
; $TouchCoordinates_y---Touch coordinates y
; returns........: int touch success times
; Requirements ..:
; ===============================================================================================================================
Func _SimulateTouch($TouchTimes, $TouchInterval, $TouchCoordinates_x, $TouchCoordinates_y)
Local $intRetVal = 0 ;record the touch success time
If Not _IsConsistTouch() Then ;check if the pc support touch action
Return $intRetVal
EndIf
Local $int_Touch_Count_MAX = 10 ;the fingercount
Local $TOUCH_FEEDBACK_DEFAULT = 1 $TouchInit = DllCall("User32.dll", "BOOL", "InitializeTouchInjection", "int", $int_Touch_Count_MAX, "DWORD", $TOUCH_FEEDBACK_DEFAULT) Local $TOUCH_MASK_CONTACTAREA = 0x00000001
Local $TOUCH_MASK_ORIENTATION = 0x00000002
Local $TOUCH_MASK_PRESSURE = 0x00000004 Local $POINTER_FLAG_UP = 0x00040000
Local $POINTER_FLAG_DOWN = 0x00010000
Local $POINTER_FLAG_INRANGE = 0x00000002
Local $POINTER_FLAG_INCONTACT = 0x00000004
Local $POINTER_FLAG_UPDATE = 0X00020000 Local $tag_POINTER_INPUT_TYPE = 0x00000002
Local $tag_POINTER_FLAGS = BitOR($POINTER_FLAG_DOWN, $POINTER_FLAG_INRANGE , $POINTER_FLAG_INCONTACT)
Local $tag_TOUCH_FLAGS_NONE = 0x00000000
Local $TOUCH_MASK = BitOR($TOUCH_MASK_CONTACTAREA , $TOUCH_MASK_ORIENTATION , $TOUCH_MASK_PRESSURE)
Local $POINT_TOUCH_TYPE = 0x00000002 ;PT_TOUCH Local $ptPixelLocation_x = $TouchCoordinates_x
Local $ptPixelLocation_y = $TouchCoordinates_y Local $tag_POINTER_INFO = "struct;struct;int pointerType;" & _
"int pointerId;" & _
"int frameId;" & _
"int pointerFlags;" & _
"hwnd sourceDevice;" & _
"hwnd hwndTarget;" & _
"struct;int ptPixelLocation_x;" & _
"int ptPixelLocation_y;endstruct;" & _
"struct;int ptHimetricLocation_x;" & _
"int ptHimetricLocation_y;endstruct;" & _
"struct;int ptPixelLocationRaw_x;" & _
"int ptPixelLocationRaw_y;endstruct;" & _
"struct;int ptHimetricLocationRaw_x;" & _
"int ptHimetricLocationRaw_y;endstruct;" & _
"dword dwTime;" & _
"int historyCount;" & _
"int inputData;" & _
"dword dwKeyStates;" & _
"UINT64 PerformanceCount;" & _
"int ButtonchangeType;endstruct;"
Local Const $POINTER_TOUCH_INFO = $tag_POINTER_INFO & "int touchFlags;" & _
"int touchMask;" & _
"struct;int rcContact_left;" & _
"int rcContact_right;" & _
"int rcContact_top;" & _
"int rcContact_bottom;endstruct;" & _
"struct;int rcContactRaw_left;" & _
"int rcContactRaw_right;" & _
"int rcContactRaw_top;" & _
"int rcContactRaw_bottom;endstruct;" & _
"int orientation;" & _
"int pressure;endstruct;" Local $t_POINTER_TOUCH_INFO = DllStructCreate($POINTER_TOUCH_INFO) DllStructSetData($t_POINTER_TOUCH_INFO, "pointerType", $POINT_TOUCH_TYPE) ;pointerType
DllStructSetData($t_POINTER_TOUCH_INFO, "pointerId", 0) ;pointerId DllStructSetData($t_POINTER_TOUCH_INFO, "ptPixelLocation_x", $ptPixelLocation_x) ;ptPixelLocation
DllStructSetData($t_POINTER_TOUCH_INFO, "ptPixelLocation_y", $ptPixelLocation_y) ;ptPixelLocation DllStructSetData($t_POINTER_TOUCH_INFO, "touchFlags", $tag_TOUCH_FLAGS_NONE) ;touchFlags
DllStructSetData($t_POINTER_TOUCH_INFO, "touchMask", $TOUCH_MASK) ;touchMask
DllStructSetData($t_POINTER_TOUCH_INFO, "rcContact_left", $ptPixelLocation_x - 2) ;rcContact
DllStructSetData($t_POINTER_TOUCH_INFO, "rcContact_right", $ptPixelLocation_x + 2) ;rcContact
DllStructSetData($t_POINTER_TOUCH_INFO, "rcContact_top", $ptPixelLocation_y - 2) ;rcContact
DllStructSetData($t_POINTER_TOUCH_INFO, "rcContact_bottom", $ptPixelLocation_y + 2) ;rcContact DllStructSetData($t_POINTER_TOUCH_INFO, "orientation", 90) ;orientation
DllStructSetData($t_POINTER_TOUCH_INFO, "pressure", 32000) ;pressure For $i = 1 To $TouchTimes Step 1
DllStructSetData($t_POINTER_TOUCH_INFO, "pointerFlags", $tag_POINTER_FLAGS) ;pinterFlags
;DllStructSetData($t_POINTER_TOUCH_INFO, "ptPixelLocation_y", 300-$i) ;ptPixelLocation draw a line
$aRet = DllCall('User32.dll', 'BOOL', 'InjectTouchInput', 'int', 1, 'ptr', DllStructGetPtr($t_POINTER_TOUCH_INFO)) If $aRet <> 0 Then
DllStructSetData($t_POINTER_TOUCH_INFO, "pointerFlags", $POINTER_FLAG_UP) ;pinterFlags
DllCall('User32.dll', 'BOOL', 'InjectTouchInput', 'int', 1, 'ptr', DllStructGetPtr($t_POINTER_TOUCH_INFO))
$intRetVal += 1
Sleep($TouchInterval)
EndIf
Next
Return $intRetVal
EndFunc ;check if the pc support touch action
;returns:1----yes;0----no
Func _IsConsistTouch()
Dim $IsConsistTouch = GetSystemMetrics(94) ;94 means SM_DIGITIZER
Return $IsConsistTouch > 0 ? 1 : 0
EndFunc Func GetSystemMetrics($iIndex)
Local $aResult = DllCall("user32.dll", "int", "GetSystemMetrics", "int", $iIndex)
If @error Then Return SetError(@error, @extended, 0) Return $aResult[0]
EndFunc ;==>_WinAPI_GetSystemMetrics
C#代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices; namespace WindowsFormsApplication1
{ [StructLayout(LayoutKind.Explicit)]
public struct Rect
{
[FieldOffset(0)]
public int left;
[FieldOffset(4)]
public int top;
[FieldOffset(8)]
public int right;
[FieldOffset(12)]
public int bottom;
} public enum TOUCH_FLAGS { TOUCH_FLAGS_NONE = 0x00000000/*Indicates that no flags are set.*/ } public enum POINTER_FLAGS
{
POINTER_FLAG_NONE = 0x00000000,
POINTER_FLAG_NEW = 0x00000001,
POINTER_FLAG_INRANGE = 0x00000002,
POINTER_FLAG_INCONTACT = 0x00000004,
POINTER_FLAG_FIRSTBUTTON = 0x00000010,
POINTER_FLAG_SECONDBUTTON = 0x00000020,
POINTER_FLAG_THIRDBUTTON = 0x00000040,
POINTER_FLAG_OTHERBUTTON = 0x00000080,
POINTER_FLAG_PRIMARY = 0x00000100,
POINTER_FLAG_CONFIDENCE = 0x00000200,
POINTER_FLAG_CANCELLED = 0x00000400,
POINTER_FLAG_DOWN = 0x00010000,
POINTER_FLAG_UPDATE = 0x00020000,
POINTER_FLAG_UP = 0x00040000,
POINTER_FLAG_WHEEL = 0x00080000,
POINTER_FLAG_HWHEEL = 0x00100000
} [StructLayout(LayoutKind.Sequential)]
public struct POINT
{
public int x;
public int y;
} public enum POINTER_INPUT_TYPE
{
PT_POINTER = 0x00000001,
PT_TOUCH = 0x00000002,
PT_PEN = 0x00000003,
PT_MOUSE = 0x00000004
}; [StructLayout(LayoutKind.Sequential)]
public struct POINTER_INFO
{
public POINTER_INPUT_TYPE pointerType;
public uint pointerId;
public uint frameId;
public IntPtr sourceDevice;
public IntPtr hwndTarget;
public POINT ptPixelLocation;
public POINT ptHimetricLocation;
public POINT ptPixelLocationPredicted;
public POINT ptHimetricLocationPredicted;
public POINTER_FLAGS pointerFlags;
public uint dwTime;
public uint historyCount;
public uint inputData;
public uint dwKeyStates;
public ulong Reserved;
} [StructLayout(LayoutKind.Sequential)]
public struct POINTER_TOUCH_INFO
{
/*
* Contains basic pointer information common to all pointer types.
*/
public POINTER_INFO pointerInfo; /*
* Lists the touch flags.
*/
public TOUCH_FLAGS touchFlags;
public uint touchMasks;
/*
* Pointer contact area in pixel screen coordinates.
* By default, if the device does not report a contact area,
* this field defaults to a 0-by-0 rectangle centered around the pointer location.
*/
public Rect rcContact; /*
* A pointer orientation, with a value between 0 and 359, where 0 indicates a touch pointer
* aligned with the x-axis and pointing from left to right; increasing values indicate degrees
* of rotation in the clockwise direction.
* This field defaults to 0 if the device does not report orientation.
*/
public uint orientation; /*
* Pointer pressure normalized in a range of 0 to 256.
*/
public uint pressure;
} public partial class Form1 : Form
{
const int MAX_TOUCH_COUNT = 256; //Specifies default touch visualizations.
const int TOUCH_FEEDBACK_DEFAULT = 0x1; //Specifies indirect touch visualizations.
const int TOUCH_FEEDBACK_INDIRECT = 0x2; //Specifies no touch visualizations.
const int TOUCH_FEEDBACK_NONE = 0x3; [DllImport("User32.dll")]
static extern bool InitializeTouchInjection(uint maxCount, int dwMode); [DllImport("User32.dll")]
static extern bool InjectTouchInput(int count, ref POINTER_TOUCH_INFO contacts); public Form1()
{
InitializeComponent();
} private void button1_Click(object sender, EventArgs e)
{
bool flag = false;
flag = InitializeTouchInjection(10, TOUCH_FEEDBACK_NONE); POINTER_TOUCH_INFO contacts = new POINTER_TOUCH_INFO(); Rect touchArea = new Rect();
touchArea.left = 200 - 2;
touchArea.right = 200 + 2;
touchArea.top = 200 + 2;
touchArea.bottom = 200 - 2; contacts.pointerInfo.pointerType = POINTER_INPUT_TYPE.PT_TOUCH;
contacts.touchFlags = TOUCH_FLAGS.TOUCH_FLAGS_NONE;
contacts.rcContact = touchArea;
contacts.orientation = 90;
contacts.pressure = 32000;
contacts.pointerInfo.pointerFlags = POINTER_FLAGS.POINTER_FLAG_UP | POINTER_FLAGS.POINTER_FLAG_INRANGE | POINTER_FLAGS.POINTER_FLAG_INCONTACT;
contacts.pointerInfo.ptPixelLocation.x = 200;
contacts.pointerInfo.ptPixelLocation.y = 200;
contacts.pointerInfo.pointerId = 1; flag = InjectTouchInput(1, ref contacts);//returned flag is false which means the injection fails! contacts.pressure = 0;
if (flag)
{
contacts.pointerInfo.pointerFlags = POINTER_FLAGS.POINTER_FLAG_UP;
InjectTouchInput(1, ref contacts);
}
}
}
}
simulate windows touch input的更多相关文章
- Windows Touch 便笺簿的
Windows Touch 便笺簿的 C# 示例 (MTScratchpadWMTouchCS) 本节介绍 Windows Touch 便笺簿的 C# 示例. Windows Touch 便笺簿的 ...
- windows C input 注意
windows控制台输入,默认是以文本模式打开,即使重定向输入,文本模式不变,所以输入时无法读到cr,因为windows已经把crlf转换成单个lf. 如果freopen("CON" ...
- iOS 9之Advanced Touch Input(高级触摸输入)
金田 今天要讲的主题是iOS 9高级触摸输入,更准确地讲,是在iOS9上如何减少触摸输入到屏幕显示的延迟程度,此次将分 低延迟渲染(iOS9 渲染性能优化)和 触摸点方案改进 两个方面来介绍. 低延迟 ...
- simulate windows postmessage or keydown
2 ways: 1. under TForm: if assigned(focused) then Focused.keydown(key,keychar,[]); 2. using s ...
- window7 触屏操作相关
一.体系概述 1.Windows Touch Input 和 Gestures消息 Windows Touch消息特性 通过在执行期间的监听和解释来使能.下面的示例展示了Windows7 上消息是怎么 ...
- 2019-11-29-WPF-客户端开发需要知道的触摸失效问题
原文:2019-11-29-WPF-客户端开发需要知道的触摸失效问题 title author date CreateTime categories WPF 客户端开发需要知道的触摸失效问题 lind ...
- 2019-9-18-WPF-客户端开发需要知道的触摸失效问题
title author date CreateTime categories WPF 客户端开发需要知道的触摸失效问题 lindexi 2019-09-18 15:30:38 +0800 2019- ...
- 背水一战 Windows 10 (8) - 控件 UI: StateTrigger
[源码下载] 背水一战 Windows 10 (8) - 控件 UI: StateTrigger 作者:webabcd 介绍背水一战 Windows 10 之 控件 UI VisualState 之 ...
- 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop
[源码下载] 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop 作者:weba ...
随机推荐
- Linux(Ubuntu) 和 Python 常用命令
Linux: pwd: check current directory touch f1 f2 f3: create three empty files tree dir/: show the lev ...
- Toward Scalable Systems for Big Data Analytics: A Technology Tutorial (I - III)
ABSTRACT Recent technological advancement have led to a deluge of data from distinctive domains (e.g ...
- C# List和String互相转换
List转字符串,用逗号隔开 List<string> list = new List<string>();list.Add("a");list.Add(& ...
- Manacher
HDU 3068 Manacher裸题 #include <cstdio> #include <cstring> ; ],STR[Maxn<<]; ],Id,Mx; ...
- iOS-硬件声音 ,振动,提示警告
为了引起用户注意发出警告的时候,常常伴随有提示音震动等.系统声音服务提供了一个接口,用于播放不超过30秒的声音文件,他支持的格式有CAF,AIF,WAV. iOS使用该API支持3种不同的通知: 声音 ...
- C&C++ recap
大一时候学过C++,可惜忘得差不多了,之后也很少用过.当时使用的是windows系统,使用的还是visual C++.当时对计算机并不感冒,也没好好学.最近在R的学习中遇到瓶颈,觉得要捡起曾经的C/C ...
- 一些相关的github
https://github.com/LTS4/DeepFool 貌似是说可以愚弄深度神经网络? https://github.com/tflearn/tflearn TF学习指南 http://gi ...
- ODOO 源代码安装要求
ODOO 源代码安装要求 ref:http://www.odoo.com/documentation/10.0/setup/install.html#setup-install-source pyth ...
- Date get period
/** * get period for last year * @param time * @return */ public static DatePeriodDTO getLastYear(lo ...
- kuangbin_MST B (POJ 1287)
裸的模板题 因为直接用的邻接矩阵所以用最小值覆盖先前输入的重复边 #include <cstdio> #include <cstring> #include <queue ...