view mde/scheduler/init2.d @ 36:57d000574d75

Enabled drawing on demand, and made the polling interval configurable. Renamed mde.global to mde.imde. Enabled drawing on demand. Allowed options to take double values. Made the main loop's polling interval (sleep duration) settable from config files. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 02 May 2008 17:38:43 +0100
parents 6b4116e6355c
children 5132301e9ed7
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 ft = mde.ft.init;

// 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");
    } catch (Exception e) {
        logger.fatal ("guiLoad failed: " ~ e.msg);
        setInitFailure;
    }
}

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 {
        ft.initFreeType;
    } 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:";
+/