Pyglet is a cross-platform windowing and multimedia library for Python which provides interface to the platform's OpenGL library.

learn more… | top users | synonyms

0
votes
0answers
10 views

How to inherit from director class in cocos2d

I can make a window by initializing director at the end of my script like this: import cocos as cc if __name__ == '__main__': cc.director.director.init(width, height) However, I want director ...
0
votes
0answers
19 views

Pyglet 1.1.4 on not accessing AVbin

I'm having some trouble getting Pyglet (1.1.4) to load an mp3 file. I originally submitted an inquirty to the Enthought support page, but was then directed to post future inquiries here. The ...
0
votes
1answer
32 views

Pyglet not running properly on AMD HD4250

I am building an python program using pyglet. The source code runs just fine on any computer exept for my laptop. My Laptop is also the only one with a AMD graphics card: the HD4250. Its Xubuntu 13.04 ...
2
votes
1answer
65 views

Separating Axis Theorem in Python/Pyglet

I'm trying to make a (sort-of) clone of Asteroids in Python using Pyglet. I figured I'd try to get a little fancy and implement the separating axis theorem to do collision. I got it to work, but the ...
0
votes
0answers
12 views

Failed to install pyglet with python3 [migrated]

I am using windows7 and I have installed python 3.3. Then I download pyglet-1.1.4.msi from www.pyglet.org. But when I installing pyglet, it tell me that "pyglet requires Python 2.4 or later. The ...
0
votes
1answer
26 views

What does this pyglet error mean?

I'm trying to blit some simple images, and learn to use ImageGrid and other functions, but this same error keeps popping up: File "C:\Python27\lib\site-packages\pyglet\gl\lib.py", line 105, in ...
1
vote
1answer
18 views

Pyglet: sprite not drawing if used in a batch

