Esempio n. 1
0
        void LoadFile(string filepath, bool isReloading)
        {
            // Convert file
            var filenameWE  = System.IO.Path.GetDirectoryName(filepath) + "/" + System.IO.Path.GetFileNameWithoutExtension(filepath);
            var ext         = System.IO.Path.GetExtension(filepath).ToLower().Replace(".", "");
            var newFilepath = filenameWE + ".efkmodel";

            Effekseer.Utl.ModelInformation modelInfo = new Utl.ModelInformation();
            if (modelInfo.Load(newFilepath))
            {
                if (!isReloading)
                {
                    binding.SetAbsolutePath(filepath);
                    System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));
                    return;
                }
            }
            else
            {
                // Remove invalid file
                if (System.IO.File.Exists(newFilepath))
                {
                    try
                    {
                        System.IO.File.Delete(newFilepath);
                    }
                    catch
                    {
                    }
                }
            }

            Dialog.OpenModelDialog omd = new Dialog.OpenModelDialog(modelInfo.Scale);

            if (ext == "fbx" || ext == "mqo")
            {
                omd.ShowDialog();
                if (!omd.OK)
                {
                    return;
                }
            }

            if (ext == "fbx")
            {
                var  oldFilepath = filepath;
                bool doGenerate  = false;

                if (!System.IO.File.Exists(newFilepath) ||
                    System.IO.File.GetLastWriteTime(oldFilepath) != System.IO.File.GetLastWriteTime(newFilepath) ||
                    modelInfo.Scale != omd.Magnification)
                {
                    doGenerate = true;
                }

                if (doGenerate)
                {
                    string appPath       = System.Reflection.Assembly.GetExecutingAssembly().Location;
                    string converterPath = System.IO.Path.GetDirectoryName(appPath) + "/tools/fbxToEffekseerModelConverter";

                    System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
                    info.FileName  = converterPath;
                    info.Arguments = "\"" + oldFilepath + "\" \"" + newFilepath + "\" -scale " + omd.Magnification.ToString();

                    System.Diagnostics.Process p = System.Diagnostics.Process.Start(info);
                    p.WaitForExit();
                    p.Dispose();

                    if (System.IO.File.Exists(newFilepath))
                    {
                        System.IO.File.SetLastWriteTime(newFilepath, System.IO.File.GetLastWriteTime(oldFilepath));
                    }
                }
            }

            if (ext == "mqo")
            {
                var oldFilepath = filepath;

                bool doGenerate = false;

                if (!System.IO.File.Exists(newFilepath) ||
                    System.IO.File.GetLastWriteTime(oldFilepath) != System.IO.File.GetLastWriteTime(newFilepath) ||
                    modelInfo.Scale != omd.Magnification)
                {
                    doGenerate = true;
                }

                if (doGenerate)
                {
                    string appPath       = System.Reflection.Assembly.GetExecutingAssembly().Location;
                    string converterPath = System.IO.Path.GetDirectoryName(appPath) + "/tools/mqoToEffekseerModelConverter";

                    System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
                    info.FileName  = converterPath;
                    info.Arguments = "\"" + oldFilepath + "\" \"" + newFilepath + "\" -scale " + omd.Magnification.ToString();

                    System.Diagnostics.Process p = System.Diagnostics.Process.Start(info);
                    p.WaitForExit();
                    p.Dispose();

                    if (System.IO.File.Exists(newFilepath))
                    {
                        System.IO.File.SetLastWriteTime(newFilepath, System.IO.File.GetLastWriteTime(oldFilepath));
                    }
                }
            }

            binding.SetAbsolutePath(filepath);

            System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));
        }
