X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGame.h;h=c531c02f08f729bb08edffacd0372dc26d80c4ab;hb=faef1e1f8db1918c832c47109221d905bb81047b;hp=ce7c69f3f7dff01a59224f3ce96ffee55f81a5be;hpb=90a372e7d97dd17e83a02732444788cc4b8f31a0;p=lugaru.git diff --git a/Source/Game.h b/Source/Game.h index ce7c69f..c531c02 100644 --- a/Source/Game.h +++ b/Source/Game.h @@ -42,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 @@ -163,7 +164,7 @@ void fireSound(int sound = fireendsound); void setKeySelected(); void inputText(std::string& str, unsigned* charselected); -void flash(); +void flash(float amount = 1, int delay = 1); } #ifndef __forceinline @@ -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,17 @@ 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]; +extern option::Option* commandLineOptionsBuffer; + #endif