Glenn Vanderburg

: Blog

infosyndicate
3 of 3 articles
Why do title sequences in movies jitter?
Tue, 01 Oct 2002 (22:32) #
Of course, I watched the new Two Towers trailer today, just like every other Tolkien fan. And I really like what I saw.

But I noticed something I've noticed before, in trailers and in the full-length films. The title sequences jitter on the screen as though they were filmed by a guy sitting in a theater with a camcorder. (OK, maybe it's not that bad, but it's noticeable.)

Effects groups can do motion-controlled shots with live action, miniatures, matte paintings, and CG elements all merged on screen, moving seamlessly together. (For that matter, there was a translucent overlay at the bottom of the frame throughout the trailer, and it was rock solid.) Why can't they generate title sequences the same way?

Bad dog! Try again.
Tue, 01 Oct 2002 (17:13) #
Saturday I was sitting in a talk next to PragDave, and had to boot my PowerBook (for some reason it had shut down instead of going to sleep after my talk). I took the opportunity to show him one of my favorite silly OSX features. When you type the wrong password into the login panel, it doesn't give you a message or anything. Instead, the login panel just shakes rapidly from side to side, as though your Mac is vehemently shaking its head at you.

Dave was most amused. :-)

Weighing Cocoa and Java
Tue, 01 Oct 2002 (11:07) #
I've found a little pet project to work on. It's an itch of my own that I want to scratch, but I can't predict how much time I'll have to devote to it over the long term, so my best bet is open source: release early, release often, and get other developers interested in helping.

PlayDraw After sitting around discussing the idea Friday night in the sitting room of the suite at RMSS, I started playing with ideas on Saturday, using Cocoa. With an example at hand, I wrote the world's most rudimentary version of one component I'll need: a simple line-drawing editor. So far it's been quite easy.

Last night, in about 30 minutes, I duplicated in Java what I'd already done in Cocoa. (I'm not trying to make a point about productivity in Java vs. Objective C ... I'm a Java expert who's just learning Cocoa, and I had already written the app once, so the second try was bound to be faster.) The Java version is cleaner in some ways than the Cocoa version, but messier in others. The Cocoa version is slightly faster, but you have to get a lot of elements in the drawing before you notice a slowdown even in the Java version (and my repaint strategy in both versions is incredibly naive, so there's a lot of room for optimization). In short: in terms of performance and ease of development, neither Java nor Cocoa seems to offer a compelling advantage. Even memory management is a wash: Cocoa will probably deliver better perceived performance due to the lack of GC pauses, but at the cost of increased development and debugging headaches.

So my thoughts are moving toward platform popularity. I don't particularly care how widely used the app becomes; it's my own itch, after all. But I am interested in attracting developers to help. For that purpose, Java seems like the best choice.

For a while, at least, I'll continue developing these two versions side-by-side. But before long, I'll have to make a choice. And right now I'm leaning toward Java.