Esempio n. 2
0
        void LoadFile(string filepath, bool isReloading)
        {
            // Convert file
            var ext         = System.IO.Path.GetExtension(filepath).ToLower().Replace(".", "");
            var newFilepath = System.IO.Path.ChangeExtension(filepath, ".efkcurve");

            Effekseer.Utl.ModelInformation modelInfo = new Utl.ModelInformation();
            if (modelInfo.Load(newFilepath))
            {
                if (!isReloading)
                {
                    binding.SetAbsolutePath(filepath);
                    System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));
                    return;
                }
            }
            else
            {
                // Remove invalid file
                if (System.IO.File.Exists(newFilepath))
                {
                    try
                    {
                        System.IO.File.Delete(newFilepath);
                    }
                    catch
                    {
                    }
                }
            }

            Dialog.OpenModel omd = new Dialog.OpenModel(modelInfo.Scale);

            if (ext == "fbx")
            {
                omd.Show("");
            }
            else
            {
                binding.SetAbsolutePath(filepath);

                System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));

                Manager.Viewer.Reload(true);
            }

            omd.OnOK = () =>
            {
                if (ext == "fbx")
                {
                    var  oldFilepath = filepath;
                    bool doGenerate  = false;

                    if (!System.IO.File.Exists(newFilepath) ||
                        System.IO.File.GetLastWriteTime(oldFilepath) != System.IO.File.GetLastWriteTime(newFilepath) ||
                        modelInfo.Scale != omd.Magnification)
                    {
                        doGenerate = true;
                    }

                    if (doGenerate)
                    {
                        string converterPath = Manager.GetEntryDirectory() + "/tools/fbxToEffekseerCurveConverter";

                        // japanese file path is not supported.
                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Copy(oldFilepath, tempFilePath);
                            oldFilepath = tempFilePath;
                        }
                        catch
                        {
                        }


                        System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();

                        var os = System.Environment.OSVersion;
                        if (os.Platform == PlatformID.Win32NT ||
                            os.Platform == PlatformID.Win32S ||
                            os.Platform == PlatformID.Win32Windows ||
                            os.Platform == PlatformID.WinCE)
                        {
                            converterPath += ".exe";
                        }

                        if (os.Platform == PlatformID.Unix && os.Platform != PlatformID.MacOSX)
                        {
                            string pathvar = System.Environment.GetEnvironmentVariable("LD_LIBRARY_PATH");
                            info.EnvironmentVariables["LD_LIBRARY_PATH"] = pathvar + ";" + Manager.GetEntryDirectory() + "/tools/";
                        }

                        info.FileName = converterPath;

                        info.Arguments = filepath;

                        if (!System.IO.File.Exists(oldFilepath))
                        {
                            var msg = oldFilepath + " is not found.";

                            swig.GUIManager.show(msg, "Error", swig.DialogStyle.Error, swig.DialogButtons.OK);
                            return;
                        }

                        if (!System.IO.File.Exists(converterPath))
                        {
                            var msg = converterPath + " is not found.";

                            swig.GUIManager.show(msg, "Error", swig.DialogStyle.Error, swig.DialogButtons.OK);
                            return;
                        }

                        info.UseShellExecute        = false;
                        info.RedirectStandardOutput = true;
                        info.RedirectStandardInput  = false;
                        info.CreateNoWindow         = true;

                        System.Diagnostics.Process p = System.Diagnostics.Process.Start(info);

                        string outputs = p.StandardOutput.ReadToEnd();

                        p.WaitForExit();
                        p.Dispose();


                        if (System.IO.File.Exists(newFilepath))
                        {
                            System.IO.File.SetLastWriteTime(newFilepath, System.IO.File.GetLastWriteTime(oldFilepath));
                        }
                        else
                        {
                            var msg = " Failed to load. \n" + outputs;

                            swig.GUIManager.show(msg, "Error", swig.DialogStyle.Error, swig.DialogButtons.OK);
                        }

                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Delete(tempFilePath);
                        }
                        catch
                        {
                        }
                    }
                }

                binding.SetAbsolutePath(filepath);

                System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));

                Manager.Viewer.Reload(true);

                Read();
            };
        }
