}
FGTextLayer::Chunk::Chunk (ChunkType type, const SGPropertyNode * node,
- const string &fmt, float mult)
- : _type(type), _fmt(fmt), _mult(mult)
+ const string &fmt, float mult, float offs)
+ : _type(type), _fmt(fmt), _mult(mult), _offs(offs)
{
if (_fmt.empty()) {
if (type == TEXT_VALUE)
sprintf(_buf, _fmt.c_str(), _node->getStringValue());
break;
case DOUBLE_VALUE:
- sprintf(_buf, _fmt.c_str(), _node->getFloatValue() * _mult);
+ sprintf(_buf, _fmt.c_str(), _offs + _node->getFloatValue() * _mult);
break;
}
return _buf;
public:
Chunk (const string &text, const string &fmt = "%s");
Chunk (ChunkType type, const SGPropertyNode * node,
- const string &fmt = "", float mult = 1.0);
+ const string &fmt = "", float mult = 1.0, float offs = 0.0);
const char * getValue () const;
private:
const SGPropertyNode * _node;
string _fmt;
float _mult;
+ float _offs;
mutable char _buf[1024];
};
else if (type == "number-value") {
string propName = node->getStringValue("property");
float scale = node->getFloatValue("scale", 1.0);
+ float offset = node->getFloatValue("offset", 0.0);
SGPropertyNode * target = fgGetNode(propName.c_str(), true);
chunk = new FGTextLayer::Chunk(FGTextLayer::DOUBLE_VALUE, target,
- format, scale);
+ format, scale, offset);
}
// Unknown type.