Changeset 718
- Timestamp:
- 11/16/2010 12:19:58 AM (10 years ago)
- Location:
- AgentMind/branches/FAtiMA-Modular
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
AgentMind/branches/FAtiMA-Modular/AgentLauncher/src/AgentWithNeedsLauncher.java
r658 r718 5 5 import org.xml.sax.SAXException; 6 6 7 import FAtiMA. AgentCore;8 import FAtiMA. exceptions.ActionsParsingException;9 import FAtiMA. exceptions.GoalLibParsingException;10 import FAtiMA. exceptions.UnknownGoalException;7 import FAtiMA.Core.AgentCore; 8 import FAtiMA.Core.exceptions.ActionsParsingException; 9 import FAtiMA.Core.exceptions.GoalLibParsingException; 10 import FAtiMA.Core.exceptions.UnknownGoalException; 11 11 12 12 -
AgentMind/branches/FAtiMA-Modular/AgentLauncherAndroid/src/lirec/android/fatima/AgentLauncherAndroid.java
r629 r718 10 10 11 11 12 import FAtiMA. Agent;13 import FAtiMA. util.VersionChecker;14 import FAtiMA. util.enumerables.AgentPlatform;15 import FAtiMA. util.parsers.ScenarioLoaderHandler;12 import FAtiMA.Core.AgentCore; 13 import FAtiMA.Core.util.VersionChecker; 14 import FAtiMA.Core.util.enumerables.AgentPlatform; 15 import FAtiMA.Core.util.parsers.ScenarioLoaderHandler; 16 16 17 17 public class AgentLauncherAndroid extends Thread { … … 38 38 short agentPlatform = 0; 39 39 String platform; 40 Agent agent = null;40 AgentCore agent = null; 41 41 String args2[] = null; 42 42 … … 52 52 SAXParserFactory factory = SAXParserFactory.newInstance(); 53 53 SAXParser parser = factory.newSAXParser(); 54 parser.parse(new File(Agent .MIND_PATH_ANDROID + "LirecScenarios.xml"), scenHandler);54 parser.parse(new File(AgentCore.MIND_PATH_ANDROID + "LirecScenarios.xml"), scenHandler); 55 55 args2 = scenHandler.getAgentArguments(); 56 56 } -
AgentMind/branches/FAtiMA-Modular/FAtiMA.MotivationalSystem/src/FAtiMA/motivationalSystem/MotivationalComponent.java
r717 r718 539 539 UpdateCertainty(-a.getProbability(am)); 540 540 } 541 542 543 @Override544 public void processExternalRequest(String requestMsg) {545 }546 541 } -
AgentMind/branches/FAtiMA-Modular/RetrievalProcesses/.classpath
r717 r718 6 6 <classpathentry kind="con" path="DROOLS/Drools"/> 7 7 <classpathentry combineaccessrules="false" kind="src" path="/FAtiMA"/> 8 <classpathentry combineaccessrules="false" kind="src" path="/FAtiMA.GeneralMemory"/>9 8 <classpathentry kind="output" path="bin"/> 10 9 </classpath> -
AgentMind/branches/FAtiMA-Modular/WorldTest/src/GretaAgent.java
r629 r718 34 34 35 35 36 import FAtiMA. util.parsers.SocketListener;36 import FAtiMA.Core.util.parsers.SocketListener; 37 37 38 38 -
AgentMind/branches/FAtiMA-Modular/WorldTest/src/RemoteAgent.java
r629 r718 6 6 import java.util.StringTokenizer; 7 7 8 import FAtiMA. conditions.Condition;9 import FAtiMA. deliberativeLayer.plan.Effect;10 import FAtiMA. deliberativeLayer.plan.Step;11 import FAtiMA. sensorEffector.SpeechAct;12 import FAtiMA. util.parsers.SocketListener;13 import FAtiMA. wellFormedNames.Name;14 import FAtiMA. wellFormedNames.Substitution;15 import FAtiMA. wellFormedNames.Symbol;16 import FAtiMA. wellFormedNames.Unifier;8 import FAtiMA.Core.conditions.Condition; 9 import FAtiMA.Core.deliberativeLayer.plan.Effect; 10 import FAtiMA.Core.deliberativeLayer.plan.Step; 11 import FAtiMA.Core.sensorEffector.SpeechAct; 12 import FAtiMA.Core.util.parsers.SocketListener; 13 import FAtiMA.Core.wellFormedNames.Name; 14 import FAtiMA.Core.wellFormedNames.Substitution; 15 import FAtiMA.Core.wellFormedNames.Symbol; 16 import FAtiMA.Core.wellFormedNames.Unifier; 17 17 18 18 /* -
AgentMind/branches/FAtiMA-Modular/WorldTest/src/UserInterface.java
r629 r718 18 18 import javax.swing.JTextField; 19 19 20 import FAtiMA. conditions.Condition;21 import FAtiMA. deliberativeLayer.plan.Effect;22 import FAtiMA. deliberativeLayer.plan.Step;23 import FAtiMA. wellFormedNames.Name;24 import FAtiMA. wellFormedNames.Substitution;25 import FAtiMA. wellFormedNames.Symbol;26 import FAtiMA. wellFormedNames.Unifier;20 import FAtiMA.Core.conditions.Condition; 21 import FAtiMA.Core.deliberativeLayer.plan.Effect; 22 import FAtiMA.Core.deliberativeLayer.plan.Step; 23 import FAtiMA.Core.wellFormedNames.Name; 24 import FAtiMA.Core.wellFormedNames.Substitution; 25 import FAtiMA.Core.wellFormedNames.Symbol; 26 import FAtiMA.Core.wellFormedNames.Unifier; 27 27 28 28 import java.awt.event.*; -
AgentMind/branches/FAtiMA-Modular/WorldTest/src/WorldTest.java
r629 r718 7 7 import javax.xml.parsers.SAXParserFactory; 8 8 9 import FAtiMA. deliberativeLayer.plan.Step;10 import FAtiMA. sensorEffector.SpeechAct;11 import FAtiMA. util.parsers.ScenarioLoaderHandler;12 import FAtiMA. util.parsers.ActionsLoaderHandler;9 import FAtiMA.Core.deliberativeLayer.plan.Step; 10 import FAtiMA.Core.sensorEffector.SpeechAct; 11 import FAtiMA.Core.util.parsers.ScenarioLoaderHandler; 12 import FAtiMA.Core.util.parsers.ActionsLoaderHandler; 13 13 import Language.LanguageEngine; 14 14
Note: See TracChangeset
for help on using the changeset viewer.