forked from disorient/acw
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dacwes.pde
140 lines (122 loc) · 3.51 KB
/
Dacwes.pde
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
import hypermedia.net.*;
/**
* This class can be added to your sketches to make them compatible with the sign.
* Use Sketch..Add File and choose this file to copy it into your sketch.
*
* void setup() {
* // Constructor takes this, width, height.
* Dacwes dacwes = new Dacwes(this, 16, 16);
*
* // Change this depending on how the sign is configured.
* dacwes.setAddressingMode(Dacwes.ADDRESSING_VERTICAL_FLIPFLOP);
*
* // Include this to talk to the emulator.
* dacwes.setAddress("127.0.0.1");
*
* // The class will scale things for you, but it may not be full brightness
* // unless you match the size.
* size(320,320);
* }
*
* void draw() {
* doStuff();
*
* // Call this in your draw loop to send data to the sign.
* dacwes.sendData();
* }
*
**/
public class Dacwes {
public static final int ADDRESSING_VERTICAL_NORMAL = 1;
public static final int ADDRESSING_VERTICAL_HALF = 2;
public static final int ADDRESSING_VERTICAL_FLIPFLOP = 3;
public static final int ADDRESSING_HORIZONTAL_NORMAL = 4;
public static final int ADDRESSING_HORIZONTAL_HALF = 5;
public static final int ADDRESSING_HORIZONTAL_FLIPFLOP = 6;
PApplet parent;
UDP udp;
String address;
int port;
int w;
int h;
int addressingMode;
byte buffer[];
int pixelsPerChannel;
public Dacwes(PApplet parent, int w, int h) {
this.parent = parent;
this.udp = new UDP(parent);
this.address = "192.168.1.130";
this.port = 58082;
this.w = w;
this.h = h;
buffer = new byte[257];
this.addressingMode = ADDRESSING_VERTICAL_NORMAL;
this.pixelsPerChannel = 8;
for (int i=0; i<257; i++) {
buffer[i] = 0;
}
}
public void setAddress(String address) {
this.address = address;
}
public void setPort(int port) {
this.port = port;
}
public void setAddressingMode(int mode) {
this.addressingMode = mode;
}
public void setPixelsPerChannel(int n) {
this.pixelsPerChannel = n;
}
private int getAddress(int x, int y) {
if (addressingMode == ADDRESSING_VERTICAL_NORMAL) {
return (x * h + y);
}
else if (addressingMode == ADDRESSING_VERTICAL_HALF) {
return ((y % pixelsPerChannel) + floor(y / pixelsPerChannel)*pixelsPerChannel*w + x*pixelsPerChannel);
}
else if (addressingMode == ADDRESSING_VERTICAL_FLIPFLOP) {
if (y>=pixelsPerChannel) {
int endAddress = (x+1) * h - 1;
int address = endAddress - (y % pixelsPerChannel);
return address;
}
else {
return (x * h + y);
}
}
else if (addressingMode == ADDRESSING_HORIZONTAL_NORMAL) {
return (y * w + x);
}
else if (addressingMode == ADDRESSING_HORIZONTAL_HALF) {
return ((x % pixelsPerChannel) + floor(x / pixelsPerChannel)*pixelsPerChannel*h + y*pixelsPerChannel);
}
else if (addressingMode == ADDRESSING_HORIZONTAL_FLIPFLOP) {
if (x>=pixelsPerChannel) {
int endAddress = (y+1) * w - 1;
int address = endAddress - (x % pixelsPerChannel);
return address;
}
else {
return (y * h + x);
}
}
return 0;
}
public void sendData() {
PImage image = get();
if (image.width != w || image.height != h) {
image.resize(w,h);
}
image.loadPixels();
int r;
buffer[0] = 1;
for (int y=0; y<h; y++) {
for (int x=0; x<w; x++) {
r = int(brightness(image.pixels[y*w+x]));
buffer[getAddress(x,y)+1] = byte(r);
}
}
udp.send(buffer,address,port);
}
}