~ubuntu-branches/ubuntu/natty/aspectc++/natty

« back to all changes in this revision

Viewing changes to Puma/gen-release/step2/src/ManipController.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file is part of PUMA.
 
2
// Copyright (C) 1999-2003  The PUMA developer team.
 
3
//                                                                
 
4
// This program is free software;  you can redistribute it and/or 
 
5
// modify it under the terms of the GNU General Public License as 
 
6
// published by the Free Software Foundation; either version 2 of 
 
7
// the License, or (at your option) any later version.            
 
8
//                                                                
 
9
// This program is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
 
12
// GNU General Public License for more details.                   
 
13
//                                                                
 
14
// You should have received a copy of the GNU General Public      
 
15
// License along with this program; if not, write to the Free     
 
16
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
 
17
// MA  02111-1307  USA                                            
 
18
 
 
19
#include "Puma/ManipController.h"
 
20
#include "Puma/Token.h"
 
21
#include "Puma/Unit.h"
 
22
 
 
23
namespace Puma {
 
24
 
 
25
 
 
26
// Reset the controller for the next run.
 
27
void ManipController::reset () {
 
28
  _excluded.reset ();
 
29
  _in_progress.reset ();
 
30
}
 
31
 
 
32
// All manipulated units are excluded to be manipulated again.
 
33
void ManipController::exclude () {
 
34
  for (long i = 0; i < _in_progress.length (); i++)
 
35
    _excluded.append (_in_progress[i]);
 
36
  _in_progress.reset ();
 
37
}
 
38
 
 
39
// Is the unit, the token belongs to, permitted to be manipulated?
 
40
bool ManipController::permitted (Token *token) {
 
41
  if (! token) return true;
 
42
  Unit *unit = (Unit*)token->belonging_to ();
 
43
  if (! unit) return true;
 
44
    
 
45
  for (long i = 0; i < _excluded.length (); i++)
 
46
    if (unit == _excluded[i])
 
47
      return false;
 
48
 
 
49
  // Do not add a unit twice.
 
50
  for (long i = 0; i < _in_progress.length (); i++)
 
51
    if (unit == _in_progress[i])
 
52
      return true;
 
53
 
 
54
  _in_progress.append (unit);
 
55
  return true;
 
56
}
 
57
 
 
58
 
 
59
} // namespace Puma