Skip to content

Commit f846233

Browse files
authored
sdl2: Add DragonRise Inc. GameCube Controller Adapter
This is a Generic Brand-less GameCube Controller Adapter. Unfortunately the axes don't go up to 1.0 on max input, and per-axis/per-controller sensitivity is not supported in the file, so a recommendation for global sensitivity is added as a comment. There's also a description of what this adapter looks like, and the model number.
1 parent 8ec6185 commit f846233

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Generic Brandless GameCube Controller Adapter
2+
# From package and manual: Model/SKU:HS-WU025
3+
# Label on the bottom: GC Controller Adapter; For SWITCH / WII U / PC; ITEM TO: HS-SW224
4+
# Has:
5+
# - 4 GC controller ports
6+
# - 2 USB plugs (black for data, gray for rumble)
7+
# - TURBO button
8+
# - SWITCH / WII U <-> PC toggle
9+
# Analog axes (main, C, L and R) don't go all the way up to 1.0 on max input.
10+
# Since per-controller/per-axis sensitivity is not supported, it's recommended to set in retroarch.cfg:
11+
# input_analog_sensitivity = "1.400000"
12+
13+
input_device_display_name = "GameCube Controller Adapter"
14+
input_driver = "sdl2"
15+
input_device = "DragonRise Inc. GameCube Controller Adapter"
16+
input_vendor_id = "121"
17+
input_product_id = "6214"
18+
19+
input_a_btn = "1"
20+
input_b_btn = "2"
21+
input_x_btn = "0"
22+
input_y_btn = "3"
23+
input_l2_axis = "+3"
24+
input_r2_axis = "+4"
25+
input_l2_btn = "4"
26+
input_r2_btn = "5"
27+
input_start_btn = "9"
28+
input_r_btn = "7"
29+
input_up_btn = "12"
30+
input_down_btn = "14"
31+
input_left_btn = "15"
32+
input_right_btn = "13"
33+
input_l_x_plus_axis = "+0"
34+
input_l_x_minus_axis = "-0"
35+
input_l_y_plus_axis = "+1"
36+
input_l_y_minus_axis = "-1"
37+
input_r_x_plus_axis = "-5"
38+
input_r_x_minus_axis = "+5"
39+
input_r_y_plus_axis = "-2"
40+
input_r_y_minus_axis = "+2"
41+
42+
input_a_btn_label = "A"
43+
input_b_btn_label = "B"
44+
input_x_btn_label = "X"
45+
input_y_btn_label = "Y"
46+
input_l2_axis_label = "Analog L Trigger"
47+
input_r2_axis_label = "Analog R Trigger"
48+
input_l2_btn_label = "L"
49+
input_r2_btn_label = "R"
50+
input_start_btn_label = "Start"
51+
input_r_btn_label = "Z"
52+
input_up_btn_label = "D-Pad Up"
53+
input_down_btn_label = "D-Pad Down"
54+
input_left_btn_label = "D-Pad Left"
55+
input_right_btn_label = "D-Pad Right"
56+
input_l_x_plus_axis_label = "Control Stick Right"
57+
input_l_x_minus_axis_label = "Control Stick Left"
58+
input_l_y_plus_axis_label = "Control Stick Down"
59+
input_l_y_minus_axis_label = "Control Stick Up"
60+
input_r_x_plus_axis_label = "C-Stick Right"
61+
input_r_x_minus_axis_label = "C-Stick Left"
62+
input_r_y_plus_axis_label = "C-Stick Down"
63+
input_r_y_minus_axis_label = "C-Stick Up"

0 commit comments

Comments
 (0)