A new year, a new Panda

It’s a new year and a new release for Panda3D! Version 1.10.0 is one of our most ambitious releases to date and brings with it many enhancements, features, bugfixes, and various other improvements. Let’s jump right in, shall we?

Rebranding

You may have noticed our first change before even downloading the SDK: We now have a completely new look! We have given the website a complete overhaul and have streamlined the process of downloading the latest SDK. We hope you like it, and we look forward to meeting some of the newcomers who will be joining our community in the near future!

Python 3 support

With Python 2 due to sunset next year, Panda3D has used this release cycle to modernize its Python support code. Not only does Panda3D now support the user’s choice of either Python 2 or 3, but also includes coroutine support for those using Python 3.5 and up! Coroutines are defined with async def and can be added to the TaskManager just like any other task. Asynchronous operations can be performed with await op(), which will cause the TaskManager to run other tasks until the operation completes, keeping frame rates up without requiring awkward callbacks. This combines the programmer convenience of writing simple functions with the smooth performance of asynchronous operations!

Gamepad/joystick support

This release brings first-class support for reading joystick/gamepad controller input on Windows, Linux, and macOS. Those already familiar with Panda3D’s keyboard/mouse input API should feel right at home with the new gamepad/joystick support, which detects already-present and hotplugged gamepad devices, and even allows assigning a unique prefix to each device’s input events in order to distinguish between multiple gamepads connected at once. What’s more, the new code has all the basics for implementing motion tracker and VR support in a future release. We can’t wait to see what kinds of new multiplayer “living room” style games people create!

Android port

The new release has made significant strides towards bringing the Android port to the level of quality one should expect of a Panda port. It’s now even possible to compile Panda3D on your Android machine, and there is even a third-party development environment available on the Play Store for developing Python games on your Android device. The major shortcoming as of yet is that there is no easy deployment pipeline yet to deploy your games for Android, so that will be a major priority going forward.

Shaders

Shaders are an essential part in achieving more advanced graphics with Panda3D than the fixed-function pipeline offers. So, of course we’ve devoted a lot of attention to improving the shaders in Panda3D. The shader generator, which makes it easy to use advanced effects without having to write shader, has received a significant overhaul. This overhaul dramatically improves its runtime performance, removes frame chugs, and makes it more reliable. Not only that, but it now supports additional features, including point light shadows and reoriented normal mapping.

