Skip to main content

A python wrapper for raylib using ctypes

Project description

raylib-python-ctypes

A python wrapper for the greatest graphic library raylib.

Prerequisites

raypyc uses type annotations in its source, so a Python version that supports it is required.

Installing

the fastest way to use raypyc is by using the pip install command:

pip install raypyc

or

python -m pip install raypyc

Using raypyc

using raypyc is really simple, take a look at an example:

"""

raylib [core] example - Basic Window

"""

from raypyc import *


# ------------------------------------------------------------------------------------
# Program main entry point
# ------------------------------------------------------------------------------------
def main():
    # Initialization
    # ------------------------------------------------------------------------------------
    SCREEN_WIDTH = 800
    SCREEN_HEIGHT = 450

    init_window(SCREEN_WIDTH, SCREEN_HEIGHT, b"raylib [core] example - basic window")

    # TODO: Load resources / Initialize variables at this point

    set_target_fps(60)  # Set our game to run at 60 frames-per-second
    # ------------------------------------------------------------------------------------

    # Main game loop
    while not window_should_close():  # Detect window close button or ESC key
        # Update
        # ----------------------------------------------------------------------------------
        # TODO: Update variables / Implement example logic at this point
        # ----------------------------------------------------------------------------------

        # Draw
        # ----------------------------------------------------------------------------------
        begin_drawing()

        clear_background(RAYWHITE)
        draw_text(b"Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY)

        end_drawing()
        # ----------------------------------------------------------------------------------

    # De-Initialization
    # ----------------------------------------------------------------------------------

    # TODO: Unload all loaded resources at this point

    close_window()  # Close window and OpenGL context
    # ----------------------------------------------------------------------------------


# Execute the main function
if __name__ == '__main__':
    main()

raylib vs raypyc

Below are the differences in usage between raylib and raypyc.

Enums

All C typeof enums got translated to Python 'constants'. Enums got translated to Python enums.

Structures

In general, all structures inherit from ctypes.Structure class. At the moment, all the structures have a setters & getter

Contributing

firstly, Contributions of any kind welcome!.

secondly, here are some of the things that contributing on will help this wrapper the most:

[^2] NOTE: at least for now, all the non-functions wrapper stuff need be implemented in the filesGeneration.py file, and all the functions wrapper stuff need be implemented in the raypyc/__ init__.py

thanks

thanks to raysun5, raylibpy and pyray for their good work, I took all the inspiration (and some code ;) ) from them, so thanks you guys very much. also a big thanks for the people that helped to test and reviewing the library :)!!!

also a special thanks to Peter0x44, Its-Kenta and sol-vin

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

raypyc-0.1.7.tar.gz (823.3 kB view details)

Uploaded Source

Built Distribution

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

raypyc-0.1.7-py3-none-any.whl (830.1 kB view details)

Uploaded Python 3

File details

Details for the file raypyc-0.1.7.tar.gz.

File metadata

  • Download URL: raypyc-0.1.7.tar.gz
  • Upload date:
  • Size: 823.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for raypyc-0.1.7.tar.gz
Algorithm Hash digest
SHA256 ca129af4fd2f9369f5dee9a94c8c94eb65d7d42c3ce5c8d2ebe356cebe1caf7c
MD5 c4822b976930fb86e8d261c873c2d90f
BLAKE2b-256 1709fdb0fab9d1d6ca48f58d6576cdfc24596319d72b783b9369601d967e1184

See more details on using hashes here.

File details

Details for the file raypyc-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: raypyc-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 830.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for raypyc-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 1204c4e1a8270bf94ff4bebfbb8d62f47349d73fc17e14f764d424f88750080d
MD5 9f966ed892adec7291416470646e7bd2
BLAKE2b-256 f4f7d54fbfb77b3785c24c25646bb2653bcf40532c49cc3fa43210248775ce86

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