Search found 4 matches

by lisjak
Tue Jun 30, 2009 8:50 am
Forum: Common Lisp
Topic: Interacting with lisp from a lispbuilder-sdl application
Replies: 9
Views: 15362

Re: Interacting with lisp from a lispbuilder-sdl application

@nuntius: Thanks for these links - I see how CL's approach is different from C++'s. Perhaps it would be good if there was a 'sticky thread' in this forum with various links to learning resources and popular common lisp libraries - while CLHS and CLiki provide a nice 'full menu' it's often more produ...
by lisjak
Tue Jun 30, 2009 1:25 am
Forum: Common Lisp
Topic: Interacting with lisp from a lispbuilder-sdl application
Replies: 9
Views: 15362

Re: Interacting with lisp from a lispbuilder-sdl application

A Quake-style terminal is certainly cool and useful, but don't forget you can start up a Swank server, connect SLIME to it, and hack on your program with the usual full environment. For anything involved, that's likely to be the more pleasant route. I say this based on experience with StumpWM, whic...
by lisjak
Mon Jun 29, 2009 9:13 am
Forum: Common Lisp
Topic: Interacting with lisp from a lispbuilder-sdl application
Replies: 9
Views: 15362

Re: Interacting with lisp from a lispbuilder-sdl application

Oh, great! Studying the code right now - a lot to be learned. REPL inside the app is around 100 lines of code, nice.

Thanks!
by lisjak
Sun Jun 28, 2009 4:14 pm
Forum: Common Lisp
Topic: Interacting with lisp from a lispbuilder-sdl application
Replies: 9
Views: 15362

Interacting with lisp from a lispbuilder-sdl application

Hi! I'm using SBCL 1.0.29 + lispbuilder-sdl on Mac OS X, trying to develop a (gui) lisp application. I want a cross-platform application with truetype font display of text + interactive graphics - I've gone through possibilities and found out that probably SDL is the best bet. I got the feeling that...