mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 23:11:38 +00:00
c248372e20
integer constants and float function args/return values. pr_comp.h: o add the integer opcodes to pr_opcode_e pr_edict.c: o add "quaternion" and "integer" to type_name[] o support quatnernion and integers types when printing values o support the integer opcodes when bounds checking pr_exec.c o enable the integer opcodes pr_opcode: o add the integer opcodes to the opcode table o logical operators all result in an integer rather than a value expr.h: o rename int_val to integer_val qfcc.h: o kill another magic number expr.c: o move the opcode to string conversion out of type_mismatch and into get_op_string o rename int_val to integer_val o general integer type support. o generate an internal comipiler error for null opcodes rather than segging. pr_imm.c: o rename int_val to integer_val o support integer constants, converting to float when needed. pr_lex.c: o magic number death and support quaternions and integers in type_size[] qc-lex.l o rename int_val to integer_val o support quaternion and integer type keywords qc-parse.y: o rename int_val to integer_val o use binary_expr instead of new_binary_expr for local initialized variables builtins.c: o rename int_val to integer_val o fix most (all?) of the INT related FIXMEs defs.qc: o use integer instead of float where it makes sense main.c: o read_result is now integer rather than float main.qc: o float -> integer where appropriate o new test for int const to float arg
22 lines
651 B
C++
22 lines
651 B
C++
void (string str) print = #1;
|
|
void () garbage_collect = #2;
|
|
integer () errno = #3;
|
|
string (integer err) strerror = #4;
|
|
integer (...) open = #5; // string path, float flags[, float mode]
|
|
integer (integer handle) close = #6;
|
|
string (integer handle, integer count) read = #7; // FIXME: cf read_result
|
|
integer (integer handle, string buffer, integer count) write = #8;
|
|
integer (integer handle, integer pos, integer whence) seek = #9;
|
|
|
|
void() traceon = #10; // turns statment trace on
|
|
void() traceoff = #11;
|
|
|
|
|
|
float time;
|
|
entity self;
|
|
integer read_result; // FIXME: hacky (cf read)
|
|
|
|
.float nextthink;
|
|
.void() think;
|
|
.float frame;
|
|
.vector origin;
|