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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
/**
** Ucexpr.h - Expressions for Usecode compiler.
**
** Written: 1/0/01 - JSF
**/
/*
Copyright (C) 2000 The Exult Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef INCL_UCEXPR
#define INCL_UCEXPR 1
#include <vector>
#include <string>
#include "ucloc.h"
using std::vector;
class Uc_symbol;
class Uc_var_symbol;
class Uc_function;
/*
* Base class for expressions.
*/
class Uc_expression : public Uc_location
{
public:
// Use current location.
Uc_expression() : Uc_location()
{ }
virtual ~Uc_expression() { }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out) = 0;
// Gen code to push value(s).
virtual int gen_values(vector<char>& out);
// Gen. code to jmp if this is false.
virtual int gen_jmp_if_false(vector<char>& out, int offset);
// Gen. to assign from stack.
virtual void gen_assign(vector<char>& out);
virtual int get_string_offset() // Get offset in text_data.
{ return -1; }
// Get/create var == this.
virtual Uc_var_symbol *need_var(vector<char>& out, Uc_function *fun);
// Evaluate constant.
virtual bool eval_const(int& val);
};
/*
* A variable.
*/
class Uc_var_expression : public Uc_expression
{
Uc_var_symbol *var;
public:
// Use current location.
Uc_var_expression(Uc_var_symbol *v) : var(v)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen. to assign from stack.
virtual void gen_assign(vector<char>& out);
virtual int get_string_offset();// Get offset in text_data.
virtual Uc_var_symbol *need_var(vector<char>& , Uc_function *)
{ return var; }
};
/*
* An array element.
*/
class Uc_arrayelem_expression : public Uc_expression
{
Uc_var_symbol *array;
Uc_expression *index;
public:
Uc_arrayelem_expression(Uc_var_symbol *a, Uc_expression *i)
: array(a), index(i)
{ }
~Uc_arrayelem_expression()
{ delete index; }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen. to assign from stack.
virtual void gen_assign(vector<char>& out);
};
/*
* Global flag.
*/
class Uc_flag_expression : public Uc_expression
{
int index;
public:
Uc_flag_expression(int i)
: index(i)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen. to assign from stack.
virtual void gen_assign(vector<char>& out);
};
/*
* Binary expressions.
*/
class Uc_binary_expression : public Uc_expression
{
int opcode; // Should be the UC_<opcode>
Uc_expression *left, *right; // Operands to add, sub, etc.
public:
Uc_binary_expression(int o, Uc_expression *l, Uc_expression *r)
: opcode(o), left(l), right(r)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Evaluate constant.
virtual bool eval_const(int& val);
};
/*
* Unary expressions.
*/
class Uc_unary_expression : public Uc_expression
{
int opcode; // Should be the UC_<opcode>
Uc_expression *operand;
public:
Uc_unary_expression(int o, Uc_expression *r)
: opcode(o), operand(r)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
};
/*
* Compare user conversation response to a given string (or list of
* strings.
*/
class Uc_response_expression : public Uc_expression
{
Uc_expression *operand;
public:
Uc_response_expression(Uc_expression *r)
: operand(r)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen. code to jmp if this is false.
virtual int gen_jmp_if_false(vector<char>& out, int offset);
};
/*
* Integer value.
*/
class Uc_int_expression : public Uc_expression
{
int value;
public:
Uc_int_expression(int v) : value(v)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Evaluate constant.
virtual bool eval_const(int& val);
};
/*
* Boolean value.
*/
class Uc_bool_expression : public Uc_expression
{
bool tf;
public:
Uc_bool_expression(bool t) : tf(t)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
};
/*
* Eventid (a special int variable passed to each function):
*/
class Uc_event_expression : public Uc_expression
{
public:
Uc_event_expression() { }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen. to assign from stack.
virtual void gen_assign(vector<char>& out);
};
/*
* Item (a special ptr. variable passed to each function):
*/
class Uc_item_expression : public Uc_expression
{
public:
Uc_item_expression() { }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
};
/*
* String value.
*/
class Uc_string_expression : public Uc_expression
{
int offset; // Offset in function's data area.
public:
Uc_string_expression(int o) : offset(o)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
virtual int get_string_offset() // Get offset in text_data.
{ return offset; }
};
/*
* String value given by a prefix (i.e. "Jo"* for "Job").
*/
class Uc_string_prefix_expression : public Uc_expression
{
Uc_function *fun; // Needed to look up prefix.
std::string prefix; // What to look up.
int offset; // Offset in function's data area.
// This is -1 if not found yet.
public:
Uc_string_prefix_expression(Uc_function *f, char *pre)
: fun(f), prefix(pre), offset(-1)
{ }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
virtual int get_string_offset();// Get offset in text_data.
};
/*
* A concatenation, which generates an array:
*/
class Uc_array_expression : public Uc_expression
{
std::vector<Uc_expression*> exprs;
public:
Uc_array_expression() { }
Uc_array_expression(Uc_expression *e0)
{ add(e0); } // Create with 1st expression.
Uc_array_expression(Uc_expression *e0, Uc_expression *e1)
{ add(e0); add(e1); }
~Uc_array_expression();
void add(Uc_expression *e) // Append an expression.
{ exprs.push_back(e); }
void clear() // Remove, but DON'T delete, elems.
{ exprs.clear(); }
void concat(Uc_expression *e); // Concat e's elements onto this.
const std::vector<Uc_expression*>& get_exprs()
{ return exprs; }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
// Gen code to push value(s).
virtual int gen_values(vector<char>& out);
};
/*
* A function or intrinsic call.
*/
class Uc_call_expression : public Uc_expression
{
Uc_symbol *sym; // Function or intrinsic.
bool original; // Call original function instead of
// the one from 'patch'.
Uc_expression *itemref; // Non-null for CALLE.
Uc_array_expression *parms;
Uc_function *function; // May need function this is in.
bool return_value; // True for a function (to return
// its value).
public:
Uc_call_expression(Uc_symbol *s, Uc_array_expression *prms,
Uc_function *fun, bool orig = false)
: sym(s), itemref(0), parms(prms),
function(fun), original(orig), return_value(true)
{ }
~Uc_call_expression()
{ delete parms; delete itemref; }
void set_itemref(Uc_expression *iexpr)
{ itemref = iexpr; }
void set_no_return()
{ return_value = false; }
// Gen. code to put result on stack.
virtual void gen_value(vector<char>& out);
};
/*
* Write a 2-byte value to the end/position of a character stream.
*/
inline void Write2(vector<char>& out, unsigned short val)
{
out.push_back((char) (val&0xff));
out.push_back((char) ((val>>8)&0xff));
}
inline void Write2(vector<char>& out, int pos, unsigned short val)
{
out[pos] = (char) (val&0xff);
out[pos + 1] = (char) ((val>>8)&0xff);
}
#endif
|