473,796 Members | 2,765 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

python... pyglet... opengl... scaling

38 New Member
hey, I was experimenting with pyglet, and was trying out their opengl, but cant figure out how to scale images...

Expand|Select|Wrap|Line Numbers
  1. #!/usr/bin/python
  2.  
  3. # $Id:$
  4.  
  5.  
  6.  
  7. '''Demonstrates one way of fixing the display resolution to a certain
  8.  
  9. size, but rendering to the full screen.
  10.  
  11.  
  12.  
  13. The method used in this example is:
  14.  
  15.  
  16.  
  17. 1. Set the OpenGL viewport to the fixed resolution
  18.  
  19. 2. Render the scene using any OpenGL functions (here, just a polygon)
  20.  
  21. 3. Copy the framebuffer into a texture
  22.  
  23. 4. Reset the OpenGL viewport to the window (full screen) size
  24.  
  25. 5. Blit the texture to the framebuffer
  26.  
  27.  
  28.  
  29. Recent video cards could also render the scene directly to the texture
  30.  
  31. using EXT_framebuffer_object.  (This is not demonstrated in this example).
  32.  
  33. '''
  34.  
  35.  
  36.  
  37. from pyglet.gl import *
  38.  
  39. from pyglet import clock
  40.  
  41. from pyglet import image
  42.  
  43. from pyglet import window
  44.  
  45.  
  46.  
  47. # Create a fullscreen window using the user's desktop resolution.  You can
  48.  
  49. # also use this technique on ordinary resizable windows.
  50.  
  51. win = window.Window(fullscreen=True)
  52.  
  53.  
  54.  
  55. # Use 320x200 fixed resolution to make the effect completely obvious.  You
  56.  
  57. # can change this to a more reasonable value such as 800x600 here.
  58.  
  59. target_resolution = 1280, 800
  60.  
  61.  
  62.  
  63.  
  64. class FixedResolutionViewport(object):
  65.  
  66.     def __init__(self, win, width, height, filtered=False):
  67.  
  68.         self.window = win
  69.  
  70.         self.width = width
  71.  
  72.         self.height = height
  73.  
  74.         self.texture = image.Texture.create_for_size(GL_TEXTURE_2D, 
  75.  
  76.             width, height, GL_RGB)
  77.  
  78.         self.texture = self.texture.get_region(0, 0, width, height)
  79.  
  80.  
  81.  
  82.         if not filtered:
  83.  
  84.             # By default the texture will be bilinear filtered when scaled
  85.  
  86.             # up.  If requested, turn filtering off.  This makes the image
  87.  
  88.             # aliased, but is more suitable for pixel art.
  89.  
  90.             glTexParameteri(self.texture.target, 
  91.  
  92.                 GL_TEXTURE_MAG_FILTER, GL_NEAREST)
  93.  
  94.             glTexParameteri(self.texture.target, 
  95.  
  96.                 GL_TEXTURE_MIN_FILTER, GL_NEAREST)
  97.  
  98.  
  99.  
  100.     def begin(self):
  101.  
  102.         glViewport(0, 0, self.width, self.height)
  103.  
  104.         self.set_fixed_projection()
  105.  
  106.  
  107.  
  108.     def end(self):
  109.  
  110.         buffer = image.get_buffer_manager().get_color_buffer()
  111.  
  112.         self.texture.blit_into(buffer, 0, 0, 0)
  113.  
  114.  
  115.  
  116.         glViewport(0, 0, self.window.width, self.window.height)
  117.  
  118.         self.set_window_projection()
  119.  
  120.  
  121.  
  122.         aspect_width = self.window.width / float(self.width)
  123.  
  124.         aspect_height = self.window.height / float(self.height)
  125.  
  126.         if aspect_width > aspect_height:
  127.  
  128.             scale_width = aspect_height * self.width
  129.  
  130.             scale_height = aspect_height * self.height
  131.  
  132.         else:
  133.  
  134.             scale_width = aspect_width * self.width
  135.  
  136.             scale_height = aspect_width * self.height
  137.  
  138.         x = (self.window.width - scale_width) / 2
  139.  
  140.         y = (self.window.height - scale_height) / 2
  141.  
  142.  
  143.  
  144.         glClearColor(0, 0, 0, 1)
  145.  
  146.         glClear(GL_COLOR_BUFFER_BIT)
  147.  
  148.         glLoadIdentity()
  149.  
  150.         glColor3f(1, 1, 1)
  151.  
  152.         self.texture.blit(x, y, width=scale_width, height=scale_height)
  153.  
  154.  
  155.  
  156.     def set_fixed_projection(self):
  157.  
  158.         # Override this method if you need to change the projection of the
  159.  
  160.         # fixed resolution viewport.
  161.  
  162.         glMatrixMode(GL_PROJECTION)
  163.  
  164.         glLoadIdentity()
  165.  
  166.         glOrtho(0, self.width, 0, self.height, -1, 1)
  167.  
  168.         glMatrixMode(GL_MODELVIEW)
  169.  
  170.  
  171.  
  172.     def set_window_projection(self):
  173.  
  174.         # This is the same as the default window projection, reprinted here
  175.  
  176.         # for clarity.
  177.  
  178.         glMatrixMode(GL_PROJECTION)
  179.  
  180.         glLoadIdentity()
  181.  
  182.         glOrtho(0, self.window.width, 0, self.window.height, -1, 1)
  183.  
  184.         glMatrixMode(GL_MODELVIEW)
  185.  
  186.  
  187.  
  188. rotate = 0
  189. kitten = image.load('kitten.jpg')
  190.  
  191. def draw_scene():
  192.     global kitten
  193.  
  194.     # Draw the scene, assuming the fixed resolution viewport and projection
  195.  
  196.     # have been set up.
  197.  
  198.     glClearColor(0, 0, 0, 0)
  199.  
  200.     glClear(GL_COLOR_BUFFER_BIT)
  201.     f=kitten.width
  202.  
  203.     glLoadIdentity()
  204.     glEnable(GL_TEXTURE_2D)
  205.  
  206.     w, h = target_resolution
  207.  
  208.     glTranslatef(w/2, h/2, 0)
  209.  
  210.     glRotatef(rotate, 0, 0, 1)
  211.  
  212.     #glColor3f(1, 1, 0,)
  213.  
  214.     s = min(w, h) / 4
  215.  
  216.     glRectf(s, s, s, s)
  217.     kitten.blit(0,0)
  218.  
  219. viewport = FixedResolutionViewport(win, 
  220.  
  221.     target_width, target_height, filtered=False)
  222.  
  223. while not win.has_exit:
  224.  
  225.     dt = clock.tick()
  226.  
  227.     rotate += dt * 20
  228.  
  229.  
  230.  
  231.     win.dispatch_events()
  232.  
  233.  
  234.  
  235.     viewport.begin()
  236.  
  237.     win.clear()
  238.  
  239.     draw_scene()
  240.  
  241.     viewport.end()
  242.  
  243.  
  244.  
  245.     win.flip()
