view mde/events.d @ 22:249eb6620685

Changes to Options, particularly regarding window sizes. Window sizes for fullscreen and windowed modes are now independant. Window resizes by the WM are now persistant. Options class contents are now generated by templates. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Tue, 25 Mar 2008 12:24:04 +0000
parents a60cbb7359dd
children 47478557428d
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, version 2, as published by the Free Software Foundation.

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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */

/// Handles all events from SDL_PollEvent.
module mde.events;

import mde.scheduler.InitStage;
import mde.scheduler.runTime;

import global = mde.global;
static import mde.SDL;

import mde.input.input;
import mde.input.exception;

import derelict.sdl.events;

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

private Logger logger;
static this() {
    logger = Log.getLogger ("mde.events");

    init2.addFunc (&initInput);
}

void initInput () { // init2 func
    logger.trace ("init2: initInput() started");
    
    try {
        global.input = new Input();
        global.input.loadConfig ();         // (may also create instance)
                
        Scheduler.perFrame (&pollEvents);
    } catch (Exception e) {
        setInitFailure ();                // must clean up properly
    }
    
    logger.trace ("init2: initInput() finished");
}

void pollEvents (double) {
    SDL_Event event;
    while (SDL_PollEvent (&event)) {
        switch (event.type) {
            case SDL_QUIT:
                logger.info ("Quit requested");
                global.run = false;
                break;
            case SDL_VIDEORESIZE:
                mde.SDL.resizeWindow (event.resize.w, event.resize.h);
                break;
            default:
                try {
                    global.input (event);
                } catch (InputClassException e) {
                    logger.warn ("Caught input exception; event will be ignored. Exception was:");
                    logger.warn (e.msg);
                }
        }
    }
}