Re: [pygame] Pygame and windows managers

2008-11-13 Thread René Dudfield
Have you tried reporting a bug to them?

Sounds like an distro/OS level problem.

On Thu, Nov 13, 2008 at 12:04 PM, Bram Cymet [EMAIL PROTECTED] wrote:
 Lenard Lindstrom wrote:
 Bram Cymet wrote:
 One thing I just noticed is that when I run pygame.display.get_driver()
 it returns fbcon where I am thinking this should return x11. Is there
 anywhere I can set the display driver that pygame uses?


 Set the SDL_VIDEODRIVER environment variable to 'x11'. I have just
 added this question in the Pygame FAQ:

 http://www.pygame.org/wiki/FrequentlyAskedQuestions

 Thanks for the tip. I had tried that one, just found it earlier today.
 After doing it is says something like video system no initialized and
 pygame.init() returns (5,1) so something failed. I am thinking there is
 a driver missing somewhere I am just sure what I need to install.

 --
 Bram Cymet
 Software Developer
 Centre For Technological Innovation
 Canadian Bank Note Co. Ltd.
 Cell: 613-608-9752





[pygame] Pygame and windows managers

2008-11-12 Thread Bram Cymet
Hi,

I am currently using pygame on a xandros linux based eee pc. When I run
pygame.init() and then pygame.display.info() I get that the system in
not compatible with a windows manager. I know that it is because I can
open other stuff in windows within the OS.

Any ideas what could be going on?

Thanks

-- 
Bram Cymet
Software Developer
Centre For Technological Innovation
Canadian Bank Note Co. Ltd.
Cell: 613-608-9752




Re: [pygame] Pygame and windows managers

2008-11-12 Thread Bram Cymet
One thing I just noticed is that when I run pygame.display.get_driver()
it returns fbcon where I am thinking this should return x11. Is there
anywhere I can set the display driver that pygame uses?

Bram Cymet wrote:
 Hi,

 I am currently using pygame on a xandros linux based eee pc. When I run
 pygame.init() and then pygame.display.info() I get that the system in
 not compatible with a windows manager. I know that it is because I can
 open other stuff in windows within the OS.

 Any ideas what could be going on?

 Thanks

   


-- 
Bram Cymet
Software Developer
Centre For Technological Innovation
Canadian Bank Note Co. Ltd.
Cell: 613-608-9752




Re: [pygame] Pygame and windows managers

2008-11-12 Thread Patrick Mullen
It looks like your eee pc is using directfb or some sort rather than
standard x11.  fbcon = framebuffer console maybe?  Not sure.

I did some googling and found some reports of people having trouble in
this regard, with other reports of it working.

By the way, have you tried skipping the display.info and just trying
to use pygame anyway?  Also an actual error log might be helpful.


Re: [pygame] Pygame and windows managers

2008-11-12 Thread Bram Cymet
Thanks for the response,

I have tried just using pygame regardless. I only actually found out
about the info stuff while trying to debug problems.

The actual problem I am having is that the only mode that pygame seems
to see is 640X480 even though the screen in the eee pc can do 1200X800
and I am using it with an external display and I need it to do 1360X768
which is outputting just fine with other applications.

Patrick Mullen wrote:
 It looks like your eee pc is using directfb or some sort rather than
 standard x11.  fbcon = framebuffer console maybe?  Not sure.

 I did some googling and found some reports of people having trouble in
 this regard, with other reports of it working.

 By the way, have you tried skipping the display.info and just trying
 to use pygame anyway?  Also an actual error log might be helpful.
   


-- 
Bram Cymet
Software Developer
Centre For Technological Innovation
Canadian Bank Note Co. Ltd.
Cell: 613-608-9752




Re: [pygame] Pygame and windows managers

