2006-08-18 21:45:17 +00:00
|
|
|
// 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"
|
2006-08-23 21:22:41 +00:00
|
|
|
#include "time.h"
|
2006-08-18 21:45:17 +00:00
|
|
|
|
|
|
|
#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;
|
2006-08-24 17:54:54 +00:00
|
|
|
numOfIndic = 5;
|
2006-08-18 21:45:17 +00:00
|
|
|
indexIndVis = 1;//first will be visible on start
|
2006-08-24 17:54:54 +00:00
|
|
|
rightPosition = 118;
|
2006-08-18 21:45:17 +00:00
|
|
|
topPosition = 5;
|
|
|
|
stateMessage = wxString("");
|
2006-08-24 17:54:54 +00:00
|
|
|
clientState = CLIENT_STATE_NONE;
|
2006-08-18 21:45:17 +00:00
|
|
|
LoadSkinImages();
|
|
|
|
CreateComponent();
|
2006-08-23 21:22:41 +00:00
|
|
|
error_time = 0;
|
2006-08-18 21:45:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ClientStateIndicator::~ClientStateIndicator()
|
|
|
|
{
|
|
|
|
if (m_connRenderTimer) {
|
2006-08-24 17:54:54 +00:00
|
|
|
if ( clientState == CLIENT_STATE_ACTION ) {
|
|
|
|
m_connRenderTimer->Stop();
|
|
|
|
delete m_connRenderTimer;
|
|
|
|
}
|
2006-08-18 21:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientStateIndicator::LoadSkinImages()
|
|
|
|
{
|
|
|
|
//app skin class
|
|
|
|
appSkin = SkinClass::Instance();
|
|
|
|
wxString dirPref = appSkin->GetSkinsFolder()+_T("/")+appSkin->GetSkinName()+_T("/");
|
|
|
|
// comp bg
|
|
|
|
g_compBg = new wxImage(dirPref + appSkin->GetWorkunitBg(), wxBITMAP_TYPE_PNG);
|
|
|
|
m_compBG = wxBitmap(g_compBg);
|
|
|
|
//state ind bg
|
|
|
|
g_stateIndBg = new wxImage(dirPref + appSkin->GetStateIndBg(), wxBITMAP_TYPE_PNG);
|
|
|
|
m_stateIndBG = wxBitmap(g_stateIndBg);
|
|
|
|
// indicators
|
|
|
|
g_connInd = new wxImage(dirPref + appSkin->GetConnInd(), wxBITMAP_TYPE_PNG);
|
|
|
|
g_errorInd = new wxImage(dirPref + appSkin->GetErrorInd(), wxBITMAP_TYPE_PNG);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientStateIndicator::CreateComponent(){
|
|
|
|
//Set Background color
|
|
|
|
SetBackgroundColour(appSkin->GetAppBgCol());
|
|
|
|
}
|
2006-08-23 21:22:41 +00:00
|
|
|
void ClientStateIndicator::SetActionState(const char* message)
|
2006-08-18 21:45:17 +00:00
|
|
|
{
|
|
|
|
Freeze();
|
2006-08-24 17:54:54 +00:00
|
|
|
stateMessage = wxString(message);
|
|
|
|
if ( clientState != CLIENT_STATE_ACTION ) {
|
|
|
|
//Delete Previous state
|
|
|
|
DeletePreviousState();
|
2006-08-18 21:45:17 +00:00
|
|
|
|
2006-08-24 17:54:54 +00:00
|
|
|
clientState = CLIENT_STATE_ACTION;
|
|
|
|
i_indBg = new ImageLoader(this);
|
|
|
|
i_indBg->Move(wxPoint(42,74));
|
|
|
|
i_indBg->LoadImage(g_stateIndBg);
|
2006-08-18 21:45:17 +00:00
|
|
|
|
2006-08-24 17:54:54 +00:00
|
|
|
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(g_connInd);
|
|
|
|
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();
|
2006-08-23 21:22:41 +00:00
|
|
|
stateMessage = wxString(message);
|
2006-08-24 17:54:54 +00:00
|
|
|
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(g_stateIndBg);
|
|
|
|
|
2006-08-18 21:45:17 +00:00
|
|
|
|
2006-08-24 17:54:54 +00:00
|
|
|
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(g_connInd);
|
|
|
|
m_connIndV.push_back(i_connInd);
|
2006-08-18 21:45:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Thaw();
|
|
|
|
}
|
2006-08-23 21:22:41 +00:00
|
|
|
void ClientStateIndicator::SetNoActionState(const char* message)
|
2006-08-18 21:45:17 +00:00
|
|
|
{
|
|
|
|
Freeze();
|
2006-08-23 21:22:41 +00:00
|
|
|
stateMessage = wxString(message);
|
2006-08-18 21:45:17 +00:00
|
|
|
|
2006-08-24 17:54:54 +00:00
|
|
|
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(g_stateIndBg);
|
|
|
|
|
|
|
|
i_errorInd = new ImageLoader(this);
|
|
|
|
i_errorInd->Move(wxPoint(rightPosition+24,84));
|
|
|
|
i_errorInd->LoadImage(g_errorInd);
|
|
|
|
i_errorInd->Refresh();
|
|
|
|
}
|
2006-08-18 21:45:17 +00:00
|
|
|
Thaw();
|
|
|
|
}
|
|
|
|
void ClientStateIndicator::DeletePreviousState()
|
|
|
|
{
|
2006-08-24 17:54:54 +00:00
|
|
|
if(clientState == CLIENT_STATE_ACTION || clientState == CLIENT_STATE_PAUSED){
|
|
|
|
if (m_connRenderTimer && clientState == CLIENT_STATE_ACTION) {
|
2006-08-18 21:45:17 +00:00
|
|
|
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;
|
2006-08-24 17:54:54 +00:00
|
|
|
}else if(clientState == CLIENT_STATE_ERROR){
|
2006-08-18 21:45:17 +00:00
|
|
|
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()
|
|
|
|
{
|
|
|
|
LoadSkinImages();
|
2006-08-23 21:22:41 +00:00
|
|
|
DisplayState();
|
2006-08-18 21:45:17 +00:00
|
|
|
}
|
|
|
|
void ClientStateIndicator::OnPaint(wxPaintEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
wxPaintDC dc(this);
|
2006-08-24 17:54:54 +00:00
|
|
|
//set font
|
2006-08-18 21:45:17 +00:00
|
|
|
dc.SetFont(wxFont(9,74,90,90,0,wxT("Arial")));
|
2006-08-24 17:54:54 +00:00
|
|
|
// center the text
|
|
|
|
wxCoord height, width;
|
|
|
|
dc.GetTextExtent(stateMessage, &width, &height);
|
|
|
|
dc.DrawText(stateMessage, wxPoint(176-width/2,120));
|
2006-08-18 21:45:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
void ClientStateIndicator::OnEraseBackground(wxEraseEvent& event){
|
|
|
|
|
|
|
|
event.Skip(false);
|
|
|
|
wxDC *dc;
|
|
|
|
dc=event.GetDC();
|
|
|
|
dc->SetBackground(wxBrush(this->GetBackgroundColour(),wxSOLID));
|
|
|
|
dc->Clear();
|
|
|
|
if(m_compBG.Ok())
|
|
|
|
{
|
|
|
|
dc->DrawBitmap(m_compBG, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-08-23 21:22:41 +00:00
|
|
|
|
2006-08-24 17:54:54 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-08-23 21:22:41 +00:00
|
|
|
void ClientStateIndicator::DisplayState() {
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
|
|
if ( pDoc->IsReconnecting() ) {
|
2006-08-24 17:54:54 +00:00
|
|
|
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."));
|
2006-08-23 21:22:41 +00:00
|
|
|
} else {
|
|
|
|
if ( error_time == 0 ) {
|
2006-08-24 17:54:54 +00:00
|
|
|
error_time = time(NULL) + 15;
|
|
|
|
SetActionState(_T("Retrieving current status"));
|
2006-08-23 21:22:41 +00:00
|
|
|
} else if ( error_time < time(NULL) ) {
|
2006-08-24 17:54:54 +00:00
|
|
|
SetNoActionState(_T("No work available to process"));
|
2006-08-23 21:22:41 +00:00
|
|
|
} else {
|
2006-08-24 17:54:54 +00:00
|
|
|
SetActionState(_T("Retrieving current status"));
|
2006-08-23 21:22:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|