|
@@ -767,7 +767,7 @@ class Socket():
|
|
|
if not self.__poll:
|
|
|
try:
|
|
|
self.__data, self.__addr = self.sock.recvfrom(self.__port)
|
|
|
-
|
|
|
+
|
|
|
|
|
|
data, addr = (self.__data,self.__addr)
|
|
|
self.host = addr[0]
|
|
@@ -781,6 +781,9 @@ class Socket():
|
|
|
pass#print( "======E09823" , e)
|
|
|
univ = self.head[6]/255 # /512 # * 512
|
|
|
self.univ = int(univ)
|
|
|
+ opcode=artnet_get_opcode(head)
|
|
|
+ #if "2.0.0.11" not in addr:
|
|
|
+ # print("PKG3",addr,"univ:",self.univ, opcode,len(rawdmx))
|
|
|
|
|
|
if self.host.startswith("127."): #allways recive localhost on port
|
|
|
self.__poll = 1
|
|
@@ -820,7 +823,7 @@ class Socket():
|
|
|
self.__poll = 0
|
|
|
|
|
|
data, addr = (self.__data,self.__addr)
|
|
|
- #print( self.univ,self.head)
|
|
|
+ #print("PKG", self.univ,self.head)
|
|
|
|
|
|
self.dmx = unpack_art_dmx(data)
|
|
|
|
|
@@ -844,7 +847,9 @@ class ArtNetNode():
|
|
|
"Art-Net™ Designed by and Copyright Artistic Licence Holdings Ltd"
|
|
|
https://art-net.org.uk/
|
|
|
"""
|
|
|
+
|
|
|
def __init__(self, to="10.10.10.255",univ=7,port=6454):
|
|
|
+ print("\n"+self.__doc__+"\n")
|
|
|
try:
|
|
|
univ = int(univ)
|
|
|
except:
|
|
@@ -933,6 +938,21 @@ def artnet_test():
|
|
|
artnet = ArtNetNode()
|
|
|
artnet._tes_frame()
|
|
|
|
|
|
+def artnet_get_opcode(head):
|
|
|
+ #print([head]) #[9:10])
|
|
|
+ opcode=0x0000
|
|
|
+ name ="unkown"
|
|
|
+ try:
|
|
|
+ opcode=hex(struct.unpack('<h', head[8:10])[0])
|
|
|
+ except:
|
|
|
+ print("opcode error",[head])
|
|
|
+ if opcode == '0x5000':
|
|
|
+ name = "ArtDMX"
|
|
|
+ elif opcode == '0x2000':
|
|
|
+ name = "ArtPoll"
|
|
|
+ elif opcode == '0x2100':
|
|
|
+ name = "ArtPollReplay"
|
|
|
+ return (name,opcode)
|
|
|
# ============================================================
|
|
|
# helper =====================================================
|
|
|
# ============================================================
|