]> git.cworth.org Git - grrobot/blob - ChangeLog
45823e22be479839b32c4418c44e2822ef0c920f
[grrobot] / ChangeLog
1 2005-06-16  Carl Worth  <cworth@cworth.org>
2
3         * README: Update to refer to cairo instead of Xr.
4         
5         * src/args.c: (args_help), (args_usage), (args_parse): Fix
6         command-line option parsing. Use getopt rather than argp.
7
8 2005-06-16  Carl Worth  <cworth@cworth.org>
9
10         Accidentally committed a bunch of code which brings things up to
11         date with cairo 0.5.0 and break command-line option parsing.
12
13 2004-01-09  Carl Worth  <cworth@isi.edu>
14
15         * Recovered some lost changes due to a bothced cvsup commit, (yes,
16         this is utter pain).
17
18         * src/svg/wall.svg: Add round caps to walls.
19
20         * src/svg/robot_red.svg:
21         * src/svg/robot_blue.svg:
22         * src/svg/robot_green.svg:
23         * src/svg/robot_green.svg: Made robot colors match new targets.
24
25         * src/svg/wall.svg: Made walls thicker.
26
27 2004-01-01  Keith Packard  <keithp@keithp.com>
28
29         * src/svg/grr_icon_svg.h:
30         * src/svg/target_blue_circle.svg:
31         * src/svg/target_blue_triangle.svg:
32         * src/svg/target_green_circle.svg:
33         * src/svg/target_green_triangle.svg:
34         * src/svg/target_red_circle.svg:
35         * src/svg/target_red_triangle.svg:
36         * src/svg/target_whirl.svg:
37         * src/svg/target_yellow_circle.svg:
38         * src/svg/target_yellow_triangle.svg:
39         Import fancy new targets from Richard Worth (our hero)
40
41 2003-12-25  Keith Packard  <keithp@keithp.com>
42
43         * configure.in:
44         * ltmain.sh:
45         * src/grr_board_view.c:
46         * src/grr_icon.c: (_grr_icon_init), (grr_icon_draw):
47         * src/grr_icon.h:
48         * src/grrobot.c:
49         Switch from xsvg to svg-cairo
50
51 2003-11-11  Carl Worth  <cworth@isi.edu>
52
53         * src/grrobot.c (grr_game_read_notices): Exit cleanly: need to
54         return control to Gtk+ so that gtk_main_quit has a chance to do
55         its job.
56         (grr_game_read_notices): Track changes in grr_board_view timer
57         API.
58         (grr_game_key_press_callback): Eliminate bid_entry text box and
59         bid button. Instead, a bare number in the message_entry will
60         result in a bid.
61         (grr_game_key_press_callback): Change several keybindings to
62         require a control modifier: C-N=Next turn, C-P=Pass, C-Z=Zap timer
63         and C-RGBY for robot selection. Now, no keybindings should
64         interfere with simple text messages.
65         (grr_game_pass): "Pass" button now issues "abandon" instead of
66         "revoke" when not in show mode.
67         (grr_game_next): "Next Turn" button now only issues "turn" never
68         "abandon", so there's no longer a problem when two users both hit
69         the "Next Turn" button.
70
71         * src/grr_board_view.c (grr_board_view_decrement_timer): Make the
72         "Zap timer" feature animate the fast clock rather than just
73         snapping.
74         (grr_board_view_start_timer):
75         (grr_board_view_stop_timer):
76         (grr_board_view_set_timer): Cleaner timer API: set, start, and
77         stop.
78
79 2003-11-10  Carl Worth  <cworth@isi.edu>
80
81         * src/grrobot.c (grr_game_read_notices): Call new board_view timer
82         functions on the appropriate state transitions.
83
84         * src/grr_board_view.c (grr_board_view_expose): Add code to draw a
85         cute alpha-blended timer which shows off the use of cairo_arc.
86         (grr_board_view_refresh_timer): 
87         (grr_board_view_decrement_timer): 
88         (grr_board_view_start_timer): 
89         (grr_board_view_stop_timer): 
90         (grr_board_view_reset_timer): New functions for managing the timer.
91
92 2003-09-04  Carl Worth  <cworth@isi.edu>
93
94         * configure.in (PKG_CHECK_MODULES): Require Cairo 0.1.1 or newer.
95
96         * src/grr_icon.c (grr_icon_predraw): Track changes in Cairo 0.1.1
97
98 2003-07-11  Carl Worth  <cworth@isi.edu>
99
100         * src/grrobot.c (grr_game_read_notices): Compressed move display
101         text, ('N' instead of "NORTH", etc.)
102         (grr_game_key_press_callback): Added keybindings for Next Turn,
103         Pass, Zap timer, and bids [0-9].
104         (grr_game_start_gui): Added buttons for Bid, Pass, Zap timer, Next
105         turn. Added a label for the current username.
106
107 2003-07-09  Carl Worth  <cworth@isi.edu>
108
109         * src/grrobot.c (grr_game_read_notices): Added support for
110         RR_NOTICE_BOARD, (cleans up ugly GAMEOVER handling), and should
111         avoid nasty inconsistent display problems if the user issues a NEW
112         command.
113         (grr_game_read_notices): Tracked some librr API changes.
114         (grr_game_key_press_callback): Added some global keybindings: RGBY
115         to select robot, arrow to move, BackSpace to undo a move, Ctrl-Q
116         to quit, Space to message, and '/' to enter a command.
117
118         * src/grr_board_view.c (grr_board_view_set_active_robot):
119         (grr_board_view_move_active):
120         (grr_board_view_undo): Added an interface to grr_board_view for
121         moving robots.
122         (grr_board_view_expose): Don't display target in board center
123         unless it is a 16x16 board.
124
125         * src/args.c (parse_opt): Added support to play without a server
126         using a board from a file given on the command-line.
127         (args_parse): Switch to long_only-style command-line parsing.
128
129 2003-06-19  Carl Worth  <cworth@isi.edu>
130
131         * src/grrobot.c (grr_game_print): Centralized game message
132         printing.
133         (grr_game_read_notices): New formatted messages for all notice
134         types.
135         (grr_game_read_notices): Fancy incremental updates for move
136         messages.
137         (grr_game_print): Fixed (finally) scrolling of messages.
138