
jadex.bdi.tutorial.EnglishGermanTranslationPlanB1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bdi Show documentation
Show all versions of jadex-applications-bdi Show documentation
The Jadex BDI applications package contain
several example applications, benchmarks and
testcases using BDI agents.
The newest version!
package jadex.bdi.tutorial;
import jadex.bdi.runtime.IMessageEvent;
import jadex.bdi.runtime.Plan;
import jadex.bridge.fipa.SFipa;
import java.util.HashMap;
import java.util.Map;
/**
* An initial english german translation plan can translate
* english words to german.
*/
public class EnglishGermanTranslationPlanB1 extends Plan
{
//-------- attributes --------
/** The wordtable. */
protected Map wordtable;
//-------- methods --------
/**
* Create a new plan.
*/
public EnglishGermanTranslationPlanB1()
{
System.out.println("Created: "+this);
this.wordtable = new HashMap();
this.wordtable.put("coffee", "Kaffee");
this.wordtable.put("milk", "Milch");
this.wordtable.put("cow", "Kuh");
this.wordtable.put("cat", "Katze");
this.wordtable.put("dog", "Hund");
}
//-------- methods --------
/**
* The plan body.
*/
public void body()
{
while(true)
{
IMessageEvent me = waitForMessageEvent("request_translation");
// String eword = (String)me.getContent();
String eword = (String)me.getParameter(SFipa.CONTENT).getValue();
String gword = (String)this.wordtable.get(eword);
if(gword!=null)
{
System.out.println("Translating from English to German: "+eword+" - "+gword);
}
else
{
System.out.println("Sorry word is not in database: "+eword);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy