mirror of
https://github.com/1dot13/source.git
synced 2026-08-05 14:00:23 +02:00
Original Source for 1.13 Mod High Resolution version from 12/06/05
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@21 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
#ifndef _HELP_SCREEN__H_
|
||||
#define _HELP_SCREEN__H_
|
||||
|
||||
|
||||
//enum used for the different help screens that can come up
|
||||
enum
|
||||
{
|
||||
HELP_SCREEN_LAPTOP,
|
||||
HELP_SCREEN_MAPSCREEN,
|
||||
HELP_SCREEN_MAPSCREEN_NO_ONE_HIRED,
|
||||
HELP_SCREEN_MAPSCREEN_NOT_IN_ARULCO,
|
||||
HELP_SCREEN_MAPSCREEN_SECTOR_INVENTORY,
|
||||
HELP_SCREEN_TACTICAL,
|
||||
HELP_SCREEN_OPTIONS,
|
||||
HELP_SCREEN_LOAD_GAME,
|
||||
|
||||
HELP_SCREEN_NUMBER_OF_HELP_SCREENS,
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
INT8 bCurrentHelpScreen;
|
||||
UINT32 uiFlags;
|
||||
|
||||
UINT16 usHasPlayerSeenHelpScreenInCurrentScreen;
|
||||
|
||||
UINT8 ubHelpScreenDirty;
|
||||
|
||||
UINT16 usScreenLocX;
|
||||
UINT16 usScreenLocY;
|
||||
UINT16 usScreenWidth;
|
||||
UINT16 usScreenHeight;
|
||||
|
||||
INT32 iLastMouseClickY; //last position the mouse was clicked ( if != -1 )
|
||||
|
||||
INT8 bCurrentHelpScreenActiveSubPage; //used to keep track of the current page being displayed
|
||||
|
||||
INT8 bNumberOfButtons;
|
||||
|
||||
//used so if the user checked the box to show the help, it doesnt automatically come up every frame
|
||||
BOOLEAN fHaveAlreadyBeenInHelpScreenSinceEnteringCurrenScreen;
|
||||
|
||||
INT8 bDelayEnteringHelpScreenBy1FrameCount;
|
||||
UINT16 usLeftMarginPosX;
|
||||
|
||||
UINT16 usCursor;
|
||||
|
||||
BOOLEAN fWasTheGamePausedPriorToEnteringHelpScreen;
|
||||
|
||||
|
||||
|
||||
//scroll variables
|
||||
UINT16 usTotalNumberOfPixelsInBuffer;
|
||||
INT32 iLineAtTopOfTextBuffer;
|
||||
UINT16 usTotalNumberOfLinesInBuffer;
|
||||
BOOLEAN fForceHelpScreenToComeUp;
|
||||
|
||||
} HELP_SCREEN_STRUCT;
|
||||
|
||||
extern HELP_SCREEN_STRUCT gHelpScreen;
|
||||
|
||||
|
||||
|
||||
|
||||
BOOLEAN ShouldTheHelpScreenComeUp( UINT8 ubScreenID, BOOLEAN fForceHelpScreenToComeUp );
|
||||
void HelpScreenHandler();
|
||||
void InitHelpScreenSystem();
|
||||
void NewScreenSoResetHelpScreen( );
|
||||
INT8 HelpScreenDetermineWhichMapScreenHelpToShow();
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user