]> git.cworth.org Git - grrobot/blob - src/grr_board_view.h
Alternate two different background images. New planets for all squares.
[grrobot] / src / grr_board_view.h
1 /* grr_board_view - GTK+ widget for displaying an rr_board
2  *
3  * Copyright © 2003 Carl Worth
4  *
5  * Permission to use, copy, modify, distribute, and sell this software
6  * and its documentation for any purpose is hereby granted without
7  * fee, provided that the above copyright notice appear in all copies
8  * and that both that copyright notice and this permission notice
9  * appear in supporting documentation, and that the name of Carl Worth
10  * not be used in advertising or publicity pertaining to distribution
11  * of the software without specific, written prior permission.
12  * Carl Worth makes no representations about the suitability of this
13  * software for any purpose.  It is provided "as is" without express
14  * or implied warranty.
15  * 
16  * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
18  * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
20  * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
21  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
22  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23  *
24  * Author: Carl Worth <carl@theworths.org>
25  */
26
27 #ifndef GRR_BOARD_VIEW_H
28 #define GRR_BOARD_VIEW_H
29
30 #include <gdk/gdk.h>
31 #include <gtk/gtkadjustment.h>
32 #include <gtk/gtkwidget.h>
33
34 #include <rr.h>
35
36 #include "grr_icon.h"
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif /* __cplusplus */
41
42 #define GRR_BOARD_VIEW(obj)     GTK_CHECK_CAST (obj, grr_board_view_get_type (), grr_board_view_t)
43 #define GRR_BOARD_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, grr_board_view_get_type (), grr_board_view_class_t)
44 #define GRR_IS_BOARD_VIEW(obj)  GTK_CHECK_TYPE (obj, grr_board_view_get_type ())
45
46 typedef struct grr_board_view           grr_board_view_t;
47 typedef struct grr_board_view_class     grr_board_view_class_t;
48
49 struct grr_board_view
50 {
51     /* GtkWidget has to be first for GTK+ object magic? */
52     GtkWidget widget;
53
54     rr_board_t *board;
55
56     int board_width, board_height;
57     int board_pad_x, board_pad_y;
58
59     int **damaged;
60
61     int cell_width, cell_height;
62
63     rr_robot_t active_robot;
64
65     rr_client_t *client;
66     
67     /* Button currently pressed or 0 if none */
68     guint8 button;
69     
70     /* ID of update timer, or 0 if none */
71     guint32 timer;
72
73     grr_icon_t *cell1_icon;
74     grr_icon_t *cell2_icon;
75     grr_icon_t *wall_icon;
76
77     grr_icon_t *robot_icon[RR_NUM_ROBOTS];
78     grr_icon_t *target_icon[RR_NUM_TARGETS];
79 };
80
81 struct grr_board_view_class
82 {
83     GtkWidgetClass parent_class;
84 };
85
86 grr_board_view_t *
87 grr_board_view_new (rr_board_t *board);
88
89 void
90 grr_board_view_set_client (grr_board_view_t *view, rr_client_t *client);
91
92 GtkType
93 grr_board_view_get_type (void);
94
95 void
96 grr_board_view_set_active_robot (grr_board_view_t *view, rr_robot_t robot);
97
98 void
99 grr_board_view_move_active (grr_board_view_t *view, rr_direction_t dir);
100
101 void
102 grr_board_view_undo (grr_board_view_t *view);
103
104 void
105 grr_board_view_mark_damage (grr_board_view_t *view, int i, int j);
106
107 void
108 grr_board_view_transform_pixel_to_cell (grr_board_view_t *view,
109                                         int pixel_x, int pixel_y,
110                                         int *cell_x, int *cell_y);
111
112 #ifdef __cplusplus
113 }
114 #endif /* __cplusplus */
115
116 #endif /* GRR_BOARD_VIEW_H */