Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added unordered_map reference to wiiext.h #523

Merged
merged 27 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
af4fd3e
Added improved Wii extension detection.
mikepparks May 11, 2023
f58175c
Merge branch 'OpenStickCommunity:main' into main
mikepparks May 17, 2023
98a666f
Merge branch 'OpenStickCommunity:main' into main
mikepparks May 24, 2023
f122ec4
Refactor of WiiExtension library to better separate controller contexts.
mikepparks May 24, 2023
0f4df7f
Added analog calibration. If controller does not have stored calibrat…
mikepparks May 25, 2023
60570f5
Adjust default analog calibration when data is unavailable on the dev…
mikepparks May 26, 2023
fb21dbf
Added default calibration for Drums and Turntable extensions since no…
mikepparks May 29, 2023
f27d61d
Merge branch 'OpenStickCommunity:main' into main
mikepparks May 29, 2023
ece63df
Moved WiiExtensionController enum to a type.
mikepparks May 30, 2023
2f9f916
Added toggle state for DJ Hero Euphoria button LED.
mikepparks Jun 2, 2023
9d6f6e2
Merge branch 'OpenStickCommunity:main' into main
mikepparks Jun 2, 2023
ad4f8c2
Merge branch 'OpenStickCommunity:main' into main
mikepparks Jun 7, 2023
4118959
Merge branch 'OpenStickCommunity:main' into main
mikepparks Jun 27, 2023
e0ce2cd
Merge branch 'OpenStickCommunity:main' into main
mikepparks Aug 18, 2023
1d648f6
Refactored polling logic to allow for options on boot
mikepparks Aug 19, 2023
5b173ef
Merge branch 'OpenStickCommunity:main' into main
mikepparks Aug 20, 2023
2813fea
Merge branch 'OpenStickCommunity:main' into main
mikepparks Aug 27, 2023
665a2b4
Merge branch 'OpenStickCommunity:main' into main
mikepparks Sep 5, 2023
81c94ff
Refactor of Wii addon to include button and analog mapping.
mikepparks Sep 6, 2023
7d76a07
Fixed issue causing Classic Pro-based controllers from functioning.
mikepparks Sep 6, 2023
5ede153
Fixes unintentional tabs and moved unneeded debug variables behind WI…
mikepparks Sep 8, 2023
0566ac9
Minor view refactors on input selectors
mikepparks Sep 9, 2023
92a6eba
Fixed key warnings
mikepparks Sep 9, 2023
25673a5
Merge branch 'OpenStickCommunity:main' into main
mikepparks Sep 9, 2023
9b8ca9e
Set ExtensionBase process() to 0 to avoid linker issues.
mikepparks Sep 12, 2023
350a428
Added reference for unordered_map because compilers are picky.
mikepparks Sep 15, 2023
9b58423
Merge branch 'OpenStickCommunity:main' into main
mikepparks Sep 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions headers/addons/wiiext.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include <string>
#include <map>
#include <unordered_map>
#include <vector>
#include <numeric>
#include <stdint.h>
Expand Down