r620: no message
[ctsim.git] / src / backgroundmgr.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          backgroundmgr.cpp
5 **   Purpose:       Background manager class
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  February 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: backgroundmgr.cpp,v 1.13 2001/03/09 02:40:17 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #include "wx/wxprec.h"
29
30 #ifndef WX_PRECOMP
31 #include "wx/wx.h"
32 #endif
33
34 #include "ct.h"
35 #include "ctsim.h"
36 #include "docs.h"
37 #include "views.h"
38 #include "backgroundsupr.h"
39 #include "backgroundmgr.h"
40
41
42 #ifdef HAVE_WXTHREADS
43
44
45 IMPLEMENT_DYNAMIC_CLASS(BackgroundManager, wxMiniFrame)
46 BEGIN_EVENT_TABLE(BackgroundManager, wxMiniFrame)
47 EVT_MENU(BackgroundSupervisor::MSG_BACKGROUND_SUPERVISOR_ADD, BackgroundManager::OnAddTask)
48 EVT_MENU(BackgroundSupervisor::MSG_BACKGROUND_SUPERVISOR_REMOVE, BackgroundManager::OnRemoveTask)
49 EVT_MENU(BackgroundSupervisor::MSG_BACKGROUND_SUPERVISOR_UNIT_TICK, BackgroundManager::OnUnitTick)
50 EVT_CLOSE(BackgroundManager::OnCloseWindow)
51 EVT_COMMAND_RANGE(0, 1000, wxEVT_COMMAND_BUTTON_CLICKED, BackgroundManager::OnCancelButton)
52 END_EVENT_TABLE()
53
54
55 BackgroundManager::BackgroundManager ()
56   : wxMiniFrame (theApp->getMainFrame(), -1, _T("Background Tasks"), wxPoint(0,0), wxSize(210, 50))
57 {
58   m_iNumTasks = 0;
59   m_pCanvas = new BackgroundManagerCanvas (this);
60   theApp->setIconForFrame (this);
61
62   m_sizeGauge.Set (70, 20);
63   m_sizeLabel.Set (140, 20);
64   m_sizeBorder.Set (4, 4);
65   m_sizeCellSpacing.Set (3, 3);
66   //m_sizeButton.Set (70, 20);
67   m_sizeButton.Set (0, 0);
68
69   m_sizeCell.Set (m_sizeGauge.x + m_sizeLabel.x + m_sizeCellSpacing.x + m_sizeButton.x, 25);
70
71   Show(false);
72 }
73
74
75 void
76 BackgroundManager::OnCloseWindow (wxCloseEvent& event)
77 {
78   if (theApp->getMainFrame()->getShuttingDown())
79     wxMiniFrame::OnCloseWindow (event);
80   else
81     event.Veto();
82 }
83
84 void
85 BackgroundManager::OnUnitTick (wxCommandEvent& event)
86 {
87   int iUnits = event.GetInt();
88   BackgroundSupervisor* pTask = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
89   if (pTask == NULL) {
90     sys_error (ERR_SEVERE, "Received NULL task [BackgroundManager::OnAddTask]");
91     return;
92   }
93   if (wxGauge* pGauge = lookupGauge (pTask))
94     pGauge->SetValue (iUnits);
95 }
96
97 void
98 BackgroundManager::OnAddTask (wxCommandEvent& event)
99 {
100   int iNumUnits = event.GetInt();
101   const char* const pszTaskName = event.GetString().c_str();
102   BackgroundSupervisor* pTask = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
103   if (pTask == NULL) {
104     sys_error (ERR_SEVERE, "Received NULL task [BackgroundManager::OnAddTask]");
105     return;
106   }
107
108   wxCriticalSectionLocker locker (m_criticalSection);
109   int iNumTasks = m_vecpBackgroundTasks.size();
110   std::vector<bool> vecPositionUsed (iNumTasks);
111   int i;
112   for (i = 0; i < iNumTasks; i++) {
113     int iPosUsed = m_vecpPositions[i];
114     if (iPosUsed < iNumTasks)
115       vecPositionUsed[iPosUsed] = true;
116     else
117       vecPositionUsed[i] = false;
118   }
119
120   int iFirstUnusedPos = iNumTasks;  // default is just past current number of tasks
121   for (i = 0; i < iNumTasks; i++)
122     if (! vecPositionUsed[i]) {
123       iFirstUnusedPos = i;
124       break;
125     }
126
127   wxPoint posGauge (m_sizeBorder.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
128   wxPoint posLabel (m_sizeBorder.x + m_sizeGauge.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
129   wxGauge* pGauge = new wxGauge (m_pCanvas, -1, iNumUnits, posGauge, m_sizeGauge);
130   wxStaticText* pLabel = new wxStaticText (m_pCanvas, -1, pszTaskName, posLabel, m_sizeLabel);
131   //  wxPoint posButton (m_sizeBorder.x + m_sizeGauge.x + m_sizeLabel.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
132   //  wxButton* pCancelButton = new wxButton (m_pCanvas, iFirstUnusedPos, _T("Cancel"), posButton, m_sizeButton, wxBU_LEFT);
133   std::string* pstrTaskName = new std::string (pszTaskName);
134
135   m_vecpBackgroundTasks.push_back (pTask);
136   m_vecpGauges.push_back (pGauge);
137   m_vecpNames.push_back (pstrTaskName);
138   m_vecpPositions.push_back (iFirstUnusedPos);
139   m_vecpLabels.push_back (pLabel);
140   //m_vecpCancelButtons.push_back (pCancelButton);
141   m_iNumTasks++;
142
143   resizeWindow();
144   if (m_iNumTasks == 1) {
145     Show(true);  
146     theApp->getMainFrame()->SetFocus();  // necessary to keep wxWindows from crashing
147   }
148 }
149
150 void
151 BackgroundManager::OnRemoveTask (wxCommandEvent& event)
152 {
153   BackgroundSupervisor* pTask = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
154   if (pTask == NULL) {
155     sys_error (ERR_SEVERE, "Received NULL task [BackgroundManager::OnAddTask]");
156     return;
157   }
158
159   wxCriticalSectionLocker locker (m_criticalSection);
160
161   StringContainer::iterator iName = m_vecpNames.begin();
162   GaugeContainer::iterator iGauge = m_vecpGauges.begin();
163   PositionContainer::iterator iPosition = m_vecpPositions.begin();
164   LabelContainer::iterator iLabel = m_vecpLabels.begin();
165   //ButtonContainer::iterator iCancelButton = m_vecpCancelButtons.begin();
166   for (TaskContainer::iterator iTask = m_vecpBackgroundTasks.begin(); iTask != m_vecpBackgroundTasks.end(); iTask++) {
167     if (*iTask == pTask) {
168       m_vecpBackgroundTasks.erase (iTask);
169       m_vecpGauges.erase (iGauge);
170       m_vecpNames.erase (iName);
171       m_vecpPositions.erase (iPosition);
172       m_vecpLabels.erase (iLabel);
173       //m_vecpCancelButtons.erase (iCancelButton);
174       delete *iName;
175       delete *iGauge;
176       delete *iLabel;
177       //delete *iCancelButton;
178       m_iNumTasks--;
179       break;
180     }
181     iName++;
182     iGauge++;
183     iPosition++;
184     iLabel++;
185     //iCancelButton++;
186   }
187
188   resizeWindow();
189   if (m_iNumTasks <= 0)
190     Show(false);
191 }
192
193 void
194 BackgroundManager::OnCancelButton (wxCommandEvent& event)
195 {
196 }
197
198 wxGauge*
199 BackgroundManager::lookupGauge (BackgroundSupervisor* pTask)
200 {
201   wxGauge* pGauge = NULL;
202   int i = 0;
203
204   wxCriticalSectionLocker locker (m_criticalSection);
205   for (TaskContainer::iterator iTask = m_vecpBackgroundTasks.begin(); iTask != m_vecpBackgroundTasks.end(); iTask++) {
206     if (*iTask == pTask) {
207       pGauge = m_vecpGauges[i];
208       break;
209     }
210     i++;
211   }
212
213   return pGauge;
214 }
215
216 void
217 BackgroundManager::resizeWindow()
218 {
219   int iHighestPosition = -1;
220
221   for (unsigned int i = 0; i < m_vecpPositions.size(); i++)
222     if (iHighestPosition < m_vecpPositions[i])
223       iHighestPosition = m_vecpPositions[i];
224
225   wxSize sizeWindow (m_sizeCell.x, m_sizeCell.y * (iHighestPosition + 1));
226   SetClientSize (sizeWindow);
227   m_pCanvas->Refresh();
228 }
229
230
231
232 IMPLEMENT_DYNAMIC_CLASS(BackgroundManagerCanvas, wxPanel)
233 BEGIN_EVENT_TABLE(BackgroundManagerCanvas, wxPanel)
234 //EVT_PAINT(BackgroundManagerCanvas::OnPaint)
235 END_EVENT_TABLE()
236
237 BackgroundManagerCanvas::BackgroundManagerCanvas (BackgroundManager* pMgr)
238 : wxPanel (pMgr), m_pBackgroundManager(pMgr)
239 {
240 }
241
242
243 #endif // HAVE_WXTHREADS