001    /**
002     * planningtool - A Planning Tool with Critiquing Support.
003     * 
004     * Copyright (C) 2006 olale
005    
006     * This program is free software; you can redistribute it and/or
007     * modify it under the terms of the GNU General Public License
008     * as published by the Free Software Foundation; either version 2
009     * of the License, or (at your option) any later version.
010    
011     * This program is distributed in the hope that it will be useful,
012     * but WITHOUT ANY WARRANTY; without even the implied warranty of
013     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014     * GNU General Public License for more details.
015    
016     * You should have received a copy of the GNU General Public License
017     * along with this program; if not, write to the Free Software
018     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
019    
020     * Contact information: 
021     * E-mail: olale@ida.liu.se
022     *         olale@lysator.liu.se
023     */
024    package se.liu.ida.critiquer.scenarios.standard;
025    
026    import java.util.HashMap;
027    
028    import se.liu.ida.critiquer.mics.Utils;
029    import se.liu.ida.critiquer.resources.Agent;
030    import se.liu.ida.critiquer.resources.SingleSelectionParameter;
031    import se.liu.ida.critiquer.resources.Suitability;
032    
033    public class Ambulance extends Agent {
034    
035            /**
036         * 
037         */
038            private static final long serialVersionUID = 1L;
039    
040            public Ambulance(String name) {
041                    super(name);
042                    init();
043            }
044    
045            /**
046         * @param parent
047         * @param name
048         */
049            public Ambulance(Agent parent, String name) {
050                    super(parent, name);
051                    init();
052            }
053    
054            private void init() {
055                    // We need only model which tasks an agent is unfit to perform
056                    HashMap<Class, Suitability> suitabilityMap = new HashMap<Class, Suitability>();
057                    suitabilityMap.put(RoadBlockActivity.class, Suitability.UNFIT);
058                    Agent.fitnessMap.put(this.getClass(), suitabilityMap);
059    
060                    StandardAgentParameterFactory.createFuelParameters(this,90,9);
061    
062                    StandardAgentParameterFactory.createSpeedParameter(this, 150L);
063    
064                    StandardAgentParameterFactory.createFirstAidParameters(this, 15L, 4);
065    
066                    StandardAgentParameterFactory.createTransportParameter(this, 4);
067    
068                    initPanel();
069            }
070    
071    
072    }