// Berkeley Open Infrastructure for Network Computing // http://boinc.berkeley.edu // Copyright (C) 2005 University of California // // This is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; // either version 2.1 of the License, or (at your option) any later version. // // This software 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 Lesser General Public License for more details. // // To view the GNU Lesser General Public License visit // http://www.gnu.org/copyleft/lesser.html // or write to the Free Software Foundation, Inc., // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #if defined(__GNUG__) && !defined(__APPLE__) #pragma implementation "sg_ClientStateIndicator.h" #endif #include "stdwx.h" #include "BOINCGUIApp.h" #include "sg_BoincSimpleGUI.h" #include "sg_SkinClass.h" #include "sg_ImageLoader.h" #include "sg_ClientStateIndicator.h" #include "time.h" #define ID_ANIMATIONRENDERTIMER 12000 IMPLEMENT_DYNAMIC_CLASS(ClientStateIndicator, wxPanel) BEGIN_EVENT_TABLE(ClientStateIndicator, wxPanel) EVT_PAINT(ClientStateIndicator::OnPaint) EVT_ERASE_BACKGROUND(ClientStateIndicator::OnEraseBackground) EVT_TIMER(ID_ANIMATIONRENDERTIMER, ClientStateIndicator::RunConnectionAnimation) END_EVENT_TABLE() ClientStateIndicator::ClientStateIndicator() {} ClientStateIndicator::ClientStateIndicator(CSimpleFrame* parent,wxPoint coord) : wxPanel(parent, wxID_ANY, coord, wxSize(343,314), wxNO_BORDER) { connIndicatorWidth = 14; connIndicatorHeight = 15; numOfIndic = 5; indexIndVis = 1;//first will be visible on start rightPosition = 118; topPosition = 5; stateMessage = wxString(""); clientState = CLIENT_STATE_NONE; appSkin = SkinClass::Instance(); CreateComponent(); error_time = 0; } ClientStateIndicator::~ClientStateIndicator() { if (m_connRenderTimer) { if ( clientState == CLIENT_STATE_ACTION ) { m_connRenderTimer->Stop(); delete m_connRenderTimer; } } } void ClientStateIndicator::CreateComponent(){ //Set Background color SetBackgroundColour(appSkin->GetAppBgCol()); } void ClientStateIndicator::SetActionState(const char* message) { Freeze(); stateMessage = wxString(message); if ( clientState != CLIENT_STATE_ACTION ) { //Delete Previous state DeletePreviousState(); clientState = CLIENT_STATE_ACTION; i_indBg = new ImageLoader(this); i_indBg->Move(wxPoint(42,74)); i_indBg->LoadImage(*(appSkin->GetStateIndBg())); for(int x = 0; x < numOfIndic; x++){ ImageLoader *i_connInd = new ImageLoader(this); i_connInd->Move(wxPoint(rightPosition +(connIndicatorWidth+10) * x,84)); i_connInd->LoadImage(*(appSkin->GetConnInd())); if(x !=0){ i_connInd->Show(false); } m_connIndV.push_back(i_connInd); } //set animation timer for interface m_connRenderTimer = new wxTimer(this, ID_ANIMATIONRENDERTIMER); wxASSERT(m_connRenderTimer); m_connRenderTimer->Start(500); } Thaw(); } void ClientStateIndicator::SetPausedState(const char* message) { Freeze(); stateMessage = wxString(message); if ( clientState != CLIENT_STATE_PAUSED ) { //Delete Previous state DeletePreviousState(); clientState = CLIENT_STATE_PAUSED; i_indBg = new ImageLoader(this); i_indBg->Move(wxPoint(42,74)); i_indBg->LoadImage(*(appSkin->GetStateIndBg())); for(int x = 0; x < numOfIndic; x++){ ImageLoader *i_connInd = new ImageLoader(this); i_connInd->Move(wxPoint(rightPosition +(connIndicatorWidth+10) * x,84)); i_connInd->LoadImage(*(appSkin->GetConnInd())); m_connIndV.push_back(i_connInd); } } Thaw(); } void ClientStateIndicator::SetNoActionState(const char* message) { Freeze(); stateMessage = wxString(message); if ( clientState != CLIENT_STATE_ERROR ) { //Delete Previous state DeletePreviousState(); clientState = CLIENT_STATE_ERROR; i_indBg = new ImageLoader(this); i_indBg->Move(wxPoint(42,74)); i_indBg->LoadImage(*(appSkin->GetStateIndBg())); i_errorInd = new ImageLoader(this); i_errorInd->Move(wxPoint(rightPosition+24,84)); i_errorInd->LoadImage(*(appSkin->GetErrorInd())); i_errorInd->Refresh(); } Thaw(); } void ClientStateIndicator::DeletePreviousState() { if(clientState == CLIENT_STATE_ACTION || clientState == CLIENT_STATE_PAUSED){ if (m_connRenderTimer && clientState == CLIENT_STATE_ACTION) { m_connRenderTimer->Stop(); delete m_connRenderTimer; } for(int indIndex = 0; indIndex < numOfIndic; indIndex++){ delete m_connIndV.at(indIndex); } //clear vector if(m_connIndV.size() > 0){ m_connIndV.clear(); } //delete ind bg delete i_indBg; }else if(clientState == CLIENT_STATE_ERROR){ delete i_errorInd; //delete ind bg delete i_indBg; } } void ClientStateIndicator::RunConnectionAnimation(wxTimerEvent& WXUNUSED(event)){ if(indexIndVis < numOfIndic){ indexIndVis++; for(int j = 0; j < indexIndVis; j++){ ImageLoader *currInd = m_connIndV[j]; currInd->Show(true); } }else{ indexIndVis = 0; for(int i = 0; i < numOfIndic; i++){ ImageLoader *currInd = m_connIndV[i]; currInd->Show(false); } } } void ClientStateIndicator::ReskinInterface() { DisplayState(); } void ClientStateIndicator::OnPaint(wxPaintEvent& WXUNUSED(event)) { wxPaintDC dc(this); //set font dc.SetFont(wxFont(9,74,90,90,0,wxT("Arial"))); // center the text wxCoord height, width; dc.GetTextExtent(stateMessage, &width, &height); dc.DrawText(stateMessage, wxPoint(176-width/2,120)); } void ClientStateIndicator::OnEraseBackground(wxEraseEvent& event){ event.Skip(false); wxDC *dc; dc=event.GetDC(); dc->SetBackground(wxBrush(this->GetBackgroundColour(),wxSOLID)); dc->Clear(); dc->DrawBitmap(*(appSkin->GetWorkunitBg()), 0, 0); } bool ClientStateIndicator::DownloadingResults() { bool return_value = false; CMainDocument* pDoc = wxGetApp().GetDocument(); if ( pDoc->results.results.size() > 0 ) { RESULT* result; for(unsigned int i=0; !return_value && i < pDoc->results.results.size(); i++ ) { result = pDoc->result(i); if ( result != NULL && result->state == RESULT_FILES_DOWNLOADING ) { return_value = true; } } } return return_value; } bool ClientStateIndicator::Suspended() { CMainDocument* pDoc = wxGetApp().GetDocument(); CC_STATUS status; bool result = false; pDoc->GetCoreClientStatus(status); if ( pDoc->IsConnected() && status.task_suspend_reason > 0 && status.task_suspend_reason != SUSPEND_REASON_DISK_SIZE && status.task_suspend_reason != SUSPEND_REASON_CPU_USAGE_LIMIT ) { result = true; } return result; } void ClientStateIndicator::DisplayState() { CMainDocument* pDoc = wxGetApp().GetDocument(); if ( pDoc->IsReconnecting() ) { error_time = 0; SetActionState(_T("Retrieving current status.")); } else if ( pDoc->IsConnected() && pDoc->state.projects.size() == 0) { error_time = 0; SetPausedState(_T("You don't have any projects. Please Add a Project.")); } else if ( DownloadingResults() ) { error_time = 0; SetActionState(_T("Downloading work from the server.")); } else if ( Suspended() ) { CC_STATUS status; pDoc->GetCoreClientStatus(status); if ( status.task_suspend_reason & SUSPEND_REASON_BATTERIES ) { SetActionState(_T("Processing Suspended: Running On Batteries.")); } else if ( status.task_suspend_reason & SUSPEND_REASON_USER_ACTIVE ) { SetActionState(_T("Processing Suspended: User Active.")); } else if ( status.task_suspend_reason & SUSPEND_REASON_USER_REQ ) { SetActionState(_T("Processing Suspended: User paused processing.")); } else if ( status.task_suspend_reason & SUSPEND_REASON_TIME_OF_DAY ) { SetActionState(_T("Processing Suspended: Time of Day.")); } else if ( status.task_suspend_reason & SUSPEND_REASON_BENCHMARKS ) { SetActionState(_T("Processing Suspended: Benchmarks Running.")); } else { SetActionState(_T("Processing Suspended.")); } } else { if ( error_time == 0 ) { error_time = time(NULL) + 15; SetActionState(_T("Retrieving current status")); } else if ( error_time < time(NULL) ) { SetNoActionState(_T("No work available to process")); } else { SetActionState(_T("Retrieving current status")); } } }