Advertisement
hex007

Keymap Recompiles source

Aug 15th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. ***Key comparisons : Recompile***
  2.  
  3. `cat - | ./sdl_interface 1 1 nearest | xxd -c 5`
  4. Exit using Ctrl+D in terminal running the above command
  5.  
  6. **Xbox controller**
  7.  
  8. ABCD EFGH IJ
  9.  
  10. B -> DPad(+4) Buttons(+2) Clicked (+1), Released (+0)
  11.  
  12. GHIJ -> Code
  13.  
  14. Left Joy
  15. Up
  16. 00000000: 0500 0000 04 .....
  17. 00000005: 0400 0000 04 .....
  18. Down
  19. 0000000a: 0500 0000 08 .....
  20. 0000000f: 0400 0000 08 .....
  21. Left
  22. 00000014: 0500 0000 01 .....
  23. 00000019: 0400 0000 01 .....
  24. Right
  25. 0000001e: 0500 0000 02 .....
  26. 00000023: 0400 0000 02 .....
  27. Center Click
  28. 00000028: 0300 0000 09 .....
  29. 0000002d: 0200 0000 09 .....
  30.  
  31. Right Joy
  32. Up
  33. 00000000: 0500 0001 00 .....
  34. 00000005: 0400 0001 00 .....
  35. Down
  36. 0000000a: 0500 0002 00 .....
  37. 0000000f: 0400 0002 00 .....
  38. Left
  39. 00000014: 0500 0000 40 ....@
  40. 00000019: 0400 0000 40 ....@
  41. Right
  42. 0000001e: 0500 0000 80 .....
  43. 00000023: 0400 0000 80 .....
  44. Center Click
  45. 00000028: 0300 0000 0a .....
  46. 0000002d: 0200 0000 0a .....
  47.  
  48. DPad (No release events detected)
  49. Up
  50. 00000000: 0500 0000 08 .....
  51. Down
  52. 00000005: 0500 0000 04 .....
  53. Left
  54. 0000000f: 0500 0000 02 .....
  55. Right
  56. 00000014: 0500 0000 01 .....
  57.  
  58. Buttons
  59. A
  60. 00000096: 0300 0000 00 .....
  61. 0000009b: 0200 0000 00 .....
  62. B
  63. 000000a0: 0300 0000 01 .....
  64. 000000a5: 0200 0000 01 .....
  65. X
  66. 000000aa: 0300 0000 02 .....
  67. 000000af: 0200 0000 02 .....
  68. Y
  69. 000000b4: 0300 0000 03 .....
  70. 000000b9: 0200 0000 03 .....
  71. Left Shoulder
  72. 000000be: 0300 0000 04 .....
  73. 000000c3: 0200 0000 04 .....
  74. Right Shoulder
  75. 000000c8: 0300 0000 05 .....
  76. 000000cd: 0200 0000 05 .....
  77.  
  78. Triggers
  79. Left trigger
  80. 0000005a: 0400 0000 10 .....
  81. 0000005f: 0500 0000 20 ....
  82. 00000064: 0400 0000 20 ....
  83. 00000069: 0500 0000 10 .....
  84. Right trigger
  85. 0000006e: 0400 0004 00 .....
  86. 00000073: 0500 0008 00 .....
  87. 00000078: 0400 0008 00 .....
  88. 0000007d: 0500 0004 00 .....
  89.  
  90. **SNES Controller**
  91.  
  92. ABCD EFGH IJ
  93.  
  94. B -> DPad(+4) Buttons(+2) Clicked (+1), Released (+0)
  95.  
  96. IJ -> Code
  97.  
  98. DPad
  99. Up
  100. 00000000: 0500 0000 04 .....
  101. 00000005: 0400 0000 04 .....
  102. Down
  103. 0000000a: 0500 0000 08 .....
  104. 0000000f: 0400 0000 08 .....
  105. Left
  106. 00000014: 0500 0000 01 .....
  107. 00000019: 0400 0000 01 .....
  108. Right
  109. 0000001e: 0500 0000 02 .....
  110. 00000023: 0400 0000 02 .....
  111. Buttons
  112. A
  113. 00000028: 0300 0000 01 .....
  114. 0000002d: 0200 0000 01 .....
  115. B
  116. 00000032: 0300 0000 02 .....
  117. 00000037: 0200 0000 02 .....
  118. X
  119. 0000003c: 0300 0000 00 .....
  120. 00000041: 0200 0000 00 .....
  121. Y
  122. 00000046: 0300 0000 03 .....
  123. 0000004b: 0200 0000 03 .....
  124. Start
  125. 00000050: 0300 0000 09 .....
  126. 00000055: 0200 0000 09 .....
  127. Select
  128. 0000005a: 0300 0000 08 .....
  129. 0000005f: 0200 0000 08 .....
  130. Left Shoulder
  131. 00000064: 0300 0000 04 .....
  132. 00000069: 0200 0000 04 .....
  133. Right Shoulder
  134. 0000006e: 0300 0000 05 .....
  135. 00000073: 0200 0000 05 .....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement