Re: [pygame] circular movement in pygame

2015-04-28 Thread Gino Ingras
for plat in platforms: plat is a local variable inside loop. try to use somethink as: for idx, plat in enumerate(platforms): platforms[idx]... ... 2015-04-28 22:52 GMT+02:00 Charles Cossé : > he has r=200 so nothing to do with rounding errors > > On Tue, Apr 28, 2015 at 2:46 PM, Jeffrey Kle

Re: [pygame] Pygame_sdl2

2015-04-07 Thread Gino Ingras
you mentioned that it is better to use pygame_sdl2 for mobile apps. how do you do that? 2015-04-08 5:01 GMT+02:00 Michael Lutynski < mich...@callthecomputerdoctor.com>: > I too am very stoked to hear about the pygame1 release and the > pygame_sdl2! This is wonderful!! > > > > ~ Michael > > > > O

Re: [pygame] Updated Compilation Instructions for Ubuntu

2015-03-13 Thread Gino Ingras
ect-Pong-2878-.html i don't know if these games tested really works with python3 (maybe only for windows?). do you have an application link where python3+pygame1.9.1 is working? 2015-03-13 17:56 GMT+01:00 William Manire : > Awesome! Thanks for verifying. > > On Fri, Mar 13, 2015 at

Re: [pygame] Updated Compilation Instructions for Ubuntu

2015-03-13 Thread Gino Ingras
had tested intall on pysical machine mint17, i3-2100 CPU @ 3.10GHz you've forgot : #apt-get install libfreetype6-dev install work great... >>> import pygame >>> pygame.version.ver '1.9.2a0' and it seems to work like a charm. pygame doesn't appear in package manager (should be a .deb package?).

[pygame] pygame.org commented project alert.

2015-03-11 Thread Gino Ingras
how to know if someone had post a comment on your project? for sure, without checking every day, is there an email feedback possible?

Re: [pygame]

2015-02-25 Thread Gino Ingras
usually, i work only in linux. windows is for compliant tests, as i want my programs work on both with minimum modification. most of linux distro (debian based) have pygame 1.9.1 default package. so, sens "CORRECT" on your question is "do i work with standard" or "why it doesn't work for me" ? 2

Re: [pygame]

2015-02-23 Thread Gino Ingras
what is your Python version? what is your Windows version? i use pygame-1.9.1.win32-py2.7.msi with python 2.7.9 on winSeven 64bits, and works well. uninstall any older version before try an other... pygame 1.9.2 is apha revision yet, as i know. 2015-02-23 8:08 GMT+01:00 diliup gabadamudalige :

Re: [pygame] Can I download all game source files easily?

2015-02-17 Thread Gino Ingras
how many sources do you intend to get? on a linux debian system (you then probably know how get sources easly), command #apt-get install apt-redepends $apt-rdepends -r python-pygame return (at least): angrydd ardentryst balazar3-2d balazar3 bambam bouncy bubbros castle-combat childsplay ffrenzy

[pygame] create account on pygame.org

2015-02-15 Thread Gino Ingras
would like an admin please, mail me to setup an account on pygame.org. my project: http://sourceforge.net/projects/pybreak360/ thanks,

Re: [pygame] pyg_mixer.music.load doesn't take non ascii chars

2015-02-14 Thread Gino Ingras
Bo, i just forgot one last think in my copy/paste code. last but not least, otherwise it effectively don't work. from codecs import open are you sure that file is compliant? i'd test my code on linux and win7, both work well with same code and same ogg file. and i have sames errors as youres if

Re: [pygame] pyg_mixer.music.load doesn't take non ascii chars

2015-02-14 Thread Gino Ingras
mixer.music.set_volume(0.5) 2015-02-14 11:46 GMT+01:00 Gino Ingras : > you should learn about codecs strings inputs/output. > ensure you always work with the same, utf8. > most of python modules are based on, and python3 assume by default as in > python2 you got > > from __fut

Re: [pygame] pyg_mixer.music.load doesn't take non ascii chars

2015-02-14 Thread Gino Ingras
you should learn about codecs strings inputs/output. ensure you always work with the same, utf8. most of python modules are based on, and python3 assume by default as in python2 you got from __future__ import unicode_literals see (in french, sorry) a good link: http://sametmax.com/lencoding-en-py

Re: [pygame] pyg_mixer.music.load doesn't take non ascii chars

2015-02-14 Thread Gino Ingras
assume in line 2: # -*- coding: utf8 -*- ... from codecs import open ... #don't know if your file_path is hard coded, if not you may file_path = file_path.decode('utf8') ... #and then, as Greg told: pygame.mixer.music.load(open(file_path)) work fine on win7 and linux(Mint17) 2015-02-14 2:00 GMT+

Re: [pygame] pyg_mixer.music.load doesn't take non ascii chars

2015-02-13 Thread Gino Ingras
do you had try file_path.replace(' ', '\\ ') ? 2015-02-14 1:23 GMT+01:00 Bo Jangeborg : > I am trying to open an ogg file with: > > file_path = "07-Boabdil, Bulerías.ogg" > pygame.mixer.music.load(file_path) > > But I get an Error message saying that one of the unicode characters > are out of r

Re: [pygame] Pygame non-MPEG1 video options?

2015-02-13 Thread Gino Ingras
if you just want to play a movie, you can do it outside pygame, using others python binding, such as mpylayer. - run the pygame appllication. - launch the movie. - stop the movie. - return to pygame screen. 2015-02-13 18:59 GMT+01:00 Brian Madden : > Oh man that would be awesome! Unfortunately

Re: [pygame] registration

2015-02-12 Thread Gino Ingras
Hi (Bonsoir maybe?) René, where did you sent the link? This is my project: http://sourceforge.net/projects/pybreak360/?source=navbar Regards, 2015-02-12 14:57 GMT+01:00 René Dudfield : > Hi, > > there are a few people who know a secret link, which we hand out to new > people. > > I've sent the

Re: [pygame] Bug in pygame.draw.ellipse

2015-02-11 Thread Gino Ingras
Would like an admin please email me to set up an account on pygame.org 2015-02-09 15:58 GMT+01:00 Lorenz Quack : > Not a bug in SDL since the draw.ellipse function implements the ellipse > logic itself. > I didn't try to reproduce the code but it makes sense from looking at the > source. There ar