view mde/scheduler/init2.d @ 48:a98ffb64f066

Implemented font rendering (grayscale only; i.e. non-LCD). FontTexture creates a texture and caches glyphs. Font supports multiple styles/faces, loaded from config file (should probably be loaded via Options instead). TextBlock cache for glyph placement within a string. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 31 May 2008 12:40:26 +0100
parents 07bd1a09e161
children bca7e2342d77
line wrap: on
line source

/* LICENSE BLOCK
Part of mde: a Modular D game-oriented Engine
Copyright © 2007-2008 Diggory Hardy

This program is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation, either
version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>. */

/** This module is the start of implementing the following:
*
* Idea: change import direction so this module adds all init functions. All init functions are
* wrapped in another function before being run in a thread (i.e. run indirectly). Functions fail
* either by throwing an exception or by returning a boolean. Functions may take parameters, e.g.
* "out cleanupFunc[]".
*
* This should make it much easier to tell what actually happens during init and to order init such
* that dependencies are honoured.
*
* Currently some external modules depend on InitFunctions, while some are set up from here. Once
* all are set up from here, the Init* modules can be rearranged. */
module mde.scheduler.init2;

import mde.scheduler.initFunctions;

import tango.util.log.Log : Log, Logger;

// Modules requiring init code running:
import imde = mde.imde;
import mde.gui.Gui;
import mde.input.Input;
import font = mde.resource.font;

// NOTE: error reporting needs a revision

private Logger logger;
static this () {
    logger = Log.getLogger ("mde.scheduler.Init2");
    
    init.addFunc (&initInput, "initInput");
    init.addFunc (&guiLoad, "guiLoad");
    init.addFunc (&initFreeType, "initFreeType");
}

void guiLoad () {   // init func
    try {
        gui.load (GUI);
        cleanup.addFunc (&guiSave, "guiSave");
    } catch (Exception e) {
        logger.fatal ("guiLoad failed: " ~ e.msg);
        setInitFailure;
    }
}
void guiSave () {   // cleanup func
    try {
        gui.save (GUI);
    } catch (Exception e) {
        logger.fatal ("guiSave failed: " ~ e.msg);
        setInitFailure;
    }
}
private const GUI = "gui";

void initInput () { // init func
    try {
        imde.input.loadConfig ();         // (may also create instance)
        
        // Quit on escape. NOTE: quit via SDL_QUIT event is handled completely independently!
        imde.input.addButtonCallback (cast(Input.inputID) 0x0u, delegate void(Input.inputID i, bool b) {
            if (b) {
                logger.info ("Quiting...");
                imde.run = false;
            }
        } );
    } catch (Exception e) {
        logger.fatal ("initInput failed: " ~ e.msg);
        setInitFailure;
    }
}

void initFreeType () {  // init func
    try {
        font.FontStyle.initialize;
    } catch (Exception e) {
        logger.fatal ("initFreeType failed: " ~ e.msg);
        setInitFailure;
    }
}

/+ Potential wrapper function:
// Template to call function, catching exceptions:
void wrap(alias Func) () {
    try {
        Func();
    } catch (Exception e) {
        logger.fatal (FAIL_MSG);
        logger.fatal (e.msg);
        setInitFailure;
    }
}
private const FAIL_MSG = "Unexpected exception caught:";
+/