-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog
9508 lines (7749 loc) · 257 KB
/
ChangeLog
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
2013-06-17 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 15.2.2.
2013-06-03 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
- fix a bug of the backpass detection. If kick and catch are taken
simultaneously by same team players and the before kicker also
belongs to the same team, the backpass is called.
2013-05-27 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 15.2.1.
* src/referee.cpp:
- fix a bug of the backpass detection. Two or more players from
different teams kick the ball in the same game cycle, the back
passer candidate should be deteted in that game cycle.
2013-05-22 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a minor version number. Official release 15.2.0.
* src/version.h:
- updated the copyright message.
* src/coach.cpp:
- disable new change_player_type format. this command should be
enabled again when v16 simulator is released.
* src/referee.cpp:
* src/referee.h:
- apply the patch from Fernand Almeida.
- clean up the code.
2013-02-13 Fernando Almeida
* src/referee.cpp:
* src/referee.h:
- Fixed an issue with the CatchRef which did not allow a goalie to
catch the ball, after having intercepted it from an opponent,
dribbled to its own area and catch it. Regardless of the
interception position, this should never lead to a foul being
called.
2013-05-20 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/audio.cpp:
* src/bodysender.cpp:
* src/fullstatesender.cpp:
* src/initsendercoach.cpp:
* src/initsenderonlinecoach.cpp:
* src/initsenderplayer.cpp:
* src/serializercoachstdv14.cpp:
* src/serializercommonstdv8.cpp:
* src/serializeronlinecoachstdv14.cpp:
* src/serializerplayerstdv14.cpp:
* src/visualsendercoach.cpp:
* src/visualsenderplayer.cpp:
- disable v16 creators.
2013-05-16 Hidehisa Akiyama <akky@users.sourceforge.jp>
* configure.ac:
* m4/ax_boost_filesystem.m4:
* m4/ax_boost_system.m4:
- update autoconf macros for checking boost libraries.
- add error routine for checking boost libraries.
2012-05-25 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/player.cpp:
* src/player.h:
* src/referee.cpp:
* src/referee.h:
* src/stadium.cpp:
* src/stadium.h:
- clean up the implementation of kick and tackle event
handler. now, the kick event handlers are never called when
players perform tackle command. Instead, some procedures are added
to the tackle event handler to handle a tackle event as a kicking event.
- fix defects that foul can be performed without any penalty
* src/coach.cpp:
- added the rule that forbid to use new change_player_type command
during play_on and penalty shootouts
* src/audio.cpp:
* src/bodysender.cpp:
* src/fullstatesender.cpp:
* src/initsender.h:
* src/initsendercoach.cpp:
* src/initsenderonlinecoach.cpp:
* src/initsenderplayer.cpp:
* src/serializercoachstdv14.cpp:
* src/serializercommonstdv8.cpp:
* src/serializeronlinecoachstdv14.cpp:
* src/serializerplayerstdv14.cpp:
* src/visualsendercoach.cpp:
* src/visualsenderplayer.cpp:
- added version 16 creators.
* src/serverparam.cpp:
- changed the date format of log files. The second is added by
default.
2012-05-24 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/netif.cpp:
* src/netif.h:
* src/Makefile.am:
* src/coach.cpp:
* src/coach.h:
* src/object.h:
* src/player.cpp:
* src/player.h:
* src/stadium.cpp:
* src/stadium.h:
* src/team.cpp:
* src/team.h:
- implemented a variation of change_player_type command, that can
change an exsiting player to goalie. not fully tested yet
- deleted netif.{h,cpp}
2012-05-23 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a minor version number. Official release 15.1.0.
* src/version.h:
- updated the copyright message.
* m4/ax_boost_filesystem.m4:
- updated autoconf macro
2012-05-18 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach_lang_parser.ypp:
* src/coach_lang_tok.lpp:
- align the code.
* src/utility.h:
- fixed a problem of zero division in Quantize().
* src/referee.cpp:
- fixed a bug of player clearance after fouls.
* src/object.cpp:
* src/object.h:
- improve the implementation of rotate() method.
2012-02-05 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/synctimer.cpp:
- fixed a bug of synch mode.
2011-11-17 Hidehisa Akiyama <akky@users.sourceforge.jp>
* m4/ax_boost_base.m4:
* m4/ax_boost_filesystem.m4:
* m4/ax_boost_system.m4:
* m4/ax_prog_bison.m4:
* m4/ax_prog_flex.m4:
* src/synctimer.cpp:
- fixed boost detection problems.
- fixed a compiler warning.
2011-09-02 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/stadium.cpp:
- fixed a defect of time update.
2011-08-31 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/main.cpp:
- set "C" to the global locale.
2011-06-07 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 15.0.1.
* src/clangmsgbuilder.cpp:
- added exception handlings for illegal clang name/id strings.
2011-05-29 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach.cpp:
- added a clang parser exception handling.
* src/clangbuilder.h:
* src/clangmsg.cpp:
* src/clangmsg.h:
* src/clangmsgbuilder.cpp:
* src/clangmsgbuilder.h:
* src/coach_lang_parser.ypp:
- fixed a defect of clang specification. Now, the length of
directive name is restricted within 8 by default.
* src/clangmsgbuilder.cpp:
* src/coach.cpp:
- set the restriction to the length of directive name string.
- added exception handlings for illegal clang directive names.
2011-05-15 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a major version number. Official release 15.0.0.
* src/version.h:
- updated a copyright message.
* src/audio.cpp:
* src/bodysender.cpp:
* src/coach.cpp:
* src/fullstatesender.cpp:
* src/initsendercoach.cpp:
* src/initsenderonlinecoach.cpp:
* src/initsenderplayer.cpp:
* src/logger.cpp:
* src/monitor.cpp:
* src/netif.cpp:
* src/player.cpp:
* src/player.h:
* src/serializercoachstdv14.cpp:
* src/serializercommonstdv8.cpp:
* src/serializermonitor.cpp:
* src/serializeronlinecoachstdv14.cpp:
* src/serializerplayerstdv14.cpp:
* src/serverparam.cpp:
* src/stadium.cpp:
* src/visualsendercoach.cpp:
* src/visualsenderplayer.cpp:
- supported version 15 clients.
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/initsender.cpp:
* src/pcombuilder.h:
* src/player.cpp:
* src/player.h:
* src/player_command_parser.ypp:
* src/player_command_tok.lpp:
* src/playerparam.cpp:
* src/playerparam.h:
* src/referee.cpp:
* src/referee.h:
* src/serverparam.cpp:
* src/serverparam.h:
* src/stadium.cpp:
* src/stadium.h:
* src/types.h:
- added the immediate red card rule to the intentional foul.
- added server::red_card_probability (default value : 0.0).
- improved goalie catch model. When a goalie fails the catch
probabilistically, the ball is accelerated to the goalie's catch
directionthe. In the current implementation, the ball vecolity is
simply reversed along the goalie's catch direction.
- implemented long_kick for testing purpose.
2011-05-14 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
- fixed defect about a dependency between OffsideRef and FreeKickRef.
* src/player.cpp:
* src/referee.cpp:
* src/referee.h:
* src/serverparam.cpp:
* src/stadium.cpp:
* src/stadium.h:
- improved the offside referee. now, the referee checks whether
offside candidate players try to approach the ball or not. if a
candidate player performs kick/tackle within
server::offside_active_area from the ball or touch the ball,
the referee calls offside.
- added short time (5 cycles) to clear opposite side players from
the ball during stoppage time of set play.
* src/csvsaver.h:
* src/referee.h:
* src/stadium.h:
* src/stdoutsaver.h:
- fixed build error on cygwin.
2011-04-04 Hidehisa Akiyama <akky@users.sourceforge.jp>
* rcssbase/conf/parser.cpp:
* rcssbase/conf/streamstatushandler.cpp:
* rcssbase/parser.h:
* src/csvsaver.cpp:
* src/logger.cpp:
* src/playerparam.cpp:
* src/serverparam.cpp:
- fixed build error with boost::filesystem3.
2011-01-07 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/netif.cpp:
- allowed '+' as a team name character.
* src/referee.cpp:
- disabled the rule of player clearance during stoppage time.
2010-09-18 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/Makefile.am:
- fixed a problem of zlib dependency.
2010-08-31 Hidehisa Akiyama <akky@users.sourceforge.jp>
* rcssbase/conf/parser.cpp:
- fixed compiler warning caused by classic boost::spirit.
2010-04-23 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 14.0.3.
* configure.ac:
* m4/ax_boost_base.m4:
* m4/ax_boost_filesystem.m4:
* m4/ax_boost_system.m4:
* m4/ax_prog_flex.m4:
* m4/ax_prog_bison.m4:
- updated autoconf macros.
2010-04-22 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
- fixed a bug of the golden goal option which causes an incorrect
overtime game. Thanks go to Thomas Gabel for reporting the
problem.
2010-01-29 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/version.h:
- updated the copyright message.
2009-12-21 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 14.0.2.
2009-12-18 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/team.cpp:
- removed the unnecessary broadcast of player type substitution.
2009-12-03 Hidehisa Akiyama <akky@users.sourceforge.jp>
* configure.ac:
* m4/ax_prog_bison.m4:
* m4/ax_boost_base.m4:
* m4/ax_prog_flex.m4:
- updated M4 macro files.
2009-12-01 Hidehisa Akiyama <akky@users.sourceforge.jp>
* rcssbase/net/socketstreambuf.cpp:
* rcssbase/net/Makefile.am:
* rcssbase/net/addr.hpp:
* rcssbase/net/iosocketstream.hpp:
* rcssbase/net/isocketstream.hpp:
* rcssbase/net/osocketstream.hpp:
* rcssbase/net/socket.hpp:
* rcssbase/net/socketstreambuf.hpp:
* rcssbase/net/tcpsocket.hpp:
* rcssbase/net/udpsocket.hpp:
- separated the implementation of SocketStreamBuf.
* rcssbase/net/socketstreambuf.hpp:
- fixed a compilation problem on gcc-4.4.1. Thanks go to Ke Shi
for reporting the problem.
2009-11-18 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach.cpp:
* src/dispsender.cpp:
* src/xpmholder.cpp:
* src/xpmholder.h:
- reimplemented XPMHolder.
* src/stadium.cpp:
* src/stadium.h:
* src/weather.cpp:
* src/weather.h:
* src/timer.cpp:
* src/visual.cpp:
* src/Makefile.am:
* src/arithop.cpp:
* src/audio.cpp:
* src/bodysender.cpp:
* src/clangaction.cpp:
* src/clangadvicemsg.cpp:
* src/clangdefmsg.cpp:
* src/clangdelmsg.cpp:
* src/clangfreeformmsg.cpp:
* src/clanginfomsg.cpp:
* src/clangmetamsg.cpp:
* src/clangmsg.cpp:
* src/clangmsgbuilder.cpp:
* src/clangparser.cpp:
* src/clangrulemsg.cpp:
* src/clangunsuppmsg.cpp:
* src/clangutil.cpp:
* src/client.cpp:
* src/coach.cpp:
* src/coach.h:
* src/compop.cpp:
* src/cond.cpp:
* src/csvsaver.cpp:
* src/dispsender.cpp:
* src/field.cpp:
* src/field.h:
* src/fullstatesender.cpp:
* src/heteroplayer.cpp:
* src/initsender.cpp:
* src/initsendercoach.cpp:
* src/initsenderlogger.cpp:
* src/initsendermonitor.cpp:
* src/initsenderonlinecoach.cpp:
* src/initsenderplayer.cpp:
* src/landmarkreader.cpp:
* src/logger.cpp:
* src/main.cpp:
* src/monitor.cpp:
* src/netif.cpp:
* src/object.cpp:
* src/player.cpp:
* src/playerparam.cpp:
* src/referee.cpp:
* src/region.cpp:
* src/remoteclient.cpp:
* src/resultsaver.cpp:
* src/rule.cpp:
* src/serializer.cpp:
* src/serializercoachstdv1.cpp:
* src/serializercoachstdv13.cpp:
* src/serializercoachstdv14.cpp:
* src/serializercoachstdv7.cpp:
* src/serializercoachstdv8.cpp:
* src/serializercommonstdv1.cpp:
* src/serializercommonstdv7.cpp:
* src/serializercommonstdv8.cpp:
* src/serializeronlinecoachstdv1.cpp:
* src/serializeronlinecoachstdv13.cpp:
* src/serializeronlinecoachstdv14.cpp:
* src/serializeronlinecoachstdv6.cpp:
* src/serializeronlinecoachstdv7.cpp:
* src/serializeronlinecoachstdv8.cpp:
* src/serializerplayerstdv1.cpp:
* src/serializerplayerstdv13.cpp:
* src/serializerplayerstdv14.cpp:
* src/serializerplayerstdv7.cpp:
* src/serializerplayerstdv8.cpp:
* src/stdtimer.cpp:
* src/synctimer.cpp:
* src/team.cpp:
* src/timer.h:
* src/utility.cpp:
* src/visualsendercoach.cpp:
* src/visualsenderplayer.cpp:
* src/xmlreader.cpp:
* src/xmlreader.h:
* src/xpmholder.cpp:
- separated Weather class and Stadium class to another source
files.
- cleaned up.
* rcssbase/factory.hpp:
* src/coach.cpp:
* src/coach.h:
* src/field.cpp:
* src/field.h:
* src/resultsaver.hpp:
* src/serverparam.h:
- fixed latent problems in the factory library.
- cleaned up.
* src/field.cpp:
* src/field.h:
* src/main.cpp:
* src/player.cpp:
* src/player.h:
* src/serializercoachstdv14.cpp:
* src/serializerplayerstdv14.cpp:
- fixed method name.
- cleaned up.
2009-11-13 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version number. Official release 14.0.1.
* src/player.cpp:
- fixed an incorrect catch model implementation.
* src/logger.cpp:
- fixed include file preprocessing using configure results.
2009-11-02 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/rcsoccersim.in:
- fixed defects of if statement.
* src/types.h:
- fixed coding style.
2009-11-01 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a major version number. Official release 14.0.0.
* src/rcsoccersim.in:
- added the command line option '-rcssmonitor'
- supported 'rcssmonitr_frameview'.
2009-10-30 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/initsender.cpp:
* src/initsender.h:
* src/serializer.h:
- fixed defects of initsender for 'player_type' message.
* src/bodysender.cpp:
* src/field.cpp:
* src/player.cpp:
* src/player.h:
* src/referee.cpp:
* src/serializer.h:
* src/serializercoachstdv14.cpp:
* src/serializerplayerstdv14.cpp:
* src/serializerplayerstdv14.h:
* src/types.h:
- added foul charged information to bodysensor message.
- added foul charged information to coach visual message.
2009-10-29 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach.cpp:
* src/fullstatesender.cpp:
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/initsender.cpp:
* src/player.cpp:
* src/player.h:
* src/playerparam.cpp:
* src/playerparam.h:
* src/referee.cpp:
* src/serializerplayerstdv13.cpp:
* src/serializerplayerstdv14.cpp:
* src/serializerplayerstdv14.h:
* src/serverparam.cpp:
* src/serverparam.h:
* src/team.cpp:
* src/team.h:
* src/types.h:
- implemented new heterogeneous goalie model. not fully tested
yet.
- fixed defects of the fullstate message serializer.
2009-10-28 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/Makefile.am:
* src/serializercoachstdv14.cpp:
* src/serializercoachstdv14.h:
* src/serializeronlinecoachstdv14.cpp:
* src/serializeronlinecoachstdv14.h:
* src/serializerplayerstdv14.cpp:
* src/serializerplayerstdv14.h:
* src/audio.cpp:
* src/bodysender.cpp:
* src/bodysender.h:
* src/field.cpp:
* src/field.h:
* src/fullstatesender.cpp:
* src/initsendercoach.cpp:
* src/initsenderonlinecoach.cpp:
* src/initsenderplayer.cpp:
* src/monitor.cpp:
* src/monitor.h:
* src/player.cpp:
* src/player.h:
* src/serializer.h:
* src/serializercoachstdv13.cpp:
* src/serializercommonstdv8.cpp:
* src/serializermonitor.cpp:
* src/serializeronlinecoachstdv13.cpp:
* src/visualsendercoach.cpp:
* src/visualsendercoach.h:
* src/visualsenderplayer.cpp:
- added v14 serializers.
- implemented yellow/red card messages.
- added 'dispcard' command to the monitor protocol.
- added interfaces to call yellow/red card from monitor clients.
2009-10-25 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
* src/referee.h:
- fixed a defect of last kicker flag in OffsideRef.
2009-10-23 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/heteroplayer.cpp:
* src/playerparam.cpp:
* src/types.h:
- added new parameters to the binary log format.
* src/player.cpp:
* src/player.h:
* src/referee.cpp:
* src/referee.h:
- cleaned up the offside rule implementation.
* src/audio.cpp:
* src/coach.cpp:
* src/field.cpp:
* src/field.h:
* src/fullstatesender.cpp:
* src/logger.cpp:
* src/monitor.cpp:
* src/netif.cpp:
* src/object.cpp:
* src/object.h:
* src/player.cpp:
* src/player.h:
* src/referee.cpp:
* src/serializermonitor.cpp:
* src/team.cpp:
* src/visualsendercoach.cpp:
* src/visualsenderplayer.cpp:
- fixed defect of tackle foul.
- fixed coding style.
- cleaned up.
2009-10-22 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/field.cpp:
* src/field.h:
* src/pcombuilder.h:
* src/player.cpp:
* src/player.h:
* src/player_command_parser.ypp:
* src/player_command_tok.lpp:
* src/referee.cpp:
* src/referee.h:
* src/serverparam.cpp:
* src/serverparam.h:
* src/types.h:
- implemented new intentional foul model.
- implemented yellow/red card and discard of red carded player.
* src/field.cpp:
* src/field.h:
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/initsender.cpp:
* src/object.cpp:
* src/object.h:
* src/player.cpp:
* src/player.h:
* src/playerparam.cpp:
* src/playerparam.h:
* src/referee.cpp:
* src/serverparam.cpp:
* src/serverparam.h:
* src/types.h:
* src/visualsenderplayer.cpp:
- implemented new heterogeneous kick power rate model.
- removed server::tackle_foul_model.
- added server::foul_detect_probability.
- added player::kick_power_rate_delta_min.
- added player::kick_power_rate_delta_max.
- added player::foul_detect_probability_delta_factor.
- added HeteroPlaeyr::kickPowerRate().
- added HeteroPlaeyr::foulDetectProbability().
2009-10-21 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/bodysender.cpp:
* src/dispsender.cpp:
* src/field.cpp:
* src/field.h:
* src/fullstatesender.cpp:
* src/object.cpp:
* src/object.h:
* src/player.cpp:
* src/player.h:
* src/referee.cpp:
* src/referee.h:
* src/serializermonitor.cpp:
* src/serverparam.cpp:
* src/serverparam.h:
* src/vector.h:
* src/visualsenderplayer.cpp:
- implemented new tackle foul model. An intentional foul and
yellow/red cards are NOT implemented yet.
2009-10-14 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/initsender.cpp:
* src/initsender.h:
* src/serverparam.cpp:
* src/serverparam.h:
- added servr::tackle_rand_factor,
server::tackle_foul_probability, server::foul_exponent and
server::foul_cycles. but new tackle model is not implemented yet.
- added InitSenderCommonV14 to inform tackle_rand parameter.
2009-10-13 Hidehisa Akiyama <akky@users.sourceforge.jp>
* configure.ac:
- updated version number string to '14.0.0a'.
* src/serverparam.cpp:
- updated the default parameter value of
server::stramina_capacity, server::dash_angle_step,
server::side_dash_rate and server::back_dash_rate.
2009-09-16 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach.cpp:
* src/field.cpp:
* src/referee.cpp:
* src/serverparam.cpp:
* src/serverparam.h:
- added 'server::golden_goal' option.
- implemented no golden goal rule.
2009-09-15 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach.cpp:
* src/coach.h:
* src/monitor.cpp:
* src/monitor.h:
* src/player.cpp:
* src/player.h:
* src/remoteclient.cpp:
* src/remoteclient.h:
- removed 'const' specifier from received message buffer.
* src/field.cpp:
* src/heteroplayer.cpp:
* src/heteroplayer.h:
* src/playerparam.h:
* src/serverparam.cpp:
* src/serverparam.h:
- added 'server::random_seed' option, but not really used yet.
- added ServerParam::randomSeed() and ServerParam::setRandomSeed()
- added PlayerParam::setRandomSeed()
2009-08-13 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/field.cpp:
* src/referee.cpp:
- changed the policy of kick off action when keepaway mode is
enabled.
* src/field.cpp:
* src/referee.cpp:
* src/serializerplayerstdv1.cpp:
- fixed coding style.
- fixed destination of error message for online coach.
- added automatic stamina recovery for keepaway mode.
2009-06-18 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version. Official release 13.2.2.
* src/object.cpp:
- commented out unnecessary debug messages.
* src/referee.cpp:
- fixed a defect of back passer analysis.
- fixed a defect of player clearance from the ball when referee
moves players to out of pitch.
- fixed a defect of player clearance from the ball while back_pass
and catch_fault.
2009-04-29 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version. Official release 13.2.1.
* src/csvsaver.cpp:
- added the missing comma.
2009-04-09 Hidehisa Akiyama <akky@users.sourceforge.jp>
* configure.ac:
- tested LT_INIT macro with libtool-2.2.4.
2009-04-06 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a minior version. Official release 13.2.0.
* COPYING.LESSER:
- updated the license from LGPLv2 to LGPLv3.
* src/client.cpp:
- fixed compiler warnings.
* src/serverparam.cpp:
- changed default value of some parameters.
2009-04-03 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
- fixed a timer bug of the penalty kick referee.
2009-03-23 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version. Official release 13.1.1.
2009-03-16 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/referee.cpp:
- fixed a bug of the indirect free kick referee.
2009-03-10 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/field.cpp:
- fixed an incorrect online coach names for result savers. Thanks
go to Andreas Hechenblaickner for reporting the problem.
2009-03-04 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/coach_lang_tok.lpp:
* src/player_command_tok.lpp:
- applied a gcc-4.4 patch provided by Hedayat Vatankhah.
2008-12-15 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a minor version. Official release 13.1.0.
* src/Makefile.am:
- fixed clean target files.
* src/client.cpp:
* src/coach.cpp:
* src/coach.h:
* src/field.cpp:
* src/monitor.cpp:
* src/netif.cpp:
* src/param.h:
* src/player.cpp:
- fixed a defect of the new dash model.
- fixed a defect of the player command parser on Cygwin.
2008-12-02 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated a point version. Official release 13.0.2.
* src/referee.cpp:
- fixed a ball catcher bug that causes a strange penalty shoot
outs play.
2008-11-14 Hidehisa Akiyama <akky@users.sourceforge.jp>
* NEWS:
* configure.ac:
- updated release notes for 13.0.1 in the NEWS file.
- updated a point version. Official release 13.0.1.
* src/csvsaver.cpp:
* src/csvsaver.h:
* src/field.cpp:
* src/resultsaver.hpp:
* src/stdoutsaver.cpp:
* src/stdoutsaver.h:
- reimplemented ResultSaver creators as a static member method.
- added a header line to the first CSVSaver output.
- fixed coding style.
2008-11-12 Hidehisa Akiyama <akky@users.sourceforge.jp>
* Makefile.am:
* configure.ac:
* rcssbase/conf/parser.cpp:
* rcssbase/conf/streamstatushandler.cpp:
* rcssbase/net/addr.cpp:
* rcssbase/net/handler.cpp:
* rcssbase/net/handler.hpp:
* rcssbase/net/socket.cpp:
* rcssbase/net/socket.hpp:
* rcssbase/net/tcpsocket.cpp:
* rcssbase/net/udpsocket.cpp:
* src/client.cpp:
* src/coach.cpp:
* src/csvsaver.cpp:
* src/dispsender.cpp:
* src/heteroplayer.cpp:
* src/initsenderlogger.cpp:
* src/initsendermonitor.cpp:
* src/logger.cpp:
* src/logger.h:
* src/monitor.cpp:
* src/playerparam.cpp:
* src/serverparam.cpp:
* src/stdoutsaver.cpp:
* src/stdtimer.cpp:
* src/stdtimer.h:
* src/utility.cpp:
* src/utility.h:
- removed an unused file from distribution target.
- fixed build problems on Cygwin.
- fixed defects of boost::filesystem.
repladed boost::filesystem::create_directry with
boost::filesystem::create_directories.
replaced boost::filesystem::portable_posix_name with
boost::filesystem::native.
added the strict check of BOOST_FILESYSTEM_NO_DEPRECATED.
- changed a default configuration file location for windows
environments.
2008-11-11 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/pcomparser.cpp:
* src/pcomparser.h:
* src/player_command_parser.ypp:
- fixed build problems with bison-2.4.
2008-11-10 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/dispsender.cpp:
* src/dispsender.h:
* src/field.cpp:
* src/initsendermonitor.cpp:
* src/initsendermonitor.h:
* src/logger.cpp:
* src/logger.h:
* src/monitor.cpp:
* src/monitor.h:
* src/serializer.h:
* src/serializermonitor.cpp:
* src/serializermonitor.h:
* src/team.h:
- reimplemented team_graphic senders.
* src/dispsender.cpp:
* src/dispsender.h:
* src/logger.cpp:
* src/logger.h:
* src/monitor.cpp:
- cleaned up the message sender of monitor and logger.
* src/field.cpp:
* src/netif.cpp:
- added an error message for offline coaches when they try to
connect to the server without coach mode.
2008-11-07 Hidehisa Akiyama <akky@users.sourceforge.jp>
* src/audio.cpp:
* src/audio.h:
* src/bodysender.cpp:
* src/bodysender.h:
* src/coach.cpp:
* src/coach.h:
* src/csvsaver.cpp:
* src/csvsaver.h:
* src/dispsender.h:
* src/field.cpp:
* src/field.h:
* src/fullstatesender.cpp:
* src/fullstatesender.h:
* src/initsender.cpp:
* src/initsender.h:
* src/initsendercoach.cpp: