-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx_textlines_fade.js
More file actions
280 lines (226 loc) · 6.16 KB
/
x_textlines_fade.js
File metadata and controls
280 lines (226 loc) · 6.16 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
autowatch = 1;
inlets = 1;
outlets = 3;
include('scalingfunctions.js');
declareattribute('fps', null, 'setFPS',0);
declareattribute('mode', null, 'setMode', 0);
declareattribute('linecount', null, 'setLineCount',0);
declareattribute('align', null, 'setalign', 0);
declareattribute('fontsize', null, 'setfontsize', 0);
declareattribute('color', null, 'setcolor', 0);
declareattribute('position', null, 'setposition',0);
declareattribute('font', null, 'setfont', 0);
declareattribute('distance', null, 'setdistance', 0);
declareattribute('enable',null,'setenable', 0);
var t = this.patcher;
var enable;
var fadeintime = 10;
var fadeouttime = 10;
var fps = 50;
var intervall = 20;
var linecount = 0;
var mode = 0;
var fontsize;
var align;
var color = [1,1,1,1];
var position = [0.0,0.0,0.0];
var linedistance = 0.1;
var font = 'Arial';
var textModules = new Array();
var brightness = new Array();
var timerIn = new Array();
var timerOut = new Array();
var count = new Array();
var id = new Array();
var content = new Array();
var tsk = new Array();
// TEXT FUNCTIONS
function setFades(fadein,fadeout)
{
setFPS(fps);
fadeintime = Math.ceil(fadein * fps);
fadeouttime = Math.ceil(fadeout * fps);
//post(fadeintime, fadeouttime);
}
function setFPS(i)
{
fps = i;
intervall = 1000 / fps;
//post('\n', 'current speed is: ', fps, 'interval is :', intervall);
}
function setenable(x) {
enable = x;
if (linecount > 0) {
for (var i=0;i<linecount;i++) {
textModules[i].enable = x;
}
}
}
function setMode(mode) {
return mode;
}
function setalign(align) {
for (var i = 0; i<linecount;i++) {
textModules[i].align = align;
}
}
function setdistance(distance) {
linedistance = distance;
for (var i = 0; i<linecount;i++) {
textModules[i].position = [position[0], position[1] - i * linedistance,position[2]];
}
}
function setfont(fontname)
{
font = fontname;
if(linecount > 0) {
for (var i = 0; i<linecount;i++) {
textModules[i].font(fontname);
}
}
}
function setcolor(r,g,b,a)
{
color = [r,g,b,a];
if(linecount > 0) {
for (var i = 0; i<linecount;i++) {
textModules[i].color = color;
//post(textModules[i].color,'\n')
}
}
}
function setfontsize(f) {
f = normalize(f,0.,1.0,0.,1.);
fontsize = [f,f,0.0];
if(linecount > 0) {
for (var i = 0; i<linecount;i++) {
textModules[i].scale = fontsize;
}
}
}
function setposition(x,y,z)
{
position = [x,y,z];
if(linecount > 0) {
for (var i=0;i<linecount;i++) {
textModules[i].position = [position[0], position[1] - i*linedistance, position[2]];
}
}
}
function clearModules() {
if (linecount > 0) {
for (var i = 0; i<linecount;i++) {
textModules[i].freepeer();
}
}
}
function setcontent(id, txt)
{
id = modulo(id);
content[id] = txt;
//post('\n', 'content'+[id], 'is: ', content[id] );
}
function setLineCount(x)
{
clearModules();
linecount = x;
for (var i = 0; i<x;i++) {
makeTextModules(i);
}
}
function makeTextModules(i) {
textModules[i] = new JitterObject('jit.gl.text', 'XPARTICLE');
//textModules[i].text('TextModule', i);
//textModules[i].text = content[i];
textModules[i].mode = '3d';
textModules[i].color = color;
textModules[i].align = align;
textModules[i].font(font);
textModules[i].position = [position[0], position[1] - i * linedistance, 0.0];
textModules[i].scale = fontsize;
textModules[i].smooth_shading = 1;
textModules[i].anti_alias = 1;
textModules[i].blend_enable = 1;
textModules[i].blend = 'alphablend';
textModules[i].depth_enable = 0;
textModules[i].automatic = 1;
textModules[i].layer = 100;
}
function modulo(x) {
lc = linecount;
var modx = x % linecount;
//post(modx);
return modx;
}
function fadeline(id) {
if (id == -1 ) {
for (var i =0;i<linecount;i++) {
mkfadeoutall(i);
}
} else {
id = modulo(id);
}
if (textModules[id]) {
// wenn brightness of text is grösser als 0.0
if (textModules[id].color[3] == 0.0) {
changeText(id);
mkfadein(id);
} else {
// fadeout wenn zeile da ist
mkfadeout(id);
}
} else {
}
}
function mkfadein(id) {
tsk[id] = new Task(fadein, this,id)
tsk[id].interval = intervall
tsk[id].repeat(fadeintime)
}
function mkfadeout(id) {
tsk[id] = new Task(fadeout, this,id)
tsk[id].interval = intervall
tsk[id].repeat(fadeouttime)
}
function mkfadeoutall(id) {
tsk[id] = new Task(fadeoutall, this,id)
tsk[id].interval = intervall
tsk[id].repeat(fadeouttime)
}
function fadein(id) {
if (textModules[id]) {
var c = arguments.callee.task.iterations;
brightness[id] = normalize(c, 0., 1., 0, fadeintime);
textModules[id].color = [color[0],color[1],color[2],color[3]*brightness[id]];
//post('\n', 'br'+id, brightness[id]);
//post(textModules[id].color[3]);
}
}
function fadeout(id) {
if (textModules[id]) {
var c = arguments.callee.task.iterations;
brightness[id] = 1-(normalize(c, 0., 1., 0., fadeouttime));
textModules[id].color = [color[0],color[1],color[2],color[3]*brightness[id]];
if (textModules[id].color[3] == 0.0) {
fadeline(id);
}
//post('\n', 'br'+id, brightness[id]);
//post(textModules[id].color[3]);
}
}
function fadeoutall(id) {
if (textModules[id]) {
var c = arguments.callee.task.iterations;
brightness[id] = 1-(normalize(c, 0., 1., 0., fadeouttime));
textModules[id].color = [color[0],color[1],color[2],color[3]*brightness[id]];
}
}
function changeText(id) {
textModules[id].text(content[id]);
}
function fadeoutBlock(id) {
timerOut[id].repeat(fadeouttime);
count[id] + 1;
brightness[id] = normalize(count[id], 1., 0., fadeouttime, 0);
textModules[id].color = [color[0],color[1],color[2],brightness[id]];
}