quakeforge/ruamoko/qwaq/debugger/views/uintview.r
Bill Currie 8a0246c910 [ruamoko] Add type info for algebra types
And get vector type views working in the debugger.
2023-08-26 23:01:01 +09:00

31 lines
679 B
R

#include <string.h>
#include "ruamoko/qwaq/debugger/views/uintview.h"
@implementation UIntView
-initWithDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type
{
if (!(self = [super initWithDef:def type:type])) {
return nil;
}
self.data = (unsigned *)(data + def.offset);
return self;
}
+(UIntView *)withDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type
{
return [[[self alloc] initWithDef:def in:data type:type] autorelease];
}
-draw
{
[super draw];
string val = sprintf ("%u", data[0]);
for (int i = 1; i < type.basic.width; i++) {
val = sprintf ("%s %u", val, data[i]);
}
[self mvprintf:{0, 0}, "%*.*s", xlen, xlen, val];
return self;
}
@end