File: cmd.h

package info (click to toggle)
searchandrescue 0.8.2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,644 kB
  • ctags: 6,112
  • sloc: ansic: 89,072; cpp: 7,692; sh: 90; makefile: 77
file content (91 lines) | stat: -rw-r--r-- 2,840 bytes parent folder | download | duplicates (7)
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
/*
 *	               SAR Command Processing
 *
 *	Processes high-level commands, all SARCmd*() functions should
 *	be prototyped here.
 *
 *	cmd.c contains all front end and callback functions.
 *
 *	cmd<name>.c contains functions for specific purposes, the <name>
 *	specifies the command's name.  The functions here should be
 *	called by a function in cmd.c.
 *
 *	To add a new command, first add its prototype here and update
 *	the #define for SAR_CMD_FUNC_REF_LIST (command functions list)
 *	below. Then create a new .c module and name it cmd<name>.c where
 *	<name> is the name of the new command.
 */

#ifndef CMD_H
#define CMD_H

#include <stdio.h>


/*
 *	Prototype for all SARCmd*() function input parameters.
 */
#define SAR_CMD_PROTOTYPE	void *data, const char *arg, unsigned long flags

/*
 *	Flags for SARCmd*() flags input.
 */
#define SAR_CMD_FLAG_VERBOSE	(1 << 0)	/* Print responses/warnings/errors */
#define SAR_CMD_FLAG_ISUSER	(1 << 1)	/* Hint that user issued the command */ 

#define SAR_CMD_IS_VERBOSE(x)	((x) & SAR_CMD_FLAG_VERBOSE)


/* cmdclean.c - scene "cleaning" (deletion of effects objects) */
extern void SARCmdClean(SAR_CMD_PROTOTYPE);

/* cmdfire.c - fire creation */
extern void SARCmdFire(SAR_CMD_PROTOTYPE);

/* cmdoption.c - options setting */
extern void SARCmdOption(SAR_CMD_PROTOTYPE);

/* cmdmemory.c - memory management */
extern void SARCmdMemory(SAR_CMD_PROTOTYPE);

/* cmdset.c - object setting */
extern void SARCmdSet(SAR_CMD_PROTOTYPE);

/* cmdsmoke.c - smoke creation */
extern void SARCmdSmoke(SAR_CMD_PROTOTYPE);

/* cmdtime.c - time setting */
extern void SARCmdTime(SAR_CMD_PROTOTYPE);


/* cmd.c - front end and callback functions */
extern void SARCmdTextInputCB(const char *value, void *data);


/* List of SARCmd*() functions. This is used to match a command name
 * string with a command function. This is used primarly in the
 * functions in cmd.c to call other SARCmd*() functions.
 *
 * The format of this list is four pointers per entry. Where the
 * first pointer is a string specifying the name of the command, the
 * second pointer to the SARCmd*() function, the third and fourth
 * pointers are reserved.
 *
 * The last set of pointers should be four NULL pointers.
 */
#define SAR_CMD_FUNC_REF_LIST	{				\
 { (void *)"clean",	(void *)SARCmdClean,	NULL,	NULL },	\
 { (void *)"fire",	(void *)SARCmdFire,	NULL,	NULL },	\
 { (void *)"memory",	(void *)SARCmdMemory,	NULL,	NULL }, \
 { (void *)"mem",	(void *)SARCmdMemory,	NULL,	NULL },	\
 { (void *)"option",	(void *)SARCmdOption,	NULL,	NULL },	\
 { (void *)"opt",	(void *)SARCmdOption,	NULL,	NULL }, \
 { (void *)"set",	(void *)SARCmdSet,	NULL,	NULL },	\
 { (void *)"smoke",	(void *)SARCmdSmoke,	NULL,	NULL },	\
 { (void *)"time",	(void *)SARCmdTime,	NULL,	NULL },	\
 { NULL,		NULL,			NULL,	NULL }	\
}



#endif	/* CMD_H */