Texture Atlas (TGorillaSharedAtlasMaterialSource)

The TGorillaSharedAtlasMaterialSource is inherited from TGorillaSharedMaterialSource. This means it is only a container for central storage of a texture atlas.

To link a single frame of the texture atlas to a specific 3D object you have to create further TGorillaAtlasMaterialSource instances. Those will should then be linked to your TGorillaSharedAtlasMaterialSource instance.

Background

Having games like Minecraft in mind, texturing seems very simple when using a single atlas texture. Working with FMX materials makes this a struggle. Because each time you create a material source and use the atlas texture, FMX will load the texture into the GPU. So if you're having an atlas with 8×8 parts, this will create 64 texture with the size of the original one. This is just horrible memory management.

That's not what we want. Gorilla3D offers a solution to you: SharedMaterialSource's!

You set up a shared atlas material source once, where you load up your atlas texture. Than you only create referenced materials linked to that source. The reference material shader will use the global texture for rendering, instead of registering its own.

Texture-Atlas

A texture atlas (also called a sprite sheet or an image sprite) is an image containing a collection of smaller images, usually packed together to reduce the atlas size.[1] Atlases can consist of uniformly-sized sub-images, or they can consist of images of varying dimensions.[1] A sub-image is drawn using custom texture coordinates to pick it out of the atlas. In an application where many small textures are used frequently, it is often more efficient to store the textures in a texture atlas which is treated as a single unit by the graphics hardware. Storing textures in an atlas reduces the overhead of a context switch by increasing memory locality. Careful alignment may be needed to avoid bleeding between sub textures when used with mipmapping and texture compression.

[https://en.wikipedia.org/wiki/Texture_atlas]

Sample atlas texture

Configuration

To configure a supplied texture atlas in the material use the provided properties:

Property Notice
Texture Texture atlas image to be used for splitting up in single frames.
AtlasRowCount Defines the number of rows the texture atlas has.
AtlasColCount Defines the number of columns the texture atlas has.
FrameWidth Defines the width of each frame in pixels. The width has to be a potency of 2. For example: 16, 32, 64, 128, …
FrameHeight Defines the height of each frame in pixels. The height has to be a potency of 2. For example: 16, 32, 64, 128, …

Example

In the following example we have added 3 TGorillaAtlasMaterialSource instances from component palette before. We've set the “TextureIndex” property to an index of the sub-texture in our atlas (from left to right, up to down, beginning with 0). We have 3 cubes, to which we will apply the atlas materials. The shared source material will be created at runtime. (There is no design-time component yet!)

procedure TForm1.FormCreate(Sender: TObject);
var LTexFile : String;
begin
{$IFDEF MSWINDOWS}
  LTexFile := 'atlas.png';
{$ENDIF}
{$IFDEF ANDROID}
  LTexFile := IncludeTrailingPathDelimiter(TPath.GetHomePath()) + 'atlas.png';
{$ENDIF}
 
  /// lets create a source material
  /// It's used as texture container, which GorillaAtlasMaterialSourceX uses.
  /// This will only register the atlas texture once, instead of multiple times
  /// CAUTION: currently this is only available at runtime
  SharedAtlasSource := TGorillaSharedAtlasMaterialSource.Create(GorillaViewport1);
  SharedAtlasSource.Parent := GorillaViewport1;
  SharedAtlasSource.AtlasRowCount := 8;
  SharedAtlasSource.AtlasColCount := 8;
  SharedAtlasSource.FrameWidth := 32;
  SharedAtlasSource.FrameHeight := 32;
  SharedAtlasSource.Texture.LoadFromFile(LTexFile);
 
  // now link atlas materials to the source
  GorillaAtlasMaterialSource1.SharedSource := SharedAtlasSource;
  GorillaAtlasMaterialSource2.SharedSource := SharedAtlasSource;
  GorillaAtlasMaterialSource3.SharedSource := SharedAtlasSource;
 
  // now link to cubes
  GorillaCube1.MaterialSource := GorillaAtlasMaterialSource1;
  GorillaCube2.MaterialSource := GorillaAtlasMaterialSource2;
  GorillaCube3.MaterialSource := GorillaAtlasMaterialSource3;
end;