⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 printermaker.java

📁 人工智能中Agent开发包。多 Agent 系统是处理自治 Agent 之间知识层的协作问题
💻 JAVA
字号:
/*	This software was produced as a part of research	activities. It is not intended to be used as commercial	or industrial software by any organisation. Except as	explicitly stated, no guarantees are given as to its	reliability or trustworthiness if used for purposes other	than those for which it was originally intended. 	(c) British Telecommunications plc 1999.*/
/*
This code was automatically generated by ZeusAgentGenerator version 1.2.2
                           DO NOT MODIFY!!
*/
import java.util.*;
import java.io.*;
import zeus.util.*;
import zeus.concepts.*;
import zeus.actors.*;
import zeus.agents.*;

public class PrinterMaker {
   protected static void version() {
      System.err.println("ZeusAgent - PrinterMaker version: 1.2.2");
      System.exit(0);
   }

   protected static void usage() {
      System.err.println("Usage: java PrinterMaker -s <dns_file> -o <ontology_file> [-gui ViewerProg] [-e <ExternalProg>] [-r ResourceProg] [-name <AgentName>] [-debug] [-h] [-v]");
      System.exit(0);
   }

   public static void main(String[] arg) {
   try { 
      ZeusAgent agent;
      String external = null;
      String dns_file = null;
      String resource = null;
      String gui = null;
      String ontology_file = null;
      Vector nameservers = null;
      String name = new String ("PrinterMaker");
      Bindings b = new Bindings("PrinterMaker");
      FileInputStream stream = null;
      ZeusExternal user_prog = null;


      for( int j = 0; j < arg.length; j++ ) {
         if ( arg[j].equals("-s") &&  ++j < arg.length )
            dns_file = arg[j];
         else if ( arg[j].equals("-e") &&  ++j < arg.length )
            external = arg[j];
         else if ( arg[j].equals("-r") &&  ++j < arg.length )
            resource = arg[j];
         else if ( arg[j].equals("-o") &&  ++j < arg.length )
            ontology_file = arg[j];
         else if ( arg[j].equals("-gui") &&  ++j < arg.length )
            gui = arg[j];
         else if ( arg[j].equals("-debug") ) {
            Core.debug = true;
            Core.setDebuggerOutputFile("PrinterMaker.log");
         }
         else if ( arg[j].equals("-v") )
            version();
         else if ( arg[j].equals("-name")  && ++j < arg.length )
             name = name  + arg[j];
         else if ( arg[j].equals("-h") )
            usage();
         else
            usage();
      }

       b = new Bindings(name);
      if ( ontology_file == null ) {
         System.err.println("Ontology Database file must be specified with -o option");
         usage();
      }
      if ( dns_file == null ) {
         System.err.println("Domain nameserver file must be specified with -s option");
         usage();
      }

         nameservers = ZeusParser.addressList(new FileInputStream(dns_file));
         if ( nameservers == null || nameservers.isEmpty() ) 
            throw new IOException();

         agent = new ZeusAgent(name,ontology_file,nameservers,3,30,true,false);

         AgentContext context = agent.getAgentContext();
         OntologyDb db = context.OntologyDb();


/*         Initialising Extensions*/
         Class c;

         if ( resource != null ) {
            c = Class.forName(resource);
            ExternalDb oracle = (ExternalDb) c.newInstance();
            context.set(oracle);
            oracle.set(context);
         }
         if ( gui != null ) {
            c = Class.forName(gui);
            ZeusAgentUI ui = (ZeusAgentUI)c.newInstance();
            context.set(ui);
            ui.set(context);
         }

/*         Initialising ProtocolDb*/
         ProtocolInfo info;
         info = ZeusParser.protocolInfo(db,"(:name \"zeus.actors.graphs.ContractNetRespondent\" :type Respondent :constraints ((:fact (:type ZeusFact :id var288 :modifiers 1) :type 0 :strategy \"zeus.actors.graphs.LinearRespondentEvaluator\" :parameters (\"step.default\" \"2\" \"noquibble.range\" \"2\" \"max.percent\" \"130\" \"min.percent\" \"105\"))))");
         if ( info.resolve(b) )
            agent.addProtocol(info);
         info = ZeusParser.protocolInfo(db,"(:name \"zeus.actors.graphs.ContractNetInitiator\" :type Initiator :constraints ((:fact (:type ZeusFact :id var104 :modifiers 1) :type 0 :strategy \"zeus.actors.graphs.DefaultInitiatorEvaluator\" :relations (subordinate))))");
         if ( info.resolve(b) )
            agent.addProtocol(info);

/*         Initialising TaskDb*/
         AbstractTask t;
         t = ZeusParser.primitiveTask(db,"(:Primitive MakeInkCartridge :time (1) :cost (0) :produced_facts ((:type InkCartridge :id ink :modifiers 1 :attributes ((unit_cost ?var198)(number ?var199)))))");
         if ( t.resolve(b) )
            agent.addTask(t);
         t = ZeusParser.primitiveTask(db,"(:Primitive MakeTonerCartridge :time ((1 * ?toner.number)) :cost ((25 * ?toner.number)) :produced_facts ((:type TonerCartridge :id toner :modifiers 1 :attributes ((unit_cost ?var201)(number ?var202)))))");
         if ( t.resolve(b) )
            agent.addTask(t);
         t = ZeusParser.primitiveTask(db,"(:Primitive MakeInkjetPrinter :time ((1 * ?printer.number)) :cost ((45 * ?printer.number)) :consumed_facts ((:type PrinterCase :id case :modifiers 17 :attributes ((unit_cost ?var37)(type ?printer.type)(number ?printer.number)))(:type InkCartridge :id ink :modifiers 1 :attributes ((unit_cost ?var204)(number (10 * ?printer.number))))) :produced_facts ((:type Printer :id printer :modifiers 1 :attributes ((unit_cost ?var41)(type inkjet)(number ?var296)))))");
         if ( t.resolve(b) )
            agent.addTask(t);
         t = ZeusParser.primitiveTask(db,"(:Primitive MakeLaserPrinter :time ((1 * ?printer.number)) :cost ((50 * ?printer.number)) :consumed_facts ((:type PrinterCase :id case :modifiers 17 :attributes ((unit_cost ?var48)(type ?printer.type)(number ?printer.number)))(:type TonerCartridge :id toner :modifiers 1 :attributes ((unit_cost ?var208)(number ?printer.number)))) :produced_facts ((:type Printer :id printer :modifiers 1 :attributes ((unit_cost ?var52)(type laser)(number ?var304)))))");
         if ( t.resolve(b) )
            agent.addTask(t);
/*         Initialising OrganisationalDb*/
         AbilityDbItem item;
         agent.addRelation("PCMaker","superior");


/*         Initialising ResourceDb*/
         Fact f1;
         f1 = ZeusParser.fact(db,"(:type PrinterCase :id case :modifiers 0 :attributes ((unit_cost 150)(type ink)(number 2000)))");
         if ( f1.resolve(b) )
            agent.addFact(f1);
         f1 = ZeusParser.fact(db,"(:type PrinterCase :id case3 :modifiers 0 :attributes ((unit_cost 175)(type laser)(number 2000)))");
         if ( f1.resolve(b) )
            agent.addFact(f1);


/*         Initialising External User Program*/

         if ( external != null ) {
            c = Class.forName(external);
            user_prog = (ZeusExternal) c.newInstance();
            context.set(user_prog);
         }


/*         Activating External User Program*/

         if ( user_prog != null )
            user_prog.exec(context);

      }
 catch (ClassNotFoundException cnfe) { 
     System.out.println("Java cannot find some of the classes that are needed to run this agent. Please ensure that you have the followingin your classpath : zeus_install_dir\\lib\\zeus.jar, zeus_install_dir\\lib\\gnu-regexp.jar, java_install_dir\\jre\\rt.jar  Where zeus_install_dir is the directory that you have installed  Zeus in , and java_install_dir is the directory that you have  installed Java in");
   cnfe.printStackTrace();}
      catch(Exception e) {
         e.printStackTrace();
      }
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -