vote up 1 vote down star

My current plan is to draw the rectangles by subclassing NSView, but that seems like a very inefficient way for what I'm trying to do, which is to draw a bunch of fixed, non-overlapping rectangles that changes colors once in a while. Is there a better way? Thanks.

flag

67% accept rate
Conway's Game of Life, by any chance? – sigjuice Apr 17 at 23:46
Your current solution is probably the easiest/quickest way to do something simple like that. There's nothing wrong with subclassing NSView. – Jason Coco Apr 18 at 0:13
Subclassing NSView is orthogonal to drawing the rectangles. You'll want an NSView subclass to hold all the rectangles — can't very well draw them into thin air, can we? – Chuck Apr 18 at 0:31
sigjuice: Tetris, actually. Chuck: Right now, I have each rectangle as an NSView. Is there a way to stuff all those rectangles into an NSView and draw them independently? – weicool Apr 18 at 5:04

3 Answers

vote up 1 vote down

You can try using CALayers, kind of like this: http://theocacao.com/document.page/555.

link|flag
vote up 1 vote down

If they're all the same color or image, you may find a single CGLayer more efficient. The purpose of that API is drawing the same thing many times.

On the other hand, if the rectangles move independently or have different colors or images on them, Core Animation is definitely the way to go.

link|flag
vote up 0 vote down

Core Animation would be a great technology for a game, but if you want to stick with NSView for the time being you could create a class similar to NSCell that the gameboard view uses to implement positioning and drawing. This would work in a similar way as many Cocoa control classes, which use a single cell (with different values) to draw multiple items inside a view.

Keep in mind that using individual NSView objects may very well be more than fast enough, but regardless of any speed differences this strategy allows you to separate the logic in a way that makes sense.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.