123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- #define LogisticsPilotListBox_CPP
- /*************************************************************************************************\
- LogisticsPilotListBox.cpp : Implementation of the LogisticsPilotListBox component.
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- \*************************************************************************************************/
- #include "LogisticsPilotListBox.h"
- #include "LogisticsPilot.h"
- #include "..\resource.h"
- #include "PilotReadyScreen.h"
- LogisticsPilotListBoxItem* LogisticsPilotListBoxItem::s_templateItem = NULL;
- LogisticsPilotListBox::LogisticsPilotListBox( )
- {
- skipAmount = 5;
- }
- LogisticsPilotListBox::~LogisticsPilotListBox()
- {
- delete LogisticsPilotListBoxItem::s_templateItem;
- LogisticsPilotListBoxItem::s_templateItem = NULL;
- aListBox::destroy();
- }
- void LogisticsPilotListBox::update()
- {
- aListBox::update();
- for ( int i = 0; i < itemCount; i++ )
- {
- if ( ((LogisticsPilotListBoxItem*)items[i])->getPilot() &&
- ((LogisticsPilotListBoxItem*)items[i])->getPilot()->isUsed() )
- {
- RemoveItem( items[i], true );
- i--;
- }
- }
- }
- //-------------------------------------------------------------------------------------------------
- LogisticsPilotListBoxItem::~LogisticsPilotListBoxItem()
- {
- removeAllChildren( 0 );
- }
- LogisticsPilotListBoxItem::LogisticsPilotListBoxItem( LogisticsPilot* pNewPilot )
- {
- pPilot = pNewPilot;
- state = ENABLED;
- if ( !s_templateItem )
- return;
- aObject::init( 0,0, s_templateItem->outline.width(), s_templateItem->outline.height() );
- outline = s_templateItem->outline;
- line = s_templateItem->line;
- nameText = s_templateItem->nameText;
- rankText = s_templateItem->rankText;
- rankIcon = s_templateItem->rankIcon;
- icon = s_templateItem->icon;
- for ( int i= 0; i < PILOT_LIST_BOX_CHILD_COUNT; i++ )
- {
- pChildAnimations[i] = s_templateItem->pChildAnimations[i];
- }
- for ( i = 0; i < 3; i++ )
- animations[i] = s_templateItem->animations[i];
- addChild( &nameText );
- addChild( &rankText );
- addChild( &icon );
- addChild( &rankIcon );
- addChild( &outline );
- addChild( &line );
- addChild( &pilotOutline );
- EString name = pPilot->getName();
- name.MakeUpper();
- nameText.setText(name);
- //ACE not continguous with other ranks. Added too late!
- if (pPilot->getRank() != 4)
- rankText.setText( pPilot->getRank() + IDS_GREEN );
- else
- rankText.setText( IDS_ACE );
- int rank = pPilot->getRank();
- rankIcon.setUVs( rank * 15, 96, rank * 15 + 15, 96 + 15 );
-
- LogisticsPilotListBox::makeUVs( pPilot, icon );
-
-
- }
- int LogisticsPilotListBoxItem::init( FitIniFile* file )
- {
- if ( !s_templateItem )
- s_templateItem = new LogisticsPilotListBoxItem( NULL );
- memset( s_templateItem->pChildAnimations, 0, sizeof( aAnimGroup* ) * PILOT_LIST_BOX_CHILD_COUNT );
- s_templateItem->nameText.init( file, "Text0" );
- setAnimation( *file, 0 );
- s_templateItem->rankText.init( file, "Text1" );
- setAnimation( *file, 1 );
- s_templateItem->icon.init( file, "Static0" );
- setAnimation( *file, 2 );
- s_templateItem->rankIcon.init( file, "Static1" );
- setAnimation( *file, 3 );
- s_templateItem->animations[0].init( file, "Animation0" );
- s_templateItem->animations[1].init( file, "Animation1" );
- s_templateItem->animations[2].init( file, "Animation2" );
- s_templateItem->outline.init( file, "Rect0" );
- setAnimation( *file, 4 );
- s_templateItem->line.init( file, "Rect2" );
- setAnimation( *file, 6 );
- s_templateItem->pilotOutline.init( file, "Rect1" );
- setAnimation( *file, 5 );
- return 0;
- }
- void LogisticsPilotListBoxItem::setAnimation( FitIniFile& file, int whichOne )
- {
- char animationText[64];
- if ( NO_ERR == file.readIdString( "Animation", animationText, 63 ) )
- {
- for ( int i = 0; i < strlen( animationText ); i++ )
- {
- if ( isdigit( animationText[i] ) )
- {
- animationText[i+1] = NULL;
- s_templateItem->pChildAnimations[whichOne] = atoi( &animationText[i] );
- return;
- }
-
- }
- }
- s_templateItem->pChildAnimations[whichOne] = -1;
- }
- void LogisticsPilotListBoxItem::render()
- {
- for ( int i = 0; i < this->pNumberOfChildren; i++ )
- {
- long newColor = 0xffffffff;
- if ( pChildAnimations[i] != -1 )
- newColor = animations[pChildAnimations[i]].getCurrentColor((aAnimGroup::STATE)state );
- pChildren[i]->setColor( newColor, 1 );
- pChildren[i]->render();
- }
-
- /* long newColor = animations[pChildAnimations[4]].getCurrentColor( (aAnimGroup::STATE)state );
- outline.setColor(newColor);
- outline.render( location[0].x, location[0].y );
-
- newColor = animations[pChildAnimations[5]].getCurrentColor( (aAnimGroup::STATE)state );
- line.setColor( newColor );
- line.render( location[0].x, location[0].y );*/
-
- }
- void LogisticsPilotListBoxItem::update()
- {
- bool isInside = pointInside( userInput->getMouseX(), userInput->getMouseY() );
- for ( int i = 0; i < 3; i++ )
- animations[i].update();
- if ( state == aListItem::SELECTED )
- {
- if ( animations[0].getState() != aAnimGroup::PRESSED )
- {
- for ( int i = 0; i < 3; i++ )
- animations[i].setState( aAnimGroup::PRESSED );
- }
- if ( userInput->isLeftDoubleClick() && isInside )
- {
- PilotReadyScreen::instance()->setPilot( pPilot );
- PilotReadyScreen::instance()->addSelectedPilot( );
- }
- if ( userInput->isLeftClick() && isInside )
- PilotReadyScreen::instance()->setPilot( pPilot );
-
- if ( userInput->isLeftDrag() && isInside &&
- pointInside( userInput->getMouseDragX(), userInput->getMouseDragY() ) )
- {
- PilotReadyScreen::instance()->beginDrag( pPilot );
- icon.setColor( 0x7f000000 );
- }
- else if ( !userInput->isLeftDrag() )
- {
- icon.setColor( 0xffffffff );
- }
- }
- else if ( state == aListItem::HIGHLITE )
- {
- if ( animations[0].getState() != aAnimGroup::HIGHLIGHT )
- {
- for ( int i = 0; i < 3; i++ )
- animations[i].setState( aAnimGroup::HIGHLIGHT );
- }
- }
- else
- {
- if ( animations[0].getState() != aAnimGroup::NORMAL )
- {
- for ( int i = 0; i < 3; i++ )
- animations[i].setState( aAnimGroup::NORMAL );
- }
- }
- aObject::update();
- }
- void LogisticsPilotListBox::makeUVs( LogisticsPilot* pPilot, aObject& icon )
- {
- icon = LogisticsPilotListBoxItem::s_templateItem->icon;
- // need to set the UV's
- int index = pPilot->getPhotoIndex();
- long xIndex = index % 12;
- long yIndex = index / 12;
- float fX = xIndex;
- float fY = yIndex;
- float width = icon.width();
- float height = icon.height();
- float u = (fX * width);
- float v = (fY * height);
- fX += 1.f;
- fY += 1.f;
-
- float u2 = (fX * width);
- float v2 = (fY * height);
- icon.setFileWidth(256.f);
- icon.setUVs( u, v, u2, v2 );
- }
- long LogisticsPilotListBox::AddItem( aListItem* pNewItem )
- {
- scrollBar->setOrange();
- LogisticsPilotListBoxItem* pItem = dynamic_cast<LogisticsPilotListBoxItem*>(pNewItem);
- if ( pItem )
- {
- LogisticsPilot* pPilot = pItem->getPilot();
- for ( int i = 0; i < itemCount; i++ )
- {
-
- LogisticsPilotListBoxItem* pTmpItem = dynamic_cast<LogisticsPilotListBoxItem*>(items[i]);
- if ( pTmpItem )
- {
- // do not put in twice.
- if ( pPilot->getName().Compare( pTmpItem->getPilot()->getName() ) == 0 )
- {
- delete pItem;
- return -1;
- }
- if ( pPilot->getRank() > pTmpItem->getPilot()->getRank() )
- {
- return InsertItem( pItem, i );
- }
- else if ( pPilot->getRank() == pTmpItem->getPilot()->getRank() )
- {
- if ( pPilot->getGunnery() > pTmpItem->getPilot()->getGunnery() )
- {
- return InsertItem( pItem, i );
- }
- else if ( pPilot->getGunnery() == pTmpItem->getPilot()->getGunnery() &&
- pPilot->getName().Compare( pTmpItem->getPilot()->getName() ) < 0 )
- {
- return InsertItem( pItem, i );
- }
- }
- }
- }
- }
- // if we got here
- return aListBox::AddItem( pNewItem );
- }
- void LogisticsPilotListBox::removePilot( LogisticsPilot* pPilot )
- {
- for ( int i = 0; i < itemCount;i++ )
- {
- LogisticsPilotListBoxItem* pItem = dynamic_cast<LogisticsPilotListBoxItem*>(items[i]);
- if ( pItem && pItem->getPilot() == pPilot )
- {
- RemoveItem( pItem, true );
- return;
- }
- }
- }
- //*************************************************************************************************
- // end of file ( LogisticsPilotListBox.cpp )
|