quakeforge/ruamoko/qwaq/debugger/vectorview.r

29 lines
568 B
R

#include <string.h>
#include "debugger/vectorview.h"
@implementation VectorView
-initWithType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data
{
if (!(self = [super initWithType:type])) {
return nil;
}
self.data = (vector *)(data + offset);
return self;
}
+(VectorView *)withType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data
{
return [[[self alloc] initWithType:type at:offset in:data] autorelease];
}
-draw
{
[super draw];
string val = sprintf ("%.9v", data[0]);
[self mvprintf:{0, 0}, "%*.*s", xlen, xlen, val];
return self;
}
@end