108 lines
4.5 KiB
C++
108 lines
4.5 KiB
C++
/* ScreenMiniMenu - Displays a simple menu over the top of another screen. */
|
|
|
|
#ifndef SCREEN_MINI_MENU_H
|
|
#define SCREEN_MINI_MENU_H
|
|
|
|
#include "ScreenOptions.h"
|
|
#include "BitmapText.h"
|
|
#include "Transition.h"
|
|
#include "Quad.h"
|
|
#include "RageSound.h"
|
|
#include "BGAnimation.h"
|
|
|
|
struct MenuRow
|
|
{
|
|
int iRowCode;
|
|
CString sName;
|
|
bool bEnabled;
|
|
EditMode emShowIn;
|
|
int iDefaultChoice;
|
|
vector<CString> choices;
|
|
|
|
MenuRow() {}
|
|
MenuRow( int r, CString n, bool e, EditMode s, int d, const char *c0=NULL, const char *c1=NULL, const char *c2=NULL, const char *c3=NULL, const char *c4=NULL, const char *c5=NULL, const char *c6=NULL, const char *c7=NULL, const char *c8=NULL, const char *c9=NULL, const char *c10=NULL, const char *c11=NULL, const char *c12=NULL, const char *c13=NULL, const char *c14=NULL, const char *c15=NULL, const char *c16=NULL, const char *c17=NULL, const char *c18=NULL, const char *c19=NULL )
|
|
{
|
|
iRowCode = r; sName = n; bEnabled = e; emShowIn = s; iDefaultChoice = d;
|
|
#define PUSH( c ) if(c) choices.push_back(c);
|
|
PUSH(c0);PUSH(c1);PUSH(c2);PUSH(c3);PUSH(c4);PUSH(c5);PUSH(c6);PUSH(c7);PUSH(c8);PUSH(c9);PUSH(c10);PUSH(c11);PUSH(c12);PUSH(c13);PUSH(c14);PUSH(c15);PUSH(c16);PUSH(c17);PUSH(c18);PUSH(c19);
|
|
#undef PUSH
|
|
}
|
|
|
|
void SetDefaultChoiceIfPresent( CString sChoice )
|
|
{
|
|
iDefaultChoice = 0;
|
|
FOREACH_CONST( CString, choices, s )
|
|
if( sChoice == *s )
|
|
iDefaultChoice = s - choices.begin();
|
|
}
|
|
};
|
|
|
|
struct Menu
|
|
{
|
|
CString sClassName;
|
|
vector<MenuRow> rows;
|
|
|
|
Menu( CString c, MenuRow r0=MenuRow(), MenuRow r1=MenuRow(), MenuRow r2=MenuRow(), MenuRow r3=MenuRow(), MenuRow r4=MenuRow(), MenuRow r5=MenuRow(), MenuRow r6=MenuRow(), MenuRow r7=MenuRow(), MenuRow r8=MenuRow(), MenuRow r9=MenuRow(), MenuRow r10=MenuRow(), MenuRow r11=MenuRow(), MenuRow r12=MenuRow(), MenuRow r13=MenuRow(), MenuRow r14=MenuRow(), MenuRow r15=MenuRow(), MenuRow r16=MenuRow(), MenuRow r17=MenuRow(), MenuRow r18=MenuRow(), MenuRow r19=MenuRow(), MenuRow r20=MenuRow(), MenuRow r21=MenuRow(), MenuRow r22=MenuRow(), MenuRow r23=MenuRow(), MenuRow r24=MenuRow(), MenuRow r25=MenuRow(), MenuRow r26=MenuRow(), MenuRow r27=MenuRow(), MenuRow r28=MenuRow(), MenuRow r29=MenuRow() )
|
|
{
|
|
sClassName = c;
|
|
#define PUSH( r ) if(!r.sName.empty()) rows.push_back(r);
|
|
PUSH(r0);PUSH(r1);PUSH(r2);PUSH(r3);PUSH(r4);PUSH(r5);PUSH(r6);PUSH(r7);PUSH(r8);PUSH(r9);PUSH(r10);PUSH(r11);PUSH(r12);PUSH(r13);PUSH(r14);PUSH(r15);PUSH(r16);PUSH(r17);PUSH(r18);PUSH(r19);PUSH(r20);PUSH(r21);PUSH(r22);PUSH(r23);PUSH(r24);PUSH(r25);PUSH(r26);PUSH(r27);PUSH(r28);PUSH(r29);
|
|
#undef PUSH
|
|
}
|
|
};
|
|
|
|
|
|
class ScreenMiniMenu : public ScreenOptions
|
|
{
|
|
public:
|
|
ScreenMiniMenu( CString sScreenClass );
|
|
void Init( const Menu* pDef, ScreenMessage SM_SendOnOK, ScreenMessage SM_SendOnCancel );
|
|
protected:
|
|
virtual void ImportOptions( int row, const vector<PlayerNumber> &vpns );
|
|
virtual void ExportOptions( int row, const vector<PlayerNumber> &vpns );
|
|
|
|
virtual void GoToNextScreen();
|
|
virtual void GoToPrevScreen();
|
|
|
|
// Screens that get pushed on top of other screens don't
|
|
// use the ScreenManager's shared background, so they must draw their own.
|
|
AutoActor m_Background;
|
|
|
|
ScreenMessage m_SMSendOnOK;
|
|
ScreenMessage m_SMSendOnCancel;
|
|
|
|
vector<MenuRow> m_vMenuRows;
|
|
|
|
public:
|
|
static int s_iLastRowCode;
|
|
static vector<int> s_viLastAnswers;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
/*
|
|
* (c) 2003-2004 Chris Danford
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|