You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AutoHotInterception/README.md

152 lines
6.4 KiB
Markdown

6 years ago
# AutoHotInterception
6 years ago
6 years ago
AutoHotInterception(AHI) allows you to execute AutoHotkey code in response to events from a *specific* keyboard or mouse, whilst (optionally) blocking the native functionality (ie stopping Windows from seeing that keyboard or mouse event).
6 years ago
In other words, you can use a key on a second (or third, or fourth..) keyboard to trigger AHK code, and that key will not be seen by applications. You can use the *same key* on multiple keyboards for individual actions.
6 years ago
Keyboard Keys, Mouse Buttons and (Relative) Mouse movement are supported. Support for Absolute Mouse movement is planned.
6 years ago
AHI uses the Interception driver by Francisco Lopez
6 years ago
# WARNING
6 years ago
**TAKE CARE** when using this code. Because Interception is a driver, and sits below windows proper, blocking with Interception goes so deep that it can even block CTRL+ALT+DEL etc. As such, it is entirely possible to lock up all input, or at least make life a little difficult.
In general, worst-case scenario would require use of the reset button.
6 years ago
For example, using Subscription Mode with `block` enabled will **totally** block that key from working on that keyboard.
So if you block `Ctrl` on your only keyboard, you just blocked CTRL+ALT+DEL.
6 years ago
This is less of an issue whilst AHI does not support mouse blocking (As you could probably kill the script with just the mouse), but if/when that happens, the potential is there.
Be wary of making scripts using this code run on startup. Know how to enter "Safe Mode" in windows and disable startup of the scripts. Know mouse alternatives to emergency keyboard actions (Right click on clock for Task Manager!)
6 years ago
As they say - ***With great power comes great responsibility***.
6 years ago
If this all scares you and you don't really understand it, then TL/DR is you should probably stick to "Context Mode", it's safer.
6 years ago
6 years ago
# Setup
1. Download and install the [Interception Driver](http://www.oblita.com/interception)
2. Download a zip from the releases page and extract it to a folder
3. Copy the `interception.dll` from the folder where you ran the interecption install into the `lib` folder
(You can optionally place the contents of the `lib` folder in `My Documents\AutoHotkey\lib`
4. Edit the example script, enter the VID and PID of your keyboard
5. Run the example script
6 years ago
# Usage
6 years ago
## Initializing the Library
6 years ago
Include the library
```
#Persistent ; (Interception hotkeys do not stop AHK from exiting, so use this)
#include Lib\AutoHotInterception.ahk
```
Initialize the library
```
Interception := AutoHotInterception_Init()
6 years ago
```
## Modes
6 years ago
There are two modes of operation for AHI, and both can be used simultaneously.
6 years ago
6 years ago
### Context mode
6 years ago
Context mode is so named as it takes advantage of AutoHotkey's [Context Sensitive Hotkeys](https://autohotkey.com/docs/Hotkeys.htm#Context).
6 years ago
As such, only Keyboard Keys and Mouse Buttons are supported in this mode. Mouse Movement is not supported.
6 years ago
In AHK, you can wrap your hotkeys in a block like so:
```
#if myVariable == 1
F1::Msgbox You Pressed F1
#if
```
This hotkey would only fire if the `myVariable` was 1.
6 years ago
In context mode, you subscribe to a keyboard, and any time events for that keyboard are just about to happen, AHI fires your callback and passes it `1`. Your code then sets the context variable to `1` which enables the hotkey.
6 years ago
AHI then sends the key, which triggers your hotkey.
6 years ago
AHI then fires the callback once more, passing `0` and the context variable gets set back to `0`, disabling the hotkey.
6 years ago
6 years ago
#### Step 1
6 years ago
Register your callback with AHI
```
VID := 0x04F2, PID := 0x0112
Interception.SetContextCallback(VID, PID, Func("SetKb1Context"))
```
6 years ago
#### Step 2
6 years ago
Create your callback function, and set the context variable to the value of `state`
It is advised to **NOT** do anything in this callback that takes a significant amount of time. Do not wait for key presses or releases and such.
6 years ago
```
SetKb1Context(state){
global isKeyboard1Active
Sleep 0 ; We seem to need this for hotstrings to work, not sure why
isKeyboard1Active := state
}
```
6 years ago
#### Step 3
6 years ago
Create your hotkeys, wrapped in an `#if` block for that context variable
```
#if isKeyboard1Active
::aaa::JACKPOT
1::
ToolTip % "KEY DOWN EVENT @ " A_TickCount
return
1 up::
ToolTip % "KEY UP EVENT @ " A_TickCount
return
#if
```
6 years ago
### Subscription mode
6 years ago
In Subscription mode, you bypass AHK's hotkey system completely, and Interception notifies you of key events via callbacks.
6 years ago
All forms of input are supported in Subscription Mode.
6 years ago
Subscription Mode overrides Context Mode - that is, if a key on a keyboard has been subscribed to with Subscription Mode, then Context Mode will not fire for that key on that keyboard.
6 years ago
6 years ago
#### Keyboard
6 years ago
Subscribe to a key on a specific keyboard
6 years ago
`SubscribeKey(<scanCode>, <block>, <callback>, <VID>, <PID>)`
6 years ago
```
6 years ago
VID := 0x04F2, PID := 0x0112
6 years ago
Interception.SubscribeKey(GetKeySC("1"), true, Func("KeyEvent"), VID, PID)
return
```
6 years ago
Callback function is passed state `0` (released) or `1` (pressed)
6 years ago
```
KeyEvent(state){
ToolTip % "State: " state
}
```
6 years ago
#### Mouse Buttons
`SubscribeMouseButton(<button>, <block>, <callback>, <VID>, <PID>)`
Where `button` is one of:
```
0: Left Mouse
1: Right Mouse
2: Middle Mouse
3: Side Button 1
4: Side Button 2
```
Otherwise, usage is identical to `SubscribeKey`
#### Mouse Movement
6 years ago
`SubscribeMouseMove(<block>, <callback>, <VID>, <PID>)`
6 years ago
For Mouse Movement, the callback is passed two ints - x and y.
```
VID := 0x04F2, PID := 0x0112
Interception.SubscribeMouseMove(false, Func("MouseEvent"), VID, PID)
MouseEvent(x, y){
[...]
}
```
6 years ago
6 years ago
## Sending Keys
You can send keys as a specific keyboard using the `SendKeyEvent` method.
`Interception.SendKeyEvent(<scanCode>, <state> [, <keyboardId = 1>])`
scanCode = the Scan Code of the key
state = 1 for press, 0 for release
keyboardId = The Interception ID of the keyboard (Leave blank to use 1st keyboard)
```
Interception.SendKeyEvent(GetKeySC("a"), 1)
```
```
VID := 0x04F2, PID := 0x0112
keyboardId := Interception.GetDeviceId(VID, PID)
Interception.SendKeyEvent(GetKeySC("a"), 1, keyboardId)
```
6 years ago
If you subscribe to a key using Subscription mode with the `block` parameter set to true, then send a different key using `SendKeyEvent`, you are transforming that key in a way which is totally invisible to windows (And all apps running on it), and it will respond as appropriate. For example, AHK `$` prefixed hotkeys **will not** be able to tell that this is synthetic input, and will respond to it.