summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/default_ini.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-01-24 02:18:47 +0100
committerGitHub <noreply@github.com>2020-01-24 02:18:47 +0100
commitdeb97f6a8e48c17f8e16efadc24872a860d529a7 (patch)
tree79ca6164fcb03783bc19f1ec557cacdf0b3fc539 /src/yuzu_cmd/default_ini.h
parentMerge pull request #3341 from bunnei/time-posix-myrule (diff)
parentReplace GetString with Get function (diff)
downloadyuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar.gz
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar.bz2
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar.lz
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar.xz
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.tar.zst
yuzu-deb97f6a8e48c17f8e16efadc24872a860d529a7.zip
Diffstat (limited to 'src/yuzu_cmd/default_ini.h')
-rw-r--r--src/yuzu_cmd/default_ini.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h
index 8d18a4a5a..e829f8695 100644
--- a/src/yuzu_cmd/default_ini.h
+++ b/src/yuzu_cmd/default_ini.h
@@ -69,12 +69,29 @@ rstick=
# - "motion_emu" (default) for emulating motion input from mouse input. Required parameters:
# - "update_period": update period in milliseconds (default to 100)
# - "sensitivity": the coefficient converting mouse movement to tilting angle (default to 0.01)
+# - "cemuhookudp" reads motion input from a udp server that uses cemuhook's udp protocol
motion_device=
# for touch input, the following devices are available:
# - "emu_window" (default) for emulating touch input from mouse input to the emulation window. No parameters required
+# - "cemuhookudp" reads touch input from a udp server that uses cemuhook's udp protocol
+# - "min_x", "min_y", "max_x", "max_y": defines the udp device's touch screen coordinate system
touch_device=
+# Most desktop operating systems do not expose a way to poll the motion state of the controllers
+# so as a way around it, cemuhook created a udp client/server protocol to broadcast the data directly
+# from a controller device to the client program. Citra has a client that can connect and read
+# from any cemuhook compatible motion program.
+
+# IPv4 address of the udp input server (Default "127.0.0.1")
+udp_input_address=
+
+# Port of the udp input server. (Default 26760)
+udp_input_port=
+
+# The pad to request data on. Should be between 0 (Pad 1) and 3 (Pad 4). (Default 0)
+udp_pad_index=
+
[Core]
# Whether to use multi-core for CPU emulation
# 0 (default): Disabled, 1: Enabled