Re: [pygame] Game engine?

2010-04-16 Thread Kris Schnee
On 2010.4.15 11:49 PM, Mark Reed wrote: Hey guys, I'm looking for something perhaps where you can specify a gamefield like: You might be interested in the code at: http://kschnee.xepher.net/code/squirrelgame/ Screenshot: http://kschnee.xepher.net/pics/squirrel_game/100202squirrel.jpg which

Re: [pygame] Game engine?

2010-04-16 Thread Thadeus Burgess
I have done a tilemap, however I think it might be quite a bit more involved than what you are looking for. http://hg.thadeusb.com/Games/PyBTS/file/f7473ac7857e/src/pybts/terrain See tileengine.py and tilemap.py -- Thadeus On Fri, Apr 16, 2010 at 2:29 PM, Mark Reed markree...@gmail.com

Re: [pygame] Game engine?

2010-04-16 Thread Mark Reed
You have a zip of this? A demo game started? I may be able to modify this code to support the types of games I'm doing, and eventually I should get to more complicated games which would make more use of PyBTS so at that time I'd be able to work on it. Burgess - You plan on continuing your work

Re: [pygame] Game engine?

2010-04-16 Thread Thadeus Burgess
All of the code is in the repositories (hg.thadeusb.com/Games) PyBTS (pygame behind the scenes) is the game engine MyRTS is a set of two proof of concepts that utilize PyBTS. I do plan on continuing work when I find time to. -- Thadeus On Fri, Apr 16, 2010 at 4:13 PM, Mark Reed

Re: [pygame] Game engine?

2010-04-16 Thread Mark Reed
I've got to release a bunch of games so if I do work with PyBTS I'll be putting a lot into it. However, I can grab PyBTS, but MyRTS gives an apparent server error: abort: premature EOF reading chunk (got 801992 bytes, expected 5841998) Mark On Sat, Apr 17, 2010 at 5:18 AM, Thadeus Burgess

Re: [pygame] Game engine?

2010-04-16 Thread Thadeus Burgess
Odd.. seems as if the repository got corrupted... version control fail! When I get back home I will be able to send you a zipped version until I can figure out what happened to my repository. I have been interested in further developing pybts, perhaps it is time I gather my notes together :) --

Re: [pygame] Game engine?

2010-04-16 Thread Thadeus Burgess
Looks to be a bug in hgwebdir with the large binary files. Here is a gunzip of the files. http://static.thadeusb.com/MyRTS.tar.gz -- Thadeus On Fri, Apr 16, 2010 at 10:02 PM, Thadeus Burgess thade...@thadeusb.com wrote: Odd.. seems as if the repository got corrupted... version control

[pygame] Game engine?

2010-04-15 Thread Mark Reed
Hey guys, I'm looking for something perhaps where you can specify a gamefield like: 0 01110 01010 01110 0 Which could be the basis for a variety of games like checkers,chess to loderunner to pacman/wizard of wor. Basically handles single screen games: Tile images Movement between

Re: [pygame] Game engine?

2010-04-15 Thread Luke Paireepinart
On Thu, Apr 15, 2010 at 10:49 PM, Mark Reed markree...@gmail.com wrote: Hey guys, I'm looking for something perhaps where you can specify a gamefield like: 0 01110 01010 01110 0 Which could be the basis for a variety of games like checkers,chess to loderunner to