Esempio n. 1
0
        public void WriteSavedModelJson(ModelsData.Model model)
        {
            Logger.Trace(System.Reflection.MethodBase.GetCurrentMethod().Name);
            if (!Directory.Exists(@"configuration"))
            {
                Directory.CreateDirectory(@"configuration");
            }
            string json = JsonConvert.SerializeObject(model);

            File.WriteAllText(@"configuration\savedModel.json", json);
            Logger.Trace("Updated savedModel.json: " + json);
        }
Esempio n. 2
0
        private void addModelButton_Click(object sender, EventArgs e)
        {
            ModelsData.Model newModel = new ModelsData.Model();

            ManageModelForm addEditModelForm = new ManageModelForm(newModel, ManageModelForm.CallType.Add, -1);

            addEditModelForm.ShowDialog();
            if (addEditModelForm.DialogResult == DialogResult.OK)
            {
                MainForm.modelsData.modelList.Add(addEditModelForm.GetModel());
                MainForm.modelsJson.WriteModelsJson();
            }
        }
Esempio n. 3
0
 public ModelsData.Model ReadSavedModelJson()
 {
     Logger.Trace(System.Reflection.MethodBase.GetCurrentMethod().Name);
     if (File.Exists(@"configuration\models.json"))
     {
         string json = File.ReadAllText(@"configuration\savedModel.json");
         model = JsonConvert.DeserializeObject <ModelsData.Model>(json);
     }
     else
     {
         WriteSavedModelJson(model);
     }
     return(model);
 }
Esempio n. 4
0
        private void loadSavedModelButton_Click(object sender, EventArgs e)
        {
            string savedModelName = "";

            if (!String.IsNullOrEmpty(model.modelName))
            {
                savedModelName = model.modelName;
            }
            model = savedModelJson.ReadSavedModelJson();
            if (!String.IsNullOrEmpty(savedModelName))
            {
                model.modelName = savedModelName;
            }
            NewModelActions();
        }
Esempio n. 5
0
        private void EditModel()
        {
            if (modelsListBox.SelectedIndex >= 0)
            {
                //convert to json e deserialize to create a new fresh object
                string           json      = Newtonsoft.Json.JsonConvert.SerializeObject(MainForm.modelsData.modelList[modelsListBox.SelectedIndex]);
                ModelsData.Model editModel = Newtonsoft.Json.JsonConvert.DeserializeObject <ModelsData.Model>(json);

                ManageModelForm addEditModelForm = new ManageModelForm(editModel, ManageModelForm.CallType.Edit, modelsListBox.SelectedIndex);
                addEditModelForm.ShowDialog();
                if (addEditModelForm.DialogResult == DialogResult.OK)
                {
                    MainForm.modelsData.modelList[modelsListBox.SelectedIndex] = addEditModelForm.GetModel();
                    MainForm.modelsJson.WriteModelsJson();
                }
            }
        }
Esempio n. 6
0
 public ManageModelForm(ModelsData.Model inputModel, CallType callType, int index)
 {
     Logger.Trace(System.Reflection.MethodBase.GetCurrentMethod().Name);
     loadingForm = true;
     InitializeComponent();
     model                  = inputModel;
     this.callType          = callType;
     this.currentModelIndex = index;
     localeManager.SetLocale(this);
     originalModelJson = Newtonsoft.Json.JsonConvert.SerializeObject(model);
     originalModelName = model.modelName;
     RestoreWindowPositionAndSize();
     NewModelActions();
     loadingForm = false;
     if (!model.customCommand)
     {
         GenerateModel();
     }
     Application.DoEvents();
 }
