forked from mikeash/mikeash.com-svn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDGController.m
123 lines (99 loc) · 3.21 KB
/
DGController.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
//
// DGController.m
// DefGrowl
//
// Created by Michael Ash on 8/30/07.
// Copyright 2007 Rogue Amoeba Software, LLC. All rights reserved.
//
#import "DGController.h"
#import <OpenGL/glu.h>
#import "APELite.h"
@implementation DGController
static DGController *gController;
static void (*DG_glBindTexture_old)( GLenum target, GLuint texture );
static void DG_glBindTexture( GLenum target, GLuint texture );
GLint (*DG_gluBuild2DMipmaps_old)( GLenum target,
GLint internalFormat, GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void *data );
static GLint DG_gluBuild2DMipmaps( GLenum target,
GLint internalFormat, GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void *data );
static BOOL gCaptureTexture;
static void (*DG_glTexCoord2f_old)( GLfloat s, GLfloat t );
static void DG_glTexCoord2f( GLfloat s, GLfloat t );
static void (*DG_NSOpenGLContext_flushBuffer_old)( id self, SEL _cmd );
static void DG_NSOpenGLContext_flushBuffer( id self, SEL _cmd );
+ (void)load
{
NSLog( @"DefGrowl: Hello world!" );
gController = [[DGController alloc] init];
DG_glBindTexture_old = APEPatchCreate( glBindTexture, DG_glBindTexture );
DG_gluBuild2DMipmaps_old = APEPatchCreate( gluBuild2DMipmaps, DG_gluBuild2DMipmaps );
DG_glTexCoord2f_old = APEPatchCreate( glTexCoord2f, DG_glTexCoord2f );
DG_NSOpenGLContext_flushBuffer_old = APEPatchCreate( [NSOpenGLContext instanceMethodForSelector: @selector( flushBuffer )], DG_NSOpenGLContext_flushBuffer );
}
- (id)init
{
if( (self = [super init]) )
{
_textTextures = [[NSMutableSet alloc] init];
_accumStr = [[NSMutableString alloc] init];
}
return self;
}
static void DG_glBindTexture( GLenum target, GLuint texture )
{
gController->_currentTexture = texture;
gCaptureTexture = [gController->_textTextures containsObject: [NSNumber numberWithUnsignedInt: texture]];
if( gCaptureTexture )
gController->_captureCoordCount = 0;
DG_glBindTexture_old( target, texture );
}
static GLint DG_gluBuild2DMipmaps( GLenum target,
GLint internalFormat, GLsizei width,
GLsizei height,
GLenum format,
GLenum type,
const void *data )
{
NSNumber *texNum = [NSNumber numberWithUnsignedInt: gController->_currentTexture];
if( width == 1024 && height == 1024 )
{
[gController->_textTextures addObject: texNum];
gCaptureTexture = YES;
}
else
{
[gController->_textTextures removeObject: texNum];
gCaptureTexture = NO;
}
NSLog( @"Text textures are %@", gController->_textTextures );
return DG_gluBuild2DMipmaps_old( target, internalFormat, width, height, format, type, data );
}
static void DG_glTexCoord2f( GLfloat s, GLfloat t )
{
if( gCaptureTexture )
{
if( gController->_captureCoordCount++ % 4 == 0 )
{
int x = rintf( s * 16.0 );
int y = 16 - rintf( t * 16.0 );
unichar ch = x + y * 16;
[gController->_accumStr appendFormat: @"%C", ch];
}
}
DG_glTexCoord2f_old( s, t );
}
static void DG_NSOpenGLContext_flushBuffer( id self, SEL _cmd )
{
DG_NSOpenGLContext_flushBuffer_old( self, _cmd );
NSLog( @"%@", gController->_accumStr );
[gController->_accumStr setString: @""];
}
@end