コード例 #1
0
ファイル: Program.cs プロジェクト: nanase/sitrine
        public SampleStory(SitrineWindow window)
            : base(window)
        {
            #region Initalize
            var file = File.ReadAllLines("resource/message.txt");
            var handle = new HandleStore("resource/sound.txt");
            this.InitalizeMessage(window.TextOptions, new Size(320, 80));

            Message.Interval = 2;
            Message.ProgressCount = 2;
            Message.Position = new PointF(0, 160);
            Message.TextureUpdate = (s, e2) => Music.PushNow(handle["message_progress"]);

            Screen.BackgroundColor = Color.FromArgb(10, 59, 118);
            Screen.ForegroundColor = Color.Black;
            #endregion

            Process.Loop(e => e.Keyboard.WaitFor(window.ToggleDebugVisibility, Key.F3));

            Music.Push(handle["message_init"])
                 .LoadPreset("resource/ux_preset.xml")
                 .AddLayer("music", Enumerable.Range(1, 23).Except(new[] { 16 }));

            Screen.FadeIn(5.0, EasingFunctions.QuadEaseOut);
            Process.Wait(1.0);

            for (int i = 0; i < file.Length; i += 4)
                Message.Show(String.Join("\n", file.Skip(i).Take(4)));
        }
コード例 #2
0
        /// <summary>
        /// ストーリーボードが動作する SitrineWindow オブジェクトを指定して新しい Storyboard クラスのインスタンスを初期化します。
        /// </summary>
        /// <param name="Window">動作対象の SitrineWindow オブジェクト。</param>
        public Storyboard(SitrineWindow window)
        {
            if (window == null)
            {
                throw new ArgumentNullException("window");
            }

            this.Actions  = new LinkedList <Action>();
            this.Listener = new List <Func <bool> >();
            this.AutoEnd  = true;
            this.Window   = window;
            this.waitTime = 0;

            this.process  = new ProcessEvent(this, this.Window);
            this.texture  = new TextureEvent(this, this.Window);
            this.keyboard = new KeyboardEvent(this, this.Window);
            this.music    = new MusicEvent(this, this.Window);
            this.screen   = new ScreenEvent(this, this.Window);

            Trace.WriteLine("Storyboard", "Init");
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: nanase/sitrine
        static void Main()
        {
            using (FontLoader font = new FontLoader("font/VL-Gothic-Regular.ttf"))
            using (FontLoader debugFont = new FontLoader("font/88 Zen.ttf"))
            {
                TextOptions textOptions = new TextOptions(font.Family, 12, 17)
                {
                    ShadowIndex = 1,
                    DrawShadow = true,
                    Antialiasing = true
                };
                textOptions.SetSolidBrushes(Color.White, Color.Black, Color.OrangeRed);

                TextOptions debugTextOptions = new TextOptions(debugFont.Family, 8, 8)
                {
                    ShadowIndex = 1,
                    DrawShadow = true,
                };
                debugTextOptions.SetSolidBrushes(Color.White, Color.Black);

                WindowOptions options = new WindowOptions()
                {
                    Title = "Sample",
                    TargetSize = new Size(320, 240),
                    WindowSize = new Size(640, 480),
                    DebugTextOptions = debugTextOptions,
                    TextOptions = textOptions
                };

                using (SitrineWindow window = new SitrineWindow(options))
                {
                    window.AddStoryboard(new SampleStory(window));
                    window.Run(30.0, 60.0);
                }
            }
        }
コード例 #4
0
ファイル: Storyboard.cs プロジェクト: nanase/sitrine
        /// <summary>
        /// ストーリーボードが動作する SitrineWindow オブジェクトを指定して新しい Storyboard クラスのインスタンスを初期化します。
        /// </summary>
        /// <param name="Window">動作対象の SitrineWindow オブジェクト。</param>
        public Storyboard(SitrineWindow window)
        {
            if (window == null)
                throw new ArgumentNullException("window");

            this.Actions = new LinkedList<Action>();
            this.Listener = new List<Func<bool>>();
            this.AutoEnd = true;
            this.Window = window;
            this.waitTime = 0;

            this.process = new ProcessEvent(this, this.Window);
            this.texture = new TextureEvent(this, this.Window);
            this.keyboard = new KeyboardEvent(this, this.Window);
            this.music = new MusicEvent(this, this.Window);
            this.screen = new ScreenEvent(this, this.Window);

            Trace.WriteLine("Storyboard", "Init");
        }