r624: 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.15 2001/03/09 21:31:51 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 #ifdef HAVE_WXTHREADS
42
43 int BackgroundManager::s_iNextButtonID = 0;
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, 30000, 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
68   m_sizeCell.Set (m_sizeGauge.x + m_sizeLabel.x + m_sizeCellSpacing.x + m_sizeButton.x, 25);
69
70   Show(false);
71 }
72
73
74 BackgroundManager::~BackgroundManager()
75 {
76 }
77
78 void
79 BackgroundManager::OnCloseWindow (wxCloseEvent& event)
80 {
81   if (theApp->getMainFrame()->getShuttingDown())
82     wxMiniFrame::OnCloseWindow (event);
83   else
84     event.Veto();
85 }
86
87 void
88 BackgroundManager::OnUnitTick (wxCommandEvent& event)
89 {
90   int iUnits = event.GetInt();
91   
92   BackgroundSupervisor* pSupervisor = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
93   if (pSupervisor == NULL) {
94     sys_error (ERR_SEVERE, "Received NULL task [BackgroundManager::OnUnitTick]");
95     return;
96   }
97
98   BackgroundManagerTask* pTask = lookupTask (pSupervisor);
99   if (pTask == NULL) {
100           sys_error (ERR_SEVERE, "Error looking up task [BackgroundManager::OnUnitTick]");
101           return;
102   }
103   pTask->gauge()->SetValue (iUnits);
104 }
105
106 void
107 BackgroundManager::OnAddTask (wxCommandEvent& event)
108 {
109   int iNumUnits = event.GetInt();
110   const char* const pszTaskName = event.GetString().c_str();
111   BackgroundSupervisor* pSupervisor = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
112   if (pSupervisor == NULL) {
113     sys_error (ERR_SEVERE, "Received NULL supervisor [BackgroundManager::OnAddTask]");
114     return;
115   }
116
117   wxCriticalSectionLocker locker (m_criticalSection);
118
119   int iNumTasks = m_vecpTasks.size();
120   std::vector<bool> vecPositionUsed (iNumTasks);  //vector of used table positions 
121   for (int iP = 0; iP < iNumTasks; iP++)
122     vecPositionUsed[iP] = false;
123
124   for (TaskContainer::iterator iT = m_vecpTasks.begin(); iT != m_vecpTasks.end(); iT++) {
125     int iPosUsed = (*iT)->position();
126     if (iPosUsed < iNumTasks)
127       vecPositionUsed[iPosUsed] = true;
128   }
129
130   int iFirstUnusedPos = iNumTasks;  // default is just past current number of tasks
131   for (int i = 0; i < iNumTasks; i++)
132     if (! vecPositionUsed[i]) {
133       iFirstUnusedPos = i;
134       break;
135     }
136   
137   wxPoint posGauge (m_sizeBorder.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
138   wxPoint posLabel (m_sizeBorder.x + m_sizeGauge.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
139   wxPoint posButton (m_sizeBorder.x + m_sizeGauge.x + m_sizeLabel.x, m_sizeBorder.y + iFirstUnusedPos * m_sizeCell.y);
140   wxGauge* pGauge = new wxGauge (m_pCanvas, -1, iNumUnits, posGauge, m_sizeGauge);
141   wxStaticText* pLabel = new wxStaticText (m_pCanvas, -1, pszTaskName, posLabel, m_sizeLabel);
142   wxButton* pButton = new wxButton (m_pCanvas, s_iNextButtonID, _T("Cancel"), posButton, m_sizeButton, wxBU_LEFT);
143
144   BackgroundManagerTask* pTask = new BackgroundManagerTask (pSupervisor, pszTaskName, 
145     iFirstUnusedPos, pGauge, pLabel, pButton, s_iNextButtonID);
146
147   m_vecpTasks.push_back (pTask);
148   m_iNumTasks++;
149   s_iNextButtonID++;
150
151   resizeWindow();
152   if (m_iNumTasks == 1) {
153         SetFocus();
154     Show(true);  
155     theApp->getMainFrame()->SetFocus();  // necessary to keep wxWindows from crashing
156   }
157 }
158
159 void
160 BackgroundManager::OnRemoveTask (wxCommandEvent& event)
161 {
162   BackgroundSupervisor* pSupervisor = reinterpret_cast<BackgroundSupervisor*>(event.GetClientData());
163   if (pSupervisor == NULL) {
164     sys_error (ERR_SEVERE, "Received NULL task [BackgroundManager::OnRemoveTask]");
165     return;
166   }
167
168   wxCriticalSectionLocker locker (m_criticalSection);
169
170   bool bFound = false;
171   for (TaskContainer::iterator iTask = m_vecpTasks.begin(); iTask != m_vecpTasks.end(); iTask++) {
172     if ((*iTask)->supervisor() == pSupervisor) {
173           delete (*iTask)->gauge();
174             delete (*iTask)->label();
175             delete (*iTask)->button();
176       delete *iTask;
177       m_vecpTasks.erase (iTask);
178       m_iNumTasks--;
179             bFound = true;
180       break;
181     }
182   }
183   if (! bFound)  {
184           sys_error (ERR_SEVERE, "Unable to find supervisor [BackgroundManager::OnRemoveTask]");
185     return;
186   }
187   pSupervisor->ackRemoveBackgroundManager();
188   resizeWindow();
189   if (m_iNumTasks <= 0)
190     Show(false);
191 }
192
193 void
194 BackgroundManager::OnCancelButton (wxCommandEvent& event)
195 {
196   BackgroundManagerTask* pTask = lookupTask (event.GetId());
197   if (! pTask) {
198     sys_error (ERR_SEVERE, "Unable to lookup task for button");
199     return;
200   }
201
202   pTask->supervisor()->onCancel();
203 }
204
205 BackgroundManagerTask*
206 BackgroundManager::lookupTask (BackgroundSupervisor* pSupervisor)
207 {
208   BackgroundManagerTask* pTask = NULL;
209
210   wxCriticalSectionLocker locker (m_criticalSection);
211   for (TaskContainer::iterator iTask = m_vecpTasks.begin(); iTask != m_vecpTasks.end(); iTask++) {
212     if ((*iTask)->supervisor() == pSupervisor) {
213       pTask = *iTask;
214       break;
215     }
216   }
217
218   return pTask;
219 }
220
221 BackgroundManagerTask*
222 BackgroundManager::lookupTask (int iButtonID)
223 {
224   BackgroundManagerTask* pTask = NULL;
225
226   wxCriticalSectionLocker locker (m_criticalSection);
227   for (TaskContainer::iterator iTask = m_vecpTasks.begin(); iTask != m_vecpTasks.end(); iTask++) {
228     if ((*iTask)->buttonID() == iButtonID) {
229       pTask = *iTask;
230       break;
231     }
232   }
233
234   return pTask;
235 }
236
237 void
238 BackgroundManager::resizeWindow()
239 {
240   int iHighestPosition = -1;
241
242   wxCriticalSectionLocker lock (m_criticalSection);
243   for (TaskContainer::iterator i = m_vecpTasks.begin(); i != m_vecpTasks.end(); i++)
244     if (iHighestPosition < (*i)->position())
245       iHighestPosition = (*i)->position();
246
247   wxSize sizeWindow (m_sizeCell.x, m_sizeCell.y * (iHighestPosition + 1));
248   SetClientSize (sizeWindow);
249   m_pCanvas->Refresh();
250 }
251
252
253
254 IMPLEMENT_DYNAMIC_CLASS(BackgroundManagerCanvas, wxPanel)
255 BEGIN_EVENT_TABLE(BackgroundManagerCanvas, wxPanel)
256 END_EVENT_TABLE()
257
258 BackgroundManagerCanvas::BackgroundManagerCanvas (BackgroundManager* pMgr)
259 : wxPanel (pMgr), m_pBackgroundManager(pMgr)
260 {
261 }
262
263
264 #endif // HAVE_WXTHREADS