quakeforge/ruamoko/qwaq/debugger/stringview.r

30 lines
612 B
R
Raw Normal View History

#include <string.h>
#include "debugger/stringview.h"
@implementation StringView
-initWithType:(qfot_type_t *)type at:(unsigned)offset in:(void *)data
{
if (!(self = [super initWithType:type])) {
return nil;
}
self.data = (int *)(data + offset);
return self;
}
+(StringView *)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 ("\"%s\"",
str_quote (qdb_get_string (target, data[0])));
[self mvprintf:{0, 0}, "%*.*s", xlen, xlen, val];
return self;
}
@end