2008-11-12 Thread claudio canepa
On Wed, Nov 12, 2008 at 6:02 PM, Bram Cymet [EMAIL PROTECTED] wrote:

 Thanks for the response,

 I have tried just using pygame regardless. I only actually found out
 about the info stuff while trying to debug problems.

 The actual problem I am having is that the only mode that pygame seems
 to see is 640X480 even though the screen in the eee pc can do 1200X800
 and I am using it with an external display and I need it to do 1360X768
 which is outputting just fine with other applications.

 Patrick Mullen wrote:
  It looks like your eee pc is using directfb or some sort rather than
  standard x11.  fbcon = framebuffer console maybe?  Not sure.
 
  I did some googling and found some reports of people having trouble in
  this regard, with other reports of it working.
 
  By the way, have you tried skipping the display.info and just trying
  to use pygame anyway?  Also an actual error log might be helpful.
 


 --
 Bram Cymet
 Software Developer
 Centre For Technological Innovation
 Canadian Bank Note Co. Ltd.
 Cell: 613-608-9752


 Found by google, seems that this person has managed to setting pygame in
the eeepc, maybe you can ask him:
http://eis.comp.lancs.ac.uk/~carl/blog/2008/09/eeepc-headaches/
A link from him also points to a page about how to configure the xandros
display for certain resolutions:
http://www.thinkwiki.org/wiki/Xorg_RandR_1.2#Using_xrandr_to_do_useful_things
hth
--
claxo


Re: [pygame] Pygame and windows managers

2008-11-12 Thread yanom @linuxmail.org
commercial Linux? Ugh!
 - Original Message -
 From: Bram Cymet [EMAIL PROTECTED]
 To: pygame-users@seul.org
 Subject: [pygame] Pygame and windows managers
 Date: Wed, 12 Nov 2008 13:08:48 -0500
 
 
 Hi,
 
 I am currently using pygame on a xandros linux based eee pc. When I run
 pygame.init() and then pygame.display.info() I get that the system in
 not compatible with a windows manager. I know that it is because I can
 open other stuff in windows within the OS.
 
 Any ideas what could be going on?
 
 Thanks
 
 --
 Bram Cymet
 Software Developer
 Centre For Technological Innovation
 Canadian Bank Note Co. Ltd.
 Cell: 613-608-9752




=
Handmade Goat Milk Soap
All natural homemade unscented moisturizing soap with Goat's milk.
http://a8-asy.a8ww.net/a8-ads/adftrclick?redirectid=aeaa3b6cb249fe5d596b1fba86996541


-- 
Powered by Outblaze


Re: [pygame] Pygame and windows managers

2008-11-12 Thread Lenard Lindstrom

Bram Cymet wrote:

One thing I just noticed is that when I run pygame.display.get_driver()
it returns fbcon where I am thinking this should return x11. Is there
anywhere I can set the display driver that pygame uses?

  

Set the SDL_VIDEODRIVER environment variable to 'x11'. I have just added 
this question in the Pygame FAQ:


http://www.pygame.org/wiki/FrequentlyAskedQuestions

--
Lenard Lindstrom
[EMAIL PROTECTED]



Re: [pygame] Pygame and windows managers

2008-11-12 Thread Bram Cymet
Lenard Lindstrom wrote:
 Bram Cymet wrote:
 One thing I just noticed is that when I run pygame.display.get_driver()
 it returns fbcon where I am thinking this should return x11. Is there
 anywhere I can set the display driver that pygame uses?

  
 Set the SDL_VIDEODRIVER environment variable to 'x11'. I have just
 added this question in the Pygame FAQ:

 http://www.pygame.org/wiki/FrequentlyAskedQuestions

Thanks for the tip. I had tried that one, just found it earlier today.
After doing it is says something like video system no initialized and
pygame.init() returns (5,1) so something failed. I am thinking there is
a driver missing somewhere I am just sure what I need to install.

-- 
Bram Cymet
Software Developer
Centre For Technological Innovation
Canadian Bank Note Co. Ltd.
Cell: 613-608-9752