Skip to main content

Python wrapper for BGFX Library

Project description


BGFX Python

Python 3.7+ wrapper for the BGFX library.



Key FeaturesHow To Use • • Using ImGUIExamplesLoggingCreditsLicense

Key Features

  • Uses Cppyy to natively wrap the C++ interface. No CTypes or ugly C interfaces.
  • Unless specified, the GIL is released for every invocation and pointers are passed by reference. This will ensure great overall performances.
  • Maintains the original documentation; use help() on a class or function to view it.
  • Compiles shaders on-the-fly, so you don't have to.
  • Ships with ImGui integrated in the BGFX rendering pipeline.

How To Use

Precompiled wheels

Precompiled wheels are available for Windows, Linux and MacOS. To install the latest published release, simply run:

$ pip install bgfx-python

Install from source

To install the latest version, you'll need to clone this repository and its submodules:

$ git clone --depth=1 https://github.com/fbertola/bgfx-python
$ git submodule update --init --recursive

Then, make sure to have make, cmake and ninja installed in your system.

Install the required dependency through poetry:

$ pip install poetry
$ poetry install

Finally, simply build and install the wheel.

$ pip setup.py install

Installing on MacOS

Building on MacOS X > 10.14 requires you to also install the SDK headers:

xcode-select --install
open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg
export SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 

Installing on Windows

The easiest way is to install Visual Studio 2017 Community Edition. If you have Chocolatey installed, then run:

choco install visualstudio2017community

Before building the package, make sure to activate all the environment variables required by the compiler:

call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64

Using ImGUI

Two modules are exposed:

  • ImGui, which provides a standard wrapper around all the ImGui funcions and classes.
  • ImGuiExtra, which provides some additional functions to integrate ImGui in the BGFX rendering pipline.

To use it in your application, simply follow this template:

# Setup the application
def init():
    ImGuiExtra.create()

# Destroy the application
def destroy():
    ImGuiExtra.destroy()

# Update the application, rendering each fram
def update():
    ImGuiExtra.beginFrame(
        mouse_x, mouse_y, buttons_states, 0, width, height
    )

    # Other ImGui drawing directives...

    ImGuiExtra.endFrame()

Logging

Loguru is used for logging inside bgfx_python. By default the logger is disabled; to enable it, use the following instructions:

from loguru import logger

logger.enable("bgfx")

Examples

You will find some examples in the examples folder, be sure to check them out. For a more advanced example, see the Natrix project.

Credits

This software uses the following open source packages:

License (BSD 2-clause)

BSD 2-Clause License

Copyright (c) 2021, Federico Bertola
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

GitHub @fbertola

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

bgfx-python-2.0.1.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distributions

bgfx_python-2.0.1-cp39-cp39-win_amd64.whl (7.1 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

bgfx_python-2.0.1-cp39-cp39-manylinux_2_24_x86_64.whl (48.6 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.24+ x86-64

bgfx_python-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl (9.7 MB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

bgfx_python-2.0.1-cp38-cp38-win_amd64.whl (7.1 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

bgfx_python-2.0.1-cp38-cp38-manylinux_2_24_x86_64.whl (48.6 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.24+ x86-64

bgfx_python-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl (9.7 MB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

bgfx_python-2.0.1-cp37-cp37m-win_amd64.whl (7.1 MB view hashes)

Uploaded CPython 3.7m Windows x86-64

bgfx_python-2.0.1-cp37-cp37m-manylinux_2_24_x86_64.whl (48.6 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.24+ x86-64

bgfx_python-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (9.7 MB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Supported by

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