1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
|
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>nevrax.org : docs</TITLE>
<LINK REL=stylesheet TYPE="text/css" HREF="/inc/css/nevrax.css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</HEAD>
<BODY MARGINHEIGHT="0" MARGINWIDTH="0">
<!-- uplinks -->
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>
<TR>
<TD WIDTH=16><IMG SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
<TD WIDTH=140 BGCOLOR=#dddddd><IMG SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="16" BORDER=0 ALT=""></TD>
<TD WIDTH=16><IMG SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
<TD><IMG width=6 height=14 SRC="/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle> <A CLASS=uplinks HREF='/'><b>Home</B></FONT></A> </TD>
<TD><IMG width=6 height=14 SRC="/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle> <A CLASS=uplinks HREF='/'><b>nevrax.com</B></FONT></A> </TD>
</TR>
</TABLE>
<!-- banner Nevrax -->
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=100%>
<TR><TD BGCOLOR="#000000" BACKGROUND="/inc/img/black_banner.jpg"><A HREF=""><IMG SRC="/inc/img/nevrax.gif" WIDTH="170" HEIGHT="45" BORDER=0 ALT="Nevrax" ></A></TD></TR>
</TABLE>
<!-- main table -->
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 height=100%>
<TR>
<TD WIDTH=16><IMG SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="10" BORDER=0 ALT=""></TD>
<TD WIDTH=140 BGCOLOR=#dddddd VALIGN=TOP ALIGN=middle><IMG SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">
<!------ Begin Box ------>
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=black><TR><TD><TABLE border=0 cellspacing=2 cellpadding=0 width=120><tr><TD ALIGN=middle bgcolor=black>
<FONT COLOR=white FACE="sans-serif"><B>Nevrax.org</B></FONT></TD></TR><tr><td colspan=2 bgcolor=#FFFFFF>
<TABLE cellspacing=0 cellpadding=1 border=0>
<tr><td ALIGN=middle><a class='linkbox' href="/news/" TITLE="Rubrique news"><img width=13 height=15 hspace=5 border=0 src=/inc/img/picto-news.gif ALT=#></A></td><td><a class='linkbox' href="/news/" TITLE="News">News</a></td></tr>
<tr><td ALIGN=middle><a class='linkbox' href="/mail/" TITLE="Rubrique mail"><img width=15 height=11 hspace=5 border=0 src=/inc/img/picto-mail.gif ALT=#></A></td><td><a class='linkbox' href="/mail/" TITLE="Mailing list archive">Mailing-list</a></td></tr>
<tr><td ALIGN=middle><a class='linkbox' href="/docs/" TITLE="Rubrique docs"><img width=14 height=16 hspace=5 border=0 src=/inc/img/picto-docs.gif ALT=#></A></td><td><a class='linkbox' href="/docs/" TITLE="Documentation">Documentation</a></td></tr>
<tr><td ALIGN=middle><a class='linkbox' href="/cvs/" TITLE="Rubrique cvs"><img width=13 height=17 hspace=5 border=0 src=/inc/img/picto-cvs.gif ALT=#></A></td><td><a class='linkbox' href="/cvs/" TITLE="CVS Web">CVS</a></td></tr>
<tr><td ALIGN=middle><a class='linkbox' href="/bugs/" TITLE="Rubrique bugs"><img width=20 height=16 hspace=5 border=0 src=/inc/img/picto-bugs.gif ALT=#></A></td><td><a class='linkbox' href="/bugs/" TITLE="Bugtracking">Bugs</a></td></tr>
<tr><td ALIGN=middle><a class='linkbox' href="/GPL.php3" TITLE="Rubrique license"><img width=18 height=12 hspace=5 border=0 src=/inc/img/picto-gpl.gif ALT=#></A></td><td><a class='linkbox' href="/GPL.php3" TITLE="License">License</a></td></tr>
</TABLE>
</TD></TR></TABLE></TD></TR></TABLE>
<!------ End Box ------>
</TD>
<TD WIDTH=15><IMG SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
<TD ALIGN=left valign=top><IMG SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">
<!-- title -->
<TABLE background="/inc/img/redline.gif" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td>
<A HREF="/docs/"><img src="/inc/img/t_docs.gif" ALT="Docs" HEIGHT=20 BORDER=0></A>
</td><td><IMG SRC="/inc/img/pixel.gif" WIDTH="1" HEIGHT="1" BORDER=0 ALT="">
</td></tr></table>
<!-- block -->
<TABLE bgcolor="#dddddd" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td width=1% valign=middle><img width=6 height=14 hspace=2 vspace=2 src="/inc/img/reddots.gif"></TD>
<TD><B>Documentation</B></TD>
<TD ALIGN=RIGHT> </td>
</tr></table>
<!-- Generated by Doxygen 1.2.14 -->
<center>
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="classes.html">Alphabetical List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> <a class="qindex" href="pages.html">Related Pages</a> <a class="qindexRef" doxygen="_cgi:/cgi-bin/nel-search.cgi" href="/cgi-bin/nel-search.cgi">Search</a> </center>
<hr><h1>interpret_object_operator.cpp</h1><a href="logic_2interpret__object__operator_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="preprocessor">#include "<a class="code" href="registry__class_8h.html">nel/ai/c/registry_class.h</a>"</font>
00002 <font class="preprocessor">#include "<a class="code" href="actor__script_8h.html">nel/ai/agent/actor_script.h</a>"</font>
00003 <font class="preprocessor">#include "<a class="code" href="lexsupport_8h.html">nel/ai/script/lexsupport.h</a>"</font>
00004 <font class="preprocessor">#include "<a class="code" href="interpret__object__operator_8h.html">nel/ai/logic/interpret_object_operator.h</a>"</font>
00005 <font class="preprocessor">#include "<a class="code" href="operator__script_8h.html">nel/ai/logic/operator_script.h</a>"</font>
00006 <font class="preprocessor">#include "<a class="code" href="fact_8h.html">nel/ai/logic/fact.h</a>"</font>
00007 <font class="preprocessor">#include "<a class="code" href="factbase_8h.html">nel/ai/logic/factbase.h</a>"</font>
00008 <font class="preprocessor">#include "<a class="code" href="varset_8h.html">nel/ai/logic/varset.h</a>"</font>
00009 <font class="preprocessor">#include "<a class="code" href="codage_8h.html">nel/ai/script/codage.h</a>"</font>
00010
00011
00012 <font class="preprocessor">#ifdef NL_DEBUG </font>
00013 <font class="preprocessor"></font><font class="preprocessor">#ifdef NL_OS_WINDOWS</font>
00014 <font class="preprocessor"></font><font class="preprocessor">#include "windows.h"</font>
00015 <font class="preprocessor">#endif</font>
00016 <font class="preprocessor"></font><font class="preprocessor">#endif</font>
00017 <font class="preprocessor"></font>
00018 <font class="keyword">namespace </font>NLAISCRIPT
00019 {
00020 <font class="preprocessor">#ifdef NL_DEBUG </font>
00021 <font class="preprocessor"></font> <font class="keyword">extern</font> <font class="keywordtype">bool</font> NL_AI_DEBUG_SERVER;
00022 <font class="preprocessor">#endif</font>
<a name="l00023"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a23">00023</a> <font class="preprocessor"></font> COperatorClass::COperatorClass(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> &n) : CAgentClass(n)
00024 {
00025 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a3">setBaseMethodCount</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass()))-><a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a2">getBaseMethodCount</a>());
00026 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a5">setBaseObjectInstance</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass())));
00027 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = NULL;
00028 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = NULL;
00029 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a>();
00030 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o16">_UpdateCycles</a> = 0;
00031 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o17">_Priority</a> = 1;
00032 }
00033
<a name="l00034"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a24">00034</a> COperatorClass::COperatorClass(<font class="keyword">const</font> <a class="code" href="classNLAIC_1_1CIdentType.html">NLAIC::CIdentType</a> &<a class="code" href="driver__opengl__extension__def_8h.html#a356">id</a>): CAgentClass(<a class="code" href="driver__opengl__extension__def_8h.html#a356">id</a>)
00035 {
00036 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a3">setBaseMethodCount</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass()))-><a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a2">getBaseMethodCount</a>());
00037 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a5">setBaseObjectInstance</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass())));
00038 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = NULL;
00039 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = NULL;
00040 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a>();
00041 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o16">_UpdateCycles</a> = 0;
00042 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o17">_Priority</a> = 1;
00043 }
00044
<a name="l00045"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a25">00045</a> COperatorClass::COperatorClass(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> &n, <font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> &inheritance) : CAgentClass( inheritance )
00046 {
00047 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a3">setBaseMethodCount</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass()))-><a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a2">getBaseMethodCount</a>());
00048 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a5">setBaseObjectInstance</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass())));
00049 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = NULL;
00050 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = NULL;
00051 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a>();
00052 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o16">_UpdateCycles</a> = 0;
00053 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o17">_Priority</a> = 1;
00054 }
00055
<a name="l00056"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a26">00056</a> COperatorClass::COperatorClass(<font class="keyword">const</font> COperatorClass &c) : CAgentClass( c )
00057 {
00058 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a3">setBaseMethodCount</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass()))-><a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a2">getBaseMethodCount</a>());
00059 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a5">setBaseObjectInstance</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass())));
00060 <font class="keywordflow">if</font> ( c._Goal != NULL)
00061 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = (<a class="code" href="classNLAILOGIC_1_1CGoal.html">NLAILOGIC::CGoal</a> *) c._Goal-><a class="code" href="classNLAILOGIC_1_1CGoal.html#a12">clone</a>();
00062 <font class="keywordflow">else</font>
00063 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = NULL;
00064
00065 <font class="keywordflow">if</font> ( c._Comment != NULL )
00066 {
00067 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = <font class="keyword">new</font> <font class="keywordtype">char</font>[ strlen( c._Comment ) ];
00068 strcpy( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a>, c._Comment );
00069 }
00070 <font class="keywordflow">else</font>
00071 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = NULL;
00072
00073 <font class="keywordflow">if</font> ( c._FactBase != NULL)
00074 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = (<a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a> *) c._FactBase-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a7">clone</a>();
00075 <font class="keywordflow">else</font>
00076 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a>();
00077
00078 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o16">_UpdateCycles</a> = c._UpdateCycles;
00079 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o17">_Priority</a> = c._Priority;
00080
00081 }
00082
<a name="l00083"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a27">00083</a> COperatorClass::COperatorClass()
00084 {
00085 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a3">setBaseMethodCount</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass()))-><a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a2">getBaseMethodCount</a>());
00086 <a class="code" href="classNLAISCRIPT_1_1IAgentMultiClass.html#a5">setBaseObjectInstance</a>(((<a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *)(<a class="code" href="classNLAIAGENT_1_1COperatorScript.html#p0">NLAIAGENT::COperatorScript::IdOperatorScript</a>.getFactory()->getClass())));
00087 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = NULL;
00088 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = NULL;
00089 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a>();
00090 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o16">_UpdateCycles</a> = 0;
00091 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o17">_Priority</a> = 1;
00092 }
00093
<a name="l00094"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a28">00094</a> COperatorClass::~COperatorClass()
00095 {
00096 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> != NULL )
00097 <font class="keyword">delete</font>[] <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a>;
00098
00099 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a> != NULL )
00100 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a>-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00101
00102 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> != NULL )
00103 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a>-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00104
00105
00106 std::vector<NLAIAGENT::IVarName *>::iterator it_fvar = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m9">_FuzzyVars</a>.begin();
00107 <font class="keywordflow">while</font> ( it_fvar != <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m9">_FuzzyVars</a>.end() )
00108 {
00109 (*it_fvar)->release();
00110 it_fvar++;
00111 }
00112
00113 it_fvar = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m10">_FuzzySets</a>.begin();
00114 <font class="keywordflow">while</font> ( it_fvar != <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m10">_FuzzySets</a>.end() )
00115 {
00116 (*it_fvar)->release();
00117 it_fvar++;
00118 }
00119
00120 std::vector< IOpCode *>::iterator it_code = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m6">_CondCode</a>.begin();
00121 <font class="keywordflow">while</font> ( it_code != <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m6">_CondCode</a>.end() )
00122 {
00123 (*it_code)->release();
00124 it_code++;
00125 }
00126
00127 it_code = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m7">_ConcCode</a>.begin();
00128 <font class="keywordflow">while</font> ( it_code != <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m7">_ConcCode</a>.end() )
00129 {
00130 (*it_code)->release();
00131 it_code++;
00132 }
00133 <font class="comment">/*</font>
00134 <font class="comment"> int i;</font>
00135 <font class="comment"> for ( i = 0; i < (int) _CondCode.size(); i++ )</font>
00136 <font class="comment"> {</font>
00137 <font class="comment"> ( (NLAIAGENT::IVarName *)_CondCode[i] )->release();</font>
00138 <font class="comment"> }</font>
00139 <font class="comment"></font>
00140 <font class="comment"> for ( i = 0; i < (int) _CondCode.size(); i++ )</font>
00141 <font class="comment"> {</font>
00142 <font class="comment"> ( (NLAIAGENT::IVarName *)_ConcCode[i] )->release();</font>
00143 <font class="comment"> }</font>
00144 <font class="comment"></font>
00145 <font class="comment"> for ( i = 0; i < (int) _CondAsserts.size(); i++ )</font>
00146 <font class="comment"> {</font>
00147 <font class="comment"> ( (NLAIAGENT::IVarName *) _CondAsserts[i] )->release();</font>
00148 <font class="comment"> }</font>
00149 <font class="comment"></font>
00150 <font class="comment"> for ( i = 0; i < (int) _ConcAsserts.size(); i++ )</font>
00151 <font class="comment"> {</font>
00152 <font class="comment"> ( (NLAIAGENT::IVarName *) _ConcAsserts[i] )->release();</font>
00153 <font class="comment"> }</font>
00154 <font class="comment"></font>
00155 <font class="comment"> std::list<const NLAIAGENT::IVarName *>::iterator it_n = _BooleanConds.begin();</font>
00156 <font class="comment"> while ( _BooleanConds.size() )</font>
00157 <font class="comment"> {</font>
00158 <font class="comment"> ( (NLAIAGENT::IVarName *) _BooleanConds.front() )->release();</font>
00159 <font class="comment"> _BooleanConds.pop_front();</font>
00160 <font class="comment"> }</font>
00161 <font class="comment"></font>
00162 <font class="comment"> it_n = _BooleanConcs.begin();</font>
00163 <font class="comment"> while ( _BooleanConcs.size() )</font>
00164 <font class="comment"> {</font>
00165 <font class="comment"> ( (NLAIAGENT::IVarName *) _BooleanConcs.front() )->release();</font>
00166 <font class="comment"> _BooleanConcs.pop_front();</font>
00167 <font class="comment"> }</font>
00168 <font class="comment"> */</font>
00169 }
00170
00171
<a name="l00172"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a29">00172</a> <font class="keyword">const</font> <a class="code" href="classNLAIC_1_1IBasicType.html">NLAIC::IBasicType</a> *COperatorClass::clone()<font class="keyword"> const</font>
00173 <font class="keyword"> </font>{
00174 <a class="code" href="classNLAIC_1_1IBasicType.html">NLAIC::IBasicType</a> *<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a29">clone</a> = <font class="keyword">new</font> <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a27">COperatorClass</a>(*<font class="keyword">this</font>);
00175 <font class="keywordflow">return</font> clone;
00176 }
00177
<a name="l00178"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a30">00178</a> <font class="keyword">const</font> <a class="code" href="classNLAIC_1_1IBasicType.html">NLAIC::IBasicType</a> *COperatorClass::newInstance()<font class="keyword"> const</font>
00179 <font class="keyword"> </font>{
00180 <a class="code" href="classNLAIC_1_1IBasicType.html">NLAIC::IBasicType</a> *instance = <font class="keyword">new</font> <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a27">COperatorClass</a>();
00181 <font class="keywordflow">return</font> instance;
00182 }
00183
<a name="l00184"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a31">00184</a> <font class="keywordtype">void</font> COperatorClass::getDebugString(std::string &<a class="code" href="driver__opengl__extension__def_8h.html#a384">t</a>)<font class="keyword"> const</font>
00185 <font class="keyword"> </font>{
00186 <a class="code" href="driver__opengl__extension__def_8h.html#a384">t</a> += <font class="stringliteral">"<COperatorClass>"</font>;
00187 <font class="keywordtype">int</font> i;
00188 <font class="keywordflow">for</font> ( i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size(); i++ )
00189 {
00190 std::string buf;
00191 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>[i]->getDebugString(buf);
00192 <a class="code" href="driver__opengl__extension__def_8h.html#a384">t</a> += <font class="stringliteral">" -"</font>;
00193 <a class="code" href="driver__opengl__extension__def_8h.html#a384">t</a> += buf;
00194 }
00195 }
00196
<a name="l00197"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a32">00197</a> <a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *COperatorClass::buildNewInstance()<font class="keyword"> const</font>
00198 <font class="keyword"> </font>{
00199 <font class="comment">// Cr�ation des composants statiques</font>
00200 <a class="code" href="classstd_1_1list.html">std::list<NLAIAGENT::IObjectIA *></a> <a class="code" href="driver__opengl__extension__def_8h.html#a413">components</a>;
00201 <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a25">createBaseClassComponents</a>( components );
00202
00203 <font class="comment">// Cr�ation du message</font>
00204 <a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a> *instance = <font class="keyword">new</font> <a class="code" href="classNLAIAGENT_1_1COperatorScript.html">NLAIAGENT::COperatorScript</a>( NULL, NULL ,components, (<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a23">COperatorClass</a> *) <font class="keyword">this</font> );
00205 instance-><a class="code" href="classNLAIAGENT_1_1COperatorScript.html#a37">setPriority</a>(<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a57">getPriority</a>());
00206
00207 <font class="keywordflow">return</font> instance;
00208 }
00209
<a name="l00211"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a4">00211</a> <font class="keywordtype">bool</font> COperatorClass::isValid(<a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a> *fb)
00212 {
00213 <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *facts = <font class="keyword">new</font> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>;
00214 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>.size(); i++ )
00215 {
00216 std::list<NLAILOGIC::CFact *> *fa = fb-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a16">getAssertFacts</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>[i] );
00217 <font class="keywordflow">while</font> ( fa->size() )
00218 {
00219 facts->push_back( fa->front() );
00220 fa->pop_front();
00221 }
00222 <font class="keyword">delete</font> fa;
00223 }
00224 std::list<NLAILOGIC::CFact *> *<a class="code" href="driver__opengl__extension__def_8h.html#a400">res</a> = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a17">propagate</a>( *facts );
00225 <font class="keywordtype">bool</font> is_valid = !res->empty();
00226 <font class="keywordflow">while</font> ( res->size() )
00227 {
00228 <font class="preprocessor">#ifdef NL_DEBUG</font>
00229 <font class="preprocessor"></font>
00230 <font class="preprocessor">#endif</font>
00231 <font class="preprocessor"></font> res->front()->release();
00232 res->pop_front();
00233 }
00234 <font class="keyword">delete</font> res;
00235
00236 <font class="keywordflow">while</font> ( facts->size() )
00237 {
00238 facts->front()->release();
00239 facts->pop_front();
00240 }
00241 <font class="keyword">delete</font> facts;
00242
00243 <font class="keywordflow">return</font> is_valid;
00244 }
00245
<a name="l00246"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a12">00246</a> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *COperatorClass::unifyBackward(<a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> &facts)
00247 {
00248 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *unified = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() );
00249 <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>::iterator it_f = facts.begin();
00250 <font class="keywordflow">while</font> ( it_f != facts.end() )
00251 {
00252 std::vector<sint32> pos_assert;
00253 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a11">getAssertPos</a>( (*it_f)->getAssert(), <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o7">_Concs</a>, pos_assert );
00254 <font class="keywordflow">for</font> (sint32 pos = 0; pos < (sint32) pos_assert.size(); pos++)
00255 {
00256 <font class="keywordflow">for</font> ( sint32 ivar = 0; ivar < (sint32) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o8">_PosVarsConc</a>[ pos_assert[pos] ].size(); ivar++ )
00257 {
00258 sint32 l_pos = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o8">_PosVarsConc</a>[ pos_assert[pos] ][ivar];
00259
00260 <a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *l_val = (*unified)[ l_pos ];
00261 <a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *r_val = (**it_f)[ ivar ];
00262
00263 <font class="keywordflow">if</font> ( !l_val )
00264 {
00265 <font class="keywordflow">if</font> ( r_val )
00266 {
00267 unified->setValue( l_pos, r_val );
00268 }
00269 }
00270 <font class="keywordflow">else</font>
00271 {
00272 <font class="keywordflow">if</font> ( r_val && ( l_val != r_val ) )
00273 {
00274 unified-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00275 <font class="keywordflow">return</font> NULL;
00276 }
00277 }
00278 }
00279 }
00280 it_f++;
00281 }
00282 <font class="keywordflow">return</font> unified;
00283 }
00284
<a name="l00285"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a13">00285</a> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *COperatorClass::unifyForward(<a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> &facts)
00286 {
00287 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *unified = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() );
00288 <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>::iterator it_f = facts.begin();
00289 <font class="keywordflow">while</font> ( it_f != facts.end() )
00290 {
00291 std::vector<sint32> pos_assert;
00292 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a11">getAssertPos</a>( (*it_f)->getAssert(), <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>, pos_assert );
00293 <font class="keywordflow">for</font> (sint32 pos = 0; pos < (sint32) pos_assert.size(); pos++)
00294 {
00295 <font class="keywordflow">for</font> ( sint32 ivar = 0; ivar < (sint32) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o6">_PosVarsCond</a>[ pos_assert[pos] ].size(); ivar++ )
00296 {
00297 sint32 l_pos = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o6">_PosVarsCond</a>[ pos_assert[pos] ][ivar];
00298
00299 <a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *l_val = (*unified)[ l_pos ];
00300 <a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *r_val = (**it_f)[ ivar ];
00301
00302 <font class="keywordflow">if</font> ( !l_val )
00303 {
00304 <font class="keywordflow">if</font> ( r_val )
00305 {
00306 unified->setValue( l_pos, r_val );
00307 }
00308 }
00309 <font class="keywordflow">else</font>
00310 {
00311 <font class="keywordflow">if</font> ( r_val && ( l_val != r_val ) )
00312 {
00313 unified-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00314 <font class="keywordflow">return</font> NULL;
00315 }
00316 }
00317 }
00318 }
00319 it_f++;
00320 }
00321 <font class="keywordflow">return</font> unified;
00322 }
00323
<a name="l00324"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a6">00324</a> <a class="code" href="classNLAILOGIC_1_1CFact.html">NLAILOGIC::CFact</a> *COperatorClass::buildFromVars(<a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a>, std::vector<sint32> &pl, <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *vars)
00325 {
00326 <a class="code" href="classNLAILOGIC_1_1CFact.html">NLAILOGIC::CFact</a> *result = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFact.html">NLAILOGIC::CFact</a>( assert); <font class="comment">// TODO:: pas besoin du nombre dans ce constructeur puisqu'on a l'assert</font>
00327 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) pl.size() ; i++ )
00328 {
00329 result-><a class="code" href="classNLAILOGIC_1_1CValueSet.html#a8">setValue</a>( i, (*vars)[ pl[i] ] );
00330 }
00331 <font class="keywordflow">return</font> result;
00332 }
00333
<a name="l00334"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a15">00334</a> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *COperatorClass::backward(<a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> &facts)
00335 {
00336 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *unified = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a12">unifyBackward</a>( facts );
00337 <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *result = <font class="keyword">new</font> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>;
00338 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>.size(); i++ )
00339 {
00340 <a class="code" href="classNLAILOGIC_1_1CFact.html">NLAILOGIC::CFact</a> *tmp = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a6">buildFromVars</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>[i], <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o6">_PosVarsCond</a>[i], unified );
00341 result->push_back( tmp );
00342 <font class="preprocessor">#ifdef NL_DEBUG</font>
00343 <font class="preprocessor"></font>
00344 <font class="preprocessor">#endif</font>
00345 <font class="preprocessor"></font> }
00346 unified-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00347 <font class="keywordflow">return</font> result;
00348 }
00349
<a name="l00350"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a16">00350</a> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *COperatorClass::forward(<a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> &facts)
00351 {
00352 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *unified = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a13">unifyForward</a>( facts );
00353 <font class="preprocessor">#ifdef NL_DEBUG</font>
00354 <font class="preprocessor"></font>
00355 <font class="preprocessor">#endif</font>
00356 <font class="preprocessor"></font> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *result = <font class="keyword">new</font> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>;
00357 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o7">_Concs</a>.size(); i++ )
00358 {
00359 <a class="code" href="classNLAILOGIC_1_1CFact.html">NLAILOGIC::CFact</a> *tmp = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a6">buildFromVars</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o7">_Concs</a>[i], <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o8">_PosVarsConc</a>[i], unified );
00360 result->push_back( tmp );
00361 <font class="preprocessor">#ifdef NL_DEBUG</font>
00362 <font class="preprocessor"></font>
00363 <font class="preprocessor">#endif</font>
00364 <font class="preprocessor"></font> }
00365 unified-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00366 <font class="keywordflow">return</font> result;
00367 }
00368
00369
<a name="l00370"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a17">00370</a> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *COperatorClass::propagate(<a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> &facts)
00371 {
00372 <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a> *conflicts = <font class="keyword">new</font> <a class="code" href="classstd_1_1list.html">std::list<NLAILOGIC::CFact *></a>;
00373 <a class="code" href="classstd_1_1list.html">std::list< NLAILOGIC::CValueSet *></a> liaisons;
00374 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *empty = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a>( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() );
00375 liaisons.push_back( empty );
00376
00377 std::list<NLAILOGIC::CFact *>::iterator it_f = facts.begin();
00378 <font class="keywordflow">while</font> ( it_f != facts.end() )
00379 {
00380 std::vector<sint32> pos_asserts;
00381 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a11">getAssertPos</a>( (*it_f)->getAssert() , <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>, pos_asserts);
00382 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) pos_asserts.size(); i++ )
00383 {
00384 <font class="comment">/* std::list<NLAILOGIC::CValueSet *> *links = propagate( liaisons, *it_f, _PosVarsCond[ pos_asserts[i] ] );</font>
00385 <font class="comment"> if ( links )</font>
00386 <font class="comment"> {</font>
00387 <font class="comment"> while ( links->size() )</font>
00388 <font class="comment"> {</font>
00389 <font class="comment"> for (sint32 i = 0; i < (sint32) _Concs.size(); i++ )</font>
00390 <font class="comment"> {</font>
00391 <font class="comment"> NLAILOGIC::CFact *r = buildFromVars( _Concs[i], _PosVarsConc[i], links->front() );</font>
00392 <font class="comment"> char buf[1024];</font>
00393 <font class="comment"> r->getDebugString( buf );</font>
00394 <font class="comment"> // Tests if the fact is already in the conflicts list</font>
00395 <font class="comment"> bool found = false;</font>
00396 <font class="comment"> std::list<NLAILOGIC::CFact *>::iterator it_c = conflicts->begin();</font>
00397 <font class="comment"> while ( ! found && it_c != conflicts->end() )</font>
00398 <font class="comment"> {</font>
00399 <font class="comment"> found = (**it_c) == *r;</font>
00400 <font class="comment"> it_c++;</font>
00401 <font class="comment"> }</font>
00402 <font class="comment"> if ( !found )</font>
00403 <font class="comment"> {</font>
00404 <font class="comment"> char buf[1024];</font>
00405 <font class="comment"> r->getDebugString( buf );</font>
00406 <font class="comment"> conflicts->push_back( r );</font>
00407 <font class="comment"> }</font>
00408 <font class="comment"> }</font>
00409 <font class="comment"> links->front()->release();</font>
00410 <font class="comment"> links->pop_front();</font>
00411 <font class="comment"> }</font>
00412 <font class="comment"> delete links;</font>
00413 <font class="comment"> }</font>
00414 <font class="comment"> */</font>
00415 }
00416 it_f++;
00417 }
00418
00419 <font class="keywordflow">while</font> ( liaisons.size() )
00420 {
00421 liaisons.front()->release();
00422 liaisons.pop_front();
00423 }
00424
00425 <font class="keywordflow">return</font> conflicts;
00426 }
00427
<a name="l00428"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a8">00428</a> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *COperatorClass::unifyLiaison( <font class="keyword">const</font> <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *fp, <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *vals, std::vector<sint32> &pos_vals)
00429 {
00430 <a class="code" href="classNLAILOGIC_1_1CValueSet.html">NLAILOGIC::CValueSet</a> *result;
00431
00432 <font class="keywordflow">if</font> ( (result = fp-><a class="code" href="classNLAILOGIC_1_1CValueSet.html#a9">unify</a>( vals, pos_vals )) )
00433 <font class="keywordflow">return</font> result;
00434 <font class="keywordflow">else</font>
00435 {
00436 <font class="keyword">delete</font> result;
00437 <font class="keywordflow">return</font> NULL;
00438 }
00439 }
00440
<a name="l00441"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a11">00441</a> <font class="keywordtype">void</font> COperatorClass::getAssertPos(<a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *a, std::vector<NLAILOGIC::IBaseAssert *> &<a class="code" href="namespaceNLAISCRIPT.html#a20">l</a>, std::vector<sint32> &pos)
00442 {
00443 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32) <a class="code" href="namespaceNLAISCRIPT.html#a20">l</a>.size() ; i++ )
00444 {
00445 <font class="keywordflow">if</font> ( (*(<a class="code" href="namespaceNLAISCRIPT.html#a20">l</a>[i])) == a )
00446 pos.push_back(i);
00447 }
00448 }
00449
<a name="l00450"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a18">00450</a> <font class="keywordtype">float</font> COperatorClass::priority()<font class="keyword"> const</font>
00451 <font class="keyword"> </font>{
00452 <font class="keywordflow">return</font> 0.0;
00453 }
00454
<a name="l00455"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a19">00455</a> <font class="keywordtype">void</font> COperatorClass::success()
00456 {
00457 }
00458
<a name="l00459"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a20">00459</a> <font class="keywordtype">void</font> COperatorClass::failure()
00460 {
00461 }
00462
<a name="l00463"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a21">00463</a> <font class="keywordtype">void</font> COperatorClass::success(<a class="code" href="classNLAILOGIC_1_1IBaseOperator.html">NLAILOGIC::IBaseOperator</a> *)
00464 {
00465 }
00466
<a name="l00467"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a22">00467</a> <font class="keywordtype">void</font> COperatorClass::failure(<a class="code" href="classNLAILOGIC_1_1IBaseOperator.html">NLAILOGIC::IBaseOperator</a> *)
00468 {
00469 }
00470
<a name="l00471"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a3">00471</a> <font class="keyword">const</font> <a class="code" href="classNLAILOGIC_1_1CGoal.html">NLAILOGIC::CGoal</a> *COperatorClass::getGoal()
00472 {
00473 <font class="keywordflow">return</font> <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a>;
00474 }
00475
<a name="l00476"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a33">00476</a> <font class="keywordtype">void</font> COperatorClass::addPrecondition(<a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern)
00477 {
00478 <font class="keywordflow">if</font> ( pattern-><a class="code" href="classNLAILOGIC_1_1CFactPattern.html#a3">getAssert</a>() )
00479 {
00480 std::vector<sint32> pos_Vars;
00481 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a5">compileFactPattern</a>( pattern, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>, pos_Vars);
00482
00483 <font class="comment">// pattern->getAssert()->addClause( this, pos_Vars );</font>
00484 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>.push_back( pattern-><a class="code" href="classNLAILOGIC_1_1CFactPattern.html#a3">getAssert</a>() );
00485 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o6">_PosVarsCond</a>.push_back( pos_Vars );
00486
00487 }
00488 }
00489
<a name="l00490"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a34">00490</a> <font class="keywordtype">void</font> COperatorClass::addPostcondition(<a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern)
00491 {
00492 <font class="keywordflow">if</font> ( pattern-><a class="code" href="classNLAILOGIC_1_1CFactPattern.html#a3">getAssert</a>() )
00493 {
00494 std::vector<sint32> pos_Vars;
00495 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a5">compileFactPattern</a>( pattern, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o5">_Conds</a>, pos_Vars);
00496
00497 <font class="comment">// pattern->getAssert()->addInput( this );</font>
00498 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o7">_Concs</a>.push_back( pattern-><a class="code" href="classNLAILOGIC_1_1CFactPattern.html#a3">getAssert</a>() );
00499 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o8">_PosVarsConc</a>.push_back( pos_Vars );
00500 }
00501 }
00502
00504
00505 <font class="comment">/*</font>
00506 <font class="comment"> void COperatorClass::compileFactPattern(NLAILOGIC::CFactPattern *fp, std::vector<NLAILOGIC::IBaseAssert *>&patterns, std::vector<sint32> &pos_Vars)</font>
00507 <font class="comment"> {</font>
00508 <font class="comment"> // Recherche si variables � ajouter</font>
00509 <font class="comment"> std::vector<NLAILOGIC::IBaseVar *> *vars_pattern = fp->getVars();</font>
00510 <font class="comment"> if ( vars_pattern )</font>
00511 <font class="comment"> {</font>
00512 <font class="comment"> std::vector<NLAILOGIC::IBaseVar *>::iterator it_cond = vars_pattern->begin();</font>
00513 <font class="comment"> while ( it_cond != vars_pattern->end() )</font>
00514 <font class="comment"> {</font>
00515 <font class="comment"> sint32 id_var = getVarPos( *it_cond );</font>
00516 <font class="comment"> if ( id_var != -1 )</font>
00517 <font class="comment"> {</font>
00518 <font class="comment"> pos_Vars.push_back( id_var );</font>
00519 <font class="comment"> }</font>
00520 <font class="comment"> else</font>
00521 <font class="comment"> {</font>
00522 <font class="comment"> _Vars.push_back( (NLAILOGIC::IBaseVar *)(*it_cond)->clone() );</font>
00523 <font class="comment"> pos_Vars.push_back( _Vars.size() - 1);</font>
00524 <font class="comment"> }</font>
00525 <font class="comment"> it_cond++;</font>
00526 <font class="comment"> }</font>
00527 <font class="comment"> }</font>
00528 <font class="comment"></font>
00529 <font class="comment"> for ( sint32 i = 0; i < (sint32) vars_pattern->size(); i++ )</font>
00530 <font class="comment"> {</font>
00531 <font class="comment"> (*vars_pattern)[i]->release();</font>
00532 <font class="comment"> }</font>
00533 <font class="comment"> delete vars_pattern;</font>
00534 <font class="comment"> }</font>
00535 <font class="comment"> */</font>
00536
<a name="l00537"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a5">00537</a> <font class="keywordtype">void</font> COperatorClass::compileFactPattern(<a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *fp, std::vector<NLAILOGIC::IBaseAssert *>&patterns, std::vector<sint32> &pos_Vars)
00538 {
00539 <font class="comment">// Recherche si variables � ajouter</font>
00540 std::vector<NLAILOGIC::IBaseVar *> *vars_pattern = fp-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a15">getVars</a>();
00541 <font class="keywordflow">if</font> ( vars_pattern )
00542 {
00543 std::vector<NLAILOGIC::IBaseVar *>::iterator it_cond = vars_pattern->begin();
00544 <font class="keywordflow">while</font> ( it_cond != vars_pattern->end() )
00545 {
00546 <font class="comment">// Looks in the class components if the var already exists</font>
00547 sint32 id_var = <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a19">getComponentIndex</a>( (*it_cond)->getName() );
00548
00549 <font class="keywordflow">if</font> ( id_var != -1 )
00550 {
00551 <font class="comment">// If it exists, stores its index</font>
00552 pos_Vars.push_back( id_var );
00553 }
00554 <font class="keywordflow">else</font>
00555 {
00556 <font class="comment">// If it doesn't exist, registers the var as a component of the class</font>
00557 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name(<font class="stringliteral">"Var"</font>);
00558 <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a15">registerComponent</a>( var_name , (<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> &) (*it_cond)->getName() );
00559
00560 <font class="comment">// TODO: contr�le de type</font>
00561
00562 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.push_back( (<a class="code" href="classNLAILOGIC_1_1IBaseVar.html">NLAILOGIC::IBaseVar</a> *)(*it_cond)->clone() );
00563 pos_Vars.push_back( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() - 1);
00564 }
00565 it_cond++;
00566 }
00567 }
00568
00569 <font class="keywordflow">for</font> ( sint32 i = 0; i < (sint32) vars_pattern->size(); i++ )
00570 {
00571 (*vars_pattern)[i]->release();
00572 }
00573 <font class="keyword">delete</font> vars_pattern;
00574 }
00576
<a name="l00578"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a7">00578</a> sint32 COperatorClass::getVarPos(<a class="code" href="classNLAILOGIC_1_1IBaseVar.html">NLAILOGIC::IBaseVar</a> *var)
00579 {
00580 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() )
00581 {
00582 <font class="keywordflow">for</font> (sint32 i = 0; i < (sint32)<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>.size() ; i++ )
00583 {
00584 <font class="keywordflow">if</font> ( var-><a class="code" href="classNLAILOGIC_1_1IBaseVar.html#a5">getName</a>() == <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o4">_Vars</a>[ i ]->getName() )
00585 {
00586 <font class="keywordflow">return</font> i;
00587 }
00588 }
00589 }
00590 <font class="keywordflow">return</font> -1;
00591 }
00592
<a name="l00594"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a35">00594</a> <font class="keywordtype">void</font> COperatorClass::addFirstOrderCond(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *assert_name, <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a> &params_list)
00595 {
00596 <font class="comment">/* _CondAsserts.push_back( assert_name );</font>
00597 <font class="comment"> std::list<const NLAIAGENT::IVarName *> *tmp_list = new std::list<const NLAIAGENT::IVarName *>;</font>
00598 <font class="comment"> while ( !params_list.empty() )</font>
00599 <font class="comment"> {</font>
00600 <font class="comment"> const char *txt = params_list.front()->getString();</font>
00601 <font class="comment"> tmp_list->push_back( params_list.front() );</font>
00602 <font class="comment"> params_list.pop_front();</font>
00603 <font class="comment"> } </font>
00604 <font class="comment"> _ClassCondVars.push_back( tmp_list );</font>
00605 <font class="comment"> */</font>
00606
00607 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)assert_name-><a class="code" href="classNLAIC_1_1IBasicType.html#a3">clone</a>();
00608 <a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a> = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a>-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a5">addAssert</a>( name, params_list.size() );
00609 <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a>( assert );
00610 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = params_list.begin();
00611 <font class="keywordflow">while</font> ( it_var != params_list.end() )
00612 {
00613 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)(*it_var);
00614 pattern-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a16">addVar</a>( <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CVar.html">NLAILOGIC::CVar</a>( var_name ) );
00615 it_var++;
00616 }
00617 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a33">addPrecondition</a>( pattern );
00618 }
00619
<a name="l00620"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a36">00620</a> <font class="keywordtype">void</font> COperatorClass::addFirstOrderConc(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *assert_name, <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a> &params_list)
00621 {
00622 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m3">_ConcAsserts</a>.push_back( assert_name );
00623 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a> *tmp_list = <font class="keyword">new</font> <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>;
00624 <font class="keywordflow">while</font> ( !params_list.empty() )
00625 {
00626 tmp_list->push_back( params_list.front() );
00627 params_list.pop_front();
00628 }
00629 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m5">_ClassConcVars</a>.push_back( tmp_list );
00630 }
00631
<a name="l00633"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a37">00633</a> <font class="keywordtype">void</font> COperatorClass::addBoolCond(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *cond_name)
00634 {
00635 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m0">_BooleanConds</a>.push_back( cond_name );
00636 }
00637
<a name="l00638"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a38">00638</a> <font class="keywordtype">void</font> COperatorClass::addBoolConc(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *conc_name)
00639 {
00640 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m1">_BooleanConcs</a>.push_back( conc_name );
00641 }
00642
<a name="l00645"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a39">00645</a> <font class="keywordtype">void</font> COperatorClass::addCodeCond(IOpCode *code)
00646 {
00647 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m6">_CondCode</a>.push_back( code );
00648 }
00649
<a name="l00651"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a40">00651</a> <font class="keywordtype">void</font> COperatorClass::addCodeConc(IOpCode *code)
00652 {
00653 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m7">_ConcCode</a>.push_back( code );
00654 }
00655
<a name="l00657"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a42">00657</a> <font class="keywordtype">void</font> COperatorClass::buildLogicTables()
00658 {
00659 <font class="comment">// _FactBase = new NLAILOGIC::CFactBase();</font>
00660 <font class="keywordtype">int</font> i;
00661 <font class="keywordflow">for</font> ( i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m2">_CondAsserts</a>.size() ; i++ )
00662 {
00663 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m2">_CondAsserts</a>[i]->clone();
00664 <a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a> = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a>-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a5">addAssert</a>( name, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m4">_ClassCondVars</a>[i]-><a class="code" href="cf__lexical_8cpp.html#a94">size</a>() );
00665 <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a>( assert );
00666 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m4">_ClassCondVars</a>[i]->begin();
00667 <font class="keywordflow">while</font> ( it_var != _ClassCondVars[i]->end() )
00668 {
00669 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)(*it_var);
00670 pattern-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a16">addVar</a>( <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CVar.html">NLAILOGIC::CVar</a>( var_name ) );
00671 it_var++;
00672 }
00673 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a33">addPrecondition</a>( pattern );
00674 }
00675
00676 <font class="keywordflow">for</font> ( i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m3">_ConcAsserts</a>.size() ; i++ )
00677 {
00678 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m3">_ConcAsserts</a>[i]->clone();
00679 <a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a> = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m8">_FactBase</a>-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a5">addAssert</a>( name, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m5">_ClassConcVars</a>[i]-><a class="code" href="cf__lexical_8cpp.html#a94">size</a>() );
00680 <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a>( assert );
00681 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m5">_ClassConcVars</a>[i]->begin();
00682 <font class="keywordflow">while</font> ( it_var != _ClassConcVars[i]->end() )
00683 {
00684 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)(*it_var);
00685 pattern-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a16">addVar</a>( <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CVar.html">NLAILOGIC::CVar</a>( var_name ) );
00686 it_var++;
00687 }
00688 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a34">addPostcondition</a>( pattern );
00689 }
00690 }
00691
<a name="l00692"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a1">00692</a> <font class="keywordtype">void</font> COperatorClass::setGoal(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> &g)
00693 {
00694
00695 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CGoal.html">NLAILOGIC::CGoal</a>( *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *) g.<a class="code" href="classNLAIAGENT_1_1CStringVarName.html#a12">clone</a>());
00696 }
00697
<a name="l00698"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a2">00698</a> <font class="keywordtype">void</font> COperatorClass::setGoal(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *<a class="code" href="debug_8h.html#a15">assert</a>, <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a> &args)
00699 {
00700 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o1">_GoalAssert</a> = (<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *) assert-><a class="code" href="classNLAIC_1_1IBasicType.html#a3">clone</a>();
00701 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o2">_GoalVars</a> = args;
00702
00703 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> != NULL )
00704 {
00705 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a>-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00706 }
00707
00708 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a> = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CGoal.html">NLAILOGIC::CGoal</a>( *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *) assert-><a class="code" href="classNLAIC_1_1IBasicType.html#a3">clone</a>() );
00709
00710 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = args.begin();
00711 <font class="keywordflow">while</font> ( it_var != args.end() )
00712 {
00713 <font class="comment">// Looks in the class components if the var already exists</font>
00714 sint32 id_var = <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a19">getComponentIndex</a>( **it_var );
00715
00716 <font class="keywordflow">if</font> ( id_var != -1 )
00717 {
00718 <font class="comment">// If it exists, stores its index</font>
00719 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o3">_GoalPosVar</a>.push_back( id_var );
00720 }
00721 <font class="keywordflow">else</font>
00722 {
00723 <font class="comment">// If it doesn't exist, registers the var as a component of the class</font>
00724 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name(<font class="stringliteral">"Var"</font>);
00725 <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a15">registerComponent</a>( var_name , (<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> &) **it_var );
00726 <font class="comment">// _Vars.push_back( (NLAILOGIC::IBaseVar *)(*it_cond)->clone() );</font>
00727 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o3">_GoalPosVar</a>.push_back( <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a19">getComponentIndex</a>(**it_var) );
00728 }
00729 it_var++;
00730 }
00731
00732 <a class="code" href="classstd_1_1list.html">std::list<NLAIAGENT::IObjectIA *></a> arg_list;
00733 <font class="keywordflow">while</font> ( !args.empty() )
00734 {
00735 arg_list.push_back( (<a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *) args.front()->clone() );
00736 ( (<a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *)args.front() )->release();
00737 args.pop_front();
00738 }
00739
00740 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o0">_Goal</a>-><a class="code" href="classNLAILOGIC_1_1CGoal.html#a5">setArgs</a>( arg_list );
00741 }
00742
<a name="l00743"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a43">00743</a> <font class="keywordtype">bool</font> COperatorClass::isValidFonc(<a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *c)
00744 {
00745 <a class="code" href="classNLAISCRIPT_1_1CCodeContext.html">NLAISCRIPT::CCodeContext</a> &context = (<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html">NLAISCRIPT::CCodeContext</a> &)*c;
00746
00747 <font class="keywordflow">for</font> ( <font class="keywordtype">int</font> i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m6">_CondCode</a>.size(); i++ )
00748 {
00749 <a class="code" href="classNLAISCRIPT_1_1IOpCode.html">NLAISCRIPT::IOpCode</a> *opPtr = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m6">_CondCode</a>[ i ];
00750
00751 IObjectIA::CProcessResult <a class="code" href="driver__opengl__extension__def_8h.html#a385">r</a>;
00752 <font class="keywordflow">if</font>(opPtr != NULL)
00753 {
00754 <a class="code" href="classNLAISCRIPT_1_1IOpCode.html">NLAISCRIPT::IOpCode</a> &op = *opPtr;
00755 <a class="code" href="classNLAISCRIPT_1_1CCodeBrancheRun.html">NLAISCRIPT::CCodeBrancheRun</a> *opTmp = context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a>;
00756 <font class="keywordtype">int</font> ip;
00757 <font class="keywordflow">if</font>(context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> != NULL) ip = (uint32)*context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a>;
00758 <font class="keywordflow">else</font> ip =0;
00759 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = (<a class="code" href="classNLAISCRIPT_1_1CCodeBrancheRun.html">NLAISCRIPT::CCodeBrancheRun</a> *)&op;
00760 *context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = 0;
00761
00762 <font class="preprocessor">#ifdef NL_DEBUG</font>
00763 <font class="preprocessor"></font> sint sp = context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m0">Stack</a>.CIndexStackPointer::operator int ();
00764 <font class="preprocessor">#endif</font>
00765 <font class="preprocessor"></font> <a class="code" href="driver__opengl__extension__def_8h.html#a385">r</a> = ((<a class="code" href="classNLAISCRIPT_1_1ICodeBranche.html">NLAISCRIPT::ICodeBranche</a> *)opPtr)->run(context);
00766
00767 *context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = ip;
00768 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = opTmp;
00769
00770 <a class="code" href="classNLAIAGENT_1_1IObjetOp.html">NLAIAGENT::IObjetOp</a> *result = (<a class="code" href="classNLAIAGENT_1_1IObjetOp.html">NLAIAGENT::IObjetOp</a> *)context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m0">Stack</a>[(int)context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m0">Stack</a>];
00771 result-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a2">incRef</a>();
00772 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m0">Stack</a>--;
00773
00774 <font class="preprocessor">#ifdef NL_DEBUG</font>
00775 <font class="preprocessor"></font> sint u = context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m0">Stack</a>.CIndexStackPointer::operator int ();
00776 <font class="keywordflow">if</font>(sp != u)
00777 {
00778
00779 <font class="keywordflow">throw</font>;
00780 }
00781 <font class="preprocessor">#endif</font>
00782 <font class="preprocessor"></font>
00783 <font class="keywordflow">if</font> ( result != NULL)
00784 {
00785 <font class="preprocessor">#ifdef NL_DEBUG</font>
00786 <font class="preprocessor"></font> <font class="keyword">const</font> <font class="keywordtype">char</font> *dbg_return_type = (<font class="keyword">const</font> <font class="keywordtype">char</font> *) result-><a class="code" href="classNLAIC_1_1IBasicType.html#a2">getType</a>();
00787
00788 <font class="preprocessor">#endif</font>
00789 <font class="preprocessor"></font> <font class="keywordtype">bool</font> br = !result-><a class="code" href="classNLAIAGENT_1_1IObjetOp.html#a18">isTrue</a>();
00790 result-><a class="code" href="classNLAIC_1_1IPointerGestion.html#a3">release</a>();
00791
00792 <font class="keywordflow">if</font> ( br )
00793 <font class="keywordflow">return</font> <font class="keyword">false</font>;
00794 }
00795
00796 }
00797 }
00798 <font class="keywordflow">return</font> <font class="keyword">true</font>;
00799 }
00800
<a name="l00801"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a44">00801</a> <font class="keywordtype">void</font> COperatorClass::activatePostConditions(<a class="code" href="classNLAIAGENT_1_1IObjectIA.html">NLAIAGENT::IObjectIA</a> *c)
00802 {
00803 <a class="code" href="classNLAISCRIPT_1_1CCodeContext.html">NLAISCRIPT::CCodeContext</a> &context = (<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html">NLAISCRIPT::CCodeContext</a> &)*c;
00804
00805 <font class="keywordflow">for</font> ( <font class="keywordtype">int</font> i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m7">_ConcCode</a>.size(); i++ )
00806 {
00807 <a class="code" href="classNLAISCRIPT_1_1IOpCode.html">NLAISCRIPT::IOpCode</a> *opPtr = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m7">_ConcCode</a>[ i ];
00808
00809 IObjectIA::CProcessResult <a class="code" href="driver__opengl__extension__def_8h.html#a385">r</a>;
00810 <font class="keywordflow">if</font>(opPtr != NULL)
00811 {
00812 <a class="code" href="classNLAISCRIPT_1_1IOpCode.html">NLAISCRIPT::IOpCode</a> &op = *opPtr;
00813 <a class="code" href="classNLAISCRIPT_1_1CCodeBrancheRun.html">NLAISCRIPT::CCodeBrancheRun</a> *opTmp = context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a>;
00814 <font class="keywordtype">int</font> ip = (uint32)*context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a>;
00815 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = (<a class="code" href="classNLAISCRIPT_1_1CCodeBrancheRun.html">NLAISCRIPT::CCodeBrancheRun</a> *)&op;
00816 *context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = 0;
00817
00818 <a class="code" href="driver__opengl__extension__def_8h.html#a385">r</a> = ((<a class="code" href="classNLAISCRIPT_1_1ICodeBranche.html">NLAISCRIPT::ICodeBranche</a> *)opPtr)->run(context);
00819 <font class="comment">// If we are in Debug Mode</font>
00820 <font class="keywordflow">if</font> (context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m6">ContextDebug</a>.Active)
00821 {
00822 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m6">ContextDebug</a>.callStackPop();
00823 }
00824 *context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = ip;
00825 context.<a class="code" href="classNLAISCRIPT_1_1CCodeContext.html#m2">Code</a> = opTmp;
00826 }
00827 }
00828 }
00829
<a name="l00830"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a45">00830</a> <font class="keywordtype">void</font> COperatorClass::initialiseFactBase(<a class="code" href="classNLAILOGIC_1_1CFactBase.html">NLAILOGIC::CFactBase</a> *inst__FactBase)
00831 {
00832 <font class="keywordtype">int</font> i;
00833 <font class="keywordflow">for</font> ( i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m2">_CondAsserts</a>.size() ; i++ )
00834 {
00835 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m2">_CondAsserts</a>[i]->clone();
00836 <a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a> = inst__FactBase-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a5">addAssert</a>( name, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m4">_ClassCondVars</a>[i]-><a class="code" href="cf__lexical_8cpp.html#a94">size</a>() );
00837 <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a>( assert );
00838 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m4">_ClassCondVars</a>[i]->begin();
00839 <font class="keywordflow">while</font> ( it_var != _ClassCondVars[i]->end() )
00840 {
00841 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)(*it_var);
00842 pattern-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a16">addVar</a>( <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CVar.html">NLAILOGIC::CVar</a>( var_name ) );
00843 it_var++;
00844 }
00845 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a33">addPrecondition</a>( pattern );
00846 }
00847
00848 <font class="keywordflow">for</font> ( i = 0; i < (int) <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m3">_ConcAsserts</a>.size() ; i++ )
00849 {
00850 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m3">_ConcAsserts</a>[i]->clone();
00851 <a class="code" href="classNLAILOGIC_1_1IBaseAssert.html">NLAILOGIC::IBaseAssert</a> *<a class="code" href="debug_8h.html#a15">assert</a> = inst__FactBase-><a class="code" href="classNLAILOGIC_1_1CFactBase.html#a5">addAssert</a>( name, <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m5">_ClassConcVars</a>[i]-><a class="code" href="cf__lexical_8cpp.html#a94">size</a>() );
00852 <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a> *pattern = <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CFactPattern.html">NLAILOGIC::CFactPattern</a>( assert );
00853 <a class="code" href="classstd_1_1list.html">std::list<const NLAIAGENT::IVarName *></a>::iterator it_var = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m5">_ClassConcVars</a>[i]->begin();
00854 <font class="keywordflow">while</font> ( it_var != _ClassConcVars[i]->end() )
00855 {
00856 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name = *(<a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> *)(*it_var);
00857 pattern-><a class="code" href="classNLAILOGIC_1_1CVarSet.html#a16">addVar</a>( <font class="keyword">new</font> <a class="code" href="classNLAILOGIC_1_1CVar.html">NLAILOGIC::CVar</a>( var_name ) );
00858 it_var++;
00859 }
00860 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a34">addPostcondition</a>( pattern );
00861 }
00862 }
00863
<a name="l00865"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a0">00865</a> <font class="keywordtype">void</font> COperatorClass::setComment(<font class="keywordtype">char</font> *c)
00866 {
00867 <font class="keywordflow">if</font> ( <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> != NULL )
00868 {
00869 <font class="keyword">delete</font>[] <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a>;
00870 }
00871 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a> = <font class="keyword">new</font> <font class="keywordtype">char</font>[ strlen(c) + 1];
00872 strcpy(<a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o13">_Comment</a>, c);
00873 }
00874
<a name="l00875"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a41">00875</a> <font class="keywordtype">void</font> COperatorClass::addFuzzyCond(<a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *var_name, <a class="code" href="classNLAIAGENT_1_1IVarName.html">NLAIAGENT::IVarName</a> *fset)
00876 {
00877 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m9">_FuzzyVars</a>.push_back( var_name );
00878 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#m10">_FuzzySets</a>.push_back( fset );
00879 }
00880
<a name="l00881"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a58">00881</a> <font class="keywordtype">void</font> COperatorClass::RegisterMessage(<a class="code" href="classNLAIAGENT_1_1IMessageBase.html#s10">NLAIAGENT::IMessageBase::TPerformatif</a> perf, <font class="keyword">const</font> std::string &msg_class, <font class="keyword">const</font> std::string &msg_varname)
00882 {
00883 <font class="keywordflow">try</font>
00884 {
00885
00886 <font class="comment">// Checks if a trigger with the same message or var doesn't already exist</font>
00887 std::vector<std::string>::iterator it_s = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o11">_TrigMsgVarname</a>.begin();
00888 <font class="keywordflow">while</font> ( it_s != <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o11">_TrigMsgVarname</a>.end() )
00889 {
00890 <font class="keywordflow">if</font> ( msg_varname == *it_s )
00891 {
00892 std::string debugString;
00893 std::string text;
00894 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a31">getDebugString</a>(debugString);
00895 text += <a class="code" href="namespaceNLAIC.html#a5">NLAIC::stringGetBuild</a>(<font class="stringliteral">"MessageCond(%s) defined twice in operator class '%s'"</font>,msg_varname.c_str(), debugString.c_str());
00896 <font class="keywordflow">throw</font> <a class="code" href="classNLAIE_1_1CExceptionNotImplemented.html">NLAIE::CExceptionNotImplemented</a>(text.c_str());
00897 }
00898 it_s++;
00899 }
00900
00901 <a class="code" href="classNLAIC_1_1CIdentType.html">NLAIC::CIdentType</a> id_class( msg_class.c_str() );
00902 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o10">_TrigMsgClass</a>.push_back( id_class );
00903 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o9">_TrigMsgPerf</a>.push_back( perf );
00904 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o11">_TrigMsgVarname</a>.push_back( msg_varname );
00905
00906 <font class="comment">// Looks in the class components if the var already exists</font>
00907 sint32 id_var = <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a23">getInheritedStaticMemberIndex</a>( <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a>((<font class="keyword">const</font> <font class="keywordtype">char</font> *) msg_varname.c_str()) );
00908
00909 <font class="keywordflow">if</font> ( id_var != -1 )
00910 {
00911 <font class="comment">// If it exists, stores its index</font>
00912 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o12">_TrigMsgPos</a>.push_back( id_var );
00913 }
00914 <font class="keywordflow">else</font>
00915 {
00916 <font class="comment">// If it doesn't exist, registers the var as a component of the class</font>
00917 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> class_name( (<font class="keyword">const</font> <font class="keywordtype">char</font> *) msg_class.c_str() );
00918 <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a> var_name( (<font class="keyword">const</font> <font class="keywordtype">char</font> *) msg_varname.c_str() );
00919 <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a15">registerComponent</a>( class_name, var_name );
00920 <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o12">_TrigMsgPos</a>.push_back( <a class="code" href="classNLAISCRIPT_1_1CAgentClass.html#a23">getInheritedStaticMemberIndex</a>( <a class="code" href="classNLAIAGENT_1_1CStringVarName.html">NLAIAGENT::CStringVarName</a>((<font class="keyword">const</font> <font class="keywordtype">char</font> *) msg_varname.c_str()) ) );
00921 }
00922 }
00923 <font class="keywordflow">catch</font> (<a class="code" href="classNLAIE_1_1IException.html">NLAIE::IException</a> &err)
00924 {
00925 <font class="keywordflow">throw</font> CExceptionHaveNoType( err.what() );
00926 }
00927 }
00928
00929 <font class="comment">// Checks if a message is in the PreCondition messages list</font>
<a name="l00930"></a><a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#a59">00930</a> sint32 COperatorClass::checkTriggerMsg(<font class="keyword">const</font> <a class="code" href="classNLAIAGENT_1_1IMessageBase.html">NLAIAGENT::IMessageBase</a> *msg)
00931 {
00932 sint32 n = <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o9">_TrigMsgPerf</a>.size();
00933
00934 <font class="keywordflow">while</font> ( n-- )
00935 {
00936 <font class="keywordflow">if</font> ( msg-><a class="code" href="classNLAIAGENT_1_1IMessageBase.html#a10">getPerformatif</a>() == <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o9">_TrigMsgPerf</a>[n] )
00937 {
00938 <font class="preprocessor">#ifdef NL_DEBUG</font>
00939 <font class="preprocessor"></font> <font class="keyword">const</font> <font class="keywordtype">char</font> *msg_dbg = (<font class="keyword">const</font> <font class="keywordtype">char</font> *) msg-><a class="code" href="classNLAIC_1_1IBasicType.html#a2">getType</a>();
00940 <font class="preprocessor">#endif</font>
00941 <font class="preprocessor"></font> <font class="keywordflow">if</font> ( msg-><a class="code" href="classNLAIC_1_1IBasicType.html#a2">getType</a>() == <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o10">_TrigMsgClass</a>[n] )
00942 <font class="keywordflow">return</font> <a class="code" href="classNLAISCRIPT_1_1COperatorClass.html#o12">_TrigMsgPos</a>[n];
00943 }
00944 }
00945 <font class="keywordflow">return</font> -1;
00946 }
00947 }
</pre></div>
<!-- footer -->
<BR><FONT Size=+5> </FONT>
</TD>
<TD WIDTH=15><IMG SRC=/inc/img/pixel.gif WIDTH=15 HEIGHT=15 BORDER=0 ALT=""></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|