Macintosh - OS X

This guide explains the process involved in creating projects when using Tier 2 when using the Macintosh - OS X platform.

What you need

Setup

When you first run the AGK IDE you will be prompted to install the AGK Projects and C++ libraries to a location of your choice. If you only intend to use the C++ libraries you can ignore the AGK Projects and just install the C++ libraries, then close the AGK IDE. If you wish to do this process again at a later date you can access it from the Tools -> Install Addiitonal Files menu option.

Creating a project

Within the apps folder there is a sub folder name template_mac. This is the template that contains all the project settings and initial code to get you started on the MacOS platform. You can either open the project and start editing it, make a copy in the same folder, or copy the project and place it elsewhere. Please bear in mind that if you take the latter option you will need to update links to the include and library files.

The include files can be found at:

While the library files are available from:

You link to the release version of the library for both Debug and Release builds.

Opening a project

Now follow these steps to open the project:

Project files

With the project now opened it's time to explore the files, with the main ones of concern being in the "classes" folder, expand this and you will be presented with three files: template.cpp, template.h and CoreForApp.h. The main source files of interest are template.cpp and template.h. The file template.h contains a class definition for our application and template.cpp contains the implementation, which has three functions laid out. The function Begin gets called at the start of the application and can be used to handle initial set up. The function Loop gets called on a continual basis and is effectively your main loop. Finally the function End will be called when the application is about to terminate.

Another area of interest is within the "Other Sources" folder, within here is a file named "Core.mm". This code deals with platform specific functionality and may be useful for advanced users.