I have this function for a game, message_box, which shows a nice background(a Sprite) and in the top of it, a label(it's text is the string parameter received). When I call the method draw() of it, ...
0
votes
1answer
80 views

Enthought Canopy 64bit on OSX: import pyglet.gl failure

Retaining question for posterity; see workaround in edit The Pyglet package comes installed at base and isn't removable. Using the current fully updated version 1.1.4 of Pyglet, I get repeatable ...
0
votes
1answer
50 views

How to subclass Clock in Pyglet?

I want to subclass Clock class of pyglet.clock module, but I have some troubles when I use schedule_interval: The following code doesn't print anything and the object c looks like if not ticked at ...
1
vote
1answer
65 views

3d cube didn't show correctly writen by pyglet

Recently, I have started to learn openGL from this site => http://3dgep.com/?p=2365 and I encounter a problem. That's I didn't get the scene as the site shows. I post my code on this site: import ...
0
votes
0answers
16 views

pyglet mp4 media player

I have used pyglet to write a video player. when i run the following code, both avi files and wave files are played both with sound and video capability. however when i used mp4 file than only video ...
2
votes
0answers
85 views

Pyglet, shaders and GLSL layout tag for color attribute

I'm trying to use pyglet and OpenGL 4 style shaders (ie: not using any matrix operations, using (layout=...) etc...) I have a basic vertex shader which is: #version 400 uniform mat4 ...
0
votes
1answer
114 views

Pyglet sound playing on python

I am trying to play some sounds with Python, but I am encountering problems. This is my code (very simple, only for learning): def parse(fd): for line in fd: for word in line.split(): ...
2
votes
1answer
88 views

How to create OpenGL 3.0 context using Pyglet

I'd like to make use of OpenGL 3.0 features (framebuffer objects, 2D texture array), but the default OpenGL context created by Pyglet does not support these. In the Pyglet source there is the ...
0
votes
2answers
118 views

Import pyglet on python

I have downloaded the pyglet.dmg file from pyglet website and simply installed it. The folder on which it is saved is: /Developer/pyglet And on the pydev editor i simply state the location i want to ...
1
vote
0answers
49 views

Unable to open a window with Pyglet

I decided to look into Pyglet to experiment with graphics and hit the ground face first with some errors. Right off the bat, I had issue simply trying to create a window. I would get multiple errors ...
1
vote
0answers
48 views

How to add another object's handlers to a window with Pyglet

I have a main object with a Pyglet window as an attribute. Pylget's window class has a method called push handlers, which lets me push methods to the event stack. The following code works: import ...
1
vote
0answers
54 views

Using large 3D textures in pyglet

I'm trying to do some GLSL particle stuff with precomputed velocity vector fields. These vector fields are stored as ~13 1024x170 float textures, each corresponding to a different "slice" in the ...
2
votes
2answers
133 views

using numpy arrays and ctypes for OpenGL calls in Pyglet

I've got what seems like a very ugly little piece of code that I seem to keep on resorting back to whenever I'm trying to draw arrays with pyglet, of the form: vertPoints = ...
0
votes
1answer
106 views

How to draw two circles facing each other in 3D space

I'm attempting to draw a network in 3D using Python's Pyglet library. I have spheres representing proteins and they are drawn in place (given x,y,z coordinates) rather than drawing them at 0,0,0 and ...
0
votes
1answer
64 views

How to use super in Pyglet in Window's subclass events?

I want to subclass pyglet.window.Window, but this code throw me exceptions for super in on_draw() and in on_mouse_pressed() #!/usr/bin/env python # -*- coding: utf-8 -*- import pyglet class ...
0
votes
0answers
22 views

pyglet color key

How to set the color key in pyglet when load a png image? Dose it support some methods just like surface's set/get_colorkey in pygame? import pygame from pygame.locals import * class ...
0
votes
0answers
24 views

Intercepting and modifying events in pyglet

Is there any way to intercept and modify events in pyglet. In this case I am interested in intercepting mouse events, doing some scaling from screen coordinates to model coordinates, and then letting ...
1
vote
0answers
110 views

Pyglet, player, next song

I'm trying to play songs in Python 3 via pyglet. I can play and stop a song, but when I try to play the next song it produces an error. I followed these instructions. I will do the program in tkinter. ...
1
vote
1answer
77 views

Incorrect colors when reconstructing an image from arrays with pygame/pyglet

I wrote up this program that would use numpy and Image(PIL) library to read an image as a bunch of matrices and use pyglet(and opengl) to reconstruct the image. The code using pyglet is as follows: ...
0
votes
2answers
46 views

Pyglet's ZIPLocation

I found out that Pyglet has class with which I can load zip files: http://www.pyglet.org/doc/api/pyglet.resource.ZIPLocation-class.html There is how I use it: myzip = zipfile.ZipFile('testzip.zip') ...
7
votes
0answers
257 views

Problems with OpenGL 4 VBOs and Numpy arrays, Pyglet/Python

I'm getting started with using OpenGL 4 in Python (through Pyglet and some framework code I got off the net/wrote myself for loading Shaders/Programs), but I think I understand things fairly well, so ...
0
votes
2answers
56 views

Create many classes and be able to reference to them

I'm working on simple game in Python and Pyglet. I want to give possibility to shoot so I create a bullet class. If I create one instance of that class for example self.new_bullet = bullet() I'm able ...
1
vote
1answer
31 views

How to load font variants from the same family in Pyglet?

I would like to display multiple text labels with various fonts in Pyglet. In this case I am using the "Ubuntu" font, in bold and other times italic. In this case I have Ubuntu-B.ttf and Ubuntu-BI.ttf ...
0
votes
1answer
230 views

Python Pyglet - 'No module named window'

I'm now working on Ubuntu to try and solve this. I am trying to get Pyglet to work in a .py script. So, I am using the default install of Python on Ubuntu (2.7.3, Ubuntu v = 12.4). I used: sudo ...
0
votes
0answers
55 views

Can't find module Window [duplicate]

I'm trying to use Pyglet in Python. The problem is that when I execute my code, I get the following error: Traceback (most recent call last): File ...
1
vote
2answers
83 views

Twisted: How is Deferred called from EndPoint when using pyglet-twisted

The code below is taken from Twisted's documentation on AMP (link). When a callback is added to d, there's automatically a "protocol" argument added to it and the deferred is automatically run when ...
1
vote
1answer
83 views

pyglet fails to draw to window on a second display

I am writing a psychophysics experiment using pyglet. The computer I am using has two displays attached to it. They are configured as two separate Xscreens, 0 and 1, corresponding to my workstation ...
2
votes
1answer
72 views

How to limitate cpu usage with pyglet loop?

I'm writing a music player, to be able to control the music reading, I create a thread in which I put a while loop. My problem is that even if I limitate the loop with pyglet.clock.tick(), my cpu is ...
1
vote
1answer
115 views

Python Cocos2d: tiles show up only once

I'm working on a custom tiled map loader. Seems to work fine, I don't get any errors, but the screen only shows up 1 tile of each type. this is the file structure: /main.py /other/render2.py ...
3
votes
1answer
349 views

Pyglet 1.2alpha1 not working on Python 3.3.0

I can't use Pyglet 1.2alpha1 (which should be able to run under Py3) from Python 3. I followed the instructions and installed it correctly, yet it doesn't run on Py3, but i know I installed ...
0
votes
0answers
47 views

Python pyglet UnboundLocalVariable [duplicate]

I'm using pyglet on a project and, for testing purposes, I want to be able to decide what a mouse click does to my list of cells. To do this very sloppily, I decided to just throw in a local variable ...
0
votes
0answers
28 views

Clear pyglet resorce cache

Is there a way to clear the resources cache in pyglet? The source image for a resource changes on disk and I need to reload it, but pyglet uses the cached resource instead. This is what I do: ...
1
vote
0answers
33 views

Pyglets Window.on_key_press and Window.on_key_release affected by key repeat on ubuntu 12.10 with unity

On pyglet's documentation it is stated that The Window.on_key_press and Window.on_key_release events are fired when any key on the keyboard is pressed or released, respectively. These events are not ...
1
vote
1answer
97 views

pyglet.gl syntax error

I have just started to attempt to use the alpha version of pyglet (1.2alpha1) and creating a window i.e. win = pyglet.window.Window() causes a syntax error in the pyglet.window on line 133, which ...
0
votes
1answer
209 views

Maze/labirynth game - few questions - Python 2.7.3 Pyglet 1.1.4

I am creating a maze/labirynth game using Python 2.7.3 and Pyglet 1.1.4 and I have a problem and a question. My code can be found in here: https://github.com/czarnot/labirynth_py To start the ...
3
votes
2answers
160 views

shape or scene management for pyglet?

I very much like pyglet, but the basic unit of abstraction is a vector of coordinates, which is unweidly, and not the level of abstraction I'd want when designing a complex scene. Are there any ...
5
votes
2answers
145 views

Open a pyglet window without taking focus

My python application launches a subprocess that creates a pyglet window. When the pyglet window opens, it is in front of all other windows, and takes keyboard focus. I'd like my pyglet window to open ...
6
votes
1answer
157 views

How do I bind a Pyglet sprite with a Pymunk shape so they rotate together?

How do I bind a pyglet sprite to a pymunk body so that if the body is rotating the sprite also rotates?
0
votes
0answers
59 views

AttributeError: 'Win32EventLoop' object has no attribute '_next_idle_time'

I'm doing OpenGL in python and I switch my context from glut to pyglet because glut doesn't have a close window event. When I did the window only updates when I move the mouse over it. The ...
0
votes
0answers
121 views

Pyglet, “GL” library not found

I am trying to get Python, Pyglet and ultimately Processing.py working harmoniously together. To be precise my implementation of Python is IronPython embedded into a C# windows forms application. I ...
0
votes
1answer
367 views

Using pygame Joystick in pyglet

I'm trying to write a simple game with pyglet but use pygame for gamepad input. The following code successfully prints axis values to the command line, but aside from importing pyglet, doesn't ...
0
votes
1answer
259 views

Mapping a texture to a quad opengl and pyglet

I am trying to map a texture to a quad in pyglet using the opengl functions but the quad is just showing up as white. My code looks like this: import pyglet from pyglet.gl import * ...
0
votes
1answer
102 views

Apply a transformation to an image pyglet

I am trying to make an rpg from first person perspective. I have looked at the pyglet api reference but the only thing I could find that was on the same track was the "get_transform" method and this ...
0
votes
1answer
248 views

Make mouse position relative to camera zoom level?

I just got camera zoom with OpenGL up and running in my little Pyglet game, but now I'm facing a problem: When I zoom in or out, the game objects' hitboxes won't obviously scale, so the game doesn't ...

1 2 3 4