mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-11-04 14:39:42 +08:00
* initial changes * Mostly clean up, refactor registering listeners to make sense, backport tests * Add initial implementation of VRCFTModuleSender * Add basic GUI for the modules settings * Fix tooltip descriptions # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * Fix type validation bugs, fix typos # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * Add checkbox to switch to ETVR Module # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * Black stuff # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * Remove coverage by default # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * Fix timeout in tests # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * HEAVY WIP: Refactor native output, NOTE: I brought back the entire old OSC implementation as a live reference, this will be removed once I'm done. This also lays ground for other modes as they're pretty similar # TODO: # - there's ghosts in the machine - vrc osc is not working properly # - min/maxing will require field combinators in the modules lmao * HEAVY WIP: Refactor v1 params output, # TODO: # - min/maxing will require field combinators in the modules lmao * HEAVY WIP: Refactor v2 params output # TODO: # - min/maxing will require field combinators in the modules lmao * Finish refactoring v2 and v1, fixup tests, refactor native # TODO: # - min/maxing will require field combinators in the modules lmao * Add tests for v1 params # TODO: # - min/maxing will require field combinators in the modules lmao * Add tests for native params # TODO: # - min/maxing will require field combinators in the modules lmao * Fix OSC not getting up after config reset. Remove reset command, config sends everything changed anyway, sunset the idea of using single client and thus simplify the code a bit # TODO: # - min/maxing will require field combinators in the modules lmao * Rename gui_PortNumber to gui_VRCFTModulePort for readability # TODO: # - min/maxing will require field combinators in the modules lmao * Cleanup EyeID usage # TODO: # - min/maxing will require field combinators in the modules lmao * Cleanup osc after rebase # TODO: # - min/maxing will require field combinators in the modules lmao * Make VRChatOSCSender a bit more readable # TODO: # - min/maxing will require field combinators in the modules lmao * Remove unsued VRChatOSCReceiver, this is taken care of by generic OSCReceiver # TODO: # - min/maxing will require field combinators in the modules lmao * Commit crimes with try_convert_to_float to make osc, pysimplegui and pydantic happy * Cleanup after merge * Disable emulation by default * Fix OSCReceiver crashing on unknown addresses * Adjust VRCFT Module settings to look better in game * Fix recalibrate and recenter for OSC only working for the right eye * Fix save and restart button not restarting the tracking * Fix broken tracking on v1 params for eye_x, clean up implementation * Fix regular value being passed to OSC listeners instead of OSCMessage * Add a TODO, probably to be ignored * Add support for custom ETVR VRCFT Module listening address
49 lines
999 B
TOML
49 lines
999 B
TOML
[tool.poetry]
|
|
name = "EyeTrackVR"
|
|
version = "0.2"
|
|
description = "Opensource, affordable VR eye tracker for VRChat"
|
|
authors = ["RedHawk989"]
|
|
license = "GNU GPL V3"
|
|
repository = "https://github.com/EyeTrackVR/EyeTrackVR"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "~3.11.0"
|
|
python-osc = "^1.8.0"
|
|
requests = "^2.28.1"
|
|
opencv-python = "^4.6.0.66"
|
|
numpy = "~1.23.5"
|
|
pye3d = "^0.3.2"
|
|
pysimplegui-4-foss = "^4.6.4.1"
|
|
pydantic = "^2.4.2"
|
|
scikit-image = "*"
|
|
pyserial = "^3.5"
|
|
winotify = [
|
|
{ version = "^1.1.0", platform = 'win32' }
|
|
]
|
|
onnxruntime = "^1.13.1"
|
|
colorama = "^0.4.6"
|
|
taskipy = "^1.10.4"
|
|
pytest = "^8.0.0"
|
|
pytest-cov = "^4.1.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^22.10.0"
|
|
pyinstaller = "^5.6.2"
|
|
flake8 = "^5.0.4"
|
|
|
|
[tool.taskipy.tasks]
|
|
dev = "python eyetrackapp.py"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-ra -q"
|
|
pythonpath = "."
|
|
python_files = [
|
|
"test_*.py"
|
|
] |