X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGame.h;h=df174faaa0d605796172a985d7a32bd80766f047;hb=ff29f47f799d99cec7c2a6aa2cf818da2b931fc5;hp=0baa365c2719a04b13d2140b9931a9584718f580;hpb=97989f58ab13c64fbe05e629d2b2a024a2c3cfa4;p=lugaru.git diff --git a/Source/Game.h b/Source/Game.h index 0baa365..df174fa 100644 --- a/Source/Game.h +++ b/Source/Game.h @@ -1,5 +1,6 @@ /* Copyright (C) 2003, 2010 - Wolfire Games +Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file) This file is part of Lugaru. @@ -41,6 +42,7 @@ along with Lugaru. If not, see . #include "Account.h" #include "Sounds.h" #include "Texture.h" +#include "optionparser.h" #define NB_CAMPAIGN_MENU_ITEM 7 @@ -148,7 +150,6 @@ int DrawGLScene(StereoSide side); void LoadMenu(); void playdialogueboxsound(); int findClosestPlayer(); -bool AddClothes(const char *fileName, GLubyte *array); void Loadlevel(int which); void Loadlevel(const char *name); void Tick(); @@ -215,7 +216,6 @@ extern int whichdialogue; extern int directing; extern float dialoguetime; extern int dialoguegonethrough[20]; -extern float tintr, tintg, tintb; enum maptypes { mapkilleveryone, mapgosomewhere, @@ -238,4 +238,16 @@ extern const char *wolfskin[3]; extern const char **creatureskin[2]; +SDL_bool sdlEventProc(const SDL_Event &e); + + + +enum optionIndex { UNKNOWN, HELP, FULLSCREEN, NOMOUSEGRAB, SOUND, OPENALINFO, SHOWRESOLUTIONS }; +/* Number of options + 1 */ +const int commandLineOptionsNumber = 8; + +extern const option::Descriptor usage[12]; + +extern option::Option commandLineOptions[commandLineOptionsNumber]; + #endif