aboutsummaryrefslogtreecommitdiff
blob: 6fbfebcf8176e888c7bb6603f3913c398e9ced6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using System.Collections.Generic;
using KukaPizza.Controllers;
using KukaPizza.Models;

namespace KukaPizza.Views
{
    public class OrderPizzaStep3View : View
    {
        private OrderPizzaController _controller;

        public OrderPizzaStep3View(OrderPizzaController controller)
        {
            _controller = controller;
            Init(_controller);
        }

        protected override void Draw()
        {
            Console.Clear();
            Console.Write(
@"================================================================================
    Step 3. Choose pizza size
================================================================================

    1. Small
    2. Medium
    3. Large

");
            Console.WriteLine($"    0. Go back");
            Console.Write($"\nChoose number [0-3]: ");
        }

        protected override void Interact()
        {
            string choice = "";

            do
            {
                Console.CursorVisible = true;
                choice = Console.ReadLine();
                Console.CursorVisible = false;
                
                if (choice == "") choice = "-1";

                int choiceInt = Int32.Parse(choice);
                if (choiceInt > 0 && choiceInt < 4)
                {
                    _controller.ChooseSize(choiceInt);
                    NavigateTo(typeof(OrderPizzaStep4View));
                }

                Draw();
            } while (choice != "0");
        }
    }
}