quakeforge/ruamoko/qwaq/debugger/views/basicview.r
Bill Currie 674fbae225 [qfcc] Rework binary_expr to be support matrices
And, nicely, simplify it quite a bit. I'm not sure why I didn't thinkg
of this approach before. While the ruamoko back-end doesn't support
matrices yet, the expressions are handled.

As a side effect, type checking on comparisons is "stricter" in that
more potentially bogus comparisons (eg, int-float) are caught, resulting
in a few warnings in ruamoko code and even finding a couple of bugs.
2024-12-05 00:18:47 +09:00

48 lines
904 B
R

#include <string.h>
#include "ruamoko/qwaq/debugger/views/basicview.h"
#include "ruamoko/qwaq/debugger/views/nameview.h"
static string type_views[] = {
"VoidView",
"StringView",
"FloatView",
"VectorView",
"EntityView",
"FieldView",
"FuncView",
"PointerView",
"QuatView",
"IntView",
"UIntView", // uinteger
"IntView", // short
"DoubleView",
};
@implementation BasicView
-init
{
if (!(self = [super init])) {
return nil;
}
return self;
}
+(DefView *)withDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type
{
string typename = nil;
if (type.meta == ty_alias) {
type = type.alias.aux_type;
}
if (type.type >= 0
&& type.type < sizeof(type_views) / sizeof (type_views[0])) {
typename = type_views[type.type];
}
id class = obj_lookup_class (typename);
if (class) {
return [class withDef:def in:data type:type];
}
return [NameView withName:"Invalid Type"];
}
@end