For those creating their own shaders, we’ve brought many improvements as well, such as a GLSL preprocessor (allowing the use of #include instructions) and the availability of many more built-in inputs for custom shaders.Improving the shader system even further will be a major priority for the next major release of Panda3D, in which we plan to bring a brand new physically-based rendering shader to the engine core, and make it easier to write shaders that target a wide variety of platforms.

OpenGL improvements

There are too many improvements to the OpenGL renderer to name, but perhaps the most exciting is the ability to explicitly request an OpenGL Core Profile.

What is an OpenGL Core Profile? With OpenGL 3.2, Khronos removed many of the older features that had long since been deprecated (such as the fixed function pipeline), to allow driver developers to focus on the more modern graphics techniques without needing to worry about compatibility with older, deprecated functionality. While the newer features are fully capable of superseding the older methods, this does mean losing compatibility with older OpenGL applications. So, OpenGL 3.2 solved this problem by allowing applications to request either a “Core Profile” or a “Compatibility Profile,” where the former allows use of the latest and greatest functionality, and the latter ensures that applications written for OpenGL versions as old as 1.0 continue to function. The OpenGL driver provides the Compatibility Profile, unless the application specifically asks for a Core Profile, thereby indicating its willingness to operate without a fixed-function pipeline and many other legacy features.

Panda3D is able to make use of either profile, but users can now specifically request a Core Profile through use of the gl-version .prc configuration variable, granting full access to the latest extensions and functionality supported by the system OpenGL driver. Note, however, that doing this opts out of fixed-function pipeline support, and it is the user’s responsibility to provide suitable shaders.

Deployment system

One of Panda3D’s major strengths is how easy it is to use, and for this we also need to make it possible to deploy your application effortlessly to any supported platform. In order to ensure that we can keep up this promise, we’ve rebuilt our deployment system from the ground up for the new release. The new system is built around the existing Python packaging ecosystem, leveraging popular Python packaging tools like setuptools and pip in order to make it easy to build your application into an executable, regardless of which Python version it needs or which external libraries it pulls in.

HarfBuzz text shaping

For many users, making applications accessible to speakers of non-Latin-alphabet languages is of utmost importance. Many of these languages do not follow the basic left-to-right writing rules to which the English-speaking world is most accustomed. Many of these languages, in fact, don’t even use an alphabet! Some of them use one glyph per word, while others use characters made up of overlapping glyphs that must be built up as a series of Unicode codepoints.

To support this, Panda3D now includes support for the HarfBuzz text shaping library, which works in concert with FreeType to lay out and rework the text. HarfBuzz also improves English text, by replacing certain letter pairs with ligatures to improve readability.

Combined with Python 3’s unicode-by-default representation of text, supporting international languages in Panda3D is now something that “just works” without any additional developer attention required.

.flac and .opus support

Panda3D 1.9.0 added non-LGPL support for loading .wav and OGG/Vorbis audio files, for those that don’t wish to rely on the LGPL-licensed FFmpeg to load sound assets. Panda3D 1.10.0 goes a step further by adding support for loading .opus files (via libopus) and .flac files (through built-in code). Sounds like good news for those who prefer the open Xiph.Org audio formats!

General cleanup

This isn’t as interesting in a blog post, but we’ve done a lot of work in the codebase as well to keep everything clean, tidy, and free of bloat. This kind of work helps us work more quickly, attract the attention of other developers, and keep the project as bug-free as possible. A few things which we’ve done since the 1.9.0 release are:

  • Added an automated test suite, which will help catch bugs earlier in the development cycle and make Panda3D more stable overall by preventing regressions from sneaking in.
  • Removed several files which haven’t been used in years. Less code means less maintenance!
  • The Python support code has been completely removed from libpanda.dll and is fully self-contained within the .pyd extensions themselves.
  • Panda headers no longer contain using namespace std;
  • Many other various stylistic improvements and fixes!

We’ve only just scratched the surface of all of the new goodies this release brings. Want to hear more? Go read the release notes! Want to get started? Head on over to our new download page and try out v1.10.0 for yourself!

12 thoughts on “A new year, a new Panda

  1. Hm, so let me get this straight, you rebranded the engine (new logo and website basically) but when it comes to features such as Android and physically based rendering support and a proper 201x era shader generator it’s still “planned” rather than available???
    I’m sorry but even point light shadows (which were long overdue already) aren’t enough to call this a major release and overhaul.

    Until you guys get the fact that game devs want high level graphical features and mobile deployment such as the ones I described they aren’t going to care about any low-level features, code refactoring and the likes. Good effort, but in the wrong direction again. See you in 2022, maybe you’ll finally get it by then what game developers need. Until then I’m sticking with Unity and Godot…

    1. Hi Anon! Thanks for the feedback. We strive to improve the technology in any way that we can, and understanding our shortcomings is the first step toward fixing them. Perspectives such as these are invaluable to that process and we’d like to hear more.

      • Would you be willing to try the current Android support and clarify what isn’t yet to your liking?
      • Could you illustrate what kind of featureset you expect to see in a “201x era” shader generator?
      • You mentioned that this release is moving in the wrong direction. Could you specify which changes you believe are moving Panda3D further away from the goal? We can consider reverting them if need be.
      • Is there anything else that you consider critical, but have not listed in your comment?

      Once again, thanks for taking the time aside to volunteer your perspective, and I’m looking forward to finding out more!

    2. Thanks for checking in! We really hear you, and it’s feedback like yours that are the reason why we have indeed made significant progress on the Android support in this release, and why we have made physically-based rendering and other high-end graphical features the primary priority for the next release. Many of the features you see presented here were in fact intended in service of these goals, such as the lower-level shader and OpenGL renderer changes forming the foundation to let us build high-end shaders, and the new input framework laying the groundwork for mobile input methods—or have been things that were also deemed essential by some other part of the user base. It’s always tricky to balance the diverse needs of the userbase when you’re an open-source project with limited developer resources, which is why you may not be seeing progress in these aspects as fast as you may have hoped.

      Rest assured that the rebrand hasn’t been taking away the attention from the core developers; we’ve got some cool plans that we will be bringing into motion within the next few months that we think will really help to propel Panda forward, particularly in the areas that you indicate as important. I hope that you keep checking in with what we do and keep giving feedback on the priorities that matter the most to you.

    3. Anon… bad attitude to start the year. Panda 3D is not for unload your frustrations. Let it go. Forgive yourself.

    1. Vulkan support is something we indeed consider a very important goal, though it’s not the main priority for the next release. But many of the changes we will be targeting in the next release—such as an improved shader pipeline that will be able to serve the Vulkan renderer as well—are significant stepping stones in bringing Vulkan support closer, so do expect to see progress on this!

  2. The new website really is an infinite improvement over the old one, but is I don’t feel it’s right to use screenshots of the RenderPipeline everywhere, as it is not a part of Panda3D and it performs badly on anything but the top GPU’s and is partially broken on intel. Isn’t this misleading to people who are deciding whether to use panda or not may be influenced by this. Some RP screenshots are probably OK, and when this new shader system is completed hopefully there will be equally stunning screenshots using only panda.

  3. Im so happy for this new website. Im sure this will help a lot to get more attention. Python is growing really fast and Panda3d im sure will grow also. A more than a year ago i tried Panda and failed miserable. Unfortunately im not a good programmer, im not even a good coder, but i want to improve this hobby. And I would like to do that by creating some simple game project. I always remembered Panda and my failure 🙂 and today decided to check on you guys, and this new look is a great surprise!!!

Comments are closed.