Skip to content

UI: Add Xbox Live Communicator to UI #1873

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

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
918634b
Added UI for attaching XBLC to expansion port
faha223 Jan 16, 2025
ca167e5
Recreated the xblc_mask image as an SVG
faha223 Jan 19, 2025
3fbe16a
Was having an issue where the audio would become crackly and high pit…
faha223 Jan 20, 2025
702e353
Commented out the preprocessor definition of DEBUG_XBLC. That wasn't …
faha223 Jan 20, 2025
a64b6a4
Merge branch 'master' into xblc_gui
faha223 Jan 26, 2025
14fd072
This was supposed to be a part of the previous commit
faha223 Jan 26, 2025
e8b4e84
Reduced the precision when drawing the Volume value on the UI
faha223 Jan 26, 2025
7e742e3
Implemented logic to cache the names of SDL audio devices so it doesn…
faha223 Jan 26, 2025
88545d7
Removed the parameter serialization for XBLC. Replaced it with new co…
faha223 Jan 26, 2025
df0d774
Merge branch 'master' into xblc_gui
faha223 Jan 26, 2025
1f81595
Merge branch 'master' into xblc_gui
faha223 Feb 12, 2025
9f9cc7f
Merge branch 'master' into xblc_gui
faha223 Feb 16, 2025
f1b735a
Merge branch 'master' into xblc_gui
faha223 Mar 9, 2025
aad905e
Merge branch 'master' into xblc_gui
faha223 Mar 11, 2025
d756abd
Merge branch 'master' into xblc_gui
faha223 Mar 15, 2025
69a1b06
Fixed a bug where a bit of code only needed for the Microphone was ca…
faha223 Mar 16, 2025
2221ccb
Merge branch 'master' into xblc_gui
faha223 Mar 18, 2025
9f378c9
Merge branch 'master' into xblc_gui
faha223 Mar 20, 2025
6b54b55
Merge branch 'master' into xblc_gui
faha223 Mar 23, 2025
ebd190c
Merge branch 'master' into xblc_gui
faha223 May 1, 2025
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
52 changes: 52 additions & 0 deletions config_spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,73 @@ input:
port1:
peripheral_type_0: integer
peripheral_param_0: string
xblc1_settings:
output_device_name:
type: string
default: "Default"
output_device_volume:
type: number
default: 100.0
input_device_name:
type: string
default: "Default"
input_device_volume:
type: number
default: 100.0
peripheral_type_1: integer
peripheral_param_1: string
port2:
peripheral_type_0: integer
peripheral_param_0: string
xblc2_settings:
output_device_name:
type: string
default: "Default"
output_device_volume:
type: number
default: 100.0
input_device_name:
type: string
default: "Default"
input_device_volume:
type: number
default: 100.0
peripheral_type_1: integer
peripheral_param_1: string
port3:
peripheral_type_0: integer
peripheral_param_0: string
xblc3_settings:
output_device_name:
type: string
default: "Default"
output_device_volume:
type: number
default: 100.0
input_device_name:
type: string
default: "Default"
input_device_volume:
type: number
default: 100.0
peripheral_type_1: integer
peripheral_param_1: string
port4:
peripheral_type_0: integer
peripheral_param_0: string
xblc4_settings:
output_device_name:
type: string
default: "Default"
output_device_volume:
type: number
default: 100.0
input_device_name:
type: string
default: "Default"
input_device_volume:
type: number
default: 100.0
peripheral_type_1: integer
peripheral_param_1: string
gamecontrollerdb_path: string
Expand Down
1 change: 1 addition & 0 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pfiles = [
'controller_mask.png',
'controller_mask_s.png',
'xmu_mask.png',
'xblc_mask.png',
'logo_sdf.png',
'xemu_64x64.png',
'abxy.ttf',
Expand Down
Binary file added data/xblc_mask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 66 additions & 0 deletions data/xblc_mask.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading