-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathMatrixGraphics.cs
184 lines (160 loc) · 5.43 KB
/
MatrixGraphics.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections;
using System.Threading;
namespace Iot.Device.Max7219
{
/// <summary>
/// Graphical functions for a MAX7219 device
/// </summary>
public class MatrixGraphics
{
private readonly Max7219 _device;
/// <summary>
/// Constructs MatrixGraphics instance
/// </summary>
/// <param name="device">Max7219 device</param>
/// <param name="font">Font to use for drawing text</param>
public MatrixGraphics(Max7219 device, IFont font)
{
_device = device ?? throw new ArgumentNullException(nameof(device));
Font = font ?? throw new ArgumentNullException(nameof(font));
}
/// <summary>
/// Font used for drawing text
/// </summary>
public IFont Font { get; set; }
/// <summary>
/// Writes a char to the given device with the specified font.
/// </summary>
public void WriteLetter(int deviceId, char chr, bool flush = true)
{
var charBytes = Font[chr];
int end = Math.Min(charBytes.Count, Max7219.NumDigits);
for (int col = 0; col < end; col++)
{
_device[new DeviceIdDigit(deviceId, col)] = charBytes[col];
}
if (flush)
{
_device.Flush();
}
}
/// <summary>
/// Scrolls the underlying buffer (for all cascaded devices) up one pixel
/// </summary>
public void ScrollUp(bool flush = true)
{
for (var i = 0; i < _device.Length; i++)
{
_device[i] = (byte)(_device[i] >> 1);
}
if (flush)
{
_device.Flush();
}
}
/// <summary>
/// Scrolls the underlying buffer (for all cascaded devices) down one pixel
/// </summary>
public void ScrollDown(bool flush = true)
{
for (var i = 0; i < _device.Length; i++)
{
_device[i] = (byte)((_device[i] << 1) & 0xff);
}
if (flush)
{
_device.Flush();
}
}
/// <summary>
/// Scrolls the underlying buffer (for all cascaded devices) to the left
/// </summary>
public void ScrollLeft(byte value, bool flush = true)
{
for (var i = 1; i < _device.Length; i++)
{
_device[i - 1] = _device[i];
}
_device[_device.Length - 1] = value;
if (flush)
{
_device.Flush();
}
}
/// <summary>
/// Scrolls the underlying buffer (for all cascaded devices) to the right
/// </summary>
public void ScrollRight(byte value, bool flush = true)
{
for (var i = _device.Length - 1; i > 0; i--)
{
_device[i] = _device[i - 1];
}
_device[0] = value;
if (flush)
{
_device.Flush();
}
}
/// <summary>
/// Shows a message on the device.
/// If it's longer then the total width (or <see paramref="alwaysScroll"/> == true),
/// it transitions the text message across the devices from right-to-left.
/// </summary>
public void ShowMessage(string text, int delayInMilliseconds = 50, bool alwaysScroll = false)
{
// Original code uses Linq
// IEnumerable<ListByte> textCharBytes = text.Select(chr => Font[chr]);
// int textBytesLength = textCharBytes.Sum(x => x.Count) + text.Length - 1;
ArrayList textCharBytes = new ArrayList();
int textBytesLength = 0;
foreach (char car in text)
{
ListByte font = Font[car];
textCharBytes.Add(font);
textBytesLength += font.Count;
}
textBytesLength += text.Length - 1;
bool scroll = alwaysScroll || textBytesLength > _device.Length;
if (scroll)
{
var pos = _device.Length - 1;
_device.ClearAll(false);
foreach (ListByte arr in textCharBytes)
{
foreach (byte b in arr)
{
ScrollLeft(b, true);
Thread.Sleep(delayInMilliseconds);
}
ScrollLeft(0, true);
Thread.Sleep(delayInMilliseconds);
}
for (; pos > 0; pos--)
{
ScrollLeft(0, true);
Thread.Sleep(delayInMilliseconds);
}
}
else
{
// calculate margin to display text centered
var margin = (_device.Length - textBytesLength) / 2;
_device.ClearAll(false);
var pos = margin;
foreach (ListByte arr in textCharBytes)
{
foreach (byte b in arr)
{
_device[pos++] = b;
}
pos++;
}
_device.Flush();
}
}
}
}