2018-03-31 10:10:00 +00:00
|
|
|
import socket
|
|
|
|
import random
|
|
|
|
import time
|
|
|
|
from PIL import Image
|
2018-03-31 11:18:18 +00:00
|
|
|
from random import shuffle
|
|
|
|
import numpy as np
|
2018-03-31 10:10:00 +00:00
|
|
|
|
|
|
|
TCP_IP = '94.45.232.48'
|
|
|
|
TCP_PORT = 1234
|
|
|
|
BUFFER_SIZE = 4096
|
|
|
|
|
|
|
|
flutwidth = 1920
|
|
|
|
flutheight = 1080
|
|
|
|
|
|
|
|
width=200
|
|
|
|
height=200
|
|
|
|
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
s.connect((TCP_IP, TCP_PORT))
|
|
|
|
|
|
|
|
c = '000000'
|
|
|
|
|
|
|
|
im = Image.open("ctdo.png")
|
2018-03-31 13:20:35 +00:00
|
|
|
rgb_im = im.convert('RGBA')
|
2018-03-31 10:10:00 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def randomnumber(pseed,pmin,pmax,v1,v2,v3):
|
|
|
|
return (pseed*v1+pseed^2*v2+pseed^3*v3)%(pmax-pmin)+pmin
|
|
|
|
|
|
|
|
|
|
|
|
newseed=(int)(time.time()/60)
|
|
|
|
seed=newseed
|
2018-03-31 10:10:00 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
while True:
|
|
|
|
starttime=time.time()
|
|
|
|
commandsarray=[]
|
|
|
|
seed=newseed
|
|
|
|
print("Seed: "+str(seed))
|
|
|
|
#xv=random.randint(0,flutwidth)
|
|
|
|
#yv=random.randint(0,flutheight)
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
#xv=random.randint(width/2,flutwidth-width/2)
|
|
|
|
#yv=random.randint(height/2,flutheight-height/2)
|
|
|
|
xv=randomnumber(seed,width/2,flutwidth-width/2, 1234,-242,4)
|
|
|
|
yv=randomnumber(seed,height/2,flutheight-height/2, 1423,-122,3)
|
|
|
|
print("xv="+str(xv)+ "yv="+str(yv))
|
|
|
|
_current_command=""
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
pixelcoords=[]
|
|
|
|
for _x in range(width):
|
|
|
|
for _y in range(height):
|
|
|
|
pixelcoords+=[(_x,_y)]
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
shuffle(pixelcoords)
|
2018-03-31 11:18:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
for i,j in pixelcoords:
|
|
|
|
r, g, b,a = rgb_im.getpixel((i, j))
|
|
|
|
if a!=255:
|
|
|
|
continue
|
|
|
|
#if r>127:
|
|
|
|
# continue #skip bright pixels
|
|
|
|
#r=255-r
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
#_current_command+='PX %d %d %02x%02x%02x\n' % (i+xv,j+yv,r,g,b) #rgb
|
|
|
|
_current_command+='PX %d %d %02x\n' % (i+xv-width/2,j+yv-height/2,r) #monochrome only red channel
|
|
|
|
if len(_current_command)>=1400:
|
|
|
|
commandsarray+=[_current_command.encode()] #append packet
|
|
|
|
_current_command=""
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
commandsarray+=[_current_command.encode()] #append last packet
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
print("Generated Commands in "+str(time.time()-starttime)+" seconds")
|
|
|
|
|
|
|
|
|
|
|
|
while seed==newseed:
|
|
|
|
try:
|
|
|
|
starttime=time.time()
|
|
|
|
for command in commandsarray:
|
|
|
|
|
|
|
|
s.send(command)
|
2018-03-31 11:18:18 +00:00
|
|
|
|
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
print("Send Image in "+str(time.time()-starttime)+" seconds")
|
|
|
|
except BrokenPipeError:
|
|
|
|
print("BrokenPipeError. Reconnecting")
|
|
|
|
s.close()
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
s.connect((TCP_IP, TCP_PORT)) #reconnect
|
|
|
|
print("reconnected")
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 13:20:35 +00:00
|
|
|
newseed=(int)(time.time()/60)
|
2018-03-31 11:18:18 +00:00
|
|
|
|
2018-03-31 10:10:00 +00:00
|
|
|
|
|
|
|
exit()
|