File: sarmenumanage.c

package info (click to toggle)
searchandrescue 0.8.2-10
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,656 kB
  • ctags: 6,111
  • sloc: ansic: 89,072; cpp: 7,691; sh: 90; makefile: 80
file content (230 lines) | stat: -rw-r--r-- 5,745 bytes parent folder | download | duplicates (4)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef JS_SUPPORT
# include <jsw.h>
#endif

#include "../include/string.h"

#include "gctl.h"
#include "gw.h"
#include "menu.h"
#include "sar.h"
#include "sarmenuop.h"
#include "sarmenumanage.h"
#include "sarmenucodes.h"
#include "config.h"


#define SAR_MENU_MANAGE_PROTOTYPE	\
	sar_core_struct *core_ptr, sar_menu_struct *menu

#ifdef JS_SUPPORT
static void SARMenuManageOptionsControllerJSButtons(
        SAR_MENU_MANAGE_PROTOTYPE
);
#endif
#ifdef JS_SUPPORT
static void SARMenuManageOptionsControllerTest(
        SAR_MENU_MANAGE_PROTOTYPE
);
#endif

void SARMenuManage(
        sar_core_struct *core_ptr, sar_menu_struct *menu
);


#define ATOI(s)         (((s) != NULL) ? atoi(s) : 0)
#define ATOL(s)         (((s) != NULL) ? atol(s) : 0)
#define ATOF(s)         (((s) != NULL) ? (float)atof(s) : 0.0f)
#define STRDUP(s)       (((s) != NULL) ? strdup(s) : NULL)

#define MAX(a,b)        (((a) > (b)) ? (a) : (b))
#define MIN(a,b)        (((a) < (b)) ? (a) : (b))
#define CLIP(a,l,h)     (MIN(MAX((a),(l)),(h)))


#ifdef JS_SUPPORT
/*
 *	Manages menu Options->Controller->Buttons
 */
static void SARMenuManageOptionsControllerJSButtons(
        SAR_MENU_MANAGE_PROTOTYPE
)
{
	gw_display_struct *display = core_ptr->display;
	gctl_struct *gc = core_ptr->gctl;
	int jsnum;
	int js0_btn_num_spin_num, js1_btn_num_spin_num;
/*
	sar_menu_spin_struct *js0_btn_role_spin = SARMenuGetSpin(
	    menu, 0, NULL
	);
 */
        sar_menu_spin_struct *js0_btn_num_spin = SARMenuGetSpin(
            menu, 1, &js0_btn_num_spin_num
        );
/*
        sar_menu_spin_struct *js1_btn_role_spin = SARMenuGetSpin(
            menu, 2, NULL
        );
 */
        sar_menu_spin_struct *js1_btn_num_spin = SARMenuGetSpin(
            menu, 3, &js1_btn_num_spin_num
        );
	/* Game controller not set to joystick? */
	if((gc != NULL) ? !(gc->controllers & GCTL_CONTROLLER_JOYSTICK) : True)
	    return;

	/* Joystick #0. */
	jsnum = 0;
	if((js0_btn_num_spin != NULL) && (gc->total_joysticks > jsnum))
	{
#ifdef JSW_H
            gctl_js_struct *gc_js = &gc->joystick[jsnum];
	    js_data_struct *jsd = (js_data_struct *)gc_js->data;
	    int i, button = -1;
	    sar_menu_spin_struct *spin = js0_btn_num_spin;

	    /* This joystick initialized? */
	    if((jsd != NULL) ? JSIsInit(jsd) : False)
	    {
		/* Look for a currently pressed button. */
		for(i = 0; i < jsd->total_buttons; i++)
		{
		    if(JSGetButtonState(jsd, i) == JSButtonStateOn)
		    {
			button = i;
			break;
		    }
		}
	    }
	
	    /* Was a button pressed? */
	    if(button > -1)
	    {
		/* Spin button values start at index 1 so button 0
		 * is spin value index 1.
		 */
		i = button + 1;
		/* Change in value? */
		if(spin->cur_value != i)
		    SARMenuSpinSelectValueIndex(
			display, menu, js0_btn_num_spin_num,
			i, True
		    );
            }
#endif	/* JSW_H */
	}

        /* Joystick #1. */
	jsnum = 1;
        if((js1_btn_num_spin != NULL) && (gc->total_joysticks > jsnum))
        {
#ifdef JSW_H
            gctl_js_struct *gc_js = &gc->joystick[jsnum];
            js_data_struct *jsd = (js_data_struct *)gc_js->data;
            int i, button = -1;
            sar_menu_spin_struct *spin = js1_btn_num_spin;

            /* This joystick initialized? */
            if((jsd != NULL) ? JSIsInit(jsd) : False)
            {
		/* Look for a currently pressed button. */
                for(i = 0; i < jsd->total_buttons; i++)
                {
                    if(JSGetButtonState(jsd, i) == JSButtonStateOn)
                    {
                        button = i;
                        break;
                    }
                }
            }

            /* Was a button pressed? */
            if(button > -1)
            {
                /* Spin button values start at index 1 so button 0
                 * is spin value index 1.
                 */
                i = button + 1;
                /* Change in value? */
                if(spin->cur_value != i)
                    SARMenuSpinSelectValueIndex(
                        display, menu, js1_btn_num_spin_num,
                        i, True
                    );
            }
#endif	/* JSW_H */
	}
}
#endif	/* JS_SUPPORT */

#ifdef JS_SUPPORT
/*
 *      Manages menu Options->Controller->Test
 */
static void SARMenuManageOptionsControllerTest(
        SAR_MENU_MANAGE_PROTOTYPE
)
{
        gw_display_struct *display = core_ptr->display;
        gctl_struct *gc = core_ptr->gctl;
	int i;
	void *o;

	if((display == NULL) || (gc == NULL))
	    return;

	/* No joysticks? */
	if(gc->total_joysticks <= 0)
	    return;

	/* Find joystick test multi-purpose display object. */
	for(i = 0; i < menu->total_objects; i++)
	{
	    o = menu->object[i];
	    if(SAR_MENU_IS_MDISPLAY(o))
		break;
	}
	if(i >= menu->total_objects)
	    return;

	/* Redraw joystick test multi-purpose display object. */
	SARMenuDrawObject(display, menu, i);
	GWSwapBuffer(display);
}
#endif  /* JS_SUPPORT */


/*
 *	Called once per cycle to manage the menu system (above the 
 *	graphics wrapper level).
 */
void SARMenuManage(
        sar_core_struct *core_ptr, sar_menu_struct *menu
)
{
	const char *name;

	if(menu == NULL)
	    return;

	/* Handle by which menu we are currently in. */
	name = menu->name;
	if(name != NULL)
	{
#define SAR_MENU_MANAGE_INPUT	core_ptr, menu
#ifdef JS_SUPPORT
	    if(!strcasecmp(name, SAR_MENU_NAME_OPTIONS_CONTROLLER_JS_BTN))
		SARMenuManageOptionsControllerJSButtons(SAR_MENU_MANAGE_INPUT);
	    else if(!strcasecmp(name, SAR_MENU_NAME_OPTIONS_CONTROLLER_TEST))
		SARMenuManageOptionsControllerTest(SAR_MENU_MANAGE_INPUT);
#endif	/* JS_SUPPORT */
#undef SAR_MENU_MANAGE_INPUT
	}

}
#undef SAR_MENU_MANAGE_PROTOTYPE