-
Notifications
You must be signed in to change notification settings - Fork 0
/
Element.cs
89 lines (75 loc) · 2.09 KB
/
Element.cs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//============================================================
// Student Number : S10203296, S10205301
// Student Name : Benedict Woo, Melvin Kee
// Module Group : T06
//============================================================
using COVIDMonitoringSystem.ConsoleApp.Utilities;
namespace COVIDMonitoringSystem.ConsoleApp.Display.Elements
{
public abstract class Element
{
private bool hidden;
private string name;
public AbstractScreen TargetScreen { get; set; }
public string Name
{
get => name;
set
{
name = value;
QueueToRerender();
}
}
public bool Hidden
{
get => hidden;
set
{
hidden = value;
OnHiding(value);
}
}
public Box BoundingBox { get; }
protected Element(string name = null)
{
BoundingBox = new Box(this);
}
public virtual void Render()
{
if (Hidden)
{
return;
}
BoundingBox.SetDrawPosition();
SelectColour();
BoundingBox.UpdateHeight(WriteToScreen());
BoundingBox.SetCursorPosition();
}
protected virtual void SelectColour()
{
ColourSelector.Default();
}
protected abstract int WriteToScreen();
protected virtual void OnHiding(bool doHiding)
{
if (!doHiding)
{
QueueToRerender();
return;
}
CHelper.ClearLines(BoundingBox.GetTop(), BoundingBox.GetBottom());
if (BoundingBox.AutoHeight)
{
BoundingBox.Height = 0;
}
}
public void QueueToRerender()
{
if (TargetScreen == null || !TargetScreen.Active)
{
return;
}
TargetScreen.AddToUpdateQueue(this);
}
}
}