python game

2013-06-19 Thread jacksonkemp1234
I made this game where you move a player over bears, but the bears keep loading over the plaeyer making it hard to see it, also when i move down the player goes down to the right here is my code: import pygame, sys, random from pygame.locals import * from threading import Timer #set up pygame

Re: python game

2013-06-19 Thread Denis McMahon
On Wed, 19 Jun 2013 13:18:49 -0700, jacksonkemp1234 wrote: windowSurface.blit(playerImage, player) for bear in bears: windowSurface.blit(bearImage, bear) Try changing this to draw the bears first, then the player. -- Denis McMahon, denismfmcma...@gmail.com --

Re: python game

2013-06-19 Thread Denis McMahon
On Wed, 19 Jun 2013 13:18:49 -0700, jacksonkemp1234 wrote: if moveDown and player.right WINDOW_WIDTH: player.right += MOVE_SPEED Should this be moveRight instead of moveDown? -- Denis McMahon, denismfmcma...@gmail.com --

Re: python game

2013-06-19 Thread Joshua Landau
This is prob'ly the freakiest thing I've ever run... Anyhoo, I recommend that when you post slabs of code to a mailing list you at least make it runnable for us. We don't have the images. I fixed it by doing: | playerImage = pygame.Surface((40, 40)) | bearImage = pygame.Surface((64, 64)) | |

Re: python game

2013-06-19 Thread Jackson Kemp
Thankyou this was very helpful -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Game Development?

2013-06-11 Thread alex23
On Jun 8, 1:53 am, letsplaysf...@gmail.com wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Cocos2D - Won't install and cant find any support Cocos2D is what I tend to recommend. What issues did you have with installing it? For

Re: Python Game Development?

2013-06-08 Thread Ian Foote
On 07/06/13 16:53, letsplaysf...@gmail.com wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year • PyOgre - Linux and Windows only(I do have those, but I want multi-platform)

Re: Python Game Development?

