2.15.1
External rendering

Introduction

Tilengine can be set up to render to any user-provided 32-bit RGBA surface, without creating its own window. This allow to integrate tilengine inside any existing framework as a back-end renderer

Setting the target surface

The framebuffer can be any 32 bpp RGBA bitmap, with the dimensions specified during initialization with TLN_Init where tilengine performs the rendering. This surface is user-allocated and can be of any origin: a locked OpenGL texture, an SDL video surface, a Java canvas... whatever. The TLN_SetRenderTarget function takes two parameters: a pointer to the start of pixel data in the surface, and the number of bytes per scanline, the so-called pitch. This value is usually the horizontal resolution multiplied by four (the number of bytes required by each pixel) rounded to the next multiple of four. The following example allocates an in-memory framebuffer and sets it:

const int hres = 400;
const int vres = 240;
const int pitch = hres*sizeof(uint32_t);
void* framebuffer = malloc (pitch * vres);
TLN_SetRenderTarget (framebuffer, pitch);

Drawing frames

Once the framebuffer is set, to update the frame use the TLN_UpdateFrame function. It takes an optional frame counter parameter that's used by animation engine to keep track of frames.

Now the previously created framebuffer surface holds the rendered frame.

Basic example

This example creates a 400x240 framebuffer in memory, initializes the engine, does the main loop and exits:

#include <stdio.h>
#include <stdlib.h>
#include "Tilengine.h"
int main (int argc, char* argv[]) {
const int hres = 400;
const int vres = 240;
const int pitch = hres * sizeof(uint32_t);
void* framebuffer;
/* init and set framebuffer */
TLN_Init (hres, vres, 2, 80, 0);
framebuffer = malloc (pitch * vres);
TLN_SetRenderTarget (framebuffer, pitch);
/* main loop */
while (1) {
/* game logic stuff goes here */
}
/* deallocate */
free (framebuffer);
return 0;
}

Summary

This is a quick reference of related functions in this chapter:

Function Quick description
TLN_SetRenderTarget Defines a 32 bpp RGBA surface to hold the framebuffer
TLN_UpdateFrame Draws a frame to the framebuffer
TLN_SetRenderTarget
void TLN_SetRenderTarget(uint8_t *data, int pitch)
Sets the output surface for rendering.
Definition: Tilengine.c:373
TLN_Deinit
void TLN_Deinit(void)
Deinitialises current engine context and frees used resources.
Definition: Tilengine.c:219
TLN_UpdateFrame
void TLN_UpdateFrame(int frame)
Draws the frame to the previously specified render target.
Definition: Tilengine.c:515
TLN_Init
TLN_Engine TLN_Init(int hres, int vres, int numlayers, int numsprites, int numanimations)
Initializes the graphic engine.
Definition: Tilengine.c:57