Re: [pygame] "Crazy Machine" type game?

2008-12-01 Thread Greg Ewing
Joe Strout wrote: On Dec 1, 2008, at 7:33 AM, Kris Schnee wrote: On Sun, 30 Nov 2008 22:57:19 -0200, "claudio canepa" <[EMAIL PROTECTED] > wrote: There is an old clone like in pygame site, look at http://www.pygame.org/projects/21/139/ You might also want to look at "Assembly Line": http:

Re: [pygame] "Crazy Machine" type game?

2008-12-01 Thread Joe Strout
On Dec 1, 2008, at 7:33 AM, Kris Schnee wrote: On Sun, 30 Nov 2008 22:57:19 -0200, "claudio canepa" <[EMAIL PROTECTED] > wrote: There is an old clone like in pygame site, look at http://www.pygame.org/projects/21/139/ You might also want to look at "Assembly Line": http://www.pygame.org/pr

Re: [pygame] "Crazy Machine" type game?

2008-12-01 Thread Kris Schnee
On Sun, 30 Nov 2008 22:57:19 -0200, "claudio canepa" <[EMAIL PROTECTED]> wrote: > On Fri, Nov 28, 2008 at 2:44 PM, Joe Strout <[EMAIL PROTECTED]> wrote: > >> Hi all, >> >> I'm new to pygame, and only recently returned to Python after nearly a >> decade in the REALbasic world. So I hope you'll spe

Re: [pygame] "Crazy Machine" type game?

2008-11-30 Thread claudio canepa
On Fri, Nov 28, 2008 at 2:44 PM, Joe Strout <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm new to pygame, and only recently returned to Python after nearly a > decade in the REALbasic world. So I hope you'll speak slowly and use small > words. :) > > I've got the bug to create a game similar to th

Re: [pygame] "Crazy Machine" type game?

2008-11-29 Thread Michael George
I'm working on something along these lines - http://sf.net/projects/pen/ Any interest in joining me? --Mike Joe Strout wrote: Hi all, I'm new to pygame, and only recently returned to Python after nearly a decade in the REALbasic world. So I hope you'll speak slowly and use small words.

Re: [pygame] "Crazy Machine" type game?

2008-11-28 Thread Joe Strout
On Nov 28, 2008, at 10:05 AM, Nirav Patel wrote: There is an Activity for Sugar, the OS on OLPC XOs, that is a simple Incredible Machine clone. http://wiki.laptop.org/go/X2o It is written in Python, using Pygame for graphics and PyBox2D for physics. Thanks, I'll look into that. PyODE is

Re: [pygame] "Crazy Machine" type game?

2008-11-28 Thread Ian Mallett
I loved Incredible Machine! If I recall correctly, the physics on it weren't too complicated. If you're feeling adventurous, you might consider doing them yourself. Gravity is easy, and bouncing should be simple enough. The only complicated stuff would be collisions between two moving objects, b

Re: [pygame] "Crazy Machine" type game?

2008-11-28 Thread Nirav Patel
Joe, There is an Activity for Sugar, the OS on OLPC XOs, that is a simple Incredible Machine clone. http://wiki.laptop.org/go/X2o It is written in Python, using Pygame for graphics and PyBox2D for physics. PyODE is likely way overkill for 2d physics. PyBox2D, Pymunk, or the physics engine in P

[pygame] "Crazy Machine" type game?

2008-11-28 Thread Joe Strout
Hi all, I'm new to pygame, and only recently returned to Python after nearly a decade in the REALbasic world. So I hope you'll speak slowly and use small words. :) I've got the bug to create a game similar to the classic games "Incredible Machine" and "Crazy Machine". For those not fam