Blender is an Open Source project. That doesn’t just mean you get to use it for free, you also get to see how it works, and you can even make your own changes and share them with others.

Blender is also a large software project (well over a million lines of code), with a great many active contributors over a lifespan of more than a decade, and it continues to be developed at a rapid rate. This can make things somewhat intimidating for less-experienced programmers.

This unit assumes you have some decent programming experience under your belt. Blender is mainly programmed in the C, C++ and Python programming languages. It can be built using either the CMake or SCons build systems.

Getting the Blender Source Code

The official Blender source is kept in Git repositories located at developer.blender.org. There are actually several separate repositories:

  • blender-main — the main part of the Blender source, excluding most Python addons.
  • blender-addons — the Python addons included in the standard Blender distribution.
  • blender-addons-contrib — additional useful Python addons.
  • blender-translations — localized language translations for text messages.
  • blender-tests — some interesting example .blend files used for testing and demonstrating Blender functionality.
  • blender-dev-tools — tools that are useful for performing maintenance tasks on the Blender source, but are not actually needed for building Blender.
  • blender-cloud — looks like a framework for offering a new cloud-based Blender service.

Layout of the Blender Source

Say you’ve checked out a copy of the main Blender source tree. The top level looks like this:

Common Subdirectory Layout

Within many of the subdirectories in source/blender/ and intern/, you will see the following pattern:

  • A bunch of .h files in the directory, and
  • an intern subdirectory.

The .h files define the functionality exported to other modules, while the intern subdirectory contains the .c or .cpp files that actually implement the module. Sometimes the .h files are put into an extern subdirectory instead of the upper directory level.

(And yes, these meanings of intern and extern are not the same as the meanings of intern and extern at the top directory level.)

Blender’s “Genetic Code”: “DNA” and “RNA”

You will find references to “DNA” (or “SDNA”) and “RNA” throughout Blender’s source code. The analogy to the terms from genetics is weak at best, but what they refer to is:

  • “DNA” or “SDNA” (“structure” DNA?) is the system for mapping Blender’s in-memory data structures to the on-disk .blend file format. A .blend file is little more than a memory dump, which makes it quick to write. However, the file needs to be readable by Blender builds on machines with different endianness, 32 versus 64-bit pointers, etc, not to mention future versions with different capabilities. Thus, the saved .blend file includes a detailed description of the layout of all the data structures saved in the file, and this description is stored in the “DNA1” block at the end. This block is generated by the makesdna tool, which is built and run automatically as part of the overall build process, so its output can be included directly into the Blender executable. It parses all the .h files in the directory source/blender/makesdna/, so all data structures that could get saved into .blend files must be defined here, and they must be careful to use a limited subset of C that the parsing tool can handle.
  • “RNA” defines the Python interface to Blender’s internal data structures and routine calls.

Here is Ton “Mr Blender” Roosendaal explaining DNA and RNA.

Special Globals: “G” and “U”

There is a frequently-referenced global variable named “G”, of type struct Global, declared in source/blender/blenkernel/BKE_global.h. The variable is defined in source/blender/blenkernel/intern/blender.c. This same file also defines the global “U”, of type struct UserDef, declared in source/blender/makesdna/DNA_userdef_types.h.

Naming Conventions

Some (but not all) global symbols have prefixes on their names indicating (roughly) where they come from. Here is a partial list.

PrefixMeaningWhere Found
AUD_audaspace sound libraryintern/audaspace/
BKE_lowest-level (non-UI) Blender operationssource/blender/blenkernel/
BLF_Font/text-handlingsource/blender/blenfont/
BLI_common library routinessource/blender/blenlib/
BLO_loading/saving .blend filessource/blender/blenloader/
COM_compositorsource/blender/compositor/
CTX_handling of bContext objectssource/blender/blenkernel/BKE_context.h, source/blender/blenkernel/intern/context.c
DNA_include files containing all type definitions that get saved into .blend filessource/blender/makesdna/
ED_editor UI routinessource/blender/editors/
FRS_Freestyle renderersource/blender/freestyle/
GHOST_platform-independent UI layerintern/ghost/
IMB_image-format handlingsource/blender/imbuf/
MEM_memory managementintern/memutil/
MOD_modifierssource/blender/modifiers/
NOD_node editorsource/blender/nodes/
PIL_platform-independent timingsource/blender/blenlib/PIL_time.h. PIL_time_utildefines.h
RE_common renderer handlingsource/blender/render/
RNA_Python interfacesource/blender/makesrna/
STR_string routinesintern/string/
WM_window managementsource/blender/windowmanager/

User-Interface Implementation

The UI code is structured into several layers. This code also handles finding of user-preference files and shared application data. Starting from the lowest, the layers are:

See Also

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.