forked from cgorringe/ft-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flaschen_np.py
89 lines (76 loc) · 3.23 KB
/
flaschen_np.py
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
# -*- mode: python; c-basic-offset: 2; indent-tabs-mode: nil; -*-
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation version 2.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://gnu.org/licenses/gpl-2.0.txt>
import socket
import numpy as np
class FlaschenNP(object):
'''A Framebuffer display interface that sends a frame via UDP.
JBY: modified to use numpy as storage backend.'''
def __init__(self, host, port, width, height, layer=0, transparent=False):
'''
Args:
host: The flaschen taschen server hostname or ip address.
port: The flaschen taschen server port number.
width: The width of the flaschen taschen display in pixels.
height: The height of the flaschen taschen display in pixels.
layer: The layer of the flaschen taschen display to write to.
transparent: If true, black(0, 0, 0) will be transparent and show the layer below.
'''
self.width = width
self.height = height
self.layer = layer
self.transparent = transparent
self._sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self._sock.connect((host, port))
header = ''.join(["P6\n",
"%d %d\n" % (self.width, self.height),
"255\n"])
footer = ''.join(["0\n",
"0\n",
"%d\n" % self.layer])
self._bytedata = bytearray(width * height * 3 + len(header) + len(footer))
self._bytedata[0:len(header)] = header
self._bytedata[-1 * len(footer):] = footer
self.data = np.zeros((height, width, 3), 'uint8')
self._header_len = len(header)
def set(self, x, y, color):
'''Set the pixel at the given coordinates to the specified color.
Args:
x: x offset of the pixel to set
y: y offset of the piyel to set
color: A 3 tuple of (r, g, b) color values, 0-255
'''
if x >= self.width or y >= self.height or x < 0 or y < 0:
return
if color == (0, 0, 0) and not self.transparent:
color = (1, 1, 1)
#offset = (x + y * self.width) * 3 + self._header_len
#self._data[offset] = color[0]
#self._data[offset + 1] = color[1]
#self._data[offset + 2] = color[2]
self.data[y, x, 0] = color[0]
self.data[y, x, 1] = color[1]
self.data[y, x, 2] = color[2]
def ijset(self, ii, jj, color):
return self.set(jj, ii, color)
def zero(self):
self.data[:] = 0
def send(self):
'''Send the updated pixels to the display.'''
#self._data = bytearray(width * height * 3 + len(header) + len(footer))
#self._data[0:len(header)] = header
#self._data[-1 * len(footer):] = footer
self._bytedata[self._header_len:self._header_len + self.data.nbytes] = self.data.tobytes()
#bytedata = bytearray(self.width * self.height * 3 + len(self.header) + len(self.footer))
#bytedata[0:len(self.header
self._sock.send(self._bytedata)