version 1.2, 2006/03/07 11:15:23 |
version 1.3, 2006/03/08 04:58:14 |
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); |
[self drawOglInitComm]; |
[self drawOglInitComm]; |
} |
} |
|
-(void) setInitGL: (id) sender { initGl = 1; } |
// It was for a test. |
// It was for a test. |
-(void) drawRectSimple: (NSRect) rect withColor: (double) c { |
-(void) drawRectSimple: (NSRect) rect withColor: (double) c { |
glClearColor(1.0,1.0,1.0,1.0); |
glClearColor(1.0,1.0,1.0,1.0); |
|
|
|
|
-(NSMutableArray *)getListOfOglComm { return oglComm; } |
-(NSMutableArray *)getListOfOglComm { return oglComm; } |
-(NSMutableArray *)getListOfOglInitComm { return oglInitComm; } |
-(NSMutableArray *)getListOfOglInitComm { return oglInitComm; } |
|
-(int) getOglCommSize { return oglCommSize; } |
|
-(int) getOglInitCommSize { return oglInitCommSize; } |
-(int) countOfOglComm { return [oglComm count]; } |
-(int) countOfOglComm { return [oglComm count]; } |
-(int) countOfOglInitComm { return [oglInitComm count];} |
-(int) countOfOglInitComm { return [oglInitComm count];} |
-(int) removeLastOfOglComm { if ([oglComm count]>0) [oglComm removeLastObject]; return [self countOfOglComm];} |
-(int) removeLastOfOglComm { if ([oglComm count]>0) [oglComm removeLastObject]; [self updateOglCommSize]; return [self countOfOglComm];} |
-(int) removeLastOfOglInitComm {if ([oglInitComm count]>0) [oglInitComm removeLastObject]; return [self countOfOglInitComm];} |
-(int) removeLastOfOglInitComm {if ([oglInitComm count]>0) [oglInitComm removeLastObject]; [self updateOglInitCommSize]; return [self countOfOglInitComm];} |
-(int) removeAllOfOglComm { if ([oglComm count]>0) [oglComm removeAllObjects]; return 0; } |
-(int) removeAllOfOglComm { if ([oglComm count]>0) [oglComm removeAllObjects]; oglCommSize = 0; return 0; } |
-(int) removeAllOfOglInitComm {if ([oglInitComm count]>0) [oglInitComm removeAllObjects]; return 0; } |
-(int) removeAllOfOglInitComm {if ([oglInitComm count]>0) [oglInitComm removeAllObjects]; oglInitCommSize = 0; return 0; } |
|
-(void) updateOglCommSize { |
|
int n,i; |
|
MyOpenGLCommand *cc; |
|
n = [oglComm count]; |
|
for (i=n-1; i>=0; i--) { |
|
cc = [oglComm objectAtIndex: i]; |
|
if ([cc isEndGroup]) { oglCommSize = i+1; return ; } |
|
} |
|
oglCommSize = 0; |
|
} |
|
-(void) updateOglInitCommSize { |
|
int n,i; |
|
MyOpenGLCommand *cc; |
|
n = [oglInitComm count]; |
|
for (i=n-1; i>=0; i--) { |
|
cc = [oglInitComm objectAtIndex: i]; |
|
if ([cc isEndGroup]) { oglInitCommSize = i+1; return ; } |
|
} |
|
oglInitCommSize = 0; |
|
} |
|
|
-(void) drawOglInitComm { |
-(void) drawOglInitComm { |
int i,n; |
int i,n; |
|
|
case CFEPglEnd: |
case CFEPglEnd: |
glEnd(); break; |
glEnd(); break; |
case CFEPglFlush: |
case CFEPglFlush: |
glFlush(); [self setNeedsDisplay: YES]; break; |
glFlush(); [self setInitGL: nil]; [self setNeedsDisplay: YES]; break; |
case CFEPglPointSize: |
case CFEPglPointSize: |
glPointSize(x); break; |
glPointSize(x); break; |
case CFEPglRectf: |
case CFEPglRectf: |
|
|
case CFEPglib_putpixel: |
case CFEPglib_putpixel: |
glib_putpixel(x,y,p); break; |
glib_putpixel(x,y,p); break; |
case CFEPglib_flush: |
case CFEPglib_flush: |
[self setNeedsDisplay: YES]; |
[self setInitGL: nil]; [self setNeedsDisplay: YES]; |
// [[MyOpenGLController getOglWindow: gid] showCount]; |
// [[MyOpenGLController getOglWindow: gid] showCount]; |
break; |
break; |
|
|