summaryrefslogtreecommitdiff
path: root/driver
Commit message (Collapse)AuthorAgeFilesLines
* bump version, target win10a1xd2021-09-231-4/+6
|
* rename driver_settingsa1xd2021-09-232-31/+35
| | | | | | found a better one refactor driver/DeviceSetup
* move safeboot check into DriverEntrya1xd2021-09-231-3/+1
|
* make profile count dynamic (unlimited)a1xd2021-09-232-79/+98
|
* fix kernel bugchecka1xd2021-09-231-2/+4
| | | | | | initializing the default driver_settings on driver entry blows up the stack size, causing stack check to fail the default modifier is initialized to noop anyway so it's fine to leave most vars zeroed
* make ioctls constexpra1xd2021-09-231-3/+3
|
* add per-device configurationa1xd2021-09-232-54/+267
| | | | | | | | | | | adds input and [in, out] cap for classic mode adds input cap for power mode change wrapper/input, now gets useful device names change (now dev specific) dpi to adjust sensitivity change y sensitivity to y/x ratio remove spaced LUTs grapher and convert do not build
* optimize a bit/refactor modifya1xd2021-04-082-24/+21
|
* use callbacks for applying accela1xd2021-04-011-2/+4
|
* check for safe mode before hooking into dev stacka1xd2021-04-011-1/+7
| | | | can't stop the driver from being loaded in safe mode, an early return here is the best we can do
* driver - apply accel disregarding num packetsa1xd2021-04-011-19/+13
| | | | add setting for max time threshold
* add flag to negate device matcha1xd2021-04-011-2/+3
|
* update resta1xd2021-04-012-3/+2
| | | | | | grapher is still broken refactored io / error handling a bit
* refactor lut/motivitya1xd2021-03-302-30/+12
|
* put utility in namespacea1xd2021-03-301-2/+2
|
* add zero/inf/nan guardsa1xd2021-03-291-26/+31
|
* formatting + file renamesa1xd2021-03-291-2/+2
|
* refactor common/settingsa1xd2021-03-292-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | only driver compiles remove accel-base types merge linear + classic move gain cap logic into classic impl, cap is now set in terms of output use cap/limit to determine negation remove weight, add replacement for power mode only remove legacy offset option remove naturalgain mode add legacy mode flag naturalgain -> natural natural -> natural + legacy flag add dpi setting and more accel args + defaults (prep for ips mode) replace output speed cap with input cap
* add angle snappinga1xd2021-01-211-0/+1
| | | | probably works like interaccel
* filter raw input based on ida1xd2021-01-122-19/+29
| | | | | | | | use device id (from device instance) over first hardware id use buffered method for all ioctls update gui/DeviceIDManager to match driver behavior respond to device change events desync MouseData and PointData accessors
* refactor main callbacka1xd2021-01-071-28/+23
| | | | check for empty input as suggested by @aroidzap
* get hwid when adding devicea1xd2021-01-061-26/+22
|
* size device id/hwids based on docsa1xd2021-01-052-18/+33
| | | | this also changes the connect ioctl to not abort when hwid query fails
* Update driver/driver.hTomáš Pazdiora2021-01-051-1/+1
| | | Co-authored-by: a1xd <[email protected]>
* bugfixTomáš Pazdiora2021-01-051-1/+2
|
* revert for loop -> do while (according to a1xd's conclusion)Tomáš Pazdiora2021-01-051-2/+3
|
* simplify checking for configuration without specific deviceTomáš Pazdiora2021-01-051-1/+1
|
* add "Device Hardware ID" setting, to affect only specific deviceTomáš Pazdiora2021-01-052-16/+32
|
* fix .rc filesTomáš Pazdiora2021-01-051-1/+1
|
* support win7 while cross-signing is still availablea1xd2020-12-021-4/+12
| | | | to be dropped by april 2021
* embed version info into assembliesa1xd2020-12-023-0/+71
| | | | | | | | check app versions against lib, lib against driver add an 'about' dialog which displays version details, accessible from menu refactor error handling + add check for negative offset
* refactor ioa1xd2020-12-011-44/+33
|
* fix dbgprint warninga1xd2020-11-301-1/+1
|
* match debug and release lang stda1xd2020-11-291-1/+1
|
* Remove experiment file, set driver lang to c++17, fix by component last ↵Jacob Palecki2020-11-271-1/+1
| | | | mouse move
* Fixed anisotropy not loading correctly on savev1.0.2a1xd2020-10-071-3/+6
|
* add arg checks in wrappera1xd2020-09-271-3/+2
| | | | | | | | | | | minor changes to settings shape, requires driver reinstall add error handling to writer grapher changes: add prettier serialization + comments add elements for scale and separated limit/exp reset irrelevant (invisible) arg input before checks/write
* add lut exp to drivera1xd2020-09-221-2/+27
|
* Fix cap options pt 2Jacob Palecki2020-09-161-0/+1
|
* add 1s write delay to drivera1xd2020-09-011-14/+4
|
* add independent xy accel to drivera1xd2020-08-311-37/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | other changes: modifier_args type name is now settings, which is now the type passed in driver ioctl remove most settings/args verification from driver, plan to let gui handle most of it add another accel arg, rate, which is used to set the 'accel' parameter of types which call exp (nat/sig), might want to cap it add (update) serializable DriverSettings (ModifierArgs) class to gui and static methods for interop remove properties from ManagedAccel, its now just a black box for accessing modifier methods add exception handling in wrapper_io to throw proper managed types change SettingsManager::Startup to make a new settings file if an error occurs during deserialization change structure of accel types; how offset and weight are applied now depend on additivity of types remove tagged_union and add a handrolled variant/visit impl AccelGui::UpdateActiveValueLabels currently broken for caps and a few other args remove gui default layout and initial natural accel setup cli not updated
* add a cooldown on write (one second)a1xd2020-08-062-5/+22
|
* add reada1xd2020-07-311-22/+41
| | | | add function that makes an ioctl call to return the driver's active mouse_modifier
* Separate accel implementations into filesJacob Palecki2020-07-291-4/+4
|
* Rename variables and add modify functionsJacob Palecki2020-07-281-13/+13
|
* Remove extra mode from variablesJacob Palecki2020-07-281-1/+1
|
* Add project files.v0.1-testa1xd2020-07-223-0/+791