mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
53b553e892
Needed for structured types (arrays, structs, etc). The multiple rows aren't implemented yet, but the initial groundwork is done.
48 lines
904 B
R
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.type == 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
|