JADE 中 ACLMessages 的问题

problems with ACLMessages in JADE

我写了一个程序,一切看起来都很好..但是在 运行 时间代理混淆了消息。例如我有这个代码:

ACLMessage msg = new ACLMessages (ACLMessage.INFORM);
msg.setContent = ("G" + groupID);
for(int i =0 ; i<50 ; i++){
    msg.addReceiver(new AID("MyClass" + i, AID.ISLOCALNAME));
}
send (msg);

假设我是这样收到的:

ACLMessage rcv = myAgent.receive();

并假设我在程序的另一部分定义了另一个 ACLMessage,例如在另一个块中命名为 msg2.. with content = "T" + temp.

当我收到下一条消息时,我意识到这些消息很混乱……它们没有被正确接收。我的意思是 运行 宁下面的代码有 2 个不同的结果:

System.out.println("rcv Content is: " + rcv.getContent());

结果将是:G1 有时是:T34

这个错误的消息使我的程序无法 运行 正确...我更改了消息格式,如:"T" + groupID + "T" 或其他形式...但它没有没工作..

////////////////////////////////////////// ////// 在我学会使用消息模板后:

 case 17:{// in this case deligates send the avg to the supervisor
                if(!deligateFlag){
                    state++;
                    break;
                }

                ACLMessage msg = new ACLMessage(ACLMessage.INFORM);
                msg.setConversationId("A");
                msg.setContent("V" + avg);
                //System.err.println("Content of rcv is: " + msg.getContent());
                msg.addReceiver(mySupervisor);
                send(msg);
                System.out.println(myAgent.getLocalName() 
                        + " Says: I am deligate of group " 
                        + group 
                        + " And I sent the average temp of my followers "
                        + "to the supervisor which is: " 
                        + mySupervisor.getLocalName());
                state++;
                break;
            }
            case 18:{/* in this case supervisor receives the avg temp of 
                each group and calculates the avg of averages and then 
                decides what to do*/
                if(!supervisorFlag){
                    n=1;
                    state++;
                    break;
                }
                //System.err.println("This is Beginning of case 18");
                if(supervisorFlag){
                    MessageTemplate mt = MessageTemplate.MatchConversationId("A");
                    ACLMessage msg = myAgent.receive(mt);
                    if (msg != null) { System.err.println("TContent is: " + msg.getContent());
                        dAvg += Character.getNumericValue(msg.getContent().charAt(1));

                        if(msg.getContent().charAt(0) == 'V'){
                            n++;
                            System.err.println("N is: " + n);
                        }
                    }
                    if(n > 4){

                                dAvg /= 4;
                                totalAvg = dAvg;
                                System.out.println("Supervisor " 
                                        + myAgent.getLocalName() 
                                        + "Says: The total average of whole system is: " 
                                        + totalAvg);
                        }
                        state++;
                        break;

问题是,在最好的情况下程序 运行s 直到 if (n>4) ..一切都停止了..没有错误,没有警告..它只是停止了..甚至 n 变为 5但什么也没有发生……我不知道确切的问题是什么……是 ACL 消息还是我不知道……通常我不知道为什么 90% 的程序不打印 TContent 。消息会发生什么..

如果您想接收特定的 aclMessages,您可以使用 myAgent.receive(MessageTemplate t)。

比如你要发消息

代理 1:

ACLMessage request = new ACLMessage(ACLMessage.REQUEST);
...     
request.setConversationId("G");
myAgent.send(request)

并且您希望 Agent2 仅接收 ConversationId = "G"

的消息

代理 2:

MessageTemplate mt = MessageTemplate.MatchConversationId("G");;
ACLMessage msg = myAgent.receive(mt);
if (msg != null) {
  // Process it
  ...
} else {
   block();
}