that is the fixed_resolutio n.py file that came with it

basically i just want to make that kitten picture rotate instead of the red box. i got the picture to rotate, but I cant figure out how to scale it down to match the box size.

i searched for about 2-3 hours tonight for opengl refrences on how to do this but came up empty handed
Dec 24 '07 #1
1 4212
linksterman
38 New Member
Oops, embarrassing... I put down the wrong code :p

Expand|Select|Wrap|Line Numbers
  1. kitten = image.load('kitten.jpg')
  2. texture=kitten.texture
  3.  
  4. def draw_scene():
  5.     global kitten, texture
  6.  
  7.     # Draw the scene, assuming the fixed resolution viewport and projection
  8.  
  9.     # have been set up.
  10.  
  11.     glClearColor(0, 0, 0, 0)
  12.  
  13.     glClear(GL_COLOR_BUFFER_BIT)
  14.     f=kitten.width
  15.  
  16.     glLoadIdentity()
  17.     glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL)
  18.     glEnable(GL_TEXTURE_2D)
  19.  
  20.     w, h = target_resolution
  21.  
  22.     glTranslatef(w/2, h/2, 0)
  23.  
  24.     #glRotatef(rotate, 0, 0, 1)
  25.  
  26.     glColor3f(1, 0, 1)
  27.  
  28.     s = min(w, h) / 4
  29.  
  30.     glRectf(-s, -s, s, s)
  31.     glBindTexture(GL_TEXTURE_2D, texture.id)
  32.     glBegin(GL_POLYGON)
  33.     glVertex3f (-s, -s, 0.0);
  34.     glVertex3f (s, -s, 0.0);
  35.     glVertex3f (s, s, 0.0);
  36.     glVertex3f (-s, s, 0.0);
  37.     glEnd()
