{"id":37532741,"url":"https://github.com/philchuang/spacesimcontrolmanager","last_synced_at":"2026-01-16T08:33:59.197Z","repository":{"id":64979145,"uuid":"580278051","full_name":"philchuang/spacesimcontrolmanager","owner":"philchuang","description":"Controls and Mappings manager for Space Sim games, like Star Citizen and Elite Dangerous","archived":false,"fork":false,"pushed_at":"2023-06-17T06:08:53.000Z","size":236,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-08-01T06:57:37.918Z","etag":null,"topics":["elite","elite-dangerous","elitedangerous","star-citizen","starcitizen"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/philchuang.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-12-20T06:51:01.000Z","updated_at":"2023-01-31T22:23:57.000Z","dependencies_parsed_at":"2023-02-16T16:16:16.184Z","dependency_job_id":null,"html_url":"https://github.com/philchuang/spacesimcontrolmanager","commit_stats":null,"previous_names":[],"tags_count":12,"template":null,"template_full_name":null,"purl":"pkg:github/philchuang/spacesimcontrolmanager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philchuang%2Fspacesimcontrolmanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philchuang%2Fspacesimcontrolmanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philchuang%2Fspacesimcontrolmanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philchuang%2Fspacesimcontrolmanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/philchuang","download_url":"https://codeload.github.com/philchuang/spacesimcontrolmanager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philchuang%2Fspacesimcontrolmanager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elite","elite-dangerous","elitedangerous","star-citizen","starcitizen"],"created_at":"2026-01-16T08:33:59.109Z","updated_at":"2026-01-16T08:33:59.181Z","avatar_url":"https://github.com/philchuang.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Space Sim Control Manager\n\nUtility to help players retain and migrate their control mappings for space-sim games, especially for new SC version releases. Elite Dangerous is also supported.\n\n## Standard Usage (Star Citizen)\n\n### Import\n\nReads the Star Citizen `actionmaps.xml` file and stores the input device settings and mappings.\n\n```text\n\u003e SSCM.exe sc import\nRead in 4 input devices.\nRead in 114 mappings.\nMappings backed up to [My Documents\\SSCM\\SC\\scmappings.json].\n```\n\n### Edit\n\nOpens the captured mappings file in the system default editor. Set the `Preserve` property to `true` to overwrite the game configuration when exporting.\n\n```text\n\u003e SSCM.exe sc edit\nOpening [My Documents\\SSCM\\SC\\scmappings.json] in the default editor, change the Preserve property to choose which settings are overwritten.\n```\n\n### Export Preview\n\nPreviews changes to the Star Citizen game configuration based on the preserved captured mappings.\n\n```text\n\u003e SSCM.exe sc export\nUpdating seat_general-v_toggle_mining_mode to js2_button56...\nUpdating seat_general-v_toggle_quantum_mode to js2_button19...\nUpdating seat_general-v_toggle_scan_mode to js2_button54...\nCONFIGURATION NOT UPDATED: Execute \"export apply\" to apply these changes.\n```\n\n### Export Apply\n\nUpdates the Star Citizen game configuration based on the preserved captured mappings.\n\n```text\n\u003e SSCM.exe sc export apply\nUpdating seat_general-v_toggle_mining_mode to js2_button56...\nUpdating seat_general-v_toggle_quantum_mode to js2_button19...\nUpdating seat_general-v_toggle_scan_mode to js2_button54...\nSaving updated actionmaps.xml...\nSaved, run \"restore\" command to revert.\nCONFIGURATION UPDATED: Changes applied to [C:\\Program Files\\Roberts Space Industries\\StarCitizen\\LIVE\\USER\\Client\\0\\Profiles\\default\\actionmaps.xml].\nMUST RESTART STAR CITIZEN FOR CHANGES TO TAKE EFFECT.\n```\n\n### Report\n\nCreates a plain-text report of the captured mappings (multiple formats available).\n\n```text\n\u003e SSCM.exe sc report \u003e starcitizen_mappings.md\n```\n\n```text\n\u003e SSCM.exe sc report -f csv \u003e starcitizen_mappings.scv\n```\n\n```text\n\u003e SSCM.exe sc report -f json \u003e starcitizen_mappings.json\n```\n\n## Advanced Usage\n\n### Importing when there is already saved mappings\n\nInstead of automatically importing, this will display the differences between the captured and latest mappings for review.\n\n```text\n\u003e SSCM.exe sc import\nMAPPING changed and will merge: [seat_general-v_toggle_mining_mode] js2_button55 =\u003e js2_button54\nMAPPING changed and will not merge: [seat_general-v_toggle_quantum_mode] =\u003e js2_button56, preserving js2_button19\nMAPPING changed and will not merge: [seat_general-v_toggle_scan_mode] =\u003e js2_button55, preserving js2_button54\n1 changes NOT saved! Run in merge or overwrite modes to save changes.\n```\n\n#### Merge mappings\n\nMerges the latest changes for the non-preserved mappings.\n\n```text\n\u003e SSCM.exe sc import merge\nMAPPING changed and will merge: [seat_general-v_toggle_mining_mode] js2_button55 =\u003e js2_button54\nMAPPING changed and will not merge: [seat_general-v_toggle_quantum_mode] =\u003e js2_button56, preserving js2_button19\nMAPPING changed and will not merge: [seat_general-v_toggle_scan_mode] =\u003e js2_button55, preserving js2_button54\nMappings backed up to [My Documents\\SSCM\\SC\\scmappings.json].\n```\n\n#### Overwrite mappings\n\nOverwrite all the captured mappings with the latest changes.\n\n```text\n\u003e SSCM.exe sc import overwrite\nRead in 4 input devices.\nRead in 114 mappings.\nOverwriting existing mappings data!\nMappings backed up to [My Documents\\SSCM\\SC\\scmappings.json].\n```\n\n### Back up the Star Citizen actionmaps.xml\n\nMakes a local copy of the Star Citizen actionmaps.xml, which can be restored later.\n\n```text\n\u003e SSCM.exe sc backup\nactionmaps.xml backed up to [My Documents\\SSCM\\SC\\actionmaps.xml.20221223022032.bak].\n```\n\n### Restore the backed-up Star Citizen actionmaps.xml\n\nRestores the latest local backup of the Star Citizen actionmaps.xml.\n\n```text\n\u003e SSCM.exe sc restore\nactionmaps.xml restored from [My Documents\\SSCM\\SC\\actionmaps.xml.20221223022032.bak].\n```\n\n### Edit the Star Citizen actionmaps.xml\n\nOpens the Star Citizen game configuration in the system default editor.\n\n```text\n\u003e SSCM.exe sc editgame\nOpening [C:\\Program Files\\Roberts Space Industries\\StarCitizen\\LIVE\\USER\\Client\\0\\Profiles\\default\\actionmaps.xml] in the default editor.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilchuang%2Fspacesimcontrolmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphilchuang%2Fspacesimcontrolmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilchuang%2Fspacesimcontrolmanager/lists"}