Re: [pygame] AI bug

2007-04-29 Thread Casey Duncan
Actually if you use tile coordinates you shouldn't need to detect this ahead of time. Typically an attack is the same command as a move except that the destination square is occupied. So, you can just make it so that when the monster attempts to move into the ninja's square, it attacks the

[pygame] pygame and Ubuntu

2007-04-29 Thread Jason Coggins
I am trying to install pygame on the Ubuntu Linux operating system but I cannot find it in any software repository. Could someone tell me where to find a copy in a software repository for Ubuntu? Jason

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread DR0ID
Jason Coggins schrieb: I am trying to install pygame on the Ubuntu Linux operating system but I cannot find it in any software repository. Could someone tell me where to find a copy in a software repository for Ubuntu? Jason Hi I have installed ubuntu 7.04 recently and found pygame in the

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Mark Mruss
I have the pygame package listed as python-pygame in synaptic on my Debain box. mark. On 4/29/07, Jason Coggins [EMAIL PROTECTED] wrote: I am trying to install pygame on the Ubuntu Linux operating system but I cannot find it in any software repository. Could someone tell me where to find a

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Jason Coggins
Alright, I found the package and installed it but for some reason none of the python programs I wrote will run on Ubuntu. They run perfectly fine on windows. I already have Python 2.5 installed on Ubuntu. Is there anything else I should get to make python run on Ubuntu? Jason -

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread [EMAIL PROTECTED]
How are you trying to run them ? I have not had alot of success with the open with python right click thing.. (but that's me, yours might work fine) I usually just open a terminal, navigate to the directory containing the program and type .. python myprogram.py --- On Sun 04/29, Jason

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Jason Coggins
I am trying to run them from the desktop by double clicking on them then selecting either run or run in terminal from the box that pops up. I tried right clicking on the program to select open with python but that was not an option. When I right clicked and selected open with another

Re: [pygame] movies

2007-04-29 Thread Martin
Jason Coggins wrote: I noticed the documentation states that pygame.move does not work on windows. Does anyone know how to fix this problem? As far as I can tell, it does work, with only minor restrictions. I detailed this in my first post on this list. You can read it in the archives:

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Charles Joseph Christie II
On Sunday 29 April 2007 05:38:33 pm Jason Coggins wrote: I am trying to run them from the desktop by double clicking on them then selecting either run or run in terminal from the box that pops up. I tried right clicking on the program to select open with python but that was not an option.

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Charles Joseph Christie II
On Sunday 29 April 2007 05:38:33 pm Jason Coggins wrote: I am trying to run them from the desktop by double clicking on them then selecting either run or run in terminal from the box that pops up. I tried right clicking on the program to select open with python but that was not an option.

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread [EMAIL PROTECTED]
Open a terminal.. Applications..Accessories..Terminal Then type cd Desktop (notice the uppercase D) type ls It will list the files on the Desktop (just like dir) type python yourprogram.py (whatever it is named) See if that works.. --- On Sun 04/29, Jason Coggins [EMAIL PROTECTED] wrote:

Re: [pygame] Free Graphic Tileset / Automatic Use of Coast Tiles

2007-04-29 Thread Greg Ewing
Kris Schnee wrote: What if I assumed that sand in slot (1.0,1.0) meant that there was sand at _that exact point_? That's an equivalent way of thinking about it. Use whichever works best for you. the Circle tileset includes only whole-tile, fade-to-north, fade-to-east, and fade-to-northeast

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Jason Coggins
Ahhh, its working now. Thanks to everyone for your help. Jason - Original Message - From: [EMAIL PROTECTED] To: pygame-users@seul.org Sent: Sunday, April 29, 2007 6:01 PM Subject: Re: [pygame] pygame and Ubuntu Open a terminal.. Applications..Accessories..Terminal Then type cd

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Charles Joseph Christie II
On Sunday 29 April 2007 09:51:31 pm Jason Coggins wrote: I am currently using Wing IDE on Windows. I will see if Wing IDE works on Linux but if Wing IDE doesn't work on Linux I will check out Eric3. Do you have a link for it? Jason - Original Message - From: Charles Joseph

Re: [pygame] Free Graphic Tileset / Automatic Use of Coast Tiles

2007-04-29 Thread Kris Schnee
Greg Ewing wrote: Kris Schnee wrote: What if I assumed that sand in slot (1.0,1.0) meant that there was sand at _that exact point_? That's an equivalent way of thinking about it. Use whichever works best for you. Got it! Still need to do bookkeeping and image transformation to use the full

Re: [pygame] pygame and Ubuntu

2007-04-29 Thread Andrew Pape
Hi Jason, I am trying to install pygame on the Ubuntu Linux operating system but I cannot find it in any software repository. Could someone tell me where to find a copy in a software repository for Ubuntu? Look for python-pygame with Synaptic package manager. That's where I found it.