ClanLib

Getting started with ClanLib

This document shows how to write a very basic ClanLib application, using the CL_ClanApplication interface. It explains why a global instance of this class is needed and how to initialize the different subsystems/components in ClanLib. Finally it explains how to trace errors and handle exceptions in ClanLib.

The CL_ClanApplication Interface

We will start at the first steps needed to use ClanLib: initialization of the library and the application. Most libraries do this by requiring an application to call some kind of init function before the library is used, and a deinit function at the end of the application. Eg.:

However, ClanLib doesn't use this strategy for one important reason: ClanLib runs on a lot of platforms. Some of these platforms do not use the traditional main() initialization method. Windows is an example where WinMain() is used instead. Often ClanLib need to use the parameters to these alternative main() functions, and thus requires a very platform dependent initialization.

We have solved the problem by making ClanLib itself encapsulate the real main() function, and then call the ClanLib application when it is done with its initialization. The resulting main() "function" in ClanLib looks like this:

There has to be one single instance of this class - otherwise ClanLib isn't able to locate the class, and thus cannot invoke the main function.

This can somewhat be compared to the Applet class in Java, and CWinApp in Microsoft's Foundation Classes (MFC).

Initializing components

ClanLib is a large library and thus can be used for several purposes. Because of this, ClanLib doesn't initialize its components before asked to. This is done through the CL_SetupCore class.

Each library in ClanLib has such a class. The clanGL library has CL_SetupGL, clanGUI has CL_SetupGUI, and so on. You must create these classes before using the respective components in your program. Make sure they don't go out of scope until your program is ending.

If you need to use the display and sound parts of ClanLib, but not the network, you could do something like this:

Creating a simple Makefile for Linux

Read the file INSTALL.linux in the ClanLib root directory for specifix details on how to use ClanLib under Linux.

Creating a ClanLib project in Visual C++

Read the file INSTALL.win32 in the ClanLib root directory for specific details on how to use ClanLib with Microsoft Visual C++.

Creating a ClanLib project in Borland C++

Read the file INSTALL.borland in the ClanLib root directory for specific details on how to use ClanLib with Borland C++.

Questions or comments, write to the ClanLib mailing list.