Package eas.plugins.standard.eaPlugin

Source Code of eas.plugins.standard.eaPlugin.SensorPlugin

/*
* Dateiname:        SensorPlugin.java
* Autor(en):        Lukas König
* Java-Version:     6.0
* Erstellt:         -
*
* (c) This file and the EAS (Easy Agent Simulation) framework containing it
* is protected by Creative Commons by-nc-sa license. Any altered or
* further developed versions of this file have to meet the agreements
* stated by the license conditions.
*
* In a nutshell
* -------------
* You are free:
* - to Share -- to copy, distribute and transmit the work
* - to Remix -- to adapt the work
*
* Under the following conditions:
* - Attribution -- You must attribute the work in the manner specified by the
*   author or licensor (but not in any way that suggests that they endorse
*   you or your use of the work).
* - Noncommercial -- You may not use this work for commercial purposes.
* - Share Alike -- If you alter, transform, or build upon this work, you may
*   distribute the resulting work only under the same or a similar license to
*   this one.
*
* + Detailed license conditions (Germany):
*   http://creativecommons.org/licenses/by-nc-sa/3.0/de/
* + Detailed license conditions (unported):
*   http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en
*
* This header must be placed in the beginning of any version of this file.
*/

package eas.plugins.standard.eaPlugin;

import java.util.LinkedList;
import java.util.List;

import eas.miscellaneous.StaticMethods;
import eas.plugins.Plugin;
import eas.plugins.PluginProperties;
import eas.plugins.standard.eaPlugin.wanddynamik.zahnradGross.GrZahnr;
import eas.simulation.Wink;
import eas.simulation.agent.GenericSensor;
import eas.simulation.event.EASEvent;
import eas.simulation.spatial.sim2D.marbSimulation.EnvironmentEA;
import eas.startSetup.ParCollection;
import eas.startSetup.SingleParameter;

/**
* @author Lukas König
*
*/
@PluginProperties(pluginIsHidden = true)
public class SensorPlugin extends StandardPluginForEA {

    /**
     *
     */
    private static final long serialVersionUID = -8721431848644089098L;
    /**
     * Die zu speichernden Sensorwerte.
     */
    LinkedList<String> sensorwerte = new LinkedList<String>();
   
    /**
     * Verschiebung nach Umschalten in Simulation.
     *
     * @param umg     Das Umgebungsobjekt.
     * @param simZyk  Die Anzahl der bisher abgelaufenen Simulationszyklen.
     * @param params  Die Parameter.
     */
    @SuppressWarnings("unchecked")
    @Override
    public void runDuringSimulation(
            final EnvironmentEA env,
            final Wink simZyk,
            final ParCollection params) {
        EnvironmentEA umg = env;
        String sensoren = "";
        int[] sensArray = umg.getAgents().get(0).getSensorWerte();
        Plugin<EnvironmentEA> grZahn;
       
        for (int i = 0; i < 7; i++) {
            sensoren += sensArray[i] + ",";
        }
       
        this.sensorwerte.add(sensoren);
       
        if (simZyk.getLastTick() >= params.getParValueDouble("TimeToTermination") - 1) {
            StaticMethods.speichereTextAusArray(
                    params.getStdDirectory(),
                    "sensoren.txt",
                    this.sensorwerte,
                    params);
            StaticMethods.log(StaticMethods.LOG_INFO, params.getStdDirectory(), params);
        }
       
        grZahn = (Plugin<EnvironmentEA>) umg.getPluginObject(new GrZahnr().id());
        grZahn.runDuringSimulation(umg, simZyk, params);
    }
   
    /**
     * führt Aktionen aus, die vor dem Start der Simulation fertiggestellt sein
     * müssen.
     *
     * <Methode wird VOR Simulation aufgerufen.>
     *
     * @param umg     Die Umgebung.
     * @param params  Die Parameter.
     */
    @Override
    public void runBeforeSimulation(
            final EnvironmentEA umg,
            final ParCollection params) {
       
    }

    /**
     * führt Aktionen aus, die nach dem Ende der Simulation abschließend
     * ausgeführt werden müssen.
     *
     * <Methode wird NACH Simulation aufgerufen.>
     *
     * @param umg     Die Umgebung.
     * @param params  Die Parameter.
     */
    @Override
    public void runAfterSimulation(
            final EnvironmentEA umg,
            final ParCollection params) {
       
    }

    /**
     * @return  Identifikation.
     */
    @Override
    public String id() {
        return "sensorplugin";
    }
   
    /**
     * über diese Methode können neue Parameter definiert werden, die nur in
     * diesem PluginGültigkeit haben. Wichtig ist zu gewährleisten, dass keine
     * gleichnamigen Parameter in verschiedenen Plugins existieren.
     *
     * @return  Die Liste von Parametern.
     */
    @Override
    public List<SingleParameter> getParameters() {
        return null;
    }

    /**
     * über diese Methode können generische Sensoren definiert werden,
     * die als Liste von Sensoren zurückgegeben werden müssen. Die Liste kann
     * <code>null</code> sein.
     *
     * @return  Die Liste generischer Sensoren.
     */
    @Override
    public List<GenericSensor<?, ?, ?>> getGenericSensors() {
        return null;
    }
   
    /**
     * über diese Methode können abhängigkeiten zwischen Plugins definiert
     * werden. Die hier zurückgegebene Liste sollte die IDs aller Plugins
     * enthalten, die von diesem Plugin benötigt werden und ohne die kein
     * Start der Simulation möglich sein soll.
     *
     * Abh.: GrZahnr.
     *
     * @return Die Liste benötigter Plugins. Diese Liste kann <code>null</code>
     *         sein, wenn keine abhängigkeiten definiert werden sollen.
     */
    @Override
    public List<String> getRequiredPlugins() {
        LinkedList<String> liste = new LinkedList<String>();
        liste.add(new GrZahnr().id());
        return liste;
    }

    /* (non-Javadoc)
     * @see eas.plugins.Plugin#handleEvent(eas.simulation.FMGEvent, eas.simulation.Wink)
     */
    @Override
    public void handleEvent(
            final EASEvent e,
            final EnvironmentEA env,
            final Wink lastTick,
            final ParCollection params) {
       
    }
}
TOP

Related Classes of eas.plugins.standard.eaPlugin.SensorPlugin

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.