Ejemplo n.º 1
0
        private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section)
        {
            switch (section)
            {
            case ConfigSection.General:
            {
                page.AddCheckBox("Check for updates:", Settings.CheckUpdates, CheckUpdatesTooltip);                // 0
                page.AddCheckBox("Show Tutorial at Startup:", Settings.ShowTutorial, ShowTutorialTooltip);         // 1
                page.AddCheckBox("Trackpad controls:", Settings.TrackPadControls, TrackpadControlsTooltip);        // 2
                page.AddCheckBox("Clear Undo/Redo on save:", Settings.ClearUndoRedoOnSave, ClearUndoRedoTooltip);  // 3
                page.AddCheckBox("Open last project on start:", Settings.OpenLastProjectOnStart, OpenLastTooltip); // 4
                page.AddCheckBox("Autosave a copy every 2 minutes:", Settings.AutoSaveCopy, AutosaveTooltip);      // 5
                page.AddButton(null, "Open Autosave folder", AutosaveFolderTooltip);                               // 6
                page.PropertyClicked += PageGeneral_PropertyClicked;
                page.PropertyChanged += PageGeneral_PropertyChanged;
                page.SetPropertyVisible(0, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(2, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(3, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(4, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(5, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(6, PlatformUtils.IsDesktop);
                break;
            }

            case ConfigSection.UserInterface:
            {
                var scalingValues   = BuildDpiScalingList();
                var scalingIndex    = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%");
                var timeFormatIndex = Settings.TimeFormat < (int)TimeFormat.Max ? Settings.TimeFormat : 0;
                var followModeIndex = Settings.FollowMode <= 0 ? 0 : Settings.FollowMode % FollowModeStrings.Length;
                var followSyncIndex = Settings.FollowSync <= 0 ? 0 : Settings.FollowSync % FollowSyncStrings.Length;

                page.AddDropDownList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex], ScalingTooltip);        // 0
                page.AddDropDownList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex], TimeFormatTooltip);         // 1
                page.AddDropDownList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex], FollowModeTooltip);         // 2
                page.AddDropDownList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex], FollowingViewsTooltip); // 3
                page.AddDropDownList("Scroll Bars:", ScrollBarsStrings, ScrollBarsStrings[Settings.ScrollBars], ScrollBarsTooltip);     // 4
                page.AddCheckBox("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange, ShowPianoRollRangeTooltip);            // 5
                page.AddCheckBox("Show Note Labels:", Settings.ShowNoteLabels, ShowNoteLabelsTooltip);                                  // 6
                page.AddCheckBox("Show FamiTracker Stop Notes:", Settings.ShowImplicitStopNotes, ShowFamitrackerStopNotesTooltip);      // 7
                page.AddCheckBox("Show Oscilloscope:", Settings.ShowOscilloscope, ShowOscilloscopeTooltip);                             // 8
                page.AddCheckBox("Force Compact Sequencer:", Settings.ForceCompactSequencer, CompactSequencerTooltip);                  // 9
                page.SetPropertyVisible(0, !PlatformUtils.IsMacOS);                                                                     // No manual DPI selection on MacOS.
                page.SetPropertyVisible(3, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(4, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(8, PlatformUtils.IsDesktop);
                page.SetPropertyVisible(9, PlatformUtils.IsDesktop);
                break;
            }

            case ConfigSection.Sound:
            {
                page.AddNumericUpDown("Number of buffered frames:", Settings.NumBufferedAudioFrames, 2, 16, NumBufferedFramesTooltip); // 0
                page.AddNumericUpDown("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10, StopInstrumentTooltip);     // 1
                page.AddCheckBox("Prevent popping on square channels:", Settings.SquareSmoothVibrato, PreventPoppingTooltip);          // 2
                page.AddCheckBox("Mute drag sounds during playback:", Settings.NoDragSoungWhenPlaying, NoDragSoundTooltip);            // 3
                page.AddSlider("Metronome volume:", Settings.MetronomeVolume, 1.0, 200.0, 1.0, 0, null, MetronomeVolumeTooltip);       // 4
                break;
            }

            case ConfigSection.Mixer:
            {
                page.AddSlider("Global Volume:", Settings.GlobalVolume, -10.0, 3.0, 0.1, 1, "{0:+0.0;-0.0} dB", GlobalVolumeTooltip);                                             // 0
                page.AddDropDownList("Expansion:", ExpansionType.Names, ExpansionType.Names[0], ExpansionTooltip);                                                                // 1
                page.AddSlider("Expansion Volume:", Settings.ExpansionMixerSettings[ExpansionType.None].volume, -10.0, 10.0, 0.1, 1, "{0:+0.0;-0.0} dB", ExpansionVolumeTooltip); // 2
                page.AddSlider("Expansion Treble:", Settings.ExpansionMixerSettings[ExpansionType.None].treble, -100.0, 5.0, 0.1, 1, "{0:+0.0;-0.0} dB", ExpansionTrebleTooltip); // 3
                page.AddButton(PlatformUtils.IsDesktop ? null : "Reset", "Reset expansion to default", "Resets this expansion to the default settings.");                         // 4
                page.AddLabel(PlatformUtils.IsDesktop ? null : "Note", "Note : These will have no effect on NSF, ROM, FDS and sound engine exports.", true);                      // 5
                page.PropertyChanged += MixerPage_PropertyChanged;
                page.PropertyClicked += MixerPage_PropertyClicked;
                break;
            }

            case ConfigSection.MIDI:
            {
                int midiDeviceCount = Midi.InputCount;
                var midiDevices     = new List <string>();
                for (int i = 0; i < midiDeviceCount; i++)
                {
                    var name = Midi.GetDeviceName(i);
                    if (!string.IsNullOrEmpty(name))
                    {
                        midiDevices.Add(name);
                    }
                }

                var midiDevice = "";

                if (!string.IsNullOrEmpty(Settings.MidiDevice) && midiDevices.Contains(Settings.MidiDevice))
                {
                    midiDevice = Settings.MidiDevice;
                }
                else if (midiDevices.Count > 0)
                {
                    midiDevice = midiDevices[0];
                }

                page.AddDropDownList("Device :", midiDevices.ToArray(), midiDevice, MidiDeviceTooltip);     // 0
                break;
            }

            case ConfigSection.FFmpeg:
                page.AddLabel(null, "Video export requires FFmpeg. If you already have it, set the path to the ffmpeg executable by clicking the button below, otherwise follow the download link.", true); // 0
                page.AddButton(null, Settings.FFmpegExecutablePath, "Path to FFmpeg executable. On Windows this is ffmpeg.exe. To download and install ffpmeg, check the link below.");                     // 1
                // GTK LinkButtons dont work on MacOS, use a button (https://github.com/quodlibet/quodlibet/issues/2306)
                if (PlatformUtils.IsMacOS)
                {
                    page.AddButton(" ", "Download FFmpeg here");     // 2
                }
                else
                {
                    page.AddLinkLabel(" ", "Download FFmpeg here", "https://famistudio.org/doc/ffmpeg/");     // 3
                }
                page.PropertyClicked += FFmpegPage_PropertyClicked;
                break;

            case ConfigSection.QWERTY:
            {
                page.AddLabel(null, "Double click in the 2 last columns to assign a key. Right click to clear a key.", true);                                                                               // 0
                page.AddMultiColumnList(new[] { new ColumnDesc("Octave", 0.2f), new ColumnDesc("Note", 0.2f), new ColumnDesc("Key", 0.3f), new ColumnDesc("Key (alt)", 0.3f) }, GetQwertyMappingStrings()); // 1
                page.AddButton(null, "Reset to default");
                page.PropertyClicked += QwertyPage_PropertyClicked;
                break;
            }

            case ConfigSection.MacOS:
            {
                page.AddCheckBox("Reverse trackpad direction:", Settings.ReverseTrackPad);                      // 0
                page.AddNumericUpDown("Trackpad movement sensitivity:", Settings.TrackPadMoveSensitity, 1, 16); // 1
                page.AddNumericUpDown("Trackpad zoom sensitivity:", Settings.TrackPadZoomSensitity, 1, 32);     // 2
                page.SetPropertyEnabled(0, Settings.TrackPadControls);
                page.SetPropertyEnabled(1, Settings.TrackPadControls);
                page.SetPropertyEnabled(2, Settings.TrackPadControls);
                break;
            }

            case ConfigSection.Mobile:
            {
                page.AddCheckBox("Allow vibration:", Settings.AllowVibration, AllowVibrationTooltip);            // 0
                page.AddCheckBox("Double-tap to delete:", Settings.DoubleClickDelete, DoubleClickDeleteTooltip); // 1
                break;
            }
            }

            page.Build();
            pages[(int)section] = page;

            return(page);
        }
Ejemplo n.º 2
0
        private PropertyPage CreatePropertyPage(PropertyPage page, ExportFormat format)
        {
            var songNames = GetSongNames();

            switch (format)
            {
            case ExportFormat.WavMp3:
                page.AddStringList("Song :", songNames, songNames[0]);                                                    // 0
                page.AddStringList("Format :", new[] { "WAV", "MP3" }, "WAV");                                            // 1
                page.AddStringList("Sample Rate :", new[] { "11025", "22050", "44100", "48000" }, "44100");               // 2
                page.AddStringList("Bit Rate :", new[] { "96", "112", "128", "160", "192", "224", "256", "320" }, "128"); // 3
                page.AddStringList("Mode :", new[] { "Loop N times", "Duration" }, "Loop N times");                       // 4
                page.AddIntegerRange("Loop count:", 1, 1, 10);                                                            // 5
                page.AddIntegerRange("Duration (sec):", 120, 1, 1000);                                                    // 6
                page.AddBoolean("Separate channel files", false);                                                         // 7
                page.AddStringListMulti("Channels :", GetChannelNames(), null);                                           // 8
                page.SetPropertyEnabled(3, false);
                page.SetPropertyEnabled(6, false);
                break;

            case ExportFormat.Video:
                page.AddButton("Path To FFmpeg:", Settings.FFmpegExecutablePath, FFmpegPathButtonClicked, "Path to FFmpeg executable. On Windows this is ffmpeg.exe. To download and install ffpmeg, check the link below.");     // 0
#if FAMISTUDIO_MACOS
                // GTK LinkButtons dont work on MacOS, use a button (https://github.com/quodlibet/quodlibet/issues/2306)
                page.AddButton(" ", "Download FFmpeg here", FFmpegDownloadButtonClicked);                                                                                                                                               // 1
#else
                page.AddLinkLabel(" ", "Download FFmpeg here", "https://famistudio.org/doc/ffmpeg/");                                                                                                                                   // 1
#endif
                page.AddStringList("Song :", songNames, songNames[0]);                                                                                                                                                                  // 2
                page.AddStringList("Resolution :", VideoResolution.Names, VideoResolution.Names[0]);                                                                                                                                    // 3
                page.AddStringList("Frame Rate :", new[] { "50/60 FPS", "25/30 FPS" }, "50/60 FPS");                                                                                                                                    // 4
                page.AddStringList("Audio Bit Rate (Kb/s) :", new[] { "64", "96", "112", "128", "160", "192", "224", "256", "320" }, "128");                                                                                            // 5
                page.AddStringList("Video Bit Rate (Kb/s):", new[] { "250", "500", "1000", "2000", "4000", "8000", "10000", "12000", "14000", "16000", "18000", "20000" }, "12000");                                                    // 6
                page.AddStringList("Piano Roll Zoom :", new[] { "12.5%", "25%", "50%", "100%", "200%", "400%", "800%" }, project.UsesFamiTrackerTempo ? "100%" : "25%", "Higher zoom values scrolls faster and shows less far ahead."); // 7
                page.AddIntegerRange("Loop Count :", 1, 1, 8);                                                                                                                                                                          // 8
                page.AddStringListMulti("Channels :", GetChannelNames(), null);                                                                                                                                                         // 9
                break;

            case ExportFormat.Nsf:
                page.AddString("Name :", project.Name, 31);                                                                               // 0
                page.AddString("Artist :", project.Author, 31);                                                                           // 1
                page.AddString("Copyright :", project.Copyright, 31);                                                                     // 2
                page.AddStringList("Mode :", MachineType.Names, MachineType.Names[project.PalMode ? MachineType.PAL : MachineType.NTSC]); // 3
                page.AddStringListMulti(null, songNames, null);                                                                           // 4
#if DEBUG
                page.AddStringList("Engine :", FamiToneKernel.Names, FamiToneKernel.Names[FamiToneKernel.FamiStudio]);                    // 5
#endif
                page.SetPropertyEnabled(3, !project.UsesExpansionAudio);
                break;

            case ExportFormat.Rom:
                page.AddStringList("Type :", new[] { "NES ROM", "FDS Disk" }, project.ExpansionAudio == ExpansionType.Fds ? "FDS Disk" : "NES ROM"); // 0
                page.AddString("Name :", project.Name.Substring(0, Math.Min(28, project.Name.Length)), 28);                                          // 1
                page.AddString("Artist :", project.Author.Substring(0, Math.Min(28, project.Author.Length)), 28);                                    // 2
                page.AddStringList("Mode :", new[] { "NTSC", "PAL" }, project.PalMode ? "PAL" : "NTSC");                                             // 3
                page.AddStringListMulti(null, songNames, null);                                                                                      // 2
                page.SetPropertyEnabled(0, project.ExpansionAudio == ExpansionType.Fds);
                page.SetPropertyEnabled(3, !project.UsesExpansionAudio);
                break;

            case ExportFormat.Text:
                page.AddStringListMulti(null, songNames, null);     // 0
                page.AddBoolean("Delete unused data :", false);     // 1
                break;

            case ExportFormat.FamiTracker:
                page.AddStringListMulti(null, songNames, null);     // 0
                break;

            case ExportFormat.FamiTone2Music:
            case ExportFormat.FamiStudioMusic:
                page.AddStringList("Format :", AssemblyFormat.Names, AssemblyFormat.Names[0]); // 0
                page.AddBoolean("Separate Files :", false);                                    // 1
                page.AddString("Song Name Pattern :", "{project}_{song}");                     // 2
                page.AddString("DMC Name Pattern :", "{project}");                             // 3
                page.AddBoolean("Generate song list include :", false);                        // 4
                page.AddStringListMulti(null, songNames, null);                                // 5
                page.SetPropertyEnabled(2, false);
                page.SetPropertyEnabled(3, false);
                break;

            case ExportFormat.FamiTone2Sfx:
            case ExportFormat.FamiStudioSfx:
                page.AddStringList("Format :", AssemblyFormat.Names, AssemblyFormat.Names[0]);                                            // 0
                page.AddStringList("Mode :", MachineType.Names, MachineType.Names[project.PalMode ? MachineType.PAL : MachineType.NTSC]); // 1
                page.AddBoolean("Generate SFX list include :", false);                                                                    // 2
                page.AddStringListMulti(null, songNames, null);                                                                           // 3
                break;
            }

            page.Build();
            page.PropertyChanged += Page_PropertyChanged;

            return(page);
        }
Ejemplo n.º 3
0
        private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section)
        {
            switch (section)
            {
            case ConfigSection.General:
            {
                page.AddCheckBox("Check for updates:", Settings.CheckUpdates);     // 0
                page.AddCheckBox("Trackpad controls:", Settings.TrackPadControls); // 1
#if FAMISTUDIO_MACOS
                page.PropertyChanged += PageGeneral_PropertyChanged;
#endif
                break;
            }

            case ConfigSection.UserInterface:
            {
#if FAMISTUDIO_WINDOWS || FAMISTUDIO_LINUX
                var scalingValues = new[] { "System", "100%", "150%", "200%" };
#elif FAMISTUDIO_MACOS
                var scalingValues = new[] { "System", "100%", "200%" };
#endif
                var scalingIndex    = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%");
                var timeFormatIndex = Settings.TimeFormat < (int)TimeFormat.Max ? Settings.TimeFormat : 0;
                var followModeIndex = Settings.FollowMode <= 0 ? 0 : Settings.FollowMode % FollowModeStrings.Length;
                var followSyncIndex = Settings.FollowSync <= 0 ? 0 : Settings.FollowSync % FollowSyncStrings.Length;

                page.AddDropDownList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex]); // 0
                page.AddDropDownList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex]);     // 1
                page.AddDropDownList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex]);     // 2
                page.AddDropDownList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex]); // 3
                page.AddCheckBox("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange);                // 4
                page.AddCheckBox("Show Note Labels:", Settings.ShowNoteLabels);                                  // 5
                page.AddCheckBox("Show FamiTracker Stop Notes:", Settings.ShowImplicitStopNotes);                // 6
                page.AddCheckBox("Show Scroll Bars:", Settings.ShowScrollBars);                                  // 7
                page.AddCheckBox("Show Oscilloscope:", Settings.ShowOscilloscope);                               // 8
                page.AddCheckBox("Force Compact Sequencer:", Settings.ForceCompactSequencer);                    // 9
                break;
            }

            case ConfigSection.Sound:
            {
                page.AddIntegerRange("Number of buffered frames:", Settings.NumBufferedAudioFrames, 2, 16);         // 0
                page.AddIntegerRange("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10);          // 1
                page.AddCheckBox("Prevent popping on square channels:", Settings.SquareSmoothVibrato);              // 2
                page.AddCheckBox("Mute piano roll interactions during playback:", Settings.NoDragSoungWhenPlaying); // 3
                break;
            }

            case ConfigSection.Mixer:
            {
                // MATTT : Tooltips.
                page.AddDropDownList("Expansion:", ExpansionType.Names, ExpansionType.Names[0]);                                            // 0
                page.AddSlider("Volume:", Settings.ExpansionMixerSettings[ExpansionType.None].volume, -10.0, 10.0, 0.1, 1, FormatDecibels); // 1
                page.AddSlider("Treble:", Settings.ExpansionMixerSettings[ExpansionType.None].treble, -100.0, 5.0, 0.1, 1, FormatDecibels); // 2
                page.AddButton(null, "Reset to default", ResetMixerClicked, "Resets this expansion to the default settings.");
                page.AddLabel(null, "Note : These will have no effect on NSF, ROM, FDS and sound engine exports.", true);                   // 4 // MATTT : Test this in HIDPI.
                page.PropertyChanged += MixerPage_PropertyChanged;
                break;
            }

            case ConfigSection.MIDI:
            {
                int midiDeviceCount = Midi.InputCount;
                var midiDevices     = new List <string>();
                for (int i = 0; i < midiDeviceCount; i++)
                {
                    var name = Midi.GetDeviceName(i);
                    if (!string.IsNullOrEmpty(name))
                    {
                        midiDevices.Add(name);
                    }
                }

                var midiDevice = "";

                if (!string.IsNullOrEmpty(Settings.MidiDevice) && midiDevices.Contains(Settings.MidiDevice))
                {
                    midiDevice = Settings.MidiDevice;
                }
                else if (midiDevices.Count > 0)
                {
                    midiDevice = midiDevices[0];
                }

                page.AddDropDownList("Device :", midiDevices.ToArray(), midiDevice);     // 0
                break;
            }

            case ConfigSection.QWERTY:
            {
                page.AddLabel(null, "Double click in the 2 last columns to assign a key. Right click to clear a key.", true);                                        // 0
                page.AddMultiColumnList(new[] { "Octave", "Note", "Key", "Key (alt)" }, GetQwertyMappingStrings(), QwertyListDoubleClicked, QwertyListRightClicked); // 1
                page.AddButton(null, "Reset to default", ResetQwertyClicked);
                break;
            }

#if FAMISTUDIO_MACOS
            case ConfigSection.MacOS:
            {
                page.AddCheckBox("Reverse trackpad direction:", Settings.ReverseTrackPad);                     // 0
                page.AddIntegerRange("Trackpad movement sensitivity:", Settings.TrackPadMoveSensitity, 1, 16); // 1
                page.AddIntegerRange("Trackpad zoom sensitivity:", Settings.TrackPadZoomSensitity, 1, 32);     // 2
                page.SetPropertyEnabled(0, Settings.TrackPadControls);
                page.SetPropertyEnabled(1, Settings.TrackPadControls);
                page.SetPropertyEnabled(2, Settings.TrackPadControls);
                break;
            }
#endif
            }

            page.Build();
            pages[(int)section] = page;

            return(page);
        }