Import OA 0.8.8 tree
This commit is contained in:
283
code/q3_ui/ui_votemenu_timelimit.c
Normal file
283
code/q3_ui/ui_votemenu_timelimit.c
Normal file
@@ -0,0 +1,283 @@
|
||||
/*
|
||||
===========================================================================
|
||||
Copyright (C) 2009 Poul Sander
|
||||
|
||||
This file is part of the Open Arena source code.
|
||||
|
||||
Open Arena source code is free software; you can redistribute it
|
||||
and/or modify it under the terms of the GNU General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the License,
|
||||
or (at your option) any later version.
|
||||
|
||||
Open Arena source code is distributed in the hope that it will be
|
||||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Open Arena source code; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
===========================================================================
|
||||
*/
|
||||
|
||||
#include "ui_local.h"
|
||||
|
||||
#define VOTEMENU_BACK0 "menu/art_blueish/back_0"
|
||||
#define VOTEMENU_BACK1 "menu/art_blueish/back_1"
|
||||
#define ART_FIGHT0 "menu/art_blueish/accept_0"
|
||||
#define ART_FIGHT1 "menu/art_blueish/accept_1"
|
||||
#define ART_BACKGROUND "menu/art_blueish/addbotframe"
|
||||
|
||||
static char* votemenu_Timelmit_artlist[] =
|
||||
{
|
||||
VOTEMENU_BACK0,
|
||||
VOTEMENU_BACK1,
|
||||
ART_FIGHT0,
|
||||
ART_FIGHT1,
|
||||
NULL
|
||||
};
|
||||
|
||||
#define ID_BACK 100
|
||||
#define ID_GO 101
|
||||
#define ID_50 102
|
||||
#define ID_10 103
|
||||
#define ID_15 104
|
||||
#define ID_20 105
|
||||
#define ID_30 106
|
||||
#define ID_40 107
|
||||
#define ID_INF 108
|
||||
|
||||
#define TimeLIMIT_MENU_VERTICAL_SPACING 28
|
||||
|
||||
typedef struct
|
||||
{
|
||||
menuframework_s menu;
|
||||
menutext_s banner;
|
||||
menubitmap_s back;
|
||||
menubitmap_s go;
|
||||
|
||||
//Buttons:
|
||||
menutext_s bLimit50;
|
||||
menutext_s bLimit10;
|
||||
menutext_s bLimit15;
|
||||
menutext_s bLimit20;
|
||||
menutext_s bLimit30;
|
||||
menutext_s bLimit40;
|
||||
menutext_s bLimitInf;
|
||||
|
||||
int min, max; //Values restricted by server
|
||||
int selection;
|
||||
} votemenu_t;
|
||||
|
||||
static votemenu_t s_votemenu_Timelmit;
|
||||
|
||||
void UI_VoteTimelimitMenuInternal( void );
|
||||
|
||||
/*
|
||||
=================
|
||||
VoteMenu_Timelimit_Event
|
||||
=================
|
||||
*/
|
||||
static void VoteMenu_Timelimit_Event( void* ptr, int event )
|
||||
{
|
||||
switch (((menucommon_s*)ptr)->id)
|
||||
{
|
||||
case ID_BACK:
|
||||
if (event != QM_ACTIVATED)
|
||||
break;
|
||||
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_GO:
|
||||
if( event != QM_ACTIVATED ) {
|
||||
return;
|
||||
}
|
||||
switch(s_votemenu_Timelmit.selection) {
|
||||
case ID_10:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 10" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_15:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 15" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_20:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 20" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_30:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 30" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_40:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 40" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_50:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 50" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
case ID_INF:
|
||||
trap_Cmd_ExecuteText( EXEC_APPEND, "callvote timelimit 0" );
|
||||
UI_PopMenu();
|
||||
UI_PopMenu();
|
||||
break;
|
||||
};
|
||||
break;
|
||||
default:
|
||||
if( event != QM_ACTIVATED ) {
|
||||
return;
|
||||
}
|
||||
if(s_votemenu_Timelmit.selection != ((menucommon_s*)ptr)->id) {
|
||||
s_votemenu_Timelmit.selection = ((menucommon_s*)ptr)->id;
|
||||
UI_VoteTimelimitMenuInternal();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void setTimeMenutext(menutext_s *menu,int y,int id,int value,char *text) {
|
||||
menu->generic.type = MTYPE_PTEXT;
|
||||
menu->color = color_red;
|
||||
menu->generic.flags = QMF_CENTER_JUSTIFY|QMF_PULSEIFFOCUS;
|
||||
if((s_votemenu_Timelmit.min > value && value!=0) ||
|
||||
(s_votemenu_Timelmit.max < value && s_votemenu_Timelmit.max!=0) ||
|
||||
(s_votemenu_Timelmit.max != 0 && value==0))
|
||||
menu->generic.flags |= QMF_INACTIVE|QMF_GRAYED;
|
||||
else
|
||||
if(s_votemenu_Timelmit.selection == id)
|
||||
menu->color = color_orange;
|
||||
menu->generic.x = 320;
|
||||
menu->generic.y = y;
|
||||
menu->generic.id = id;
|
||||
menu->generic.callback = VoteMenu_Timelimit_Event;
|
||||
menu->string = text;
|
||||
menu->style = UI_CENTER|UI_SMALLFONT;
|
||||
}
|
||||
|
||||
/*
|
||||
=================
|
||||
VoteMenu_Timelimit_Cache
|
||||
=================
|
||||
*/
|
||||
static void VoteMenu_Timelimit_Cache( void )
|
||||
{
|
||||
int i;
|
||||
|
||||
// touch all our pics
|
||||
for (i=0; ;i++)
|
||||
{
|
||||
if (!votemenu_Timelmit_artlist[i])
|
||||
break;
|
||||
trap_R_RegisterShaderNoMip(votemenu_Timelmit_artlist[i]);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
=================
|
||||
UI_VoteMenu_Timelimit_Draw
|
||||
=================
|
||||
*/
|
||||
static void UI_VoteMenu_Timelimit_Draw( void ) {
|
||||
UI_DrawBannerString( 320, 16, "CALL VOTE - TIMELIMIT", UI_CENTER, color_white );
|
||||
UI_DrawNamedPic( 320-233, 240-166, 466, 332, ART_BACKGROUND );
|
||||
|
||||
// standard menu drawing
|
||||
Menu_Draw( &s_votemenu_Timelmit.menu );
|
||||
}
|
||||
|
||||
/*
|
||||
=================
|
||||
UI_VoteTimelimitMenuInternal
|
||||
*Used then forcing a redraw
|
||||
=================
|
||||
*/
|
||||
void UI_VoteTimelimitMenuInternal( void )
|
||||
{
|
||||
int y;
|
||||
|
||||
VoteMenu_Timelimit_Cache();
|
||||
|
||||
s_votemenu_Timelmit.menu.wrapAround = qtrue;
|
||||
s_votemenu_Timelmit.menu.fullscreen = qfalse;
|
||||
s_votemenu_Timelmit.menu.draw = UI_VoteMenu_Timelimit_Draw;
|
||||
|
||||
s_votemenu_Timelmit.banner.generic.type = MTYPE_BTEXT;
|
||||
s_votemenu_Timelmit.banner.generic.x = 320;
|
||||
s_votemenu_Timelmit.banner.generic.y = 16;
|
||||
s_votemenu_Timelmit.banner.string = "CALL VOTE - TIMELIMIT";
|
||||
s_votemenu_Timelmit.banner.color = color_white;
|
||||
s_votemenu_Timelmit.banner.style = UI_CENTER;
|
||||
|
||||
y = 98;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit10,y,ID_10,10,"10 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit15,y,ID_15,15,"15 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit20,y,ID_20,20,"20 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit30,y,ID_30,30,"30 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit40,y,ID_40,40,"40 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimit50,y,ID_50,50,"50 minutes");
|
||||
y+=TimeLIMIT_MENU_VERTICAL_SPACING;
|
||||
setTimeMenutext(&s_votemenu_Timelmit.bLimitInf,y,ID_INF,0,"No limit");
|
||||
|
||||
s_votemenu_Timelmit.back.generic.type = MTYPE_BITMAP;
|
||||
s_votemenu_Timelmit.back.generic.name = VOTEMENU_BACK0;
|
||||
s_votemenu_Timelmit.back.generic.flags = QMF_LEFT_JUSTIFY|QMF_PULSEIFFOCUS;
|
||||
s_votemenu_Timelmit.back.generic.callback = VoteMenu_Timelimit_Event;
|
||||
s_votemenu_Timelmit.back.generic.id = ID_BACK;
|
||||
s_votemenu_Timelmit.back.generic.x = 320-128;
|
||||
s_votemenu_Timelmit.back.generic.y = 256+128-64;
|
||||
s_votemenu_Timelmit.back.width = 128;
|
||||
s_votemenu_Timelmit.back.height = 64;
|
||||
s_votemenu_Timelmit.back.focuspic = VOTEMENU_BACK1;
|
||||
|
||||
s_votemenu_Timelmit.go.generic.type = MTYPE_BITMAP;
|
||||
s_votemenu_Timelmit.go.generic.name = ART_FIGHT0;
|
||||
s_votemenu_Timelmit.go.generic.flags = QMF_LEFT_JUSTIFY|QMF_PULSEIFFOCUS;
|
||||
s_votemenu_Timelmit.go.generic.callback = VoteMenu_Timelimit_Event;
|
||||
s_votemenu_Timelmit.go.generic.id = ID_GO;
|
||||
s_votemenu_Timelmit.go.generic.x = 320;
|
||||
s_votemenu_Timelmit.go.generic.y = 256+128-64;
|
||||
s_votemenu_Timelmit.go.width = 128;
|
||||
s_votemenu_Timelmit.go.height = 64;
|
||||
s_votemenu_Timelmit.go.focuspic = ART_FIGHT1;
|
||||
}
|
||||
|
||||
/*
|
||||
=================
|
||||
UI_VoteTimelimitMenu
|
||||
*Called from outside
|
||||
=================
|
||||
*/
|
||||
void UI_VoteTimelimitMenu( void ) {
|
||||
char serverinfo[MAX_INFO_STRING];
|
||||
// zero set all our globals
|
||||
memset( &s_votemenu_Timelmit, 0 ,sizeof(votemenu_t) );
|
||||
trap_GetConfigString( CS_SERVERINFO, serverinfo, MAX_INFO_STRING );
|
||||
s_votemenu_Timelmit.min = atoi(Info_ValueForKey(serverinfo,"g_voteMinTimelimit"));
|
||||
s_votemenu_Timelmit.max = atoi(Info_ValueForKey(serverinfo,"g_voteMaxTimelimit"));
|
||||
UI_VoteTimelimitMenuInternal();
|
||||
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.banner );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.back );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.go );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit10 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit15 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit20 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit30 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit40 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimit50 );
|
||||
Menu_AddItem( &s_votemenu_Timelmit.menu, (void*) &s_votemenu_Timelmit.bLimitInf );
|
||||
|
||||
UI_PushMenu( &s_votemenu_Timelmit.menu );
|
||||
}
|
||||
Reference in New Issue
Block a user