-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
595 lines (595 loc) · 15.8 KB
/
schema.json
File metadata and controls
595 lines (595 loc) · 15.8 KB
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Configuration",
"type": "object",
"properties": {
"overlay": {
"description": "Optional screen which is overlaid always on top of the other screen",
"anyOf": [
{
"$ref": "#/$defs/Overlay"
},
{
"type": "null"
}
]
},
"screen": {
"description": "Array of screens to display. For now only the first screen is actually read.",
"$ref": "#/$defs/Screen"
},
"text_styles": {
"description": "Map of text styles",
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/TextStyle"
}
}
},
"required": [
"screen",
"text_styles"
],
"$defs": {
"Alignment": {
"type": "string",
"enum": [
"Left",
"Center",
"Right"
]
},
"Duration": {
"type": "object",
"properties": {
"nanos": {
"type": "integer",
"format": "uint32",
"minimum": 0
},
"secs": {
"type": "integer",
"format": "uint64",
"minimum": 0
}
},
"required": [
"secs",
"nanos"
]
},
"Element": {
"oneOf": [
{
"description": "Display a text element at the given position",
"type": "object",
"properties": {
"Text": {
"type": "object",
"properties": {
"align": {
"description": "How to align the text",
"anyOf": [
{
"$ref": "#/$defs/Alignment"
},
{
"type": "null"
}
]
},
"position": {
"description": "Position of the text. If not specified will be 0,0.\nThis is useful if this item is added nested in a layout",
"$ref": "#/$defs/Point"
},
"style": {
"description": "One of the styles from the text_styles map",
"type": "string"
},
"text": {
"description": "The text that should be displayed",
"type": "string"
}
},
"required": [
"style",
"text",
"position"
]
}
},
"additionalProperties": false,
"required": [
"Text"
]
},
{
"description": "Display a sprite at the given position",
"type": "object",
"properties": {
"Sprite": {
"type": "object",
"properties": {
"center": {
"description": "Center the sprite around a given point",
"anyOf": [
{
"$ref": "#/$defs/Point"
},
{
"type": "null"
}
]
},
"name": {
"description": "Name of the sprite. Must exist in the sprite directory. Does not include the file extension.",
"type": "string"
},
"position": {
"description": "Position of the sprite. If not specified will be 0,0.\nThis is useful if this item is added nested in a layout",
"$ref": "#/$defs/Point"
}
},
"required": [
"position",
"name"
]
}
},
"additionalProperties": false,
"required": [
"Sprite"
]
},
{
"description": "Draw a line",
"type": "object",
"properties": {
"Line": {
"type": "object",
"properties": {
"color": {
"description": "Color of the line",
"type": [
"string",
"null"
]
},
"end": {
"description": "End of the line",
"$ref": "#/$defs/Point"
},
"start": {
"description": "Start of the line",
"$ref": "#/$defs/Point"
},
"stroke": {
"description": "Width of the line",
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0
}
},
"required": [
"start",
"end"
]
}
},
"additionalProperties": false,
"required": [
"Line"
]
},
{
"type": "object",
"properties": {
"Polyline": {
"type": "object",
"properties": {
"color": {
"description": "Color of the line",
"type": [
"string",
"null"
]
},
"points": {
"description": "Points of the polyline",
"type": "array",
"items": {
"$ref": "#/$defs/Point"
}
},
"stroke": {
"description": "Width of the line",
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0
}
},
"required": [
"points"
]
}
},
"additionalProperties": false,
"required": [
"Polyline"
]
},
{
"type": "object",
"properties": {
"Rectangle": {
"type": "object",
"properties": {
"fill_color": {
"description": "Fill color",
"type": [
"string",
"null"
]
},
"rounded_corners": {
"description": "Corner radi of a rounded rectangle",
"anyOf": [
{
"$ref": "#/$defs/RectangleCorners"
},
{
"type": "null"
}
]
},
"size": {
"description": "width of the rectangle",
"$ref": "#/$defs/Size"
},
"stroke": {
"description": "Stroke width of the rectangles stroke",
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0
},
"stroke_color": {
"description": "Color of the rectangle stroke",
"type": [
"string",
"null"
]
},
"top_left": {
"description": "top left position of the rectangle",
"$ref": "#/$defs/Point"
}
},
"required": [
"top_left",
"size"
]
}
},
"additionalProperties": false,
"required": [
"Rectangle"
]
}
]
},
"FontName": {
"type": "string",
"enum": [
"Font4X6",
"Font5X7",
"Font5X8",
"Font6X9",
"Font6X10",
"Font6X12",
"Font6X13",
"Font6X13Bold",
"Font6X13Italic",
"Font7X13",
"Font7X13Bold",
"Font7X13Italic",
"Font7X14",
"Font7X14Bold",
"Font8X13",
"Font8X13Bold",
"Font8X13Italic",
"Font9X15",
"Font9X15Bold",
"Font9X18",
"Font9X18Bold",
"Font10X20",
"Profont7",
"Profont9",
"Profont10",
"Profont12",
"Profont14",
"Profont18",
"Profont24"
]
},
"Overlay": {
"description": "An overlay is always drawn after the main screen, so \"over\" it.\nBut because of animations moving items around a user must make sure\nto fill the background of their overlay themselves as otherwise elements\nof the screen underneath it may stay behind.\n\nThis design decision was made to allow very complex overlays, not just\na single rectangular part of the screen",
"type": "object",
"properties": {
"elements": {
"description": "Array of elements to display on the screen",
"type": "array",
"items": {
"$ref": "#/$defs/Element"
}
}
},
"additionalProperties": false,
"required": [
"elements"
]
},
"Point": {
"type": "object",
"properties": {
"x": {
"description": "X position of the point",
"type": "integer",
"format": "int32",
"maximum": 192,
"minimum": 0
},
"y": {
"description": "Y position of the point",
"type": "integer",
"format": "int32",
"maximum": 96,
"minimum": 0
}
},
"required": [
"x",
"y"
]
},
"RectangleCorners": {
"oneOf": [
{
"type": "object",
"properties": {
"Uniform": {
"$ref": "#/$defs/Size"
}
},
"additionalProperties": false,
"required": [
"Uniform"
]
},
{
"type": "object",
"properties": {
"Different": {
"type": "object",
"properties": {
"bottom_left": {
"anyOf": [
{
"$ref": "#/$defs/Size"
},
{
"type": "null"
}
]
},
"bottom_right": {
"anyOf": [
{
"$ref": "#/$defs/Size"
},
{
"type": "null"
}
]
},
"top_left": {
"anyOf": [
{
"$ref": "#/$defs/Size"
},
{
"type": "null"
}
]
},
"top_right": {
"anyOf": [
{
"$ref": "#/$defs/Size"
},
{
"type": "null"
}
]
}
}
}
},
"additionalProperties": false,
"required": [
"Different"
]
}
]
},
"Screen": {
"type": "object",
"properties": {
"canvas_size": {
"description": "size of the virtual canvas that is drawn to the display",
"$ref": "#/$defs/Size"
},
"elements": {
"description": "Array of elements to display on the screen",
"type": "array",
"items": {
"$ref": "#/$defs/Element"
}
},
"screen_size": {
"description": "size of the physical screen in pixels (width, height).",
"$ref": "#/$defs/Size"
},
"scroll_animation": {
"description": "Scrolling of the screen",
"$ref": "#/$defs/ScrollAnimation"
}
},
"additionalProperties": false,
"required": [
"elements",
"scroll_animation",
"screen_size",
"canvas_size"
]
},
"ScrollAnimation": {
"oneOf": [
{
"description": "Not animated",
"type": "string",
"const": "Still"
},
{
"description": "Scroll the screen from the top to the bottom.\nOnce reaching the bottom it will reset to the top without scrolling",
"type": "object",
"properties": {
"TopToBottom": {
"type": "object",
"properties": {
"animation_tick": {
"description": "Time between scrolling one pixel",
"$ref": "#/$defs/Duration"
},
"starting_delay": {
"description": "Delay before the screen will start scrolling down",
"$ref": "#/$defs/Duration"
}
},
"additionalProperties": false,
"required": [
"starting_delay",
"animation_tick"
]
}
},
"additionalProperties": false,
"required": [
"TopToBottom"
]
},
{
"description": "Scroll the screen from the top to the bottom, then back up.",
"type": "object",
"properties": {
"DownAndUp": {
"type": "object",
"properties": {
"animation_tick": {
"description": "Time between scrolling one pixel",
"$ref": "#/$defs/Duration"
},
"bottom_delay": {
"description": "Delay at the bottom of the screen before scrolling back up",
"$ref": "#/$defs/Duration"
},
"top_delay": {
"description": "Delay at the top of the screen before scrolling down",
"$ref": "#/$defs/Duration"
}
},
"additionalProperties": false,
"required": [
"top_delay",
"bottom_delay",
"animation_tick"
]
}
},
"additionalProperties": false,
"required": [
"DownAndUp"
]
}
]
},
"Size": {
"type": "object",
"properties": {
"height": {
"type": "integer",
"format": "uint32",
"minimum": 0
},
"width": {
"type": "integer",
"format": "uint32",
"minimum": 0
}
},
"required": [
"width",
"height"
]
},
"TextStyle": {
"type": "object",
"properties": {
"background_color": {
"description": "Background color of the font",
"type": [
"string",
"null"
],
"pattern": "^[0-9a-fA-F]{6}$"
},
"font": {
"description": "Font to use for the text",
"$ref": "#/$defs/FontName"
},
"strikethrough": {
"description": "Wether to strikethrough the text or not",
"type": [
"boolean",
"null"
]
},
"text_color": {
"description": "Foreground color of the text",
"type": "string",
"pattern": "^[0-9a-fA-F]{6}$"
},
"underline": {
"description": "Wether to underline the text or not",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false,
"required": [
"text_color",
"font"
]
}
}
}