2013-06-08 Thread Jan Riechers
On 07.06.2013 18:53, letsplaysf...@gmail.com wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year • PyOgre - Linux and Windows only(I do have those, but I want

Re: Python Game Development?

2013-06-08 Thread Nobody
On Fri, 07 Jun 2013 08:53:03 -0700, letsplaysforu wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: [snip] There's also Pyglet. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Game Development?

2013-06-08 Thread Fábio Santos
On Fri, 07 Jun 2013 08:53:03 -0700, letsplaysforu wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: It wasn't your question, but I was happy to find out that box2d exists for python. -- http://mail.python.org/mailman/listinfo/python-list

Python Game Development?

2013-06-07 Thread letsplaysforu
I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year • PyOgre - Linux and Windows only(I do have those, but I want multi-platform) • Cocos2D - Won't install and cant find any support

Re: Python Game Development?

2013-06-07 Thread Ian Kelly
On Fri, Jun 7, 2013 at 9:53 AM, letsplaysf...@gmail.com wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year • PyOgre - Linux and Windows only(I do have those, but I want

Re: Python Game Development?

2013-06-07 Thread Eam onn
On Friday, June 7, 2013 5:21:36 PM UTC+1, Ian wrote: On Fri, Jun 7, 2013 at 9:53 AM, letsplaysf...@gmail.com wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year

Re: Python Game Development?

2013-06-07 Thread Ian Kelly
On Fri, Jun 7, 2013 at 10:28 AM, Eam onn letsplaysf...@gmail.com wrote: Do you know of any tutorial for PyGame? Preferably a video tutorial but any tutorial at all is fine! I can't seem to find any, even on pygame.org!!! I'd start here: http://www.pygame.org/wiki/tutorials --

Re: Python Game Development?

2013-06-07 Thread Ian Kelly
On Fri, Jun 7, 2013 at 10:35 AM, Ian Kelly ian.g.ke...@gmail.com wrote: On Fri, Jun 7, 2013 at 10:28 AM, Eam onn letsplaysf...@gmail.com wrote: Do you know of any tutorial for PyGame? Preferably a video tutorial but any tutorial at all is fine! I can't seem to find any, even on pygame.org!!!

Re: Python Game Development?

2013-06-07 Thread Steven D'Aprano
On Fri, 07 Jun 2013 09:28:09 -0700, Eam onn wrote: Do you know of any tutorial for PyGame? Preferably a video tutorial but any tutorial at all is fine! I can't seem to find any, even on pygame.org!!! https://duckduckgo.com/html/?q=pygame+tutorial -- Steven --

Re: Python Game Development?

2013-06-07 Thread Eam onn
On Friday, June 7, 2013 4:53:03 PM UTC+1, Eam onn wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of: • Pygame - As far as I know it's dead and has been for almost a year • PyOgre - Linux and Windows only(I do have those, but I want

Re: Python Game Development?

2013-06-07 Thread Matty Sarro
You could make a fantastic turtle based game with pyturtle! On Fri, Jun 7, 2013 at 1:53 PM, Eam onn letsplaysf...@gmail.com wrote: On Friday, June 7, 2013 4:53:03 PM UTC+1, Eam onn wrote: I was planning on making a small 2D game in Python. Are there any libraries for this? I know of:

Re: Python Game Development?

2013-06-07 Thread Ian Kelly
On Fri, Jun 7, 2013 at 11:53 AM, Eam onn letsplaysf...@gmail.com wrote: Pygame isn't too good. You still need a lot of other libraries from what I understand(like for physics). Is there any alternative for 2D? I don't know of any Python libraries that provide both a rendering engine and a

Re: Python Game Development?

2013-06-07 Thread Dan Stromberg
On Fri, Jun 7, 2013 at 8:53 AM, letsplaysf...@gmail.com wrote: I also understand that Python isn't exactly the *BEST* choice programming a game, but I have heard it is possible. Tell me if it's true. Thanks! One of the Blizzard people told me that it's very common to program game logic in

Re: Python Game Development?

2013-06-07 Thread Larry Hudson
On 06/07/2013 09:28 AM, Eam onn wrote: On Friday, June 7, 2013 5:21:36 PM UTC+1, Ian wrote: On Fri, Jun 7, 2013 at 9:53 AM, letsplaysf...@gmail.com wrote: snip Do you know of any tutorial for PyGame? Preferably a video tutorial but any tutorial at all is fine! I can't seem to find any,

python game develop:framework?

2012-10-14 Thread nepaul
Something good framwork? -- http://mail.python.org/mailman/listinfo/python-list

Re: python game develop:framework?

2012-10-14 Thread Steven D'Aprano
On Sun, 14 Oct 2012 01:58:57 -0700, nepaul wrote: Something good framwork? http://duckduckgo.com/?q=python+%2Bgame+frameworks http://duckduckgo.com/?q=python+%2Bgame+libraries http://blekko.com/ws/?q=python%20game%20framework -- Steven -- http://mail.python.org/mailman/listinfo/python-list

Re: python game develop:framework?

2012-10-14 Thread Jason Benjamin
Pygame is my favorite. It's mature, has good documentation, and has lots of unfinished and finished games on its website. It also supports OpenGL. http://www.pygame.org/ On 10/14/2012 01:58 AM, nepaul wrote: Something good framwork? -- http://mail.python.org/mailman/listinfo/python-list

Re: python game develop:framework?

2012-10-14 Thread LeBas
On 2012-10-14 08:58:57 +, nepaul said: Something good framwork? I just want to sencond PyGame. It's compelling with a good user base and has development activity e.g. patches and improvements etc. are provided. -- http://mail.python.org/mailman/listinfo/python-list

Python Game Programming Challenge (PyWeek) #15 is coming!

2012-08-13 Thread Richard Jones
The 15th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 9th to the 16th of September: http://pyweek.org/ The PyWeek challenge: 1. Invites entrants to write a game in one week from scratch either as an individual or in a team, 2. Is intended to be challenging and fun

Python Game Programming Challenge (PyWeek) #15 is coming!

2012-08-12 Thread Richard Jones
The 15th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 9th to the 16th of September: http://pyweek.org/ The PyWeek challenge: 1. Invites entrants to write a game in one week from scratch either as an individual or in a team, 2. Is intended to be challenging and fun

Python Game Programming Challenge (PyWeek) #14 is coming! [corrected dates]

2012-02-22 Thread Richard Jones
Note: this email corrects the dates given in the previous announcement. The 14th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 6th to the 13th of May. Not April as previously announced. http://pyweek.org/14/ New user registration is NOT YET OPEN. It will open one

Python Game Programming Challenge (PyWeek) #14 is coming!

2012-02-20 Thread Richard Jones
The 14th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 22nd to the 29th of April. http://pyweek.org/14/ New user registration is NOT YET OPEN. It will open one month before the challenge starts. The PyWeek challenge: - Invites entrants to write a game in one week

Python Game Programming Challenge 13 (September 2011) is coming!

2011-07-22 Thread Richard Jones
The 13th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 11th to the 18th of September. The PyWeek challenge: - Invites entrants to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully

Python Game Programming Challenge 13 (September 2011) is coming!

2011-07-21 Thread Richard Jones
The 13th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 11th to the 18th of September. The PyWeek challenge: - Invites entrants to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully

Python Game Programming Challenge 12 (April 2011) is coming!

2011-02-08 Thread Richard Jones
The 12th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 3rd to the 10th of April. The PyWeek challenge: - Invites entrants to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully increase

Python Game Programming Challenge 12 (April 2011) is coming!

2011-02-08 Thread Richard Jones
The 12th Python Game Programming Challenge (PyWeek) is coming. It'll run from the 3rd to the 10th of April. The PyWeek challenge: - Invites entrants to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully increase

10th Python Game Programming Challenge in three weeks

2010-03-05 Thread Richard Jones
The 10th Python Game Programming Challenge (http://pyweek.org/) will run from the 28th of March to the 4th of April. The PyWeek challenge: - Invites entrants to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully

ANN: A forum and project gallery for Python game development

2010-02-25 Thread George Oliver
Pyed Pypers is a community where you can upload your game project, comment on other projects, build teams, ask for technical help, and discuss everything about game development with Python. If this catches your interest, check it out at http://www.pyedpypers.org. --

Python game programming challenge, NUMBER 7, in September!

2008-07-21 Thread richard
The date for the SEVENTH bi-annual PyWeek challenge has been set: Sunday 7th September to Sunday 14th September (00:00UTC to 00:00UTC). http://pyweek.org/ The PyWeek challenge invites entrants to write a game in one week from scratch either as an individual or in a team. Entries must be

Python game programming challenge, NUMBER 7, in September!

2008-07-20 Thread richard
The date for the SEVENTH bi-annual PyWeek challenge has been set: Sunday 7th September to Sunday 14th September (00:00UTC to 00:00UTC). http://pyweek.org/ The PyWeek challenge invites entrants to write a game in one week from scratch either as an individual or in a team. Entries must be

Registration is open for the 5th Python game challenge!

2007-08-04 Thread Richard Jones
information: http://pyweek.org/ THE PYWEEK CHALLENGE: - Invites all Python programmers to write a game in one week from scratch either as an individual or in a team, - Is intended to be challenging and fun, - Will hopefully increase the public body of python game tools, code and expertise

Fifth Python Game Programming Challenge in September

2007-07-15 Thread richard
The 5th Python game programming challenge (PyWeek) has been scheduled for the first week of September: Start: 00:00UTC Sunday 2nd September Finish: 00:00UTC Sunday 9th September REGISTRATION IS NOT YET OPEN Registration will open at the start of August. Visit the PyWeek website for more

Another Python Game Programming Challenge concludes

2007-04-25 Thread ???? ???
The fourth Python Game Programming Challenge (PyWeek) has now concluded with judges (PyWeek being peer-judged) declaring the winners: Individual: Which way is up? by Hectigo http://www.pyweek.org/e/Hectic/ Team: Bubble Kong by The Olde Battleaxe http://www.pyweek.org/e/toba4

Re: Another Python Game Programming Challenge concludes

2007-04-25 Thread Terry Reedy
??? [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | The fourth Python Game Programming Challenge (PyWeek) has now concluded | with | judges (PyWeek being peer-judged) declaring the winners: | | Individual: Which way is up? by Hectigo |http://www.pyweek.org/e/Hectic

Re: Another Python Game Programming Challenge concludes

2007-04-25 Thread Richard Jones
Terry Reedy wrote: ??? [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | The fourth Python Game Programming Challenge (PyWeek) has now concluded | with | judges (PyWeek being peer-judged) declaring the winners: | | Individual: Which way is up? by Hectigo |http

Re: Another Python Game Programming Challenge concludes

2007-04-25 Thread Richard Jones
Richard Jones wrote: Terry Reedy wrote: ??? [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | The fourth Python Game Programming Challenge (PyWeek) has now concluded | with | judges (PyWeek being peer-judged) declaring the winners: | | Individual: Which way is up

Another Python Game Programming Challenge concludes

2007-04-21 Thread Richard Jones
The fourth Python Game Programming Challenge (PyWeek) has now concluded with judges (PyWeek being peer-judged) declaring the winners: Individual: Which way is up? by Hectigo http://www.pyweek.org/e/Hectic/ Team: Bubble Kong by The Olde Battleaxe http://www.pyweek.org/e/toba4

Python Game Programming Challenge #4 -- theme voting has started!

2007-03-24 Thread Richard Jones
The next PyWeek game programming challenge starts next Sunday at 00:00UTC. If you're interested, there's definitely still time to sign up to the challenge. http://www.pyweek.org/ Theme voting has started. You may now log into (or sign up to ;) the PyWeek website to lodge your vote for theme.

The 3rd Python Game Programming Challenge is Over!

2006-09-23 Thread richard
PyWeek #3 has now finished with the judging results coming in and declaring the winners to be: Individual - Bouncy the Hungry Rabbit http://www.pyweek.org/e/bouncy/ Team - Typus Pocus http://www.pyweek.org/e/PyAr2/ Congratulations to everyone who entered! The full list of entries is

Python Game Challenge results (and new hosting) UP!

2006-05-09 Thread Richard Jones
After some problems with hosting which were solved thanks to the PSF the PyWeek site is back. http://www.pyweek.org/ Go see the results of the challenge, in particular the outstanding Nelly's Rooftop Garden and Trip on the Funny Boat. PyWeek challenges entrants to develop a complete game in

python game with curses

2006-04-28 Thread Jerry Fleming
Hi, I have wrote a game with python curses. The problem is that I want to confirm before quitting, while my implementation doesn't seem to work. Anyone can help me? [code] #!/usr/bin/python # # Brick Ball in Python # by Jerry Fleming [EMAIL PROTECTED] # # This is a small game adapted from that

Re: python game with curses

2006-04-28 Thread Harold Fellermann
Jerry, if you want anyone to answer your question, please read this: http://www.catb.org/~esr/faqs/smart-questions.html -- http://mail.python.org/mailman/listinfo/python-list

PyWeek Python Game Programming Challenge, The Second!

2006-02-24 Thread richard
The date for the second PyWeek challenge has been set: Sunday 26th March to Sunday 2nd April (00:00UTC to 00:00UTC). The PyWeek challenge invites entrants to write a game in one week from scratch either as an individual or in a team. Entries must be developed in Python, during the challenge, and

OpenRTS - new OSS Python game

2006-02-01 Thread Andreas R.
OpenRTS is a new open source project, with the aim of creating a realtime strategy game. The game is developed in Python with Pygame. See http://www.openrts.org for more info about the game if you are interested. -- http://mail.python.org/mailman/listinfo/python-list

Re: OpenRTS - new OSS Python game

2006-02-01 Thread Sybren Stuvel
Andreas R. enlightened us with: OpenRTS is a new open source project, with the aim of creating a realtime strategy game. The game is developed in Python with Pygame. See http://www.openrts.org for more info about the game if you are interested. To be honest, it looks very much like games from

Re: OpenRTS - new OSS Python game

2006-02-01 Thread Christoph Conrad
Hello Sybren, To be honest, it looks very much like games from 1995... You should notice: It's a first alpha version. Freundliche Grüße, Christoph -- http://mail.python.org/mailman/listinfo/python-list

Re: OpenRTS - new OSS Python game

2006-02-01 Thread Andreas R.
Sybren Stuvel wrote: To be honest, it looks very much like games from 1995... The game has isometric graphics. It's possible to have nice isometric graphics, ie. look at Civilization 3. Besides, there's a lot more to a good strategy game than good looks. --

Re: OpenRTS - new OSS Python game

2006-02-01 Thread Sybren Stuvel
Andreas R. enlightened us with: The game has isometric graphics. It's possible to have nice isometric graphics, ie. look at Civilization 3. Besides, there's a lot more to a good strategy game than good looks. True. That's why I only commented on the graphics - that's the only visible thing

Re: Python game coding

2005-09-20 Thread simonwittber
This article describes a system very similar to my own. shameless plug The LGT library (http://developer.berlios.de/projects/lgt) provides a simple, highly tuned 'microthread' implementation using generators. It is called NanoThreads. It allows a microthread to be paused, resumed, and killed,

Re: Python game coding

2005-09-19 Thread TPJ
OT: BTW: I wonder if and when someone will use stackless python (...) And what is this stackless python? I have visited it's homepage, but I wasn't able to find any answer. (Well, I have found out, that stackles python is python's implementation that doesn't use C stack, but it tells me

Re: Python game coding

2005-09-19 Thread Diez B. Roggisch
TPJ wrote: OT: BTW: I wonder if and when someone will use stackless python (...) And what is this stackless python? I have visited it's homepage, but I wasn't able to find any answer. (Well, I have found out, that stackles python is python's implementation that doesn't use C stack, but

Re: Python game coding

2005-09-18 Thread Alessandro Bottoni
Lucas Raab wrote: Saw this on Slashdot (http://developers.slashdot.org/article.pl?sid=05/09/17/182207from=rss) and thought some people might be interested in it. Direct link to the article is http://harkal.sylphis3d.com/2005/08/10/multithreaded-game-scripting-with-stackless-python/ Very

Re: Python game coding

2005-09-18 Thread Diez B. Roggisch
Very interesting! BTW: I wonder if and when someone will use stackless python or pygame as a basis for developing a _visual_ development environment for 2D games/multimedia like Macromedia Director. It would be a killer app. Blender. It currently doesn't use stacklass AFAIK, but that

Re: Python game coding

2005-09-18 Thread Diez B. Roggisch
Diez B. Roggisch wrote: Very interesting! BTW: I wonder if and when someone will use stackless python or pygame as a basis for developing a _visual_ development environment for 2D games/multimedia like Macromedia Director. It would be a killer app. Blender. It currently doesn't use

Re: Python game coding

2005-09-18 Thread Alessandro Bottoni
Diez B. Roggisch wrote: Diez B. Roggisch wrote: Very interesting! BTW: I wonder if and when someone will use stackless python or pygame as a basis for developing a _visual_ development environment for 2D games/multimedia like Macromedia Director. It would be a killer app. Blender. It

Python game coding

2005-09-17 Thread Lucas Raab
Saw this on Slashdot (http://developers.slashdot.org/article.pl?sid=05/09/17/182207from=rss) and thought some people might be interested in it. Direct link to the article is http://harkal.sylphis3d.com/2005/08/10/multithreaded-game-scripting-with-stackless-python/ --

Update: Python Game Programming Challenge

2005-08-20 Thread richard
The Python Game Programming Challenge (otherwise known as PyWeek) is only a week away from starting! Theme voting has started! http://www.mechanicalcat.net/tech/PyWeek/1 Richard -- http://mail.python.org/mailman/listinfo/python-list

Ann: Registration for the Python Game Programming Challenge is now open!

2005-07-28 Thread pyweek1
Registration is now open for the first Python Game Programming Challenge (also known as PyWeek). The challenge runs from Sunday August 28th to Sunday September 4th. That means there's only (checks website) 29 days to go before the challenge starts! Full details about the challenge

Python Game Programming Challenge update

2005-07-21 Thread pyweek1
There's only one week to go before registration opens for the first Python Game Programming Challenge (also known as PyWeek). That means there's only (checks website) 37 days to go before the challenge starts! If you have a Python-based graphics, sound, music or game library that you'd like

Re: Ann: The first PyWeek Python Game Programming Competition

2005-07-08 Thread Lee Harr
See the competition timetable (including competition dates in various timezones), rules, sign-up (commencing 6th August) at: http://www.mechanicalcat.net/tech/PyWeek Sounds like fun. One thing. From the website ... Clip Art note: more links welcome How about:

Re: Ann: The first PyWeek Python Game Programming Competition

2005-07-08 Thread richard
Lee Harr wrote: Clip Art note: more links welcome How about: http://www.openclipart.org/ Thanks! Richard (aka PyWeek organiser bunny) -- http://mail.python.org/mailman/listinfo/python-list

Ann: The first PyWeek Python Game Programming Competition

2005-07-07 Thread pyweek1
and fun, - Will hopefully increase the public body of python game tools, code and expertise, - Will let a lot of people actually finish a game, and - May inspire new projects (with ready made teams!) Entries must be developed during the competition, and must incorporate some theme decided at the start