コード例 #1
0
ファイル: Program.cs プロジェクト: saintedlama/RemarkedUp
        static void Main(string[] args)
        {
            int width = 16;
            bool help = false;
            bool init = false;
            bool clean = false;
            string style = null;

            var p = new OptionSet {
               	            { "w:|width:", (int v) => width = v },
                { "i|init", v => init = v != null },
                { "s|style:", v => style = v},
                { "c|clean", v => clean = v != null },
               	            { "h|?|help", v => help = v != null }
            };

            List<string> extra = p.Parse(args);

            if (help)
            {
                ShowHelp(p);
                return;
            }

            if (clean)
            {
                var cleanCmd = new CleanCommand();
                cleanCmd.Execute();
            }

            if (init)
            {
                var initCmd = new InitCommand(style);
                initCmd.Execute();
            }

            if (extra.Count > 0)
            {
                var generateCmd = new GenerateCommand(new GenerateSpecification
                {
                    FileFilter = extra,
                    ColumnWidth = width
                });

                generateCmd.Execute();
            }
            else
            {
                // TODO: In case now command created -> Show help, otherwise process!
                ShowHelp(p);
                return;
            }
        }