that is what I changed, and all it gives is a gray square
Dec 24 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
9994
by: jg.campbell.ng | last post by:
I'm beginning learning Python and OpenGL in Python. Python fine. But difficulties with OpenGL; presumably with the installation of OpenGL. OS = Linux FC5. Python program gl_test.py: from OpenGL.GLUT import *
3
2074
by: morris.slutsky | last post by:
So every now and then I like to mess around with hobby projects - I often end up trying to write an OpenGL video game. My last attempt aborted due to the difficulty of automating game elements and creating a good level editor - I basically needed a scripting language to control the C modules of the game and, after a half-assed attempt or two to make my own, I just gave up. So naturally this seems like a job for Python. Embedding Python...
10
1807
by: imx | last post by:
Hi there, I wonder whether python can be used to simulate a real user to do the following: 1) open a web site in a browser; 2) printscreen, so to copy the current active window image to clipboard; 3) save the image file to a real file Any pointer will be apprieciated!
4
3151
by: PatrickMinnesota | last post by:
I like to do fun stuff when learning a new language. I've been working with Python for a little while on real world problems mostly fixing bugs and writing a simulator for work. I was thinking as a hobby project developing a simple 2d game (think Donkey Kong, Space Invaders, LoadRunner) and mentioned this to my 14 year old nephew. About a week later I got a full write up for a game that he wrote and would like to play. So I figure why...
0
986
by: Facundo Batista | last post by:
Hi! This post is to tell you about a Python event we had the last weekend. It was a Python camping, in Los Cocos, Córdoba, Argentina. More than 20 Python developers, some experienced, some new ones, joined together in a center where we made a lot of activities during four whole days: - We had a mini python bug day, closing 4 or 5 issues, but more important, two new developers know how the full process is.
0
1361
by: _wolf | last post by:
cairo@cairographics.org] hi all, i've heard cairo has become the image scling library for firefox3. is that true? wonderful, i want to do that in python. there's a python interface for cairo, right? i've used it before to do simple vector stuff. seems to work. however, i haven't been able to find relevant pointers via google.
3
2314
by: david | last post by:
You learn something new every day: On my ubuntu, update-manager is supposed to use the python2.5 installed on /usr/bin. Well, I had subsequently installed a whole bunch of stuff in /usr/local (/usr/local/bin/python and /usr/local/lib/ python2.5 etc), which I have happily been using for development for a year. I had thought that the two pythons were completely independent. Well, I was wrong. When /usr/bin/python2.5 runs, *by default*,...
13
1489
by: Thomas Troeger | last post by:
Hi, Sorry I've posted a similar question some weeks ago, but I got no answers. I want to embed a Python application on a device with limited resources, esp. storage limitations. Is there a way to reduce the Python interpreter to a set of modules that's urgently needed? Or is there a method to have gzipped modules that are unzipped on the fly into memory when they're accessed? That would be even better. Additionally, is there a Python...
12
5182
by: Ben Sizer | last post by:
Although the standard library in Python is great, there are undoubtedly some great packages available from 3rd parties, and I've encountered a few almost by accident. However, I don't know how a user would become aware of many of these. http://pypi.python.org/pypi/ presumably lists most of the decent ones, but there's a lot there and little indication as to quality or popularity - great if you know exactly what you need, but not so great...
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9535
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10465
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10242
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7558
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5453
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4127
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2931
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.