put persisted data in gitignore and created defaults if dont exist

This commit is contained in:
langolierz
2018-05-03 23:08:06 +00:00
parent cfad0dc7f8
commit 4db37fd0b1
386 changed files with 61 additions and 875 deletions

View File

@@ -0,0 +1,67 @@
{
"a": {
"NAV_BROWSER": ["move_browser_selection_up"],
"PLAYER": ["seek_back_on_player"],
"NAV_SETTINGS": ["move_settings_selection_up"],
"LENGTH_SET": ["return_to_default_control_mode"]
},
"b": {
"NAV_BROWSER": ["move_browser_selection_down"],
"PLAYER": ["seek_forward_on_player"],
"NAV_SETTINGS": ["move_settings_selection_down"],
"LENGTH_SET": ["return_to_default_control_mode"]
},
"c": {
"NAV_BROWSER": ["enter_on_browser_selection"],
"PLAYER": ["toggle_action_on_player","toggle_show_on_player"],
"NAV_SETTINGS": ["enter_on_settings_selection"],
"LENGTH_SET": ["record_fixed_length"]
},
"d": {
"DEFAULT": ["switch_to_next_player", "toggle_player_mode"]
},
"e": {
"DEFAULT": ["set_playing_sample_start_to_current_duration", "clear_playing_sample_start_time"]
},
"f": {
"DEFAULT": ["set_playing_sample_end_to_current_duration", "clear_playing_sample_end_time"]
},
"g": {
"DEFAULT": ["toggle_capture_preview", "toggle_capture_recording"]},
"h": {
"DEFAULT": ["cycle_display_mode"]
},
"i": {
"DEFAULT": ["toggle_function"]
},
"j": {
"DEFAULT": ["load_slot_0_into_next_player","previous_bank"]
},
"k": {
"DEFAULT": ["load_slot_1_into_next_player","next_bank"]
},
"l": {
"DEFAULT": ["load_slot_2_into_next_player","clear_all_slots"]
},
"m": {
"DEFAULT": ["load_slot_3_into_next_player","decrease_speed"]
},
"n": {
"DEFAULT": ["load_slot_4_into_next_player","increase_speed"]
},
"o": {
"DEFAULT": ["load_slot_5_into_next_player","toggle_screen_mirror"]
},
"p": {
"DEFAULT": ["load_slot_6_into_next_player", "print_speed"]
},
"q": {
"DEFAULT": ["load_slot_7_into_next_player"]
},
"r": {
"DEFAULT": ["load_slot_8_into_next_player"]
},
"s": {
"DEFAULT": ["load_slot_9_into_next_player","quit_the_program"]
}
}

View File

@@ -0,0 +1,72 @@
{
"control_change 0": {
"DEFAULT": ["set_the_camera_alpha_cc"]
},
"control_change 1": {
"DEFAULT": ["set_the_camera_colour_u_with_cc"]
},
"control_change 2": {
"DEFAULT": ["set_the_camera_colour_v_with_cc"]
},
"note_on 72": {
"NAV_BROWSER": ["move_browser_selection_up"],
"PLAYER": ["seek_back_on_player"],
"NAV_SETTINGS": ["move_settings_selection_up"]
},
"note_on 73": {
"NAV_BROWSER": ["move_browser_selection_down"],
"PLAYER": ["seek_forward_on_player"],
"NAV_SETTINGS": ["move_settings_selection_down"]
},
"note_on 74": {
"NAV_BROWSER": ["enter_on_browser_selection"],
"PLAYER": ["toggle_action_on_player"],
"NAV_SETTINGS": ["enter_on_settings_selection"]
},
"note_on 75": {
"DEFAULT": ["switch_to_next_player"]
},
"note_on 76": {
"DEFAULT": ["set_playing_sample_start_to_current_duration", "clear_playing_sample_start_time"]
},
"note_on 77": {
"DEFAULT": ["set_playing_sample_end_to_current_duration", "clear_playing_sample_end_time"]
},
"note_on 78": {},
"note_on 79": {
"DEFAULT": ["cycle_display_mode"]
},
"note_on 80": {
"DEFAULT": ["toggle_function"]
},
"note_on 81": {
"DEFAULT": ["load_slot_0_into_next_player","previous_bank"]
},
"note_on 82": {
"DEFAULT": ["load_slot_1_into_next_player","next_bank"]
},
"note_on 83": {
"DEFAULT": ["load_slot_2_into_next_player","clear_all_slots"]
},
"note_on 84": {
"DEFAULT": ["load_slot_3_into_next_player","decrease_speed"]
},
"note_on 85": {
"DEFAULT": ["load_slot_4_into_next_player","increase_speed"]
},
"note_on 86": {
"DEFAULT": ["load_slot_5_into_next_player","print_speed"]
},
"note_on 87": {
"DEFAULT": ["load_slot_6_into_next_player"]
},
"note_on 88": {
"DEFAULT": ["load_slot_7_into_next_player"]
},
"note_on 89": {
"DEFAULT": ["load_slot_8_into_next_player"]
},
"note_on 90": {
"DEFAULT": ["load_slot_9_into_next_player","quit_the_program"]
}
}

