Tagged Questions

For issues relating to using the Pyglet software library.

learn more… | top users | synonyms

21
votes
5answers
7k views

Differences between Python game libraries Pygame and Pyglet?

I've had some experience with Pygame, but there seems to be a lot of buzz around Pyglet these days. How do these two libraries compare? What would be the advantage of using one over the other, both ...
12
votes
7answers
3k views

PyOpenGl or pyglet?

I am looking to do some tinkering with openGL and Python and haven't been able to find good reasons for using PyOpenGl versus pyglet Which would you recommend and why?
11
votes
2answers
7k views

Start with pyglet or pygame?

I would like to know what is the best to start with, pyglet or pygame? Which one is faster and which one is more active? I would also like to know if pyglet will get python 3 support, because I have ...
5
votes
2answers
566 views

Programmatic control of python optimization?

I've been playing with pyglet. It's very nice. However, if I run my code, which is in an executable file (call it game.py) prefixed with the usual #!/usr/bin/env python by doing ./game.py then ...
4
votes
1answer
346 views

Where is there a PyopenGL Tutorial?

I've looked everywhere for a tutorial, even at Stack Overflow! I know, there are other 3d libraries but they do all the work and pyglet doesn't work with my version of Python. It's Python 2.7. So, ...
4
votes
2answers
297 views

