-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathv002FBOTextureGlitchPlugIn.m
401 lines (312 loc) · 14.2 KB
/
v002FBOTextureGlitchPlugIn.m
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
//
// v002FBOGlitchPlugIn.m
// v002FBOGlitch
//
// Created by vade on 6/26/08.
// Copyright (c) 2008 __MyCompanyName__. All rights reserved.
//
/* It's highly recommended to use CGL macros instead of changing the current context for plug-ins that perform OpenGL rendering */
#import <OpenGL/CGLMacro.h>
#import "v002FBOTextureGlitchPlugIn.h"
#define kQCPlugIn_Name @"v002 Glitch FBO Texture"
#define kQCPlugIn_Description @"Glitches input texture by rendering to FBO with incorrect target texture settings"
// GL texture formats/types for texgen
//#define kRGBTextureTypes [NSArray arrayWithObjects: [NSNumber numberWithInt:GL_LUMINANCE], [NSNumber numberWithInt:GL_LUMINANCE4], [NSNumber numberWithInt:GL_LUMINANCE8], [NSNumber numberWithInt:GL_LUMINANCE12], [NSNumber numberWithInt:GL_LUMINANCE16], [NSNumber numberWithInt:GL_R3_G3_B2], [NSNumber numberWithInt:GL_RGB4], [NSNumber numberWithInt:GL_RGB5], [NSNumber numberWithInt:GL_RGB8], [NSNumber numberWithInt:GL_RGB10], [NSNumber numberWithInt:GL_RGB12], [NSNumber numberWithInt:GL_RGB16], [NSNumber numberWithInt:GL_RGB16F_ARB], [NSNumber numberWithInt:GL_RGBA2], [NSNumber numberWithInt:GL_RGBA4], [NSNumber numberWithInt:GL_RGB5_A1], [NSNumber numberWithInt:GL_RGBA8], [NSNumber numberWithInt:GL_RGB10_A2], [NSNumber numberWithInt:GL_RGBA12], [NSNumber numberWithInt:GL_RGBA16], [NSNumber numberWithInt:GL_RGBA16F_ARB], nil]
#define kRGBTextureTypes [NSArray arrayWithObjects:[NSNumber numberWithInt:GL_RGB4], [NSNumber numberWithInt:GL_RGB5], [NSNumber numberWithInt:GL_RGB8], [NSNumber numberWithInt:GL_RGB10], [NSNumber numberWithInt:GL_RGB12], [NSNumber numberWithInt:GL_RGB16], [NSNumber numberWithInt:GL_RGB16F_ARB], [NSNumber numberWithInt:GL_RGBA2], [NSNumber numberWithInt:GL_RGBA4], [NSNumber numberWithInt:GL_RGB5_A1], [NSNumber numberWithInt:GL_RGBA8], [NSNumber numberWithInt:GL_RGB10_A2], [NSNumber numberWithInt:GL_RGBA12], [NSNumber numberWithInt:GL_RGBA16], [NSNumber numberWithInt:GL_RGBA16F_ARB], nil]
// strings for menus
//#define kRGBTextureTypesString [NSArray arrayWithObjects:@"GL_INTENSITY", @"GL_INTENSITY4", @"GL_INTENSITY8", @"GL_INTENSITY12", @"GL_INTENSITY16",@"GL_R3_G3_B2", @"GL_RGB4", @"GL_RGB5", @"GL_RGB8",@"GL_RGB10", @"GL_RGB12", @"GL_RGB16", @"GL_RGB16F_ARB", @"GL_RGBA2", @"GL_RGBA4", @"GL_RGB5_A1", @"GL_RGBA8", @"GL_RGB10_A2", @"GL_RGBA12", @"GL_RGBA16", @"GL_RGBA16F_ARB", nil]
#define kRGBTextureTypesString [NSArray arrayWithObjects:@"GL_RGB4", @"GL_RGB5", @"GL_RGB8",@"GL_RGB10", @"GL_RGB12", @"GL_RGB16", @"GL_RGB16F_ARB", @"GL_RGBA2", @"GL_RGBA4", @"GL_RGB5_A1", @"GL_RGBA8", @"GL_RGB10_A2", @"GL_RGBA12", @"GL_RGBA16", @"GL_RGBA16F_ARB", nil]
static void _TextureReleaseCallback(CGLContextObj cgl_ctx, GLuint name, void* info)
{
glDeleteTextures(1, &name);
}
/* Generates a texture containing a linear gradient - Requires FBO support */
static GLuint fboGlitchCreate(CGLContextObj cgl_ctx, NSUInteger pixelsWide, NSUInteger pixelsHigh, NSRect bounds, GLuint videoTexture, GLenum videoTextureTarget, BOOL newRandomValues, int rgbType)
{
GLint previousFBO, previousReadFBO, previousDrawFBO;
glGetIntegerv(GL_FRAMEBUFFER_BINDING_EXT, &previousFBO);
glGetIntegerv(GL_READ_FRAMEBUFFER_BINDING_EXT, &previousReadFBO);
glGetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING_EXT, &previousDrawFBO);
// figure out what texture format to use...
NSUInteger i = 0;
NSUInteger lastRandom = 0;
NSUInteger type;
NSUInteger rand;
if(newRandomValues)
{
srandom(i % 10000);
rand = random();
lastRandom = rand;
++i;
type = rand % [kRGBTextureTypes count];
}
else
{
type = rgbType;
}
GLsizei width = bounds.size.width, height = bounds.size.height;
GLuint name,frameBuffer;
GLint saveName, saveViewport[4], saveMode;
GLenum status;
GLenum rgbOrRGBA;
// pick GL_RGB vs GL_RGBA
if (type > 4)
rgbOrRGBA = GL_LUMINANCE;
else if(type > 12)
rgbOrRGBA = GL_RGBA;
else
rgbOrRGBA = GL_RGB;
// Create texture to render into
glGenTextures(1, &name);
glGetIntegerv(GL_TEXTURE_BINDING_RECTANGLE_EXT, &saveName);
glBindTexture(GL_TEXTURE_RECTANGLE_EXT, name);
glTexImage2D(GL_TEXTURE_RECTANGLE_EXT, 0, [[kRGBTextureTypes objectAtIndex:type] intValue] , width, height, 0, rgbOrRGBA, GL_UNSIGNED_BYTE, NULL);
// Create temporary FBO to render in texture
glGenFramebuffersEXT(1, &frameBuffer);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, frameBuffer);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_RECTANGLE_EXT, name, 0);
// Assume FBOs JUST WORK, because we checked on startExecution
// status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
// if(status == GL_FRAMEBUFFER_COMPLETE_EXT)
{
// Setup OpenGL states
glGetIntegerv(GL_VIEWPORT, saveViewport);
glViewport(0, 0, width, height);
glGetIntegerv(GL_MATRIX_MODE, &saveMode);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
glOrtho(bounds.origin.x, bounds.origin.x + bounds.size.width, bounds.origin.y, bounds.origin.y + bounds.size.height, -1, 1);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
// glEnable(GL_BLEND);
// glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
glBindTexture(videoTextureTarget, videoTexture);
//glTranslatef(((float)rand1 / 17.0) * (float)pixelsWide , ((float)rand1 / 17.0) * (float)pixelsHigh, 0);
glBegin(GL_QUADS);
glTexCoord2f(pixelsWide , pixelsHigh);
glVertex3f(pixelsWide , pixelsHigh, 0);
glTexCoord2f(0, pixelsHigh);
glVertex3f(0 , pixelsHigh , 0);
glTexCoord2f(0, 0);
glVertex3f(0 , 0 , 0);
glTexCoord2f(pixelsWide, 0);
glVertex3f(pixelsWide , 0 , 0);
glEnd();
glBindTexture(videoTextureTarget,0);
// Restore OpenGL states
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(saveMode);
glViewport(saveViewport[0], saveViewport[1], saveViewport[2], saveViewport[3]);
glBindTexture(GL_TEXTURE_RECTANGLE_EXT, saveName);
}
/* else
{
glDeleteTextures(1, &name);
name = 0;
}
*/
// return to parent FBO
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, previousFBO);
glBindFramebufferEXT(GL_READ_FRAMEBUFFER_EXT, previousReadFBO);
glBindFramebufferEXT(GL_DRAW_FRAMEBUFFER_EXT, previousDrawFBO);
glDeleteFramebuffersEXT(1, &frameBuffer);
// Check for OpenGL errors
status = glGetError();
if(status)
{
NSLog(@"OpenGL error %04X", status);
glDeleteTextures(1, &name);
name = 0;
}
return name;
}
@implementation v002FBOTextureGlitchPlugIn
/*
Here you need to declare the input / output properties as dynamic as Quartz Composer will handle their implementation
@dynamic inputFoo, outputBar;
*/
@dynamic inputImage,inputNewRandomValues, inputInternalTypeRGB, outputImage;
+ (NSDictionary*) attributes
{
/*
Return a dictionary of attributes describing the plug-in (QCPlugInAttributeNameKey, QCPlugInAttributeDescriptionKey...).
*/
return [NSDictionary dictionaryWithObjectsAndKeys:kQCPlugIn_Name, QCPlugInAttributeNameKey, kQCPlugIn_Description, QCPlugInAttributeDescriptionKey, nil];
}
+ (NSDictionary*) attributesForPropertyPortWithKey:(NSString*)key
{
/*
Specify the optional attributes for property based ports (QCPortAttributeNameKey, QCPortAttributeDefaultValueKey...).
*/
if([key isEqualToString:@"inputImage"])
{
return [NSDictionary dictionaryWithObjectsAndKeys:@"Image", QCPortAttributeNameKey, nil];
}
if([key isEqualToString:@"inputNewRandomValues"])
{
return [NSDictionary dictionaryWithObjectsAndKeys:@"Random", QCPortAttributeNameKey, nil];
}
if([key isEqualToString:@"inputInternalTypeRGB"])
{
return [NSDictionary dictionaryWithObjectsAndKeys:@"Texture Format", QCPortAttributeNameKey,
[NSArray arrayWithArray:kRGBTextureTypesString], QCPortAttributeMenuItemsKey,
[NSNumber numberWithUnsignedInteger:0.0], QCPortAttributeMinimumValueKey,
[NSNumber numberWithUnsignedInteger:[kRGBTextureTypesString count] - 1], QCPortAttributeMaximumValueKey,
[NSNumber numberWithUnsignedInteger:1.0], QCPortAttributeDefaultValueKey,
nil];
}
if([key isEqualToString:@"outputImage"])
{
return [NSDictionary dictionaryWithObjectsAndKeys:@"Image", QCPortAttributeNameKey, nil];
}
return nil;
}
+ (NSArray*) sortedPropertyPortKeys
{
return [NSArray arrayWithObjects:@"inputImage", @"inputNewRandomValues",@"inputInternalTypeRGB", nil];
}
+ (QCPlugInExecutionMode) executionMode
{
/*
Return the execution mode of the plug-in: kQCPlugInExecutionModeProvider, kQCPlugInExecutionModeProcessor, or kQCPlugInExecutionModeConsumer.
*/
return kQCPlugInExecutionModeProcessor;
}
+ (QCPlugInTimeMode) timeMode
{
/*
Return the time dependency mode of the plug-in: kQCPlugInTimeModeNone, kQCPlugInTimeModeIdle or kQCPlugInTimeModeTimeBase.
*/
return kQCPlugInTimeModeNone;
}
- (id) init
{
self = [super init];
if(self)
{
/*
Allocate any permanent resource required by the plug-in.
*/
}
return self;
}
- (void) finalize
{
/*
Release any non garbage collected resources created in -init.
*/
[super finalize];
}
- (void) dealloc
{
/*
Release any resources created in -init.
*/
[super dealloc];
}
@end
@implementation v002FBOTextureGlitchPlugIn (Execution)
- (BOOL) startExecution:(id<QCPlugInContext>)context
{
/*
Called by Quartz Composer when rendering of the composition starts: perform any required setup for the plug-in.
Return NO in case of fatal failure (this will prevent rendering of the composition to start).
*/
/* NSString *informativeText = @"This patch creates genuine video corruption on your graphics card, and behaves very differently depending on driver (OS release) and vendor (ATI, NVidia/Intel).\n\rDepending on various factors including the phase of the moon, you may experience \"very strange things\" including but not limited to crashing your window server or kernel panic'ing.\n\rIt is highly suggested you save any work you have open, or so help you god. If you run across any particular texture format that consistently kills your machine, please contact me. \n\rClicking Cancel will not load the patch. Clicking Ok will load the patch.";
NSAlert *alert = [[NSAlert alloc] init];
[alert setAlertStyle:NSInformationalAlertStyle];
[alert addButtonWithTitle:@"OK"];
[alert addButtonWithTitle:@"Cancel"];
[alert setMessageText:@"Stop, and pay attention.."];
[alert setInformativeText:informativeText];
[alert setAlertStyle:NSWarningAlertStyle];
if ([alert runModal] == NSAlertFirstButtonReturn)
{
[alert release];
return YES;
}
else
{
[alert release];
return NO;
}
return NO; // no dumb compiler warning
*/
return YES;
}
- (void) enableExecution:(id<QCPlugInContext>)context
{
/*
Called by Quartz Composer when the plug-in instance starts being used by Quartz Composer.
*/
CGLContextObj cgl_ctx = [context CGLContextObj];
GLint supportsSeparateAddressSpace = 0;
CGLSetParameter(cgl_ctx, kCGLCPSupportSeparateAddressSpace, &supportsSeparateAddressSpace);
}
- (BOOL) execute:(id<QCPlugInContext>)context atTime:(NSTimeInterval)time withArguments:(NSDictionary*)arguments
{
/*
Called by Quartz Composer whenever the plug-in instance needs to execute.
Only read from the plug-in inputs and produce a result (by writing to the plug-in outputs or rendering to the destination OpenGL context) within that method and nowhere else.
Return NO in case of failure during the execution (this will prevent rendering of the current frame to complete).
The OpenGL context for rendering can be accessed and defined for CGL macros using:
*/
CGLContextObj cgl_ctx = [context CGLContextObj];
id<QCPlugInInputImageSource> image = self.inputImage;
if(image && [image lockTextureRepresentationWithColorSpace:[image imageColorSpace] forBounds:[image imageBounds]])
{
NSUInteger width = [image imageBounds].size.width;
NSUInteger height = [image imageBounds].size.height;
NSRect bounds = [image imageBounds];
[image bindTextureRepresentationToCGLContext:[context CGLContextObj] textureUnit:GL_TEXTURE0 normalizeCoordinates:NO];
int randWidth = rand() % width;
int randHeight = rand() % height;
GLuint finalOutput = fboGlitchCreate(cgl_ctx, randWidth, randHeight, bounds, [image textureName], GL_TEXTURE_RECTANGLE_EXT, self.inputNewRandomValues, self.inputInternalTypeRGB);
glFlushRenderAPPLE();
if(finalOutput == 0)
return NO;
#if __BIG_ENDIAN__
#define v002PlugInPixelFormat QCPlugInPixelFormatARGB8
#else
#define v002PlugInPixelFormat QCPlugInPixelFormatBGRA8
#endif
id provider = nil;
/* if(self.inputInternalTypeRGB < 5)
{
provider = [context outputImageProviderFromTextureWithPixelFormat:v002PlugInPixelFormat pixelsWide:[image imageBounds].size.width pixelsHigh:[image imageBounds].size.height name:finalOutput flipped:[image textureFlipped] releaseCallback:_TextureReleaseCallback releaseContext:NULL colorSpace:CGColorSpaceCreateWithName(kCGColorSpaceGenericRGBLinear) shouldColorMatch:NO];
}
else
{
// output our final image as a QCPluginOutputImageProvider using the QCPluginContext convinience method. No need to go through the trouble of making our own conforming object.
provider = [context outputImageProviderFromTextureWithPixelFormat:v002PlugInPixelFormat pixelsWide:[image imageBounds].size.width pixelsHigh:[image imageBounds].size.height name:finalOutput flipped:[image textureFlipped] releaseCallback:_TextureReleaseCallback releaseContext:NULL colorSpace:[image imageColorSpace] shouldColorMatch:YES];
}
*/
provider = [context outputImageProviderFromTextureWithPixelFormat:QCPlugInPixelFormatBGRA8 pixelsWide:bounds.size.width pixelsHigh:bounds.size.height name:finalOutput flipped:[self.inputImage textureFlipped] releaseCallback:_TextureReleaseCallback releaseContext:NULL colorSpace:[context colorSpace] shouldColorMatch:YES];
if(provider == nil)
return NO;
self.outputImage = provider;
[image unbindTextureRepresentationFromCGLContext:[context CGLContextObj] textureUnit:GL_TEXTURE0];
[image unlockTextureRepresentation];
}
else
self.outputImage = nil;
return YES;
}
- (void) disableExecution:(id<QCPlugInContext>)context
{
/*
Called by Quartz Composer when the plug-in instance stops being used by Quartz Composer.
*/
}
- (void) stopExecution:(id<QCPlugInContext>)context
{
/*
Called by Quartz Composer when rendering of the composition stops: perform any required cleanup for the plug-in.
*/
}
@end