Esempio n. 7
0
        public string GenerateModel(ManageModelForm manageModelForm)
        {
            Logger.Trace(System.Reflection.MethodBase.GetCurrentMethod().Name);

            model = manageModelForm.GetModel();

            string command = "";

            // mkvmerge Path
            command += "\"||mkvmergePath||\" ";

            // --output
            command += "--output \"||outputFileFullPath||\" ";

            // work on track0 tracks
            command += GenerateTrackString(0);

            // work on other tracks
            bool done       = false;
            int  fileNumber = 0;

            while (!done)
            {
                fileNumber++;
                bool found = false;
                foreach (ModelsData.Model.Track track in model.trackList)
                {
                    if (track.originalFileNumber == fileNumber)
                    {
                        found = true;
                        break;
                    }
                }
                if (found)
                {
                    command += GenerateTrackString(fileNumber);
                }
                else
                {
                    done = true;
                }
            }

            // --title
            if (model.customOutputFileArguments.emptyTitle)
            {
                command += "--title \"\" ";
            }

            // Add attachments
            if (model.customOutputFileArguments.addAttachments)
            {
                command += "||attachments|| ";
            }

            // Add chapters
            if (model.customOutputFileArguments.addChapters)
            {
                command += "||chapters|| ";
            }

            // add user defined custom output arguments
            if (!string.IsNullOrEmpty(model.customOutputFileArguments.text))
            {
                command += model.customOutputFileArguments.text + " ";
            }

            // --track-order
            command += "--track-order ";
            int i = 0;

            foreach (ModelsData.Model.Track track in model.trackList)
            {
                if (i == 0)
                {
                    command += track.originalFileNumber.ToString() + ':' + track.originalFileTrackPosition.ToString();
                }
                else
                {
                    command += "," + track.originalFileNumber.ToString() + ':' + track.originalFileTrackPosition.ToString();
                }
                i++;
            }
            return(command);
        }
Esempio n. 8
0
        public bool CheckModel(ManageModelForm manageModelForm)
        {
            Logger.Trace(System.Reflection.MethodBase.GetCurrentMethod().Name);

            ModelsData.Model model  = manageModelForm.GetModel();
            Boolean          result = true;

            errorList = "";
            int errorIndex = 0;

            //model name must be specified
            if (String.IsNullOrEmpty(model.modelName))
            {
                errorIndex += 1;
                AddError(Properties.Resources.ErrorLabel + " n." + errorIndex + ": " + Properties.Resources.DigitModelName);
                result = false;
            }
            for (int i = 0; i < MainForm.modelsData.modelList.Count; i++)
            {
                // if the model where are checking is already in model list
                if (MainForm.modelsData.modelList[i].modelName == model.modelName)
                {
                    // if found but where are editing the same model, is ok
                    if (manageModelForm.callType == ManageModelForm.CallType.Edit && i == manageModelForm.currentModelIndex)
                    {
                    }
                    else
                    {
                        errorIndex += 1;
                        AddError(Properties.Resources.ErrorLabel + " n." + errorIndex + ": " + Properties.Resources.UseDifferentModelName + " (" + model.modelName + ")");
                        result = false;
                    }
                }
            }
            if (!model.customCommand)
            {
                // at least a track need to be inserted
                if (model.trackList.Count == 0)
                {
                    errorIndex += 1;
                    AddError(Properties.Resources.ErrorLabel + " n." + errorIndex + ": " + Properties.Resources.AddTrackOrUseCustomModel);

                    result = false;
                }
                Boolean track0 = false;
                for (int i = 0; i < model.trackList.Count; i++)
                {
                    if (model.trackList[i].originalFileNumber == 0)
                    {
                        track0 = true;
                    }
                }
                // at least a track from file 0 need to be in track list
                if (!track0)
                {
                    errorIndex += 1;
                    AddError(Properties.Resources.ErrorLabel + " n." + errorIndex + ": " + Properties.Resources.AddTrackFromFileNumber0);
                    result = false;
                }
                if (model.customInputFileArguments.noAttachments && model.customOutputFileArguments.addAttachments)
                {
                    errorIndex += 1;
                    AddError(Properties.Resources.ErrorLabel + " n." + errorIndex + ": " + Properties.Resources.UseOneAttachmentFlag);

                    result = false;
                }
            }
            return(result);
        }