Taking a screenshot with Pyglet [Fix'd]

In the pyglet docs, I found: The following example shows how to grab a screenshot of your application window: pyglet.image.get_buffer_manager().get_color_buffer().save('screenshot.png') ...
4
votes
3answers
295 views

Problem with creating a 2D interface in a 3D openGL world

I am working on a project that requires that I create a 2D interface rendered "on top" or a 3D world. On some other forums, I read that you could use "GluOrtho2D()" for the job, and switch back to ...
3
votes
2answers
1k views

HDR, adaptive tone mapping and MSAA in GLSL

In an effort to teach myself OpenGL, I am working my way trough the 5th edition of the Superbible. I am currently trying to figure out how to combine HDR and MSAA (as described in chapter 9). For ...
3
votes
2answers
754 views

basic openGL, vertex buffers and pyglet

Edit: rotoglup found the problems in my code, adding the shaders I had removed completed the solution. See my answer below for the correct code (with shaders). Hi all ! I'm trying to learn some ...
3
votes
2answers
726 views

mixing 2d and 3d in opengl (using pyglet)

I am trying to mix 2d and 3d in opengl in pyglet, i.e. draw a 3d scene then switch to orthographic projection and draw stuff over the top. I draw the 3d stuff, push the projection matrix to the stack, ...
3
votes
2answers
1k views

Pyglet OpenGL drawing anti-aliasing

I've been looking around for a way to anti-alias lines in OpenGL, but none of them seem to work... here's some example code: import pyglet ...
3
votes
3answers
283 views

Pyglet, how to make the ESCAPE key not close the window?

I am writing a small sample program and I would like to override the default pyglet's behavioyr of ESC closing the app. I have something to the extent of: window = pyglet.window.Window() ...
3
votes
4answers
362 views

Pythonic and efficient way of finding adjacent cells in grid

I am building a tile based app in Python using pyglet/openGL wherein I'll need to find the all of the adjacent cells for a given cell. I am working in one quadrant of a Cartesian grid. Each cell has ...
3
votes
3answers
1k views

Python Video Framework

I'm looking for a Python framework that will enable me to play video as well as draw on that video (for labeling purposes). I've tried Pyglet, but this doesn't seem to work particularly well - when ...
2
votes
5answers
308 views

Development frameworks for 2D game?

I wanted to start working on a simple game concept I have, just as a side project/hobby/learning experience. Pygames or Pyglet came immediately to mind, but it looks like they aren't being actively ...
2
votes
3answers
266 views

Converting a hexadecimal character to an int in python

I'm using the graphics library pyglet to do some drawing, and want to get the resulting image out as a python list (so I can convert it to a numpy array). Pyglet gives me a string of hex characters, ...
2
votes
1answer
640 views

OpenGL basics: calling glDrawElements once per object

continuing on from my explorations of the basics of OpenGL (see this question), I'm trying to figure out the basic principles of drawing a scene with OpenGL. I am trying to render a simple cube ...
2
votes
2answers
370 views

Is it possible to import a 3D model into pyglet?

Me and a friend are working on an openGL game written in python, using the pyglet library. Now we finished the map drawing code, and have come to a point where we need to import some models that will ...
2
votes
4answers
1k views

Why doesn't pyGame or pyglet support python 3?

I have been looking into various game design modules for python such as pyglet and pyGame. I have noticed that both of these seem to only be compatible with python 2. Seeing as python 3 is the most ...
2
votes
2answers
171 views

How to organise the structure of a 3D game?

This is a bit of a vague question but bear with me. I am in the process of writing a game using Python/Pyglet and openGL. I currently have it structured so that there is an object called 'world', in ...
2
votes
2answers
154 views

OpenGL: Model doesn't look right when loaded in python

I have a blender model and below is a image of how my model renders when I load it into python. It looks like the normals are all messed up. I am using the correct normal for each vertex. I'm ...
2
votes
2answers
298 views

TypeError: unsupported operand type(s)

This is a program I'm writing that's supposed to display some text in a window... import pyglet from pyglet import window from pyglet.text.layout import TextLayout class ...
2
votes
3answers
457 views

“TypeError: draw() takes exactly 1 non-keyword argument (3 given)”

I wrote this code to open a window with Pyglet in Python... import pyglet from pyglet import window class Window(pyglet.window.Window): def __init__(self): super(Window, self).__init__() ...
2
votes
3answers
347 views

Rendering mathematical notation in Python / OpenGL?

How can I render mathematical notations / expressions in Python with OpenGL? I'm actually using pyglet however it uses OpenGL. Such things as this: I can't store static images as I am generating ...
2
votes
1answer
380 views

detecting two simultaneous keys in pyglet (python)

I wanted to know how to detect when two keys are simultaneously pressed using pyglet. I currently have def on_text_motion(self, motion): (dx,dy) = ARROW_KEY_TO_VERSOR[motion] ...
1
vote
2answers
35 views

numpy array is shown incorrect with pyglet

I have problems with displaying a numpy array with pyglet. I have found a very similar topic (http://stackoverflow.com/questions/3165379/how-to-display-a-numpy-array-with-pyglet) that I used. I want ...
1
vote
0answers
32 views

How do I debug a python/pyglet memory leak?

I'm running my game code on pyglet 1.1.4, and am seeing what looks to me like a memory leak. That is, while the code is executing the RSS continually increases until eventually my laptop starts ...
1
vote
2answers
142 views

is it possible to run pygame or pyglet in a browser?

I have 3 game libraries installed on my PC: pyglet, pygame and Panda3D. I would like to create a 2D game and make it a web browser game so i can put it on facebook. I know that Panda3D has a ...
1
vote
1answer
120 views

Python Opengl Texture Repeat

I am a beginner in opengl. I am trying to repeat the texture on the GL_QUADS. So far Here is the code for loading the texture, file = os.path.join('image','texture.png') surface = ...
1
vote
1answer
74 views

Pyglet: equivalent of pygame.Rect

I am contemplating migrating from pygame to pyglet (main reason: move from Python to Pypy). However, I found no rectangle collision tools in the pyglet doc, while I use pygame.Rect quite often. Do ...
1
vote
1answer
101 views

where is the button widget in pyglet ?

i'm checking out pyglet, but, funny enough, i can't find how to do a simple button! so what is the standard way to create a standard button? is there a standard way to create a Message-Box? ...
1
vote
1answer
81 views

Resource Not Found Exception in pyglet

I'm using Python 2.6.6 and pyglet 1.1.4. In my "Erosion" folder, I have "Erosion.py" and a folder named "Images." Inside images, there are .png images. One image is named "Guard.png." In "Erosion.py" ...
1
vote
1answer
186 views

How to PyOpengl or pyglet to draw on top of desktop?

I'm writing an application that is looking to draw basic polygons and ellipses on the Windows 7 desktop using OpenGL. According to this previous question, this is possibly by getting the window handle ...
1
vote
1answer
145 views

Win32 event loop appearing to be the program bottleneck

I am making a game in Python with Pyglet. I have just finished the display part, and getting issues with speed. Like a good person, I profiled, and got the following: (uninteresting bits excluded; ...
1
vote
4answers
392 views

Switching scenes with pyglet

Can anybody recommend how to switch between scenes in pyglet. I.e. menu > game game > menu menu > help ect The only way that i can think to do it off the top of my head is by using different ...
1
vote
1answer
289 views

coordinates changed when migrating from pygame+rabbyt to pyglet+rabbyt

I'm working on a 2D game and decided to switch from SDL to OpenGL. I took rabbyt as an opengl wrapper for rendering my sprites and using pymunk (chipmunk) for my physics. I used pygame for creating ...
1
vote
2answers
337 views

how to display a numpy array with pyglet?

I have a label matrix with dimension (100*100), stored as a numpy array, and I would like to display the matrix with pyglet. My original idea is to use this matrix to form a new pyglet image using ...
1
vote
2answers
311 views

Python “draw() must be called with Label instance as first argument (got _WindowMetaclass instance instead)”

This is a class I made using Python with pyglet to display a window. class Window(pyglet.window.Window): def __init__(self): super(Window, self).__init__() ...
1
vote
0answers
364 views

pyglet and animated gif

I have a message box pop up when a certain operation is being executed sort of "wait..." window and I want to have a "loading" *.gif animation there to lighten up the mood :) Anyways I can't seem to ...
1
vote
1answer
637 views

motion computation from video using pyglet in python

I am writing a simple motion detection program but i want it to be cross platform so im using python and the pyglet library since it provides a simple way to load videos in different formats ...
1
vote
2answers
278 views

Play Subset of audio file using Pyglet

How can I use the pyglet API for sound to play subsets of a sound file e.g. from 1 second in to 3.5seconds of a 6 second sound clip? I can load a sound file and play it, and can seek to the start of ...
1
vote
3answers
1k views

OpenGL Picking with Pyglet

I'm trying to implement picking using Pyglet's OpenGL wrapper, but I'm having trouble converting a C tutorial to Python. Specifically the part below. #define BUFSIZE 512 GLuint selectBuf[BUFSIZE] ...
1
vote
2answers
336 views

Creating a new input event dispatcher in Pyglet (infra red input)

I recently asked this question in the pyglet-users group, but got response, so I'm trying here instead. I would like to extend Pyglet to be able to use an infra red input device supported by lirc. ...
1
vote
6answers
932 views

How to do a non-blocking URL fetch in Python

I am writing a GUI app in Pyglet that has to display tens to hundreds of thumbnails from the Internet. Right now, I am using urllib.urlretrieve to grab them, but this blocks each time until they are ...
1
vote
2answers
716 views

How to convert a Pyglet image to a PIL image?

i want to convert a Pyglet.AbstractImage object to an PIL image for further manipulation here are my codes from pyglet import image from PIL import Image pic = image.load('pic.jpg') data = ...
1
vote
1answer
392 views

HowTo put region of Pyglet image into PIL Image?

My app reads frames from video (using pyglet), extracts a 'strip' (i.e. region - full width by 1 to 6 video lines), then pastes each strip (appends it) into an image that can later be written out an ...
1
vote
2answers
599 views

why might my pyglet vertex lists and batches be very slow on Windows?

I'm writing opengl code in python using the library pyglet. When I draw to the screen using pyglet.graphics.vertex_list or pyglet.graphics.batch objects, they are very slow (~0.1 fps) compared to ...
0
votes
0answers
64 views

Pyglet errors on pyglet.window.Window() [solved, file badly named] [closed]

Possible Duplicate: why this python program is not working? I have installed Pyglet on Ubuntu using Linux center for software. When I __import__ pyglet, it works alright. But after writing: ...
0
votes
2answers
83 views

pyglet: blit a texture with specified alpha mask

How to blit a texture with additional alpha mask specified? Simply speaking, I want to make something like this:
0
votes
1answer
22 views

Pyglet: control audio balance (panning)

I am desperately looking for a way to control the balance of a sound (left-right) with Pyglet. I am aware of the 3D positioning system, but what I really want is just control the panning (something ...

1 2