mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
f50d27ec11
The code currently assumes a single value is referenced rather than the beginning of an array.
28 lines
596 B
R
28 lines
596 B
R
#include <string.h>
|
|
#include "ruamoko/qwaq/debugger/views/doubleview.h"
|
|
|
|
@implementation DoubleView
|
|
|
|
-initWithDef:(qdb_def_t)def in:(void *)data type:(qfot_type_t *)type
|
|
{
|
|
if (!(self = [super initWithDef:def type:type])) {
|
|
return nil;
|
|
}
|
|
self.data = (double *)(data + def.offset);
|
|
return self;
|
|
}
|
|
|
|
+(DoubleView *)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 ("%.17g", data[0]);
|
|
[self mvprintf:{0, 0}, "%*.*s", xlen, xlen, val];
|
|
return self;
|
|
}
|
|
|
|
@end
|