Skip to main content

Zoom into pygame figures without quality loss

Project description

Introduction

pygameZoom is an extension to pygame that allows you to zoom into drawn figures without quality loss. It can be very useful for example when you want to play around with fractals or allow player of your 2D game zoom into the screen

Installation

pip install pygameZoom

Requirements

  • pygame

How it works

pygameZoom sees canvas not as pixel grid but as coordinates system.

When using pygameZoom you can declare key point's of figures by using floats.

That means you can for example declare the center of a circle at (x=20.34, y=189.798).

It also allows you to draw very small objects like a line with starting point (0,0) and ending point (0.2, 0.2). Of course, you will not see it when you are zoomed out all the way but when you start to zoom in this tiny line will slowly get bigger.

Usage

First we need to import our dependencies.

import pygame
from pygameZoom import PygameZoom

In this tutorial I will be using object-oriented programming (OOP).

The first step to using pygameZoom is declaring an instance of pygameZoom object. It should be done in the constructor. Make sure to pass width and height to pygameZoom constructor.

class Window:
    def __init__(self):
        pygame.init()
        self.WIDTH, self.HEIGHT = 1000, 800
        self.WIN = pygame.display.set_mode((self.WIDTH, self.HEIGHT))
        self.CLOCK = pygame.time.Clock()
        self.FPS = 30
        self.run = True
        self.pygameZoom = PygameZoom(self.WIDTH, self.HEIGHT)
        self.pygameZoom.set_background((255, 0, 0))
        self.loop()

You can also set background color. It's black by default.

There is an option to change zoom strength by using this line in the constructor:

self.pygameZoom.set_zoom_strength(value)

Default value is 0.05 se feel free to play around with it.

Then we write basic loop method

def loop(self):
    while self.run:
        self.refresh_window()
        self.events()
        self.CLOCK.tick(self.FPS)
    pygame.quit()
    sys.exit()

'events' method to close our window:

def events(self):
    for e in pygame.event.get():
        if e.type == pygame.QUIT:
            self.run = False

And last but not least, refresh_window method:

def refresh_window(self):
    self.WIN.fill(0)
    #Draw shapes

    #End of draw shapes section
    self.pygameZoom.render(self.WIN, (100, 100))
    pygame.display.update()

We will get back to drawing shapes later in this tutorial.

Let me explain this line of code

self.pygameZoom.render(self.WIN, (0, 0))

This line adds generated surface to main window. The second parameter are coordinates, so the main window knows where to blit generated surface.

There is an alternative way to blit generated image:

self.WIN.blit(self.pygameZoom.generate_surface(),(0,0))

But this way is not recommended because it only works when we are blitting generated surface at (0,0) coordinates and width and height of pygameZoom canvas are the same as window's width and height.

So I recommend you to always use first method, that way pygameZoom knows where it's canvas is located, and it allows you to blit generated image at any coordinates on the screen.

Disabling zooming and dragging

You can disable zooming and dragging at any given time.

#Zooming
self.pygameZoom.allow_zooming(bool)
#Dragging
self.pygameZoom.allow_dragging(bool)

Where bool is either True or False.

When False user can't use corresponding feature

Let's take a look on how to draw shapes with pygameZoom.

To draw any of shapes listed bellow ad corresponding code to draw shapes section in refresh_window.

  • Line

self.pygameZoom.draw_line(color, x1, y1, x2, y2, width)

Input data:

color = color of the line (RGB).

x1 = x coordinate of starting point

y1 = y coordinate of starting point

x2 = x coordinate of ending point

y2 = y coordinate of ending point

width = width of the line (default = 1)

Example:

self.pygameZoom.draw_line((255, 255, 255), 0, 0, 200, 200)
  • Rectangle

self.pygameZoom.draw_rect(color, x, y, w, h, width)

Input data:

color = color of the line (RGB).

x1 = x coordinate of starting point

y1 = y coordinate of starting point

w = Width of the rectangle

h = Height of the rectangle

width = width of the border (default = 0). If the width=0, rectangle will be filled.

Example:

self.pygameZoom.draw_rect((255, 255, 255), 100, 100, 200.123, 200,5.567)
  • Circle

self.pygameZoom.draw_circle(color, x, y, r, width)

Input data:

color = color of the line (RGB).

x1 = x coordinate of the center point

y1 = y coordinate of the center point

r = radius of the circle

width = width of the border (default = 0). If the width=0, circle will be filled.

Example:

self.pygameZoom.draw_circle((255, 255, 255), 100.5, 100.5, 50.9087,90)
  • Ellipse

self.pygameZoom.draw_ellipse(color, rect, width)

Input data:

color = color of the line (RGB).

rect = Tuple with 4 values. (x1,y1,r1,r2).
    x = x coordinate of the center point
    y = y coordinate of the center point
    r1 = width of the ellipse
    r2 = height of the ellipse

width = width of the border (default = 0). If the width=0, ellipse will be filled.

Example:

self.pygameZoom.draw_ellipse((255, 255, 255), (100, 400.5, 80.123, 20),0)
  • Polygon

self.pygameZoom.draw_polygon(color, points, width)

Input data:

color = color of the line (RGB).

points = array with tuples of 2. First value in each tuple is a x coordinate of the point. Second values is the y coordinate

width = width of the border (default = 0). If the width=0, ellipse will be filled.

Example:

self.pygameZoom.draw_polygon((255, 255, 255), [(0.653, 789.234), (100,100), (345, 890.2)],0)

Blitting images in pygameZoom

To blit an image add this line to draw shapes section:

image = pygame.image.load("image.jpg")
self.pygameZoom.blit(image, (x, y))

x and y are the coordinates of the top right corner.

Remember!!! When you zoom into blitted image, this image will slowly lose quality. Zooming without quality loss work only with shapes.


Following a point

pygameZoom has a feature to follow any given point on canvas, it's useful for example when you want to zoom into moving object in your game.

self.pygameZoom.follow_point(x,y,zoom)

Where (x,y) are coordinates of followed point.

zoom - zoom while following

I recommend you to disable zooming and dragging while using this feature, because it gets buggy when user tries to zoom or drag while this feature is on


Great se we finished writing our class. Don't forget to make an instance of Window class.

win = Window()

Thanks for using pygameZoom <3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygameZoom-0.0.4.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pygameZoom-0.0.4-py3-none-any.whl (18.0 kB view details)

Uploaded Python 3

File details

Details for the file pygameZoom-0.0.4.tar.gz.

File metadata

  • Download URL: pygameZoom-0.0.4.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for pygameZoom-0.0.4.tar.gz
Algorithm Hash digest
SHA256 256539d33c6b1a380e640653af536981ab9786331d0cf0ed245f7e1c80b83547
MD5 c570874b6cd37a8ddc5fc110cbb3bfd2
BLAKE2b-256 bf121f291052bab08be3cdc79ee36e0ee2da9da089f0f75c21f2907523654eb9

See more details on using hashes here.

File details

Details for the file pygameZoom-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: pygameZoom-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for pygameZoom-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d2a25836477a4cc0ec70efe619157a0b6e2dce3b1145b2ebe837ee47e0caed9e
MD5 6615fa5d804c3905efe7395f377778a2
BLAKE2b-256 2204e7cfb838b4b414c50cc3d850a1cd138646fa05afda4de0bf7a682c8c03c4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page