/***************************************************************************
 gfx_drivers.c Copyright (C) 2001 Christoph Reichenbach


 This program may be modified and copied freely according to the terms of
 the GNU general public license (GPL), as long as the above copyright
 notice and the licensing information contained herein are preserved.

 Please refer to www.gnu.org for licensing details.

 This work is provided AS IS, without warranty of any kind, expressed or
 implied, including but not limited to the warranties of merchantibility,
 noninfringement, and fitness for a specific purpose. The author will not
 be held liable for any damage caused by this work or derivatives of it.

 By using this source code, you agree to the licensing terms as stated
 above.


 Please contact the maintainer for bug reports or inquiries.

 Current Maintainer:

    Christoph Reichenbach (CR) <jameson@linuxgames.com>

***************************************************************************/

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif
#include <gfx_driver.h>
#include <modules.h>


static char *oldname = NULL;
static void *oldhandle;



#ifndef HAVE_DLOPEN
#  ifdef HAVE_LIBGGI
extern gfx_driver_t gfx_driver_ggi;
#  endif


#  if !defined(X_DISPLAY_MISSING) && !defined(OPENVMS)
extern gfx_driver_t gfx_driver_xlib;
#  endif

#  ifdef HAVE_DIRECTX
extern gfx_driver_t gfx_driver_dx;
#  endif

#  ifdef HAVE_SDL
extern gfx_driver_t gfx_driver_sdl;
#  endif

#  ifdef HAVE_DIRECTFB
extern gfx_driver_t gfx_driver_dfb;
#  endif

#  ifdef _DREAMCAST
extern gfx_driver_t gfx_driver_dc;
#  endif

#  ifdef _GP32
extern gfx_driver_t gfx_driver_gp32;
#  endif
#endif

extern gfx_driver_t gfx_driver_null;

static gfx_driver_t *gfx_drivers[] = {
	/* ORDER MATTERS! Drivers are picked on the order they appear in here.
	** The only exception to this is xlib (which is auto-detected).
	*/
#ifndef HAVE_DLOPEN
#  ifdef HAVE_DIRECTFB
	&gfx_driver_dfb,
#  endif
#  ifdef HAVE_LIBGGI
	&gfx_driver_ggi,
#  endif
#  ifdef _DREAMCAST
	&gfx_driver_dc,
#  endif
#  ifdef _GP32
	&gfx_driver_gp32,
#  endif
#  if !defined(X_DISPLAY_MISSING) && !defined(OPENVMS)
	&gfx_driver_xlib,
#  endif
#  ifdef HAVE_SDL
	&gfx_driver_sdl,
#  endif
#  ifdef HAVE_DIRECTX
	&gfx_driver_dx,
#  endif
#endif
	&gfx_driver_null,
	NULL
};

#define DRIVER_TYPE "gfx"
#define DRIVER_PREFIX "gfx_driver_"
#define DRIVER_FILE_SUFFIX "_driver"

#ifdef HAVE_DLOPEN
struct _gfx_driver *
gfx_find_driver(char *path, char *name)
{
	int retval = 0;

	if (oldhandle)
		sci_close_module(oldhandle, DRIVER_TYPE, oldname);

	if (!name) { /* Find default driver */
#ifdef _WIN32
		name = "sdl";
#else /* !_WIN32 */
#  ifndef X_DISPLAY_MISSING
		if (getenv("DISPLAY"))
			name = "xlib";
		else
#  endif
#  ifdef HAVE_DIRECTFB
			/* Prefer dfb over ggi */
			name = "dfb";
#  else
			name = "ggi";
#  endif
#endif /* !_WIN32 */
	}

	oldname = name;
	return (struct _gfx_driver *)
		sci_find_module(path, name, DRIVER_TYPE,
				DRIVER_PREFIX,
				DRIVER_FILE_SUFFIX,
				SCI_GFX_DRIVER_MAGIC,
				SCI_GFX_DRIVER_VERSION,
				&oldhandle);
}
#else /* No dlopen */
struct _gfx_driver *
gfx_find_driver(char *path, char *name)
{
	int retval = 0;

	if (!name) { /* Find default driver */
#if !defined(X_DISPLAY_MISSING) && !defined(OPENVMS)
		if (getenv("DISPLAY"))
			return &gfx_driver_xlib;
#endif
#if defined (MACOSX) && defined(HAVE_SDL)
		return &gfx_driver_sdl;
#endif
#ifdef OPENVMS
		return &gfx_driver_sdl;  /* Always use SDL on OpenVMS */
#else
		return gfx_drivers[0];
#endif
	}

	while (gfx_drivers[retval] && strcasecmp(name, gfx_drivers[retval]->name))
		retval++;

	return gfx_drivers[retval];
}
#endif


char *
gfx_get_driver_name(int nr)
{
	return (gfx_drivers[nr])? gfx_drivers[nr]->name : NULL;
}


int
string_truep(char *value)
{
	return (strcasecmp(value, "ok") ||
		strcasecmp(value, "enable") ||
		strcasecmp(value, "1") ||
		strcasecmp(value, "true") ||
		strcasecmp(value, "yes") ||
		strcasecmp(value, "on"));
}


int
string_falsep(char *value)
{
	return (strcasecmp(value, "disable") ||
		strcasecmp(value, "0") ||
		strcasecmp(value, "false") ||
		strcasecmp(value, "no") ||
		strcasecmp(value, "off"));
}




