From 6c520ef3d30c86aeb856e7db5076fb474d008d84 Mon Sep 17 00:00:00 2001 From: Daniel Borca Date: Mon, 13 Oct 2003 11:05:36 +0000 Subject: GameMode --- src/glut/dos/state.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) (limited to 'src/glut/dos/state.c') diff --git a/src/glut/dos/state.c b/src/glut/dos/state.c index e9d854cd4e..b245569610 100644 --- a/src/glut/dos/state.c +++ b/src/glut/dos/state.c @@ -27,6 +27,8 @@ */ +#include + #include "glutint.h" @@ -140,3 +142,78 @@ int APIENTRY glutGetModifiers (void) return mod; } + + + +/* GAME MODE + * Hack alert: incomplete... what is GameMode, anyway? + */ +GLint g_game; +static GLboolean game_possible; +static GLboolean game_active; +static GLuint game_width; +static GLuint game_height; +static GLuint game_bpp; +static GLuint game_refresh; + + + +void APIENTRY glutGameModeString (const char *string) +{ + if (sscanf(string, "%ux%u:%u@%u", &game_width, &game_height, &game_bpp, &game_refresh) == 4) { + game_possible = GL_TRUE; + } +} + + + +int APIENTRY glutGameModeGet (GLenum mode) +{ + switch (mode) { + case GLUT_GAME_MODE_ACTIVE: + return game_active; + case GLUT_GAME_MODE_POSSIBLE: + return game_possible && !g_curwin; + case GLUT_GAME_MODE_WIDTH: + return game_active ? (int)game_width : -1; + case GLUT_GAME_MODE_HEIGHT: + return game_active ? (int)game_height : -1; + case GLUT_GAME_MODE_PIXEL_DEPTH: + return game_active ? (int)game_bpp : -1; + case GLUT_GAME_MODE_REFRESH_RATE: + return game_active ? (int)game_refresh : -1; + default: + return -1; + } +} + + + +int APIENTRY glutEnterGameMode (void) +{ + if (glutGameModeGet(GLUT_GAME_MODE_POSSIBLE)) { + g_bpp = game_bpp; + g_refresh = game_refresh; + + glutInitWindowSize(game_width, game_height); + + if ((g_game = glutCreateWindow("")) > 0) { + game_active = GL_TRUE; + } + + return g_game; + } else { + return 0; + } +} + + + +void GLUTAPIENTRY glutLeaveGameMode (void) +{ + if (glutGameModeGet(GLUT_GAME_MODE_ACTIVE)) { + game_active = GL_FALSE; + + glutDestroyWindow(g_game); + } +} -- cgit v1.2.3