aboutsummaryrefslogtreecommitdiff
path: root/clippy.py
diff options
context:
space:
mode:
authorjaseg <code@jaseg.net>2016-05-27 20:15:20 +0200
committerjaseg <code@jaseg.net>2016-05-27 20:15:20 +0200
commit7ab239d4924964d3369a998fde40d385a66119cb (patch)
tree3f563f8530a7f7983b3bc4e18f16990355c7c7ab /clippy.py
parent4e5d910e5b7e51cd01447e909480f23b4fe0be75 (diff)
downloadclippy-7ab239d4924964d3369a998fde40d385a66119cb.tar.gz
clippy-7ab239d4924964d3369a998fde40d385a66119cb.tar.bz2
clippy-7ab239d4924964d3369a998fde40d385a66119cb.zip
Add pixelflut repetitions
Diffstat (limited to 'clippy.py')
-rwxr-xr-xclippy.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/clippy.py b/clippy.py
index 5d81252..192b117 100755
--- a/clippy.py
+++ b/clippy.py
@@ -60,22 +60,24 @@ class Display:
return np.frombuffer(Display.do_gamma(resize_image(img, displaysize), 0.5).convert('1').tobytes(), dtype='1b')
class Pixelflut:
- def __init__(self, host, port, x, y, w, h):
+ def __init__(self, host, port, x, y, w, h, reps):
self.host, self.port = host.encode(), port
self.x, self.y = x, y
self.w, self.h = w, h
+ self.reps = reps
self.dbuf = np.zeros(w*h*4, dtype=np.uint8)
self.so = ctypes.CDLL('./pixelflut.so')
self.sock = None
def sendframe(self, idx):
- if self.sock is None:
- while self.sock is None or self.sock < 0:
- time.sleep(1)
- self.sock = self.so.cct(self.host, self.port)
- if self.so.sendframe(self.sock, idx, self.w, self.h, self.x, self.y):
- self.so.discct(self.sock)
- self.sock = None
+ for _ in range(self.reps):
+ if self.sock is None:
+ while self.sock is None or self.sock < 0:
+ time.sleep(1)
+ self.sock = self.so.cct(self.host, self.port)
+ if self.so.sendframe(self.sock, idx, self.w, self.h, self.x, self.y):
+ self.so.discct(self.sock)
+ self.sock = None
def encode_image(self, img):
frame = np.array(resize_image(img, (self.w, self.h), blackbg=False)).reshape(self.w*self.h*4)
@@ -187,9 +189,9 @@ if __name__ == '__main__':
host, port = target.split(':')
port = int(port)
x, y, *_r = params[0].split(',') if params else (0, 0, None)
- w, h = _r if _r else (320, 240)
- x, y, w, h = map(int, (x, y, w, h))
- pf = Pixelflut(host, port, x, y, w, h) if args.pixelflut else None
+ w, h, reps = _r if _r else (320, 240)
+ x, y, w, h, reps = map(int, (x, y, w, h, reps))
+ pf = Pixelflut(host, port, x, y, w, h, reps) if args.pixelflut else None
else:
pf = None
agent = Agent(agent_path)