-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
1857 lines (1473 loc) · 42.3 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
2018-10-24 Hidehisa Akiyama <[email protected]>
* qt4/ball_painter.cpp:
* qt4/config_dialog.cpp:
* qt4/detail_dialog.cpp:
* qt4/draw_info_painter.cpp:
* qt4/field_canvas.cpp:
* qt4/field_painter.cpp:
* qt4/image_save_dialog.cpp:
* qt4/log_player_tool_bar.cpp:
* qt4/log_slider_tool_bar.cpp:
* qt4/main_data.cpp:
* qt4/main_window.cpp:
* qt4/monitor_client.cpp:
* qt4/player_painter.cpp:
* qt4/player_type_dialog.cpp:
* qt4/qt4.pro:
* qt4/score_board_painter.cpp:
* qt4/team_graphic_painter.cpp:
- support Qt5.
2017-11-13 Hidehisa Akiyama <[email protected]>
* rcsslogplayer/util.cpp:
- fix a defect of body angle conversion in old format.
2017-04-19 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a point version number. Official release 15.2.1.
* m4/qt.m4:
- fix a defect of Qt detection on Ubuntu 16.04.
2016-09-19 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a micro version number. Official release 15.2.0.
* m4/ax_boost_base.m4:
* m4/ax_boost_program_options.m4:
* m4/ax_boost_system.m4:
- update m4 macro files.
2014-04-21 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a micro version number. Official release 15.1.1.
2014-04-18 Hidehisa Akiyama <[email protected]>
* src/main.cpp:
- fixed a problem of locale setting.
* src/rcsslogplayer/parser.cpp:
- fixed a compiler warning.
2012-05-23 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a minor version number. Official release 15.1.0.
- fixed an incorrect help message.
* qt4/main.cpp:
- updated the copyright message.
* m4/ax_boost_base.m4:
* m4/ax_boost_program_options.m4:
- updated autoconf macro
* qt4/image_save_dialog.cpp:
- fixed a compiler warning
2011-08-31 Hidehisa Akiyama <[email protected]>
* qt4/main.cpp:
- set "C" to the global locale.
2011-05-15 Hidehisa Akiyama <[email protected]>
* configure.ac:
* NEWS:
- updated a major version number. Official release 15.0.0.
* rcsslogplayer/Makefile.am:
- updated a library major version number.
* qt4/main.cpp:
- updated a copyright message.
* Makefile.am:
* configure.ac:
* qt4/Makefile.am:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/types.cpp:
* rcsslogplayer/types.h:
- supported a new parameter of rcssserver-15
- disabled classic logplayer.
- disabled glwidget by default.
2010-04-23 Hidehisa Akiyama <[email protected]>
* m4/ax_boost_base.m4:
* m4/ax_boost_program_options.m4:
- updated autoconf macros.
2010-01-29 Hidehisa Akiyama <[email protected]>
* qt4/main.cpp:
- updated the copyright message.
2009-12-21 Hidehisa Akiyama <[email protected]>
* rcsslogplayer.pro:
- fixed an illegal variable name.
2009-12-03 Hidehisa Akiyama <[email protected]>
* m4/ax_boost_base.m4:
* m4/ax_boost_program_options.m4:
- updated M4 macro files.
2009-11-13 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
* qt4/qt4.pro:
- updated point version. Official release 14.0.1.
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
* qt4/disp_holder.cpp:
* qt4/options.cpp:
* qt4/player_painter.cpp:
* qt4/player_type_dialog.cpp:
- fixed catch model.
2009-11-06 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
* qt4/qt4.pro:
- updated major version. Official release 14.0.0.
* qt4/detail_dialog.cpp:
* qt4/player_painter.cpp:
* qt4/player_type_dialog.cpp:
* qt4/qt4.pro:
- added the information of kick_power_rate and
foul_detect_probability to PlayerTypeDialog.
- changed default color settings.
* rcsslogplayer/parser.cpp:
* rcsslogplayer/rcsslogplayer.pro:
* rcsslogplayer/types.cpp:
* rcsslogplayer/types.h:
- added a static method to initialize default player type
parameters.
2009-11-05 Hidehisa Akiyama <[email protected]>
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
- added catch probability information.
- added foul probability information.
* qt4/player_painter.cpp:
- added catch probability painting.
2009-11-04 Hidehisa Akiyama <[email protected]>
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/log_slider_tool_bar.cpp:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/player_painter.h:
* qt4/player_type_dialog.cpp:
- improved the painting policy of players' card status.
- added '--show-card' option.
- fixed duplicated short cut keys.
2009-11-02 Hidehisa Akiyama <[email protected]>
* configure.ac:
* qt4/ball_painter.h:
* qt4/field_canvas.cpp:
* qt4/field_canvas.h:
* qt4/main.cpp:
* qt4/player_painter.cpp:
* qt4/player_painter.h:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/types.cpp:
* rcsslogplayer/types.h:
* tool/rcg2xml.cpp:
- supported v14 features.
- supported opengl widget.
2009-11-01 Hidehisa Akiyama <[email protected]>
* m4/qt.m4:
- improved autoconf macro for Qt.
2009-08-13 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
* qt4/player_type_dialog.cpp:
- fixed header size of table view.
2009-04-17 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
- fixed typo.
2009-04-09 Hidehisa Akiyama <[email protected]>
* classic/Makefile.am:
* configure.ac:
- supported AX_XAW7 macro.
- removed variables related to rcssbase.
* m4/ax_boost_base.m4:
* m4/ax_boost_program_options.m4:
* m4/ax_xaw7.m4:
* m4/qt.m4:
- replaced symbolic link with hard copy.
- addec AX_XAW7 macro.
2009-03-23 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
* qt4/qt4.pro:
- updated a point version. Official release 13.1.1.
2009-03-14 Hidehisa Akiyama <[email protected]>
* tool/rcgconvert.cpp:
- fixed compiler warnings.
2009-03-04 Hidehisa Akiyama <[email protected]>
* qt4/disp_holder.cpp:
* qt4/monitor_server.cpp:
* qt4/team_graphic.cpp:
* rcsslogplayer/parser.cpp:
- applied a gcc-4.4 patch provided by Hedayat Vatankhah.
2008-12-18 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a minor version string. Official release 13.1.0.
2008-12-16 Hidehisa Akiyama <[email protected]>
* tool/Makefile.am:
* tool/rcgconvert.cpp:
- removed rcg3to4 and rcg4to3 from a build target.
- fixed the output destination of rcgconvert's help messages.
2008-12-10 Hidehisa Akiyama <[email protected]>
* configure.ac:
* classic/Makefile.am:
* qt4/Makefile.am:
* rcsslogplayer/Makefile.am:
- fixed autoconf macros.
- fixed compiler options.
2008-11-21 Hidehisa Akiyama <[email protected]>
* tool/rcgconvert.cpp:
* rcsslogplayer/types.cpp:
* tool/Makefile.am:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
- implemented rcgconvert command, which can handle any rcg
version.
- fixed a parameter precision.
2008-12-04 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a version number string. Official release 13.0.1.
* classic/controler.cpp:
* classic/logplayer.cpp:
* rcsslogplayer/gzfstream.cpp:
* rcsslogplayer/parser.cpp:
* tool/rcgsplit.cpp:
- removed std:: from snprintf and strtof.
2008-11-03 Hidehisa Akiyama <[email protected]>
* NEWS:
* README:
* configure.ac:
- updated a version number string. Official release 13.0.0.
* classic/addr.cpp:
* classic/addr.hpp:
* classic/socket.cpp:
* classic/socket.hpp:
* classic/udpsocket.cpp:
* classic/udpsocket.hpp:
* classic/Makefile.am:
* classic/logplayer.cpp:
* classic/logplayer.h:
* classic/main.cpp:
* classic/netif.h:
* configure.ac:
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
* qt4/field_canvas.cpp:
* qt4/image_save_dialog.cpp:
* qt4/main_window.cpp:
* qt4/monitor_client.cpp:
* qt4/monitor_server.cpp:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/remote_monitor.cpp:
* qt4/team_graphic_painter.cpp:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/types.h:
* tool/rcg4to3.cpp:
- supported a monitor protocol version 4 and a game log format
version 5.
- disabled classc log player by default.
2008-10-01 Hidehisa Akiyama <[email protected]>
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
- added error messages for missing boost::program_options.
2008-09-25 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
* qt4/qt4.pro
- updated a version number string, Official release 12.1.2.
2008-09-17 Hidehisa Akiyama <[email protected]>
* classic/controler.cpp:
* classic/nowindow.cpp:
* icons/blank.xpm:
* icons/ff.xpm:
* icons/go.xpm:
* icons/minus.xpm:
* icons/next_score.xpm:
* icons/open.xpm:
* icons/play.xpm:
* icons/plus.xpm:
* icons/prev_score.xpm:
* icons/quit.xpm:
* icons/rcss.xpm:
* icons/rec.xpm:
* icons/rev.xpm:
* icons/rew.xpm:
* icons/stop.xpm:
* qt4/disp_holder.cpp:
* qt4/monitor_server.cpp:
* qt4/mouse_state.h:
* qt4/team_graphic_painter.cpp:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/util.cpp:
* tool/rcg2xml.cpp:
- fixed gcc-4.3 compilation problems.
2008-08-05 Hidehisa Akiyama <[email protected]>
* qt4/config_dialog.cpp:
- fixed an illegal signal connection.
2008-08-04 Hidehisa Akiyama <[email protected]>
* qt4/qt4.pro:
- updated a version number string.
2008-08-03 Hidehisa Akiyama <[email protected]>
* qt4/qt4.pro:
- fixed a build problem with MacPorts qt-mac-4.4.0.
2008-08-01 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
- fixed a default server host string.
2008-07-20 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a version number string, Official release 12.1.1.
* qt4/options.cpp:
- fixed an illegal option name.
* qt4/team_graphic_painter.cpp:
- fixed a bug of the team_graphic painting for right side teams.
2008-05-04 Hidehisa Akiyama <[email protected]>
* qt4/log_player.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/options.h:
- implemented an auto quit mode.
2008-04-17 Hidehisa Akiyama <[email protected]>
* NEWS:
* configure.ac:
- updated a version number string. Official release 12.1.0.
* qt4/log_slider_tool_bar.cpp:
* qt4/main_window.cpp:
- fixed statustip messages.
* qt4/detail_dialog.cpp:
* rcsslogplayer/types.
- fixed a defect of fucus information.
* qt4/main_window.cpp:
- changed menu order.
* qt4/disp_holder.cpp:
- fixed a defect of disp info handling in the monitor client mode.
* qt4/remote_monitor.cpp:
- fixed a defect of monitor client connection.
2008-04-14 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
- added a simple shortcut key help dialog.
* icons/rcss.icns:
* qt4/qt4.pro:
- added an icon file for Mac OS X.
* NEWS:
* configure.ac:
* qt4/field_canvas.cpp:
* qt4/main_window.cpp:
* qt4/player_type_dialog.cpp:
- supported Qt-4.1.0.
- updated NEWS file.
* qt4/disp_holder.cpp:
* qt4/main_window.cpp:
* qt4/monitor_server.cpp:
* qt4/options.cpp:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/parser.h:
- implemented simple monitor client. Now, rcsslogplayer can be
used as a simple proxy server.
* configure.ac:
* qt4/log_player_tool_bar.cpp:
* qt4/log_slider_tool_bar.cpp:
* qt4/main_window.cpp:
* qt4/player_painter.cpp:
- supported Qt-4.2.0.
* qt4/image_save_dialog.cpp:
- fixed a defect about saved directory selection.
2008-04-13 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
* qt4/player_painter.cpp:
- disabled shortcut key help message for Windows.
- tuned darker color.
2008-04-12 Hidehisa Akiyama <[email protected]>
* tool/rcg2xml.cpp:
- fixed gcc-4.2 warning.
* classic/Makefile.am:
* qt4/Makefile.am:
* qt4/main_window.cpp:
* qt4/options.cpp:
- added missing disttarget files.
- fixed incorrect settings.
2008-04-11 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
* qt4/options.cpp:
- fixed defects about setting read/write.
- fixed defects about canvas size on the initialization.
* qt4/main_data.cpp:
- fixed a defect about a return characther code.
* qt4/main_window.cpp:
- added an automatic directry setting to open the output file.
* qt4/main_data.cpp:
- implemented automatic file exteantion appending for an output
file name.
* qt4/config_dialog.cpp:
- changed a layout.
* qt4/config_dialog.h:
* qt4/field_canvas.cpp:
* qt4/field_canvas.h:
* qt4/main_data.cpp:
- implemented a player selection by mouse clicking.
* qt4/log_player.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/qt4.pro:
* qt4/rcsslogplayer.rc:
* rcsslogplayer/rcsslogplayer.pro:
- fixed build problem on Windows.
2008-04-10 Hidehisa Akiyama <[email protected]>
* qt4/log_player_tool_bar.cpp:
* qt4/main_window.cpp:
- fixed shortcut keys.
* qt4/disp_holder.cpp:
* qt4/log_player.cpp:
* qt4/main_window.cpp:
* qt4/monitor_client.cpp:
* rcsslogplayer/util.cpp:
* rcsslogplayer/util.h:
- implemented simple monitor client. Not completed yet.
* qt4/image_save_dialog.cpp:
* qt4/image_save_dialog.h:
* qt4/Makefile.am:
* qt4/field_canvas.cpp:
* qt4/main_window.cpp:
- added some monitor client related code, but not available yet.
- added an action to print available shortcut keys.
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/qt4.pro:
- implemented an image save dialog.
* classic/logplayer.cpp:
* qt4/Makefile.am:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
* tool/rcgsplit.cpp:
- fixed include dependency.
* qt4/qt4.pro:
* classic/Makefile.am:
* classic/logplayer.cpp:
* configure.ac:
* qt4/Makefile.am:
* qt4/team_graphic_painter.cpp:
* rcsslogplayer/rcsslogplayer.pro:
* rcsslogplayer/util.cpp:
- fixed build problem on Mac OS X, but cannot be build by
Makefile generated by configure. instead of them, use qmake.
2008-04-08 Hidehisa Akiyama <[email protected]>
* qt4/main_window.cpp:
- fixed an incorrect handler assignment.
* rcsslogplayer/parser.cpp:
* rcsslogplayer/parser.h:
- fixed bugs in v4 parser.
- added safe mode option
* qt4/log_slider_tool_bar.cpp:
- restricted press event to the left button.
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
* qt4/player_type_dialog.cpp:
* qt4/player_type_dialog.h:
- implemented a transparent dialog using wheel event.
* classic/logplayer.cpp:
* classic/logplayer.h:
* classic/nowindow.cpp:
* qt4/main_data.cpp:
* rcsslogplayer/rcsslogplayer.pro:
* tool/Makefile.am:
- fixed compliser warning.
- added profiling code.
* classic/Makefile.am:
* icons/rcss.ico:
* rcsslogplayer.pro:
* rcsslogplayer/rcsslogplayer.pro:
* qt4/disp_holder.cpp:
* qt4/main.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/player_painter.cpp:
* qt4/rcsslogplayer.rc:
- added qmake project files.
* qt4/main_data.cpp:
* rcsslogplayer/parser.cpp:
- added code for profiling.
- improved parser performance.
* configure.ac:
* classic/Makefile.am:
* classic/logplayer.cpp:
* qt4/disp_holder.cpp:
* qt4/main.cpp:
* qt4/main_data.cpp:
* qt4/main_data.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/rcsslogplay:
* rcsslogplayer/Makefile.am:
* rcsslogplayer/gzfstream.cpp:
* rcsslogplayer/gzfstream.h:
* tool/Makefile.am:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
* tool/rcgsplit.cpp:
- added gzfstream to the rcgparser library.
- added progress dialog while log parsing.
2008-04-07 Hidehisa Akiyama <[email protected]>
* qt4/main.cpp:
- added copyright notice.
* classic/logplayer.cpp:
* classic/logplayer.h:
* qt4/main_window.cpp:
* rcsslogplayer/handler.h:
* tool/rcg2xml.cpp:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
* tool/rcgsplit.cpp:
- fixed bugs in log parsing.
* qt4/disp_holder.cpp:
* qt4/disp_holder.h:
* qt4/log_player.cpp:
* qt4/log_player.h:
* qt4/log_player_tool_bar.cpp:
* qt4/log_player_tool_bar.h:
* qt4/main_data.cpp:
* qt4/main_data.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/player_painter.cpp:
* qt4/remote_monitor.cpp:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/util.cpp:
* tool/rcg3to4.cpp:
- fixed bugs in the older version log parsing.
- implemented a function of data segment recording.
* qt4/draw_info_painter.cpp:
* qt4/draw_info_painter.h:
* qt4/Makefile.am:
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/disp_holder.cpp:
* qt4/disp_holder.h:
* qt4/field_canvas.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/score_board_painter.cpp:
* qt4/score_board_painter.h:
* rcsslogplayer/handler.h:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/parser.h:
* rcsslogplayer/types.h:
- fixed bugs about draw info parsing.
- supported draw info painting.
* qt4/Makefile.am:
* qt4/team_graphic.cpp:
* qt4/team_graphic.h:
* qt4/team_graphic_painter.cpp:
* qt4/team_graphic_painter.h:
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/disp_holder.cpp:
* qt4/disp_holder.h:
* qt4/field_canvas.cpp:
* qt4/main_data.cpp:
* qt4/main_data.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/player_type_dialog.cpp:
- supported team_graphic data.
* qt4/log_slider_tool_bar.cpp:
* qt4/log_slider_tool_bar.h:
- implemented a click action in the cycle slider.
* rcsslogplayer/parser.cpp:
- fixed a defect of msg info parsing.
* qt4/ball_painter.cpp:
* qt4/field_canvas.cpp:
* qt4/field_painter.cpp:
* qt4/log_player_tool_bar.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/score_board_painter.cpp:
* qt4/score_board_painter.h:
- changed size policy for the minimum mode.
- added new background and foreground color for the minimum mode.
- renamed setting file for the Windows environment.
- supported QSettings in Options class.
* icons/rec.xpm:
* qt4/log_player.cpp:
* qt4/log_player.h:
* qt4/log_player_tool_bar.cpp:
* qt4/log_player_tool_bar.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
- added new option to output game log data, but not fully
implemented yet.
* classic/rcsslogplay_classic:
* qt4/rcsslogplay:
* qt4/Makefile.am:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
- implemented the option to invoke external monitor.
* qt4/circle_2d.cpp:
* qt4/circle_2d.h:
* qt4/line_2d.cpp:
* qt4/line_2d.h:
* qt4/log_slider_tool_bar.cpp:
* qt4/log_slider_tool_bar.h:
* qt4/Makefile.am:
* qt4/angle_deg.h:
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/field_canvas.cpp:
* qt4/log_player_tool_bar.cpp:
* qt4/log_player_tool_bar.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/player_painter.h:
* qt4/score_board_painter.cpp:
* qt4/score_board_painter.h:
- fixed several minor problems.
- changed the designe of minimum mode.
- added show-kick-accel-area option.
* qt4/ball_painter.cpp:
* qt4/config_dialog.cpp:
* qt4/detail_dialog.cpp:
* qt4/field_canvas.cpp:
* qt4/field_painter.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/score_board_painter.cpp:
- implemented minimum mode.
2008-04-06 Hidehisa Akiyama <[email protected]>
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
* qt4/main_data.cpp:
* qt4/player_painter.cpp:
- added tackle probability to DetailDialog.
* rcsslogplayer/types.h:
* rcsslogplayer/util.cpp:
- fixed threashold values for binary format.
2008-04-05 Hidehisa Akiyama <[email protected]>
* qt4/disp_holder.cpp:
* qt4/field_canvas.cpp:
* qt4/log_player_tool_bar.cpp:
* qt4/main_data.cpp:
* qt4/main_window.cpp:
* qt4/options.cpp:
* qt4/score_board_painter.cpp:
- addec check of librcssgz.
- disabled monitor related actions.
* qt4/disp_holder.cpp:
- added the restriction to the max number of showinfo.
* classic/logplayer.cpp:
- fixed a bug in the save log initialization.
* qt4/monitor_server.cpp:
* qt4/monitor_server.h:
* qt4/remote_monitor.cpp:
* qt4/remote_monitor.h:
* qt4/Makefile.am:
* qt4/disp_holder.cpp:
* qt4/disp_holder.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/monitor_client.cpp:
* qt4/monitor_client.h:
* qt4/options.cpp:
* qt4/options.h:
- implemented monitor server.
* icons/next_score.xpm:
* icons/prev_score.xpm:
* qt4/Makefile.am:
* qt4/angle_deg.cpp:
* qt4/angle_deg.h:
* qt4/detail_dialog.cpp:
* qt4/detail_dialog.h:
* qt4/log_player.cpp:
* qt4/log_player.h:
* qt4/log_player_tool_bar.cpp:
* qt4/log_player_tool_bar.h:
* qt4/monitor_client.cpp:
* qt4/monitor_client.h:
* qt4/player_type_dialog.cpp:
* qt4/player_type_dialog.h:
* qt4/vector_2d.cpp:
* qt4/vector_2d.h:
* qt4/ball_painter.cpp:
* qt4/ball_painter.h:
* qt4/config_dialog.cpp:
* qt4/config_dialog.h:
* qt4/disp_holder.cpp:
* qt4/disp_holder.h:
* qt4/field_canvas.cpp:
* qt4/field_canvas.h:
* qt4/field_painter.cpp:
* qt4/field_painter.h:
* qt4/main_data.cpp:
* qt4/main_data.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_painter.cpp:
* qt4/player_painter.h:
* qt4/score_board_painter.cpp:
* qt4/score_board_painter.h:
- implemented new Qt4 based logplayer.
* rcsslogplayer/parser.cpp:
* rcsslogplayer/types.h:
- added new interfaces for the convenience.
* classic/logplayer.cpp:
* configure.ac:
- tested wait().
2008-04-04 Hidehisa Akiyama <[email protected]>
* configure.ac:
- fixed enable options.
* rcsslogplayer/handler.h:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/parser.h:
* rcsslogplayer/types.h:
* classic/logplayer.cpp:
* tool/rcg2xml.cpp:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
* tool/rcgsplit.cpp:
- changed parser loop policy.
- supported drawinfo parsing.
2008-04-02 Hidehisa Akiyama <[email protected]>
* configure.ac:
* rcsslogplayer/Makefile.am:
- fixed install directory.
- fixed build option checking.
* icons/blank.xpm:
* icons/ff.xpm:
* icons/go.xpm:
* icons/minus.xpm:
* icons/play.xpm:
* icons/plus.xpm:
* icons/quit.xpm:
* icons/rec.xpm:
* icons/rev.xpm:
* icons/rew.xpm:
* icons/stop.xpm:
* qt4/ball_painter.cpp:
* qt4/ball_painter.h:
* qt4/field_canvas.cpp:
* qt4/field_canvas.h:
* qt4/field_painter.cpp:
* qt4/field_painter.h:
* qt4/mouse_state.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/painter_interface.h:
* qt4/player_painter.cpp:
* qt4/player_painter.h:
* qt4/score_board_painter.cpp:
* qt4/score_board_painter.h:
* Makefile.am:
* configure.ac:
* qt4/Makefile.am:
* qt4/main_window.h:
* tool/Makefile.am:
- added files for new logplayer, but not fully implemente yet.
* classic/rcsslogplay_classic:
* classic/logplayer.cpp:
* classic/logplayer.h:
* classic/main.cpp:
- changed the policy of rcsslogplay_classic. Now,
rcsslogplayer_classc invokes the monitor client by itself.
* qt4:
* qt4/Makefile.am:
* qt4/main.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
- added new directory.
* Makefile.am:
* configure.ac:
- cleaned up.
- added qt4 checking.
* tool/Makefile.am:
* tool/rcg3to4.cpp:
* tool/rcg4to3.cpp:
- added new tool programs.
* rcsslogplayer/handler.h:
* rcsslogplayer/parser.cpp:
* rcsslogplayer/types.cpp:
* tool/rcgsplit.cpp:
- fixed a parser bug.
- fixed a printed value precision.
* classic/Makefile.am:
* classic/rcsslogplay_classic:
* classic/rcsslogplay:
- renamed rcsslogplay to rcsslogplay_classic
2008-04-01 Hidehisa Akiyama <[email protected]>
* rcsslogplayer/types.cpp:
* classic/file.cpp:
* classic/file.h:
* classic/rcgdatahandler.hpp:
* classic/rcgparser.cpp:
* classic/rcgparser.hpp:
* classic/types.h:
* classic/utility.h:
* classic/Makefile.am:
* classic/controler.cpp:
* classic/logplayer.cpp:
* classic/logplayer.h:
* classic/main.cpp:
* classic/netif.cpp:
* classic/netif.h:
* classic/nowindow.cpp:
* classic/rcsslogplay:
* configure.ac: