private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.UserInterface: { #if FAMISTUDIO_WINDOWS var scalingValues = new[] { "System", "100%", "150%", "200%" }; #else var scalingValues = new[] { "System", "100%", "200%" }; #endif var idx = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%"); page.AddStringList("Scaling (Requires Restart):", scalingValues, scalingValues[idx]); // 0 page.AddBoolean("Check for updates:", true); // 1 break; } case ConfigSection.Sound: { page.AddIntegerRange("Stop Instruments After (sec):", Settings.InstrumentStopTime, 0, 10); // 0 break; } case ConfigSection.MIDI: { int midiDeviceCount = Midi.InputCount; var midiDevices = new List <string>(); for (int i = 0; i < midiDeviceCount; i++) { midiDevices.Add(Midi.GetDeviceName(i)); } var midiDevice = ""; if (Settings.MidiDevice.Length > 0 && midiDevices.Contains(Settings.MidiDevice)) { midiDevice = Settings.MidiDevice; } else if (midiDevices.Count > 0) { midiDevice = midiDevices[0]; } page.AddStringList("Device :", midiDevices.ToArray(), midiDevice); // 0 break; } } page.Build(); pages[(int)section] = page; return(page); }
public void AddProperties() { firstPropIdx = props.PropertyCount; if (song.UsesFamiTrackerTempo) { if (patternIdx < 0) { famitrackerTempoPropIdx = props.AddIntegerRange("Tempo :", song.FamitrackerTempo, 32, 255, CommonTooltips.Tempo); // 0 famitrackerSpeedPropIdx = props.AddIntegerRange("Speed :", song.FamitrackerSpeed, 1, 31, CommonTooltips.Speed); // 1 } var notesPerBeat = patternIdx < 0 ? song.BeatLength : song.GetPatternBeatLength(patternIdx); var notesPerPattern = patternIdx < 0 ? song.PatternLength : song.GetPatternLength(patternIdx); var bpm = Song.ComputeFamiTrackerBPM(song.Project.PalMode, song.FamitrackerSpeed, song.FamitrackerTempo, notesPerBeat); notesPerBeatPropIdx = props.AddIntegerRange("Notes per Beat :", notesPerBeat, 1, 256, CommonTooltips.NotesPerBeat); // 2 notesPerPatternPropIdx = props.AddIntegerRange("Notes per Pattern :", notesPerPattern, 1, Pattern.MaxLength, CommonTooltips.NotesPerPattern); // 3 bpmLabelPropIdx = props.AddLabel("BPM :", bpm.ToString("n1"), false, CommonTooltips.BPM); // 4 props.ShowWarnings = true; UpdateWarnings(); } else { var noteLength = (patternIdx < 0 ? song.NoteLength : song.GetPatternNoteLength(patternIdx)); var notesPerBeat = (patternIdx < 0 ? song.BeatLength : song.GetPatternBeatLength(patternIdx)); var notesPerPattern = (patternIdx < 0 ? song.PatternLength : song.GetPatternLength(patternIdx)); var groove = (patternIdx < 0 ? song.Groove : song.GetPatternGroove(patternIdx)); tempoList = FamiStudioTempoUtils.GetAvailableTempos(song.Project.PalMode, notesPerBeat / noteLength); var tempoIndex = FamiStudioTempoUtils.FindTempoFromGroove(tempoList, groove); Debug.Assert(tempoIndex >= 0); tempoStrings = tempoList.Select(t => t.bpm.ToString("n1") + (t.groove.Length == 1 ? " *": "")).ToArray(); var grooveList = FamiStudioTempoUtils.GetAvailableGrooves(tempoList[tempoIndex].groove); var grooveIndex = Array.FindIndex(grooveList, g => Utils.CompareArrays(g, groove) == 0); Debug.Assert(grooveIndex >= 0); grooveStrings = grooveList.Select(g => string.Join("-", g)).ToArray(); famistudioBpmPropIdx = props.AddDropDownList("BPM : ", tempoStrings, tempoStrings[tempoIndex], CommonTooltips.BPM); // 0 notesPerBeatPropIdx = props.AddIntegerRange("Notes per Beat : ", notesPerBeat / noteLength, 1, 256, CommonTooltips.NotesPerBeat); // 1 notesPerPatternPropIdx = props.AddIntegerRange("Notes per Pattern : ", notesPerPattern / noteLength, 1, Pattern.MaxLength / noteLength, CommonTooltips.NotesPerPattern); // 2 framesPerNotePropIdx = props.AddLabel("Frames per Note :", noteLength.ToString(), false, CommonTooltips.FramesPerNote); // 3 props.ShowWarnings = true; props.BeginAdvancedProperties(); groovePropIdx = props.AddDropDownList("Groove : ", grooveStrings, grooveStrings[grooveIndex], CommonTooltips.Groove); // 4 groovePadPropIdx = props.AddDropDownList("Groove Padding : ", GroovePaddingType.Names, GroovePaddingType.Names[song.GroovePaddingMode], CommonTooltips.GroovePadding); // 5 originalNoteLength = noteLength; originalNotesPerBeat = notesPerBeat; UpdateWarnings(); } }
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); }
private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.UserInterface: { #if FAMISTUDIO_WINDOWS var scalingValues = new[] { "System", "100%", "150%", "200%" }; #elif FAMISTUDIO_MACOS var scalingValues = new[] { "System", "100%", "200%" }; #else var scalingValues = new[] { "System" }; #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.AddStringList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex]); // 0 page.AddStringList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex]); // 1 page.AddStringList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex]); // 2 page.AddStringList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex]); // 3 page.AddBoolean("Check for updates:", Settings.CheckUpdates); // 4 page.AddBoolean("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange); // 5 page.AddBoolean("Show Note Labels:", Settings.ShowNoteLabels); // 6 page.AddBoolean("Trackpad controls:", Settings.TrackPadControls); // 7 #if FAMISTUDIO_MACOS page.AddBoolean("Reverse trackpad direction:", Settings.ReverseTrackPad); // 8 page.SetPropertyEnabled(8, Settings.TrackPadControls); page.PropertyChanged += Page_PropertyChanged; #endif #if FAMISTUDIO_LINUX page.SetPropertyEnabled(0, false); #endif break; } case ConfigSection.Sound: { page.AddIntegerRange("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10); // 0 page.AddBoolean("Prevent popping on square channels:", Settings.SquareSmoothVibrato); // 1 page.AddBoolean("Mute piano roll interactions during playback:", Settings.NoDragSoungWhenPlaying); // 2 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.AddStringList("Device :", midiDevices.ToArray(), midiDevice); // 0 break; } } page.Build(); pages[(int)section] = page; return(page); }
private PropertyPage CreatePropertyPage(PropertyPage page, ExportFormat format) { var songNames = GetSongNames(); switch (format) { case ExportFormat.Wav: page.AddStringList("Song :", songNames, songNames[0]); // 0 page.AddStringList("Sample Rate :", new[] { "11025", "22050", "44100", "48000" }, "44100"); // 1 page.AddStringList("Mode :", new[] { "Loop N times", "Duration" }, "Loop N times"); // 2 page.AddIntegerRange("Loop count:", 1, 1, 10); // 3 page.AddIntegerRange("Duration (sec):", 120, 1, 1000); // 4 page.AddStringListMulti("Channels :", GetChannelNames(), null); // 5 page.SetPropertyEnabled(4, false); 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 :", Enum.GetNames(typeof(MachineType)), Enum.GetNames(typeof(MachineType))[project.PalMode ? 1 : 0]); // 3 page.AddStringListMulti(null, songNames, null); // 4 #if DEBUG page.AddStringList("Engine :", Enum.GetNames(typeof(FamitoneMusicFile.FamiToneKernel)), Enum.GetNames(typeof(FamitoneMusicFile.FamiToneKernel))[1]); // 5 #endif page.SetPropertyEnabled(3, !project.UsesExpansionAudio); break; case ExportFormat.Rom: page.AddStringList("Type :", new[] { "NES ROM", "FDS Disk" }, project.ExpansionAudio == Project.ExpansionFds ? "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 == Project.ExpansionFds); 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 :", Enum.GetNames(typeof(AssemblyFormat)), Enum.GetNames(typeof(AssemblyFormat))[0]); // 0 page.AddBoolean("Separate Files :", false); // 1 page.AddString("Song Name Pattern :", "{project}_{song}"); // 2 page.AddString("DMC Name Pattern :", "{project}"); // 3 page.AddStringListMulti(null, songNames, null); // 4 page.SetPropertyEnabled(2, false); page.SetPropertyEnabled(3, false); break; case ExportFormat.FamiTone2Sfx: case ExportFormat.FamiStudioSfx: page.AddStringList("Format :", Enum.GetNames(typeof(AssemblyFormat)), Enum.GetNames(typeof(AssemblyFormat))[0]); // 0 page.AddStringList("Mode :", Enum.GetNames(typeof(MachineType)), Enum.GetNames(typeof(MachineType))[project.PalMode ? 1 : 0]); // 1 page.AddStringListMulti(null, songNames, null); // 2 break; } page.Build(); page.PropertyChanged += Page_PropertyChanged; return(page); }
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); }