tabd is a replacement for OpenTabletDriver I made for fun. It uses the same Windows APIs OTD does but doesn't take half a minute to start and won't open command prompt when added to autostart.
tabd uses presets for configuration stored in a simple text files under presets folder which is in the same directory as
tabd.exe. Here's my Osu.txt preset for example:
cx 80.41049
cy 85
w 100
h 56.222546
r -90
m mouse
The cx, cy, w, h and r parameters define what part of the tablet area should be mapped to the screen
and how much it should be rotated. These are the same values OTD uses so you don't have to calculate them
yourself. m however can be either mouse, which makes the driver emulate normal mouse cursor, or ink
which emulates Windows Ink inputs that support pressure levels.
| Tablet | Status |
|---|---|
| Wacom CTL-672 | ✅ |
If you want me to add another tablet, send me an email or open an issue. If you want to do it yourself, see tablets.c file.
If you don't have compiler installed, use build steps for TCC.
- Download Build Tools for Visual Studio.
- Run Visual Studio Installer and select
MSVC Build Tools for x64/x86 (Latest)inIndividual components. - Enable x64 Native Tools Command Prompt for VS (32-bit architecture is not supported).
- Run
project build-msvc run.
- Download TCC and extract it to any folder.
- Open
Settings > System > About > Advanced system settings (Related settings) > Environment Variables... > System variables > Path > Edit... > Newand paste there path to the extracted folder containingtcc.exe. - Run
project build-tcc run.
- Download and run
w64devkit-x64-X.X.X.7z.exefrom w64devkit. ChooseAdd to PATHoption. - Run
project build-gcc run