blob: ef34d7ceae68092b904fe26848b866c5d091f6b9 (
plain)
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
|
/********************************************************************
* Description: interpl.hh
* Mechanism for building lists of arbitrary NML messages, used by
* the canonical interface and interpreter to pass planned sequences
* to the HME.
*
* Derived from a work by Fred Proctor & Will Shackleford
*
* Author:
* License: GPL Version 2
* System: Linux
*
* Copyright (c) 2004 All rights reserved.
*
* Last change:
********************************************************************/
#ifndef INTERP_LIST_HH
#define INTERP_LIST_HH
#define MAX_NML_COMMAND_SIZE 1000
// these go on the interp list
struct NML_INTERP_LIST_NODE {
int line_number; // line number it was on
union _dummy_union {
int i;
long l;
double d;
float f;
long long ll;
long double ld;
} dummy; // paranoid alignment variable.
union _command_union {
char commandbuf[MAX_NML_COMMAND_SIZE]; // the NML command;
int i;
long l;
double d;
float f;
long long ll;
long double ld;
} command;
};
// here's the interp list itself
class NML_INTERP_LIST {
public:
NML_INTERP_LIST();
~NML_INTERP_LIST();
int set_line_number(int line);
int get_line_number();
int append(NMLmsg &);
int append(NMLmsg *);
NMLmsg *get();
void clear();
void print();
int len();
private:
class LinkedList * linked_list_ptr;
NML_INTERP_LIST_NODE temp_node; // filled in and put on the list
int next_line_number; // line number used to fill temp_node
int line_number; // line number of node from get()
};
extern NML_INTERP_LIST interp_list; /* NML Union, for interpreter */
#endif
|