View File

@@ -0,0 +1,254 @@
{
"capture": {
"DEVICE": {
"action": "update_capture_settings",
"options": [
"enabled",
"disabled"
],
"value": "disabled"
},
"FRAMERATE": {
"action": "update_capture_settings",
"options": [
"24",
"23.976",
"25",
"29.97",
"30",
"50",
"59.94",
"60"
],
"value": "25"
},
"IMAGE_EFFECT": {
"action": "update_capture_settings",
"options": [],
"value": "none"
},
"RESOLUTION": {
"action": "update_capture_settings",
"options": [
"640x480",
"768x576",
"1280x720",
"1920x1080"
],
"value": "640x480"
},
"SHUTTER": {
"action": "update_capture_settings",
"options": [
"auto",
"1/1000",
"1/500",
"1/250",
"max"
],
"value": "auto"
}
},
"midi": {
"CHANNEL": {
"action": null,
"options": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16
],
"value": 1
},
"INPUT": {
"action": null,
"options": [
"enabled",
"disabled"
],
"value": "disabled"
},
"STATUS": {
"action": null,
"options": [],
"value": "disconnected"
}
},
"other": {
"DEV_MODE_RESET": {
"action": "switch_dev_mode",
"options": [
"on",
"off"
],
"value": "off"
},
"QUIT": {
"action": "quit_the_program",
"options": [],
"value": null
}
},
"sampler": {
"ACTION_GATED": {
"action": null,
"options": [
"on",
"off"
],
"value": "off"
},
"FIXED_LENGTH": {
"action": "set_fixed_length",
"options": [],
"value": 1.18
},
"FIXED_LENGTH_MODE": {
"action": "update_video_settings",
"options": [
"on",
"off"
],
"value": "off"
},
"FIXED_LENGTH_MULTIPLY": {
"action": null,
"options": [
1,
2,
4,
8,
16
],
"value": 4
},
"FUNC_GATED": {
"action": null,
"options": [
"on",
"off"
],
"value": "off"
},
"LOAD_NEXT": {
"action": "update_video_settings",
"options": [
"now",
"random",
"consecutive"
],
"value": "now"
},
"ON_ACTION": {
"action": "update_video_settings",
"options": [
"show",
"play",
"play/show"
],
"value": "play"
},
"ON_FINISH": {
"action": "update_video_settings",
"options": [
"nothing",
"switch"
],
"value": "switch"
},
"ON_LOAD": {
"action": "update_video_settings",
"options": [
"hide",
"show"
],
"value": "show"
},
"ON_START": {
"action": "update_video_settings",
"options": [
"pause/hide",
"pause/show",
"play/hide",
"play/show"
],
"value": "play/show"
},
"RAND_START_MODE": {
"action": "update_video_settings",
"options": [
"on",
"off"
],
"value": "off"
}
},
"video": {
"BACKGROUND_COLOUR": {
"action": null,
"options": [
"pink",
"blue",
"black",
"white",
"green",
"none"
],
"value": "black"
},
"COMPOSITE_PROGRESSIVE": {
"action": "change_composite_setting",
"options": [
"off",
"on"
],
"value": "off"
},
"COMPOSITE_RATIO": {
"action": "change_composite_setting",
"options": [
"4:3",
"14:9",
"16:9"
],
"value": "4:3"
},
"COMPOSITE_TYPE": {
"action": "change_composite_setting",
"options": [
"PAL",
"NTSC"
],
"value": "PAL"
},
"OUTPUT": {
"action": "change_output_mode",
"options": [
"hdmi",
"composite"
],
"value": "hdmi"
},
"SCREEN_MODE": {
"action": null,
"options": [
"stretch",
"letterbox",
"fill"
],
"value": "letterbox"
}
}
}