Beispiel #1
0
 static string ReplaceVars(string template, SwfCompiler sfc, bool hasInstallator)
 {
     return(template.ReplaceVars(RVScheme.Ant,
                                 "title", sfc.Title,
                                 "application", sfc.Application,
                                 "version_major", sfc.PlayerVersion.ToString(),
                                 "version_minor", "0",
                                 "version_revision", "0",
                                 //"expressInstallSwf", (hasInstallator ? PlayerProductInstallSwf : ""),
                                 "expressInstallSwf", "",
                                 "swf", Path.GetFileNameWithoutExtension(sfc.OutputPath),
                                 "width", sfc.Width.ToString(CultureInfo.InvariantCulture),
                                 "height", sfc.Height.ToString(CultureInfo.InvariantCulture),
                                 "bgcolor", sfc.HexBgColor));
 }
Beispiel #2
0
        static void BuildCore(SwfCompiler sfc, string outdir)
        {
            string src = GlobalSettings.Dirs.HtmlTemplates;

            if (!Directory.Exists(src))
            {
                //Console.WriteLine("No 'HTML Templates' directory");
                return;
            }

            string templateName = sfc.Options.HtmlTemplate;

            if (string.IsNullOrEmpty(templateName))
            {
                templateName = PfxConfig.Default.Html.Template;
            }

            src = Path.Combine(src, templateName);
            if (!Directory.Exists(src))
            {
                //Console.WriteLine("No {0} template", templateName);
                return;
            }

            Directory.CreateDirectory(outdir);
            CopyTo(src, outdir);

            string swfname      = Path.GetFileNameWithoutExtension(sfc.OutputPath);
            string templatePath = Path.Combine(outdir, "index.template.html");
            string htmlPath     = Path.Combine(outdir, swfname + ".html");

            File.Copy(templatePath, htmlPath, true);
            File.Delete(templatePath);

            string text = File.ReadAllText(htmlPath);

            string flashInstallSwf = Path.Combine(outdir, PlayerProductInstallSwf);
            bool   hasInstallator  = File.Exists(flashInstallSwf);

            text = ReplaceVars(text, sfc, hasInstallator);
            File.WriteAllText(htmlPath, text);
        }
Beispiel #3
0
        public static void Deploy(SwfCompiler sfc)
        {
            //Console.WriteLine("Deploy HTML teplate");

            string outdir = sfc.OutputDirectory;

            if (string.IsNullOrEmpty(outdir))
            {
                //Console.WriteLine("No output directory");
                return;
            }

            try
            {
                BuildCore(sfc, outdir);
            }
            catch (Exception exc)
            {
                //TODO: Report Warning!!!
                Console.WriteLine("warning PFC9999: Unable to deply HTML template");
            }
        }