doom3-bfg/neo/d3xp/menus/MenuWidget_PDA_EmailInbox.cpp

206 lines
5.7 KiB
C++
Raw Normal View History

2012-11-26 18:58:24 +00:00
/*
===========================================================================
Doom 3 BFG Edition GPL Source Code
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
2012-11-26 18:58:24 +00:00
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
2012-11-26 18:58:24 +00:00
Doom 3 BFG Edition 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 3 of the License, or
(at your option) any later version.
Doom 3 BFG Edition 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 Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#pragma hdrstop
#include "../../idlib/precompiled.h"
2012-11-26 18:58:24 +00:00
#include "../Game_local.h"
static const int MAX_EMAIL_ITEMS = 7;
/*
========================
idMenuWidget_PDA_EmailInbox::Initialize
========================
*/
void idMenuWidget_PDA_EmailInbox::Initialize( idMenuHandler* data )
{
2012-11-26 18:58:24 +00:00
idMenuWidget_ScrollBar* scrollbar = new( TAG_SWF ) idMenuWidget_ScrollBar();
2012-11-26 18:58:24 +00:00
scrollbar->SetSpritePath( GetSpritePath(), "info", "scrollbar" );
scrollbar->Initialize( data );
emailList = new( TAG_SWF ) idMenuWidget_DynamicList();
2012-11-26 18:58:24 +00:00
emailList->SetSpritePath( GetSpritePath(), "info", "options" );
emailList->SetNumVisibleOptions( MAX_EMAIL_ITEMS );
emailList->SetWrappingAllowed( true );
while( emailList->GetChildren().Num() < MAX_EMAIL_ITEMS )
{
idMenuWidget_Button* const buttonWidget = new( TAG_SWF ) idMenuWidget_Button();
2012-11-26 18:58:24 +00:00
buttonWidget->AddEventAction( WIDGET_EVENT_PRESS ).Set( WIDGET_ACTION_PDA_SELECT_EMAIL, emailList->GetChildren().Num() );
buttonWidget->AddEventAction( WIDGET_EVENT_FOCUS_ON ).Set( WIDGET_ACTION_REFRESH );
buttonWidget->Initialize( data );
buttonWidget->RegisterEventObserver( scrollbar );
emailList->AddChild( buttonWidget );
}
emailList->Initialize( data );
emailList->AddChild( scrollbar );
2012-11-26 18:58:24 +00:00
AddChild( emailList );
}
/*
========================
idMenuWidget_PDA_EmailInbox::Update
========================
*/
void idMenuWidget_PDA_EmailInbox::Update()
{
2012-11-26 18:58:24 +00:00
if( GetSWFObject() == NULL )
{
2012-11-26 18:58:24 +00:00
return;
}
idSWFScriptObject& root = GetSWFObject()->GetRootObject();
if( !BindSprite( root ) || GetSprite() == NULL )
{
2012-11-26 18:58:24 +00:00
return;
}
idPlayer* player = gameLocal.GetLocalPlayer();
if( player == NULL )
{
2012-11-26 18:58:24 +00:00
return;
}
if( pdaIndex > player->GetInventory().pdas.Num() )
{
2012-11-26 18:58:24 +00:00
return;
}
const idDeclPDA* pda = player->GetInventory().pdas[ pdaIndex ];
idSWFScriptObject* dataObj = GetSprite()->GetScriptObject()->GetNestedObj( "info" );
if( dataObj != NULL && pda != NULL )
{
idSWFTextInstance* txtOwner = dataObj->GetNestedText( "heading", "txtOwner" );
if( txtOwner != NULL )
{
2012-11-26 18:58:24 +00:00
idStr ownerText = idLocalization::GetString( "#str_01474" );
ownerText.Append( ": " );
if( pdaIndex == 0 )
{
ownerText.Append( session->GetLocalUserName( 0 ) );
}
else
{
2012-11-26 18:58:24 +00:00
ownerText.Append( pda->GetFullName() );
}
txtOwner->SetText( ownerText.c_str() );
if( pdaIndex == 0 )
{
2012-11-26 18:58:24 +00:00
txtOwner->SetIgnoreColor( false );
}
else
{
2012-11-26 18:58:24 +00:00
txtOwner->SetIgnoreColor( false );
txtOwner->SetText( pda->GetFullName() );
}
2012-11-26 18:58:24 +00:00
}
if( emailList != NULL )
{
const idDeclEmail* email = NULL;
2012-11-26 18:58:24 +00:00
emailInfo.Clear();
for( int index = 0; index < pda->GetNumEmails(); ++index )
{
2012-11-26 18:58:24 +00:00
idList< idStr > emailData;
email = pda->GetEmailByIndex( index );
if( email != NULL )
{
2012-11-26 18:58:24 +00:00
emailData.Append( email->GetFrom() );
emailData.Append( email->GetSubject() );
emailData.Append( email->GetDate() );
}
emailInfo.Append( emailData );
}
2012-11-26 18:58:24 +00:00
emailList->SetListData( emailInfo );
if( emailList->BindSprite( root ) )
{
2012-11-26 18:58:24 +00:00
emailList->Update();
}
}
}
}
/*
========================
idMenuWidget_PDA_EmailInbox::ObserveEvent
========================
*/
void idMenuWidget_PDA_EmailInbox::ObserveEvent( const idMenuWidget& widget, const idWidgetEvent& event )
{
const idMenuWidget_Button* const button = dynamic_cast< const idMenuWidget_Button* >( &widget );
if( button == NULL )
{
2012-11-26 18:58:24 +00:00
return;
}
const idMenuWidget* const listWidget = button->GetParent();
if( listWidget == NULL )
{
2012-11-26 18:58:24 +00:00
return;
}
switch( event.type )
{
case WIDGET_EVENT_FOCUS_ON:
{
const idMenuWidget_DynamicList* const list = dynamic_cast< const idMenuWidget_DynamicList* const >( listWidget );
2012-11-26 18:58:24 +00:00
int oldIndex = pdaIndex;
if( list != NULL )
{
2012-11-26 18:58:24 +00:00
pdaIndex = list->GetViewIndex();
Update();
}
if( emailList != NULL && oldIndex != pdaIndex )
{
2012-11-26 18:58:24 +00:00
emailList->SetFocusIndex( 0 );
emailList->SetViewIndex( 0 );
emailList->SetViewOffset( 0 );
}
2012-11-26 18:58:24 +00:00
break;
}
case WIDGET_EVENT_FOCUS_OFF:
{
2012-11-26 18:58:24 +00:00
Update();
if( emailList != NULL )
{
2012-11-26 18:58:24 +00:00
emailList->SetFocusIndex( 0 );
emailList->SetViewIndex( 0 );
emailList->SetViewOffset( 0 );
}
break;
}
}
}