Version 0.3.2-pre1
[fw/sdcc] / sim / ucsim / sim.src / appcl.h
1 /*
2  * Simulator of microcontrollers (sim.src/appcl.h)
3  *
4  * Copyright (C) 2001,01 Drotos Daniel, Talker Bt.
5  * 
6  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
7  *
8  */
9
10 /* This file is part of microcontroller simulator: ucsim.
11
12 UCSIM is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 UCSIM is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with UCSIM; see the file COPYING.  If not, write to the Free
24 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 02111-1307, USA. */
26 /*@1@*/
27
28 #ifndef SIM_APPCL_HEADER
29 #define SIM_APPCL_HEADER
30
31 #include "ddconfig.h"
32
33 // prj
34 #include "pobjcl.h"
35
36 // local, sim.src
37 #include "argcl.h"
38
39
40 /* Options */
41
42 #define OPT_GENERAL     0x0001
43 #define OPT_SIM         0x0002
44 #define OPT_UC          0x0004
45 #define OPT_PRG_OPT     (OPT_GENERAL|OPT_SIM|OPT_UC)
46 #define OPT_51          0x0010
47 #define OPT_AVR         0x0020
48 #define OPT_Z80         0x0040
49 #define OPT_TARGET      (OPT_51|OPT_AVR|OPT_Z80)
50
51 /*class cl_option: public cl_base
52 {
53 public:
54   int type;     // See OPT_XXX
55   char short_name;
56   char *long_name;
57   class cl_ustrings *values;
58
59 public:
60   cl_option(int atype, char sn, char *ln);
61   ~cl_option(void);
62
63   virtual int add_value(char *value);
64   virtual char *get_value(int index);
65 };
66
67 class cl_options: public cl_list
68 {
69 public:
70   cl_options(void);
71 };*/
72
73
74 /* Application */
75
76 class cl_app: public cl_base
77 {
78 protected:
79   class cl_commander *commander;
80 public:
81   class cl_sim *sim;
82   class cl_ustrings *in_files;
83   class cl_arguments *args;
84   int going;
85
86 public:
87   cl_app(void);
88   ~cl_app(void);
89
90 public:
91   virtual int init(int argc , char *argv[]);
92   virtual int run(void);
93   virtual void done(void);
94
95 protected:
96   virtual int proc_arguments(int argc, char *argv[]);
97
98 public:
99   class cl_sim *get_sim(void) { return(sim); }
100   class cl_commander *get_commander(void) { return(commander); }
101   virtual class cl_cmd *get_cmd(class cl_cmdline *cmdline);
102
103 public:
104   virtual void set_simulator(class cl_sim *simulator);
105   virtual void remove_simulator(void);
106
107 protected:
108   virtual void build_cmdset(class cl_cmdset *cs);
109 };
110
111
112 #endif
113
114 /* End of sim.src/appcl.h */