Esempio n. 3
0
        void LoadFile(string filepath, bool isReloading)
        {
            // Convert file
            var filenameWE  = System.IO.Path.GetDirectoryName(filepath) + "/" + System.IO.Path.GetFileNameWithoutExtension(filepath);
            var ext         = System.IO.Path.GetExtension(filepath).ToLower().Replace(".", "");
            var newFilepath = filenameWE + ".efkmodel";

            Effekseer.Utl.ModelInformation modelInfo = new Utl.ModelInformation();
            if (modelInfo.Load(newFilepath))
            {
                if (!isReloading)
                {
                    binding.SetAbsolutePath(filepath);
                    System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));
                    return;
                }
            }
            else
            {
                // Remove invalid file
                if (System.IO.File.Exists(newFilepath))
                {
                    try
                    {
                        System.IO.File.Delete(newFilepath);
                    }
                    catch
                    {
                    }
                }
            }

            Dialog.OpenModel omd = new Dialog.OpenModel(modelInfo.Scale);

            if (ext == "fbx" || ext == "mqo")
            {
                omd.Show("");
            }
            else
            {
                binding.SetAbsolutePath(filepath);

                System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));

                Manager.Viewer.Reload(true);
            }

            omd.OnOK = () =>
            {
                if (ext == "fbx")
                {
                    var  oldFilepath = filepath;
                    bool doGenerate  = false;

                    if (!System.IO.File.Exists(newFilepath) ||
                        System.IO.File.GetLastWriteTime(oldFilepath) != System.IO.File.GetLastWriteTime(newFilepath) ||
                        modelInfo.Scale != omd.Magnification)
                    {
                        doGenerate = true;
                    }

                    if (doGenerate)
                    {
                        string converterPath = Manager.GetEntryDirectory() + "/tools/fbxToEffekseerModelConverter";

                        // japanese file path is not supported.
                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Copy(oldFilepath, tempFilePath);
                            oldFilepath = tempFilePath;
                        }
                        catch
                        {
                        }


                        System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
                        info.FileName  = converterPath;
                        info.Arguments = "\"" + oldFilepath + "\" \"" + newFilepath + "\" -scale " + omd.Magnification.ToString();

                        System.Diagnostics.Process p = System.Diagnostics.Process.Start(info);
                        p.WaitForExit();
                        p.Dispose();

                        if (System.IO.File.Exists(newFilepath))
                        {
                            System.IO.File.SetLastWriteTime(newFilepath, System.IO.File.GetLastWriteTime(oldFilepath));
                        }

                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Delete(tempFilePath);
                        }
                        catch
                        {
                        }
                    }
                }

                if (ext == "mqo")
                {
                    var oldFilepath = filepath;

                    bool doGenerate = false;

                    if (!System.IO.File.Exists(newFilepath) ||
                        System.IO.File.GetLastWriteTime(oldFilepath) != System.IO.File.GetLastWriteTime(newFilepath) ||
                        modelInfo.Scale != omd.Magnification)
                    {
                        doGenerate = true;
                    }

                    if (doGenerate)
                    {
                        string converterPath = Manager.GetEntryDirectory() + "/tools/mqoToEffekseerModelConverter";

                        // japanese file path is not supported.
                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Copy(oldFilepath, tempFilePath);
                            oldFilepath = tempFilePath;
                        }
                        catch
                        {
                        }

                        System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
                        info.FileName  = converterPath;
                        info.Arguments = "\"" + oldFilepath + "\" \"" + newFilepath + "\" -scale " + omd.Magnification.ToString();

                        System.Diagnostics.Process p = System.Diagnostics.Process.Start(info);
                        p.WaitForExit();
                        p.Dispose();

                        if (System.IO.File.Exists(newFilepath))
                        {
                            System.IO.File.SetLastWriteTime(newFilepath, System.IO.File.GetLastWriteTime(oldFilepath));
                        }

                        try
                        {
                            string tempFilePath = Path.GetTempPath() + System.IO.Path.GetFileName(filepath);
                            System.IO.File.Delete(tempFilePath);
                        }
                        catch
                        {
                        }
                    }
                }

                binding.SetAbsolutePath(filepath);

                System.IO.Directory.SetCurrentDirectory(System.IO.Path.GetDirectoryName(filepath));

                Manager.Viewer.Reload(true);
            };
        }