mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 19:08:55 -04:00
add arithmetic operations
This commit is contained in:
parent
988658f58e
commit
16a371eecb
@ -672,12 +672,14 @@ tokenize_numeric_pair(const string &str, double &a, double &b) {
|
|||||||
const char *param = words[i].c_str();
|
const char *param = words[i].c_str();
|
||||||
char *n;
|
char *n;
|
||||||
results[i] = strtod(param, &n);
|
results[i] = strtod(param, &n);
|
||||||
if (n == param) {
|
if (*n != '\0') {
|
||||||
// strtod failed--not a numeric representation.
|
// strtod failed--not a numeric representation.
|
||||||
cerr << "Warning: " << words[i] << " is not a number.\n";
|
cerr << "Warning: " << words[i] << " is not a number.\n";
|
||||||
|
if (n == param) {
|
||||||
results[i] = 0.0;
|
results[i] = 0.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a = results[0];
|
a = results[0];
|
||||||
b = results[1];
|
b = results[1];
|
||||||
@ -720,6 +722,19 @@ scan_to_whitespace(const string &str, size_t start) {
|
|||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::format_int
|
||||||
|
// Access: Private, Static
|
||||||
|
// Description: Formats the indicated integer as a string and returns
|
||||||
|
// the string.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
format_int(int num) {
|
||||||
|
char buffer[32];
|
||||||
|
sprintf(buffer, "%d", num);
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function: PPScope::p_set_variable
|
// Function: PPScope::p_set_variable
|
||||||
// Access: Private
|
// Access: Private
|
||||||
@ -1024,6 +1039,16 @@ r_expand_variable(const string &str, size_t &vp,
|
|||||||
return expand_gtn(params);
|
return expand_gtn(params);
|
||||||
} else if (funcname == ">=") {
|
} else if (funcname == ">=") {
|
||||||
return expand_gen(params);
|
return expand_gen(params);
|
||||||
|
} else if (funcname == "+") {
|
||||||
|
return expand_plus(params);
|
||||||
|
} else if (funcname == "-") {
|
||||||
|
return expand_minus(params);
|
||||||
|
} else if (funcname == "*") {
|
||||||
|
return expand_times(params);
|
||||||
|
} else if (funcname == "/") {
|
||||||
|
return expand_divide(params);
|
||||||
|
} else if (funcname == "%") {
|
||||||
|
return expand_modulo(params);
|
||||||
} else if (funcname == "not") {
|
} else if (funcname == "not") {
|
||||||
return expand_not(params);
|
return expand_not(params);
|
||||||
} else if (funcname == "or") {
|
} else if (funcname == "or") {
|
||||||
@ -2541,6 +2566,123 @@ expand_gen(const string ¶ms) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::expand_plus
|
||||||
|
// Access: Private
|
||||||
|
// Description: Expands the "+" function variable. This operates
|
||||||
|
// on integer numbers.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
expand_plus(const string ¶ms) {
|
||||||
|
double a, b;
|
||||||
|
if (!tokenize_numeric_pair(params, a, b)) {
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
|
int ai = (int)a;
|
||||||
|
int bi = (int)b;
|
||||||
|
return format_int(ai + bi);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::expand_minus
|
||||||
|
// Access: Private
|
||||||
|
// Description: Expands the "-" function variable. This operates
|
||||||
|
// on integer numbers.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
expand_minus(const string ¶ms) {
|
||||||
|
// We cannot use tokenize_numeric_pair(), because we also support
|
||||||
|
// unary minus.
|
||||||
|
|
||||||
|
vector<string> words;
|
||||||
|
tokenize_params(params, words, true);
|
||||||
|
double results[2];
|
||||||
|
int num_words = words.size();
|
||||||
|
|
||||||
|
if (num_words == 1) {
|
||||||
|
// Simular unary minus by setting the first operand to 0.
|
||||||
|
results[0] = 0.0;
|
||||||
|
|
||||||
|
} else if (num_words != 2) {
|
||||||
|
cerr << num_words << " parameters supplied when two were expected:\n"
|
||||||
|
<< params << "\n";
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < num_words; i++) {
|
||||||
|
const char *param = words[i].c_str();
|
||||||
|
char *n;
|
||||||
|
int j = 2 - num_words + i;
|
||||||
|
results[j] = strtod(param, &n);
|
||||||
|
if (*n != '\0') {
|
||||||
|
// strtod failed--not a numeric representation.
|
||||||
|
cerr << "Warning: " << words[i] << " is not a number.\n";
|
||||||
|
if (n == param) {
|
||||||
|
results[j] = 0.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int ai = (int)results[0];
|
||||||
|
int bi = (int)results[1];
|
||||||
|
return format_int(ai - bi);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::expand_times
|
||||||
|
// Access: Private
|
||||||
|
// Description: Expands the "*" function variable. This operates
|
||||||
|
// on integer numbers.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
expand_times(const string ¶ms) {
|
||||||
|
double a, b;
|
||||||
|
if (!tokenize_numeric_pair(params, a, b)) {
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
|
int ai = (int)a;
|
||||||
|
int bi = (int)b;
|
||||||
|
return format_int(ai * bi);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::expand_divide
|
||||||
|
// Access: Private
|
||||||
|
// Description: Expands the "/" function variable. This operates
|
||||||
|
// on integer numbers.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
expand_divide(const string ¶ms) {
|
||||||
|
double a, b;
|
||||||
|
if (!tokenize_numeric_pair(params, a, b)) {
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
|
int ai = (int)a;
|
||||||
|
int bi = (int)b;
|
||||||
|
return format_int(ai / bi);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function: PPScope::expand_modulo
|
||||||
|
// Access: Private
|
||||||
|
// Description: Expands the "%" function variable. This operates
|
||||||
|
// on integer numbers.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
string PPScope::
|
||||||
|
expand_modulo(const string ¶ms) {
|
||||||
|
double a, b;
|
||||||
|
if (!tokenize_numeric_pair(params, a, b)) {
|
||||||
|
return string();
|
||||||
|
}
|
||||||
|
|
||||||
|
int ai = (int)a;
|
||||||
|
int bi = (int)b;
|
||||||
|
return format_int(ai % bi);
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function: PPScope::expand_not
|
// Function: PPScope::expand_not
|
||||||
// Access: Private
|
// Access: Private
|
||||||
@ -2948,8 +3090,9 @@ expand_function(const string &funcname,
|
|||||||
PPScope nested_scope(_named_scopes);
|
PPScope nested_scope(_named_scopes);
|
||||||
nested_scope.define_formals(funcname, sub->_formals, params);
|
nested_scope.define_formals(funcname, sub->_formals, params);
|
||||||
|
|
||||||
// This won't compile on VC++. It has only ostringstream, which is
|
// This won't compile on VC++ with the new iostream library. It has
|
||||||
// functionally equivalent but has a slightly different interface.
|
// only ostringstream, which is functionally equivalent but has a
|
||||||
|
// slightly different interface.
|
||||||
ostrstream ostr;
|
ostrstream ostr;
|
||||||
|
|
||||||
PPCommandFile command(&nested_scope);
|
PPCommandFile command(&nested_scope);
|
||||||
|
@ -62,6 +62,7 @@ public:
|
|||||||
bool expand);
|
bool expand);
|
||||||
bool tokenize_numeric_pair(const string &str, double &a, double &b);
|
bool tokenize_numeric_pair(const string &str, double &a, double &b);
|
||||||
size_t scan_to_whitespace(const string &str, size_t start = 0);
|
size_t scan_to_whitespace(const string &str, size_t start = 0);
|
||||||
|
static string format_int(int num);
|
||||||
|
|
||||||
static MapVariableDefinition _null_map_def;
|
static MapVariableDefinition _null_map_def;
|
||||||
|
|
||||||
@ -123,6 +124,11 @@ private:
|
|||||||
string expand_len(const string ¶ms);
|
string expand_len(const string ¶ms);
|
||||||
string expand_gtn(const string ¶ms);
|
string expand_gtn(const string ¶ms);
|
||||||
string expand_gen(const string ¶ms);
|
string expand_gen(const string ¶ms);
|
||||||
|
string expand_plus(const string ¶ms);
|
||||||
|
string expand_minus(const string ¶ms);
|
||||||
|
string expand_times(const string ¶ms);
|
||||||
|
string expand_divide(const string ¶ms);
|
||||||
|
string expand_modulo(const string ¶ms);
|
||||||
string expand_not(const string ¶ms);
|
string expand_not(const string ¶ms);
|
||||||
string expand_or(const string ¶ms);
|
string expand_or(const string ¶ms);
|
||||||
string expand_and(const string ¶ms);
|
string expand_and(const string ¶ms);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user