Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im trying to program a game in Haskell. Ive been looking for Game frameworks for that purpose, but i found a few and i cant make them work :/ . All i need is some image processing as pygames provides in python, like moving images, using layouts to put one image above other, and such basic things. Do you happen to know anyone?

share|improve this question
1  
If memory serves me, Pygame isn't all that much more than a wrapper around SDL; have you tried just using the Haskell bindings for that? I also like the graphics-drawingcombinators package for a minimal, but pleasant to work with, way to get graphics on the screen. Here's a very simple game using both I wrote a while ago. The code itself is kind of terrible, but it does show the libraries being used. – C. A. McCann Aug 20 '11 at 1:15
possible duplicate of Haskell library for 2D drawing – Thomas M. DuBuisson Aug 20 '11 at 2:17

1 Answer

I was writing a library called TeaHS which is something like what you want. It's old and potentially bitrotted though, and I don't really have time to update it. Fork it if you like :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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